Repository: intel/libva-utils Branch: master Commit: 1747b4d227ed Files: 167 Total size: 5.9 MB Directory structure: gitextract_6c2d9r9p/ ├── .github/ │ └── workflows/ │ ├── EnterDevShell.ps1 │ ├── freebsd.yml │ ├── ubuntu.yml │ └── windows.yml ├── Android.bp ├── CONTRIBUTING.md ├── COPYING ├── INSTALL ├── Makefile.am ├── NEWS ├── README.md ├── autogen.sh ├── common/ │ ├── Makefile.am │ ├── loadsurface.h │ ├── loadsurface_yuv.h │ ├── meson.build │ ├── va_display.c │ ├── va_display.h │ ├── va_display_drm.c │ ├── va_display_wayland.c │ ├── va_display_win32.cpp │ └── va_display_x11.c ├── configure.ac ├── decode/ │ ├── Makefile.am │ ├── loadjpeg.c │ ├── meson.build │ ├── mpeg2-I.m2v │ ├── mpeg2vldemo.cpp │ ├── tinyjpeg-internal.h │ ├── tinyjpeg.c │ └── tinyjpeg.h ├── encode/ │ ├── Makefile.am │ ├── av1encode.c │ ├── avcenc.c │ ├── h264encode.c │ ├── hevcencode.c │ ├── jpegenc.c │ ├── jpegenc_utils.h │ ├── meson.build │ ├── mpeg2vaenc.c │ ├── svctenc.c │ ├── vp8enc.c │ └── vp9enc.c ├── getopt/ │ ├── getopt.h │ ├── getopt_long.c │ └── meson.build ├── meson.build ├── meson_options.txt ├── putsurface/ │ ├── Makefile.am │ ├── meson.build │ ├── putsurface_common.c │ ├── putsurface_wayland.c │ └── putsurface_x11.c ├── security.md ├── style_unify ├── subprojects/ │ └── DirectX-Headers.wrap ├── test/ │ ├── Makefile.am │ ├── compat_win32.h │ ├── gtest/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs/ │ │ │ ├── AdvancedGuide.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── FAQ.md │ │ │ ├── Primer.md │ │ │ ├── PumpManual.md │ │ │ ├── README.md │ │ │ ├── Samples.md │ │ │ └── XcodeGuide.md │ │ ├── include/ │ │ │ └── gtest/ │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-matchers.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal/ │ │ │ ├── custom/ │ │ │ │ ├── README.md │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ │ └── src/ │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-matchers.cc │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── meson.build │ ├── test.h │ ├── test_data.h │ ├── test_defs.h │ ├── test_internal.cpp │ ├── test_main.cpp │ ├── test_streamable.h │ ├── test_utils.h │ ├── test_va_api_config_attribs.cpp │ ├── test_va_api_createbuffer.cpp │ ├── test_va_api_createcontext.cpp │ ├── test_va_api_createsurfaces.cpp │ ├── test_va_api_display_attribs.cpp │ ├── test_va_api_fixture.cpp │ ├── test_va_api_fixture.h │ ├── test_va_api_get_create_config.cpp │ ├── test_va_api_get_max_values.cpp │ ├── test_va_api_init_terminate.cpp │ ├── test_va_api_query_config.cpp │ └── test_va_api_query_vendor.cpp ├── vainfo/ │ ├── Makefile.am │ ├── meson.build │ └── vainfo.c ├── vendor/ │ └── intel/ │ ├── Makefile.am │ ├── avcstreamoutdemo.c │ ├── avcstreamoutdemo.h │ ├── meson.build │ └── sfcsample/ │ ├── DecodeParamBuffer.h │ ├── Makefile.am │ ├── TestMain.cpp │ ├── VDecAccelVA.cpp │ ├── VDecAccelVA.h │ └── meson.build └── videoprocess/ ├── Makefile.am ├── README.md ├── meson.build ├── process.cfg.template ├── process_3dlut.cfg.template ├── process_blending.cfg.template ├── process_chromasitting.cfg.template ├── process_denoise.cfg.template ├── process_hdr_tm_h2h.cfg.template ├── process_hdr_tm_h2s.cfg.template ├── process_scaling_csc.cfg.template ├── process_scaling_n_out_usrptr.cfg.template ├── process_sharpness.cfg.template ├── process_va_copy.cfg.template ├── vacopy.cpp ├── vavpp.cpp ├── vpp3dlut.cpp ├── vppblending.cpp ├── vppchromasitting.cpp ├── vppdenoise.cpp ├── vpphdr_tm.cpp ├── vppscaling_csc.cpp ├── vppscaling_n_out_usrptr.cpp └── vppsharpness.cpp ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/EnterDevShell.ps1 ================================================ param( [Parameter()] [String]$architecture ) function EnterDevShellEnv { param( [Parameter()] [String]$arch ) $vsw = Get-Command 'vswhere' $VSFfavors = 'Community','Professional','Enterprise','BuildTools' | %{ "Microsoft.VisualStudio.Product.$_" } $vs = & $vsw.Path -products $VSFfavors -latest -format json | ConvertFrom-Json $tools_dir = Join-Path $vs.installationPath 'Common7' 'Tools' # Try the root tools dir $devshell = Join-Path $tools_dir 'Microsoft.VisualStudio.DevShell.dll' # Try finding it under vsdevshell if (!(Test-Path $devshell -Type Leaf)) { $devshell = Join-Path $tools_dir 'vsdevshell' 'Microsoft.VisualStudio.DevShell.dll' } # Fail if didn't find the DevShell library if (!(Test-Path $devshell -Type Leaf)) { throw "error: cannot find Microsoft.VisualStudio.DevShell.dll" } Import-Module $devshell Enter-VsDevShell -VsInstanceId $vs.instanceId -SkipAutomaticLocation -DevCmdArguments "-arch=$arch -no_logo" } # Enter VsDevShell, capture the environment difference and export it to github env $env_before = @{} Get-ChildItem env: | %{ $env_before.Add($_.Name, $_.Value) } EnterDevShellEnv -arch "$architecture" $env_after = @{} Get-ChildItem env: | %{ $env_after.Add($_.Name, $_.Value) } $env_diff = $env_after.GetEnumerator() | where { -not $env_before.ContainsKey($_.Name) -or $env_before[$_.Name] -ne $_.Value } $env_diff | %{ echo "$($_.Name)=$($_.Value)" >> $env:GITHUB_ENV } ================================================ FILE: .github/workflows/freebsd.yml ================================================ name: freebsd on: push: paths-ignore: - '.github/workflows/**' - '!.github/workflows/freebsd.yml' pull_request: paths-ignore: - '.github/workflows/**' - '!.github/workflows/freebsd.yml' permissions: read-all jobs: freebsd: runs-on: ubuntu-latest steps: - name: checkout libva uses: actions/checkout@v4 with: repository: intel/libva path: libva - name: checkout libva-utils uses: actions/checkout@v4 with: path: libva-utils - name: test uses: vmactions/freebsd-vm@v1 with: prepare: | pkg install -y meson pkgconf libdrm libXext libXfixes wayland pkg install -y -x '^mesa($|-libs)' run: | cd libva meson setup _build --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu meson compile -C _build meson install -C _build cd ../libva-utils meson setup _build --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu meson compile -C _build meson install -C _build ================================================ FILE: .github/workflows/ubuntu.yml ================================================ name: ubuntu on: push: paths-ignore: - '.github/workflows/**' - '!.github/workflows/ubuntu.yml' pull_request: paths-ignore: - '.github/workflows/**' - '!.github/workflows/ubuntu.yml' permissions: read-all jobs: ubuntu-24-04: runs-on: ubuntu-24.04 steps: - name: checkout libva uses: actions/checkout@v4 with: repository: intel/libva path: libva - name: checkout libva-utils uses: actions/checkout@v4 with: path: libva-utils - name: install prerequisites run: | sudo apt-get update sudo apt-get install -y --no-install-recommends \ libdrm-dev \ libegl1-mesa-dev \ libgl1-mesa-dev \ libx11-dev \ libxext-dev \ libxfixes-dev \ libwayland-dev - name: build libva run: | cd libva ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu make -j$(nproc) sudo make install - name: build libva-utils run: | cd libva-utils ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu make -j$(nproc) make check sudo make install ================================================ FILE: .github/workflows/windows.yml ================================================ name: windows on: push: paths-ignore: - '.github/workflows/**' - '!.github/workflows/windows.yml' - '!.github/workflows/EnterDevShell.ps1' pull_request: paths-ignore: - '.github/workflows/**' - '!.github/workflows/windows.yml' - '!.github/workflows/EnterDevShell.ps1' permissions: read-all jobs: windows-msvc: runs-on: windows-2022 steps: - name: checkout libva uses: actions/checkout@v3 with: repository: intel/libva path: libva - name: checkout libva-utils uses: actions/checkout@v3 with: path: libva-utils - name: 'Setup Python' uses: actions/setup-python@v4 with: python-version: '3.x' - name: Install Meson run: pip install meson - name: Install pkg-config shell: pwsh run: | Invoke-RestMethod -Uri https://download.gnome.org/binaries/win32/dependencies/pkg-config_0.26-1_win32.zip -OutFile pkg-config_0.26-1_win32.zip Expand-Archive pkg-config_0.26-1_win32.zip Invoke-RestMethod -Uri http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.28/glib_2.28.8-1_win32.zip -OutFile glib_2.28.8-1_win32.zip Expand-Archive glib_2.28.8-1_win32.zip Invoke-RestMethod -Uri http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/gettext-runtime_0.18.1.1-2_win32.zip -OutFile gettext-runtime_0.18.1.1-2_win32.zip Expand-Archive gettext-runtime_0.18.1.1-2_win32.zip mkdir pkg-config cp pkg-config_0.26-1_win32\bin\* pkg-config\ cp gettext-runtime_0.18.1.1-2_win32\bin\* pkg-config\ cp glib_2.28.8-1_win32\bin\* pkg-config\ - name: Enter DevShell run: 'libva-utils\.github\workflows\EnterDevShell.ps1 ${{ inputs.architecture }}' shell: pwsh - name: Build libva run: | cd libva meson build ninja -C build install - name: Build libva-utils run: | $env:Path += ";" $env:Path += Resolve-Path pkg-config\ $env:Path += ";c:\bin\;c:\lib\" $env:PKG_CONFIG_PATH = "C:\lib\pkgconfig" del C:\Strawberry\perl\bin\pkg-config* cd libva-utils meson build -Dtests=true ninja -C build install windows-mingw: runs-on: windows-2022 defaults: run: shell: msys2 {0} steps: - name: checkout libva uses: actions/checkout@v3 with: repository: intel/libva path: libva - name: checkout libva-utils uses: actions/checkout@v3 with: path: libva-utils - name: 'Setup MSYS2' uses: msys2/setup-msys2@v2 with: msystem: mingw64 update: false install: >- git pacboy: >- toolchain:p meson:p - name: Enter DevShell run: 'libva-utils\.github\workflows\EnterDevShell.ps1 ${{ inputs.architecture }}' shell: pwsh - name: Build libva run: | cd libva CC=gcc meson build CC=gcc ninja -C build install - name: Build libva-utils run: | cd libva-utils CC=gcc meson build -Dtests=true CC=gcc ninja -C build install ================================================ FILE: Android.bp ================================================ /* * Copyright (c) 2024 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ package { default_applicable_licenses: ["external_libva-utils_license"], } license { name: "external_libva-utils_license", visibility: [":__subpackages__"], license_kinds: [ "SPDX-license-identifier-Apache-2.0", "SPDX-license-identifier-BSD", "SPDX-license-identifier-ISC", "SPDX-license-identifier-MIT", ], license_text: [ "LICENSE", ], } cc_defaults { name: "libva_utils_defaults", shared_libs: [ "libva", "libdl", "libcutils", "libutils", "libgui", "libdrm", ], vendor: true, enabled: false, arch: { x86_64: { enabled: true, }, }, } cc_library { name: "libva_utils_common", defaults: ["libva_utils_defaults"], srcs: [ "common/va_display.c", "common/va_display_drm.c", ], export_include_dirs: ["common/"], cflags: ["-DHAVE_VA_DRM"], visibility: [":__subpackages__"], } cc_defaults { name: "libva_utils_bin_defaults", defaults: ["libva_utils_defaults"], shared_libs: [ "libva_utils_common", ], } // decode directory cc_binary { name: "vampeg2vldemo", srcs: [ "decode/mpeg2vldemo.cpp", ], defaults: ["libva_utils_bin_defaults"], } cc_binary { name: "valoadjpeg", srcs: [ "decode/loadjpeg.c", "decode/tinyjpeg.c", ], defaults: ["libva_utils_bin_defaults"], } // encode directory cc_binary { name: "vah264encode", srcs: [ "encode/h264encode.c", ], defaults: ["libva_utils_bin_defaults"], } cc_binary { name: "vaavcenc", srcs: [ "encode/avcenc.c", ], defaults: ["libva_utils_bin_defaults"], } cc_binary { name: "vavp8enc", srcs: [ "encode/vp8enc.c", ], cflags: [ "-Wno-gnu-variable-sized-type-not-at-end", ], defaults: ["libva_utils_bin_defaults"], } cc_binary { name: "vavp9enc", srcs: [ "encode/vp9enc.c", ], defaults: ["libva_utils_bin_defaults"], } cc_binary { name: "vajpegenc", srcs: [ "encode/jpegenc.c", ], defaults: ["libva_utils_bin_defaults"], } cc_binary { name: "vampeg2vaenc", srcs: [ "encode/mpeg2vaenc.c", ], defaults: ["libva_utils_bin_defaults"], } cc_binary { name: "vasvctenc", srcs: [ "encode/svctenc.c", ], defaults: ["libva_utils_bin_defaults"], } // vainfo directory cc_binary { name: "vainfo", srcs: [ "vainfo/vainfo.c", ], defaults: ["libva_utils_bin_defaults"], } // videoprocess directory cc_binary { name: "vavpp", srcs: [ "videoprocess/vavpp.cpp", ], defaults: ["libva_utils_bin_defaults"], } ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to libva-utils Libva-utils is an open source project licensed under the [MIT License] (https://opensource.org/licenses/MIT) ## Coding Style Libva-utils does not have a defined coding style at this time, but that will be updated. ## Certificate of Origin In order to get a clear contribution chain of trust we use the [signed-off-by language] (https://01.org/community/signed-process) used by the Linux kernel project. ## Patch format Beside the signed-off-by footer, we expect each patch to comply with the following format: ``` : Change summary More detailed explanation of your changes: Why and how. Wrap it to 72 characters. See [here] (http://chris.beams.io/posts/git-commit/) for some more good advices. Signed-off-by: ``` For example: ``` drm: remove va_drm_is_authenticated check If we do not use a render node we must authenticate. Doing the extra GetClient calls/ioctls does not help much, so don't bother. Cc: David Herrmann Cc: Daniel Vetter Signed-off-by: Emil Velikov Reviewed-by: Sean V Kelley ``` ## Pull requests We accept github pull requests. Once you've finished making your changes push them to your fork and send the PR via the github UI. ## Reporting a security issue Please refer to [security.md](security.md) file for details. ## Public issue tracking If you have a problem, please let us know. IRC is a perfectly fine place to quickly informally bring something up, if you get a response. The [mailing list](https://lists.01.org/mailman/listinfo/intel-vaapi-media) is a more durable communication channel. If it's a bug not already documented, by all means please [open an issue in github](https://github.com/intel/libva-utils/issues/new) so we all get visibility to the problem and can work towards a resolution. For feature requests we're also using github issues, with the label "enhancement". Our github bug/enhancement backlog and work queue are tracked in a [Libva-utils waffle.io kanban](https://waffle.io/intel/libva-utils). ## Closing issues You can either close issues manually by adding the fixing commit SHA1 to the issue comments or by adding the `Fixes` keyword to your commit message: ``` ssntp: test: Add Disconnection role checking tests We check that we get the right role from the disconnection notifier. Fixes #121 Signed-off-by: Samuel Ortiz ``` Github will then automatically close that issue when parsing the [commit message](https://help.github.com/articles/closing-issues-via-commit-messages/). ================================================ FILE: COPYING ================================================ Copyright (C) 2009-2016 Intel Corporation. All Rights Reserved. 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, sub license, 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 (including the next paragraph) 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 NON-INFRINGEMENT. IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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: INSTALL ================================================ [![Stories in Ready](https://badge.waffle.io/intel/libva-utils.png?label=ready&title=Ready)](https://waffle.io/intel/libva-utils) libva-utils Collection of tests to exercise VA-API as provided by the libva project. VA-API requires a driver implementation to operate. Copyright (C) 2009-2016 Intel Corporation License ------- Please read the COPYING file available in this package. Overview -------- libva-utils is a collection of tests to exercise VA-API in accordance with the libva project. A driver implementation is necessary to properly operate. Project is hosted on github: https://github.com/intel/libva-utils Codecs ------ H.264 D ILK+ H.264 E SNB+ MPEG-2 D CTG+ VC-1 D SNB+ JPEG D IVB+ JPEG E CHV+/BSW+ VP8 D BDW+ VP8 E CHV+/BSW+ HEVC D CHV+/BSW+ HEVC E SKL+ VP9 D BXT+ HEVC 10bit D BXT+ VP9 10bit D KBL+ Requirements ------------ libva API >= 0.39.4 Google Test Framework Integration --------------------------------- Google Test recommends it be custom compiled for each project that uses it. Therefore, the libva-utils project tracks a subset copy of the Google Test Framework source code at release 1.8.0 (initially) in a test/gtest/ subdirectory of the project source tree. The libva-utils copy of gtest will only be updated to new upstream releases (or critical upstream fixes) of gtest, only if it is necessary. As of this writing, the last release (1.8.0) was August 2016, about three years after its previous release. Thus, there should be minimal need to update or maintain gtest within the libva-utils project. Building Google Test Framework Library -------------------------------------- The Google Test Framework is compiled as a convenience library (libgtest.la) within the libva-utils source tree. The rules to build libgtest.la are maintained in a custom makefile in the libva-intel-driver project tree (see test/Makefile.am). The libgtest.la library will be automatically compiled if the tests are enabled by configuration. Building Driver Tests --------------------- The --enable-gtests=[yes|no] configuration option is defined in configure.ac to enable or disable compilation of libgtest.la and the test_va_api test executable. The default is disabled. When the tests are enabled during configuration, the make command will compile the VA-API gtests and link to libgtest.la and output/install a single test/test_va_api or ${prefix}/bin/test_va_api executable. Hence... "./autogen.sh --enable-gtests && make" ...is a minimal example of how one might build the driver and its tests. Since all this project contains only tests, it is configurable to compile the GTest framework and the corresponding tests. Notice the difference when enabling tests on other related projects, e.g. libva-intel-driver. On the summary section after configuration something like this should be seen libva-utils - ${LIBVA_UTILS_VERSION} Libva VA-API version ............. : ${LIBVA_API_VERSION} Installation prefix .............. : ${prefix} Default driver path .............. : ${exec_prefix}/lib/dri Extra window systems ............. : drm x11 Enable Gtests .................... : yes Reporting Bugs / Submit change patches -------------------------------------- See the contributing guide: https://github.com/intel/libva-utils/blob/master/CONTRIBUTING.md ================================================ FILE: Makefile.am ================================================ # Copyright (c) 2007 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} AUTOMAKE_OPTIONS = foreign SUBDIRS = common decode encode vainfo videoprocess vendor/intel vendor/intel/sfcsample if USE_X11 SUBDIRS += putsurface else if USE_WAYLAND SUBDIRS += putsurface endif endif if ENABLE_TESTS SUBDIRS += test endif # Extra clean files so that maintainer-clean removes *everything* MAINTAINERCLEANFILES = \ aclocal.m4 compile config.guess config.sub \ configure depcomp install-sh ltmain.sh \ Makefile.in missing EXTRA_DIST = \ autogen.sh \ $(NULL) ================================================ FILE: NEWS ================================================ libva-utils NEWS -- summary of changes. 2025-12-12 Copyright (C) 2009-2025 Intel Corporation Version 2.23.0 - 12.Dec.2025 * fix:Fixed build with -std=c++20 * fix:usr ptr surface type not set ext buffer flag * fix:Fix coveirty overflowed issues * fix: remove useless code and fix code copy typo * android: Support Android build * sample: [HEVCe] update header logic Version 2.22.0 - 20.Jun.2024 * ci: correct the permission of workflows * fix: Fixed possible memory leak in h264encode * doc: Fix meson build options in README * test/CheckEntrypointsForProfile: fix for limited profiles Version 2.21.0 - 12.Mar.2024 * vainfo: Print VAConfigAttribEncMaxTileRows and VAConfigAttribEncMaxTileCols * test: Add Prime3 memtype support * sample: Add back buffer size options for AV1e * sample: simplify cbr/vbr interface and refine codes for AV1e * fix: clean some unused variables and functions * fix: unify the coding style * fix: Fix coverity issues exposed in encode/decode/vpp * fix: options in AV1 encode sample * fix: fix typo of version in NEWS * ci: harden permission for freebsd.yml * ci: add workflow permission for all jobs * ci: update freebsd vm to the v1 version * meson: use meson setup instead of meson options Version 2.20.0 - 14.Sep.2023 * test: Enable AV1 encode test Version 2.19.0 - 04.Jul.2023 * add: Add support for VAConfigAttribEncHEVCBlockSizes & VAConfigAttribEncHEVCFeatures for hevcencode. * ci:Update ubuntu.yml to remove ubuntu 18.04 * meson: guard code introduced after libva 1.xx release * meson: libva-xyz should be same version as detected libva * configure: libva-xyz should be same version as detected libva * fix: scan num limitation. * fix: pic_order_cnt_lsb to accept larger GOP Version 2.18.0 - 17.Mar.2023 * doc:Add build and install libva-utils steps * test: Add VAProfileH264High10 * test: Don't assume our DRM node is first * add: va_display_drm: Allow VGEM for WSL2 * win: win32 compat: Fix setenv/unsetenv return values * fix: Add Th limitation by HUFFMAN_TABLES Count * fix: Add refresh_frame_flags in PPS * fix: Add checking of stream_scan size * fix: Add Scan Num limitation * fix: Changed H2S configuration template. * fix: Correct maximum display luminance per VAAPI definition. * fix: Fix possible memory leak * fix: Fix coding issues of function return type & ref_frame_idx idx too large Version 2.17.0 - 26.Dec.2022 * add: Upload a security disclaimer * add: av1 encode sample code * tests: Changed default initialization value to VAProfileNone * ci: Add git dependency for mingw build for meson dependencies cloning * vainfo: Add support for Win32 device enumeration and selection * ci: dos2unix for windows workflow files * ci: update checkout and setup-python action versions to v3 and v4 * ci: Add msvc/mingw Windows CI * tests: enable building on Windows * tests: Remove C++20 constructs in tests project targetting C++11 * tests: remove non C++ standard constructs * vainfo: add va-win32 support * add:Import OpenBSD getopt for MSVC from mesa/f9bb5323 * fix: Fix reporting of VAConfigAttribEncMaxSlices * meson: add missing sample tools Version 2.16.0 - 8.Oct.2022 * trace: print the display being attempted * ci: upgrade FreeBSD to 13.1 * meson: Search for threads in top-level meson.build * meson: produce summary() when 0.53.0 is present Version 2.15.0 - 1.Jul.2022 * add: Added HDR10 Tone Mapping sample code including H2H and H2S config files. * add: Support lowpower for HEVC Encoding * fix: Set correct entrypoint for lowpower * fix: Components exceed the value specified by jpeg spec * fix: hdr local variable pointer access issue * fix: Fix issue incorrect color for EU based hevcencode * fix: exclude vgem node and invalid drm node in vainfo * ci:Disable travis build * meson: check the dependency of libdrm Version 2.14.0 - 16.Feb.2022 * test: Use test suite setup/teardown to reduce test overhead * ci: fix freebsd build Version 2.13.0 - 30.Sep.2020 * code style:unify the code styles using the style_unify script * fix: h264encode, hevcencode: fix integer overflow for high definition Version 2.12.0 - 21.Jun.2020 * test: Remove version check for test vaInitialize_vaTerminate * vpp: Added 3DLUT sample code and configuration file Version 2.11.0 - 23.Mar.2020 * vainfo: add VA_RC_TCBRC to reported caps list * jpegenc: Allow encoding a 4K frame * h264encode: Added low_power command line option * test_va_api: Enable new caps for VAConfigAttribEncryption * ci: upgrade FreeBSD to 12.2 * ci: enable github actions Version 2.10.0 - 18.Dec.2020 * add Mediacopy Sample code * Enable new caps for rate control TCBRC * Add support for a --repeat command line option to vp8enc. * fix one null pointer dereference risk Version 2.9.0 - 11.Sep.2020 * Fix KW issues * Add support for csc with RGBP Version 2.8.0 - 26.Jun.2020 * test: cast VA_STATUS_ERROR_UNKNOWN to VAStatus type * test/fixture: fix GCC 10.0.1 error with drmDevicePaths Version 2.7.0 - 1.Apr.2020 * meson: add missing samples * sfcsample: drop unused Linux-only header * autotools: drop libdrm dependency (only libva-drm is used) * autotools: drop unused X11 dependencies * Add 10/12bit RT format check * test/createsurfaces: add some scoped traces * test/streamable: add VAConfigAttrib and VASurfaceAttrib * Modify output CS settings for Chroma siting on Linux * Align libva attribute check * Added displaying supported config attributes * add the VP samples README Version 2.6.0 - 10.Dec.2019 * Align libva attribute check * Added displaying supported config attributes * add the VP samples README. * add VP sample for usrptr and 1:N output Version 2.5.0 - 8.Jul.2019 * meson: rename the h264enc binary to be in line with the autotools build * unify NEWS format * sfcsample: don't include X11 headers * test: update vaInitialize_vaTerminate_Bad_vaSetDriverName * Check for -fstack-protector * vavpp: csc with AYUV format * vavpp: requires BGRA frame when saving a BGRA file Version 2.4.0 - 1.Feb.2019 * fix make dist issue caused by decode streamout sample * add VP sample for Blending. * add VP seperate sample for scaling,csc,sharpness,denoise,chromasitting. Version 2.3.0 - 30.Sep.2018 * add HEVC encode sample code * Add sample code for avc decode streamout * Add VP8 sample encoder application (SVCT supported) Version 2.2.0 - DD.Jul.2018 * Bump version to 2.2.0 * Add meson build * Add vainfo support in Android * Remove driver specific test cases Version 2.1.0 - 12.Feb.2018 * Bump version to 2.1.0 * Refine gtest conformance cases * vp9enc: add support low power mode * vavpp: add support for RGBA/RGBX surface * vainfo: add support new profile/entrypoint pairs Version 2.0.0 - 21.Oct.2017 * Bump version to 2.0.0 * Add option '--device ' to vainfo * Add vp9enc for VP9 encoding * Add vavpp for video processing * Add FEI gtest cases * Fix segmentation fault in putsurface_wayland * Fix GCC 7.1.1 warnings/errors * Fix libva version printed out by vainfo Version 1.8.3 - 28.Jun.2017 * Bump version to 1.8.3 * Switch AC_PROG_LIBTOOL to LT_INIT * putsurface: include wayland-client.h instead of wayland-server.h * avcenc: add AUD NAL unit at the beginning of pic * avcenc: enable direct_spatial_mv_pred_flag for B frame * avcenc: add the frame number as the command line input parameter Version 1.8.2 - 22.May.2017 * Bump version to 1.8.2 Version 1.8.1 - 10.Apr.2017 * Bump version to 1.8.1 Version 1.8.0 - 31.Mar.2017 * First release of libva-utils as a separate project * Follows libva release versioning * Contains all the utilities and tests for libva API * dynamically links to libva * building system clean ups * test suite included using GoogleTestFramework ================================================ FILE: README.md ================================================ [![Stories in Ready](https://badge.waffle.io/intel/libva-utils.png?label=ready&title=Ready)](http://waffle.io/intel/libva-utils) [![Build Status](https://travis-ci.org/intel/libva-utils.svg?branch=master)](https://travis-ci.org/intel/libva-utils) [![Coverity Scan Build Status](https://scan.coverity.com/projects/11613/badge.svg)](https://scan.coverity.com/projects/intel-libva-utils) # Libva-utils Project libva-utils is a collection of utilities and examples to exercise VA-API in accordance with the libva project. --enable-tests (default = no) provides a suite of unit-tests based on Google Test Framework. A driver implementation is necessary to properly operate. VA-API is an open-source library and API specification, which provides access to graphics hardware acceleration capabilities for video processing. It consists of a main library and driver-specific acceleration backends for each supported hardware vendor. If you would like to contribute to libva, check our [Contributing guide](https://github.com/intel/libva-utils/blob/master/CONTRIBUTING.md). We also recommend taking a look at the ['janitorial' bugs](https://github.com/intel/libva-utils/issues?q=is%3Aopen+is%3Aissue+label%3AJanitorial) in our list of open issues as these bugs can be solved without an extensive knowledge of libva-utils. We would love to help you start contributing! The libva-utils development team can be reached via github issues. # Build and Install Libva-utils ### Install Libva You could refer to https://github.com/intel/libva to install Libva ### Build Libva-utils Take latest libva-utils version: ``` git clone https://github.com/intel/libva-utils.git cd libva-utils ``` Build libva-utils by autogen. You could add ```--enable-tests``` to run unit test ``` ./autogen.sh or ./autogen.sh --enable-tests make sudo make install ``` or build using Meson ``` mkdir build cd build meson .. or meson .. -Dtests=true ninja sudo ninja install ``` ### Validate your environment You could run ```vainfo``` to check your media stack environment is correct or not as below. ``` sys@KBL:~/github/libva-utils$ vainfo Trying display: drm libva info: VA-API version 1.14.0 libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so libva info: Found init function __vaDriverInit_1_14 libva info: va_openDriver() returns 0 vainfo: VA-API version: 1.18 (libva 2.18.0.pre1) vainfo: Driver version: Intel iHD driver for Intel(R) Gen Graphics - 22.3.1 () vainfo: Supported profile and entrypoints VAProfileMPEG2Simple : VAEntrypointVLD VAProfileMPEG2Main : VAEntrypointVLD VAProfileH264Main : VAEntrypointVLD VAProfileH264Main : VAEntrypointEncSliceLP VAProfileH264High : VAEntrypointVLD VAProfileH264High : VAEntrypointEncSliceLP VAProfileJPEGBaseline : VAEntrypointVLD VAProfileJPEGBaseline : VAEntrypointEncPicture VAProfileH264ConstrainedBaseline: VAEntrypointVLD VAProfileH264ConstrainedBaseline: VAEntrypointEncSliceLP VAProfileVP8Version0_3 : VAEntrypointVLD VAProfileHEVCMain : VAEntrypointVLD VAProfileHEVCMain10 : VAEntrypointVLD VAProfileVP9Profile0 : VAEntrypointVLD VAProfileVP9Profile2 : VAEntrypointVLD ... ``` ================================================ FILE: autogen.sh ================================================ #!/bin/sh # Copyright (c) 2007 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. PROJECT="libva-utils" test -n "$srcdir" || srcdir="`dirname \"$0\"`" test -n "$srcdir" || srcdir=. if ! test -f "$srcdir/configure.ac"; then echo "Failed to find the top-level $PROJECT directory" exit 1 fi olddir="`pwd`" cd "$srcdir" mkdir -p m4 AUTORECONF=`which autoreconf` if test -z $AUTORECONF; then echo "*** No autoreconf found ***" exit 1 else autoreconf -v --install || exit $? fi cd "$olddir" if test -z "$NOCONFIGURE"; then $srcdir/configure "$@" && echo "Now type 'make' to compile $PROJECT." fi ================================================ FILE: common/Makefile.am ================================================ # Copyright (c) 2012 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. noinst_LTLIBRARIES = libva-display.la libva_display_cflags = \ $(LIBVA_CFLAGS) \ $(NULL) libva_display_libs = \ $(LIBVA_LDFLAGS) \ $(NULL) source_c = va_display.c source_h = va_display.h loadsurface.h loadsurface_yuv.h if USE_X11 source_c += va_display_x11.c libva_display_cflags += $(X11_CFLAGS) $(LIBVA_X11_CFLAGS) libva_display_libs += $(X11_LIBS) $(LIBVA_X11_LIBS) endif if USE_DRM source_c += va_display_drm.c libva_display_cflags += $(LIBVA_DRM_CFLAGS) libva_display_libs += $(LIBVA_DRM_LIBS) endif if USE_WAYLAND source_c += va_display_wayland.c libva_display_cflags += $(WAYLAND_CFLAGS) $(LIBVA_WAYLAND_CFLAGS) libva_display_libs += $(WAYLAND_LIBS) $(LIBVA_WAYLAND_LIBS) endif libva_display_la_SOURCES= $(source_c) noinst_HEADERS = $(source_h) libva_display_la_CFLAGS = $(libva_display_cflags) libva_display_la_LIBADD = $(libva_display_libs) # Extra clean files so that maintainer-clean removes *everything* MAINTAINERCLEANFILES = Makefile.in EXTRA_DIST = \ loadsurface.h \ loadsurface_yuv.h \ $(NULL) ================================================ FILE: common/loadsurface.h ================================================ /* * Copyright (c) 2008-2009 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "loadsurface_yuv.h" static int scale_2dimage(unsigned char *src_img, int src_imgw, int src_imgh, unsigned char *dst_img, int dst_imgw, int dst_imgh) { int row = 0, col = 0; for (row = 0; row < dst_imgh; row++) { for (col = 0; col < dst_imgw; col++) { *(dst_img + row * dst_imgw + col) = *(src_img + (row * src_imgh / dst_imgh) * src_imgw + col * src_imgw / dst_imgw); } } return 0; } static int YUV_blend_with_pic(int width, int height, unsigned char *Y_start, int Y_pitch, unsigned char *U_start, int U_pitch, unsigned char *V_start, int V_pitch, unsigned int fourcc, int fixed_alpha) { /* PIC YUV format */ unsigned char *pic_y_old = yuvga_pic; unsigned char *pic_u_old = pic_y_old + 640 * 480; unsigned char *pic_v_old = pic_u_old + 640 * 480 / 4; unsigned char *pic_y, *pic_u, *pic_v; int alpha_values[] = {100, 90, 80, 70, 60, 50, 40, 30, 20, 30, 40, 50, 60, 70, 80, 90}; static int alpha_idx = 0; int alpha; int allocated = 0; int row, col; if (fixed_alpha == 0) { alpha = alpha_values[alpha_idx % 16 ]; alpha_idx ++; } else alpha = fixed_alpha; //alpha = 0; pic_y = pic_y_old; pic_u = pic_u_old; pic_v = pic_v_old; if (width != 640 || height != 480) { /* need to scale the pic */ pic_y = (unsigned char *)malloc(width * height); if (pic_y == NULL) { printf("Failed to allocate memory for pic_y\n"); return -1; } pic_u = (unsigned char *)malloc(width * height / 4); if (pic_u == NULL) { printf("Failed to allocate memory for pic_u\n"); free(pic_y); return -1; } pic_v = (unsigned char *)malloc(width * height / 4); if (pic_v == NULL) { printf("Failed to allocate memory for pic_v\n"); free(pic_y); free(pic_u); return -1; } allocated = 1; memset(pic_y, 0, width * height); memset(pic_u, 0, width * height / 4); memset(pic_v, 0, width * height / 4); scale_2dimage(pic_y_old, 640, 480, pic_y, width, height); scale_2dimage(pic_u_old, 320, 240, pic_u, width / 2, height / 2); scale_2dimage(pic_v_old, 320, 240, pic_v, width / 2, height / 2); } /* begin blend */ /* Y plane */ int Y_pixel_stride = 1; if (fourcc == VA_FOURCC_YUY2) Y_pixel_stride = 2; for (row = 0; row < height; row++) { unsigned char *p = Y_start + row * Y_pitch; unsigned char *q = pic_y + row * width; for (col = 0; col < width; col++, q++) { *p = *p * (100 - alpha) / 100 + *q * alpha / 100; p += Y_pixel_stride; } } /* U/V plane */ int U_pixel_stride = 0, V_pixel_stride = 0; int v_factor_to_nv12 = 1; switch (fourcc) { case VA_FOURCC_YV12: U_pixel_stride = V_pixel_stride = 1; break; case VA_FOURCC_NV12: U_pixel_stride = V_pixel_stride = 2; break; case VA_FOURCC_YUY2: U_pixel_stride = V_pixel_stride = 4; v_factor_to_nv12 = 2; break; default: break; } for (row = 0; row < height / 2 * v_factor_to_nv12; row++) { unsigned char *pU = U_start + row * U_pitch; unsigned char *pV = V_start + row * V_pitch; unsigned char *qU = pic_u + row / v_factor_to_nv12 * width / 2; unsigned char *qV = pic_v + row / v_factor_to_nv12 * width / 2; for (col = 0; col < width / 2; col++, qU++, qV++) { *pU = *pU * (100 - alpha) / 100 + *qU * alpha / 100; *pV = *pV * (100 - alpha) / 100 + *qV * alpha / 100; pU += U_pixel_stride; pV += V_pixel_stride; } } if (allocated) { free(pic_y); free(pic_u); free(pic_v); } return 0; } static int yuvgen_planar(int width, int height, unsigned char *Y_start, int Y_pitch, unsigned char *U_start, int U_pitch, unsigned char *V_start, int V_pitch, unsigned int fourcc, int box_width, int row_shift, int field) { int row, alpha; unsigned char uv_value = 0x80; /* copy Y plane */ int y_factor = 1; if (fourcc == VA_FOURCC_YUY2) y_factor = 2; for (row = 0; row < height; row++) { unsigned char *Y_row = Y_start + row * Y_pitch; int jj, xpos, ypos; ypos = (row / box_width) & 0x1; /* fill garbage data into the other field */ if (((field == VA_TOP_FIELD) && (row & 1)) || ((field == VA_BOTTOM_FIELD) && ((row & 1) == 0))) { memset(Y_row, 0xff, width); continue; } for (jj = 0; jj < width; jj++) { xpos = ((row_shift + jj) / box_width) & 0x1; if (xpos == ypos) Y_row[jj * y_factor] = 0xeb; else Y_row[jj * y_factor] = 0x10; if (fourcc == VA_FOURCC_YUY2) { Y_row[jj * y_factor + 1] = uv_value; // it is for UV } } } /* copy UV data */ for (row = 0; row < height / 2; row++) { /* fill garbage data into the other field */ if (((field == VA_TOP_FIELD) && (row & 1)) || ((field == VA_BOTTOM_FIELD) && ((row & 1) == 0))) { uv_value = 0xff; } unsigned char *U_row = U_start + row * U_pitch; unsigned char *V_row = V_start + row * V_pitch; switch (fourcc) { case VA_FOURCC_NV12: memset(U_row, uv_value, width); break; case VA_FOURCC_YV12: memset(U_row, uv_value, width / 2); memset(V_row, uv_value, width / 2); break; case VA_FOURCC_YUY2: // see above. it is set with Y update. break; default: printf("unsupported fourcc in loadsurface.h\n"); assert(0); } } if (getenv("AUTO_NOUV")) return 0; if (getenv("AUTO_ALPHA")) alpha = 0; else alpha = 70; YUV_blend_with_pic(width, height, Y_start, Y_pitch, U_start, U_pitch, V_start, V_pitch, fourcc, alpha); return 0; } static int upload_surface(VADisplay va_dpy, VASurfaceID surface_id, int box_width, int row_shift, int field) { VAImage surface_image; void *surface_p = NULL, *U_start = NULL, *V_start = NULL; VAStatus va_status; unsigned int pitches[3] = {0, 0, 0}; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); vaMapBuffer(va_dpy, surface_image.buf, &surface_p); assert(VA_STATUS_SUCCESS == va_status); pitches[0] = surface_image.pitches[0]; switch (surface_image.format.fourcc) { case VA_FOURCC_NV12: U_start = (char *)surface_p + surface_image.offsets[1]; V_start = (char *)U_start + 1; pitches[1] = surface_image.pitches[1]; pitches[2] = surface_image.pitches[1]; break; case VA_FOURCC_IYUV: U_start = (char *)surface_p + surface_image.offsets[1]; V_start = (char *)surface_p + surface_image.offsets[2]; pitches[1] = surface_image.pitches[1]; pitches[2] = surface_image.pitches[2]; break; case VA_FOURCC_YV12: U_start = (char *)surface_p + surface_image.offsets[2]; V_start = (char *)surface_p + surface_image.offsets[1]; pitches[1] = surface_image.pitches[2]; pitches[2] = surface_image.pitches[1]; break; case VA_FOURCC_YUY2: U_start = (char *)surface_p + 1; V_start = (char *)surface_p + 3; pitches[1] = surface_image.pitches[0]; pitches[2] = surface_image.pitches[0]; break; default: assert(0); } /* assume surface is planar format */ yuvgen_planar(surface_image.width, surface_image.height, (unsigned char *)surface_p, pitches[0], (unsigned char *)U_start, pitches[1], (unsigned char *)V_start, pitches[2], surface_image.format.fourcc, box_width, row_shift, field); vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return 0; } #ifdef LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE /* * Upload YUV data from memory into a surface * if src_fourcc == NV12, assume the buffer pointed by src_U * is UV interleaved (src_V is ignored) */ static int upload_surface_yuv(VADisplay va_dpy, VASurfaceID surface_id, int src_fourcc, int src_width, int src_height, unsigned char *src_Y, unsigned char *src_U, unsigned char *src_V) { VAImage surface_image; unsigned char *surface_p = NULL, *Y_start = NULL, *U_start = NULL; int Y_pitch = 0, U_pitch = 0, row; VAStatus va_status; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); vaMapBuffer(va_dpy, surface_image.buf, (void **)&surface_p); assert(VA_STATUS_SUCCESS == va_status); Y_start = surface_p; Y_pitch = surface_image.pitches[0]; switch (surface_image.format.fourcc) { case VA_FOURCC_NV12: U_start = (unsigned char *)surface_p + surface_image.offsets[1]; U_pitch = surface_image.pitches[1]; break; case VA_FOURCC_IYUV: U_start = (unsigned char *)surface_p + surface_image.offsets[1]; U_pitch = surface_image.pitches[1]; break; case VA_FOURCC_YV12: U_start = (unsigned char *)surface_p + surface_image.offsets[2]; U_pitch = surface_image.pitches[2]; break; case VA_FOURCC_YUY2: U_start = surface_p + 1; U_pitch = surface_image.pitches[0]; break; default: assert(0); } /* copy Y plane */ for (row = 0; row < src_height; row++) { unsigned char *Y_row = Y_start + row * Y_pitch; memcpy(Y_row, src_Y + row * src_width, src_width); } for (row = 0; row < src_height / 2; row++) { unsigned char *U_row = U_start + row * U_pitch; unsigned char *u_ptr = NULL, *v_ptr = NULL; int j; switch (surface_image.format.fourcc) { case VA_FOURCC_NV12: if (src_fourcc == VA_FOURCC_NV12) { memcpy(U_row, src_U + row * src_width, src_width); break; } else if (src_fourcc == VA_FOURCC_IYUV) { u_ptr = src_U + row * (src_width / 2); v_ptr = src_V + row * (src_width / 2); } else if (src_fourcc == VA_FOURCC_YV12) { v_ptr = src_U + row * (src_width / 2); u_ptr = src_V + row * (src_width / 2); } if ((src_fourcc == VA_FOURCC_IYUV) || (src_fourcc == VA_FOURCC_YV12)) { for (j = 0; j < src_width / 2; j++) { U_row[2 * j] = u_ptr[j]; U_row[2 * j + 1] = v_ptr[j]; } } break; case VA_FOURCC_IYUV: case VA_FOURCC_YV12: case VA_FOURCC_YUY2: default: printf("unsupported fourcc in load_surface_yuv\n"); assert(0); } } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return 0; } /* * Download YUV data from a surface into memory * Some hardward doesn't have a aperture for linear access of * tiled surface, thus use vaGetImage to expect the implemnetion * to do tile to linear convert * * if dst_fourcc == NV12, assume the buffer pointed by dst_U * is UV interleaved (src_V is ignored) */ static int download_surface_yuv(VADisplay va_dpy, VASurfaceID surface_id, int dst_fourcc, int dst_width, int dst_height, unsigned char *dst_Y, unsigned char *dst_U, unsigned char *dst_V) { VAImage surface_image; unsigned char *surface_p = NULL, *Y_start = NULL, *U_start = NULL; int Y_pitch = 0, U_pitch = 0, row; VAStatus va_status; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); vaMapBuffer(va_dpy, surface_image.buf, (void **)&surface_p); assert(VA_STATUS_SUCCESS == va_status); Y_start = surface_p; Y_pitch = surface_image.pitches[0]; switch (surface_image.format.fourcc) { case VA_FOURCC_NV12: U_start = (unsigned char *)surface_p + surface_image.offsets[1]; U_pitch = surface_image.pitches[1]; break; case VA_FOURCC_IYUV: U_start = (unsigned char *)surface_p + surface_image.offsets[1]; U_pitch = surface_image.pitches[1]; break; case VA_FOURCC_YV12: U_start = (unsigned char *)surface_p + surface_image.offsets[2]; U_pitch = surface_image.pitches[2]; break; case VA_FOURCC_YUY2: U_start = surface_p + 1; U_pitch = surface_image.pitches[0]; break; default: assert(0); } /* copy Y plane */ for (row = 0; row < dst_height; row++) { unsigned char *Y_row = Y_start + row * Y_pitch; memcpy(dst_Y + row * dst_width, Y_row, dst_width); } for (row = 0; row < dst_height / 2; row++) { unsigned char *U_row = U_start + row * U_pitch; unsigned char *u_ptr = NULL, *v_ptr = NULL; int j; switch (surface_image.format.fourcc) { case VA_FOURCC_NV12: if (dst_fourcc == VA_FOURCC_NV12) { memcpy(dst_U + row * dst_width, U_row, dst_width); break; } else if (dst_fourcc == VA_FOURCC_IYUV) { u_ptr = dst_U + row * (dst_width / 2); v_ptr = dst_V + row * (dst_width / 2); } else if (dst_fourcc == VA_FOURCC_YV12) { v_ptr = dst_U + row * (dst_width / 2); u_ptr = dst_V + row * (dst_width / 2); } if ((dst_fourcc == VA_FOURCC_IYUV) || (dst_fourcc == VA_FOURCC_YV12)) { for (j = 0; j < dst_width / 2; j++) { u_ptr[j] = U_row[2 * j]; v_ptr[j] = U_row[2 * j + 1]; } } break; case VA_FOURCC_IYUV: case VA_FOURCC_YV12: case VA_FOURCC_YUY2: default: printf("unsupported fourcc in load_surface_yuv\n"); assert(0); } } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return 0; } #endif /* LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE */ ================================================ FILE: common/loadsurface_yuv.h ================================================ /* * Copyright (c) 2008-2009 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #ifndef _YUVGA_H #define _YUVGA_H static unsigned char yuvga_pic[] = { 0x59, 0x59, 0x58, 0x59, 0x5a, 0x59, 0x58, 0x56, 0x4c, 0x4c, 0x4c, 0x4e, 0x54, 0x57, 0x54, 0x4f, 0x42, 0x42, 0x44, 0x47, 0x4a, 0x4d, 0x53, 0x59, 0x56, 0x57, 0x4f, 0x3e, 0x30, 0x31, 0x3c, 0x47, 0x4d, 0x58, 0x60, 0x5e, 0x58, 0x55, 0x55, 0x55, 0x4f, 0x4d, 0x4f, 0x58, 0x61, 0x60, 0x5a, 0x54, 0x42, 0x4a, 0x4c, 0x46, 0x3f, 0x3d, 0x3c, 0x3a, 0x39, 0x37, 0x37, 0x3c, 0x3f, 0x3b, 0x36, 0x32, 0x3a, 0x30, 0x33, 0x4a, 0x60, 0x62, 0x53, 0x46, 0x40, 0x3e, 0x40, 0x47, 0x49, 0x45, 0x40, 0x3f, 0x3f, 0x47, 0x49, 0x45, 0x4c, 0x64, 0x7c, 0x87, 0x81, 0x77, 0x61, 0x48, 0x3a, 0x3b, 0x3f, 0x3f, 0x44, 0x40, 0x3e, 0x3f, 0x3f, 0x3e, 0x41, 0x46, 0x4b, 0x53, 0x4a, 0x4c, 0x4d, 0x49, 0x4c, 0x3c, 0x3f, 0x3e, 0x43, 0x4c, 0x4b, 0x45, 0x46, 0x4e, 0x52, 0x56, 0x57, 0x54, 0x55, 0x5a, 0x58, 0x51, 0x50, 0x51, 0x51, 0x4d, 0x47, 0x43, 0x41, 0x42, 0x44, 0x48, 0x4a, 0x4b, 0x4d, 0x4d, 0x47, 0x3f, 0x32, 0x28, 0x22, 0x24, 0x25, 0x23, 0x24, 0x29, 0x2d, 0x32, 0x34, 0x32, 0x32, 0x37, 0x3c, 0x3e, 0x40, 0x40, 0x3b, 0x33, 0x2f, 0x33, 0x3c, 0x41, 0x4b, 0x58, 0x5e, 0x5c, 0x57, 0x4e, 0x4c, 0x52, 0x5f, 0x66, 0x74, 0x7b, 0x72, 0x60, 0x5b, 0x60, 0x63, 0x61, 0x5f, 0x65, 0x77, 0x86, 0x80, 0x71, 0x6d, 0x87, 0x98, 0x98, 0x98, 0x99, 0x98, 0x98, 0x9f, 0xa6, 0xb3, 0xd1, 0xd9, 0xee, 0xe0, 0xc8, 0x9c, 0x88, 0x85, 0x83, 0x82, 0x86, 0x82, 0x83, 0x7e, 0x7d, 0x7d, 0x82, 0x83, 0x7e, 0x86, 0x9b, 0xb4, 0xb4, 0x9a, 0x87, 0x81, 0x7f, 0x7f, 0x76, 0x71, 0x78, 0x7f, 0x7f, 0x78, 0x73, 0x72, 0x75, 0x75, 0x75, 0x76, 0x76, 0x7d, 0x8d, 0x93, 0x88, 0x80, 0x73, 0x66, 0x57, 0x45, 0x3e, 0x3f, 0x3e, 0x45, 0x46, 0x54, 0x66, 0x65, 0x50, 0x3f, 0x3b, 0x37, 0x42, 0x52, 0x5b, 0x5b, 0x59, 0x4e, 0x3b, 0x29, 0x2c, 0x27, 0x2a, 0x3e, 0x52, 0x57, 0x57, 0x63, 0x69, 0x68, 0x56, 0x50, 0x6a, 0x77, 0x65, 0x5a, 0x5f, 0x69, 0x6d, 0x67, 0x64, 0x64, 0x5f, 0x5b, 0x67, 0x74, 0x7d, 0x86, 0x8b, 0x86, 0x7d, 0x6d, 0x60, 0x69, 0x80, 0x86, 0x80, 0x85, 0x8e, 0x87, 0x7c, 0x69, 0x6b, 0x62, 0x69, 0x63, 0x68, 0x69, 0x6c, 0x6f, 0x6f, 0x6c, 0x67, 0x63, 0x61, 0x59, 0x53, 0x51, 0x41, 0x40, 0x46, 0x3e, 0x4a, 0x50, 0x57, 0x53, 0x46, 0x41, 0x49, 0x51, 0x51, 0x53, 0x4c, 0x43, 0x3c, 0x38, 0x35, 0x32, 0x2f, 0x32, 0x34, 0x36, 0x36, 0x33, 0x31, 0x32, 0x33, 0x30, 0x2c, 0x27, 0x25, 0x26, 0x28, 0x2a, 0x2b, 0x2d, 0x28, 0x2e, 0x32, 0x2d, 0x34, 0x3e, 0x3c, 0x3b, 0x35, 0x30, 0x36, 0x42, 0x49, 0x46, 0x41, 0x39, 0x3f, 0x37, 0x3a, 0x40, 0x4b, 0x5c, 0x99, 0xcc, 0xdf, 0xd2, 0x9a, 0x69, 0x74, 0x69, 0x56, 0x49, 0x42, 0x41, 0x49, 0x49, 0x42, 0x51, 0x6f, 0x97, 0xa4, 0x95, 0x7a, 0x79, 0x81, 0x7d, 0x77, 0x7a, 0x7e, 0x80, 0x7d, 0x7b, 0x7a, 0x76, 0x71, 0x75, 0x83, 0x9a, 0xb0, 0xc0, 0xc6, 0xc5, 0xc2, 0xc9, 0xc6, 0xb3, 0x94, 0x81, 0x80, 0x7e, 0x77, 0x7a, 0x79, 0x76, 0x75, 0x77, 0x78, 0x76, 0x71, 0x6c, 0x6f, 0x72, 0x71, 0x6d, 0x6b, 0x73, 0x7d, 0x74, 0x6d, 0x61, 0x58, 0x56, 0x57, 0x54, 0x4d, 0x4c, 0x50, 0x53, 0x4e, 0x4b, 0x68, 0x9b, 0xbf, 0xc2, 0x9c, 0x78, 0x6d, 0x6a, 0x64, 0x67, 0x71, 0x75, 0x77, 0x79, 0x7b, 0x7b, 0x79, 0x77, 0x75, 0x72, 0x74, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x81, 0x92, 0xa4, 0xae, 0x9e, 0x94, 0x86, 0x77, 0x66, 0x5a, 0x58, 0x5c, 0x5f, 0x8e, 0xc0, 0xd5, 0xd6, 0xd6, 0xda, 0xdc, 0xcf, 0xb7, 0x76, 0x54, 0x50, 0x57, 0x8b, 0xc1, 0xda, 0xd5, 0xce, 0xc8, 0xb5, 0x92, 0x7b, 0x7b, 0x7a, 0x77, 0x82, 0x91, 0x92, 0x94, 0xa7, 0xbb, 0xcd, 0xcc, 0xb0, 0x71, 0x44, 0x4a, 0x54, 0x45, 0x35, 0x2c, 0x23, 0x20, 0x20, 0x1e, 0x1d, 0x1d, 0x20, 0x1f, 0x16, 0x13, 0x1e, 0x27, 0x28, 0x29, 0x36, 0x32, 0x30, 0x2f, 0x26, 0x1a, 0x15, 0x17, 0x1a, 0x1e, 0x25, 0x2c, 0x33, 0x33, 0x29, 0x1d, 0x1c, 0x1e, 0x24, 0x2e, 0x38, 0x3c, 0x3c, 0x3a, 0x2f, 0x23, 0x1f, 0x28, 0x30, 0x31, 0x36, 0x40, 0x48, 0x3a, 0x42, 0x69, 0x8b, 0x91, 0x8c, 0x8a, 0x86, 0x86, 0x84, 0x82, 0x81, 0x80, 0x7b, 0x76, 0x65, 0x71, 0x7b, 0x75, 0x5e, 0x4f, 0x54, 0x63, 0x6b, 0x74, 0x7e, 0x86, 0x81, 0x6d, 0x5f, 0x63, 0x6e, 0x68, 0x5c, 0x4e, 0x48, 0x51, 0x65, 0x76, 0x59, 0x59, 0x59, 0x5a, 0x5b, 0x5b, 0x59, 0x57, 0x52, 0x52, 0x51, 0x52, 0x55, 0x57, 0x52, 0x4c, 0x41, 0x3f, 0x41, 0x45, 0x49, 0x4b, 0x4f, 0x53, 0x4f, 0x4d, 0x45, 0x39, 0x31, 0x33, 0x39, 0x3d, 0x39, 0x45, 0x52, 0x57, 0x58, 0x57, 0x53, 0x4f, 0x47, 0x44, 0x44, 0x48, 0x4b, 0x49, 0x45, 0x43, 0x4d, 0x52, 0x51, 0x47, 0x3d, 0x3a, 0x3a, 0x39, 0x35, 0x34, 0x35, 0x3a, 0x3d, 0x39, 0x34, 0x31, 0x30, 0x30, 0x31, 0x35, 0x3c, 0x40, 0x3e, 0x39, 0x3d, 0x3b, 0x39, 0x37, 0x37, 0x3b, 0x43, 0x4b, 0x4c, 0x50, 0x4d, 0x47, 0x50, 0x65, 0x71, 0x70, 0x78, 0x82, 0x76, 0x51, 0x35, 0x35, 0x40, 0x43, 0x45, 0x40, 0x3d, 0x3c, 0x3c, 0x3e, 0x43, 0x49, 0x4e, 0x55, 0x4b, 0x4b, 0x4c, 0x4d, 0x53, 0x49, 0x47, 0x49, 0x4e, 0x54, 0x53, 0x4e, 0x4d, 0x4f, 0x55, 0x5e, 0x64, 0x63, 0x60, 0x5d, 0x54, 0x4a, 0x4c, 0x4d, 0x4c, 0x49, 0x45, 0x42, 0x41, 0x42, 0x3b, 0x46, 0x50, 0x51, 0x4c, 0x47, 0x41, 0x3c, 0x2f, 0x26, 0x20, 0x22, 0x25, 0x24, 0x26, 0x2a, 0x2f, 0x2f, 0x31, 0x31, 0x2f, 0x30, 0x39, 0x44, 0x45, 0x45, 0x42, 0x3c, 0x3a, 0x3f, 0x46, 0x4a, 0x53, 0x5b, 0x5c, 0x59, 0x55, 0x4d, 0x46, 0x49, 0x56, 0x59, 0x62, 0x68, 0x64, 0x5b, 0x57, 0x5a, 0x5f, 0x5f, 0x5e, 0x61, 0x6c, 0x75, 0x72, 0x69, 0x69, 0x82, 0x9e, 0xb6, 0xc4, 0xc4, 0xc2, 0xc8, 0xc8, 0xc5, 0xc9, 0xdb, 0xdb, 0xea, 0xdf, 0xcd, 0x97, 0x84, 0x83, 0x83, 0x84, 0x89, 0x86, 0x87, 0x83, 0x82, 0x82, 0x86, 0x86, 0x80, 0x87, 0x9a, 0xbb, 0xba, 0xa0, 0x8c, 0x86, 0x81, 0x80, 0x78, 0x79, 0x81, 0x88, 0x8a, 0x84, 0x7e, 0x7c, 0x7c, 0x80, 0x7e, 0x7d, 0x7c, 0x84, 0x96, 0x9c, 0x92, 0x7c, 0x6c, 0x5f, 0x55, 0x4c, 0x49, 0x47, 0x41, 0x43, 0x46, 0x57, 0x6b, 0x69, 0x51, 0x3a, 0x32, 0x46, 0x58, 0x60, 0x5c, 0x58, 0x54, 0x45, 0x32, 0x29, 0x2b, 0x29, 0x2f, 0x45, 0x59, 0x64, 0x6b, 0x6f, 0x72, 0x76, 0x6c, 0x5f, 0x65, 0x6f, 0x6a, 0x6a, 0x69, 0x6c, 0x6b, 0x68, 0x68, 0x69, 0x65, 0x67, 0x67, 0x6d, 0x7a, 0x85, 0x88, 0x82, 0x7b, 0x72, 0x64, 0x6a, 0x80, 0x86, 0x81, 0x81, 0x84, 0x89, 0x7c, 0x6b, 0x69, 0x66, 0x68, 0x65, 0x68, 0x68, 0x6a, 0x6b, 0x6c, 0x69, 0x64, 0x5e, 0x5b, 0x5c, 0x58, 0x58, 0x48, 0x48, 0x42, 0x44, 0x4d, 0x4e, 0x51, 0x4e, 0x45, 0x40, 0x44, 0x48, 0x48, 0x49, 0x48, 0x47, 0x47, 0x45, 0x40, 0x38, 0x32, 0x32, 0x33, 0x35, 0x36, 0x37, 0x37, 0x36, 0x35, 0x33, 0x32, 0x31, 0x31, 0x32, 0x32, 0x30, 0x2f, 0x36, 0x32, 0x37, 0x3a, 0x34, 0x38, 0x3f, 0x3c, 0x37, 0x33, 0x31, 0x36, 0x3e, 0x44, 0x44, 0x42, 0x3d, 0x3e, 0x36, 0x3b, 0x44, 0x51, 0x65, 0xa4, 0xd4, 0xde, 0xca, 0x92, 0x61, 0x6f, 0x6c, 0x64, 0x54, 0x4b, 0x48, 0x4b, 0x4a, 0x4a, 0x52, 0x5e, 0x87, 0x96, 0x96, 0x85, 0x7c, 0x7c, 0x7e, 0x7f, 0x82, 0x84, 0x84, 0x82, 0x81, 0x81, 0x7e, 0x79, 0x80, 0x88, 0x94, 0x9e, 0xa4, 0xa3, 0x9f, 0x9b, 0x90, 0x91, 0x87, 0x77, 0x70, 0x74, 0x75, 0x72, 0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x7b, 0x76, 0x7a, 0x7a, 0x7c, 0x7c, 0x7a, 0x77, 0x7a, 0x7f, 0x84, 0x83, 0x7f, 0x79, 0x73, 0x6e, 0x66, 0x5f, 0x5b, 0x57, 0x52, 0x49, 0x4a, 0x6c, 0xa1, 0xc3, 0xbb, 0x97, 0x74, 0x67, 0x65, 0x64, 0x68, 0x72, 0x72, 0x75, 0x79, 0x7b, 0x7b, 0x78, 0x73, 0x70, 0x6f, 0x72, 0x75, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x78, 0x76, 0x77, 0x7c, 0x84, 0x87, 0x86, 0x82, 0x7b, 0x71, 0x67, 0x5d, 0x56, 0x56, 0x5a, 0x61, 0x8e, 0xbf, 0xd6, 0xd8, 0xd7, 0xd8, 0xd8, 0xde, 0xc1, 0x7d, 0x55, 0x4e, 0x5b, 0x93, 0xcc, 0xe1, 0xe2, 0xe4, 0xe0, 0xc5, 0x96, 0x7a, 0x7c, 0x86, 0x8b, 0x8e, 0x8d, 0x8c, 0x94, 0xad, 0xc6, 0xcf, 0xd2, 0xc0, 0x8e, 0x61, 0x51, 0x4c, 0x41, 0x35, 0x2d, 0x25, 0x23, 0x21, 0x1e, 0x1c, 0x1b, 0x1a, 0x18, 0x13, 0x13, 0x1a, 0x1c, 0x21, 0x2c, 0x36, 0x32, 0x2f, 0x2c, 0x23, 0x18, 0x15, 0x19, 0x1d, 0x26, 0x30, 0x33, 0x2a, 0x21, 0x23, 0x29, 0x12, 0x1e, 0x2b, 0x32, 0x37, 0x38, 0x30, 0x26, 0x1e, 0x1a, 0x1d, 0x26, 0x28, 0x25, 0x29, 0x32, 0x40, 0x6d, 0x86, 0x72, 0x5e, 0x67, 0x76, 0x78, 0x7c, 0x7e, 0x83, 0x89, 0x8c, 0x8c, 0x8a, 0x89, 0x8e, 0x7d, 0x6b, 0x65, 0x69, 0x71, 0x7a, 0x80, 0x96, 0x83, 0x6c, 0x5e, 0x4f, 0x38, 0x32, 0x3e, 0x2f, 0x3f, 0x55, 0x68, 0x75, 0x82, 0x8f, 0x99, 0x5a, 0x59, 0x5a, 0x5b, 0x5c, 0x5c, 0x5b, 0x5a, 0x58, 0x58, 0x57, 0x57, 0x57, 0x57, 0x51, 0x4a, 0x3d, 0x3c, 0x3f, 0x45, 0x49, 0x48, 0x45, 0x44, 0x44, 0x41, 0x3b, 0x36, 0x37, 0x3b, 0x3d, 0x3b, 0x3c, 0x3e, 0x41, 0x44, 0x4a, 0x50, 0x54, 0x54, 0x4b, 0x48, 0x46, 0x46, 0x44, 0x40, 0x3e, 0x3e, 0x47, 0x4e, 0x50, 0x47, 0x3d, 0x3a, 0x3a, 0x39, 0x38, 0x38, 0x3b, 0x3f, 0x3f, 0x3b, 0x35, 0x32, 0x30, 0x37, 0x38, 0x33, 0x33, 0x3b, 0x40, 0x40, 0x3c, 0x3b, 0x37, 0x32, 0x31, 0x36, 0x3c, 0x40, 0x41, 0x49, 0x4e, 0x4b, 0x48, 0x54, 0x6f, 0x86, 0xab, 0xbf, 0xb0, 0x73, 0x3d, 0x33, 0x3c, 0x40, 0x45, 0x42, 0x3e, 0x3c, 0x3a, 0x3a, 0x3d, 0x42, 0x4b, 0x51, 0x4b, 0x4c, 0x4f, 0x55, 0x61, 0x60, 0x67, 0x6b, 0x6c, 0x6a, 0x67, 0x64, 0x5f, 0x5b, 0x4f, 0x5b, 0x66, 0x67, 0x62, 0x5c, 0x54, 0x4d, 0x46, 0x49, 0x4b, 0x4c, 0x49, 0x46, 0x43, 0x41, 0x4a, 0x53, 0x5a, 0x58, 0x4e, 0x42, 0x38, 0x32, 0x2d, 0x27, 0x24, 0x27, 0x2a, 0x2b, 0x2d, 0x31, 0x34, 0x2f, 0x2f, 0x31, 0x2c, 0x29, 0x35, 0x47, 0x50, 0x4e, 0x49, 0x44, 0x46, 0x4f, 0x57, 0x5b, 0x5d, 0x60, 0x5d, 0x5a, 0x59, 0x52, 0x4a, 0x4a, 0x50, 0x4d, 0x4b, 0x4b, 0x4e, 0x52, 0x55, 0x56, 0x59, 0x5a, 0x5c, 0x5f, 0x62, 0x64, 0x64, 0x63, 0x61, 0x62, 0x69, 0x79, 0x84, 0x82, 0x89, 0x9b, 0xa6, 0xa8, 0xba, 0xd7, 0xdd, 0xe7, 0xdd, 0xcc, 0x99, 0x87, 0x86, 0x85, 0x84, 0x86, 0x81, 0x81, 0x80, 0x80, 0x80, 0x84, 0x86, 0x82, 0x89, 0x9b, 0xb8, 0xb7, 0x9e, 0x8c, 0x86, 0x82, 0x81, 0x7a, 0x77, 0x7c, 0x82, 0x82, 0x7e, 0x79, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x87, 0x9a, 0x9f, 0x93, 0x85, 0x70, 0x60, 0x5a, 0x5a, 0x5a, 0x51, 0x42, 0x46, 0x47, 0x50, 0x5a, 0x56, 0x43, 0x36, 0x34, 0x54, 0x6a, 0x6b, 0x5c, 0x59, 0x55, 0x43, 0x34, 0x2d, 0x2d, 0x2b, 0x31, 0x42, 0x50, 0x5d, 0x6c, 0x73, 0x72, 0x79, 0x77, 0x65, 0x5c, 0x66, 0x73, 0x76, 0x75, 0x71, 0x6c, 0x6a, 0x6a, 0x68, 0x63, 0x66, 0x69, 0x74, 0x81, 0x83, 0x7a, 0x75, 0x77, 0x74, 0x65, 0x69, 0x7f, 0x8b, 0x8c, 0x8a, 0x87, 0x8a, 0x78, 0x6a, 0x61, 0x65, 0x61, 0x64, 0x66, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x67, 0x60, 0x5b, 0x5d, 0x5e, 0x5a, 0x50, 0x4f, 0x3e, 0x47, 0x4d, 0x4e, 0x4c, 0x48, 0x44, 0x40, 0x3e, 0x3e, 0x3e, 0x40, 0x3e, 0x3d, 0x3d, 0x3e, 0x3d, 0x39, 0x36, 0x35, 0x34, 0x34, 0x37, 0x3a, 0x3b, 0x38, 0x35, 0x36, 0x36, 0x36, 0x37, 0x38, 0x37, 0x35, 0x33, 0x34, 0x32, 0x36, 0x37, 0x32, 0x33, 0x36, 0x33, 0x3a, 0x39, 0x39, 0x3a, 0x3e, 0x42, 0x45, 0x46, 0x43, 0x41, 0x39, 0x41, 0x46, 0x51, 0x65, 0xa3, 0xd8, 0xdd, 0xc7, 0x8f, 0x5e, 0x6a, 0x6b, 0x69, 0x55, 0x48, 0x44, 0x45, 0x48, 0x58, 0x68, 0x68, 0x72, 0x79, 0x84, 0x86, 0x7c, 0x79, 0x7d, 0x80, 0x80, 0x7d, 0x78, 0x74, 0x72, 0x71, 0x6c, 0x67, 0x68, 0x6b, 0x6f, 0x71, 0x71, 0x6f, 0x6c, 0x6a, 0x66, 0x65, 0x61, 0x5e, 0x5e, 0x61, 0x62, 0x61, 0x65, 0x69, 0x6c, 0x6d, 0x6e, 0x70, 0x6e, 0x6b, 0x6c, 0x6b, 0x6b, 0x6e, 0x6e, 0x6d, 0x6c, 0x6d, 0x69, 0x71, 0x79, 0x7f, 0x82, 0x84, 0x83, 0x81, 0x78, 0x6b, 0x5b, 0x4c, 0x4c, 0x70, 0xa3, 0xc3, 0xb7, 0x95, 0x71, 0x61, 0x60, 0x63, 0x6a, 0x71, 0x72, 0x74, 0x78, 0x7a, 0x7a, 0x77, 0x74, 0x71, 0x6f, 0x72, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x78, 0x76, 0x77, 0x78, 0x75, 0x68, 0x5b, 0x5d, 0x5a, 0x57, 0x56, 0x56, 0x57, 0x5b, 0x5f, 0x6c, 0x85, 0x9b, 0x9e, 0x9a, 0xa0, 0xab, 0xb2, 0xb4, 0xa2, 0x75, 0x5b, 0x58, 0x60, 0x88, 0xb3, 0xc6, 0xcf, 0xd8, 0xd6, 0xba, 0x8c, 0x75, 0x7b, 0x89, 0x95, 0x8e, 0x7e, 0x7c, 0x8a, 0xa7, 0xc8, 0xcb, 0xd4, 0xc8, 0xa3, 0x76, 0x51, 0x3d, 0x39, 0x35, 0x2f, 0x29, 0x26, 0x23, 0x1e, 0x1b, 0x19, 0x16, 0x14, 0x12, 0x15, 0x17, 0x14, 0x1c, 0x30, 0x35, 0x32, 0x2e, 0x2a, 0x20, 0x18, 0x18, 0x1e, 0x1d, 0x1e, 0x22, 0x29, 0x32, 0x33, 0x27, 0x19, 0x28, 0x20, 0x1e, 0x28, 0x37, 0x38, 0x29, 0x19, 0x1b, 0x1b, 0x1f, 0x25, 0x25, 0x28, 0x35, 0x45, 0x74, 0x5f, 0x58, 0x6d, 0x87, 0x92, 0x95, 0x98, 0x98, 0x87, 0x79, 0x78, 0x7a, 0x76, 0x6b, 0x63, 0x6d, 0x67, 0x68, 0x75, 0x86, 0x90, 0x91, 0x8f, 0x75, 0x67, 0x53, 0x3e, 0x29, 0x1d, 0x34, 0x5d, 0x73, 0x82, 0x8e, 0x87, 0x76, 0x6b, 0x70, 0x7a, 0x5a, 0x5a, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d, 0x5c, 0x5b, 0x5b, 0x5b, 0x59, 0x59, 0x58, 0x52, 0x4b, 0x3e, 0x3e, 0x41, 0x49, 0x4d, 0x49, 0x41, 0x3c, 0x3d, 0x3b, 0x38, 0x39, 0x3f, 0x47, 0x49, 0x47, 0x4b, 0x46, 0x3e, 0x3a, 0x3d, 0x45, 0x4d, 0x51, 0x50, 0x4e, 0x4d, 0x4e, 0x4d, 0x49, 0x46, 0x45, 0x47, 0x50, 0x56, 0x51, 0x4a, 0x46, 0x41, 0x3c, 0x3c, 0x3c, 0x3e, 0x41, 0x40, 0x3a, 0x34, 0x31, 0x33, 0x37, 0x39, 0x36, 0x36, 0x38, 0x38, 0x35, 0x3f, 0x3f, 0x3b, 0x36, 0x36, 0x39, 0x38, 0x34, 0x38, 0x3b, 0x45, 0x49, 0x41, 0x48, 0x74, 0xa7, 0xd1, 0xdd, 0xc5, 0x82, 0x47, 0x34, 0x37, 0x38, 0x3c, 0x3d, 0x3f, 0x41, 0x40, 0x40, 0x43, 0x45, 0x48, 0x4c, 0x4a, 0x4a, 0x4f, 0x5c, 0x6e, 0x76, 0x87, 0x99, 0xa7, 0xa7, 0x9c, 0x89, 0x69, 0x4e, 0x5e, 0x6e, 0x7d, 0x7f, 0x76, 0x6a, 0x5d, 0x55, 0x51, 0x50, 0x4e, 0x4c, 0x4a, 0x48, 0x47, 0x46, 0x4a, 0x4c, 0x4d, 0x4e, 0x4c, 0x45, 0x3b, 0x34, 0x2f, 0x2c, 0x2c, 0x31, 0x34, 0x34, 0x34, 0x36, 0x37, 0x33, 0x31, 0x30, 0x2d, 0x2c, 0x37, 0x45, 0x51, 0x52, 0x52, 0x53, 0x57, 0x5c, 0x5e, 0x5c, 0x52, 0x55, 0x53, 0x53, 0x59, 0x59, 0x56, 0x59, 0x57, 0x53, 0x4c, 0x48, 0x4a, 0x4f, 0x50, 0x4d, 0x54, 0x55, 0x5a, 0x5f, 0x5f, 0x5d, 0x5d, 0x60, 0x61, 0x5e, 0x5c, 0x63, 0x68, 0x64, 0x6b, 0x7f, 0x88, 0x8d, 0xac, 0xd4, 0xe4, 0xe7, 0xd9, 0xc3, 0x96, 0x86, 0x87, 0x86, 0x83, 0x84, 0x7e, 0x7d, 0x7c, 0x7d, 0x7d, 0x81, 0x84, 0x81, 0x86, 0x97, 0xac, 0xab, 0x94, 0x86, 0x83, 0x80, 0x80, 0x7b, 0x7c, 0x7e, 0x80, 0x7e, 0x7b, 0x78, 0x77, 0x78, 0x75, 0x74, 0x77, 0x7c, 0x8c, 0xa4, 0xad, 0xa3, 0x94, 0x7c, 0x68, 0x65, 0x6a, 0x6b, 0x5b, 0x42, 0x44, 0x45, 0x49, 0x48, 0x3e, 0x34, 0x38, 0x43, 0x50, 0x62, 0x5b, 0x4d, 0x52, 0x4b, 0x39, 0x34, 0x31, 0x2f, 0x2d, 0x32, 0x3b, 0x40, 0x4c, 0x5f, 0x70, 0x6d, 0x70, 0x6d, 0x5c, 0x50, 0x5d, 0x73, 0x7c, 0x80, 0x7d, 0x76, 0x73, 0x6f, 0x68, 0x63, 0x5e, 0x61, 0x69, 0x72, 0x75, 0x70, 0x6f, 0x70, 0x6e, 0x60, 0x63, 0x7a, 0x90, 0x9f, 0xa3, 0x9e, 0x95, 0x7d, 0x6e, 0x5f, 0x65, 0x5e, 0x67, 0x6a, 0x6c, 0x6b, 0x6a, 0x6d, 0x70, 0x6f, 0x69, 0x64, 0x5e, 0x65, 0x56, 0x5a, 0x52, 0x44, 0x4a, 0x4f, 0x50, 0x48, 0x42, 0x42, 0x40, 0x3a, 0x37, 0x38, 0x3c, 0x3a, 0x37, 0x36, 0x37, 0x37, 0x37, 0x37, 0x36, 0x36, 0x36, 0x38, 0x39, 0x38, 0x35, 0x33, 0x36, 0x35, 0x34, 0x33, 0x34, 0x34, 0x34, 0x35, 0x35, 0x35, 0x36, 0x37, 0x35, 0x35, 0x37, 0x35, 0x36, 0x36, 0x35, 0x35, 0x37, 0x39, 0x3c, 0x3e, 0x43, 0x40, 0x3e, 0x48, 0x4a, 0x53, 0x68, 0xa3, 0xd5, 0xdb, 0xc4, 0x8c, 0x5f, 0x71, 0x77, 0x77, 0x62, 0x4f, 0x49, 0x4a, 0x4f, 0x6f, 0x91, 0x98, 0x78, 0x6a, 0x6f, 0x7d, 0x7b, 0x78, 0x78, 0x74, 0x70, 0x69, 0x60, 0x5b, 0x5a, 0x59, 0x54, 0x4f, 0x54, 0x55, 0x56, 0x58, 0x59, 0x59, 0x59, 0x59, 0x5c, 0x56, 0x52, 0x52, 0x52, 0x52, 0x52, 0x53, 0x55, 0x58, 0x59, 0x57, 0x57, 0x59, 0x5b, 0x5a, 0x5f, 0x5e, 0x5f, 0x62, 0x64, 0x64, 0x67, 0x6a, 0x65, 0x68, 0x6b, 0x6e, 0x73, 0x77, 0x7a, 0x7b, 0x81, 0x73, 0x61, 0x4f, 0x4f, 0x74, 0xa6, 0xc3, 0xb6, 0x97, 0x72, 0x60, 0x5e, 0x64, 0x6a, 0x6f, 0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x76, 0x75, 0x71, 0x74, 0x77, 0x79, 0x78, 0x77, 0x77, 0x76, 0x78, 0x77, 0x77, 0x78, 0x77, 0x6e, 0x5b, 0x49, 0x4f, 0x4e, 0x4f, 0x53, 0x58, 0x5d, 0x61, 0x64, 0x6e, 0x7a, 0x80, 0x77, 0x6d, 0x6e, 0x74, 0x78, 0x74, 0x71, 0x65, 0x62, 0x66, 0x66, 0x72, 0x84, 0x97, 0xa3, 0xaa, 0xa7, 0x99, 0x85, 0x7d, 0x86, 0x81, 0x8c, 0x7f, 0x6c, 0x6e, 0x78, 0x91, 0xb6, 0xcb, 0xd6, 0xc9, 0xa5, 0x7a, 0x4e, 0x33, 0x32, 0x34, 0x30, 0x2c, 0x2a, 0x25, 0x1f, 0x1a, 0x19, 0x15, 0x17, 0x16, 0x16, 0x17, 0x15, 0x1e, 0x30, 0x38, 0x35, 0x30, 0x2a, 0x21, 0x1b, 0x1d, 0x24, 0x1b, 0x23, 0x22, 0x1c, 0x21, 0x2e, 0x2e, 0x22, 0x14, 0x1b, 0x2d, 0x3d, 0x37, 0x25, 0x1e, 0x24, 0x28, 0x2a, 0x2d, 0x31, 0x32, 0x39, 0x4a, 0x5b, 0x62, 0x7a, 0x91, 0x94, 0x8c, 0x88, 0x8d, 0x93, 0x7f, 0x84, 0x8b, 0x8a, 0x7b, 0x6d, 0x6e, 0x78, 0x73, 0x73, 0x76, 0x79, 0x79, 0x74, 0x6b, 0x65, 0x48, 0x38, 0x32, 0x4f, 0x7c, 0x95, 0x9d, 0xa2, 0x97, 0x81, 0x68, 0x5e, 0x63, 0x6a, 0x6a, 0x65, 0x5a, 0x5a, 0x5a, 0x5c, 0x5e, 0x5e, 0x5e, 0x5c, 0x5a, 0x5b, 0x5b, 0x5a, 0x5a, 0x59, 0x54, 0x4f, 0x44, 0x41, 0x42, 0x48, 0x4d, 0x4b, 0x46, 0x42, 0x3a, 0x3a, 0x3a, 0x3b, 0x42, 0x4b, 0x51, 0x52, 0x4f, 0x4c, 0x48, 0x45, 0x42, 0x40, 0x3f, 0x3f, 0x45, 0x44, 0x46, 0x4d, 0x51, 0x4e, 0x49, 0x46, 0x48, 0x4e, 0x51, 0x4e, 0x4a, 0x46, 0x3d, 0x33, 0x35, 0x34, 0x37, 0x3b, 0x3b, 0x36, 0x30, 0x2d, 0x33, 0x34, 0x3a, 0x40, 0x40, 0x3c, 0x3b, 0x3d, 0x42, 0x44, 0x44, 0x40, 0x3d, 0x3d, 0x3e, 0x3f, 0x44, 0x3f, 0x3d, 0x40, 0x44, 0x50, 0x6d, 0x8b, 0x9a, 0x9b, 0x88, 0x62, 0x41, 0x36, 0x37, 0x37, 0x3c, 0x3e, 0x3f, 0x3c, 0x39, 0x39, 0x3a, 0x3c, 0x42, 0x43, 0x47, 0x4c, 0x5d, 0x7e, 0x9f, 0xb6, 0xc9, 0xdd, 0xec, 0xec, 0xe6, 0xdb, 0xc2, 0xa9, 0x93, 0xa6, 0xbd, 0xc7, 0xc2, 0xb5, 0xa7, 0x9f, 0x88, 0x80, 0x73, 0x67, 0x5e, 0x56, 0x50, 0x4d, 0x4c, 0x4a, 0x4a, 0x4b, 0x4a, 0x46, 0x40, 0x3c, 0x32, 0x31, 0x33, 0x36, 0x36, 0x34, 0x31, 0x30, 0x35, 0x35, 0x33, 0x30, 0x32, 0x38, 0x3f, 0x44, 0x4c, 0x50, 0x56, 0x5b, 0x5e, 0x5d, 0x55, 0x4d, 0x49, 0x4e, 0x4d, 0x4f, 0x57, 0x5d, 0x62, 0x6a, 0x5f, 0x5d, 0x59, 0x55, 0x53, 0x53, 0x4e, 0x48, 0x52, 0x53, 0x57, 0x5d, 0x5f, 0x5c, 0x5a, 0x5b, 0x59, 0x5f, 0x62, 0x62, 0x64, 0x66, 0x70, 0x81, 0x8b, 0x8b, 0xa8, 0xcd, 0xe3, 0xe7, 0xda, 0xc1, 0x89, 0x7c, 0x80, 0x83, 0x84, 0x87, 0x83, 0x84, 0x82, 0x83, 0x83, 0x85, 0x88, 0x84, 0x88, 0x96, 0xaa, 0xa9, 0x93, 0x87, 0x84, 0x80, 0x80, 0x7b, 0x7d, 0x80, 0x82, 0x81, 0x7d, 0x79, 0x77, 0x77, 0x75, 0x76, 0x79, 0x7f, 0x8e, 0xa7, 0xb2, 0xa9, 0x93, 0x7b, 0x69, 0x69, 0x72, 0x76, 0x64, 0x47, 0x3a, 0x42, 0x48, 0x43, 0x36, 0x33, 0x44, 0x57, 0x63, 0x66, 0x57, 0x4f, 0x55, 0x49, 0x35, 0x35, 0x2f, 0x30, 0x31, 0x37, 0x3c, 0x3c, 0x46, 0x5a, 0x6c, 0x6c, 0x69, 0x61, 0x56, 0x50, 0x5a, 0x6c, 0x81, 0x8c, 0x89, 0x80, 0x7e, 0x7a, 0x72, 0x71, 0x73, 0x6b, 0x63, 0x68, 0x79, 0x86, 0x82, 0x77, 0x68, 0x5c, 0x5e, 0x71, 0x8d, 0xaa, 0xb9, 0xb6, 0x9d, 0x81, 0x6d, 0x59, 0x5c, 0x54, 0x60, 0x67, 0x6c, 0x69, 0x67, 0x6a, 0x6f, 0x70, 0x6d, 0x69, 0x5e, 0x69, 0x52, 0x61, 0x53, 0x51, 0x4f, 0x55, 0x4f, 0x45, 0x3d, 0x3e, 0x3d, 0x38, 0x36, 0x38, 0x3c, 0x3d, 0x3e, 0x3f, 0x3f, 0x3b, 0x37, 0x34, 0x34, 0x36, 0x38, 0x39, 0x37, 0x36, 0x36, 0x37, 0x37, 0x37, 0x37, 0x36, 0x35, 0x35, 0x36, 0x36, 0x37, 0x37, 0x34, 0x33, 0x33, 0x33, 0x32, 0x34, 0x36, 0x33, 0x31, 0x32, 0x36, 0x39, 0x3a, 0x39, 0x3c, 0x3b, 0x3d, 0x48, 0x49, 0x58, 0x72, 0xaa, 0xd7, 0xdd, 0xc5, 0x8a, 0x5d, 0x73, 0x79, 0x75, 0x67, 0x53, 0x4e, 0x50, 0x53, 0x74, 0xa0, 0xb1, 0x95, 0x79, 0x70, 0x7a, 0x7a, 0x77, 0x75, 0x6f, 0x65, 0x5c, 0x53, 0x51, 0x53, 0x54, 0x53, 0x50, 0x54, 0x54, 0x54, 0x55, 0x55, 0x55, 0x55, 0x56, 0x54, 0x4d, 0x47, 0x48, 0x49, 0x49, 0x4b, 0x4e, 0x50, 0x54, 0x56, 0x56, 0x56, 0x58, 0x58, 0x56, 0x5a, 0x5a, 0x5b, 0x5d, 0x5c, 0x60, 0x69, 0x72, 0x75, 0x6d, 0x64, 0x61, 0x63, 0x65, 0x65, 0x64, 0x68, 0x62, 0x58, 0x4c, 0x50, 0x77, 0xaa, 0xc7, 0xb4, 0x95, 0x71, 0x60, 0x5f, 0x65, 0x6b, 0x70, 0x77, 0x79, 0x7b, 0x7c, 0x7b, 0x77, 0x73, 0x70, 0x6e, 0x72, 0x76, 0x78, 0x79, 0x78, 0x78, 0x78, 0x76, 0x77, 0x78, 0x78, 0x77, 0x6e, 0x5e, 0x4f, 0x59, 0x59, 0x59, 0x5b, 0x5e, 0x61, 0x62, 0x62, 0x6e, 0x71, 0x6e, 0x63, 0x5a, 0x59, 0x5d, 0x5f, 0x5f, 0x5d, 0x5f, 0x64, 0x6c, 0x6c, 0x67, 0x6a, 0x60, 0x6a, 0x6a, 0x64, 0x69, 0x70, 0x76, 0x7c, 0x7f, 0x80, 0x70, 0x64, 0x69, 0x6b, 0x79, 0x99, 0xbb, 0xc7, 0xba, 0x95, 0x71, 0x4e, 0x35, 0x2f, 0x33, 0x30, 0x2e, 0x2b, 0x25, 0x1d, 0x1a, 0x19, 0x14, 0x1a, 0x18, 0x15, 0x18, 0x1d, 0x23, 0x2c, 0x39, 0x35, 0x2f, 0x27, 0x1e, 0x1b, 0x1f, 0x25, 0x21, 0x27, 0x28, 0x25, 0x24, 0x25, 0x24, 0x1f, 0x1e, 0x27, 0x39, 0x4b, 0x55, 0x53, 0x4e, 0x4b, 0x57, 0x5b, 0x60, 0x63, 0x65, 0x67, 0x6c, 0x71, 0x76, 0x7d, 0x75, 0x69, 0x76, 0x8d, 0x86, 0x6c, 0x73, 0x66, 0x5b, 0x5d, 0x64, 0x66, 0x66, 0x66, 0x61, 0x5d, 0x5d, 0x65, 0x6d, 0x6c, 0x5d, 0x4e, 0x3b, 0x58, 0x71, 0x7c, 0x80, 0x7d, 0x78, 0x7a, 0x6b, 0x62, 0x56, 0x4d, 0x4b, 0x51, 0x59, 0x5f, 0x59, 0x59, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d, 0x5c, 0x59, 0x5a, 0x5a, 0x59, 0x59, 0x5a, 0x57, 0x52, 0x49, 0x42, 0x3e, 0x41, 0x45, 0x46, 0x46, 0x46, 0x38, 0x3a, 0x3b, 0x3a, 0x3e, 0x47, 0x4f, 0x53, 0x55, 0x52, 0x4f, 0x4f, 0x4b, 0x43, 0x3d, 0x39, 0x39, 0x38, 0x3c, 0x45, 0x4b, 0x4b, 0x47, 0x44, 0x44, 0x45, 0x43, 0x44, 0x4a, 0x4d, 0x45, 0x3a, 0x32, 0x30, 0x32, 0x38, 0x3d, 0x3b, 0x37, 0x34, 0x37, 0x38, 0x3d, 0x43, 0x3f, 0x36, 0x37, 0x3f, 0x42, 0x4b, 0x56, 0x5a, 0x52, 0x47, 0x42, 0x43, 0x44, 0x47, 0x42, 0x3b, 0x40, 0x51, 0x5b, 0x5a, 0x58, 0x55, 0x4f, 0x46, 0x3e, 0x39, 0x38, 0x38, 0x41, 0x42, 0x40, 0x3b, 0x3a, 0x40, 0x49, 0x4e, 0x44, 0x3f, 0x43, 0x47, 0x5f, 0x8b, 0xb6, 0xd9, 0xeb, 0xf0, 0xeb, 0xdc, 0xd5, 0xd8, 0xd4, 0xca, 0xb7, 0xc1, 0xce, 0xd5, 0xd6, 0xd3, 0xd2, 0xd1, 0xce, 0xc8, 0xbd, 0xae, 0x9b, 0x84, 0x6c, 0x5c, 0x51, 0x4d, 0x49, 0x47, 0x45, 0x42, 0x41, 0x42, 0x32, 0x33, 0x34, 0x33, 0x31, 0x2d, 0x29, 0x26, 0x2f, 0x32, 0x33, 0x32, 0x38, 0x42, 0x48, 0x48, 0x51, 0x52, 0x53, 0x53, 0x54, 0x56, 0x53, 0x4f, 0x44, 0x47, 0x42, 0x3e, 0x42, 0x47, 0x4e, 0x59, 0x61, 0x5c, 0x55, 0x52, 0x52, 0x55, 0x56, 0x57, 0x55, 0x55, 0x56, 0x59, 0x5c, 0x5d, 0x5a, 0x57, 0x5a, 0x6a, 0x71, 0x6f, 0x6e, 0x71, 0x7a, 0x87, 0x90, 0x8e, 0xab, 0xca, 0xe4, 0xe6, 0xd9, 0xba, 0x82, 0x76, 0x7d, 0x82, 0x83, 0x88, 0x85, 0x86, 0x83, 0x86, 0x87, 0x8b, 0x90, 0x90, 0x94, 0xa0, 0xb1, 0xaf, 0x99, 0x8d, 0x89, 0x82, 0x80, 0x7b, 0x77, 0x7d, 0x84, 0x86, 0x81, 0x7b, 0x76, 0x75, 0x72, 0x7a, 0x87, 0x91, 0x9b, 0xa8, 0xa6, 0x96, 0x85, 0x72, 0x64, 0x66, 0x72, 0x78, 0x68, 0x4d, 0x3a, 0x3e, 0x3e, 0x36, 0x30, 0x3b, 0x58, 0x70, 0x81, 0x76, 0x63, 0x5b, 0x5b, 0x4b, 0x38, 0x37, 0x2f, 0x34, 0x37, 0x3c, 0x3f, 0x3d, 0x46, 0x58, 0x65, 0x6d, 0x6b, 0x63, 0x61, 0x62, 0x65, 0x6d, 0x7d, 0x8b, 0x86, 0x7a, 0x7c, 0x7b, 0x78, 0x7c, 0x7e, 0x7d, 0x7b, 0x7c, 0x85, 0x8d, 0x86, 0x78, 0x6a, 0x61, 0x5d, 0x65, 0x7d, 0xa1, 0xb8, 0xb8, 0xa1, 0x86, 0x6d, 0x5b, 0x56, 0x51, 0x5d, 0x6b, 0x7b, 0x76, 0x6f, 0x6c, 0x6b, 0x69, 0x64, 0x60, 0x5d, 0x65, 0x52, 0x5b, 0x4f, 0x55, 0x4e, 0x54, 0x4b, 0x41, 0x3a, 0x3a, 0x3b, 0x39, 0x39, 0x3a, 0x3d, 0x3d, 0x3d, 0x3d, 0x3c, 0x3b, 0x3a, 0x39, 0x3a, 0x3d, 0x3f, 0x3f, 0x3e, 0x3e, 0x40, 0x43, 0x41, 0x43, 0x46, 0x46, 0x45, 0x42, 0x40, 0x3f, 0x40, 0x41, 0x3a, 0x36, 0x38, 0x35, 0x31, 0x34, 0x39, 0x35, 0x32, 0x34, 0x38, 0x3b, 0x3a, 0x37, 0x39, 0x37, 0x38, 0x3f, 0x3e, 0x51, 0x67, 0x94, 0xa2, 0xb0, 0xaa, 0x85, 0x63, 0x74, 0x6f, 0x66, 0x5b, 0x51, 0x53, 0x58, 0x60, 0x7e, 0xa3, 0xb3, 0xaa, 0x8f, 0x7c, 0x79, 0x78, 0x77, 0x78, 0x79, 0x6a, 0x60, 0x56, 0x53, 0x55, 0x55, 0x54, 0x54, 0x53, 0x53, 0x53, 0x53, 0x52, 0x52, 0x52, 0x52, 0x4d, 0x49, 0x44, 0x43, 0x43, 0x43, 0x46, 0x48, 0x4e, 0x55, 0x5d, 0x61, 0x63, 0x62, 0x5c, 0x56, 0x52, 0x53, 0x53, 0x51, 0x4f, 0x54, 0x62, 0x71, 0x6b, 0x5f, 0x53, 0x52, 0x58, 0x5b, 0x5a, 0x57, 0x53, 0x54, 0x52, 0x4c, 0x53, 0x7c, 0xae, 0xc9, 0xae, 0x8f, 0x6e, 0x61, 0x61, 0x65, 0x6b, 0x71, 0x73, 0x78, 0x7d, 0x80, 0x7d, 0x75, 0x6c, 0x65, 0x69, 0x6d, 0x72, 0x76, 0x78, 0x79, 0x79, 0x7a, 0x77, 0x78, 0x79, 0x78, 0x77, 0x71, 0x65, 0x5a, 0x5f, 0x61, 0x62, 0x62, 0x63, 0x65, 0x66, 0x65, 0x6a, 0x67, 0x60, 0x57, 0x52, 0x54, 0x56, 0x56, 0x55, 0x51, 0x5a, 0x60, 0x69, 0x6f, 0x66, 0x64, 0x5b, 0x62, 0x5e, 0x5a, 0x66, 0x77, 0x7f, 0x82, 0x84, 0x7a, 0x68, 0x61, 0x67, 0x66, 0x6b, 0x7d, 0x89, 0x93, 0x8d, 0x74, 0x5f, 0x4d, 0x3a, 0x2e, 0x30, 0x2e, 0x2c, 0x28, 0x22, 0x1b, 0x19, 0x1a, 0x14, 0x1b, 0x18, 0x15, 0x1d, 0x25, 0x28, 0x2b, 0x37, 0x31, 0x27, 0x1e, 0x19, 0x1c, 0x23, 0x2a, 0x29, 0x22, 0x23, 0x2a, 0x28, 0x1e, 0x1d, 0x26, 0x3c, 0x61, 0x7c, 0x75, 0x63, 0x5f, 0x62, 0x62, 0x6c, 0x6d, 0x6d, 0x6d, 0x6f, 0x72, 0x73, 0x71, 0x69, 0x6e, 0x78, 0x7b, 0x71, 0x64, 0x67, 0x72, 0x64, 0x5f, 0x58, 0x50, 0x4c, 0x4e, 0x56, 0x5c, 0x56, 0x55, 0x57, 0x5b, 0x5d, 0x52, 0x3b, 0x26, 0x48, 0x62, 0x6f, 0x68, 0x62, 0x5e, 0x57, 0x54, 0x53, 0x4b, 0x45, 0x48, 0x52, 0x55, 0x4f, 0x47, 0x59, 0x59, 0x59, 0x5b, 0x5c, 0x5d, 0x5c, 0x5a, 0x5a, 0x5c, 0x5b, 0x59, 0x59, 0x59, 0x57, 0x54, 0x4e, 0x48, 0x44, 0x44, 0x44, 0x42, 0x3f, 0x3e, 0x36, 0x39, 0x39, 0x39, 0x3c, 0x44, 0x4c, 0x50, 0x56, 0x4f, 0x4a, 0x4b, 0x4b, 0x46, 0x3f, 0x3b, 0x37, 0x36, 0x38, 0x3d, 0x42, 0x43, 0x44, 0x46, 0x44, 0x42, 0x42, 0x4c, 0x5f, 0x6b, 0x65, 0x57, 0x3d, 0x39, 0x3a, 0x42, 0x4a, 0x4c, 0x48, 0x45, 0x41, 0x40, 0x41, 0x44, 0x46, 0x45, 0x42, 0x41, 0x4e, 0x50, 0x5c, 0x6e, 0x71, 0x60, 0x4d, 0x44, 0x3f, 0x45, 0x45, 0x3d, 0x3c, 0x48, 0x53, 0x57, 0x5f, 0x5e, 0x5b, 0x52, 0x45, 0x3c, 0x3a, 0x3b, 0x3d, 0x41, 0x43, 0x42, 0x48, 0x56, 0x66, 0x6f, 0x50, 0x45, 0x44, 0x3f, 0x4e, 0x74, 0x95, 0xb6, 0xd8, 0xe6, 0xf0, 0xf0, 0xf0, 0xf1, 0xeb, 0xe1, 0xe8, 0xe5, 0xe0, 0xde, 0xdc, 0xde, 0xe2, 0xe6, 0xdc, 0xdb, 0xd8, 0xd3, 0xc8, 0xb4, 0x9c, 0x8b, 0x6d, 0x58, 0x43, 0x3b, 0x3f, 0x42, 0x42, 0x41, 0x33, 0x34, 0x33, 0x31, 0x2e, 0x2c, 0x2a, 0x29, 0x2e, 0x2f, 0x32, 0x37, 0x3c, 0x42, 0x49, 0x4e, 0x5c, 0x5f, 0x62, 0x64, 0x67, 0x6a, 0x69, 0x66, 0x67, 0x66, 0x5d, 0x57, 0x5b, 0x60, 0x69, 0x75, 0x6c, 0x64, 0x5f, 0x63, 0x66, 0x64, 0x61, 0x62, 0x5b, 0x5c, 0x5b, 0x58, 0x5b, 0x61, 0x61, 0x5d, 0x6d, 0x84, 0x98, 0xa1, 0xa3, 0x9f, 0x9e, 0xa5, 0x9e, 0xa0, 0xbd, 0xd3, 0xe8, 0xe4, 0xd4, 0xaf, 0x84, 0x78, 0x7f, 0x82, 0x82, 0x85, 0x82, 0x84, 0x7f, 0x83, 0x85, 0x8a, 0x91, 0x91, 0x96, 0xa1, 0xad, 0xab, 0x95, 0x8b, 0x88, 0x81, 0x80, 0x7c, 0x7d, 0x84, 0x8b, 0x8c, 0x87, 0x82, 0x81, 0x82, 0x81, 0x8c, 0x9a, 0xa1, 0xa4, 0xa8, 0xa0, 0x8d, 0x82, 0x74, 0x69, 0x68, 0x6e, 0x73, 0x65, 0x4c, 0x3c, 0x37, 0x2e, 0x29, 0x32, 0x4b, 0x6a, 0x7e, 0x79, 0x6c, 0x5c, 0x53, 0x4c, 0x41, 0x35, 0x2e, 0x2e, 0x36, 0x3a, 0x3d, 0x41, 0x42, 0x4b, 0x5b, 0x6c, 0x76, 0x72, 0x6b, 0x6f, 0x70, 0x6d, 0x71, 0x72, 0x80, 0x77, 0x69, 0x70, 0x71, 0x6d, 0x72, 0x6b, 0x74, 0x7d, 0x7e, 0x78, 0x72, 0x6f, 0x6f, 0x75, 0x6d, 0x63, 0x5c, 0x69, 0x8b, 0xa4, 0xa6, 0x9e, 0x88, 0x6e, 0x64, 0x59, 0x5b, 0x67, 0x7a, 0x86, 0x7f, 0x75, 0x6d, 0x69, 0x65, 0x61, 0x5d, 0x61, 0x62, 0x5f, 0x4d, 0x49, 0x49, 0x45, 0x48, 0x46, 0x40, 0x3b, 0x3a, 0x3d, 0x3e, 0x3f, 0x3e, 0x42, 0x42, 0x41, 0x41, 0x43, 0x46, 0x49, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4e, 0x50, 0x52, 0x54, 0x54, 0x56, 0x58, 0x58, 0x55, 0x53, 0x51, 0x51, 0x5a, 0x5c, 0x54, 0x4e, 0x52, 0x4c, 0x44, 0x47, 0x3f, 0x3b, 0x38, 0x38, 0x39, 0x38, 0x34, 0x31, 0x37, 0x36, 0x36, 0x3a, 0x36, 0x44, 0x49, 0x62, 0x4d, 0x60, 0x72, 0x71, 0x62, 0x71, 0x6a, 0x65, 0x58, 0x5f, 0x67, 0x71, 0x89, 0xaa, 0xc0, 0xc6, 0xb8, 0xa3, 0x85, 0x76, 0x78, 0x7b, 0x7b, 0x7d, 0x72, 0x67, 0x5c, 0x57, 0x55, 0x53, 0x52, 0x52, 0x54, 0x54, 0x55, 0x56, 0x57, 0x58, 0x5a, 0x5a, 0x56, 0x56, 0x54, 0x50, 0x4d, 0x4b, 0x49, 0x48, 0x51, 0x58, 0x60, 0x67, 0x6a, 0x67, 0x5d, 0x54, 0x52, 0x52, 0x51, 0x4f, 0x4d, 0x54, 0x65, 0x75, 0x67, 0x58, 0x4b, 0x49, 0x4e, 0x50, 0x4d, 0x4b, 0x50, 0x52, 0x52, 0x4e, 0x58, 0x81, 0xb1, 0xc8, 0xad, 0x8c, 0x6d, 0x64, 0x65, 0x64, 0x68, 0x71, 0x71, 0x75, 0x7a, 0x7e, 0x7c, 0x75, 0x6c, 0x66, 0x69, 0x6d, 0x72, 0x76, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x75, 0x6a, 0x60, 0x61, 0x65, 0x67, 0x64, 0x63, 0x65, 0x67, 0x66, 0x61, 0x62, 0x64, 0x65, 0x66, 0x61, 0x58, 0x4f, 0x46, 0x41, 0x4f, 0x54, 0x5b, 0x68, 0x63, 0x62, 0x5c, 0x60, 0x5e, 0x5f, 0x69, 0x72, 0x7a, 0x83, 0x89, 0x7b, 0x68, 0x5f, 0x63, 0x69, 0x6e, 0x70, 0x6b, 0x6b, 0x69, 0x60, 0x55, 0x4f, 0x42, 0x30, 0x2c, 0x2a, 0x28, 0x24, 0x1d, 0x17, 0x17, 0x1b, 0x19, 0x1b, 0x1b, 0x1e, 0x28, 0x2d, 0x2f, 0x35, 0x3b, 0x33, 0x27, 0x1f, 0x22, 0x2e, 0x3e, 0x47, 0x61, 0x63, 0x64, 0x5c, 0x4f, 0x4e, 0x65, 0x80, 0x9b, 0x91, 0x75, 0x50, 0x3e, 0x48, 0x5d, 0x69, 0x78, 0x78, 0x75, 0x72, 0x76, 0x7b, 0x7b, 0x78, 0x79, 0x67, 0x4b, 0x34, 0x29, 0x28, 0x25, 0x21, 0x35, 0x3d, 0x47, 0x51, 0x5b, 0x60, 0x57, 0x49, 0x51, 0x50, 0x4b, 0x41, 0x39, 0x33, 0x2d, 0x28, 0x3f, 0x49, 0x49, 0x43, 0x48, 0x4f, 0x4e, 0x4b, 0x45, 0x4a, 0x4d, 0x49, 0x41, 0x3a, 0x3a, 0x3d, 0x59, 0x58, 0x59, 0x5a, 0x5c, 0x5c, 0x5b, 0x59, 0x5d, 0x5e, 0x5c, 0x59, 0x58, 0x59, 0x57, 0x55, 0x55, 0x52, 0x51, 0x51, 0x4d, 0x43, 0x3a, 0x35, 0x34, 0x37, 0x38, 0x39, 0x3d, 0x45, 0x4c, 0x4f, 0x4c, 0x44, 0x40, 0x46, 0x4b, 0x46, 0x3a, 0x32, 0x36, 0x35, 0x35, 0x36, 0x37, 0x39, 0x3f, 0x45, 0x3d, 0x3b, 0x3e, 0x4f, 0x6a, 0x7a, 0x71, 0x5f, 0x4a, 0x45, 0x44, 0x4d, 0x56, 0x59, 0x55, 0x51, 0x4a, 0x4b, 0x51, 0x63, 0x7f, 0x95, 0x96, 0x8b, 0x62, 0x51, 0x50, 0x6b, 0x81, 0x7a, 0x62, 0x51, 0x4c, 0x41, 0x3d, 0x40, 0x41, 0x45, 0x57, 0x6e, 0x81, 0x85, 0x7e, 0x67, 0x4c, 0x3d, 0x3c, 0x40, 0x43, 0x46, 0x44, 0x3e, 0x3c, 0x43, 0x4c, 0x51, 0x4e, 0x44, 0x49, 0x47, 0x57, 0x79, 0x94, 0xb3, 0xe3, 0xf2, 0xfd, 0xf8, 0xea, 0xd9, 0xc3, 0xb0, 0xa0, 0x9e, 0x9e, 0xa1, 0xa5, 0xa8, 0xaa, 0xac, 0xbb, 0xb8, 0xb6, 0xba, 0xc1, 0xc6, 0xc6, 0xc4, 0xbd, 0x8e, 0x5b, 0x45, 0x48, 0x4a, 0x3f, 0x34, 0x34, 0x35, 0x34, 0x31, 0x30, 0x32, 0x34, 0x34, 0x30, 0x2e, 0x32, 0x3a, 0x3d, 0x3c, 0x45, 0x52, 0x5d, 0x6c, 0x80, 0x8f, 0x94, 0x90, 0x84, 0x7a, 0x71, 0x6f, 0x67, 0x65, 0x6f, 0x7b, 0x88, 0x95, 0x7d, 0x7a, 0x81, 0x8f, 0x90, 0x7c, 0x65, 0x58, 0x60, 0x63, 0x60, 0x5a, 0x5d, 0x67, 0x6b, 0x67, 0x6c, 0x77, 0x7f, 0x83, 0x84, 0x82, 0x89, 0x97, 0x9b, 0x9e, 0xbb, 0xcb, 0xe0, 0xe1, 0xd9, 0xb7, 0x84, 0x78, 0x7f, 0x82, 0x82, 0x86, 0x83, 0x85, 0x80, 0x83, 0x83, 0x85, 0x89, 0x87, 0x89, 0x92, 0x9f, 0x9e, 0x8b, 0x84, 0x84, 0x7e, 0x7f, 0x7c, 0x7f, 0x84, 0x88, 0x87, 0x82, 0x80, 0x85, 0x8b, 0x94, 0x95, 0x96, 0x90, 0x8e, 0x98, 0x9a, 0x90, 0x8c, 0x80, 0x75, 0x6e, 0x6d, 0x6d, 0x5e, 0x46, 0x37, 0x30, 0x28, 0x2d, 0x42, 0x5e, 0x72, 0x7a, 0x65, 0x5c, 0x52, 0x48, 0x41, 0x3f, 0x3b, 0x30, 0x29, 0x34, 0x3a, 0x3e, 0x44, 0x4b, 0x56, 0x66, 0x7e, 0x84, 0x7b, 0x70, 0x72, 0x6e, 0x68, 0x6d, 0x69, 0x76, 0x6b, 0x5e, 0x67, 0x68, 0x5f, 0x61, 0x67, 0x66, 0x69, 0x6c, 0x6a, 0x67, 0x6e, 0x79, 0x7e, 0x77, 0x68, 0x58, 0x5c, 0x7a, 0x93, 0x95, 0x86, 0x75, 0x5c, 0x5b, 0x4d, 0x55, 0x61, 0x79, 0x7d, 0x77, 0x70, 0x6a, 0x68, 0x68, 0x68, 0x67, 0x6a, 0x66, 0x6f, 0x44, 0x48, 0x3e, 0x3e, 0x3f, 0x43, 0x41, 0x3e, 0x3d, 0x40, 0x44, 0x44, 0x42, 0x47, 0x4c, 0x54, 0x5b, 0x5f, 0x60, 0x5f, 0x5e, 0x61, 0x5e, 0x5b, 0x5b, 0x5d, 0x5f, 0x60, 0x60, 0x65, 0x64, 0x63, 0x60, 0x5d, 0x5c, 0x5e, 0x60, 0x65, 0x6a, 0x62, 0x5d, 0x62, 0x5b, 0x50, 0x52, 0x53, 0x51, 0x4e, 0x4a, 0x46, 0x41, 0x3c, 0x39, 0x34, 0x34, 0x37, 0x3d, 0x38, 0x40, 0x36, 0x3d, 0x3b, 0x43, 0x52, 0x5b, 0x50, 0x5a, 0x55, 0x5b, 0x59, 0x6b, 0x75, 0x81, 0xa5, 0xcc, 0xd9, 0xd2, 0xcb, 0xb4, 0x8b, 0x74, 0x7c, 0x80, 0x77, 0x74, 0x72, 0x68, 0x5d, 0x5a, 0x58, 0x56, 0x55, 0x57, 0x54, 0x54, 0x54, 0x55, 0x57, 0x59, 0x5b, 0x5d, 0x61, 0x67, 0x68, 0x64, 0x5e, 0x5a, 0x56, 0x51, 0x5a, 0x5e, 0x64, 0x68, 0x6b, 0x68, 0x5e, 0x54, 0x52, 0x51, 0x4f, 0x4e, 0x4f, 0x57, 0x68, 0x78, 0x6a, 0x5b, 0x4d, 0x4a, 0x4e, 0x50, 0x50, 0x50, 0x4f, 0x50, 0x50, 0x4d, 0x5a, 0x85, 0xb4, 0xca, 0xb0, 0x8d, 0x6f, 0x68, 0x68, 0x63, 0x65, 0x6f, 0x70, 0x72, 0x75, 0x78, 0x78, 0x76, 0x73, 0x71, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x78, 0x77, 0x77, 0x78, 0x77, 0x77, 0x79, 0x7c, 0x7a, 0x6e, 0x62, 0x68, 0x6c, 0x6c, 0x66, 0x60, 0x5f, 0x5f, 0x5e, 0x66, 0x61, 0x5d, 0x5d, 0x61, 0x65, 0x63, 0x5f, 0x46, 0x3e, 0x49, 0x46, 0x4a, 0x5c, 0x5f, 0x64, 0x60, 0x61, 0x62, 0x69, 0x70, 0x70, 0x79, 0x8c, 0x8e, 0x7e, 0x6b, 0x5e, 0x61, 0x71, 0x79, 0x72, 0x7a, 0x6d, 0x6a, 0x67, 0x5c, 0x56, 0x4a, 0x37, 0x29, 0x27, 0x25, 0x20, 0x19, 0x14, 0x16, 0x1b, 0x1e, 0x1d, 0x1e, 0x29, 0x34, 0x33, 0x35, 0x41, 0x46, 0x3c, 0x30, 0x2a, 0x34, 0x49, 0x5f, 0x6c, 0x73, 0x7f, 0x83, 0x7e, 0x83, 0x8e, 0x8b, 0x7c, 0x7a, 0x6f, 0x68, 0x64, 0x59, 0x52, 0x62, 0x7a, 0x73, 0x79, 0x7c, 0x7b, 0x7d, 0x7e, 0x77, 0x6d, 0x4f, 0x42, 0x31, 0x23, 0x1c, 0x1d, 0x25, 0x2d, 0x34, 0x4a, 0x58, 0x51, 0x47, 0x49, 0x4f, 0x52, 0x4a, 0x48, 0x3f, 0x34, 0x2d, 0x2d, 0x2d, 0x2b, 0x31, 0x3f, 0x48, 0x4b, 0x4e, 0x4b, 0x45, 0x46, 0x49, 0x45, 0x43, 0x43, 0x45, 0x45, 0x42, 0x3e, 0x59, 0x59, 0x5a, 0x5a, 0x5b, 0x5b, 0x5b, 0x5b, 0x58, 0x59, 0x59, 0x59, 0x57, 0x57, 0x57, 0x58, 0x57, 0x59, 0x5a, 0x58, 0x52, 0x49, 0x3d, 0x35, 0x33, 0x35, 0x39, 0x3d, 0x40, 0x43, 0x4d, 0x57, 0x51, 0x46, 0x3e, 0x42, 0x4b, 0x4c, 0x42, 0x37, 0x38, 0x36, 0x31, 0x31, 0x38, 0x39, 0x3a, 0x40, 0x3b, 0x3e, 0x4f, 0x65, 0x6b, 0x62, 0x5e, 0x64, 0x55, 0x58, 0x57, 0x54, 0x54, 0x56, 0x55, 0x51, 0x40, 0x42, 0x56, 0x80, 0xa7, 0xaa, 0x89, 0x66, 0x49, 0x41, 0x4a, 0x66, 0x81, 0x90, 0x8c, 0x7f, 0x62, 0x45, 0x35, 0x39, 0x3e, 0x45, 0x53, 0x5e, 0x62, 0x7f, 0x85, 0x7e, 0x68, 0x45, 0x3a, 0x3e, 0x41, 0x40, 0x3c, 0x39, 0x39, 0x3e, 0x42, 0x44, 0x3e, 0x47, 0x44, 0x48, 0x5b, 0x83, 0x96, 0xb6, 0xd8, 0xe8, 0xeb, 0xeb, 0xe1, 0xc7, 0xa1, 0x76, 0x6f, 0x72, 0x71, 0x6d, 0x6b, 0x6c, 0x6b, 0x67, 0x76, 0x7d, 0x79, 0x6b, 0x65, 0x6e, 0x7a, 0x7e, 0x82, 0x6b, 0x5b, 0x5e, 0x5f, 0x52, 0x43, 0x3e, 0x33, 0x34, 0x33, 0x34, 0x37, 0x33, 0x32, 0x38, 0x35, 0x34, 0x3b, 0x44, 0x43, 0x3c, 0x44, 0x54, 0x65, 0x6f, 0x7d, 0x8d, 0x99, 0x98, 0x95, 0x9b, 0x8f, 0x7d, 0x69, 0x5f, 0x5f, 0x6c, 0x85, 0x9c, 0x98, 0x9c, 0x9a, 0x98, 0x95, 0x86, 0x72, 0x69, 0x76, 0x7c, 0x7a, 0x77, 0x85, 0x99, 0x99, 0x8b, 0x7e, 0x87, 0x8c, 0x83, 0x73, 0x66, 0x61, 0x5f, 0x5d, 0x74, 0xac, 0xda, 0xe6, 0xe5, 0xd5, 0xb6, 0x85, 0x7e, 0x7c, 0x82, 0x87, 0x86, 0x86, 0x89, 0x83, 0x83, 0x81, 0x84, 0x87, 0x86, 0x8e, 0x9e, 0xac, 0xac, 0x91, 0x84, 0x88, 0x84, 0x7f, 0x78, 0x7a, 0x7e, 0x83, 0x82, 0x86, 0x97, 0xa3, 0xa0, 0x91, 0x8e, 0x85, 0x7d, 0x85, 0x95, 0x9a, 0x96, 0x85, 0x78, 0x6f, 0x6f, 0x72, 0x72, 0x5f, 0x45, 0x37, 0x2f, 0x27, 0x2d, 0x45, 0x61, 0x6c, 0x6a, 0x56, 0x46, 0x40, 0x3e, 0x39, 0x3a, 0x3a, 0x2f, 0x30, 0x3a, 0x43, 0x43, 0x42, 0x4b, 0x5f, 0x71, 0x79, 0x85, 0x83, 0x71, 0x63, 0x62, 0x60, 0x5a, 0x5d, 0x5d, 0x5e, 0x61, 0x62, 0x5f, 0x58, 0x53, 0x52, 0x5d, 0x67, 0x70, 0x60, 0x5e, 0x5b, 0x78, 0x8c, 0x81, 0x64, 0x41, 0x61, 0x88, 0xa0, 0x97, 0x7e, 0x63, 0x4d, 0x45, 0x44, 0x4d, 0x5d, 0x67, 0x69, 0x6b, 0x6c, 0x6d, 0x6f, 0x6c, 0x60, 0x52, 0x46, 0x49, 0x49, 0x44, 0x41, 0x42, 0x43, 0x42, 0x41, 0x43, 0x4b, 0x4d, 0x49, 0x4d, 0x57, 0x5b, 0x60, 0x66, 0x6d, 0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x65, 0x5f, 0x62, 0x66, 0x65, 0x66, 0x69, 0x70, 0x69, 0x65, 0x65, 0x62, 0x5d, 0x5e, 0x62, 0x70, 0x68, 0x64, 0x66, 0x63, 0x5d, 0x5d, 0x62, 0x5f, 0x5f, 0x55, 0x54, 0x5b, 0x53, 0x48, 0x4c, 0x44, 0x40, 0x3b, 0x38, 0x38, 0x39, 0x3a, 0x3a, 0x3c, 0x39, 0x3c, 0x44, 0x48, 0x48, 0x4a, 0x50, 0x5f, 0x70, 0x85, 0x98, 0xac, 0xc1, 0xcd, 0xd0, 0xd6, 0xb1, 0x8b, 0x7b, 0x77, 0x75, 0x75, 0x78, 0x70, 0x67, 0x5e, 0x5a, 0x58, 0x57, 0x57, 0x57, 0x58, 0x55, 0x55, 0x57, 0x58, 0x58, 0x5b, 0x5f, 0x6a, 0x72, 0x72, 0x6e, 0x6f, 0x69, 0x5d, 0x57, 0x5c, 0x5f, 0x64, 0x6b, 0x6e, 0x6a, 0x61, 0x5a, 0x55, 0x55, 0x52, 0x4d, 0x4c, 0x55, 0x66, 0x74, 0x6a, 0x57, 0x49, 0x49, 0x4e, 0x4e, 0x4d, 0x4e, 0x50, 0x4e, 0x4e, 0x4c, 0x59, 0x89, 0xb6, 0xc1, 0xaf, 0x8a, 0x70, 0x6c, 0x69, 0x66, 0x6c, 0x73, 0x71, 0x74, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6d, 0x6d, 0x72, 0x76, 0x78, 0x77, 0x76, 0x77, 0x79, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7a, 0x6f, 0x64, 0x67, 0x6b, 0x6d, 0x68, 0x5f, 0x5a, 0x5a, 0x5c, 0x63, 0x5b, 0x56, 0x4e, 0x4c, 0x64, 0x7a, 0x77, 0x4d, 0x43, 0x3f, 0x40, 0x44, 0x52, 0x5f, 0x62, 0x66, 0x65, 0x62, 0x62, 0x6a, 0x77, 0x83, 0x88, 0x88, 0x83, 0x70, 0x62, 0x63, 0x66, 0x75, 0x8e, 0x91, 0x90, 0x7b, 0x62, 0x58, 0x55, 0x4a, 0x41, 0x36, 0x30, 0x2a, 0x22, 0x1c, 0x20, 0x23, 0x1b, 0x1b, 0x19, 0x29, 0x40, 0x3a, 0x21, 0x1e, 0x30, 0x3b, 0x35, 0x2f, 0x36, 0x4b, 0x63, 0x6e, 0x6e, 0x6c, 0x6a, 0x6d, 0x7b, 0x86, 0x7d, 0x70, 0x70, 0x6b, 0x54, 0x48, 0x42, 0x45, 0x68, 0x82, 0x75, 0x77, 0x70, 0x6b, 0x6d, 0x6c, 0x61, 0x4f, 0x43, 0x23, 0x1b, 0x1a, 0x21, 0x24, 0x24, 0x32, 0x45, 0x62, 0x5c, 0x52, 0x4c, 0x4b, 0x4b, 0x45, 0x3e, 0x37, 0x37, 0x34, 0x2d, 0x26, 0x27, 0x2f, 0x37, 0x34, 0x38, 0x38, 0x32, 0x2e, 0x33, 0x39, 0x3d, 0x46, 0x43, 0x36, 0x29, 0x2a, 0x34, 0x35, 0x2d, 0x57, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x5b, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x58, 0x57, 0x57, 0x58, 0x57, 0x58, 0x58, 0x57, 0x52, 0x4a, 0x3e, 0x34, 0x35, 0x38, 0x3c, 0x3d, 0x3f, 0x44, 0x4d, 0x53, 0x4b, 0x42, 0x3c, 0x42, 0x4c, 0x50, 0x4a, 0x44, 0x3d, 0x3d, 0x3c, 0x41, 0x49, 0x43, 0x36, 0x31, 0x39, 0x4d, 0x6c, 0x7e, 0x76, 0x5f, 0x54, 0x57, 0x57, 0x57, 0x53, 0x4d, 0x4b, 0x4a, 0x46, 0x41, 0x48, 0x46, 0x4e, 0x6c, 0x99, 0xb0, 0x99, 0x75, 0x55, 0x46, 0x47, 0x56, 0x60, 0x68, 0x72, 0x78, 0x5d, 0x43, 0x34, 0x36, 0x38, 0x3c, 0x42, 0x45, 0x45, 0x5c, 0x6f, 0x85, 0x7d, 0x52, 0x39, 0x35, 0x3b, 0x3b, 0x3b, 0x39, 0x38, 0x39, 0x3b, 0x3d, 0x45, 0x47, 0x47, 0x50, 0x52, 0x5c, 0x78, 0xbd, 0xe6, 0xf9, 0xf7, 0xea, 0xdb, 0xc6, 0xa1, 0x71, 0x5f, 0x63, 0x65, 0x64, 0x65, 0x66, 0x64, 0x5f, 0x67, 0x7c, 0x83, 0x73, 0x66, 0x69, 0x6b, 0x66, 0x64, 0x61, 0x6c, 0x82, 0x87, 0x6f, 0x4c, 0x37, 0x35, 0x35, 0x34, 0x34, 0x34, 0x30, 0x30, 0x38, 0x36, 0x38, 0x3f, 0x43, 0x3e, 0x41, 0x5c, 0x7c, 0x81, 0x80, 0x74, 0x69, 0x71, 0x7d, 0x83, 0x87, 0x85, 0x6c, 0x56, 0x55, 0x64, 0x73, 0x7e, 0x85, 0x8a, 0x90, 0x94, 0x9c, 0xa3, 0x97, 0x7f, 0x70, 0x6f, 0x71, 0x6f, 0x6c, 0x70, 0x79, 0x7a, 0x75, 0x6d, 0x78, 0x82, 0x86, 0x88, 0x8a, 0x88, 0x84, 0x76, 0x80, 0xa7, 0xcf, 0xe0, 0xe4, 0xd4, 0xb4, 0x87, 0x84, 0x83, 0x85, 0x87, 0x87, 0x87, 0x89, 0x8b, 0x89, 0x86, 0x88, 0x8c, 0x89, 0x8d, 0x9c, 0xae, 0xae, 0x97, 0x8d, 0x8f, 0x85, 0x7d, 0x76, 0x7a, 0x81, 0x8e, 0x96, 0x99, 0x9e, 0x99, 0x8b, 0x86, 0x89, 0x8a, 0x8c, 0x94, 0x9c, 0x99, 0x91, 0x81, 0x74, 0x6e, 0x6f, 0x72, 0x71, 0x60, 0x48, 0x3a, 0x32, 0x2d, 0x33, 0x45, 0x55, 0x59, 0x55, 0x47, 0x41, 0x40, 0x41, 0x3b, 0x36, 0x33, 0x30, 0x39, 0x3e, 0x43, 0x44, 0x45, 0x4e, 0x5d, 0x6a, 0x84, 0x8b, 0x84, 0x6d, 0x5e, 0x62, 0x6a, 0x6b, 0x59, 0x5a, 0x5a, 0x5c, 0x5d, 0x5d, 0x5c, 0x5b, 0x59, 0x66, 0x76, 0x80, 0x6d, 0x62, 0x5e, 0x7e, 0x94, 0x86, 0x64, 0x45, 0x5c, 0x86, 0x9b, 0x95, 0x65, 0x4e, 0x45, 0x4c, 0x50, 0x52, 0x5c, 0x65, 0x6c, 0x6a, 0x66, 0x63, 0x63, 0x61, 0x59, 0x50, 0x49, 0x4a, 0x49, 0x44, 0x42, 0x45, 0x49, 0x49, 0x4b, 0x4f, 0x5a, 0x62, 0x61, 0x63, 0x66, 0x64, 0x69, 0x6e, 0x75, 0x77, 0x74, 0x71, 0x6f, 0x6f, 0x75, 0x6f, 0x67, 0x65, 0x68, 0x6d, 0x6d, 0x6a, 0x73, 0x6f, 0x6b, 0x68, 0x65, 0x63, 0x63, 0x66, 0x6a, 0x63, 0x5f, 0x61, 0x60, 0x5c, 0x5d, 0x62, 0x5d, 0x5d, 0x57, 0x57, 0x5e, 0x59, 0x51, 0x55, 0x50, 0x4b, 0x45, 0x41, 0x3f, 0x3d, 0x39, 0x36, 0x3d, 0x3c, 0x3c, 0x3d, 0x3e, 0x3e, 0x40, 0x44, 0x4e, 0x5d, 0x70, 0x81, 0x92, 0xa7, 0xbc, 0xc9, 0xcd, 0xac, 0x87, 0x76, 0x75, 0x78, 0x7a, 0x7c, 0x70, 0x67, 0x5e, 0x5a, 0x59, 0x58, 0x57, 0x58, 0x57, 0x56, 0x56, 0x58, 0x59, 0x5a, 0x5e, 0x62, 0x6e, 0x74, 0x72, 0x6d, 0x6c, 0x66, 0x5b, 0x56, 0x5f, 0x63, 0x69, 0x6f, 0x6f, 0x68, 0x5d, 0x54, 0x53, 0x55, 0x53, 0x4d, 0x4f, 0x5c, 0x69, 0x70, 0x68, 0x57, 0x4d, 0x51, 0x54, 0x4f, 0x4e, 0x52, 0x4f, 0x4d, 0x4f, 0x4f, 0x5d, 0x8c, 0xb8, 0xc2, 0xab, 0x86, 0x6c, 0x69, 0x66, 0x64, 0x6a, 0x71, 0x71, 0x73, 0x75, 0x73, 0x71, 0x70, 0x6d, 0x6a, 0x6c, 0x70, 0x76, 0x78, 0x77, 0x76, 0x76, 0x77, 0x7a, 0x7a, 0x7a, 0x7c, 0x80, 0x81, 0x7b, 0x73, 0x6d, 0x6a, 0x68, 0x66, 0x61, 0x5b, 0x59, 0x5a, 0x5f, 0x55, 0x4f, 0x4b, 0x51, 0x6e, 0x82, 0x7c, 0x4e, 0x3d, 0x35, 0x38, 0x3c, 0x46, 0x57, 0x61, 0x5f, 0x5e, 0x5b, 0x5d, 0x66, 0x75, 0x80, 0x85, 0x81, 0x7a, 0x68, 0x5e, 0x60, 0x64, 0x74, 0x8e, 0xa5, 0x95, 0x7a, 0x63, 0x58, 0x4e, 0x43, 0x3d, 0x43, 0x3f, 0x45, 0x48, 0x37, 0x2a, 0x32, 0x3f, 0x46, 0x4a, 0x4d, 0x47, 0x38, 0x31, 0x3e, 0x51, 0x3e, 0x49, 0x58, 0x69, 0x75, 0x77, 0x6c, 0x5f, 0x5a, 0x62, 0x70, 0x81, 0x87, 0x77, 0x5e, 0x51, 0x39, 0x41, 0x47, 0x4d, 0x5c, 0x73, 0x7b, 0x72, 0x76, 0x6a, 0x5b, 0x50, 0x45, 0x38, 0x2b, 0x24, 0x32, 0x2c, 0x2b, 0x30, 0x33, 0x37, 0x44, 0x53, 0x53, 0x4e, 0x47, 0x43, 0x44, 0x45, 0x41, 0x3a, 0x38, 0x32, 0x2a, 0x27, 0x28, 0x2b, 0x2e, 0x2f, 0x45, 0x48, 0x46, 0x39, 0x2d, 0x29, 0x2c, 0x2f, 0x34, 0x34, 0x32, 0x31, 0x32, 0x31, 0x2d, 0x27, 0x57, 0x57, 0x58, 0x59, 0x59, 0x5a, 0x5b, 0x5b, 0x5b, 0x5c, 0x5c, 0x5b, 0x59, 0x58, 0x58, 0x58, 0x57, 0x57, 0x56, 0x55, 0x51, 0x48, 0x3d, 0x35, 0x3a, 0x3f, 0x42, 0x3f, 0x3f, 0x46, 0x4c, 0x4f, 0x44, 0x3d, 0x3a, 0x42, 0x4c, 0x53, 0x55, 0x55, 0x54, 0x4f, 0x46, 0x47, 0x53, 0x53, 0x47, 0x3f, 0x39, 0x4d, 0x64, 0x6a, 0x5a, 0x47, 0x3f, 0x41, 0x48, 0x45, 0x41, 0x3e, 0x3e, 0x3f, 0x3b, 0x36, 0x43, 0x45, 0x46, 0x58, 0x87, 0xb2, 0xae, 0x91, 0x6e, 0x53, 0x42, 0x42, 0x42, 0x4a, 0x64, 0x7a, 0x62, 0x4a, 0x39, 0x36, 0x39, 0x41, 0x4a, 0x4c, 0x5a, 0x71, 0x81, 0x8b, 0x76, 0x4a, 0x38, 0x39, 0x37, 0x3a, 0x3d, 0x3d, 0x3a, 0x39, 0x3a, 0x3c, 0x3c, 0x44, 0x3f, 0x40, 0x3f, 0x47, 0x65, 0xb1, 0xe4, 0xf9, 0xfb, 0xf4, 0xe8, 0xcf, 0xa4, 0x6f, 0x5d, 0x5e, 0x5f, 0x60, 0x63, 0x65, 0x63, 0x60, 0x5e, 0x7c, 0x97, 0x95, 0x7f, 0x6b, 0x62, 0x61, 0x56, 0x54, 0x61, 0x7d, 0x8e, 0x7e, 0x5a, 0x3e, 0x30, 0x31, 0x36, 0x3c, 0x3a, 0x34, 0x32, 0x35, 0x33, 0x36, 0x3d, 0x3f, 0x3b, 0x43, 0x65, 0x8a, 0xae, 0xa1, 0x80, 0x63, 0x64, 0x7d, 0x99, 0xae, 0x92, 0x70, 0x50, 0x4e, 0x65, 0x81, 0x96, 0xa0, 0x97, 0x92, 0x89, 0x88, 0x8e, 0x87, 0x75, 0x6a, 0x66, 0x66, 0x64, 0x5f, 0x5a, 0x57, 0x59, 0x5d, 0x5e, 0x62, 0x62, 0x5f, 0x61, 0x64, 0x60, 0x57, 0x71, 0x72, 0x8e, 0xb3, 0xce, 0xdc, 0xd1, 0xb5, 0x7c, 0x7f, 0x81, 0x83, 0x87, 0x8e, 0x92, 0x92, 0x8c, 0x8b, 0x88, 0x8a, 0x8f, 0x8d, 0x92, 0xa1, 0xaf, 0xa8, 0x91, 0x8c, 0x8d, 0x84, 0x82, 0x7e, 0x88, 0x94, 0xa3, 0xa3, 0x96, 0x8e, 0x8d, 0x88, 0x8f, 0x92, 0x95, 0x98, 0x9b, 0x9b, 0x93, 0x8b, 0x7d, 0x72, 0x6c, 0x6c, 0x6c, 0x69, 0x5c, 0x48, 0x3b, 0x35, 0x33, 0x3b, 0x46, 0x4a, 0x47, 0x43, 0x3f, 0x41, 0x42, 0x41, 0x3b, 0x31, 0x33, 0x40, 0x4f, 0x4e, 0x4c, 0x4b, 0x4e, 0x55, 0x5c, 0x61, 0x78, 0x85, 0x84, 0x6f, 0x60, 0x64, 0x6d, 0x6f, 0x62, 0x61, 0x61, 0x62, 0x64, 0x68, 0x6b, 0x6d, 0x6a, 0x76, 0x88, 0x90, 0x7c, 0x69, 0x61, 0x7d, 0x9a, 0x8d, 0x68, 0x4c, 0x51, 0x75, 0x84, 0x81, 0x63, 0x50, 0x50, 0x61, 0x67, 0x64, 0x68, 0x70, 0x6d, 0x69, 0x61, 0x59, 0x55, 0x53, 0x4e, 0x49, 0x3f, 0x42, 0x44, 0x45, 0x48, 0x4d, 0x51, 0x53, 0x5b, 0x5f, 0x6a, 0x73, 0x73, 0x74, 0x74, 0x6e, 0x72, 0x76, 0x7a, 0x7b, 0x78, 0x74, 0x71, 0x70, 0x75, 0x73, 0x6c, 0x65, 0x68, 0x70, 0x70, 0x68, 0x6f, 0x6e, 0x6a, 0x65, 0x63, 0x64, 0x65, 0x64, 0x63, 0x5d, 0x59, 0x5a, 0x5a, 0x58, 0x5a, 0x5e, 0x58, 0x59, 0x56, 0x57, 0x5c, 0x59, 0x55, 0x59, 0x54, 0x51, 0x4d, 0x4c, 0x4b, 0x49, 0x45, 0x41, 0x38, 0x3a, 0x39, 0x36, 0x34, 0x37, 0x3a, 0x3b, 0x43, 0x49, 0x51, 0x59, 0x66, 0x81, 0xa7, 0xc5, 0xc7, 0xae, 0x8d, 0x78, 0x74, 0x78, 0x7b, 0x7a, 0x70, 0x68, 0x5f, 0x5b, 0x5b, 0x59, 0x59, 0x59, 0x57, 0x56, 0x57, 0x59, 0x5b, 0x5c, 0x61, 0x66, 0x72, 0x77, 0x74, 0x6e, 0x6c, 0x66, 0x5c, 0x5a, 0x63, 0x68, 0x70, 0x76, 0x77, 0x6f, 0x63, 0x59, 0x51, 0x55, 0x56, 0x55, 0x5a, 0x66, 0x6e, 0x70, 0x65, 0x59, 0x54, 0x58, 0x57, 0x51, 0x4f, 0x54, 0x54, 0x4f, 0x50, 0x50, 0x61, 0x91, 0xbb, 0xc2, 0xa9, 0x84, 0x6b, 0x69, 0x67, 0x66, 0x6c, 0x72, 0x72, 0x74, 0x75, 0x74, 0x72, 0x71, 0x6e, 0x6a, 0x6b, 0x70, 0x76, 0x78, 0x78, 0x76, 0x75, 0x75, 0x7a, 0x79, 0x79, 0x7c, 0x83, 0x89, 0x89, 0x85, 0x72, 0x68, 0x62, 0x63, 0x61, 0x5a, 0x57, 0x59, 0x5c, 0x50, 0x48, 0x48, 0x57, 0x7a, 0x8b, 0x7d, 0x51, 0x3c, 0x32, 0x36, 0x37, 0x3c, 0x4c, 0x59, 0x5b, 0x59, 0x57, 0x5a, 0x65, 0x74, 0x7f, 0x82, 0x79, 0x6e, 0x5e, 0x58, 0x5c, 0x63, 0x79, 0x96, 0x96, 0x8c, 0x7a, 0x63, 0x4b, 0x45, 0x5b, 0x78, 0x8f, 0x7a, 0x6b, 0x64, 0x5c, 0x66, 0x8b, 0xae, 0xa0, 0x9c, 0x95, 0x8a, 0x7e, 0x75, 0x71, 0x70, 0x79, 0x80, 0x88, 0x8d, 0x8c, 0x86, 0x7b, 0x71, 0x6e, 0x6d, 0x84, 0x9d, 0x86, 0x4d, 0x30, 0x39, 0x52, 0x61, 0x61, 0x60, 0x6b, 0x6f, 0x68, 0x68, 0x5a, 0x52, 0x49, 0x45, 0x43, 0x43, 0x45, 0x48, 0x36, 0x33, 0x31, 0x31, 0x33, 0x38, 0x42, 0x4c, 0x46, 0x44, 0x40, 0x3e, 0x3f, 0x40, 0x3b, 0x35, 0x2d, 0x2e, 0x2c, 0x26, 0x20, 0x20, 0x27, 0x2e, 0x33, 0x3f, 0x48, 0x49, 0x46, 0x48, 0x4e, 0x54, 0x3c, 0x37, 0x37, 0x39, 0x34, 0x29, 0x21, 0x1f, 0x58, 0x58, 0x58, 0x59, 0x59, 0x5a, 0x5b, 0x5b, 0x5d, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x57, 0x57, 0x55, 0x55, 0x56, 0x53, 0x4b, 0x41, 0x3a, 0x38, 0x40, 0x48, 0x49, 0x43, 0x42, 0x49, 0x4d, 0x4b, 0x42, 0x3c, 0x3b, 0x42, 0x4b, 0x53, 0x5a, 0x61, 0x72, 0x68, 0x53, 0x48, 0x4d, 0x50, 0x48, 0x41, 0x45, 0x4c, 0x50, 0x4c, 0x43, 0x3d, 0x3b, 0x3a, 0x3f, 0x3c, 0x3a, 0x3b, 0x3f, 0x42, 0x41, 0x3e, 0x3d, 0x44, 0x4a, 0x56, 0x79, 0x9b, 0x9b, 0x85, 0x5b, 0x49, 0x42, 0x46, 0x43, 0x3e, 0x3f, 0x41, 0x54, 0x45, 0x3c, 0x3a, 0x3b, 0x44, 0x4d, 0x4e, 0x66, 0x84, 0x8e, 0x81, 0x5f, 0x3f, 0x36, 0x32, 0x34, 0x37, 0x3a, 0x3b, 0x38, 0x36, 0x38, 0x3d, 0x36, 0x43, 0x41, 0x42, 0x40, 0x47, 0x66, 0xb7, 0xe8, 0xf2, 0xf2, 0xf6, 0xf2, 0xd7, 0xa6, 0x71, 0x58, 0x56, 0x54, 0x53, 0x56, 0x58, 0x58, 0x56, 0x58, 0x6f, 0x98, 0xb3, 0xa0, 0x75, 0x63, 0x6c, 0x67, 0x57, 0x51, 0x64, 0x7f, 0x86, 0x75, 0x61, 0x3c, 0x34, 0x35, 0x3b, 0x3a, 0x35, 0x34, 0x35, 0x37, 0x34, 0x34, 0x36, 0x3a, 0x4b, 0x6f, 0x91, 0x8f, 0x8e, 0x86, 0x80, 0x83, 0x80, 0x75, 0x70, 0x73, 0x63, 0x56, 0x5a, 0x6f, 0x8d, 0xa9, 0xbc, 0xc3, 0xb9, 0xa3, 0x90, 0x87, 0x7c, 0x70, 0x6d, 0x67, 0x6a, 0x68, 0x61, 0x59, 0x56, 0x5a, 0x5d, 0x54, 0x56, 0x53, 0x4d, 0x51, 0x5c, 0x63, 0x62, 0x5b, 0x57, 0x63, 0x78, 0x8d, 0xa2, 0xa8, 0x9d, 0x81, 0x84, 0x84, 0x83, 0x87, 0x8d, 0x8e, 0x89, 0x8a, 0x8a, 0x88, 0x8b, 0x8f, 0x90, 0x9c, 0xb0, 0xbb, 0xaa, 0x90, 0x8e, 0x91, 0x8f, 0x95, 0x95, 0x9b, 0x9c, 0x9d, 0x93, 0x83, 0x81, 0x8c, 0x92, 0x9a, 0x96, 0x92, 0x8f, 0x90, 0x90, 0x8d, 0x8a, 0x7c, 0x70, 0x69, 0x65, 0x60, 0x5b, 0x51, 0x43, 0x38, 0x33, 0x35, 0x40, 0x47, 0x46, 0x42, 0x41, 0x42, 0x46, 0x41, 0x3b, 0x37, 0x31, 0x3f, 0x5d, 0x6c, 0x63, 0x59, 0x57, 0x5a, 0x5e, 0x5f, 0x5d, 0x69, 0x7a, 0x80, 0x6f, 0x61, 0x64, 0x6d, 0x6f, 0x63, 0x60, 0x5d, 0x5e, 0x63, 0x68, 0x6b, 0x6c, 0x70, 0x7d, 0x90, 0x95, 0x8b, 0x7a, 0x6a, 0x75, 0x79, 0x77, 0x63, 0x58, 0x51, 0x71, 0x81, 0x87, 0x70, 0x61, 0x60, 0x6b, 0x6f, 0x6e, 0x70, 0x72, 0x68, 0x64, 0x5b, 0x52, 0x4c, 0x48, 0x46, 0x44, 0x43, 0x49, 0x51, 0x5a, 0x61, 0x66, 0x69, 0x6a, 0x6d, 0x6e, 0x76, 0x7a, 0x77, 0x78, 0x7a, 0x77, 0x76, 0x78, 0x79, 0x79, 0x77, 0x74, 0x73, 0x72, 0x73, 0x70, 0x6a, 0x65, 0x67, 0x6c, 0x6a, 0x65, 0x65, 0x67, 0x64, 0x5e, 0x5d, 0x61, 0x63, 0x60, 0x5c, 0x57, 0x52, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x56, 0x55, 0x57, 0x55, 0x53, 0x55, 0x4e, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x3d, 0x41, 0x40, 0x39, 0x36, 0x38, 0x3a, 0x38, 0x3d, 0x3c, 0x3d, 0x40, 0x47, 0x5b, 0x7f, 0x9f, 0xab, 0xa1, 0x8e, 0x7c, 0x75, 0x78, 0x79, 0x76, 0x70, 0x68, 0x5f, 0x5c, 0x5c, 0x5b, 0x5a, 0x5a, 0x58, 0x58, 0x58, 0x5a, 0x5b, 0x5d, 0x62, 0x68, 0x73, 0x78, 0x77, 0x73, 0x71, 0x69, 0x61, 0x60, 0x63, 0x66, 0x6c, 0x73, 0x76, 0x6f, 0x61, 0x56, 0x54, 0x56, 0x5b, 0x62, 0x67, 0x68, 0x6b, 0x6f, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x64, 0x57, 0x4f, 0x4f, 0x64, 0x96, 0xbd, 0xc0, 0xa5, 0x81, 0x68, 0x68, 0x68, 0x67, 0x6d, 0x72, 0x74, 0x76, 0x78, 0x77, 0x76, 0x76, 0x72, 0x6e, 0x6e, 0x71, 0x75, 0x77, 0x77, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x7a, 0x82, 0x8b, 0x8d, 0x8a, 0x71, 0x65, 0x5e, 0x62, 0x60, 0x57, 0x54, 0x5a, 0x5c, 0x50, 0x48, 0x47, 0x5a, 0x7f, 0x8d, 0x7a, 0x4e, 0x3f, 0x38, 0x3a, 0x38, 0x3c, 0x47, 0x4e, 0x59, 0x58, 0x56, 0x59, 0x65, 0x73, 0x7c, 0x7e, 0x76, 0x68, 0x5a, 0x56, 0x59, 0x62, 0x7a, 0x94, 0x92, 0x7e, 0x6c, 0x5e, 0x54, 0x59, 0x73, 0x8b, 0x87, 0x79, 0x6f, 0x6e, 0x74, 0x87, 0x9a, 0xa1, 0xa3, 0x92, 0x87, 0x8c, 0x90, 0x89, 0x83, 0x82, 0x92, 0x94, 0x97, 0x99, 0x9c, 0x9d, 0x9d, 0x9d, 0x92, 0x8a, 0x76, 0x53, 0x37, 0x3a, 0x54, 0x66, 0x76, 0x6f, 0x65, 0x5e, 0x5b, 0x53, 0x4c, 0x4d, 0x49, 0x41, 0x3a, 0x35, 0x30, 0x2b, 0x28, 0x29, 0x2c, 0x2b, 0x29, 0x27, 0x2a, 0x32, 0x3b, 0x3f, 0x42, 0x42, 0x3f, 0x3d, 0x3d, 0x3d, 0x37, 0x31, 0x26, 0x2a, 0x2a, 0x22, 0x19, 0x16, 0x1e, 0x27, 0x2f, 0x3a, 0x45, 0x48, 0x45, 0x40, 0x3e, 0x3d, 0x3b, 0x33, 0x2a, 0x26, 0x21, 0x1b, 0x18, 0x17, 0x59, 0x59, 0x59, 0x59, 0x59, 0x5a, 0x5a, 0x5b, 0x5d, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x57, 0x52, 0x54, 0x54, 0x50, 0x44, 0x39, 0x39, 0x3e, 0x48, 0x4f, 0x4f, 0x48, 0x46, 0x4c, 0x4e, 0x4b, 0x44, 0x3e, 0x3d, 0x43, 0x49, 0x50, 0x5b, 0x66, 0x6d, 0x69, 0x57, 0x48, 0x4a, 0x4c, 0x45, 0x40, 0x41, 0x46, 0x49, 0x47, 0x44, 0x41, 0x3b, 0x35, 0x39, 0x38, 0x37, 0x39, 0x3c, 0x3e, 0x3e, 0x3e, 0x4f, 0x57, 0x63, 0x73, 0x86, 0x8b, 0x76, 0x5c, 0x56, 0x4a, 0x42, 0x3e, 0x3e, 0x44, 0x4a, 0x48, 0x40, 0x3d, 0x41, 0x45, 0x43, 0x43, 0x44, 0x42, 0x48, 0x64, 0x75, 0x73, 0x5d, 0x46, 0x3c, 0x2c, 0x37, 0x37, 0x38, 0x38, 0x34, 0x31, 0x35, 0x3b, 0x42, 0x48, 0x51, 0x60, 0x52, 0x45, 0x64, 0xc2, 0xe0, 0xe5, 0xd8, 0xd6, 0xdd, 0xd4, 0xaa, 0x6f, 0x55, 0x53, 0x52, 0x52, 0x53, 0x53, 0x51, 0x51, 0x50, 0x5b, 0x80, 0xaa, 0xac, 0x89, 0x6d, 0x6a, 0x70, 0x63, 0x59, 0x5e, 0x72, 0x81, 0x80, 0x77, 0x53, 0x3c, 0x30, 0x31, 0x2f, 0x30, 0x34, 0x33, 0x3c, 0x36, 0x32, 0x33, 0x3d, 0x59, 0x86, 0xac, 0xb5, 0xae, 0x95, 0x81, 0x86, 0x8d, 0x7e, 0x6a, 0x4f, 0x50, 0x54, 0x5c, 0x6c, 0x88, 0xaa, 0xc4, 0xcb, 0xcf, 0xc6, 0xb2, 0x9a, 0x80, 0x70, 0x6e, 0x6f, 0x76, 0x76, 0x6e, 0x6c, 0x73, 0x77, 0x75, 0x80, 0x81, 0x7b, 0x6c, 0x5f, 0x60, 0x67, 0x6d, 0x70, 0x69, 0x62, 0x59, 0x58, 0x66, 0x77, 0x80, 0x80, 0x83, 0x84, 0x85, 0x8d, 0x95, 0x94, 0x8d, 0x8f, 0x91, 0x8f, 0x8f, 0x90, 0x93, 0xa4, 0xbd, 0xbe, 0xac, 0x97, 0x98, 0x9b, 0x98, 0x9c, 0x96, 0x98, 0x8e, 0x87, 0x84, 0x85, 0x8e, 0x93, 0x8d, 0x89, 0x86, 0x82, 0x80, 0x85, 0x8c, 0x8e, 0x8c, 0x7b, 0x6f, 0x66, 0x5e, 0x53, 0x4d, 0x48, 0x40, 0x36, 0x32, 0x34, 0x3e, 0x46, 0x46, 0x45, 0x46, 0x3f, 0x42, 0x3a, 0x32, 0x33, 0x38, 0x50, 0x74, 0x78, 0x6d, 0x61, 0x5e, 0x63, 0x67, 0x64, 0x5f, 0x69, 0x79, 0x7c, 0x6b, 0x5f, 0x64, 0x6e, 0x71, 0x5f, 0x5a, 0x57, 0x59, 0x60, 0x64, 0x63, 0x5f, 0x64, 0x76, 0x8f, 0x95, 0x99, 0x8e, 0x74, 0x6b, 0x52, 0x5a, 0x59, 0x5a, 0x4c, 0x63, 0x76, 0x81, 0x76, 0x6e, 0x6a, 0x6c, 0x6d, 0x72, 0x74, 0x6d, 0x60, 0x5a, 0x52, 0x4a, 0x47, 0x47, 0x4b, 0x4e, 0x57, 0x5b, 0x61, 0x69, 0x6f, 0x72, 0x73, 0x73, 0x75, 0x77, 0x7e, 0x7f, 0x78, 0x77, 0x7c, 0x7d, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x73, 0x72, 0x71, 0x74, 0x6d, 0x69, 0x68, 0x66, 0x61, 0x5f, 0x5f, 0x5d, 0x60, 0x5f, 0x5a, 0x5b, 0x60, 0x61, 0x5e, 0x55, 0x52, 0x4e, 0x4c, 0x4e, 0x52, 0x53, 0x52, 0x55, 0x54, 0x54, 0x53, 0x51, 0x52, 0x52, 0x50, 0x49, 0x4b, 0x4b, 0x47, 0x42, 0x41, 0x44, 0x48, 0x4a, 0x4e, 0x4c, 0x43, 0x3d, 0x3c, 0x39, 0x34, 0x36, 0x36, 0x3a, 0x3e, 0x3e, 0x41, 0x4d, 0x5c, 0x6e, 0x77, 0x7d, 0x7b, 0x7a, 0x7b, 0x7a, 0x75, 0x70, 0x68, 0x60, 0x5d, 0x5d, 0x5c, 0x5b, 0x5b, 0x5a, 0x59, 0x5a, 0x5b, 0x5b, 0x5d, 0x62, 0x69, 0x75, 0x7a, 0x7a, 0x78, 0x75, 0x6b, 0x61, 0x61, 0x69, 0x69, 0x6d, 0x72, 0x75, 0x6f, 0x61, 0x55, 0x57, 0x56, 0x5f, 0x6f, 0x71, 0x69, 0x6c, 0x77, 0x8a, 0x92, 0x91, 0x88, 0x87, 0x90, 0x93, 0x8d, 0x77, 0x60, 0x4d, 0x4b, 0x65, 0x9b, 0xbf, 0xbd, 0x9f, 0x7b, 0x63, 0x64, 0x66, 0x66, 0x6b, 0x70, 0x75, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x75, 0x76, 0x77, 0x79, 0x7f, 0x84, 0x83, 0x80, 0x6c, 0x63, 0x5f, 0x62, 0x5e, 0x54, 0x54, 0x5b, 0x5a, 0x51, 0x4b, 0x4a, 0x5c, 0x82, 0x8e, 0x76, 0x47, 0x40, 0x3d, 0x3a, 0x39, 0x44, 0x4f, 0x4f, 0x59, 0x59, 0x58, 0x5b, 0x65, 0x72, 0x7a, 0x7c, 0x7c, 0x6f, 0x64, 0x5e, 0x59, 0x5d, 0x6c, 0x7b, 0x78, 0x6a, 0x66, 0x67, 0x64, 0x6d, 0x7e, 0x87, 0x86, 0x83, 0x7f, 0x73, 0x5e, 0x4d, 0x3b, 0x29, 0x39, 0x3b, 0x4a, 0x63, 0x76, 0x7d, 0x83, 0x8a, 0x8a, 0x82, 0x77, 0x72, 0x74, 0x79, 0x7f, 0x83, 0x79, 0x69, 0x53, 0x3d, 0x39, 0x51, 0x67, 0x67, 0x5d, 0x45, 0x46, 0x52, 0x4a, 0x41, 0x3f, 0x38, 0x32, 0x2e, 0x2b, 0x2d, 0x2e, 0x2c, 0x29, 0x27, 0x24, 0x25, 0x23, 0x22, 0x28, 0x33, 0x3a, 0x3c, 0x3a, 0x3c, 0x3b, 0x39, 0x38, 0x36, 0x31, 0x2b, 0x29, 0x24, 0x1d, 0x19, 0x18, 0x18, 0x18, 0x16, 0x13, 0x19, 0x24, 0x2d, 0x32, 0x33, 0x31, 0x31, 0x29, 0x23, 0x1a, 0x14, 0x16, 0x1c, 0x1e, 0x1c, 0x59, 0x58, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x5d, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x57, 0x57, 0x52, 0x51, 0x50, 0x4a, 0x3e, 0x36, 0x3b, 0x45, 0x4f, 0x53, 0x53, 0x4e, 0x4c, 0x4e, 0x4e, 0x4c, 0x46, 0x40, 0x3e, 0x43, 0x48, 0x4e, 0x5b, 0x69, 0x72, 0x72, 0x60, 0x4a, 0x46, 0x49, 0x48, 0x46, 0x37, 0x3e, 0x45, 0x45, 0x41, 0x3c, 0x38, 0x35, 0x34, 0x35, 0x39, 0x3b, 0x3b, 0x39, 0x3c, 0x40, 0x52, 0x58, 0x68, 0x7f, 0x8e, 0x84, 0x65, 0x49, 0x43, 0x45, 0x4c, 0x4d, 0x4b, 0x4e, 0x4e, 0x46, 0x43, 0x3c, 0x3e, 0x42, 0x3d, 0x3b, 0x40, 0x42, 0x3d, 0x4c, 0x5a, 0x5e, 0x49, 0x36, 0x3a, 0x38, 0x43, 0x41, 0x40, 0x41, 0x3c, 0x37, 0x39, 0x3f, 0x47, 0x4b, 0x51, 0x59, 0x4c, 0x49, 0x58, 0x8f, 0x9d, 0xad, 0xa4, 0xa1, 0xb6, 0xc7, 0xaa, 0x6d, 0x57, 0x57, 0x59, 0x5c, 0x5c, 0x58, 0x56, 0x56, 0x55, 0x58, 0x6c, 0x8d, 0xa4, 0x9b, 0x7b, 0x61, 0x5d, 0x5d, 0x57, 0x50, 0x53, 0x5e, 0x64, 0x63, 0x53, 0x36, 0x2c, 0x32, 0x31, 0x31, 0x32, 0x2b, 0x30, 0x34, 0x3a, 0x3f, 0x46, 0x5b, 0x83, 0xa6, 0xb8, 0xc7, 0xb2, 0x88, 0x7a, 0x80, 0x73, 0x5b, 0x49, 0x4e, 0x52, 0x55, 0x5d, 0x72, 0x91, 0xa9, 0xb7, 0xc7, 0xcb, 0xb9, 0x99, 0x76, 0x61, 0x5f, 0x6b, 0x74, 0x76, 0x74, 0x79, 0x86, 0x8b, 0x87, 0x82, 0x88, 0x89, 0x80, 0x70, 0x66, 0x6c, 0x77, 0x84, 0x88, 0x84, 0x74, 0x65, 0x62, 0x6b, 0x74, 0x78, 0x7b, 0x80, 0x87, 0x91, 0x98, 0x98, 0x94, 0x92, 0x94, 0x92, 0x91, 0x8e, 0x8d, 0x9b, 0xb3, 0xb6, 0xad, 0xa5, 0xab, 0xa9, 0xa1, 0x9d, 0x8e, 0x8a, 0x8e, 0x95, 0x98, 0x99, 0x9d, 0x96, 0x86, 0x7f, 0x82, 0x83, 0x84, 0x8d, 0x97, 0x94, 0x8b, 0x7c, 0x71, 0x68, 0x5e, 0x4e, 0x46, 0x44, 0x42, 0x38, 0x35, 0x36, 0x3d, 0x44, 0x47, 0x46, 0x46, 0x35, 0x35, 0x30, 0x2d, 0x33, 0x42, 0x5b, 0x74, 0x6d, 0x65, 0x5f, 0x61, 0x69, 0x6d, 0x69, 0x64, 0x67, 0x77, 0x7c, 0x6d, 0x62, 0x65, 0x68, 0x66, 0x5a, 0x57, 0x55, 0x59, 0x5f, 0x60, 0x5c, 0x56, 0x5d, 0x72, 0x94, 0x99, 0xa1, 0x91, 0x76, 0x6a, 0x65, 0x64, 0x68, 0x66, 0x55, 0x5f, 0x73, 0x7c, 0x67, 0x64, 0x62, 0x60, 0x62, 0x6c, 0x6c, 0x60, 0x59, 0x52, 0x4a, 0x48, 0x4a, 0x51, 0x5a, 0x62, 0x6f, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x70, 0x75, 0x78, 0x80, 0x81, 0x78, 0x76, 0x7b, 0x7b, 0x80, 0x7c, 0x77, 0x74, 0x73, 0x73, 0x71, 0x70, 0x72, 0x6d, 0x6b, 0x6b, 0x65, 0x5a, 0x56, 0x59, 0x5a, 0x5c, 0x5c, 0x5c, 0x5d, 0x5f, 0x5f, 0x5e, 0x56, 0x55, 0x52, 0x4f, 0x52, 0x58, 0x59, 0x55, 0x53, 0x4f, 0x50, 0x50, 0x4c, 0x50, 0x52, 0x4b, 0x47, 0x48, 0x47, 0x43, 0x3e, 0x3e, 0x43, 0x49, 0x47, 0x48, 0x47, 0x43, 0x40, 0x3e, 0x3a, 0x36, 0x38, 0x37, 0x39, 0x3b, 0x3a, 0x39, 0x3a, 0x3c, 0x3f, 0x52, 0x66, 0x72, 0x78, 0x7a, 0x78, 0x74, 0x6f, 0x67, 0x60, 0x5d, 0x5e, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b, 0x5b, 0x5c, 0x5c, 0x5d, 0x64, 0x6b, 0x79, 0x7e, 0x7d, 0x7a, 0x76, 0x69, 0x5f, 0x60, 0x67, 0x69, 0x6e, 0x73, 0x75, 0x6e, 0x62, 0x59, 0x56, 0x55, 0x60, 0x74, 0x7a, 0x76, 0x7c, 0x8c, 0x8e, 0x97, 0x97, 0x8e, 0x91, 0x9f, 0xa3, 0x9b, 0x7d, 0x62, 0x4b, 0x4a, 0x68, 0x9f, 0xc0, 0xba, 0x9c, 0x78, 0x61, 0x64, 0x67, 0x68, 0x6d, 0x72, 0x75, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x79, 0x73, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x77, 0x78, 0x76, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x78, 0x73, 0x6a, 0x66, 0x65, 0x65, 0x5f, 0x56, 0x55, 0x5c, 0x57, 0x51, 0x4d, 0x4c, 0x61, 0x88, 0x90, 0x75, 0x44, 0x42, 0x40, 0x3c, 0x3d, 0x4d, 0x5a, 0x59, 0x5b, 0x5c, 0x5e, 0x61, 0x69, 0x75, 0x7d, 0x80, 0x85, 0x7b, 0x74, 0x6b, 0x60, 0x63, 0x6c, 0x6f, 0x6d, 0x60, 0x64, 0x6a, 0x64, 0x6c, 0x80, 0x88, 0x80, 0x79, 0x71, 0x5f, 0x44, 0x39, 0x45, 0x53, 0x53, 0x5c, 0x65, 0x6a, 0x6b, 0x66, 0x5a, 0x4e, 0x42, 0x3b, 0x36, 0x3b, 0x47, 0x54, 0x5f, 0x66, 0x6c, 0x4c, 0x41, 0x4c, 0x4f, 0x57, 0x66, 0x6d, 0x40, 0x28, 0x32, 0x44, 0x3a, 0x35, 0x38, 0x2b, 0x2e, 0x29, 0x26, 0x27, 0x27, 0x25, 0x22, 0x20, 0x22, 0x20, 0x1d, 0x1c, 0x21, 0x28, 0x2c, 0x2c, 0x2c, 0x2f, 0x31, 0x2f, 0x2d, 0x2b, 0x27, 0x22, 0x21, 0x1e, 0x19, 0x16, 0x14, 0x14, 0x13, 0x12, 0x1b, 0x19, 0x1a, 0x1e, 0x21, 0x20, 0x20, 0x20, 0x1d, 0x1c, 0x18, 0x14, 0x16, 0x1d, 0x1f, 0x1c, 0x56, 0x55, 0x55, 0x55, 0x57, 0x59, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d, 0x5c, 0x5a, 0x58, 0x58, 0x59, 0x54, 0x4e, 0x49, 0x44, 0x3d, 0x39, 0x41, 0x4d, 0x54, 0x54, 0x54, 0x52, 0x50, 0x4e, 0x4e, 0x4d, 0x46, 0x3f, 0x3e, 0x44, 0x49, 0x4f, 0x5d, 0x6d, 0x90, 0x8c, 0x70, 0x4c, 0x3e, 0x3e, 0x3e, 0x3d, 0x3b, 0x3d, 0x40, 0x42, 0x40, 0x3e, 0x3f, 0x41, 0x3a, 0x3f, 0x46, 0x48, 0x43, 0x3e, 0x42, 0x4a, 0x43, 0x4a, 0x57, 0x65, 0x6c, 0x69, 0x5c, 0x52, 0x56, 0x4b, 0x45, 0x47, 0x4a, 0x53, 0x59, 0x56, 0x5c, 0x47, 0x3a, 0x36, 0x30, 0x30, 0x3b, 0x44, 0x48, 0x53, 0x5b, 0x5b, 0x43, 0x37, 0x44, 0x44, 0x46, 0x44, 0x47, 0x4b, 0x48, 0x41, 0x3e, 0x40, 0x42, 0x43, 0x43, 0x41, 0x3b, 0x4e, 0x4b, 0x4e, 0x5a, 0x6b, 0x6c, 0x75, 0x8f, 0xa2, 0x95, 0x6d, 0x54, 0x53, 0x54, 0x55, 0x53, 0x4f, 0x50, 0x54, 0x58, 0x59, 0x61, 0x72, 0x84, 0x85, 0x70, 0x59, 0x4c, 0x51, 0x4f, 0x4a, 0x50, 0x5e, 0x65, 0x62, 0x50, 0x33, 0x2d, 0x36, 0x33, 0x30, 0x30, 0x26, 0x26, 0x2f, 0x3c, 0x46, 0x4c, 0x54, 0x68, 0x7a, 0x97, 0xaa, 0x9e, 0x77, 0x5f, 0x59, 0x50, 0x43, 0x47, 0x55, 0x60, 0x60, 0x5c, 0x63, 0x77, 0x89, 0xb7, 0xc7, 0xc9, 0xb4, 0x92, 0x6c, 0x58, 0x57, 0x5b, 0x60, 0x66, 0x6c, 0x76, 0x81, 0x87, 0x88, 0x8a, 0x8c, 0x90, 0x8f, 0x7e, 0x6c, 0x6a, 0x75, 0x7d, 0x8c, 0x94, 0x90, 0x87, 0x7b, 0x73, 0x73, 0x7e, 0x7f, 0x83, 0x86, 0x84, 0x7f, 0x7a, 0x79, 0x7f, 0x81, 0x82, 0x84, 0x83, 0x7d, 0x82, 0x93, 0xa1, 0xa3, 0xa7, 0xaf, 0xa9, 0xa6, 0xa8, 0x98, 0x90, 0xa2, 0xb1, 0xac, 0xa1, 0xa1, 0x9d, 0x8f, 0x91, 0x97, 0x96, 0x94, 0x9c, 0xa7, 0xa0, 0x8e, 0x83, 0x79, 0x71, 0x65, 0x51, 0x44, 0x43, 0x42, 0x3b, 0x3b, 0x3c, 0x3f, 0x45, 0x49, 0x46, 0x40, 0x32, 0x2d, 0x2c, 0x2d, 0x36, 0x4c, 0x5f, 0x66, 0x5a, 0x5a, 0x5d, 0x65, 0x6e, 0x71, 0x6e, 0x69, 0x66, 0x74, 0x78, 0x6c, 0x65, 0x67, 0x66, 0x5f, 0x53, 0x54, 0x56, 0x59, 0x5c, 0x5b, 0x57, 0x54, 0x5d, 0x73, 0x9a, 0x9d, 0x9c, 0x84, 0x7a, 0x82, 0x7c, 0x66, 0x5f, 0x54, 0x48, 0x4d, 0x63, 0x67, 0x56, 0x50, 0x50, 0x51, 0x54, 0x5b, 0x5b, 0x52, 0x55, 0x51, 0x4f, 0x54, 0x5b, 0x62, 0x6a, 0x70, 0x7e, 0x78, 0x74, 0x75, 0x76, 0x75, 0x77, 0x79, 0x7a, 0x7a, 0x7f, 0x7f, 0x76, 0x75, 0x78, 0x77, 0x7f, 0x7b, 0x77, 0x76, 0x77, 0x76, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x71, 0x69, 0x60, 0x5d, 0x5e, 0x5f, 0x5f, 0x61, 0x64, 0x65, 0x63, 0x62, 0x63, 0x61, 0x61, 0x5e, 0x59, 0x5c, 0x62, 0x60, 0x59, 0x57, 0x51, 0x52, 0x51, 0x4d, 0x52, 0x54, 0x4a, 0x48, 0x47, 0x46, 0x44, 0x43, 0x45, 0x49, 0x4c, 0x40, 0x3c, 0x3b, 0x3e, 0x40, 0x3e, 0x3c, 0x3b, 0x3e, 0x3c, 0x38, 0x34, 0x34, 0x38, 0x3b, 0x3b, 0x38, 0x41, 0x4e, 0x5a, 0x65, 0x6d, 0x72, 0x73, 0x6e, 0x66, 0x5f, 0x5d, 0x5e, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b, 0x5d, 0x5e, 0x5d, 0x5f, 0x67, 0x6f, 0x7d, 0x80, 0x7e, 0x7b, 0x76, 0x69, 0x60, 0x63, 0x68, 0x70, 0x7a, 0x7c, 0x76, 0x6b, 0x61, 0x5b, 0x5d, 0x5c, 0x61, 0x6c, 0x74, 0x7a, 0x84, 0x8e, 0x89, 0x8b, 0x89, 0x88, 0x8e, 0x97, 0x98, 0x93, 0x75, 0x5d, 0x4a, 0x4d, 0x6c, 0xa2, 0xc1, 0xba, 0x9b, 0x77, 0x61, 0x65, 0x6a, 0x6b, 0x70, 0x74, 0x76, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x79, 0x73, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x7a, 0x7b, 0x7d, 0x7c, 0x77, 0x71, 0x6d, 0x6d, 0x6c, 0x6a, 0x63, 0x5c, 0x59, 0x5a, 0x57, 0x52, 0x4e, 0x4f, 0x66, 0x8f, 0x93, 0x72, 0x46, 0x42, 0x43, 0x42, 0x41, 0x4a, 0x54, 0x54, 0x57, 0x5b, 0x5f, 0x63, 0x6b, 0x77, 0x81, 0x86, 0x86, 0x7f, 0x7c, 0x74, 0x71, 0x83, 0x96, 0x97, 0x9a, 0x6d, 0x57, 0x5d, 0x5c, 0x5d, 0x61, 0x5c, 0x6b, 0x6a, 0x69, 0x5f, 0x53, 0x57, 0x67, 0x70, 0x58, 0x57, 0x54, 0x4c, 0x44, 0x3e, 0x3c, 0x3b, 0x5b, 0x5c, 0x62, 0x6c, 0x71, 0x6b, 0x62, 0x5d, 0x49, 0x4f, 0x56, 0x51, 0x52, 0x6c, 0x73, 0x57, 0x33, 0x32, 0x38, 0x37, 0x2e, 0x2e, 0x30, 0x29, 0x2f, 0x2d, 0x2d, 0x2f, 0x2e, 0x2c, 0x2c, 0x2d, 0x21, 0x1c, 0x17, 0x17, 0x19, 0x1c, 0x1d, 0x1d, 0x23, 0x27, 0x29, 0x27, 0x25, 0x22, 0x1f, 0x1b, 0x16, 0x18, 0x17, 0x15, 0x11, 0x10, 0x13, 0x16, 0x15, 0x12, 0x13, 0x17, 0x19, 0x1a, 0x1c, 0x1f, 0x19, 0x17, 0x16, 0x17, 0x19, 0x1e, 0x27, 0x30, 0x52, 0x52, 0x53, 0x54, 0x56, 0x58, 0x5b, 0x5c, 0x5e, 0x5e, 0x5e, 0x5d, 0x5b, 0x59, 0x59, 0x5a, 0x56, 0x4c, 0x43, 0x40, 0x3d, 0x3d, 0x46, 0x52, 0x56, 0x54, 0x53, 0x54, 0x52, 0x4e, 0x4d, 0x4e, 0x45, 0x3e, 0x3d, 0x45, 0x4b, 0x51, 0x60, 0x71, 0x86, 0x84, 0x6b, 0x4a, 0x3d, 0x3e, 0x3e, 0x3b, 0x3b, 0x36, 0x35, 0x3c, 0x43, 0x42, 0x40, 0x3f, 0x3a, 0x41, 0x49, 0x49, 0x3e, 0x35, 0x39, 0x42, 0x4f, 0x59, 0x5d, 0x55, 0x4d, 0x51, 0x5e, 0x68, 0x5f, 0x4f, 0x53, 0x6e, 0x88, 0x98, 0x9b, 0x95, 0x81, 0x62, 0x4c, 0x45, 0x3b, 0x36, 0x3b, 0x43, 0x51, 0x63, 0x73, 0x7b, 0x74, 0x74, 0x6f, 0x4f, 0x3a, 0x3b, 0x41, 0x4a, 0x4a, 0x41, 0x3a, 0x3a, 0x40, 0x38, 0x3e, 0x45, 0x3b, 0x47, 0x43, 0x44, 0x52, 0x51, 0x4e, 0x5f, 0x71, 0x76, 0x78, 0x6f, 0x58, 0x54, 0x51, 0x4d, 0x48, 0x46, 0x4c, 0x55, 0x50, 0x4f, 0x55, 0x5e, 0x5f, 0x56, 0x50, 0x50, 0x4c, 0x52, 0x57, 0x61, 0x7a, 0x93, 0x96, 0x89, 0x62, 0x3e, 0x30, 0x31, 0x27, 0x26, 0x2d, 0x28, 0x2e, 0x2f, 0x35, 0x41, 0x4b, 0x52, 0x59, 0x5f, 0x62, 0x5e, 0x54, 0x51, 0x56, 0x52, 0x4b, 0x4a, 0x60, 0x6d, 0x73, 0x69, 0x5e, 0x69, 0x8a, 0xa8, 0xbc, 0xc8, 0xc8, 0xb2, 0x90, 0x6b, 0x54, 0x51, 0x4e, 0x4f, 0x57, 0x65, 0x70, 0x76, 0x7d, 0x84, 0x85, 0x82, 0x86, 0x8b, 0x7f, 0x6b, 0x67, 0x70, 0x86, 0x92, 0x9a, 0x9b, 0x99, 0x8f, 0x81, 0x7c, 0x77, 0x79, 0x7e, 0x80, 0x76, 0x69, 0x64, 0x67, 0x64, 0x67, 0x6b, 0x72, 0x75, 0x6e, 0x6c, 0x76, 0x7b, 0x83, 0x8b, 0x93, 0x8e, 0x94, 0xa4, 0x9c, 0xa5, 0xb0, 0xb3, 0xa5, 0x9d, 0xa7, 0xaa, 0x9d, 0xa7, 0xab, 0xa4, 0x9b, 0xa3, 0xb2, 0xac, 0x98, 0x8a, 0x81, 0x7a, 0x6d, 0x55, 0x45, 0x42, 0x41, 0x3d, 0x40, 0x41, 0x43, 0x48, 0x4c, 0x46, 0x3c, 0x37, 0x2e, 0x2d, 0x30, 0x38, 0x51, 0x60, 0x59, 0x4e, 0x54, 0x5e, 0x6a, 0x73, 0x75, 0x71, 0x6c, 0x6f, 0x76, 0x72, 0x63, 0x5e, 0x68, 0x6e, 0x6a, 0x5a, 0x5e, 0x63, 0x66, 0x65, 0x63, 0x62, 0x62, 0x5c, 0x70, 0x9a, 0x9c, 0x94, 0x79, 0x85, 0xa7, 0xb7, 0x8b, 0x73, 0x59, 0x4d, 0x4a, 0x5e, 0x59, 0x61, 0x55, 0x52, 0x56, 0x58, 0x5c, 0x5e, 0x5a, 0x55, 0x54, 0x59, 0x64, 0x6d, 0x70, 0x72, 0x74, 0x74, 0x70, 0x70, 0x76, 0x7a, 0x7b, 0x7d, 0x7f, 0x86, 0x81, 0x80, 0x7d, 0x76, 0x75, 0x79, 0x76, 0x7b, 0x78, 0x76, 0x77, 0x7a, 0x7a, 0x76, 0x72, 0x6e, 0x7a, 0x80, 0x7a, 0x72, 0x6f, 0x6e, 0x6b, 0x6a, 0x67, 0x6a, 0x70, 0x70, 0x6b, 0x69, 0x6b, 0x6d, 0x6e, 0x69, 0x62, 0x63, 0x68, 0x64, 0x5a, 0x62, 0x5a, 0x5a, 0x59, 0x53, 0x59, 0x5b, 0x4e, 0x4e, 0x4a, 0x46, 0x45, 0x46, 0x48, 0x49, 0x48, 0x44, 0x3c, 0x39, 0x3d, 0x41, 0x3e, 0x3d, 0x3e, 0x3f, 0x40, 0x3c, 0x35, 0x33, 0x36, 0x36, 0x31, 0x3f, 0x39, 0x37, 0x3f, 0x4e, 0x5e, 0x6d, 0x76, 0x6d, 0x66, 0x5f, 0x5d, 0x5e, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b, 0x5d, 0x5f, 0x5f, 0x61, 0x6a, 0x72, 0x7f, 0x81, 0x7f, 0x7c, 0x77, 0x6b, 0x65, 0x6a, 0x86, 0x92, 0x9d, 0x9a, 0x8a, 0x77, 0x6b, 0x67, 0x6a, 0x69, 0x64, 0x5f, 0x64, 0x70, 0x77, 0x78, 0x79, 0x72, 0x6f, 0x75, 0x7c, 0x7c, 0x79, 0x78, 0x6a, 0x56, 0x4a, 0x50, 0x6f, 0xa4, 0xc2, 0xbb, 0x98, 0x74, 0x5e, 0x63, 0x68, 0x6a, 0x6e, 0x72, 0x78, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x79, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x71, 0x75, 0x79, 0x7c, 0x7f, 0x80, 0x7c, 0x77, 0x71, 0x72, 0x71, 0x6e, 0x68, 0x61, 0x5b, 0x58, 0x5a, 0x54, 0x4f, 0x51, 0x6a, 0x93, 0x94, 0x6f, 0x46, 0x40, 0x42, 0x46, 0x41, 0x3e, 0x40, 0x40, 0x4e, 0x54, 0x5b, 0x60, 0x67, 0x74, 0x7f, 0x85, 0x81, 0x7c, 0x7b, 0x77, 0x80, 0xa6, 0xca, 0xd1, 0xa2, 0x71, 0x5d, 0x61, 0x4f, 0x3d, 0x3e, 0x40, 0x5a, 0x68, 0x75, 0x78, 0x81, 0x8d, 0x7d, 0x5a, 0x5c, 0x63, 0x71, 0x76, 0x62, 0x4b, 0x53, 0x6b, 0x73, 0x6e, 0x6b, 0x6b, 0x66, 0x5e, 0x57, 0x55, 0x4e, 0x4f, 0x58, 0x58, 0x5a, 0x6b, 0x5e, 0x31, 0x2c, 0x47, 0x4d, 0x40, 0x3c, 0x3f, 0x3e, 0x3d, 0x36, 0x37, 0x38, 0x35, 0x2d, 0x24, 0x21, 0x22, 0x20, 0x19, 0x15, 0x19, 0x1e, 0x1f, 0x21, 0x23, 0x23, 0x27, 0x28, 0x26, 0x22, 0x1f, 0x1b, 0x18, 0x17, 0x11, 0x0b, 0x0e, 0x16, 0x1a, 0x17, 0x11, 0x14, 0x15, 0x1a, 0x1f, 0x1f, 0x1c, 0x1d, 0x21, 0x1e, 0x19, 0x1a, 0x22, 0x29, 0x33, 0x4d, 0x67, 0x54, 0x56, 0x57, 0x56, 0x57, 0x5a, 0x5b, 0x5a, 0x5b, 0x5e, 0x5f, 0x5c, 0x5a, 0x5b, 0x5c, 0x5c, 0x56, 0x48, 0x40, 0x3d, 0x3c, 0x44, 0x50, 0x55, 0x58, 0x57, 0x54, 0x53, 0x52, 0x51, 0x50, 0x4f, 0x4a, 0x44, 0x42, 0x46, 0x4c, 0x53, 0x5b, 0x63, 0x69, 0x60, 0x52, 0x46, 0x3f, 0x3d, 0x3e, 0x3f, 0x39, 0x3a, 0x3a, 0x3b, 0x3e, 0x42, 0x44, 0x43, 0x44, 0x48, 0x51, 0x4f, 0x40, 0x41, 0x54, 0x64, 0x89, 0xa8, 0xb0, 0x96, 0x8b, 0xa5, 0xae, 0x99, 0x6b, 0x4e, 0x59, 0x96, 0xd1, 0xe8, 0xe5, 0xdc, 0xd1, 0xb5, 0x87, 0x4e, 0x33, 0x35, 0x43, 0x5c, 0x86, 0xad, 0xb9, 0x9d, 0x87, 0x87, 0x79, 0x5d, 0x45, 0x42, 0x3c, 0x3d, 0x40, 0x3b, 0x34, 0x36, 0x3b, 0x3e, 0x3e, 0x41, 0x43, 0x3e, 0x3e, 0x47, 0x54, 0x60, 0x63, 0x68, 0x6a, 0x68, 0x6a, 0x60, 0x62, 0x5b, 0x57, 0x58, 0x56, 0x4f, 0x4d, 0x51, 0x4a, 0x4c, 0x4f, 0x4d, 0x48, 0x48, 0x51, 0x5d, 0x68, 0x69, 0x6b, 0x7d, 0xa8, 0xc5, 0xad, 0x7f, 0x54, 0x3e, 0x2e, 0x28, 0x25, 0x27, 0x2b, 0x2a, 0x29, 0x2c, 0x2d, 0x37, 0x44, 0x43, 0x49, 0x5e, 0x76, 0x6f, 0x67, 0x67, 0x70, 0x74, 0x69, 0x5a, 0x78, 0x98, 0xa6, 0x9c, 0x9b, 0xa9, 0xb5, 0xba, 0xca, 0xce, 0xc2, 0xac, 0x8f, 0x68, 0x52, 0x57, 0x5a, 0x61, 0x6a, 0x6d, 0x6c, 0x6c, 0x70, 0x74, 0x75, 0x7a, 0x7e, 0x7c, 0x77, 0x6f, 0x65, 0x5c, 0x7d, 0x8e, 0x9d, 0x9e, 0x94, 0x89, 0x81, 0x7b, 0x7c, 0x79, 0x7a, 0x7d, 0x75, 0x66, 0x5d, 0x5e, 0x5c, 0x61, 0x66, 0x6b, 0x6d, 0x70, 0x73, 0x75, 0x70, 0x73, 0x74, 0x73, 0x76, 0x7d, 0x84, 0x88, 0x98, 0xa9, 0xac, 0x9f, 0x9d, 0xa9, 0xab, 0xa1, 0xa9, 0xae, 0xa5, 0x9f, 0xac, 0xb7, 0xaa, 0x96, 0x87, 0x85, 0x80, 0x74, 0x60, 0x4c, 0x45, 0x46, 0x45, 0x43, 0x42, 0x43, 0x43, 0x42, 0x3e, 0x3a, 0x39, 0x33, 0x32, 0x38, 0x47, 0x5c, 0x65, 0x5f, 0x53, 0x53, 0x5c, 0x6d, 0x78, 0x78, 0x75, 0x75, 0x75, 0x72, 0x69, 0x5a, 0x5a, 0x6f, 0x79, 0x70, 0x59, 0x61, 0x6c, 0x72, 0x72, 0x73, 0x7d, 0x87, 0x83, 0x94, 0x97, 0x98, 0x97, 0x83, 0x8c, 0xba, 0xce, 0xc2, 0xa9, 0x81, 0x51, 0x4c, 0x6a, 0x6e, 0x73, 0x67, 0x5d, 0x5b, 0x59, 0x54, 0x55, 0x59, 0x5d, 0x64, 0x6d, 0x74, 0x7b, 0x81, 0x7f, 0x7b, 0x76, 0x7a, 0x7a, 0x79, 0x7c, 0x7b, 0x79, 0x7d, 0x87, 0x84, 0x7c, 0x79, 0x7d, 0x7b, 0x76, 0x79, 0x7d, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x79, 0x74, 0x75, 0x70, 0x76, 0x78, 0x70, 0x72, 0x77, 0x72, 0x70, 0x72, 0x70, 0x71, 0x73, 0x6e, 0x69, 0x6d, 0x6f, 0x69, 0x62, 0x60, 0x60, 0x61, 0x61, 0x60, 0x5a, 0x54, 0x4f, 0x4e, 0x4f, 0x4e, 0x49, 0x44, 0x43, 0x42, 0x41, 0x3f, 0x3d, 0x3d, 0x3e, 0x40, 0x40, 0x40, 0x3f, 0x3d, 0x3a, 0x37, 0x35, 0x34, 0x34, 0x34, 0x35, 0x39, 0x3e, 0x47, 0x57, 0x67, 0x6a, 0x66, 0x61, 0x5c, 0x59, 0x59, 0x5b, 0x5c, 0x5f, 0x5e, 0x5f, 0x61, 0x62, 0x64, 0x69, 0x6f, 0x80, 0x7e, 0x7d, 0x7f, 0x7a, 0x6a, 0x64, 0x6f, 0x99, 0xaf, 0xc1, 0xbd, 0xad, 0xa1, 0x9d, 0x9b, 0x99, 0x87, 0x6a, 0x57, 0x5c, 0x6d, 0x77, 0x76, 0x67, 0x64, 0x5e, 0x5b, 0x5d, 0x62, 0x63, 0x62, 0x5b, 0x4f, 0x4d, 0x55, 0x79, 0xa6, 0xca, 0xb3, 0x92, 0x75, 0x67, 0x62, 0x64, 0x6c, 0x6d, 0x72, 0x75, 0x78, 0x7b, 0x7d, 0x7e, 0x7e, 0x79, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x77, 0x77, 0x76, 0x76, 0x7b, 0x82, 0x85, 0x84, 0x75, 0x72, 0x6e, 0x6a, 0x64, 0x5c, 0x57, 0x56, 0x56, 0x5c, 0x58, 0x5b, 0x7a, 0x9c, 0x93, 0x72, 0x4c, 0x49, 0x44, 0x3f, 0x3d, 0x3d, 0x3d, 0x3d, 0x42, 0x4c, 0x5a, 0x64, 0x65, 0x64, 0x6c, 0x76, 0x72, 0x73, 0x6c, 0x6c, 0x88, 0xad, 0xb8, 0xad, 0x84, 0x69, 0x5c, 0x5e, 0x5f, 0x6a, 0x7c, 0x84, 0x83, 0x76, 0x6f, 0x7d, 0x79, 0x73, 0x57, 0x41, 0x53, 0x54, 0x5a, 0x62, 0x69, 0x6b, 0x68, 0x64, 0x4b, 0x3a, 0x32, 0x3d, 0x4c, 0x52, 0x53, 0x55, 0x5f, 0x59, 0x56, 0x57, 0x57, 0x4d, 0x3b, 0x2b, 0x35, 0x3d, 0x45, 0x47, 0x46, 0x45, 0x44, 0x42, 0x46, 0x3f, 0x33, 0x2a, 0x28, 0x28, 0x22, 0x1b, 0x1d, 0x17, 0x13, 0x13, 0x18, 0x1b, 0x19, 0x16, 0x1a, 0x20, 0x1e, 0x19, 0x17, 0x13, 0x0f, 0x11, 0x17, 0x17, 0x18, 0x17, 0x14, 0x13, 0x17, 0x1d, 0x1c, 0x19, 0x1c, 0x1e, 0x18, 0x1d, 0x2b, 0x34, 0x46, 0x53, 0x60, 0x64, 0x67, 0x74, 0x89, 0x99, 0x54, 0x56, 0x56, 0x56, 0x57, 0x5a, 0x5b, 0x5a, 0x5c, 0x5d, 0x5d, 0x5a, 0x59, 0x5a, 0x59, 0x57, 0x51, 0x44, 0x3e, 0x3d, 0x3f, 0x48, 0x53, 0x56, 0x5a, 0x58, 0x55, 0x54, 0x53, 0x52, 0x51, 0x50, 0x4b, 0x47, 0x45, 0x49, 0x4f, 0x55, 0x5d, 0x63, 0x6a, 0x5e, 0x4e, 0x43, 0x40, 0x42, 0x44, 0x45, 0x3e, 0x39, 0x36, 0x37, 0x39, 0x40, 0x4f, 0x5e, 0x55, 0x5b, 0x67, 0x62, 0x4e, 0x4f, 0x63, 0x6d, 0x72, 0x9d, 0xbd, 0xbd, 0xc2, 0xd8, 0xcf, 0xab, 0x73, 0x5b, 0x6b, 0xac, 0xe7, 0xfc, 0xf6, 0xe9, 0xd3, 0xa8, 0x77, 0x4d, 0x37, 0x36, 0x4b, 0x74, 0xc2, 0xdf, 0xd9, 0xa7, 0x8b, 0x94, 0x94, 0x81, 0x55, 0x49, 0x3a, 0x38, 0x3d, 0x39, 0x34, 0x37, 0x40, 0x41, 0x45, 0x4f, 0x52, 0x46, 0x45, 0x53, 0x6d, 0x79, 0x78, 0x71, 0x62, 0x54, 0x56, 0x53, 0x56, 0x57, 0x52, 0x48, 0x46, 0x4c, 0x4f, 0x4c, 0x4c, 0x49, 0x48, 0x4d, 0x59, 0x64, 0x6b, 0x6e, 0x67, 0x6c, 0x75, 0x89, 0xa7, 0xb3, 0x99, 0x74, 0x4c, 0x3e, 0x39, 0x3c, 0x39, 0x34, 0x2f, 0x28, 0x2a, 0x2d, 0x29, 0x29, 0x2f, 0x38, 0x53, 0x78, 0x8d, 0x89, 0x8f, 0xa3, 0xb6, 0xb1, 0x93, 0x77, 0x8d, 0xa5, 0xb8, 0xc0, 0xc4, 0xc4, 0xc6, 0xcd, 0xc8, 0xcb, 0xbd, 0xa3, 0x84, 0x62, 0x56, 0x61, 0x6b, 0x6e, 0x6f, 0x6b, 0x66, 0x64, 0x69, 0x6e, 0x73, 0x79, 0x80, 0x81, 0x7e, 0x75, 0x67, 0x5b, 0x73, 0x83, 0x91, 0x94, 0x8e, 0x85, 0x7d, 0x77, 0x77, 0x76, 0x79, 0x7c, 0x77, 0x6c, 0x64, 0x63, 0x61, 0x68, 0x71, 0x76, 0x75, 0x70, 0x6c, 0x6b, 0x6b, 0x6c, 0x6a, 0x65, 0x62, 0x63, 0x64, 0x64, 0x68, 0x78, 0x85, 0x8f, 0xa1, 0xb3, 0xb0, 0xa1, 0xae, 0xb1, 0xa7, 0xa0, 0xae, 0xb8, 0xab, 0x98, 0x81, 0x7b, 0x75, 0x71, 0x68, 0x5a, 0x4e, 0x48, 0x49, 0x46, 0x42, 0x3f, 0x3d, 0x3c, 0x3a, 0x39, 0x3a, 0x35, 0x38, 0x43, 0x54, 0x68, 0x6f, 0x67, 0x54, 0x58, 0x60, 0x6c, 0x77, 0x7c, 0x76, 0x6e, 0x7e, 0x6d, 0x5b, 0x52, 0x5b, 0x71, 0x75, 0x66, 0x5d, 0x60, 0x66, 0x6e, 0x76, 0x7c, 0x80, 0x81, 0x86, 0x98, 0x9b, 0x9c, 0x9c, 0x8d, 0x94, 0xbc, 0xdb, 0xcd, 0xb2, 0x8a, 0x59, 0x4f, 0x68, 0x6c, 0x6c, 0x63, 0x5c, 0x59, 0x57, 0x55, 0x5a, 0x62, 0x71, 0x73, 0x75, 0x79, 0x80, 0x86, 0x84, 0x7f, 0x83, 0x86, 0x82, 0x7d, 0x7c, 0x7b, 0x7e, 0x87, 0x88, 0x85, 0x7d, 0x7b, 0x7f, 0x7d, 0x7b, 0x81, 0x80, 0x81, 0x82, 0x81, 0x80, 0x80, 0x82, 0x83, 0x83, 0x85, 0x85, 0x84, 0x83, 0x82, 0x7e, 0x7a, 0x7a, 0x78, 0x79, 0x79, 0x76, 0x78, 0x7c, 0x7c, 0x73, 0x76, 0x74, 0x75, 0x79, 0x74, 0x70, 0x74, 0x70, 0x6f, 0x6b, 0x67, 0x67, 0x6a, 0x69, 0x66, 0x65, 0x60, 0x5b, 0x59, 0x59, 0x56, 0x4f, 0x49, 0x45, 0x46, 0x46, 0x45, 0x43, 0x3f, 0x3c, 0x3a, 0x3e, 0x3e, 0x3f, 0x3e, 0x3c, 0x3a, 0x38, 0x37, 0x34, 0x34, 0x36, 0x39, 0x3a, 0x3d, 0x46, 0x4f, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c, 0x5c, 0x5f, 0x61, 0x64, 0x6b, 0x71, 0x7d, 0x7e, 0x7e, 0x80, 0x7d, 0x6f, 0x67, 0x6e, 0x89, 0x98, 0xa8, 0xb0, 0xb1, 0xb3, 0xb8, 0xbc, 0xb4, 0x9f, 0x7e, 0x64, 0x61, 0x6d, 0x77, 0x78, 0x78, 0x79, 0x78, 0x76, 0x74, 0x72, 0x70, 0x6e, 0x65, 0x55, 0x4d, 0x54, 0x7b, 0xa8, 0xc9, 0xaf, 0x92, 0x75, 0x68, 0x62, 0x62, 0x6a, 0x6b, 0x71, 0x73, 0x77, 0x7b, 0x7c, 0x7e, 0x7d, 0x79, 0x73, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x78, 0x77, 0x76, 0x7f, 0x8b, 0x8a, 0x7f, 0x76, 0x75, 0x73, 0x6d, 0x64, 0x5b, 0x5a, 0x5d, 0x70, 0x78, 0x7b, 0x7f, 0x95, 0xa9, 0x9a, 0x7a, 0x5f, 0x5d, 0x5a, 0x55, 0x4c, 0x42, 0x3d, 0x3e, 0x41, 0x49, 0x58, 0x64, 0x67, 0x62, 0x5f, 0x5f, 0x6d, 0x67, 0x5c, 0x5d, 0x77, 0x92, 0x91, 0x7f, 0x66, 0x70, 0x85, 0x93, 0x92, 0x89, 0x7f, 0x75, 0x67, 0x70, 0x7a, 0x82, 0x67, 0x54, 0x3f, 0x36, 0x46, 0x57, 0x6a, 0x70, 0x63, 0x4f, 0x3e, 0x35, 0x32, 0x2d, 0x2f, 0x3b, 0x4a, 0x54, 0x5c, 0x63, 0x64, 0x5c, 0x52, 0x4d, 0x48, 0x3e, 0x2e, 0x22, 0x2d, 0x33, 0x38, 0x39, 0x39, 0x39, 0x38, 0x36, 0x34, 0x30, 0x28, 0x21, 0x1d, 0x1b, 0x17, 0x13, 0x0d, 0x10, 0x11, 0x0f, 0x0d, 0x10, 0x19, 0x20, 0x20, 0x1f, 0x17, 0x11, 0x16, 0x18, 0x15, 0x15, 0x10, 0x19, 0x1e, 0x1c, 0x1b, 0x1d, 0x20, 0x20, 0x18, 0x13, 0x18, 0x2b, 0x4d, 0x7a, 0x96, 0x98, 0x92, 0x69, 0x50, 0x5d, 0x6d, 0x77, 0x90, 0xb0, 0x54, 0x56, 0x57, 0x56, 0x57, 0x5a, 0x5b, 0x59, 0x5f, 0x5e, 0x5c, 0x59, 0x59, 0x59, 0x56, 0x52, 0x49, 0x3e, 0x3b, 0x3f, 0x43, 0x4d, 0x56, 0x57, 0x5b, 0x59, 0x55, 0x53, 0x52, 0x51, 0x51, 0x51, 0x4e, 0x4b, 0x4a, 0x4e, 0x54, 0x59, 0x5e, 0x62, 0x67, 0x59, 0x48, 0x3f, 0x3f, 0x44, 0x48, 0x48, 0x3e, 0x37, 0x36, 0x3a, 0x3f, 0x4a, 0x64, 0x7e, 0x77, 0x61, 0x55, 0x4e, 0x4c, 0x62, 0x75, 0x6e, 0x78, 0xa7, 0xcd, 0xcc, 0xc3, 0xca, 0xc2, 0xa6, 0x77, 0x61, 0x6c, 0x9f, 0xce, 0xe3, 0xe5, 0xe0, 0xd4, 0xaa, 0x7b, 0x4f, 0x36, 0x2e, 0x3a, 0x5c, 0x7c, 0x8e, 0x89, 0x6b, 0x60, 0x78, 0x90, 0x95, 0x86, 0x68, 0x46, 0x3d, 0x43, 0x3f, 0x38, 0x3b, 0x40, 0x45, 0x53, 0x64, 0x64, 0x50, 0x4b, 0x5b, 0xa4, 0xc2, 0xce, 0xbe, 0x8c, 0x5a, 0x4b, 0x45, 0x3e, 0x44, 0x47, 0x43, 0x44, 0x47, 0x44, 0x3c, 0x46, 0x44, 0x41, 0x44, 0x52, 0x65, 0x6f, 0x71, 0x77, 0x73, 0x6d, 0x6d, 0x73, 0x74, 0x66, 0x55, 0x46, 0x3b, 0x3a, 0x3f, 0x3e, 0x3b, 0x36, 0x30, 0x30, 0x2f, 0x2a, 0x2c, 0x33, 0x3b, 0x4e, 0x67, 0x77, 0x82, 0x97, 0xaf, 0xbc, 0xb5, 0xa4, 0x97, 0x92, 0x9a, 0xa8, 0xb8, 0xbc, 0xb0, 0xad, 0xba, 0xc9, 0xc5, 0xb3, 0x9a, 0x7f, 0x66, 0x5f, 0x69, 0x6c, 0x6e, 0x6d, 0x68, 0x62, 0x60, 0x66, 0x6c, 0x6f, 0x74, 0x79, 0x7d, 0x7d, 0x77, 0x6a, 0x5f, 0x68, 0x73, 0x80, 0x86, 0x86, 0x84, 0x80, 0x7d, 0x78, 0x7a, 0x7b, 0x7b, 0x77, 0x73, 0x70, 0x6f, 0x6d, 0x7a, 0x8a, 0x96, 0x9b, 0x9c, 0x9c, 0x9e, 0x8f, 0x8f, 0x8a, 0x80, 0x76, 0x6f, 0x69, 0x64, 0x67, 0x6d, 0x73, 0x7d, 0x91, 0xa6, 0xad, 0xaa, 0xb8, 0xb9, 0xae, 0xa7, 0xb2, 0xba, 0xae, 0x9e, 0x8c, 0x7e, 0x71, 0x6e, 0x6d, 0x65, 0x55, 0x48, 0x42, 0x3e, 0x39, 0x37, 0x38, 0x3b, 0x3e, 0x3f, 0x40, 0x3b, 0x41, 0x50, 0x61, 0x70, 0x72, 0x67, 0x57, 0x5f, 0x65, 0x67, 0x6d, 0x74, 0x73, 0x6b, 0x76, 0x65, 0x54, 0x4e, 0x54, 0x66, 0x6e, 0x67, 0x5f, 0x5d, 0x5d, 0x66, 0x78, 0x85, 0x81, 0x76, 0x8b, 0x9f, 0xa5, 0xa7, 0xab, 0xa1, 0xa5, 0xc2, 0xce, 0xcc, 0xbe, 0x9d, 0x68, 0x50, 0x61, 0x68, 0x66, 0x61, 0x5d, 0x5c, 0x5b, 0x5d, 0x66, 0x70, 0x7b, 0x7b, 0x7c, 0x7f, 0x85, 0x88, 0x83, 0x7c, 0x84, 0x89, 0x86, 0x7f, 0x7c, 0x7c, 0x81, 0x8d, 0x89, 0x88, 0x80, 0x7d, 0x80, 0x7f, 0x7f, 0x86, 0x88, 0x8b, 0x8d, 0x8b, 0x87, 0x85, 0x88, 0x8b, 0x8b, 0x8c, 0x8b, 0x89, 0x88, 0x87, 0x83, 0x7f, 0x7c, 0x7d, 0x79, 0x76, 0x78, 0x7a, 0x7c, 0x81, 0x7b, 0x7d, 0x7a, 0x79, 0x7a, 0x74, 0x6e, 0x72, 0x6e, 0x72, 0x71, 0x6b, 0x6a, 0x6e, 0x6e, 0x68, 0x62, 0x60, 0x5f, 0x5f, 0x5f, 0x5c, 0x56, 0x51, 0x50, 0x4f, 0x4b, 0x47, 0x44, 0x41, 0x3e, 0x3d, 0x3a, 0x3b, 0x3c, 0x3c, 0x3c, 0x3a, 0x38, 0x37, 0x39, 0x38, 0x38, 0x39, 0x38, 0x38, 0x3a, 0x3e, 0x45, 0x4a, 0x52, 0x5a, 0x5f, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5d, 0x5f, 0x61, 0x66, 0x6e, 0x76, 0x7a, 0x7f, 0x7f, 0x7f, 0x7d, 0x72, 0x68, 0x68, 0x72, 0x7d, 0x8a, 0x8d, 0x86, 0x82, 0x89, 0x93, 0x94, 0x84, 0x6b, 0x59, 0x5c, 0x6d, 0x7b, 0x7f, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x6d, 0x5a, 0x4d, 0x52, 0x7e, 0xab, 0xc7, 0xab, 0x8f, 0x73, 0x68, 0x62, 0x62, 0x6a, 0x6d, 0x75, 0x7a, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x7c, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x7a, 0x79, 0x78, 0x86, 0x96, 0x90, 0x7c, 0x67, 0x6b, 0x6f, 0x6c, 0x61, 0x58, 0x59, 0x5f, 0x65, 0x6f, 0x79, 0x84, 0x9a, 0xae, 0xab, 0x9c, 0x95, 0x8f, 0x86, 0x79, 0x62, 0x4b, 0x43, 0x47, 0x45, 0x50, 0x61, 0x6c, 0x6b, 0x65, 0x62, 0x63, 0x6a, 0x6e, 0x6c, 0x65, 0x64, 0x6c, 0x71, 0x70, 0x7d, 0x8d, 0x93, 0x88, 0x77, 0x65, 0x56, 0x51, 0x5f, 0x69, 0x6e, 0x6a, 0x4b, 0x4a, 0x58, 0x6c, 0x66, 0x6b, 0x69, 0x5b, 0x44, 0x32, 0x2d, 0x2f, 0x2a, 0x29, 0x2c, 0x39, 0x4b, 0x5c, 0x64, 0x66, 0x5d, 0x56, 0x4b, 0x42, 0x39, 0x2e, 0x21, 0x18, 0x1c, 0x20, 0x24, 0x26, 0x29, 0x2d, 0x2e, 0x2d, 0x2d, 0x1c, 0x17, 0x20, 0x21, 0x14, 0x12, 0x1a, 0x15, 0x15, 0x15, 0x15, 0x15, 0x14, 0x13, 0x12, 0x17, 0x1f, 0x1f, 0x17, 0x12, 0x14, 0x26, 0x3e, 0x4d, 0x46, 0x3f, 0x3c, 0x3f, 0x44, 0x48, 0x4a, 0x5f, 0x75, 0x9b, 0xb1, 0xa8, 0x91, 0x7a, 0x6a, 0x5e, 0x5b, 0x60, 0x71, 0x7e, 0x7d, 0x79, 0x78, 0x55, 0x57, 0x58, 0x58, 0x59, 0x5c, 0x5c, 0x5b, 0x61, 0x60, 0x5c, 0x5a, 0x5b, 0x5a, 0x54, 0x4d, 0x41, 0x38, 0x3a, 0x42, 0x49, 0x52, 0x59, 0x59, 0x5a, 0x57, 0x53, 0x50, 0x50, 0x50, 0x50, 0x50, 0x51, 0x50, 0x50, 0x53, 0x57, 0x5a, 0x5d, 0x5f, 0x5e, 0x52, 0x43, 0x3b, 0x3d, 0x42, 0x47, 0x49, 0x4c, 0x48, 0x43, 0x3d, 0x38, 0x39, 0x47, 0x57, 0x5f, 0x52, 0x50, 0x4b, 0x4b, 0x70, 0x98, 0x9d, 0x8f, 0xb5, 0xd8, 0xd7, 0xc1, 0xb2, 0xa4, 0x91, 0x6a, 0x61, 0x71, 0x96, 0xb2, 0xc3, 0xd1, 0xda, 0xd4, 0xbe, 0x91, 0x53, 0x33, 0x32, 0x35, 0x42, 0x4a, 0x49, 0x47, 0x43, 0x3e, 0x42, 0x55, 0x68, 0x72, 0x5b, 0x41, 0x38, 0x3b, 0x3d, 0x48, 0x5c, 0x5a, 0x76, 0xa1, 0xc3, 0xc2, 0x9a, 0x73, 0x67, 0xb5, 0xdc, 0xee, 0xd5, 0x91, 0x55, 0x49, 0x4d, 0x54, 0x47, 0x3d, 0x3e, 0x40, 0x3f, 0x41, 0x47, 0x3d, 0x3e, 0x3c, 0x3f, 0x50, 0x69, 0x78, 0x7a, 0x74, 0x6c, 0x5a, 0x48, 0x43, 0x49, 0x4d, 0x4b, 0x40, 0x36, 0x36, 0x3d, 0x3e, 0x3f, 0x41, 0x3f, 0x39, 0x3b, 0x3e, 0x43, 0x47, 0x46, 0x4a, 0x51, 0x60, 0x5d, 0x61, 0x74, 0x92, 0xa7, 0xab, 0xa4, 0x91, 0x90, 0x95, 0xa4, 0xad, 0xa6, 0xab, 0xbf, 0xc8, 0xbb, 0xa6, 0x91, 0x7e, 0x6d, 0x65, 0x66, 0x62, 0x66, 0x68, 0x65, 0x60, 0x5f, 0x64, 0x6a, 0x6f, 0x6f, 0x6f, 0x70, 0x73, 0x73, 0x6d, 0x65, 0x63, 0x6a, 0x73, 0x7a, 0x7e, 0x7f, 0x7d, 0x7c, 0x83, 0x87, 0x8a, 0x8c, 0x91, 0x9a, 0xa0, 0xa3, 0xaf, 0xb4, 0xba, 0xb9, 0xb5, 0xb1, 0xb1, 0xb3, 0xb8, 0xb8, 0xb4, 0xaa, 0x9f, 0x94, 0x8a, 0x83, 0x6c, 0x6e, 0x6e, 0x70, 0x7a, 0x8f, 0xa8, 0xba, 0xc5, 0xc9, 0xc2, 0xbb, 0xc2, 0xc6, 0xbc, 0xb2, 0x9d, 0x8c, 0x79, 0x6f, 0x6c, 0x65, 0x56, 0x49, 0x3e, 0x38, 0x32, 0x33, 0x3b, 0x43, 0x46, 0x46, 0x45, 0x40, 0x47, 0x5a, 0x68, 0x70, 0x6b, 0x5e, 0x5b, 0x61, 0x64, 0x62, 0x63, 0x6a, 0x70, 0x72, 0x6d, 0x5c, 0x50, 0x4e, 0x53, 0x61, 0x6b, 0x6a, 0x66, 0x64, 0x62, 0x6c, 0x83, 0x95, 0x8e, 0x7d, 0x8a, 0x9e, 0xa9, 0xad, 0xb2, 0xaa, 0xa7, 0xb6, 0xd2, 0xd3, 0xc9, 0xaf, 0x80, 0x61, 0x66, 0x66, 0x61, 0x5f, 0x5e, 0x61, 0x64, 0x68, 0x71, 0x7a, 0x78, 0x7b, 0x7f, 0x84, 0x87, 0x85, 0x7f, 0x79, 0x7b, 0x83, 0x84, 0x82, 0x83, 0x82, 0x85, 0x8d, 0x8b, 0x8b, 0x85, 0x82, 0x84, 0x82, 0x82, 0x89, 0x90, 0x92, 0x93, 0x91, 0x8d, 0x8a, 0x8a, 0x8b, 0x8e, 0x8f, 0x8f, 0x8d, 0x8b, 0x89, 0x85, 0x7f, 0x7b, 0x80, 0x79, 0x75, 0x7a, 0x79, 0x78, 0x81, 0x7f, 0x80, 0x7c, 0x7a, 0x7b, 0x74, 0x6e, 0x71, 0x6e, 0x75, 0x74, 0x6b, 0x69, 0x70, 0x70, 0x6a, 0x68, 0x68, 0x6a, 0x6b, 0x6c, 0x68, 0x63, 0x5f, 0x57, 0x56, 0x53, 0x51, 0x4d, 0x48, 0x43, 0x40, 0x3e, 0x3d, 0x3c, 0x3b, 0x3a, 0x39, 0x38, 0x37, 0x3d, 0x3a, 0x37, 0x36, 0x36, 0x37, 0x39, 0x3a, 0x38, 0x3e, 0x48, 0x52, 0x59, 0x5c, 0x5d, 0x5c, 0x5e, 0x5d, 0x5d, 0x5f, 0x60, 0x65, 0x6e, 0x77, 0x7a, 0x80, 0x7f, 0x7c, 0x7a, 0x71, 0x66, 0x63, 0x6a, 0x7e, 0x92, 0x90, 0x78, 0x68, 0x72, 0x87, 0x7f, 0x71, 0x5e, 0x55, 0x5e, 0x6f, 0x79, 0x7a, 0x67, 0x65, 0x63, 0x64, 0x66, 0x68, 0x6c, 0x70, 0x67, 0x58, 0x4c, 0x53, 0x82, 0xae, 0xc6, 0xaa, 0x89, 0x70, 0x67, 0x63, 0x64, 0x6d, 0x72, 0x7b, 0x82, 0x85, 0x87, 0x86, 0x85, 0x83, 0x7c, 0x76, 0x75, 0x76, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x7c, 0x7b, 0x7e, 0x8b, 0x97, 0x90, 0x7f, 0x6b, 0x71, 0x77, 0x74, 0x68, 0x5b, 0x58, 0x5b, 0x66, 0x6f, 0x7b, 0x86, 0x94, 0xa0, 0xa3, 0xa1, 0x9a, 0x99, 0x9a, 0x93, 0x77, 0x55, 0x44, 0x45, 0x4d, 0x5c, 0x6b, 0x6d, 0x64, 0x61, 0x6b, 0x78, 0x8d, 0x81, 0x71, 0x68, 0x6a, 0x71, 0x72, 0x6f, 0x78, 0x7f, 0x71, 0x5b, 0x4c, 0x3d, 0x38, 0x42, 0x5d, 0x5e, 0x58, 0x52, 0x3a, 0x40, 0x4c, 0x5a, 0x40, 0x3c, 0x35, 0x2d, 0x27, 0x25, 0x28, 0x2b, 0x2a, 0x23, 0x21, 0x30, 0x4c, 0x61, 0x62, 0x58, 0x4d, 0x48, 0x41, 0x3a, 0x31, 0x26, 0x1b, 0x14, 0x13, 0x15, 0x17, 0x18, 0x1c, 0x22, 0x24, 0x23, 0x1b, 0x1a, 0x13, 0x0a, 0x0c, 0x14, 0x14, 0x0d, 0x12, 0x10, 0x0f, 0x12, 0x17, 0x1c, 0x1e, 0x1e, 0x22, 0x2e, 0x1e, 0x0c, 0x2a, 0x64, 0x83, 0x83, 0x68, 0x6b, 0x7a, 0x8e, 0x99, 0x9a, 0xa2, 0xae, 0xab, 0xbe, 0xbb, 0x8e, 0x5f, 0x51, 0x4d, 0x40, 0x53, 0x69, 0x72, 0x6a, 0x69, 0x77, 0x7a, 0x70, 0x56, 0x58, 0x5a, 0x5a, 0x5b, 0x5e, 0x5e, 0x5d, 0x61, 0x60, 0x5d, 0x5b, 0x5b, 0x59, 0x51, 0x48, 0x3b, 0x36, 0x3c, 0x47, 0x4f, 0x56, 0x5b, 0x59, 0x59, 0x56, 0x52, 0x50, 0x4f, 0x50, 0x50, 0x50, 0x53, 0x53, 0x53, 0x55, 0x57, 0x5a, 0x5b, 0x5a, 0x50, 0x49, 0x40, 0x3b, 0x3d, 0x42, 0x49, 0x4c, 0x47, 0x4b, 0x49, 0x41, 0x3c, 0x40, 0x45, 0x46, 0x4b, 0x4b, 0x52, 0x4c, 0x40, 0x4e, 0x62, 0x5f, 0x57, 0x61, 0x70, 0x75, 0x6b, 0x62, 0x59, 0x4e, 0x44, 0x41, 0x4d, 0x5f, 0x6a, 0x80, 0xa7, 0xc7, 0xdd, 0xd1, 0xa3, 0x59, 0x33, 0x35, 0x36, 0x3b, 0x48, 0x3e, 0x3b, 0x3c, 0x36, 0x2b, 0x2f, 0x3c, 0x3d, 0x40, 0x3f, 0x39, 0x33, 0x33, 0x4d, 0x72, 0x9c, 0xa9, 0xbd, 0xd2, 0xdc, 0xc6, 0xa0, 0x89, 0xac, 0xd1, 0xe5, 0xd5, 0xa4, 0x78, 0x70, 0x6f, 0x58, 0x4b, 0x44, 0x49, 0x4f, 0x4b, 0x44, 0x41, 0x3d, 0x41, 0x40, 0x3e, 0x45, 0x53, 0x59, 0x56, 0x69, 0x6a, 0x5d, 0x48, 0x41, 0x48, 0x49, 0x40, 0x35, 0x2f, 0x34, 0x3e, 0x41, 0x43, 0x46, 0x45, 0x43, 0x4b, 0x55, 0x55, 0x4c, 0x4b, 0x54, 0x5d, 0x49, 0x68, 0x86, 0x8f, 0x90, 0x9b, 0xa9, 0xb1, 0xb8, 0xb8, 0xb7, 0xb9, 0xba, 0xb4, 0xb4, 0xc0, 0xc0, 0xb1, 0x9d, 0x87, 0x74, 0x68, 0x66, 0x66, 0x65, 0x67, 0x68, 0x64, 0x5f, 0x5e, 0x64, 0x6a, 0x71, 0x6f, 0x6a, 0x67, 0x69, 0x6a, 0x66, 0x61, 0x5e, 0x64, 0x6e, 0x77, 0x7b, 0x79, 0x73, 0x6f, 0x75, 0x79, 0x7d, 0x80, 0x85, 0x8d, 0x92, 0x94, 0x99, 0x9d, 0xa0, 0xa1, 0xa2, 0xa5, 0xac, 0xb2, 0xaf, 0xb1, 0xb0, 0xac, 0xa6, 0xa0, 0x97, 0x90, 0x8d, 0x8d, 0x8b, 0x85, 0x7d, 0x7d, 0x8a, 0x98, 0xa9, 0xb2, 0xb1, 0xad, 0xb1, 0xb3, 0xae, 0xab, 0xa4, 0x99, 0x89, 0x7a, 0x6d, 0x61, 0x53, 0x49, 0x42, 0x3a, 0x33, 0x38, 0x44, 0x4c, 0x4b, 0x46, 0x43, 0x40, 0x4d, 0x66, 0x76, 0x79, 0x72, 0x65, 0x66, 0x60, 0x5f, 0x66, 0x6e, 0x73, 0x75, 0x78, 0x6d, 0x57, 0x4a, 0x4e, 0x5a, 0x68, 0x6b, 0x63, 0x63, 0x64, 0x66, 0x70, 0x86, 0x98, 0x95, 0x87, 0x99, 0xab, 0xb5, 0xba, 0xba, 0xae, 0xa4, 0xa7, 0xb5, 0xb4, 0xa6, 0x97, 0x7e, 0x6a, 0x6b, 0x65, 0x5f, 0x5d, 0x5e, 0x64, 0x6c, 0x72, 0x77, 0x7a, 0x7a, 0x7e, 0x83, 0x85, 0x84, 0x80, 0x7d, 0x7d, 0x7e, 0x84, 0x86, 0x88, 0x8d, 0x8d, 0x8d, 0x92, 0x8b, 0x8d, 0x8a, 0x89, 0x8c, 0x89, 0x87, 0x8e, 0x94, 0x93, 0x93, 0x92, 0x91, 0x8e, 0x8c, 0x8a, 0x8d, 0x90, 0x91, 0x8f, 0x8e, 0x8b, 0x85, 0x7f, 0x7d, 0x83, 0x7e, 0x7a, 0x7e, 0x7b, 0x77, 0x7f, 0x7c, 0x7d, 0x7b, 0x7b, 0x7e, 0x7a, 0x76, 0x7a, 0x75, 0x7b, 0x79, 0x6f, 0x6c, 0x73, 0x75, 0x6f, 0x6e, 0x6f, 0x70, 0x70, 0x6d, 0x68, 0x62, 0x5f, 0x58, 0x5a, 0x5d, 0x5f, 0x5c, 0x54, 0x4a, 0x42, 0x48, 0x45, 0x40, 0x3d, 0x3b, 0x3a, 0x39, 0x38, 0x3a, 0x38, 0x36, 0x35, 0x36, 0x38, 0x38, 0x37, 0x37, 0x3a, 0x3f, 0x46, 0x4d, 0x52, 0x56, 0x58, 0x5c, 0x5c, 0x5d, 0x5e, 0x5f, 0x62, 0x6b, 0x74, 0x7b, 0x7f, 0x7d, 0x79, 0x77, 0x70, 0x67, 0x66, 0x6b, 0x83, 0x9a, 0x96, 0x7a, 0x67, 0x73, 0x8b, 0x81, 0x70, 0x5c, 0x58, 0x65, 0x74, 0x78, 0x75, 0x5f, 0x56, 0x4e, 0x4d, 0x51, 0x53, 0x54, 0x57, 0x58, 0x52, 0x4b, 0x55, 0x87, 0xaf, 0xc4, 0xaa, 0x85, 0x6d, 0x65, 0x63, 0x64, 0x6e, 0x73, 0x7b, 0x7d, 0x7f, 0x80, 0x7e, 0x7d, 0x7b, 0x76, 0x71, 0x73, 0x75, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x7b, 0x79, 0x79, 0x7f, 0x87, 0x8a, 0x87, 0x81, 0x79, 0x7b, 0x7c, 0x77, 0x6c, 0x60, 0x5b, 0x5c, 0x68, 0x72, 0x80, 0x8b, 0x8f, 0x8e, 0x8d, 0x8c, 0x87, 0x86, 0x87, 0x82, 0x6e, 0x57, 0x52, 0x5b, 0x71, 0x7d, 0x85, 0x82, 0x7a, 0x7d, 0x8c, 0x9b, 0xa1, 0x8e, 0x75, 0x67, 0x68, 0x70, 0x75, 0x76, 0x6c, 0x62, 0x4c, 0x3e, 0x3f, 0x3e, 0x47, 0x5d, 0x5f, 0x55, 0x46, 0x41, 0x31, 0x38, 0x39, 0x3b, 0x32, 0x2d, 0x27, 0x24, 0x25, 0x25, 0x24, 0x23, 0x1c, 0x17, 0x19, 0x2d, 0x4a, 0x5c, 0x56, 0x46, 0x43, 0x3f, 0x38, 0x30, 0x28, 0x1f, 0x18, 0x14, 0x17, 0x17, 0x15, 0x13, 0x14, 0x16, 0x16, 0x14, 0x0e, 0x0d, 0x14, 0x20, 0x1e, 0x13, 0x12, 0x1b, 0x13, 0x1b, 0x23, 0x24, 0x21, 0x20, 0x25, 0x2a, 0x36, 0x32, 0x49, 0x75, 0x82, 0x63, 0x4f, 0x5a, 0x74, 0x86, 0x98, 0x9b, 0x93, 0x8f, 0x96, 0xa0, 0xa4, 0x8d, 0x76, 0x60, 0x4b, 0x46, 0x50, 0x5a, 0x75, 0x76, 0x77, 0x77, 0x77, 0x74, 0x6e, 0x68, 0x55, 0x58, 0x5b, 0x5b, 0x5d, 0x60, 0x61, 0x5f, 0x5f, 0x5f, 0x5e, 0x5c, 0x5a, 0x56, 0x4b, 0x41, 0x38, 0x37, 0x41, 0x4e, 0x54, 0x58, 0x5b, 0x58, 0x58, 0x56, 0x53, 0x51, 0x51, 0x52, 0x52, 0x52, 0x53, 0x54, 0x55, 0x55, 0x57, 0x5a, 0x5a, 0x57, 0x48, 0x44, 0x3f, 0x3e, 0x41, 0x47, 0x4e, 0x53, 0x5e, 0x62, 0x5c, 0x4c, 0x43, 0x42, 0x3e, 0x36, 0x42, 0x44, 0x48, 0x47, 0x44, 0x45, 0x43, 0x3a, 0x4c, 0x48, 0x47, 0x42, 0x3a, 0x3b, 0x3f, 0x3c, 0x3d, 0x3b, 0x42, 0x46, 0x43, 0x53, 0x7b, 0x9c, 0xb1, 0xa5, 0x87, 0x53, 0x36, 0x31, 0x2f, 0x37, 0x37, 0x35, 0x30, 0x2c, 0x2b, 0x2e, 0x31, 0x33, 0x34, 0x3a, 0x3b, 0x3a, 0x39, 0x38, 0x43, 0x56, 0x50, 0x57, 0x68, 0x8e, 0xbd, 0xd1, 0xc5, 0xb5, 0xbb, 0xd4, 0xdd, 0xd6, 0xbe, 0xa2, 0x8f, 0x7a, 0x51, 0x58, 0x60, 0x6a, 0x74, 0x74, 0x60, 0x4a, 0x50, 0x63, 0x6e, 0x62, 0x4c, 0x40, 0x43, 0x48, 0x56, 0x5f, 0x5b, 0x4d, 0x47, 0x4a, 0x41, 0x30, 0x31, 0x29, 0x2a, 0x31, 0x33, 0x38, 0x40, 0x43, 0x4d, 0x4f, 0x55, 0x55, 0x4e, 0x51, 0x57, 0x56, 0x6d, 0x7e, 0x8a, 0x86, 0x7f, 0x7f, 0x82, 0x82, 0x8b, 0x97, 0x9e, 0xa6, 0xb3, 0xbb, 0xbd, 0xc1, 0xb0, 0xa4, 0x95, 0x7f, 0x67, 0x62, 0x6b, 0x71, 0x6b, 0x6c, 0x6a, 0x64, 0x5f, 0x61, 0x6a, 0x73, 0x70, 0x6e, 0x69, 0x63, 0x60, 0x5e, 0x57, 0x51, 0x52, 0x5b, 0x6a, 0x79, 0x80, 0x7b, 0x73, 0x6e, 0x74, 0x77, 0x7c, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a, 0x7f, 0x80, 0x82, 0x82, 0x82, 0x84, 0x87, 0x8a, 0x8f, 0x92, 0x96, 0x97, 0x97, 0x96, 0x92, 0x8c, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x8a, 0x8e, 0x90, 0x9a, 0x9d, 0x9c, 0xa1, 0xa2, 0xa2, 0xa4, 0xa1, 0xa0, 0x97, 0x86, 0x72, 0x5e, 0x4d, 0x43, 0x3d, 0x36, 0x32, 0x3b, 0x49, 0x51, 0x4d, 0x46, 0x43, 0x44, 0x5b, 0x7c, 0x8e, 0x90, 0x87, 0x7c, 0x73, 0x65, 0x63, 0x74, 0x86, 0x89, 0x81, 0x7a, 0x68, 0x5d, 0x57, 0x57, 0x5a, 0x63, 0x6a, 0x67, 0x67, 0x6b, 0x71, 0x7a, 0x8a, 0x98, 0x9a, 0x95, 0xa2, 0xab, 0xb2, 0xb4, 0xaf, 0xa0, 0x93, 0x93, 0x97, 0xa7, 0xa3, 0x93, 0x78, 0x64, 0x65, 0x63, 0x63, 0x63, 0x65, 0x6b, 0x73, 0x79, 0x7c, 0x7c, 0x80, 0x81, 0x83, 0x81, 0x7d, 0x7b, 0x7f, 0x86, 0x89, 0x8d, 0x8b, 0x8b, 0x90, 0x91, 0x91, 0x96, 0x8d, 0x8f, 0x8d, 0x8f, 0x93, 0x91, 0x8e, 0x93, 0x94, 0x93, 0x93, 0x93, 0x93, 0x90, 0x8d, 0x89, 0x8e, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x87, 0x82, 0x7f, 0x82, 0x81, 0x7f, 0x7f, 0x7c, 0x79, 0x7c, 0x7b, 0x7d, 0x7a, 0x7a, 0x7d, 0x79, 0x76, 0x7a, 0x7b, 0x7d, 0x7a, 0x72, 0x71, 0x76, 0x77, 0x73, 0x6a, 0x6b, 0x6d, 0x6c, 0x69, 0x65, 0x62, 0x61, 0x64, 0x61, 0x5f, 0x5d, 0x5c, 0x5a, 0x56, 0x53, 0x4e, 0x4a, 0x43, 0x3f, 0x3d, 0x3c, 0x3a, 0x38, 0x37, 0x39, 0x3a, 0x39, 0x39, 0x3a, 0x37, 0x34, 0x39, 0x39, 0x3a, 0x3c, 0x41, 0x47, 0x4d, 0x50, 0x59, 0x5b, 0x5e, 0x61, 0x62, 0x65, 0x6d, 0x76, 0x7c, 0x7e, 0x7b, 0x79, 0x78, 0x6f, 0x69, 0x6c, 0x80, 0x90, 0x9d, 0x95, 0x7f, 0x71, 0x79, 0x8a, 0x87, 0x71, 0x5b, 0x57, 0x66, 0x75, 0x78, 0x74, 0x5d, 0x52, 0x4a, 0x4c, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4d, 0x4b, 0x58, 0x8c, 0xb1, 0xc2, 0xaa, 0x82, 0x69, 0x63, 0x61, 0x63, 0x6c, 0x6f, 0x75, 0x77, 0x77, 0x75, 0x72, 0x71, 0x72, 0x70, 0x6c, 0x75, 0x73, 0x6f, 0x67, 0x5f, 0x59, 0x57, 0x57, 0x4e, 0x4b, 0x4c, 0x51, 0x54, 0x52, 0x52, 0x55, 0x5d, 0x5c, 0x5d, 0x5d, 0x5a, 0x58, 0x5b, 0x60, 0x6e, 0x74, 0x7e, 0x86, 0x8a, 0x8b, 0x8f, 0x93, 0x8a, 0x88, 0x87, 0x81, 0x73, 0x65, 0x67, 0x71, 0x71, 0x76, 0x7b, 0x7c, 0x80, 0x88, 0x92, 0x97, 0x97, 0x8e, 0x7c, 0x68, 0x5f, 0x63, 0x6d, 0x73, 0x6c, 0x56, 0x3e, 0x37, 0x3e, 0x46, 0x57, 0x6c, 0x5e, 0x52, 0x3d, 0x37, 0x2e, 0x42, 0x4f, 0x57, 0x57, 0x50, 0x44, 0x37, 0x2c, 0x27, 0x26, 0x27, 0x18, 0x1d, 0x29, 0x3b, 0x4a, 0x4e, 0x45, 0x3c, 0x40, 0x3a, 0x2f, 0x25, 0x1d, 0x18, 0x15, 0x15, 0x16, 0x17, 0x16, 0x13, 0x12, 0x13, 0x12, 0x11, 0x1d, 0x11, 0x10, 0x1a, 0x17, 0x0f, 0x21, 0x40, 0x74, 0x6c, 0x5d, 0x4f, 0x46, 0x46, 0x4d, 0x54, 0x63, 0x87, 0x9a, 0x85, 0x5d, 0x44, 0x4f, 0x69, 0x7e, 0x8f, 0x94, 0x8b, 0x8f, 0x9f, 0xa0, 0x94, 0x73, 0x59, 0x4e, 0x4f, 0x46, 0x41, 0x58, 0x75, 0x85, 0x77, 0x6b, 0x68, 0x64, 0x5e, 0x5c, 0x60, 0x54, 0x57, 0x5a, 0x5c, 0x5e, 0x61, 0x62, 0x60, 0x60, 0x61, 0x61, 0x5f, 0x5a, 0x52, 0x46, 0x3a, 0x37, 0x39, 0x47, 0x55, 0x58, 0x59, 0x5a, 0x57, 0x56, 0x54, 0x52, 0x52, 0x52, 0x53, 0x53, 0x52, 0x51, 0x53, 0x54, 0x54, 0x57, 0x5b, 0x5b, 0x58, 0x4a, 0x45, 0x3f, 0x3f, 0x44, 0x4c, 0x52, 0x55, 0x4f, 0x53, 0x52, 0x4b, 0x46, 0x45, 0x44, 0x41, 0x3d, 0x4a, 0x4a, 0x40, 0x3a, 0x38, 0x41, 0x53, 0x66, 0x6b, 0x6b, 0x5c, 0x4e, 0x4f, 0x4a, 0x3a, 0x36, 0x38, 0x45, 0x4e, 0x4a, 0x48, 0x52, 0x5a, 0x60, 0x5a, 0x50, 0x3c, 0x35, 0x35, 0x31, 0x3b, 0x44, 0x42, 0x3a, 0x30, 0x2b, 0x2e, 0x30, 0x2e, 0x33, 0x31, 0x2b, 0x2d, 0x39, 0x3f, 0x3c, 0x3d, 0x44, 0x40, 0x3e, 0x51, 0x76, 0x93, 0xa5, 0xb2, 0xb7, 0xc5, 0xbf, 0xb2, 0xa7, 0x9c, 0x8c, 0x6f, 0x46, 0x47, 0x47, 0x48, 0x50, 0x57, 0x51, 0x45, 0x3a, 0x50, 0x62, 0x5b, 0x42, 0x32, 0x38, 0x46, 0x3b, 0x44, 0x49, 0x4a, 0x4d, 0x4f, 0x46, 0x39, 0x36, 0x2d, 0x2b, 0x2e, 0x2c, 0x2e, 0x37, 0x3b, 0x4a, 0x46, 0x4b, 0x50, 0x4f, 0x55, 0x53, 0x44, 0x55, 0x7b, 0xa6, 0xb1, 0x97, 0x76, 0x6d, 0x74, 0x82, 0x83, 0x7a, 0x75, 0x80, 0x8d, 0x91, 0x93, 0x96, 0x89, 0x80, 0x73, 0x65, 0x68, 0x74, 0x75, 0x6c, 0x6d, 0x6b, 0x66, 0x62, 0x64, 0x6e, 0x76, 0x72, 0x70, 0x6b, 0x63, 0x5c, 0x57, 0x4f, 0x49, 0x4a, 0x52, 0x62, 0x73, 0x7b, 0x79, 0x74, 0x72, 0x6b, 0x6b, 0x70, 0x76, 0x76, 0x71, 0x6f, 0x71, 0x71, 0x72, 0x73, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x78, 0x7b, 0x7f, 0x81, 0x83, 0x84, 0x81, 0x7c, 0x76, 0x74, 0x71, 0x6e, 0x6d, 0x6c, 0x6b, 0x69, 0x6e, 0x73, 0x72, 0x73, 0x79, 0x7b, 0x7c, 0x80, 0x88, 0x8c, 0x8a, 0x7e, 0x6c, 0x5a, 0x4a, 0x3f, 0x38, 0x35, 0x35, 0x3d, 0x4a, 0x50, 0x4c, 0x46, 0x44, 0x4a, 0x68, 0x8e, 0x9f, 0x9a, 0x8d, 0x81, 0x7c, 0x77, 0x78, 0x83, 0x90, 0x91, 0x87, 0x7c, 0x6a, 0x6d, 0x71, 0x6a, 0x60, 0x67, 0x76, 0x7c, 0x85, 0x88, 0x8f, 0x96, 0x9c, 0xa2, 0xa5, 0xa7, 0xb3, 0xb4, 0xb6, 0xb9, 0xb4, 0xa8, 0xa3, 0xa6, 0xb5, 0xc9, 0xbf, 0xa0, 0x7d, 0x67, 0x67, 0x65, 0x6b, 0x6c, 0x6e, 0x72, 0x76, 0x7c, 0x7f, 0x80, 0x83, 0x81, 0x80, 0x7f, 0x7d, 0x7e, 0x85, 0x8e, 0x8f, 0x93, 0x91, 0x8e, 0x8f, 0x8f, 0x90, 0x97, 0x92, 0x92, 0x8e, 0x90, 0x95, 0x93, 0x8f, 0x93, 0x96, 0x97, 0x98, 0x96, 0x93, 0x8f, 0x8b, 0x89, 0x8f, 0x90, 0x90, 0x8e, 0x8d, 0x8d, 0x8a, 0x86, 0x81, 0x7f, 0x82, 0x82, 0x7d, 0x7c, 0x7d, 0x7b, 0x7d, 0x7e, 0x7b, 0x7a, 0x7c, 0x77, 0x73, 0x78, 0x7d, 0x7c, 0x79, 0x76, 0x77, 0x79, 0x78, 0x75, 0x71, 0x73, 0x74, 0x73, 0x70, 0x6e, 0x6e, 0x6f, 0x6d, 0x67, 0x5f, 0x5b, 0x5b, 0x5d, 0x5f, 0x5f, 0x52, 0x4e, 0x49, 0x46, 0x44, 0x42, 0x3e, 0x3b, 0x3a, 0x3d, 0x3d, 0x3b, 0x3a, 0x3b, 0x3a, 0x37, 0x38, 0x37, 0x37, 0x37, 0x3a, 0x3f, 0x44, 0x47, 0x51, 0x55, 0x5c, 0x62, 0x64, 0x67, 0x6f, 0x78, 0x7d, 0x7e, 0x7c, 0x7c, 0x78, 0x6b, 0x65, 0x6c, 0x8d, 0x9c, 0xa7, 0xa1, 0x94, 0x90, 0x99, 0xa3, 0x96, 0x80, 0x69, 0x63, 0x6d, 0x76, 0x75, 0x6f, 0x5b, 0x51, 0x4c, 0x4f, 0x52, 0x50, 0x50, 0x52, 0x4a, 0x4e, 0x4c, 0x5a, 0x91, 0xb4, 0xbf, 0xa6, 0x7f, 0x66, 0x60, 0x60, 0x64, 0x6c, 0x6d, 0x71, 0x77, 0x76, 0x71, 0x6b, 0x6a, 0x6b, 0x6a, 0x68, 0x74, 0x6f, 0x64, 0x56, 0x49, 0x42, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x46, 0x47, 0x48, 0x49, 0x43, 0x45, 0x48, 0x4b, 0x4c, 0x4d, 0x53, 0x59, 0x5d, 0x5c, 0x59, 0x58, 0x58, 0x5c, 0x62, 0x67, 0x70, 0x78, 0x83, 0x85, 0x7b, 0x6c, 0x61, 0x5e, 0x69, 0x6e, 0x73, 0x77, 0x7e, 0x85, 0x88, 0x87, 0x8e, 0x84, 0x74, 0x69, 0x6b, 0x6f, 0x66, 0x59, 0x4e, 0x44, 0x40, 0x45, 0x48, 0x4d, 0x55, 0x57, 0x4b, 0x47, 0x3d, 0x3a, 0x2f, 0x40, 0x4b, 0x52, 0x42, 0x3f, 0x3a, 0x34, 0x2e, 0x29, 0x27, 0x25, 0x23, 0x29, 0x35, 0x41, 0x42, 0x3a, 0x34, 0x32, 0x36, 0x2f, 0x25, 0x1d, 0x17, 0x15, 0x14, 0x14, 0x13, 0x17, 0x19, 0x17, 0x15, 0x15, 0x16, 0x15, 0x0f, 0x1c, 0x1b, 0x17, 0x35, 0x6a, 0x86, 0x83, 0x3c, 0x2f, 0x24, 0x28, 0x40, 0x61, 0x7d, 0x8d, 0x9a, 0x91, 0x73, 0x4b, 0x30, 0x2f, 0x4c, 0x70, 0x82, 0x8d, 0x95, 0x9b, 0xa6, 0xa9, 0x90, 0x70, 0x4a, 0x5a, 0x5a, 0x40, 0x3b, 0x5e, 0x7c, 0x7c, 0x6a, 0x6c, 0x6a, 0x61, 0x58, 0x54, 0x52, 0x50, 0x53, 0x56, 0x5a, 0x5b, 0x5e, 0x61, 0x62, 0x61, 0x62, 0x64, 0x65, 0x62, 0x5c, 0x51, 0x43, 0x37, 0x37, 0x3c, 0x4b, 0x59, 0x5a, 0x59, 0x59, 0x56, 0x53, 0x52, 0x51, 0x51, 0x52, 0x52, 0x52, 0x51, 0x4f, 0x52, 0x54, 0x54, 0x57, 0x5c, 0x5d, 0x59, 0x50, 0x48, 0x3f, 0x3e, 0x45, 0x4d, 0x52, 0x52, 0x54, 0x55, 0x56, 0x53, 0x4b, 0x43, 0x40, 0x42, 0x41, 0x45, 0x3d, 0x43, 0x5f, 0x72, 0x81, 0x9a, 0xa8, 0xa6, 0x95, 0x7d, 0x7b, 0x8e, 0x88, 0x69, 0x43, 0x38, 0x37, 0x3e, 0x43, 0x4b, 0x53, 0x55, 0x4e, 0x48, 0x3d, 0x2a, 0x2a, 0x31, 0x2d, 0x33, 0x3a, 0x35, 0x33, 0x33, 0x30, 0x2c, 0x2e, 0x34, 0x3b, 0x3e, 0x37, 0x2f, 0x32, 0x36, 0x39, 0x3c, 0x38, 0x3e, 0x45, 0x4f, 0x55, 0x58, 0x6a, 0x85, 0x99, 0xb6, 0xbf, 0xbd, 0xb8, 0xb2, 0x9f, 0x7d, 0x4c, 0x41, 0x3a, 0x3c, 0x3c, 0x36, 0x33, 0x34, 0x3a, 0x3b, 0x3e, 0x3f, 0x3c, 0x36, 0x34, 0x35, 0x3e, 0x44, 0x4e, 0x58, 0x5b, 0x53, 0x46, 0x3b, 0x3b, 0x36, 0x3b, 0x41, 0x3b, 0x36, 0x34, 0x32, 0x3d, 0x3f, 0x4b, 0x4e, 0x48, 0x4f, 0x55, 0x4c, 0x47, 0x5c, 0x7e, 0x94, 0x8c, 0x7d, 0x8b, 0xa6, 0xad, 0x9b, 0x77, 0x5f, 0x63, 0x72, 0x7d, 0x84, 0x7d, 0x6c, 0x65, 0x65, 0x67, 0x73, 0x79, 0x6f, 0x6c, 0x6f, 0x6f, 0x6a, 0x64, 0x62, 0x67, 0x6d, 0x78, 0x76, 0x6f, 0x65, 0x5d, 0x58, 0x54, 0x4f, 0x4d, 0x50, 0x5a, 0x66, 0x6c, 0x6b, 0x6b, 0x6e, 0x78, 0x70, 0x6c, 0x6c, 0x65, 0x59, 0x56, 0x5a, 0x5e, 0x5d, 0x5d, 0x5f, 0x63, 0x65, 0x66, 0x65, 0x69, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x68, 0x63, 0x5a, 0x5e, 0x61, 0x5f, 0x5d, 0x5e, 0x5e, 0x5e, 0x5d, 0x5c, 0x56, 0x55, 0x5d, 0x5f, 0x5e, 0x62, 0x65, 0x6a, 0x6b, 0x66, 0x5e, 0x56, 0x4c, 0x43, 0x40, 0x3f, 0x3f, 0x44, 0x4a, 0x4c, 0x48, 0x43, 0x44, 0x4c, 0x6c, 0x93, 0x9f, 0x93, 0x80, 0x72, 0x80, 0x89, 0x8f, 0x8c, 0x89, 0x89, 0x85, 0x7f, 0x7b, 0x7d, 0x7e, 0x78, 0x73, 0x7e, 0x8c, 0x8d, 0x98, 0x9a, 0x9f, 0xa2, 0xa2, 0xa0, 0xa3, 0xa8, 0xa2, 0x9d, 0x9e, 0xa3, 0xa2, 0x9c, 0x9f, 0xa9, 0xb8, 0xb8, 0x97, 0x76, 0x69, 0x69, 0x6e, 0x67, 0x6d, 0x70, 0x72, 0x73, 0x74, 0x78, 0x7d, 0x80, 0x83, 0x80, 0x80, 0x84, 0x86, 0x87, 0x8d, 0x94, 0x8e, 0x96, 0x97, 0x93, 0x92, 0x8e, 0x8f, 0x97, 0x98, 0x96, 0x8f, 0x8e, 0x92, 0x90, 0x8b, 0x8e, 0x9b, 0x9d, 0x9e, 0x9a, 0x92, 0x8b, 0x88, 0x87, 0x90, 0x90, 0x8e, 0x8b, 0x8a, 0x8c, 0x8b, 0x89, 0x85, 0x7f, 0x84, 0x85, 0x7d, 0x7e, 0x83, 0x7e, 0x7c, 0x7e, 0x7b, 0x7c, 0x7f, 0x7c, 0x7a, 0x7f, 0x7f, 0x7c, 0x7a, 0x7c, 0x7e, 0x7e, 0x7b, 0x78, 0x77, 0x78, 0x78, 0x74, 0x6f, 0x6c, 0x6c, 0x6d, 0x66, 0x64, 0x64, 0x65, 0x66, 0x64, 0x5e, 0x5a, 0x56, 0x53, 0x51, 0x4f, 0x4f, 0x4c, 0x47, 0x42, 0x3d, 0x3e, 0x3c, 0x36, 0x34, 0x38, 0x3b, 0x3c, 0x37, 0x36, 0x36, 0x36, 0x38, 0x3b, 0x3f, 0x41, 0x46, 0x4c, 0x56, 0x5e, 0x62, 0x65, 0x6d, 0x76, 0x80, 0x7f, 0x7d, 0x7e, 0x77, 0x65, 0x5e, 0x68, 0x71, 0x86, 0x95, 0x8f, 0x83, 0x81, 0x8b, 0x94, 0x8b, 0x7a, 0x6a, 0x68, 0x71, 0x78, 0x76, 0x71, 0x5c, 0x53, 0x4c, 0x4d, 0x4d, 0x4b, 0x4d, 0x53, 0x4d, 0x50, 0x4d, 0x5b, 0x94, 0xb5, 0xbe, 0xa3, 0x7c, 0x63, 0x5e, 0x60, 0x66, 0x6f, 0x6f, 0x72, 0x7b, 0x78, 0x70, 0x68, 0x64, 0x65, 0x65, 0x63, 0x6d, 0x67, 0x5c, 0x4f, 0x45, 0x42, 0x46, 0x4b, 0x46, 0x4c, 0x4d, 0x49, 0x49, 0x4e, 0x4f, 0x4b, 0x55, 0x58, 0x5b, 0x5b, 0x53, 0x4b, 0x48, 0x4b, 0x54, 0x53, 0x50, 0x4d, 0x4b, 0x4c, 0x4c, 0x4b, 0x4b, 0x4f, 0x52, 0x51, 0x4f, 0x4f, 0x51, 0x53, 0x5e, 0x67, 0x6e, 0x6d, 0x6a, 0x6a, 0x6c, 0x6b, 0x75, 0x80, 0x83, 0x7a, 0x71, 0x6b, 0x61, 0x55, 0x49, 0x46, 0x4a, 0x49, 0x42, 0x47, 0x4c, 0x43, 0x40, 0x3e, 0x35, 0x32, 0x27, 0x38, 0x43, 0x49, 0x40, 0x36, 0x2a, 0x26, 0x2a, 0x30, 0x33, 0x32, 0x28, 0x26, 0x2b, 0x34, 0x33, 0x2a, 0x27, 0x2a, 0x27, 0x23, 0x1e, 0x1a, 0x18, 0x17, 0x15, 0x14, 0x18, 0x1d, 0x1f, 0x1c, 0x17, 0x16, 0x15, 0x14, 0x1a, 0x19, 0x32, 0x62, 0x83, 0x74, 0x46, 0x21, 0x39, 0x4b, 0x65, 0x7d, 0x8a, 0x8d, 0x88, 0x84, 0x67, 0x4f, 0x30, 0x2b, 0x44, 0x5f, 0x71, 0x7c, 0x89, 0x8c, 0x97, 0xa2, 0x9c, 0x83, 0x6a, 0x5d, 0x6c, 0x50, 0x3c, 0x3e, 0x4d, 0x60, 0x6b, 0x6b, 0x69, 0x62, 0x5a, 0x56, 0x50, 0x4b, 0x4b, 0x4f, 0x4c, 0x51, 0x57, 0x5c, 0x5f, 0x60, 0x5f, 0x5e, 0x60, 0x61, 0x63, 0x61, 0x57, 0x48, 0x3d, 0x38, 0x3d, 0x43, 0x4d, 0x55, 0x59, 0x59, 0x57, 0x55, 0x55, 0x52, 0x50, 0x50, 0x53, 0x54, 0x53, 0x52, 0x55, 0x54, 0x54, 0x56, 0x57, 0x58, 0x58, 0x57, 0x52, 0x4a, 0x42, 0x41, 0x43, 0x44, 0x44, 0x45, 0x50, 0x55, 0x56, 0x50, 0x4a, 0x48, 0x47, 0x46, 0x41, 0x40, 0x45, 0x51, 0x77, 0x9f, 0xb0, 0xbe, 0xb7, 0xc1, 0xb5, 0x98, 0x8b, 0x93, 0x90, 0x80, 0x53, 0x35, 0x2c, 0x37, 0x3c, 0x40, 0x44, 0x42, 0x3b, 0x32, 0x2a, 0x2b, 0x33, 0x3a, 0x3a, 0x36, 0x44, 0x4a, 0x4a, 0x3f, 0x33, 0x32, 0x39, 0x41, 0x4e, 0x49, 0x41, 0x39, 0x36, 0x3a, 0x42, 0x49, 0x44, 0x46, 0x49, 0x4d, 0x52, 0x57, 0x5c, 0x5f, 0x6f, 0x86, 0x96, 0x91, 0x88, 0x84, 0x7e, 0x75, 0x59, 0x4b, 0x42, 0x40, 0x39, 0x2e, 0x2c, 0x32, 0x32, 0x37, 0x37, 0x39, 0x3c, 0x38, 0x33, 0x35, 0x42, 0x4d, 0x51, 0x5a, 0x59, 0x4e, 0x46, 0x36, 0x39, 0x3f, 0x47, 0x4a, 0x48, 0x43, 0x40, 0x3e, 0x41, 0x4e, 0x56, 0x54, 0x53, 0x57, 0x56, 0x50, 0x47, 0x48, 0x5e, 0x5c, 0x6a, 0x70, 0x84, 0x96, 0x94, 0x89, 0x74, 0x61, 0x58, 0x5a, 0x5f, 0x60, 0x64, 0x53, 0x54, 0x61, 0x68, 0x72, 0x7d, 0x7c, 0x7c, 0x77, 0x74, 0x72, 0x6d, 0x67, 0x65, 0x68, 0x6e, 0x76, 0x7c, 0x7b, 0x79, 0x74, 0x68, 0x5c, 0x5a, 0x51, 0x50, 0x5f, 0x6e, 0x72, 0x71, 0x71, 0x70, 0x74, 0x74, 0x6a, 0x59, 0x4d, 0x4b, 0x4d, 0x4e, 0x4b, 0x46, 0x42, 0x42, 0x45, 0x49, 0x4b, 0x4a, 0x4a, 0x4c, 0x51, 0x53, 0x51, 0x51, 0x52, 0x49, 0x4b, 0x4d, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x40, 0x3f, 0x3d, 0x3c, 0x3d, 0x40, 0x44, 0x46, 0x44, 0x43, 0x45, 0x4d, 0x52, 0x50, 0x4b, 0x48, 0x45, 0x3f, 0x3e, 0x42, 0x47, 0x47, 0x45, 0x46, 0x43, 0x64, 0x83, 0x8f, 0x8d, 0x7f, 0x70, 0x6a, 0x7a, 0x73, 0x78, 0x84, 0x88, 0x85, 0x7d, 0x74, 0x71, 0x70, 0x6e, 0x6c, 0x6c, 0x6f, 0x73, 0x77, 0x83, 0x84, 0x85, 0x87, 0x89, 0x8d, 0x92, 0x95, 0x95, 0x96, 0x94, 0x8e, 0x88, 0x88, 0x8b, 0x8f, 0x8c, 0x90, 0x82, 0x72, 0x6f, 0x6a, 0x68, 0x70, 0x73, 0x70, 0x71, 0x76, 0x7a, 0x7c, 0x7e, 0x82, 0x86, 0x85, 0x83, 0x82, 0x84, 0x88, 0x8e, 0x92, 0x98, 0x9c, 0x9b, 0x94, 0x8e, 0x8f, 0x93, 0x94, 0x98, 0x9b, 0x9a, 0x95, 0x92, 0x94, 0x95, 0x94, 0x99, 0x97, 0x99, 0x9c, 0x97, 0x8b, 0x85, 0x87, 0x8a, 0x8c, 0x8e, 0x8e, 0x8c, 0x88, 0x86, 0x85, 0x86, 0x85, 0x86, 0x89, 0x89, 0x85, 0x81, 0x80, 0x85, 0x7b, 0x7e, 0x81, 0x7e, 0x83, 0x86, 0x7d, 0x7b, 0x7d, 0x80, 0x81, 0x80, 0x7e, 0x7d, 0x7d, 0x79, 0x7b, 0x7b, 0x75, 0x6f, 0x6b, 0x68, 0x65, 0x66, 0x6a, 0x6c, 0x66, 0x5c, 0x55, 0x57, 0x5c, 0x5f, 0x59, 0x52, 0x4f, 0x4e, 0x4c, 0x47, 0x43, 0x40, 0x3a, 0x37, 0x39, 0x3c, 0x3d, 0x3d, 0x3d, 0x3b, 0x3b, 0x39, 0x38, 0x37, 0x3a, 0x3e, 0x41, 0x47, 0x49, 0x4f, 0x58, 0x5f, 0x66, 0x6e, 0x75, 0x7d, 0x7f, 0x83, 0x7e, 0x71, 0x6a, 0x64, 0x5a, 0x6d, 0x87, 0x92, 0x8b, 0x77, 0x6d, 0x7d, 0x88, 0x8c, 0x6d, 0x66, 0x71, 0x73, 0x78, 0x7b, 0x6f, 0x61, 0x51, 0x4c, 0x51, 0x50, 0x4f, 0x52, 0x55, 0x51, 0x50, 0x51, 0x5a, 0x96, 0xba, 0xbc, 0xa0, 0x79, 0x68, 0x5f, 0x62, 0x64, 0x69, 0x6e, 0x6e, 0x6e, 0x71, 0x6d, 0x6a, 0x6c, 0x6a, 0x67, 0x69, 0x6b, 0x61, 0x51, 0x43, 0x3d, 0x3e, 0x3f, 0x3d, 0x3e, 0x3f, 0x3f, 0x3e, 0x3e, 0x40, 0x45, 0x49, 0x4b, 0x50, 0x54, 0x51, 0x48, 0x40, 0x3f, 0x43, 0x4c, 0x4f, 0x51, 0x52, 0x51, 0x51, 0x52, 0x54, 0x55, 0x50, 0x50, 0x4f, 0x47, 0x44, 0x46, 0x43, 0x4c, 0x4a, 0x4b, 0x4d, 0x4b, 0x47, 0x48, 0x4c, 0x5d, 0x6c, 0x72, 0x6f, 0x6f, 0x6b, 0x5e, 0x56, 0x4b, 0x51, 0x48, 0x49, 0x4c, 0x46, 0x48, 0x47, 0x49, 0x38, 0x36, 0x3d, 0x2f, 0x2d, 0x3a, 0x2c, 0x2e, 0x24, 0x23, 0x28, 0x2b, 0x30, 0x33, 0x30, 0x26, 0x1f, 0x1b, 0x1b, 0x1c, 0x1a, 0x19, 0x1b, 0x18, 0x1b, 0x1a, 0x15, 0x17, 0x20, 0x27, 0x28, 0x25, 0x22, 0x23, 0x22, 0x1d, 0x1d, 0x1c, 0x15, 0x20, 0x50, 0x8d, 0x97, 0x63, 0x34, 0x37, 0x4e, 0x65, 0x77, 0x7f, 0x7e, 0x7f, 0x76, 0x5e, 0x4a, 0x3f, 0x3c, 0x53, 0x78, 0x7f, 0x6a, 0x64, 0x72, 0x8e, 0x99, 0x97, 0x9a, 0x85, 0x62, 0x59, 0x51, 0x3f, 0x37, 0x36, 0x45, 0x54, 0x5b, 0x5d, 0x60, 0x62, 0x5c, 0x52, 0x4a, 0x4a, 0x4e, 0x4d, 0x47, 0x4d, 0x51, 0x56, 0x5c, 0x5f, 0x60, 0x5f, 0x5f, 0x5a, 0x5b, 0x5d, 0x5a, 0x4f, 0x41, 0x39, 0x38, 0x44, 0x49, 0x51, 0x58, 0x5c, 0x5c, 0x5a, 0x59, 0x56, 0x55, 0x53, 0x54, 0x55, 0x55, 0x52, 0x50, 0x52, 0x52, 0x53, 0x55, 0x57, 0x57, 0x56, 0x54, 0x52, 0x4a, 0x44, 0x46, 0x4b, 0x50, 0x53, 0x55, 0x57, 0x58, 0x56, 0x51, 0x4f, 0x4d, 0x48, 0x41, 0x48, 0x48, 0x4f, 0x59, 0x7a, 0x9d, 0xac, 0xbb, 0xb5, 0xba, 0xb2, 0x9b, 0x8a, 0x8b, 0x95, 0x9a, 0x75, 0x4d, 0x2c, 0x27, 0x2d, 0x31, 0x34, 0x35, 0x2e, 0x2b, 0x2a, 0x2e, 0x37, 0x3e, 0x43, 0x44, 0x54, 0x56, 0x51, 0x44, 0x38, 0x33, 0x35, 0x38, 0x37, 0x37, 0x39, 0x3c, 0x41, 0x46, 0x49, 0x4a, 0x4c, 0x49, 0x48, 0x4c, 0x54, 0x5b, 0x5f, 0x5f, 0x75, 0x8d, 0xa1, 0x9f, 0x8f, 0x79, 0x60, 0x4c, 0x50, 0x4b, 0x47, 0x45, 0x42, 0x3d, 0x37, 0x34, 0x2b, 0x34, 0x39, 0x3f, 0x45, 0x41, 0x39, 0x39, 0x43, 0x51, 0x54, 0x54, 0x49, 0x3b, 0x3a, 0x33, 0x36, 0x3b, 0x42, 0x46, 0x47, 0x48, 0x4a, 0x4c, 0x54, 0x5b, 0x5d, 0x59, 0x5a, 0x60, 0x5f, 0x58, 0x4f, 0x43, 0x48, 0x40, 0x4b, 0x4c, 0x51, 0x57, 0x5a, 0x59, 0x58, 0x5a, 0x5b, 0x59, 0x55, 0x51, 0x5b, 0x59, 0x62, 0x70, 0x78, 0x7f, 0x85, 0x86, 0x83, 0x7e, 0x79, 0x78, 0x75, 0x71, 0x70, 0x72, 0x78, 0x7e, 0x83, 0x82, 0x7e, 0x79, 0x72, 0x6d, 0x65, 0x5a, 0x57, 0x62, 0x6f, 0x73, 0x70, 0x6e, 0x76, 0x79, 0x79, 0x71, 0x64, 0x5c, 0x5b, 0x5e, 0x57, 0x55, 0x50, 0x4c, 0x47, 0x43, 0x3f, 0x3d, 0x3a, 0x39, 0x3a, 0x3c, 0x3c, 0x38, 0x36, 0x36, 0x34, 0x36, 0x37, 0x38, 0x37, 0x36, 0x37, 0x37, 0x39, 0x38, 0x37, 0x36, 0x36, 0x38, 0x3a, 0x3b, 0x34, 0x34, 0x39, 0x43, 0x4a, 0x4a, 0x46, 0x43, 0x47, 0x42, 0x40, 0x44, 0x48, 0x49, 0x49, 0x4a, 0x4b, 0x6b, 0x83, 0x83, 0x75, 0x65, 0x5e, 0x61, 0x61, 0x62, 0x71, 0x81, 0x7f, 0x75, 0x6c, 0x65, 0x64, 0x62, 0x60, 0x5c, 0x59, 0x59, 0x5b, 0x5d, 0x5b, 0x5d, 0x5f, 0x61, 0x64, 0x68, 0x6c, 0x6f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x81, 0x82, 0x81, 0x7f, 0x76, 0x72, 0x75, 0x6f, 0x6a, 0x73, 0x74, 0x72, 0x74, 0x79, 0x7d, 0x7d, 0x7e, 0x80, 0x8b, 0x88, 0x84, 0x82, 0x84, 0x89, 0x90, 0x94, 0x96, 0x9a, 0x9a, 0x96, 0x93, 0x95, 0x98, 0x99, 0x98, 0x9a, 0x9a, 0x96, 0x92, 0x91, 0x92, 0x93, 0x98, 0x97, 0x99, 0x9c, 0x97, 0x8c, 0x86, 0x87, 0x89, 0x8b, 0x8d, 0x8e, 0x8c, 0x89, 0x88, 0x88, 0x89, 0x87, 0x87, 0x89, 0x88, 0x84, 0x81, 0x80, 0x86, 0x81, 0x81, 0x83, 0x82, 0x84, 0x83, 0x7e, 0x87, 0x84, 0x81, 0x7e, 0x7d, 0x7f, 0x81, 0x82, 0x76, 0x7a, 0x7b, 0x76, 0x71, 0x6e, 0x6d, 0x6c, 0x6a, 0x6c, 0x6b, 0x64, 0x5d, 0x5b, 0x60, 0x66, 0x5b, 0x58, 0x54, 0x52, 0x51, 0x50, 0x4e, 0x4b, 0x43, 0x3f, 0x3c, 0x3c, 0x3d, 0x3d, 0x3e, 0x41, 0x40, 0x40, 0x40, 0x3e, 0x3d, 0x3c, 0x3d, 0x3e, 0x44, 0x46, 0x4c, 0x54, 0x5b, 0x64, 0x6f, 0x78, 0x7d, 0x7c, 0x7e, 0x78, 0x6b, 0x62, 0x61, 0x60, 0x70, 0x8d, 0x97, 0x8a, 0x72, 0x6d, 0x88, 0x9a, 0x8a, 0x6b, 0x63, 0x6d, 0x70, 0x77, 0x7a, 0x70, 0x5f, 0x59, 0x5b, 0x5e, 0x58, 0x54, 0x54, 0x52, 0x50, 0x4e, 0x51, 0x5e, 0x99, 0xbc, 0xbb, 0x9d, 0x77, 0x67, 0x5f, 0x61, 0x64, 0x68, 0x6d, 0x6c, 0x6a, 0x6e, 0x6b, 0x68, 0x6b, 0x6a, 0x68, 0x6b, 0x62, 0x58, 0x47, 0x3b, 0x38, 0x3a, 0x38, 0x34, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x30, 0x30, 0x2f, 0x38, 0x39, 0x39, 0x39, 0x38, 0x3b, 0x42, 0x49, 0x4c, 0x51, 0x4f, 0x46, 0x42, 0x47, 0x4c, 0x4b, 0x43, 0x4a, 0x54, 0x54, 0x4a, 0x44, 0x43, 0x41, 0x3a, 0x36, 0x35, 0x39, 0x3c, 0x3f, 0x42, 0x46, 0x4c, 0x56, 0x5f, 0x67, 0x6c, 0x65, 0x5f, 0x62, 0x7f, 0x81, 0x70, 0x64, 0x5a, 0x4a, 0x46, 0x43, 0x3e, 0x49, 0x3c, 0x3f, 0x59, 0x61, 0x55, 0x43, 0x21, 0x1e, 0x21, 0x20, 0x17, 0x13, 0x16, 0x16, 0x15, 0x19, 0x16, 0x0f, 0x12, 0x1c, 0x1d, 0x14, 0x14, 0x17, 0x17, 0x21, 0x45, 0x72, 0x85, 0x7f, 0x6a, 0x5c, 0x55, 0x4c, 0x3a, 0x2f, 0x36, 0x40, 0x6f, 0x90, 0x7d, 0x46, 0x34, 0x42, 0x5a, 0x74, 0x76, 0x70, 0x65, 0x5b, 0x52, 0x47, 0x4a, 0x5b, 0x66, 0x7b, 0x78, 0x57, 0x45, 0x58, 0x74, 0x81, 0x93, 0x9c, 0x91, 0x81, 0x64, 0x47, 0x42, 0x3b, 0x39, 0x35, 0x39, 0x47, 0x54, 0x56, 0x54, 0x53, 0x56, 0x52, 0x4b, 0x45, 0x45, 0x47, 0x43, 0x3d, 0x4e, 0x51, 0x56, 0x5b, 0x5e, 0x5f, 0x5f, 0x5e, 0x59, 0x5a, 0x59, 0x53, 0x47, 0x3d, 0x3b, 0x3f, 0x49, 0x4d, 0x52, 0x58, 0x5b, 0x5b, 0x5a, 0x59, 0x57, 0x56, 0x54, 0x55, 0x55, 0x53, 0x4f, 0x4c, 0x4f, 0x50, 0x52, 0x54, 0x57, 0x57, 0x55, 0x54, 0x4b, 0x44, 0x41, 0x46, 0x50, 0x57, 0x5b, 0x5d, 0x55, 0x54, 0x54, 0x55, 0x59, 0x5b, 0x57, 0x50, 0x45, 0x4a, 0x51, 0x4e, 0x5a, 0x71, 0x83, 0x9b, 0xb1, 0xb1, 0xb4, 0xb3, 0xa2, 0x88, 0x77, 0x73, 0x72, 0x56, 0x38, 0x30, 0x34, 0x30, 0x2a, 0x2d, 0x31, 0x2e, 0x2b, 0x29, 0x2b, 0x33, 0x3e, 0x45, 0x46, 0x45, 0x3f, 0x37, 0x31, 0x31, 0x31, 0x30, 0x2e, 0x2b, 0x2a, 0x2f, 0x38, 0x40, 0x44, 0x44, 0x4a, 0x4d, 0x51, 0x57, 0x5b, 0x5e, 0x5e, 0x5e, 0x5e, 0x64, 0x68, 0x63, 0x5a, 0x52, 0x4c, 0x49, 0x41, 0x43, 0x42, 0x3f, 0x40, 0x41, 0x3c, 0x33, 0x30, 0x3a, 0x46, 0x51, 0x56, 0x4c, 0x44, 0x47, 0x4d, 0x4f, 0x45, 0x40, 0x3a, 0x36, 0x3c, 0x38, 0x33, 0x36, 0x39, 0x3a, 0x3b, 0x3e, 0x42, 0x45, 0x49, 0x4d, 0x4e, 0x4d, 0x53, 0x5b, 0x59, 0x51, 0x42, 0x3d, 0x46, 0x41, 0x46, 0x46, 0x49, 0x50, 0x4f, 0x4d, 0x53, 0x5e, 0x65, 0x61, 0x5b, 0x58, 0x52, 0x5d, 0x63, 0x69, 0x71, 0x76, 0x77, 0x79, 0x7c, 0x77, 0x73, 0x72, 0x72, 0x71, 0x70, 0x71, 0x74, 0x76, 0x7a, 0x7c, 0x7a, 0x77, 0x77, 0x7a, 0x73, 0x68, 0x62, 0x69, 0x72, 0x74, 0x6f, 0x6c, 0x6d, 0x71, 0x72, 0x6e, 0x64, 0x5c, 0x58, 0x58, 0x5b, 0x5a, 0x5a, 0x58, 0x53, 0x4c, 0x43, 0x3d, 0x3f, 0x3e, 0x3d, 0x3d, 0x3a, 0x35, 0x31, 0x30, 0x33, 0x34, 0x34, 0x33, 0x32, 0x32, 0x33, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x33, 0x33, 0x32, 0x30, 0x30, 0x35, 0x3e, 0x45, 0x47, 0x46, 0x46, 0x48, 0x44, 0x41, 0x43, 0x46, 0x48, 0x49, 0x4b, 0x55, 0x6a, 0x73, 0x67, 0x56, 0x49, 0x48, 0x4f, 0x4f, 0x59, 0x71, 0x80, 0x73, 0x5d, 0x55, 0x54, 0x58, 0x59, 0x58, 0x57, 0x56, 0x56, 0x58, 0x59, 0x55, 0x56, 0x58, 0x59, 0x5a, 0x5b, 0x5d, 0x5f, 0x65, 0x68, 0x6b, 0x6c, 0x6d, 0x6f, 0x74, 0x79, 0x79, 0x74, 0x70, 0x78, 0x7f, 0x77, 0x70, 0x77, 0x77, 0x76, 0x78, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x86, 0x81, 0x7c, 0x7b, 0x7f, 0x87, 0x8d, 0x91, 0x92, 0x95, 0x96, 0x95, 0x94, 0x96, 0x97, 0x96, 0x97, 0x99, 0x9b, 0x99, 0x94, 0x8e, 0x8f, 0x92, 0x98, 0x97, 0x99, 0x9b, 0x97, 0x8e, 0x89, 0x89, 0x8a, 0x8c, 0x8d, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8b, 0x89, 0x88, 0x8a, 0x8a, 0x87, 0x85, 0x84, 0x87, 0x88, 0x86, 0x85, 0x89, 0x87, 0x82, 0x82, 0x8c, 0x87, 0x81, 0x7d, 0x7c, 0x7d, 0x80, 0x82, 0x7c, 0x80, 0x81, 0x7a, 0x73, 0x6f, 0x6d, 0x6d, 0x6f, 0x6c, 0x66, 0x5f, 0x5b, 0x5c, 0x61, 0x66, 0x5b, 0x5b, 0x59, 0x58, 0x57, 0x55, 0x54, 0x54, 0x46, 0x44, 0x43, 0x42, 0x3f, 0x3d, 0x3f, 0x43, 0x41, 0x43, 0x44, 0x43, 0x41, 0x3f, 0x3d, 0x3d, 0x40, 0x42, 0x47, 0x4d, 0x54, 0x5e, 0x6d, 0x7a, 0x80, 0x7d, 0x7c, 0x78, 0x6b, 0x60, 0x65, 0x72, 0x7c, 0x98, 0x9e, 0x8e, 0x7c, 0x7e, 0x99, 0xa4, 0x91, 0x75, 0x6a, 0x70, 0x72, 0x77, 0x79, 0x6f, 0x60, 0x60, 0x64, 0x66, 0x63, 0x64, 0x61, 0x58, 0x4f, 0x4b, 0x50, 0x65, 0x9d, 0xbf, 0xb9, 0x99, 0x75, 0x65, 0x5e, 0x62, 0x64, 0x68, 0x6c, 0x6a, 0x6a, 0x6c, 0x69, 0x67, 0x6b, 0x69, 0x67, 0x6a, 0x6b, 0x60, 0x52, 0x48, 0x46, 0x44, 0x3a, 0x30, 0x37, 0x34, 0x31, 0x30, 0x31, 0x32, 0x30, 0x2f, 0x32, 0x30, 0x2e, 0x30, 0x36, 0x3e, 0x45, 0x49, 0x4c, 0x52, 0x4b, 0x37, 0x2b, 0x2f, 0x32, 0x2e, 0x38, 0x3b, 0x3d, 0x3f, 0x44, 0x47, 0x40, 0x36, 0x3e, 0x3b, 0x3c, 0x43, 0x4b, 0x51, 0x55, 0x58, 0x52, 0x53, 0x59, 0x64, 0x67, 0x5c, 0x5a, 0x68, 0x83, 0x8a, 0x7f, 0x74, 0x65, 0x4e, 0x43, 0x3e, 0x42, 0x39, 0x52, 0x73, 0x6d, 0x6a, 0x71, 0x59, 0x36, 0x22, 0x15, 0x16, 0x1b, 0x1e, 0x1a, 0x0e, 0x19, 0x15, 0x15, 0x18, 0x17, 0x14, 0x15, 0x19, 0x14, 0x21, 0x43, 0x6b, 0x7c, 0x70, 0x5e, 0x57, 0x4f, 0x43, 0x3e, 0x3d, 0x40, 0x53, 0x73, 0x89, 0x97, 0x66, 0x4d, 0x50, 0x53, 0x5c, 0x6d, 0x73, 0x60, 0x60, 0x55, 0x4d, 0x55, 0x5f, 0x65, 0x69, 0x55, 0x43, 0x40, 0x58, 0x73, 0x80, 0x88, 0x90, 0x7f, 0x81, 0x6e, 0x56, 0x3f, 0x33, 0x34, 0x2d, 0x31, 0x32, 0x3b, 0x4a, 0x54, 0x53, 0x4e, 0x4c, 0x48, 0x47, 0x45, 0x43, 0x43, 0x43, 0x3e, 0x38, 0x50, 0x51, 0x55, 0x59, 0x5c, 0x5e, 0x5e, 0x5d, 0x5c, 0x5a, 0x55, 0x4c, 0x40, 0x3a, 0x40, 0x49, 0x4f, 0x50, 0x53, 0x56, 0x59, 0x5a, 0x59, 0x58, 0x56, 0x54, 0x52, 0x51, 0x52, 0x50, 0x4d, 0x4b, 0x4b, 0x4b, 0x4c, 0x4e, 0x51, 0x52, 0x51, 0x50, 0x4b, 0x46, 0x45, 0x4c, 0x55, 0x5b, 0x5e, 0x5f, 0x56, 0x59, 0x5e, 0x62, 0x67, 0x6a, 0x6c, 0x6c, 0x6b, 0x69, 0x65, 0x55, 0x53, 0x5f, 0x6d, 0x86, 0x94, 0x98, 0xa4, 0xaa, 0x98, 0x72, 0x52, 0x45, 0x43, 0x42, 0x3a, 0x3a, 0x3f, 0x35, 0x2b, 0x32, 0x34, 0x32, 0x2e, 0x28, 0x25, 0x28, 0x2f, 0x36, 0x33, 0x32, 0x2e, 0x2d, 0x30, 0x35, 0x36, 0x34, 0x2d, 0x2b, 0x2c, 0x30, 0x38, 0x3e, 0x40, 0x40, 0x40, 0x48, 0x50, 0x52, 0x50, 0x50, 0x54, 0x59, 0x55, 0x53, 0x50, 0x4d, 0x48, 0x43, 0x43, 0x45, 0x43, 0x44, 0x44, 0x41, 0x41, 0x43, 0x41, 0x3e, 0x3d, 0x4a, 0x63, 0x7b, 0x7b, 0x61, 0x51, 0x58, 0x62, 0x61, 0x52, 0x49, 0x41, 0x3b, 0x40, 0x3c, 0x38, 0x3a, 0x3a, 0x3a, 0x3a, 0x3a, 0x3c, 0x3e, 0x3e, 0x43, 0x46, 0x47, 0x4a, 0x4c, 0x46, 0x3d, 0x3a, 0x3d, 0x4b, 0x4c, 0x4f, 0x51, 0x50, 0x56, 0x5b, 0x53, 0x55, 0x60, 0x66, 0x61, 0x5b, 0x5b, 0x59, 0x64, 0x60, 0x5b, 0x67, 0x6f, 0x6e, 0x70, 0x6d, 0x6a, 0x67, 0x68, 0x6a, 0x6b, 0x69, 0x67, 0x63, 0x60, 0x61, 0x67, 0x69, 0x67, 0x69, 0x6f, 0x71, 0x69, 0x66, 0x6b, 0x71, 0x71, 0x6e, 0x6d, 0x70, 0x73, 0x76, 0x72, 0x68, 0x5c, 0x52, 0x4d, 0x4b, 0x4d, 0x50, 0x54, 0x55, 0x53, 0x4d, 0x48, 0x44, 0x43, 0x42, 0x41, 0x3e, 0x37, 0x33, 0x33, 0x36, 0x35, 0x35, 0x33, 0x31, 0x31, 0x33, 0x34, 0x37, 0x38, 0x39, 0x39, 0x38, 0x37, 0x35, 0x34, 0x3a, 0x3b, 0x3e, 0x41, 0x43, 0x44, 0x48, 0x4d, 0x4a, 0x47, 0x44, 0x44, 0x45, 0x47, 0x4a, 0x4c, 0x5a, 0x5e, 0x56, 0x47, 0x40, 0x3c, 0x38, 0x3a, 0x44, 0x55, 0x73, 0x7b, 0x60, 0x41, 0x3a, 0x3e, 0x40, 0x42, 0x44, 0x46, 0x47, 0x48, 0x4a, 0x4b, 0x4d, 0x4f, 0x51, 0x52, 0x52, 0x52, 0x53, 0x54, 0x53, 0x57, 0x5d, 0x60, 0x60, 0x64, 0x6f, 0x7a, 0x7a, 0x79, 0x7b, 0x82, 0x86, 0x7f, 0x78, 0x78, 0x7a, 0x7a, 0x7b, 0x7f, 0x82, 0x84, 0x84, 0x84, 0x8b, 0x87, 0x84, 0x86, 0x8d, 0x95, 0x9a, 0x9c, 0x92, 0x93, 0x95, 0x95, 0x94, 0x93, 0x91, 0x8f, 0x97, 0x98, 0x9c, 0x9d, 0x97, 0x90, 0x90, 0x94, 0x9a, 0x98, 0x98, 0x99, 0x96, 0x91, 0x8f, 0x90, 0x91, 0x8e, 0x8e, 0x92, 0x97, 0x99, 0x97, 0x93, 0x8d, 0x8b, 0x8c, 0x8f, 0x90, 0x8d, 0x8a, 0x8a, 0x87, 0x8e, 0x8a, 0x89, 0x8f, 0x8b, 0x84, 0x87, 0x89, 0x88, 0x86, 0x83, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x84, 0x84, 0x7d, 0x74, 0x70, 0x6f, 0x6f, 0x73, 0x6e, 0x66, 0x60, 0x5c, 0x5c, 0x5d, 0x5d, 0x5d, 0x5e, 0x5e, 0x5c, 0x58, 0x55, 0x54, 0x54, 0x4e, 0x4c, 0x4b, 0x4a, 0x48, 0x44, 0x43, 0x44, 0x3e, 0x40, 0x42, 0x43, 0x41, 0x3f, 0x3e, 0x3e, 0x3e, 0x3f, 0x43, 0x47, 0x4c, 0x56, 0x67, 0x76, 0x81, 0x7f, 0x7d, 0x7b, 0x6f, 0x62, 0x6c, 0x85, 0xaa, 0xbe, 0xbd, 0xb5, 0xb1, 0xb8, 0xc3, 0xbb, 0x9a, 0x82, 0x75, 0x77, 0x77, 0x78, 0x75, 0x6b, 0x65, 0x6e, 0x74, 0x68, 0x58, 0x57, 0x59, 0x53, 0x53, 0x49, 0x4e, 0x6b, 0x9f, 0xc1, 0xb8, 0x97, 0x74, 0x65, 0x5f, 0x63, 0x65, 0x69, 0x6c, 0x6a, 0x6d, 0x6f, 0x6b, 0x69, 0x6b, 0x68, 0x65, 0x69, 0x71, 0x6c, 0x68, 0x6b, 0x73, 0x75, 0x6b, 0x5e, 0x59, 0x56, 0x54, 0x56, 0x5b, 0x63, 0x6a, 0x6d, 0x68, 0x67, 0x65, 0x67, 0x69, 0x65, 0x5a, 0x4e, 0x4f, 0x55, 0x53, 0x47, 0x3e, 0x3d, 0x3d, 0x3a, 0x37, 0x38, 0x36, 0x3c, 0x4e, 0x59, 0x51, 0x46, 0x3e, 0x41, 0x46, 0x4c, 0x53, 0x56, 0x58, 0x59, 0x61, 0x60, 0x60, 0x62, 0x5f, 0x53, 0x53, 0x62, 0x67, 0x74, 0x73, 0x74, 0x71, 0x65, 0x64, 0x63, 0x79, 0xa0, 0xa4, 0x91, 0x88, 0x86, 0x7f, 0x6a, 0x5d, 0x4e, 0x44, 0x3d, 0x34, 0x30, 0x2f, 0x2a, 0x21, 0x1b, 0x17, 0x18, 0x1a, 0x20, 0x2e, 0x3d, 0x4f, 0x63, 0x67, 0x54, 0x47, 0x4a, 0x4c, 0x44, 0x44, 0x44, 0x46, 0x4a, 0x5c, 0x7e, 0x90, 0x8a, 0x66, 0x45, 0x4b, 0x58, 0x4f, 0x60, 0x77, 0x6a, 0x6a, 0x6c, 0x62, 0x5d, 0x6a, 0x74, 0x6c, 0x5f, 0x5d, 0x4f, 0x47, 0x54, 0x6b, 0x75, 0x6b, 0x5d, 0x5b, 0x53, 0x41, 0x32, 0x2d, 0x2f, 0x33, 0x2f, 0x35, 0x37, 0x3f, 0x49, 0x4e, 0x4b, 0x48, 0x47, 0x44, 0x43, 0x43, 0x42, 0x43, 0x41, 0x3d, 0x39, 0x52, 0x52, 0x53, 0x57, 0x5a, 0x5c, 0x5c, 0x5b, 0x5c, 0x56, 0x4d, 0x42, 0x39, 0x39, 0x44, 0x4f, 0x56, 0x56, 0x56, 0x59, 0x5b, 0x5d, 0x5c, 0x5b, 0x56, 0x52, 0x4f, 0x4e, 0x4f, 0x50, 0x4f, 0x4e, 0x49, 0x48, 0x47, 0x46, 0x47, 0x47, 0x46, 0x45, 0x50, 0x4d, 0x4e, 0x54, 0x5a, 0x5b, 0x5a, 0x59, 0x51, 0x58, 0x5f, 0x5e, 0x5a, 0x5a, 0x63, 0x6c, 0x75, 0x6e, 0x67, 0x5b, 0x61, 0x6f, 0x7b, 0x91, 0x92, 0x96, 0x94, 0x82, 0x62, 0x46, 0x3a, 0x3a, 0x29, 0x2f, 0x2d, 0x2f, 0x36, 0x31, 0x2d, 0x35, 0x2d, 0x2e, 0x2e, 0x2d, 0x2c, 0x2a, 0x29, 0x2a, 0x2f, 0x2e, 0x2c, 0x2b, 0x2e, 0x32, 0x31, 0x2f, 0x2a, 0x32, 0x3f, 0x4c, 0x52, 0x50, 0x48, 0x42, 0x3b, 0x3e, 0x3f, 0x3f, 0x3e, 0x41, 0x48, 0x4e, 0x4d, 0x4d, 0x4f, 0x50, 0x4c, 0x42, 0x3d, 0x3d, 0x43, 0x42, 0x42, 0x42, 0x3e, 0x3a, 0x3a, 0x3e, 0x3f, 0x4e, 0x71, 0x94, 0x91, 0x6b, 0x58, 0x67, 0x74, 0x80, 0x7a, 0x6a, 0x4f, 0x39, 0x3a, 0x39, 0x3f, 0x41, 0x44, 0x46, 0x47, 0x47, 0x47, 0x47, 0x52, 0x57, 0x59, 0x55, 0x50, 0x4c, 0x46, 0x3f, 0x4a, 0x45, 0x49, 0x4f, 0x59, 0x64, 0x5a, 0x57, 0x55, 0x50, 0x54, 0x61, 0x68, 0x62, 0x5a, 0x58, 0x64, 0x6c, 0x66, 0x64, 0x75, 0x7f, 0x78, 0x74, 0x63, 0x62, 0x61, 0x63, 0x65, 0x66, 0x63, 0x5f, 0x56, 0x4f, 0x4d, 0x54, 0x5a, 0x5a, 0x59, 0x5b, 0x5f, 0x5e, 0x60, 0x66, 0x6b, 0x6e, 0x70, 0x72, 0x78, 0x79, 0x79, 0x73, 0x67, 0x59, 0x4f, 0x49, 0x3c, 0x3c, 0x3f, 0x45, 0x4c, 0x4f, 0x4f, 0x4d, 0x48, 0x46, 0x45, 0x44, 0x40, 0x39, 0x34, 0x33, 0x37, 0x37, 0x35, 0x33, 0x31, 0x31, 0x33, 0x34, 0x3a, 0x3a, 0x3b, 0x3c, 0x3c, 0x3c, 0x3b, 0x3b, 0x40, 0x44, 0x49, 0x4a, 0x45, 0x42, 0x45, 0x4c, 0x4f, 0x4d, 0x4b, 0x47, 0x46, 0x48, 0x4c, 0x4e, 0x57, 0x54, 0x44, 0x36, 0x35, 0x36, 0x32, 0x31, 0x34, 0x4e, 0x70, 0x74, 0x4f, 0x2b, 0x24, 0x29, 0x2d, 0x2f, 0x32, 0x33, 0x33, 0x32, 0x32, 0x32, 0x34, 0x37, 0x3a, 0x3d, 0x3e, 0x3f, 0x41, 0x42, 0x45, 0x44, 0x48, 0x52, 0x5d, 0x68, 0x73, 0x7c, 0x7c, 0x84, 0x8a, 0x89, 0x84, 0x82, 0x7f, 0x78, 0x7d, 0x7d, 0x7d, 0x7e, 0x82, 0x86, 0x89, 0x89, 0x83, 0x81, 0x80, 0x84, 0x8b, 0x91, 0x93, 0x93, 0x92, 0x93, 0x95, 0x97, 0x95, 0x92, 0x8f, 0x8d, 0x96, 0x99, 0x9d, 0x9f, 0x9b, 0x95, 0x95, 0x98, 0x9d, 0x99, 0x96, 0x95, 0x95, 0x94, 0x95, 0x97, 0x96, 0x91, 0x8f, 0x94, 0x9e, 0xa2, 0x9d, 0x96, 0x90, 0x8f, 0x91, 0x95, 0x95, 0x91, 0x8c, 0x8a, 0x8c, 0x93, 0x90, 0x8e, 0x92, 0x8c, 0x84, 0x89, 0x88, 0x8b, 0x8d, 0x8a, 0x84, 0x80, 0x81, 0x83, 0x7c, 0x80, 0x81, 0x7c, 0x76, 0x74, 0x75, 0x75, 0x76, 0x71, 0x6b, 0x67, 0x65, 0x62, 0x5e, 0x5a, 0x5f, 0x61, 0x62, 0x5f, 0x5a, 0x55, 0x53, 0x52, 0x54, 0x51, 0x50, 0x53, 0x53, 0x4e, 0x48, 0x45, 0x40, 0x41, 0x42, 0x41, 0x40, 0x3f, 0x3f, 0x40, 0x3e, 0x3f, 0x40, 0x42, 0x45, 0x4d, 0x5d, 0x6b, 0x7c, 0x7d, 0x7c, 0x7b, 0x71, 0x61, 0x6c, 0x8e, 0xae, 0xbd, 0xbb, 0xb8, 0xbd, 0xc5, 0xc7, 0xb5, 0xae, 0x9d, 0x93, 0x93, 0x94, 0x92, 0x8c, 0x85, 0x89, 0x9c, 0xa3, 0x88, 0x62, 0x56, 0x5b, 0x5a, 0x5a, 0x4a, 0x4c, 0x71, 0xa0, 0xc2, 0xb7, 0x95, 0x73, 0x65, 0x5f, 0x64, 0x67, 0x6b, 0x6e, 0x6c, 0x70, 0x70, 0x6d, 0x6c, 0x6e, 0x6a, 0x67, 0x6c, 0x73, 0x71, 0x70, 0x77, 0x82, 0x89, 0x82, 0x78, 0x6a, 0x6d, 0x71, 0x77, 0x80, 0x8c, 0x98, 0x9f, 0xaa, 0xab, 0xad, 0xaf, 0xac, 0x98, 0x76, 0x58, 0x51, 0x5a, 0x69, 0x79, 0x82, 0x84, 0x84, 0x85, 0x85, 0x89, 0x7f, 0x70, 0x67, 0x5a, 0x49, 0x42, 0x49, 0x4d, 0x50, 0x4f, 0x4d, 0x4c, 0x4e, 0x4f, 0x5b, 0x63, 0x63, 0x5e, 0x59, 0x50, 0x4d, 0x52, 0x56, 0x60, 0x5e, 0x65, 0x6f, 0x73, 0x82, 0x8a, 0x96, 0x9b, 0x90, 0x94, 0x98, 0x8a, 0x85, 0x88, 0x87, 0x7b, 0x72, 0x6b, 0x5d, 0x52, 0x4a, 0x42, 0x34, 0x36, 0x29, 0x18, 0x27, 0x4e, 0x63, 0x5f, 0x52, 0x4e, 0x57, 0x68, 0x69, 0x59, 0x4f, 0x52, 0x3f, 0x4e, 0x64, 0x78, 0x87, 0x90, 0x7f, 0x5f, 0x4c, 0x4d, 0x46, 0x41, 0x4f, 0x62, 0x64, 0x5a, 0x5c, 0x58, 0x57, 0x60, 0x64, 0x53, 0x44, 0x45, 0x50, 0x4f, 0x46, 0x3d, 0x46, 0x57, 0x59, 0x4d, 0x42, 0x37, 0x30, 0x2c, 0x2c, 0x2e, 0x32, 0x39, 0x41, 0x41, 0x43, 0x45, 0x45, 0x42, 0x41, 0x41, 0x44, 0x42, 0x3e, 0x3b, 0x38, 0x35, 0x32, 0x31, 0x54, 0x52, 0x52, 0x54, 0x58, 0x5a, 0x5a, 0x59, 0x5b, 0x52, 0x46, 0x3e, 0x3b, 0x3f, 0x4a, 0x55, 0x57, 0x56, 0x56, 0x58, 0x5b, 0x5d, 0x5c, 0x5b, 0x56, 0x53, 0x4f, 0x4e, 0x50, 0x52, 0x53, 0x52, 0x50, 0x4e, 0x4b, 0x49, 0x47, 0x45, 0x42, 0x40, 0x49, 0x48, 0x49, 0x4d, 0x4d, 0x4a, 0x48, 0x47, 0x4a, 0x50, 0x56, 0x53, 0x4a, 0x4a, 0x59, 0x6a, 0x78, 0x7b, 0x7d, 0x6f, 0x69, 0x72, 0x84, 0xa4, 0xa7, 0xa7, 0x9a, 0x7e, 0x64, 0x53, 0x45, 0x39, 0x33, 0x30, 0x2a, 0x2b, 0x32, 0x32, 0x2d, 0x2c, 0x2f, 0x2d, 0x2a, 0x28, 0x27, 0x28, 0x29, 0x2b, 0x32, 0x34, 0x33, 0x30, 0x2e, 0x2f, 0x2f, 0x2d, 0x30, 0x39, 0x47, 0x53, 0x57, 0x53, 0x4a, 0x43, 0x3c, 0x3c, 0x3e, 0x44, 0x4a, 0x4b, 0x47, 0x42, 0x3e, 0x41, 0x45, 0x47, 0x45, 0x43, 0x45, 0x49, 0x44, 0x41, 0x41, 0x41, 0x3b, 0x33, 0x32, 0x36, 0x3a, 0x41, 0x57, 0x71, 0x70, 0x57, 0x55, 0x6d, 0x72, 0x79, 0x6f, 0x61, 0x4b, 0x3a, 0x3c, 0x3a, 0x3e, 0x40, 0x42, 0x45, 0x46, 0x46, 0x46, 0x46, 0x55, 0x5b, 0x60, 0x5e, 0x5c, 0x5d, 0x5e, 0x5f, 0x62, 0x5b, 0x56, 0x54, 0x53, 0x61, 0x5b, 0x5e, 0x56, 0x52, 0x53, 0x5c, 0x61, 0x60, 0x5c, 0x5b, 0x5e, 0x66, 0x69, 0x6d, 0x78, 0x7a, 0x6d, 0x60, 0x57, 0x58, 0x59, 0x59, 0x5a, 0x5b, 0x57, 0x53, 0x4a, 0x45, 0x44, 0x4c, 0x58, 0x5f, 0x5f, 0x5e, 0x57, 0x58, 0x5b, 0x60, 0x67, 0x6e, 0x75, 0x79, 0x7a, 0x79, 0x76, 0x6d, 0x61, 0x56, 0x4f, 0x4d, 0x43, 0x41, 0x40, 0x44, 0x4a, 0x4f, 0x51, 0x50, 0x51, 0x4e, 0x4c, 0x4a, 0x44, 0x3c, 0x37, 0x35, 0x3c, 0x3c, 0x3a, 0x38, 0x36, 0x36, 0x37, 0x38, 0x39, 0x39, 0x39, 0x3a, 0x3c, 0x3f, 0x42, 0x44, 0x44, 0x49, 0x51, 0x53, 0x4d, 0x46, 0x44, 0x47, 0x4d, 0x4e, 0x4c, 0x47, 0x44, 0x46, 0x4a, 0x4c, 0x52, 0x52, 0x46, 0x38, 0x35, 0x35, 0x34, 0x36, 0x32, 0x53, 0x77, 0x74, 0x4b, 0x29, 0x22, 0x25, 0x2b, 0x2d, 0x30, 0x32, 0x31, 0x31, 0x30, 0x30, 0x33, 0x34, 0x36, 0x37, 0x36, 0x36, 0x36, 0x36, 0x3b, 0x35, 0x38, 0x4d, 0x65, 0x74, 0x7a, 0x7c, 0x7f, 0x88, 0x91, 0x89, 0x7d, 0x7f, 0x81, 0x79, 0x7f, 0x7f, 0x7e, 0x7e, 0x82, 0x88, 0x8b, 0x8b, 0x8b, 0x8b, 0x8d, 0x90, 0x94, 0x96, 0x95, 0x94, 0x8e, 0x8f, 0x93, 0x95, 0x94, 0x8f, 0x8d, 0x8d, 0x95, 0x9a, 0x9e, 0x9e, 0x9c, 0x9b, 0x9a, 0x99, 0x9e, 0x9b, 0x96, 0x94, 0x94, 0x96, 0x98, 0x9a, 0x97, 0x93, 0x91, 0x97, 0xa0, 0xa3, 0x9d, 0x96, 0x95, 0x94, 0x95, 0x97, 0x96, 0x91, 0x8c, 0x8a, 0x92, 0x97, 0x96, 0x93, 0x91, 0x8b, 0x86, 0x88, 0x8a, 0x8c, 0x8d, 0x89, 0x82, 0x7f, 0x82, 0x85, 0x7e, 0x81, 0x80, 0x7c, 0x77, 0x76, 0x76, 0x75, 0x73, 0x70, 0x6c, 0x6b, 0x6c, 0x69, 0x62, 0x5d, 0x65, 0x67, 0x69, 0x67, 0x62, 0x5c, 0x59, 0x57, 0x55, 0x52, 0x51, 0x54, 0x55, 0x50, 0x49, 0x44, 0x48, 0x48, 0x47, 0x44, 0x42, 0x40, 0x40, 0x40, 0x41, 0x40, 0x40, 0x40, 0x41, 0x47, 0x53, 0x5e, 0x73, 0x79, 0x79, 0x78, 0x71, 0x61, 0x6c, 0x91, 0xaf, 0xbe, 0xbd, 0xbc, 0xbe, 0xc5, 0xcb, 0xc0, 0xbc, 0xb4, 0xae, 0xb0, 0xb3, 0xb2, 0xae, 0xac, 0xb4, 0xbe, 0xbf, 0xac, 0x94, 0x8b, 0x84, 0x77, 0x61, 0x4b, 0x4c, 0x78, 0xa1, 0xc3, 0xb5, 0x93, 0x73, 0x64, 0x5f, 0x64, 0x68, 0x6c, 0x70, 0x6f, 0x71, 0x71, 0x6e, 0x6f, 0x72, 0x6e, 0x6b, 0x72, 0x78, 0x74, 0x70, 0x70, 0x76, 0x7d, 0x7b, 0x76, 0x7b, 0x80, 0x86, 0x8b, 0x8e, 0x92, 0x97, 0x9b, 0xa8, 0xab, 0xaf, 0xb5, 0xb5, 0xa2, 0x7c, 0x59, 0x4d, 0x57, 0x73, 0x98, 0xb1, 0xb9, 0xb8, 0xb9, 0xb4, 0xb1, 0x9c, 0x87, 0x7e, 0x6e, 0x61, 0x64, 0x6c, 0x6d, 0x69, 0x5f, 0x57, 0x56, 0x5a, 0x5d, 0x56, 0x64, 0x66, 0x5e, 0x58, 0x51, 0x48, 0x43, 0x4b, 0x55, 0x53, 0x5d, 0x69, 0x6c, 0x74, 0x76, 0x6e, 0x7c, 0x85, 0x87, 0x82, 0x8f, 0x91, 0x6d, 0x61, 0x51, 0x48, 0x4a, 0x4e, 0x53, 0x53, 0x4d, 0x5e, 0x59, 0x4a, 0x41, 0x4f, 0x63, 0x62, 0x51, 0x4b, 0x60, 0x6d, 0x6c, 0x72, 0x75, 0x5c, 0x39, 0x2f, 0x3e, 0x61, 0x83, 0x8b, 0x7e, 0x68, 0x55, 0x4c, 0x34, 0x38, 0x5b, 0x71, 0x69, 0x52, 0x3f, 0x5a, 0x50, 0x43, 0x44, 0x51, 0x57, 0x59, 0x5f, 0x42, 0x31, 0x2c, 0x3b, 0x44, 0x3d, 0x36, 0x39, 0x35, 0x2f, 0x34, 0x31, 0x2c, 0x2b, 0x30, 0x42, 0x41, 0x41, 0x42, 0x42, 0x41, 0x40, 0x40, 0x40, 0x3c, 0x37, 0x31, 0x2b, 0x25, 0x20, 0x20, 0x22, 0x55, 0x53, 0x51, 0x52, 0x56, 0x58, 0x57, 0x56, 0x57, 0x4d, 0x42, 0x3f, 0x42, 0x49, 0x53, 0x5a, 0x54, 0x52, 0x51, 0x54, 0x57, 0x5a, 0x59, 0x58, 0x56, 0x53, 0x51, 0x51, 0x53, 0x55, 0x55, 0x54, 0x55, 0x55, 0x54, 0x53, 0x51, 0x4d, 0x49, 0x45, 0x42, 0x42, 0x44, 0x45, 0x42, 0x3e, 0x3e, 0x40, 0x4f, 0x52, 0x54, 0x53, 0x51, 0x57, 0x6b, 0x7e, 0x7e, 0x80, 0x7d, 0x64, 0x51, 0x51, 0x65, 0x89, 0xa5, 0xa5, 0x9f, 0x97, 0x92, 0x86, 0x65, 0x43, 0x37, 0x32, 0x31, 0x32, 0x32, 0x34, 0x31, 0x29, 0x33, 0x31, 0x2d, 0x28, 0x25, 0x25, 0x29, 0x2d, 0x36, 0x3d, 0x40, 0x3c, 0x37, 0x36, 0x39, 0x3c, 0x3a, 0x39, 0x39, 0x3d, 0x43, 0x46, 0x44, 0x42, 0x3e, 0x43, 0x4b, 0x53, 0x57, 0x54, 0x4d, 0x47, 0x4d, 0x55, 0x5b, 0x58, 0x51, 0x4d, 0x4f, 0x52, 0x55, 0x52, 0x4c, 0x45, 0x42, 0x41, 0x3f, 0x3c, 0x37, 0x3a, 0x3f, 0x46, 0x49, 0x44, 0x4c, 0x60, 0x5e, 0x5b, 0x4b, 0x45, 0x43, 0x40, 0x43, 0x3b, 0x3b, 0x3a, 0x39, 0x39, 0x3a, 0x3d, 0x3f, 0x40, 0x47, 0x4f, 0x58, 0x5e, 0x62, 0x68, 0x6e, 0x73, 0x6d, 0x69, 0x5e, 0x52, 0x42, 0x4e, 0x4b, 0x55, 0x5a, 0x54, 0x4f, 0x4d, 0x4f, 0x53, 0x55, 0x57, 0x56, 0x5a, 0x63, 0x67, 0x63, 0x5e, 0x54, 0x47, 0x4f, 0x51, 0x50, 0x4c, 0x4b, 0x4d, 0x4b, 0x48, 0x45, 0x45, 0x46, 0x4d, 0x5b, 0x69, 0x6d, 0x6b, 0x5f, 0x5c, 0x59, 0x5b, 0x63, 0x6d, 0x74, 0x77, 0x7a, 0x7c, 0x7b, 0x74, 0x69, 0x5f, 0x59, 0x57, 0x4e, 0x4b, 0x49, 0x4c, 0x52, 0x56, 0x56, 0x55, 0x51, 0x4e, 0x4c, 0x49, 0x43, 0x3b, 0x35, 0x34, 0x39, 0x39, 0x38, 0x37, 0x35, 0x34, 0x35, 0x36, 0x3a, 0x39, 0x38, 0x39, 0x3d, 0x44, 0x4b, 0x50, 0x4f, 0x4f, 0x52, 0x54, 0x52, 0x4b, 0x46, 0x44, 0x46, 0x4a, 0x49, 0x44, 0x41, 0x44, 0x48, 0x4a, 0x50, 0x54, 0x4b, 0x3e, 0x3b, 0x3c, 0x3b, 0x3d, 0x44, 0x65, 0x82, 0x73, 0x47, 0x2b, 0x27, 0x28, 0x28, 0x2b, 0x2e, 0x31, 0x33, 0x33, 0x34, 0x35, 0x38, 0x38, 0x39, 0x37, 0x35, 0x34, 0x34, 0x34, 0x39, 0x3b, 0x48, 0x60, 0x73, 0x7b, 0x7e, 0x80, 0x87, 0x89, 0x8f, 0x89, 0x79, 0x7a, 0x80, 0x7c, 0x80, 0x81, 0x81, 0x80, 0x83, 0x89, 0x8b, 0x89, 0x87, 0x89, 0x8b, 0x8e, 0x8f, 0x8f, 0x8e, 0x8d, 0x8b, 0x8d, 0x92, 0x94, 0x91, 0x8c, 0x8b, 0x8d, 0x94, 0x9b, 0x9e, 0x9a, 0x9a, 0x9f, 0x9d, 0x96, 0x9e, 0x9b, 0x97, 0x94, 0x94, 0x96, 0x97, 0x96, 0x95, 0x95, 0x97, 0x9c, 0x9f, 0x9f, 0x9c, 0x98, 0x99, 0x97, 0x96, 0x97, 0x96, 0x93, 0x90, 0x90, 0x94, 0x94, 0x98, 0x96, 0x8e, 0x8b, 0x8b, 0x89, 0x8d, 0x8c, 0x8a, 0x86, 0x83, 0x81, 0x81, 0x81, 0x82, 0x83, 0x80, 0x7c, 0x79, 0x78, 0x76, 0x73, 0x70, 0x6c, 0x6a, 0x6a, 0x6c, 0x6b, 0x67, 0x63, 0x6c, 0x6d, 0x6e, 0x6c, 0x68, 0x62, 0x5c, 0x59, 0x57, 0x54, 0x54, 0x56, 0x55, 0x50, 0x4c, 0x4a, 0x4f, 0x4f, 0x4d, 0x4a, 0x46, 0x43, 0x41, 0x41, 0x44, 0x42, 0x41, 0x42, 0x42, 0x44, 0x4c, 0x53, 0x65, 0x70, 0x71, 0x71, 0x6f, 0x63, 0x6f, 0x96, 0xb4, 0xbf, 0xbe, 0xbe, 0xbe, 0xc2, 0xcb, 0xc5, 0xb7, 0xb5, 0xb2, 0xb2, 0xb6, 0xb6, 0xb5, 0xb8, 0xbf, 0xbd, 0xbb, 0xb5, 0xb0, 0xb0, 0xa2, 0x8c, 0x67, 0x4d, 0x4d, 0x7e, 0xa4, 0xc5, 0xb2, 0x8f, 0x72, 0x63, 0x5e, 0x63, 0x68, 0x6d, 0x72, 0x71, 0x74, 0x73, 0x70, 0x72, 0x75, 0x6f, 0x6d, 0x75, 0x75, 0x74, 0x73, 0x73, 0x78, 0x80, 0x83, 0x83, 0x88, 0x8b, 0x91, 0x96, 0x99, 0x9a, 0x9a, 0x9a, 0x91, 0x8e, 0x8c, 0x8f, 0x96, 0x91, 0x77, 0x5b, 0x48, 0x52, 0x6a, 0x8c, 0xa9, 0xb3, 0xad, 0xa4, 0xab, 0xa5, 0x8e, 0x7f, 0x7c, 0x6b, 0x5f, 0x68, 0x77, 0x76, 0x6f, 0x64, 0x5d, 0x5f, 0x65, 0x68, 0x60, 0x6b, 0x6a, 0x60, 0x5b, 0x54, 0x49, 0x44, 0x48, 0x53, 0x55, 0x63, 0x6d, 0x65, 0x5c, 0x51, 0x5c, 0x7a, 0x74, 0x73, 0x75, 0x4e, 0x33, 0x3e, 0x36, 0x39, 0x43, 0x48, 0x45, 0x4e, 0x63, 0x71, 0x88, 0x80, 0x7e, 0x85, 0x82, 0x74, 0x69, 0x68, 0x78, 0x77, 0x73, 0x6f, 0x6f, 0x6e, 0x66, 0x5d, 0x62, 0x62, 0x70, 0x7d, 0x72, 0x5e, 0x50, 0x49, 0x38, 0x38, 0x55, 0x68, 0x5a, 0x55, 0x57, 0x49, 0x3c, 0x44, 0x44, 0x46, 0x51, 0x52, 0x3f, 0x2d, 0x3d, 0x48, 0x4d, 0x47, 0x42, 0x43, 0x40, 0x3b, 0x30, 0x2c, 0x31, 0x28, 0x23, 0x29, 0x2b, 0x39, 0x33, 0x37, 0x3b, 0x3d, 0x3d, 0x3a, 0x36, 0x32, 0x27, 0x22, 0x1d, 0x1a, 0x16, 0x14, 0x18, 0x1f, 0x56, 0x53, 0x51, 0x51, 0x54, 0x56, 0x56, 0x54, 0x51, 0x47, 0x3e, 0x3f, 0x47, 0x4f, 0x56, 0x5a, 0x52, 0x50, 0x50, 0x52, 0x56, 0x59, 0x59, 0x57, 0x55, 0x53, 0x52, 0x53, 0x55, 0x55, 0x54, 0x52, 0x53, 0x55, 0x57, 0x59, 0x58, 0x55, 0x4f, 0x4b, 0x4a, 0x4a, 0x4c, 0x4c, 0x48, 0x45, 0x47, 0x4b, 0x4f, 0x4c, 0x4a, 0x4c, 0x50, 0x5c, 0x71, 0x83, 0x85, 0x76, 0x66, 0x55, 0x57, 0x66, 0x78, 0x95, 0xa3, 0xa7, 0xa5, 0xa0, 0x9a, 0x8b, 0x68, 0x45, 0x2c, 0x29, 0x2f, 0x2f, 0x27, 0x2d, 0x36, 0x31, 0x2a, 0x31, 0x38, 0x39, 0x35, 0x2e, 0x2a, 0x29, 0x2f, 0x39, 0x40, 0x3b, 0x33, 0x32, 0x37, 0x3d, 0x38, 0x32, 0x2c, 0x2f, 0x39, 0x41, 0x44, 0x43, 0x42, 0x4a, 0x51, 0x50, 0x4a, 0x49, 0x50, 0x58, 0x5d, 0x61, 0x5d, 0x4e, 0x43, 0x45, 0x51, 0x5a, 0x5f, 0x5b, 0x4d, 0x3e, 0x3e, 0x47, 0x47, 0x3e, 0x37, 0x41, 0x44, 0x43, 0x47, 0x49, 0x49, 0x4c, 0x49, 0x4f, 0x4a, 0x4a, 0x46, 0x3f, 0x3e, 0x35, 0x3b, 0x38, 0x35, 0x35, 0x39, 0x3f, 0x46, 0x4a, 0x49, 0x51, 0x5c, 0x62, 0x66, 0x68, 0x6a, 0x6a, 0x63, 0x5c, 0x4f, 0x4c, 0x48, 0x5d, 0x57, 0x5d, 0x59, 0x58, 0x53, 0x4f, 0x4f, 0x53, 0x54, 0x53, 0x57, 0x59, 0x63, 0x62, 0x52, 0x4d, 0x4f, 0x49, 0x4f, 0x51, 0x4f, 0x48, 0x46, 0x48, 0x48, 0x47, 0x4a, 0x4c, 0x4d, 0x50, 0x5b, 0x69, 0x6f, 0x6d, 0x69, 0x60, 0x56, 0x54, 0x5b, 0x66, 0x6b, 0x6c, 0x71, 0x76, 0x7b, 0x78, 0x6d, 0x61, 0x58, 0x55, 0x4c, 0x4a, 0x49, 0x4e, 0x54, 0x59, 0x58, 0x56, 0x54, 0x52, 0x4f, 0x4e, 0x48, 0x41, 0x3b, 0x3a, 0x3a, 0x3b, 0x3a, 0x39, 0x37, 0x36, 0x37, 0x38, 0x3d, 0x3b, 0x3a, 0x3b, 0x41, 0x4a, 0x54, 0x5a, 0x5a, 0x54, 0x4e, 0x4e, 0x4f, 0x4b, 0x46, 0x43, 0x44, 0x49, 0x49, 0x44, 0x42, 0x45, 0x49, 0x4b, 0x53, 0x53, 0x49, 0x40, 0x43, 0x45, 0x42, 0x40, 0x57, 0x73, 0x85, 0x6a, 0x3b, 0x23, 0x24, 0x25, 0x2b, 0x2e, 0x31, 0x34, 0x35, 0x35, 0x36, 0x36, 0x35, 0x36, 0x38, 0x39, 0x39, 0x3a, 0x3c, 0x3e, 0x3e, 0x4e, 0x67, 0x7b, 0x7e, 0x7a, 0x7e, 0x88, 0x91, 0x8a, 0x8d, 0x8a, 0x7a, 0x77, 0x7f, 0x7f, 0x7f, 0x82, 0x82, 0x82, 0x84, 0x89, 0x89, 0x86, 0x8a, 0x8c, 0x90, 0x92, 0x92, 0x92, 0x92, 0x93, 0x8f, 0x91, 0x95, 0x97, 0x93, 0x8c, 0x8b, 0x8f, 0x93, 0x9c, 0x9d, 0x96, 0x98, 0xa0, 0x9d, 0x92, 0x9e, 0x9c, 0x98, 0x95, 0x95, 0x95, 0x94, 0x92, 0x93, 0x98, 0x9d, 0xa0, 0x9f, 0x9c, 0x9b, 0x9a, 0x9b, 0x97, 0x95, 0x96, 0x97, 0x97, 0x97, 0x99, 0x92, 0x90, 0x97, 0x98, 0x8d, 0x8c, 0x91, 0x8d, 0x90, 0x8d, 0x8a, 0x89, 0x89, 0x87, 0x81, 0x7d, 0x7f, 0x7f, 0x7d, 0x7a, 0x7b, 0x7d, 0x7b, 0x78, 0x72, 0x6e, 0x6a, 0x69, 0x6b, 0x6d, 0x6c, 0x6a, 0x6d, 0x6e, 0x6d, 0x6b, 0x66, 0x5f, 0x57, 0x53, 0x5d, 0x5c, 0x5c, 0x5c, 0x59, 0x54, 0x53, 0x55, 0x51, 0x51, 0x51, 0x4e, 0x4a, 0x46, 0x44, 0x43, 0x45, 0x43, 0x42, 0x43, 0x43, 0x44, 0x48, 0x4d, 0x56, 0x64, 0x67, 0x68, 0x6a, 0x63, 0x72, 0x9a, 0xbc, 0xc1, 0xbc, 0xbf, 0xc3, 0xc4, 0xc9, 0xc1, 0xb9, 0xba, 0xb5, 0xb3, 0xb6, 0xb5, 0xb6, 0xbc, 0xc0, 0xc3, 0xc5, 0xbc, 0xb0, 0xac, 0xa7, 0x9a, 0x69, 0x4e, 0x4e, 0x83, 0xa6, 0xc6, 0xb1, 0x8c, 0x72, 0x62, 0x5d, 0x62, 0x67, 0x6d, 0x73, 0x72, 0x78, 0x76, 0x72, 0x73, 0x76, 0x6f, 0x6c, 0x73, 0x72, 0x75, 0x75, 0x74, 0x74, 0x77, 0x77, 0x76, 0x72, 0x75, 0x7d, 0x89, 0x97, 0xa2, 0xa7, 0xa9, 0x9d, 0x92, 0x84, 0x7f, 0x87, 0x8a, 0x7c, 0x68, 0x4a, 0x52, 0x61, 0x78, 0x91, 0x9c, 0x90, 0x7e, 0x6b, 0x7a, 0x7e, 0x7d, 0x78, 0x61, 0x56, 0x69, 0x6a, 0x6a, 0x65, 0x5e, 0x5d, 0x62, 0x66, 0x66, 0x6b, 0x6f, 0x69, 0x5f, 0x5b, 0x56, 0x50, 0x50, 0x45, 0x4e, 0x4e, 0x5b, 0x66, 0x5c, 0x4e, 0x3f, 0x49, 0x5b, 0x5e, 0x5b, 0x4b, 0x3a, 0x37, 0x33, 0x36, 0x39, 0x46, 0x51, 0x50, 0x51, 0x54, 0x53, 0x54, 0x60, 0x6c, 0x6a, 0x5f, 0x59, 0x64, 0x73, 0x6b, 0x6a, 0x5b, 0x4e, 0x61, 0x89, 0x9d, 0x99, 0x7f, 0x7a, 0x75, 0x6a, 0x58, 0x4a, 0x3e, 0x31, 0x3d, 0x54, 0x5c, 0x57, 0x50, 0x3f, 0x3f, 0x5a, 0x6e, 0x61, 0x4d, 0x40, 0x35, 0x2a, 0x2f, 0x43, 0x64, 0x71, 0x74, 0x6b, 0x68, 0x68, 0x59, 0x44, 0x34, 0x29, 0x26, 0x16, 0x18, 0x27, 0x21, 0x23, 0x29, 0x2e, 0x34, 0x36, 0x33, 0x2b, 0x20, 0x17, 0x13, 0x10, 0x0f, 0x10, 0x11, 0x13, 0x1c, 0x26, 0x5a, 0x58, 0x54, 0x52, 0x57, 0x5c, 0x59, 0x51, 0x4c, 0x3f, 0x3b, 0x41, 0x4b, 0x56, 0x5d, 0x5a, 0x53, 0x51, 0x51, 0x53, 0x57, 0x5a, 0x5a, 0x59, 0x58, 0x54, 0x50, 0x50, 0x53, 0x56, 0x56, 0x56, 0x5c, 0x59, 0x57, 0x56, 0x55, 0x53, 0x55, 0x58, 0x5a, 0x66, 0x6a, 0x5d, 0x4e, 0x4b, 0x51, 0x55, 0x55, 0x50, 0x4a, 0x52, 0x6c, 0x8a, 0x96, 0x95, 0x8f, 0x83, 0x6e, 0x5e, 0x60, 0x72, 0x96, 0xba, 0xbd, 0xae, 0x82, 0x63, 0x66, 0x5f, 0x49, 0x3f, 0x33, 0x31, 0x2f, 0x30, 0x32, 0x33, 0x34, 0x34, 0x33, 0x39, 0x3f, 0x3c, 0x34, 0x2c, 0x2a, 0x2c, 0x29, 0x2e, 0x31, 0x2e, 0x2d, 0x37, 0x39, 0x2c, 0x36, 0x35, 0x37, 0x35, 0x33, 0x3a, 0x40, 0x3c, 0x3c, 0x40, 0x45, 0x48, 0x4d, 0x57, 0x64, 0x6e, 0x70, 0x66, 0x5a, 0x4f, 0x44, 0x3f, 0x45, 0x50, 0x59, 0x56, 0x4d, 0x42, 0x3e, 0x40, 0x42, 0x41, 0x48, 0x48, 0x48, 0x45, 0x44, 0x45, 0x48, 0x4b, 0x47, 0x47, 0x4a, 0x4d, 0x48, 0x3f, 0x38, 0x37, 0x3c, 0x38, 0x37, 0x3f, 0x48, 0x4d, 0x50, 0x51, 0x50, 0x51, 0x57, 0x5e, 0x60, 0x5d, 0x5c, 0x5f, 0x5a, 0x56, 0x4f, 0x4c, 0x50, 0x57, 0x5a, 0x58, 0x5c, 0x56, 0x50, 0x51, 0x56, 0x5b, 0x5b, 0x59, 0x5c, 0x5c, 0x5d, 0x5c, 0x5b, 0x58, 0x56, 0x54, 0x63, 0x61, 0x5f, 0x5d, 0x5a, 0x55, 0x50, 0x4c, 0x50, 0x52, 0x54, 0x55, 0x59, 0x61, 0x67, 0x6a, 0x6c, 0x67, 0x5f, 0x5a, 0x5e, 0x67, 0x69, 0x66, 0x6d, 0x6d, 0x6a, 0x64, 0x61, 0x5d, 0x55, 0x4c, 0x4b, 0x4c, 0x4b, 0x47, 0x47, 0x4c, 0x53, 0x56, 0x58, 0x56, 0x55, 0x53, 0x4d, 0x43, 0x3c, 0x3a, 0x3a, 0x3b, 0x3c, 0x3b, 0x39, 0x38, 0x39, 0x3b, 0x3c, 0x3e, 0x3d, 0x3c, 0x44, 0x4f, 0x51, 0x4d, 0x48, 0x4b, 0x4e, 0x4f, 0x4e, 0x4b, 0x48, 0x46, 0x45, 0x45, 0x49, 0x4b, 0x48, 0x42, 0x42, 0x46, 0x47, 0x42, 0x41, 0x49, 0x53, 0x5c, 0x66, 0x6e, 0x7d, 0x87, 0x7c, 0x56, 0x32, 0x26, 0x27, 0x28, 0x2c, 0x30, 0x35, 0x37, 0x37, 0x36, 0x37, 0x38, 0x3a, 0x3c, 0x3d, 0x3c, 0x3a, 0x3b, 0x3f, 0x43, 0x4d, 0x60, 0x72, 0x78, 0x79, 0x7f, 0x84, 0x85, 0x86, 0x89, 0x8c, 0x8b, 0x87, 0x84, 0x83, 0x84, 0x88, 0x86, 0x84, 0x81, 0x81, 0x84, 0x89, 0x8d, 0x91, 0x92, 0x93, 0x93, 0x92, 0x94, 0x96, 0x98, 0x94, 0x96, 0x98, 0x97, 0x94, 0x91, 0x92, 0x93, 0x9d, 0x9c, 0x96, 0x90, 0x94, 0x9d, 0x9f, 0x9b, 0x9c, 0x96, 0x94, 0x98, 0x99, 0x94, 0x91, 0x93, 0x92, 0x9b, 0x9e, 0x9f, 0xa0, 0x9b, 0x97, 0x9a, 0x99, 0x94, 0x94, 0x97, 0x96, 0x91, 0x90, 0x95, 0x8b, 0x91, 0x8a, 0x87, 0x93, 0x97, 0x90, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x8d, 0x89, 0x84, 0x80, 0x81, 0x82, 0x82, 0x7f, 0x7e, 0x7e, 0x7c, 0x79, 0x73, 0x77, 0x78, 0x74, 0x70, 0x6f, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6b, 0x66, 0x62, 0x60, 0x5c, 0x5c, 0x5c, 0x5b, 0x5a, 0x59, 0x59, 0x5a, 0x5c, 0x5a, 0x56, 0x51, 0x4e, 0x4d, 0x48, 0x43, 0x47, 0x48, 0x48, 0x47, 0x45, 0x43, 0x43, 0x43, 0x48, 0x55, 0x63, 0x6a, 0x67, 0x65, 0x7e, 0xa4, 0xc2, 0xc5, 0xc6, 0xc6, 0xc6, 0xc7, 0xc6, 0xc4, 0xc1, 0xbe, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xbc, 0xbe, 0xbf, 0xb9, 0xb4, 0xb6, 0xab, 0x95, 0x68, 0x48, 0x51, 0x84, 0xaf, 0xc2, 0xaf, 0x87, 0x6c, 0x65, 0x60, 0x63, 0x69, 0x6d, 0x70, 0x72, 0x74, 0x75, 0x75, 0x73, 0x72, 0x72, 0x71, 0x70, 0x72, 0x69, 0x62, 0x60, 0x5f, 0x5a, 0x56, 0x54, 0x56, 0x5a, 0x60, 0x6c, 0x7e, 0x92, 0x9c, 0x9c, 0x97, 0x97, 0x98, 0x9b, 0x9b, 0x92, 0x7c, 0x68, 0x4a, 0x4d, 0x5b, 0x67, 0x70, 0x7f, 0x7d, 0x67, 0x69, 0x6d, 0x78, 0x85, 0x7c, 0x59, 0x41, 0x44, 0x49, 0x4d, 0x51, 0x55, 0x5f, 0x6b, 0x73, 0x75, 0x70, 0x72, 0x6b, 0x5d, 0x5c, 0x69, 0x64, 0x4c, 0x58, 0x5c, 0x6c, 0x69, 0x5f, 0x58, 0x50, 0x4c, 0x51, 0x55, 0x55, 0x46, 0x35, 0x38, 0x47, 0x4e, 0x69, 0x5f, 0x5c, 0x68, 0x77, 0x7c, 0x76, 0x71, 0x68, 0x6d, 0x68, 0x5c, 0x5a, 0x64, 0x6c, 0x6c, 0x65, 0x55, 0x49, 0x4d, 0x52, 0x50, 0x4c, 0x4c, 0x5b, 0x61, 0x5e, 0x55, 0x4b, 0x3c, 0x31, 0x31, 0x4d, 0x52, 0x4d, 0x3e, 0x3d, 0x49, 0x50, 0x4d, 0x42, 0x3c, 0x35, 0x2f, 0x2c, 0x2b, 0x2a, 0x27, 0x30, 0x3c, 0x47, 0x5b, 0x71, 0x68, 0x4d, 0x3f, 0x2c, 0x29, 0x23, 0x22, 0x25, 0x28, 0x24, 0x1f, 0x28, 0x28, 0x24, 0x1d, 0x19, 0x18, 0x14, 0x0f, 0x12, 0x16, 0x15, 0x13, 0x17, 0x23, 0x30, 0x37, 0x5d, 0x5c, 0x58, 0x56, 0x58, 0x59, 0x54, 0x4c, 0x46, 0x3c, 0x3c, 0x46, 0x4e, 0x55, 0x58, 0x52, 0x54, 0x50, 0x4e, 0x51, 0x58, 0x5d, 0x5d, 0x5a, 0x56, 0x52, 0x4f, 0x50, 0x53, 0x56, 0x57, 0x56, 0x56, 0x56, 0x59, 0x5a, 0x5a, 0x5b, 0x60, 0x67, 0x7d, 0x86, 0x88, 0x7d, 0x72, 0x6d, 0x6a, 0x67, 0x5e, 0x56, 0x57, 0x6b, 0x88, 0x9c, 0x9f, 0x9b, 0x8e, 0x80, 0x63, 0x48, 0x3c, 0x48, 0x72, 0xa0, 0xc5, 0xbf, 0x89, 0x4d, 0x44, 0x4e, 0x44, 0x36, 0x3a, 0x35, 0x32, 0x35, 0x3a, 0x3b, 0x38, 0x36, 0x3c, 0x3e, 0x3f, 0x3c, 0x36, 0x2f, 0x29, 0x26, 0x25, 0x27, 0x2c, 0x2c, 0x2b, 0x34, 0x3c, 0x3a, 0x3c, 0x37, 0x35, 0x32, 0x2f, 0x34, 0x3c, 0x3c, 0x3c, 0x3a, 0x3b, 0x3e, 0x46, 0x50, 0x5e, 0x69, 0x6c, 0x67, 0x60, 0x57, 0x4a, 0x3e, 0x3c, 0x40, 0x47, 0x4a, 0x49, 0x44, 0x40, 0x3f, 0x3c, 0x38, 0x47, 0x48, 0x48, 0x46, 0x43, 0x44, 0x4a, 0x4f, 0x47, 0x48, 0x4b, 0x4d, 0x48, 0x40, 0x3a, 0x3a, 0x3b, 0x3a, 0x3d, 0x43, 0x49, 0x4c, 0x4f, 0x52, 0x53, 0x56, 0x5b, 0x5f, 0x5d, 0x55, 0x51, 0x51, 0x59, 0x56, 0x52, 0x52, 0x58, 0x5d, 0x5d, 0x5a, 0x52, 0x51, 0x53, 0x57, 0x5e, 0x64, 0x66, 0x67, 0x6b, 0x67, 0x62, 0x5f, 0x5e, 0x5d, 0x5c, 0x5a, 0x5a, 0x5b, 0x5d, 0x5f, 0x5f, 0x5c, 0x56, 0x51, 0x50, 0x53, 0x56, 0x56, 0x57, 0x5a, 0x5b, 0x5b, 0x65, 0x6a, 0x70, 0x74, 0x77, 0x77, 0x72, 0x6a, 0x6b, 0x6d, 0x6b, 0x66, 0x62, 0x5d, 0x55, 0x4d, 0x4f, 0x53, 0x55, 0x52, 0x50, 0x50, 0x51, 0x50, 0x58, 0x57, 0x56, 0x55, 0x4e, 0x44, 0x3c, 0x3a, 0x3b, 0x3b, 0x3c, 0x3b, 0x3a, 0x39, 0x39, 0x39, 0x3d, 0x3f, 0x3d, 0x3a, 0x3f, 0x47, 0x4a, 0x47, 0x41, 0x42, 0x42, 0x43, 0x44, 0x44, 0x44, 0x44, 0x47, 0x49, 0x4d, 0x50, 0x4d, 0x45, 0x42, 0x42, 0x47, 0x41, 0x3e, 0x43, 0x4e, 0x59, 0x65, 0x6e, 0x75, 0x69, 0x4f, 0x34, 0x29, 0x2b, 0x2a, 0x24, 0x2c, 0x30, 0x35, 0x37, 0x37, 0x37, 0x37, 0x39, 0x37, 0x36, 0x37, 0x3a, 0x39, 0x3a, 0x43, 0x4e, 0x62, 0x6f, 0x7b, 0x7e, 0x80, 0x85, 0x87, 0x85, 0x87, 0x8a, 0x8b, 0x8b, 0x89, 0x88, 0x88, 0x89, 0x8b, 0x8a, 0x87, 0x85, 0x83, 0x84, 0x87, 0x8a, 0x8f, 0x8d, 0x8d, 0x8f, 0x93, 0x95, 0x95, 0x94, 0x91, 0x94, 0x98, 0x99, 0x98, 0x98, 0x9a, 0x9d, 0xa1, 0xa1, 0x9d, 0x98, 0x99, 0x9f, 0x9f, 0x9a, 0x98, 0x95, 0x97, 0x9c, 0x9a, 0x92, 0x8f, 0x91, 0x95, 0x9d, 0xa0, 0x9f, 0x9e, 0x99, 0x94, 0x98, 0x99, 0x93, 0x91, 0x94, 0x94, 0x8f, 0x8e, 0x92, 0x8c, 0x92, 0x8c, 0x89, 0x93, 0x97, 0x90, 0x8f, 0x8d, 0x8e, 0x8f, 0x90, 0x8f, 0x8b, 0x87, 0x83, 0x85, 0x86, 0x85, 0x81, 0x7f, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7a, 0x74, 0x71, 0x71, 0x71, 0x6f, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6a, 0x66, 0x63, 0x5c, 0x5d, 0x5e, 0x5e, 0x5e, 0x5c, 0x5a, 0x58, 0x5b, 0x5c, 0x5a, 0x56, 0x53, 0x51, 0x4c, 0x48, 0x48, 0x47, 0x46, 0x45, 0x45, 0x44, 0x44, 0x44, 0x44, 0x4f, 0x5d, 0x66, 0x65, 0x64, 0x7b, 0x9e, 0xbb, 0xbe, 0xc0, 0xc0, 0xc1, 0xc3, 0xc2, 0xbf, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbf, 0xc7, 0xc6, 0xc3, 0xba, 0xb3, 0xb3, 0xa9, 0x93, 0x60, 0x48, 0x55, 0x80, 0xa2, 0xb0, 0xa2, 0x83, 0x6a, 0x63, 0x5f, 0x62, 0x69, 0x6e, 0x72, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6c, 0x69, 0x64, 0x58, 0x4e, 0x4b, 0x4b, 0x48, 0x45, 0x43, 0x4c, 0x4f, 0x54, 0x5d, 0x6b, 0x7c, 0x86, 0x89, 0x8e, 0x91, 0x97, 0x9e, 0xa4, 0xa1, 0x93, 0x85, 0x5d, 0x49, 0x43, 0x4a, 0x52, 0x60, 0x6d, 0x6d, 0x6a, 0x73, 0x7b, 0x7f, 0x76, 0x5c, 0x45, 0x40, 0x42, 0x4b, 0x54, 0x5b, 0x5e, 0x5d, 0x56, 0x4e, 0x5b, 0x62, 0x68, 0x6a, 0x6a, 0x64, 0x57, 0x4c, 0x48, 0x56, 0x5a, 0x5d, 0x5b, 0x60, 0x59, 0x4f, 0x54, 0x49, 0x41, 0x3e, 0x41, 0x50, 0x5f, 0x61, 0x41, 0x65, 0x87, 0x8e, 0x81, 0x75, 0x71, 0x72, 0x74, 0x76, 0x71, 0x67, 0x63, 0x66, 0x6a, 0x6a, 0x4a, 0x44, 0x46, 0x50, 0x52, 0x46, 0x37, 0x2f, 0x48, 0x50, 0x4e, 0x46, 0x3e, 0x36, 0x35, 0x3d, 0x4f, 0x43, 0x3d, 0x3e, 0x38, 0x2d, 0x2d, 0x36, 0x36, 0x35, 0x2d, 0x25, 0x2a, 0x32, 0x29, 0x17, 0x40, 0x4c, 0x5d, 0x70, 0x7c, 0x77, 0x6e, 0x6c, 0x73, 0x73, 0x71, 0x6b, 0x67, 0x60, 0x52, 0x44, 0x3c, 0x37, 0x32, 0x2d, 0x26, 0x22, 0x26, 0x2d, 0x22, 0x25, 0x27, 0x2c, 0x36, 0x41, 0x46, 0x46, 0x68, 0x66, 0x62, 0x5f, 0x5d, 0x59, 0x51, 0x49, 0x3a, 0x37, 0x41, 0x53, 0x5f, 0x67, 0x68, 0x61, 0x5b, 0x55, 0x51, 0x54, 0x5b, 0x60, 0x5f, 0x5d, 0x5a, 0x58, 0x56, 0x56, 0x58, 0x5a, 0x5a, 0x5a, 0x5d, 0x5f, 0x62, 0x63, 0x61, 0x60, 0x66, 0x6e, 0x84, 0x8f, 0x99, 0x99, 0x94, 0x88, 0x75, 0x66, 0x58, 0x56, 0x5c, 0x67, 0x6a, 0x64, 0x61, 0x63, 0x5a, 0x62, 0x62, 0x53, 0x3c, 0x31, 0x48, 0x6e, 0x95, 0x90, 0x6c, 0x44, 0x3b, 0x3b, 0x37, 0x37, 0x39, 0x38, 0x39, 0x3e, 0x49, 0x51, 0x50, 0x4b, 0x46, 0x43, 0x40, 0x3d, 0x3a, 0x34, 0x2d, 0x27, 0x28, 0x28, 0x2e, 0x32, 0x34, 0x3f, 0x4c, 0x51, 0x37, 0x30, 0x31, 0x36, 0x32, 0x2f, 0x30, 0x2e, 0x35, 0x30, 0x30, 0x35, 0x3c, 0x43, 0x4c, 0x55, 0x53, 0x53, 0x52, 0x4e, 0x46, 0x3d, 0x38, 0x38, 0x31, 0x36, 0x3c, 0x3d, 0x3c, 0x3b, 0x39, 0x37, 0x48, 0x4a, 0x4a, 0x47, 0x44, 0x44, 0x49, 0x4e, 0x47, 0x47, 0x4a, 0x4c, 0x4a, 0x44, 0x3e, 0x3c, 0x3b, 0x3b, 0x3b, 0x3d, 0x3e, 0x40, 0x45, 0x4b, 0x52, 0x55, 0x5b, 0x5f, 0x5e, 0x5b, 0x5b, 0x5e, 0x62, 0x5f, 0x5b, 0x59, 0x5b, 0x5b, 0x55, 0x4d, 0x49, 0x4b, 0x4f, 0x54, 0x5a, 0x61, 0x68, 0x6d, 0x6f, 0x6b, 0x67, 0x66, 0x67, 0x69, 0x67, 0x66, 0x5e, 0x5e, 0x5f, 0x5f, 0x5d, 0x54, 0x48, 0x3f, 0x40, 0x46, 0x4d, 0x52, 0x55, 0x56, 0x55, 0x52, 0x5a, 0x5f, 0x63, 0x65, 0x66, 0x68, 0x69, 0x69, 0x68, 0x6c, 0x6d, 0x6a, 0x66, 0x62, 0x5c, 0x58, 0x57, 0x57, 0x53, 0x4c, 0x48, 0x4b, 0x4f, 0x52, 0x58, 0x57, 0x58, 0x56, 0x4f, 0x44, 0x3c, 0x39, 0x3e, 0x3e, 0x3e, 0x3e, 0x3e, 0x3d, 0x3b, 0x3a, 0x39, 0x3a, 0x38, 0x35, 0x39, 0x41, 0x44, 0x43, 0x3e, 0x3c, 0x3a, 0x3a, 0x3e, 0x41, 0x43, 0x43, 0x40, 0x42, 0x48, 0x4d, 0x4c, 0x46, 0x3f, 0x3c, 0x41, 0x3a, 0x35, 0x36, 0x3c, 0x44, 0x4c, 0x52, 0x52, 0x4b, 0x3d, 0x30, 0x29, 0x28, 0x28, 0x26, 0x2c, 0x30, 0x35, 0x38, 0x38, 0x38, 0x39, 0x3a, 0x3d, 0x38, 0x37, 0x3a, 0x3a, 0x3c, 0x4a, 0x5a, 0x74, 0x7b, 0x7f, 0x81, 0x85, 0x89, 0x88, 0x84, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x8a, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x8a, 0x8c, 0x8d, 0x8a, 0x88, 0x8d, 0x95, 0x99, 0x96, 0x92, 0x98, 0x9a, 0x9c, 0x9c, 0x9a, 0x99, 0x9a, 0x9c, 0x9f, 0xa2, 0xa1, 0x9c, 0x9b, 0x9d, 0x9c, 0x98, 0x98, 0x98, 0x9b, 0x9e, 0x9a, 0x92, 0x90, 0x94, 0x9b, 0xa2, 0xa2, 0x9f, 0x9e, 0x98, 0x93, 0x97, 0x9d, 0x97, 0x93, 0x94, 0x94, 0x91, 0x91, 0x93, 0x8c, 0x91, 0x8e, 0x8c, 0x94, 0x97, 0x93, 0x90, 0x8d, 0x8e, 0x8f, 0x90, 0x8f, 0x8c, 0x8a, 0x88, 0x87, 0x88, 0x86, 0x81, 0x7e, 0x80, 0x83, 0x84, 0x86, 0x83, 0x7c, 0x74, 0x72, 0x74, 0x75, 0x74, 0x76, 0x72, 0x6e, 0x6d, 0x6d, 0x6c, 0x68, 0x64, 0x60, 0x60, 0x61, 0x63, 0x64, 0x62, 0x5e, 0x5a, 0x5d, 0x5f, 0x60, 0x5d, 0x59, 0x57, 0x53, 0x4f, 0x4f, 0x4c, 0x49, 0x47, 0x47, 0x47, 0x46, 0x44, 0x46, 0x4d, 0x57, 0x60, 0x63, 0x64, 0x7a, 0x9c, 0xb4, 0xb7, 0xba, 0xba, 0xbc, 0xbe, 0xbe, 0xbc, 0xba, 0xbc, 0xbc, 0xba, 0xb7, 0xb6, 0xb9, 0xbb, 0xb8, 0xba, 0xbd, 0xb9, 0xb2, 0xae, 0x9f, 0x86, 0x57, 0x48, 0x53, 0x71, 0x84, 0x8d, 0x89, 0x79, 0x6c, 0x66, 0x62, 0x65, 0x6b, 0x6f, 0x73, 0x76, 0x76, 0x73, 0x70, 0x71, 0x72, 0x70, 0x6b, 0x66, 0x61, 0x55, 0x4a, 0x45, 0x46, 0x47, 0x45, 0x44, 0x49, 0x4c, 0x50, 0x55, 0x5f, 0x6d, 0x79, 0x80, 0x88, 0x8c, 0x92, 0x98, 0x9d, 0x9e, 0x98, 0x90, 0x6b, 0x4b, 0x3d, 0x49, 0x50, 0x53, 0x60, 0x6e, 0x71, 0x7c, 0x7c, 0x75, 0x6f, 0x64, 0x55, 0x4e, 0x5d, 0x5b, 0x57, 0x53, 0x53, 0x57, 0x5a, 0x5a, 0x51, 0x55, 0x5b, 0x68, 0x74, 0x71, 0x76, 0x8c, 0x96, 0x84, 0x4d, 0x50, 0x5b, 0x65, 0x5b, 0x50, 0x50, 0x42, 0x3d, 0x46, 0x52, 0x5f, 0x66, 0x62, 0x74, 0x81, 0x86, 0x82, 0x85, 0x92, 0x94, 0x8b, 0x80, 0x76, 0x6d, 0x6d, 0x6f, 0x69, 0x56, 0x45, 0x43, 0x42, 0x49, 0x55, 0x57, 0x4a, 0x3e, 0x3a, 0x40, 0x49, 0x47, 0x3e, 0x37, 0x31, 0x34, 0x3f, 0x48, 0x37, 0x34, 0x3e, 0x38, 0x22, 0x1c, 0x29, 0x29, 0x2f, 0x34, 0x32, 0x28, 0x2d, 0x4b, 0x6c, 0x76, 0x69, 0x69, 0x73, 0x78, 0x77, 0x74, 0x6f, 0x6b, 0x6c, 0x68, 0x62, 0x64, 0x6c, 0x6e, 0x69, 0x57, 0x49, 0x40, 0x40, 0x3e, 0x36, 0x37, 0x3d, 0x33, 0x36, 0x3a, 0x3f, 0x49, 0x54, 0x5c, 0x5f, 0x6a, 0x67, 0x62, 0x5e, 0x5a, 0x54, 0x4c, 0x45, 0x34, 0x35, 0x46, 0x5d, 0x6d, 0x76, 0x78, 0x72, 0x79, 0x75, 0x72, 0x73, 0x76, 0x79, 0x78, 0x76, 0x78, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x70, 0x70, 0x72, 0x72, 0x70, 0x6e, 0x71, 0x76, 0x7e, 0x88, 0x94, 0x9b, 0x9a, 0x90, 0x7c, 0x6b, 0x5e, 0x62, 0x68, 0x6a, 0x61, 0x56, 0x53, 0x57, 0x53, 0x5c, 0x67, 0x6d, 0x66, 0x51, 0x48, 0x50, 0x55, 0x53, 0x4a, 0x46, 0x43, 0x39, 0x35, 0x3f, 0x44, 0x4c, 0x4c, 0x44, 0x47, 0x53, 0x54, 0x4a, 0x47, 0x43, 0x3d, 0x3a, 0x3a, 0x38, 0x35, 0x32, 0x2d, 0x2b, 0x2a, 0x28, 0x2c, 0x3c, 0x48, 0x46, 0x3c, 0x2d, 0x2c, 0x35, 0x35, 0x2f, 0x2c, 0x2a, 0x2c, 0x2b, 0x2f, 0x35, 0x38, 0x37, 0x38, 0x3d, 0x3a, 0x3b, 0x3c, 0x3b, 0x3b, 0x3b, 0x3b, 0x3b, 0x3d, 0x3f, 0x40, 0x3f, 0x40, 0x43, 0x49, 0x4d, 0x4e, 0x4e, 0x4e, 0x4c, 0x49, 0x47, 0x47, 0x48, 0x42, 0x42, 0x44, 0x4a, 0x4e, 0x4c, 0x45, 0x3e, 0x41, 0x3e, 0x3c, 0x3c, 0x3e, 0x42, 0x4a, 0x51, 0x4b, 0x4d, 0x50, 0x51, 0x51, 0x54, 0x5b, 0x61, 0x65, 0x63, 0x61, 0x62, 0x66, 0x69, 0x66, 0x60, 0x51, 0x50, 0x4e, 0x50, 0x55, 0x5e, 0x67, 0x6d, 0x6e, 0x6f, 0x71, 0x74, 0x75, 0x74, 0x71, 0x6e, 0x6f, 0x6d, 0x6b, 0x68, 0x61, 0x54, 0x44, 0x39, 0x31, 0x39, 0x44, 0x4d, 0x54, 0x58, 0x55, 0x51, 0x5d, 0x5b, 0x58, 0x55, 0x58, 0x60, 0x6c, 0x74, 0x70, 0x73, 0x74, 0x70, 0x69, 0x63, 0x60, 0x5f, 0x5d, 0x5a, 0x51, 0x47, 0x44, 0x4a, 0x53, 0x59, 0x59, 0x5a, 0x5a, 0x58, 0x50, 0x44, 0x3c, 0x3a, 0x3f, 0x3e, 0x3d, 0x3e, 0x3f, 0x3e, 0x3c, 0x39, 0x3a, 0x38, 0x36, 0x37, 0x3e, 0x48, 0x4b, 0x4a, 0x43, 0x3e, 0x3a, 0x3a, 0x3e, 0x41, 0x42, 0x42, 0x43, 0x46, 0x4b, 0x50, 0x50, 0x4c, 0x45, 0x40, 0x40, 0x3c, 0x37, 0x36, 0x38, 0x3b, 0x3d, 0x3e, 0x3a, 0x3e, 0x41, 0x3b, 0x2e, 0x24, 0x24, 0x2a, 0x2e, 0x32, 0x37, 0x3a, 0x3a, 0x3a, 0x3c, 0x3d, 0x42, 0x3c, 0x37, 0x38, 0x3f, 0x4c, 0x5c, 0x6a, 0x7a, 0x7e, 0x82, 0x84, 0x88, 0x8c, 0x8b, 0x87, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8c, 0x89, 0x86, 0x82, 0x84, 0x87, 0x88, 0x89, 0x8a, 0x8c, 0x8d, 0x8d, 0x8b, 0x8b, 0x90, 0x97, 0x9b, 0x99, 0x96, 0x9e, 0x9e, 0x9f, 0x9d, 0x9b, 0x99, 0x99, 0x99, 0x9d, 0xa0, 0xa1, 0x9e, 0x9b, 0x9c, 0x9d, 0x9b, 0x9e, 0x9c, 0x9c, 0x9c, 0x99, 0x96, 0x97, 0x9b, 0x9f, 0xa5, 0xa5, 0xa1, 0x9f, 0x98, 0x94, 0x97, 0x9f, 0x99, 0x94, 0x93, 0x94, 0x93, 0x92, 0x94, 0x8b, 0x90, 0x90, 0x8e, 0x93, 0x97, 0x95, 0x91, 0x91, 0x90, 0x90, 0x8e, 0x8c, 0x8c, 0x8c, 0x8d, 0x8a, 0x8b, 0x89, 0x84, 0x80, 0x82, 0x85, 0x86, 0x82, 0x81, 0x7d, 0x76, 0x73, 0x75, 0x77, 0x77, 0x77, 0x74, 0x71, 0x6f, 0x6e, 0x6b, 0x67, 0x64, 0x66, 0x65, 0x65, 0x67, 0x6a, 0x69, 0x65, 0x60, 0x60, 0x64, 0x65, 0x62, 0x5e, 0x5c, 0x5b, 0x59, 0x5b, 0x56, 0x50, 0x4c, 0x4b, 0x4b, 0x48, 0x46, 0x4a, 0x4b, 0x4e, 0x56, 0x5d, 0x64, 0x7d, 0xa0, 0xb6, 0xb8, 0xb9, 0xb9, 0xba, 0xbd, 0xbe, 0xbd, 0xb7, 0xb7, 0xb4, 0xb0, 0xae, 0xb0, 0xb2, 0xb3, 0xb4, 0xb2, 0xae, 0xa4, 0x97, 0x8e, 0x7b, 0x63, 0x53, 0x49, 0x50, 0x61, 0x6a, 0x70, 0x74, 0x6f, 0x70, 0x6b, 0x69, 0x6c, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x70, 0x6d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x57, 0x51, 0x48, 0x43, 0x42, 0x43, 0x45, 0x47, 0x4b, 0x4e, 0x51, 0x54, 0x5a, 0x67, 0x77, 0x82, 0x83, 0x86, 0x87, 0x87, 0x88, 0x89, 0x88, 0x86, 0x71, 0x52, 0x45, 0x51, 0x57, 0x52, 0x58, 0x68, 0x76, 0x7b, 0x75, 0x6c, 0x6a, 0x67, 0x60, 0x5e, 0x4c, 0x58, 0x69, 0x75, 0x77, 0x6f, 0x61, 0x56, 0x5a, 0x59, 0x54, 0x5f, 0x75, 0x7e, 0x97, 0xc3, 0xd6, 0xac, 0x56, 0x66, 0x72, 0x69, 0x50, 0x47, 0x49, 0x42, 0x47, 0x55, 0x5c, 0x63, 0x6b, 0x6d, 0x5a, 0x5d, 0x56, 0x4b, 0x50, 0x62, 0x6e, 0x6e, 0x6f, 0x66, 0x63, 0x6a, 0x6b, 0x59, 0x3c, 0x28, 0x34, 0x34, 0x3c, 0x47, 0x48, 0x3f, 0x39, 0x3a, 0x41, 0x49, 0x48, 0x3f, 0x37, 0x30, 0x30, 0x39, 0x3b, 0x38, 0x37, 0x38, 0x31, 0x25, 0x1e, 0x1e, 0x27, 0x27, 0x2a, 0x2c, 0x2c, 0x3a, 0x62, 0x8a, 0x86, 0x75, 0x7a, 0x8c, 0x8c, 0x7e, 0x69, 0x53, 0x4a, 0x56, 0x61, 0x65, 0x67, 0x66, 0x5c, 0x4e, 0x59, 0x52, 0x4d, 0x4d, 0x49, 0x42, 0x40, 0x44, 0x3f, 0x4a, 0x56, 0x58, 0x4f, 0x43, 0x3a, 0x35, 0x57, 0x52, 0x4d, 0x4b, 0x4b, 0x48, 0x43, 0x3f, 0x34, 0x35, 0x44, 0x57, 0x62, 0x69, 0x6b, 0x67, 0x66, 0x67, 0x68, 0x67, 0x66, 0x65, 0x65, 0x66, 0x66, 0x65, 0x65, 0x65, 0x64, 0x64, 0x62, 0x61, 0x69, 0x67, 0x67, 0x6b, 0x6d, 0x6d, 0x6d, 0x6f, 0x73, 0x75, 0x77, 0x79, 0x79, 0x78, 0x75, 0x70, 0x6c, 0x6d, 0x6c, 0x6b, 0x6d, 0x6c, 0x64, 0x59, 0x50, 0x4f, 0x59, 0x79, 0x95, 0x8d, 0x6b, 0x54, 0x46, 0x49, 0x47, 0x42, 0x40, 0x40, 0x44, 0x4b, 0x76, 0x83, 0x79, 0x57, 0x45, 0x4a, 0x47, 0x38, 0x3d, 0x39, 0x34, 0x31, 0x32, 0x35, 0x38, 0x3a, 0x31, 0x2f, 0x29, 0x26, 0x39, 0x5f, 0x70, 0x64, 0x51, 0x37, 0x2b, 0x2f, 0x31, 0x31, 0x33, 0x34, 0x2b, 0x2f, 0x35, 0x38, 0x35, 0x31, 0x31, 0x33, 0x35, 0x35, 0x33, 0x32, 0x37, 0x3f, 0x40, 0x3d, 0x3e, 0x3a, 0x34, 0x30, 0x31, 0x37, 0x41, 0x49, 0x4f, 0x4f, 0x4e, 0x4e, 0x4d, 0x4a, 0x45, 0x42, 0x39, 0x38, 0x3c, 0x45, 0x51, 0x54, 0x4d, 0x43, 0x3e, 0x3b, 0x3b, 0x3f, 0x44, 0x48, 0x4d, 0x51, 0x52, 0x52, 0x50, 0x4c, 0x4a, 0x4d, 0x53, 0x58, 0x68, 0x66, 0x62, 0x61, 0x64, 0x68, 0x67, 0x64, 0x5d, 0x59, 0x57, 0x58, 0x5f, 0x67, 0x6e, 0x71, 0x74, 0x77, 0x7b, 0x7d, 0x7b, 0x78, 0x74, 0x72, 0x79, 0x78, 0x79, 0x79, 0x76, 0x6e, 0x63, 0x5b, 0x51, 0x54, 0x58, 0x5c, 0x61, 0x61, 0x59, 0x51, 0x51, 0x52, 0x55, 0x5b, 0x62, 0x6a, 0x72, 0x77, 0x7c, 0x7c, 0x7a, 0x73, 0x68, 0x60, 0x5d, 0x5d, 0x5f, 0x5e, 0x59, 0x52, 0x4f, 0x52, 0x58, 0x5b, 0x5c, 0x5d, 0x5e, 0x5c, 0x53, 0x48, 0x41, 0x3f, 0x3e, 0x3c, 0x3b, 0x3c, 0x3d, 0x3c, 0x3a, 0x37, 0x3f, 0x3a, 0x37, 0x3b, 0x47, 0x51, 0x53, 0x51, 0x46, 0x42, 0x3e, 0x3d, 0x3e, 0x3e, 0x3c, 0x3a, 0x41, 0x44, 0x48, 0x4b, 0x4d, 0x4c, 0x48, 0x44, 0x45, 0x41, 0x3b, 0x38, 0x39, 0x3c, 0x3d, 0x3d, 0x43, 0x3d, 0x37, 0x32, 0x2c, 0x27, 0x27, 0x2c, 0x30, 0x34, 0x39, 0x3c, 0x3d, 0x3d, 0x3e, 0x3f, 0x3c, 0x38, 0x33, 0x37, 0x4a, 0x62, 0x73, 0x79, 0x7d, 0x82, 0x88, 0x8b, 0x8d, 0x8e, 0x8f, 0x8e, 0x90, 0x90, 0x91, 0x91, 0x90, 0x8e, 0x8a, 0x87, 0x8b, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b, 0x8e, 0x8f, 0x91, 0x94, 0x98, 0x9b, 0x9b, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e, 0x9e, 0xa0, 0xa1, 0xa1, 0xa3, 0xa3, 0xa0, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0x9d, 0x9b, 0x9c, 0x9d, 0x9c, 0x9b, 0x9b, 0x9f, 0xa5, 0xa4, 0xa1, 0x9f, 0x98, 0x94, 0x97, 0x9b, 0x96, 0x91, 0x90, 0x90, 0x90, 0x90, 0x92, 0x90, 0x92, 0x94, 0x91, 0x90, 0x94, 0x94, 0x8f, 0x95, 0x94, 0x91, 0x8d, 0x8a, 0x8a, 0x8d, 0x90, 0x8f, 0x90, 0x8e, 0x89, 0x86, 0x87, 0x88, 0x88, 0x7c, 0x80, 0x81, 0x7c, 0x77, 0x75, 0x75, 0x75, 0x73, 0x75, 0x77, 0x76, 0x72, 0x6e, 0x6b, 0x6b, 0x6a, 0x68, 0x66, 0x68, 0x6b, 0x6d, 0x6b, 0x68, 0x66, 0x68, 0x68, 0x64, 0x61, 0x61, 0x61, 0x61, 0x62, 0x5c, 0x55, 0x51, 0x50, 0x4f, 0x4c, 0x4a, 0x4b, 0x48, 0x46, 0x4c, 0x55, 0x61, 0x82, 0xa9, 0xbe, 0xbf, 0xbe, 0xbc, 0xbd, 0xbf, 0xc1, 0xc0, 0xb7, 0xb7, 0xb5, 0xb3, 0xb4, 0xb5, 0xb1, 0xaa, 0xa8, 0x9c, 0x8c, 0x7b, 0x6e, 0x6d, 0x67, 0x59, 0x4f, 0x4a, 0x50, 0x5c, 0x64, 0x69, 0x6b, 0x6b, 0x71, 0x6e, 0x6e, 0x72, 0x75, 0x75, 0x74, 0x74, 0x75, 0x6f, 0x6c, 0x6d, 0x6d, 0x68, 0x63, 0x60, 0x53, 0x54, 0x51, 0x4a, 0x43, 0x41, 0x44, 0x48, 0x4b, 0x4d, 0x4f, 0x50, 0x53, 0x60, 0x73, 0x83, 0x84, 0x85, 0x82, 0x7c, 0x79, 0x7b, 0x7e, 0x7f, 0x75, 0x5b, 0x44, 0x41, 0x44, 0x44, 0x4d, 0x5f, 0x6e, 0x71, 0x70, 0x6f, 0x6d, 0x5f, 0x53, 0x53, 0x51, 0x54, 0x58, 0x5a, 0x5b, 0x5b, 0x5e, 0x61, 0x5f, 0x62, 0x5c, 0x60, 0x70, 0x75, 0x83, 0xa4, 0xaa, 0x8d, 0x45, 0x59, 0x60, 0x58, 0x48, 0x4a, 0x47, 0x43, 0x4a, 0x56, 0x5b, 0x65, 0x74, 0x7d, 0x87, 0x78, 0x5e, 0x42, 0x31, 0x30, 0x3e, 0x4c, 0x55, 0x59, 0x5f, 0x5f, 0x51, 0x3c, 0x33, 0x34, 0x3b, 0x3e, 0x49, 0x56, 0x56, 0x4a, 0x41, 0x41, 0x3f, 0x44, 0x42, 0x3b, 0x36, 0x30, 0x2e, 0x34, 0x39, 0x3c, 0x3a, 0x30, 0x25, 0x1d, 0x15, 0x0e, 0x1a, 0x21, 0x1c, 0x16, 0x2f, 0x61, 0x83, 0x89, 0x7c, 0x70, 0x74, 0x7b, 0x6f, 0x5d, 0x4c, 0x3a, 0x35, 0x3a, 0x3f, 0x42, 0x47, 0x4c, 0x4b, 0x47, 0x2d, 0x31, 0x33, 0x2f, 0x2c, 0x30, 0x38, 0x3f, 0x59, 0x51, 0x44, 0x39, 0x37, 0x42, 0x55, 0x65, 0x41, 0x3b, 0x37, 0x3b, 0x41, 0x42, 0x3f, 0x3d, 0x35, 0x33, 0x3c, 0x49, 0x4f, 0x55, 0x58, 0x56, 0x55, 0x58, 0x5a, 0x59, 0x55, 0x54, 0x56, 0x59, 0x56, 0x57, 0x59, 0x5b, 0x5b, 0x5b, 0x5b, 0x5a, 0x5b, 0x57, 0x57, 0x5a, 0x5d, 0x5d, 0x5b, 0x5b, 0x5c, 0x5d, 0x5c, 0x5b, 0x5a, 0x5b, 0x5e, 0x60, 0x5f, 0x62, 0x60, 0x59, 0x55, 0x52, 0x49, 0x3d, 0x34, 0x3a, 0x47, 0x62, 0x7f, 0x80, 0x68, 0x54, 0x50, 0x48, 0x46, 0x4a, 0x47, 0x46, 0x55, 0x69, 0x99, 0x9e, 0x8a, 0x5f, 0x46, 0x47, 0x44, 0x38, 0x32, 0x30, 0x2c, 0x29, 0x28, 0x2c, 0x32, 0x37, 0x31, 0x2f, 0x28, 0x2b, 0x4e, 0x85, 0x97, 0x84, 0x51, 0x3a, 0x2f, 0x34, 0x36, 0x35, 0x37, 0x36, 0x33, 0x3a, 0x3d, 0x38, 0x33, 0x34, 0x37, 0x37, 0x34, 0x33, 0x2f, 0x31, 0x3d, 0x4c, 0x4d, 0x46, 0x3f, 0x39, 0x34, 0x33, 0x36, 0x3d, 0x47, 0x50, 0x49, 0x49, 0x49, 0x4a, 0x49, 0x46, 0x40, 0x3c, 0x34, 0x35, 0x38, 0x41, 0x4d, 0x54, 0x4f, 0x46, 0x41, 0x41, 0x44, 0x4b, 0x4e, 0x4d, 0x4b, 0x4a, 0x54, 0x55, 0x55, 0x53, 0x54, 0x58, 0x5c, 0x5d, 0x6c, 0x6a, 0x65, 0x5f, 0x5d, 0x5d, 0x5b, 0x59, 0x5a, 0x5a, 0x5c, 0x62, 0x69, 0x6f, 0x71, 0x71, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x77, 0x7c, 0x80, 0x82, 0x81, 0x7e, 0x7b, 0x77, 0x70, 0x67, 0x61, 0x5f, 0x5a, 0x4d, 0x40, 0x39, 0x3f, 0x4b, 0x58, 0x63, 0x68, 0x6d, 0x70, 0x79, 0x78, 0x76, 0x71, 0x68, 0x60, 0x5e, 0x60, 0x62, 0x60, 0x59, 0x50, 0x4c, 0x50, 0x57, 0x5b, 0x5d, 0x5f, 0x60, 0x5e, 0x56, 0x4c, 0x48, 0x48, 0x45, 0x43, 0x42, 0x41, 0x40, 0x3f, 0x3d, 0x3c, 0x3e, 0x39, 0x35, 0x39, 0x43, 0x4b, 0x4b, 0x48, 0x44, 0x42, 0x3f, 0x3c, 0x3b, 0x38, 0x34, 0x30, 0x36, 0x3b, 0x41, 0x46, 0x4b, 0x51, 0x53, 0x53, 0x54, 0x4e, 0x43, 0x3a, 0x38, 0x3c, 0x3e, 0x3e, 0x45, 0x3e, 0x36, 0x30, 0x2c, 0x2a, 0x2a, 0x2c, 0x32, 0x36, 0x3b, 0x3d, 0x3e, 0x3d, 0x3e, 0x40, 0x3a, 0x36, 0x36, 0x41, 0x59, 0x70, 0x7b, 0x7c, 0x80, 0x85, 0x8b, 0x8d, 0x8d, 0x8d, 0x8f, 0x91, 0x90, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8d, 0x8d, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x90, 0x93, 0x96, 0x97, 0x98, 0x99, 0x9b, 0x9d, 0x9e, 0x9e, 0x9f, 0xa0, 0xa2, 0xa4, 0xa5, 0xa6, 0xa7, 0xa6, 0xa4, 0xa0, 0x9c, 0x9b, 0x9d, 0x9f, 0x9d, 0x9d, 0x9e, 0xa0, 0xa2, 0xa0, 0x9b, 0x96, 0x9d, 0xa3, 0xa4, 0xa1, 0x9f, 0x98, 0x93, 0x97, 0x98, 0x96, 0x94, 0x91, 0x91, 0x91, 0x93, 0x95, 0x98, 0x98, 0x99, 0x95, 0x8e, 0x90, 0x92, 0x8b, 0x94, 0x93, 0x91, 0x8d, 0x8a, 0x8a, 0x8e, 0x92, 0x93, 0x93, 0x8f, 0x8a, 0x87, 0x87, 0x87, 0x85, 0x7e, 0x82, 0x85, 0x81, 0x7c, 0x78, 0x75, 0x73, 0x71, 0x76, 0x7a, 0x7b, 0x77, 0x73, 0x73, 0x74, 0x6d, 0x6b, 0x68, 0x69, 0x6b, 0x6d, 0x6e, 0x6e, 0x6c, 0x6d, 0x6b, 0x66, 0x64, 0x65, 0x66, 0x65, 0x61, 0x5c, 0x57, 0x54, 0x52, 0x52, 0x50, 0x4f, 0x4e, 0x4b, 0x47, 0x4a, 0x51, 0x5f, 0x84, 0xae, 0xc3, 0xc5, 0xc4, 0xc1, 0xc1, 0xc2, 0xc2, 0xc0, 0xc0, 0xc2, 0xc1, 0xbe, 0xbb, 0xb3, 0xa4, 0x94, 0x84, 0x79, 0x6c, 0x61, 0x5c, 0x61, 0x63, 0x59, 0x45, 0x47, 0x50, 0x5d, 0x68, 0x6a, 0x68, 0x66, 0x6b, 0x6a, 0x6d, 0x72, 0x76, 0x77, 0x77, 0x78, 0x7b, 0x76, 0x72, 0x71, 0x6b, 0x62, 0x5e, 0x5f, 0x5d, 0x63, 0x64, 0x5a, 0x4e, 0x48, 0x49, 0x4c, 0x4e, 0x4e, 0x4e, 0x4e, 0x51, 0x5d, 0x74, 0x87, 0x90, 0x90, 0x8b, 0x82, 0x7b, 0x7a, 0x7c, 0x7d, 0x76, 0x64, 0x47, 0x35, 0x35, 0x39, 0x45, 0x56, 0x64, 0x6a, 0x74, 0x7d, 0x76, 0x59, 0x40, 0x3b, 0x43, 0x43, 0x43, 0x40, 0x3a, 0x39, 0x41, 0x49, 0x57, 0x5f, 0x5f, 0x60, 0x68, 0x67, 0x67, 0x73, 0x74, 0x68, 0x37, 0x3e, 0x49, 0x55, 0x4f, 0x48, 0x44, 0x40, 0x46, 0x51, 0x58, 0x5f, 0x64, 0x61, 0x5d, 0x51, 0x4b, 0x50, 0x51, 0x49, 0x45, 0x47, 0x59, 0x58, 0x54, 0x4a, 0x3b, 0x31, 0x36, 0x40, 0x34, 0x34, 0x3c, 0x49, 0x4c, 0x44, 0x3f, 0x40, 0x41, 0x45, 0x40, 0x37, 0x32, 0x2c, 0x29, 0x2f, 0x3a, 0x3a, 0x38, 0x30, 0x22, 0x15, 0x0f, 0x0f, 0x0c, 0x16, 0x21, 0x34, 0x5e, 0x89, 0x92, 0x83, 0x69, 0x56, 0x45, 0x3a, 0x32, 0x2e, 0x2b, 0x25, 0x28, 0x26, 0x26, 0x29, 0x2a, 0x25, 0x1f, 0x1c, 0x2e, 0x2c, 0x2a, 0x30, 0x42, 0x56, 0x5e, 0x5c, 0x3c, 0x49, 0x60, 0x77, 0x83, 0x80, 0x75, 0x6e, 0x3c, 0x34, 0x32, 0x3a, 0x44, 0x47, 0x43, 0x40, 0x37, 0x33, 0x39, 0x43, 0x47, 0x4e, 0x54, 0x54, 0x52, 0x53, 0x52, 0x4f, 0x4c, 0x4c, 0x4f, 0x52, 0x51, 0x54, 0x57, 0x5a, 0x5b, 0x5b, 0x5a, 0x5a, 0x5e, 0x5c, 0x5b, 0x5d, 0x5d, 0x5a, 0x58, 0x58, 0x56, 0x57, 0x59, 0x5a, 0x59, 0x57, 0x56, 0x56, 0x50, 0x54, 0x56, 0x50, 0x48, 0x44, 0x44, 0x45, 0x48, 0x52, 0x52, 0x4b, 0x4c, 0x4f, 0x50, 0x52, 0x57, 0x4b, 0x4d, 0x56, 0x52, 0x53, 0x6e, 0x8e, 0x8f, 0x82, 0x67, 0x4b, 0x3e, 0x40, 0x41, 0x3e, 0x34, 0x31, 0x2c, 0x27, 0x26, 0x27, 0x29, 0x2a, 0x2e, 0x28, 0x23, 0x2a, 0x4d, 0x78, 0x7b, 0x5e, 0x3e, 0x34, 0x35, 0x3d, 0x3d, 0x3c, 0x3c, 0x39, 0x48, 0x4f, 0x4d, 0x41, 0x3d, 0x44, 0x47, 0x42, 0x33, 0x30, 0x2a, 0x2e, 0x43, 0x5b, 0x60, 0x58, 0x3b, 0x34, 0x30, 0x34, 0x3a, 0x41, 0x48, 0x4e, 0x49, 0x4c, 0x4d, 0x4b, 0x46, 0x42, 0x40, 0x40, 0x3a, 0x3c, 0x3d, 0x3e, 0x43, 0x48, 0x47, 0x43, 0x47, 0x4a, 0x50, 0x57, 0x58, 0x56, 0x54, 0x55, 0x54, 0x55, 0x54, 0x53, 0x58, 0x60, 0x64, 0x64, 0x65, 0x69, 0x6a, 0x68, 0x65, 0x65, 0x64, 0x63, 0x57, 0x5b, 0x60, 0x66, 0x6b, 0x6e, 0x70, 0x71, 0x6f, 0x6b, 0x68, 0x6a, 0x70, 0x75, 0x77, 0x76, 0x6f, 0x73, 0x79, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x78, 0x6b, 0x5a, 0x51, 0x53, 0x52, 0x48, 0x3c, 0x42, 0x49, 0x55, 0x61, 0x67, 0x69, 0x6d, 0x73, 0x72, 0x70, 0x70, 0x70, 0x6a, 0x63, 0x60, 0x61, 0x60, 0x5d, 0x56, 0x4c, 0x48, 0x4c, 0x53, 0x58, 0x59, 0x5b, 0x5e, 0x5d, 0x56, 0x4f, 0x4d, 0x4f, 0x52, 0x50, 0x4e, 0x4a, 0x47, 0x44, 0x44, 0x44, 0x41, 0x3e, 0x3b, 0x3d, 0x41, 0x43, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3e, 0x3a, 0x35, 0x31, 0x2e, 0x38, 0x3f, 0x47, 0x4b, 0x50, 0x57, 0x5d, 0x5e, 0x62, 0x5b, 0x4e, 0x41, 0x3d, 0x40, 0x42, 0x41, 0x3c, 0x3f, 0x3e, 0x36, 0x2d, 0x28, 0x29, 0x2b, 0x32, 0x36, 0x3b, 0x3d, 0x3d, 0x3d, 0x3e, 0x3f, 0x3f, 0x38, 0x3f, 0x57, 0x6e, 0x77, 0x79, 0x7c, 0x83, 0x85, 0x88, 0x8a, 0x8b, 0x8b, 0x8e, 0x91, 0x92, 0x92, 0x90, 0x8d, 0x8a, 0x8a, 0x8d, 0x90, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8f, 0x93, 0x96, 0x96, 0x98, 0x99, 0x9a, 0x99, 0x9a, 0x9c, 0x9e, 0xa3, 0xa3, 0xa2, 0xa3, 0xa4, 0xa6, 0xa7, 0xa7, 0xa8, 0xa7, 0xa5, 0xa2, 0xa0, 0x9e, 0x9e, 0x9f, 0x9d, 0xa0, 0xa3, 0xa4, 0xa3, 0xa0, 0x9b, 0x96, 0x9d, 0xa4, 0xa5, 0xa3, 0xa1, 0x99, 0x94, 0x97, 0x9a, 0x9b, 0x9b, 0x98, 0x96, 0x98, 0x9b, 0x9e, 0x9d, 0x9b, 0x9d, 0x98, 0x8d, 0x90, 0x94, 0x8c, 0x8e, 0x8f, 0x90, 0x8e, 0x8d, 0x8d, 0x90, 0x94, 0x99, 0x95, 0x8d, 0x87, 0x85, 0x86, 0x85, 0x82, 0x83, 0x84, 0x82, 0x80, 0x7f, 0x7e, 0x79, 0x74, 0x76, 0x78, 0x7b, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x71, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x70, 0x70, 0x6e, 0x6a, 0x69, 0x6a, 0x69, 0x66, 0x60, 0x5e, 0x5a, 0x57, 0x54, 0x53, 0x52, 0x52, 0x53, 0x51, 0x4e, 0x4d, 0x4e, 0x56, 0x78, 0xa2, 0xc2, 0xc5, 0xc6, 0xc5, 0xc4, 0xc3, 0xc0, 0xbc, 0xbe, 0xc1, 0xbf, 0xb7, 0xac, 0x9f, 0x8a, 0x78, 0x72, 0x69, 0x62, 0x5c, 0x57, 0x58, 0x54, 0x48, 0x42, 0x47, 0x4e, 0x5a, 0x66, 0x67, 0x63, 0x62, 0x64, 0x64, 0x67, 0x6d, 0x72, 0x74, 0x77, 0x79, 0x80, 0x7d, 0x7a, 0x76, 0x6a, 0x5e, 0x5d, 0x63, 0x60, 0x67, 0x68, 0x5d, 0x4f, 0x47, 0x46, 0x47, 0x4d, 0x4c, 0x4b, 0x4c, 0x50, 0x5e, 0x77, 0x8d, 0x97, 0x98, 0x94, 0x8b, 0x83, 0x7f, 0x7e, 0x7d, 0x76, 0x6b, 0x50, 0x3b, 0x39, 0x3c, 0x46, 0x58, 0x61, 0x6b, 0x77, 0x80, 0x77, 0x57, 0x3c, 0x36, 0x3a, 0x39, 0x37, 0x30, 0x29, 0x2a, 0x38, 0x48, 0x57, 0x5c, 0x60, 0x62, 0x63, 0x64, 0x67, 0x6b, 0x71, 0x69, 0x54, 0x4e, 0x54, 0x5d, 0x4e, 0x3a, 0x3d, 0x3c, 0x45, 0x50, 0x58, 0x5e, 0x59, 0x4c, 0x48, 0x3d, 0x36, 0x36, 0x34, 0x32, 0x3e, 0x4f, 0x56, 0x4c, 0x40, 0x38, 0x35, 0x35, 0x37, 0x38, 0x2c, 0x25, 0x25, 0x2e, 0x36, 0x37, 0x39, 0x3d, 0x3c, 0x43, 0x41, 0x38, 0x2f, 0x25, 0x20, 0x25, 0x2e, 0x30, 0x32, 0x2c, 0x1f, 0x14, 0x12, 0x16, 0x12, 0x1d, 0x3b, 0x68, 0x88, 0x84, 0x62, 0x43, 0x40, 0x3b, 0x2f, 0x27, 0x2b, 0x2c, 0x25, 0x1f, 0x2e, 0x21, 0x1c, 0x24, 0x2d, 0x32, 0x3a, 0x43, 0x32, 0x30, 0x38, 0x4e, 0x68, 0x75, 0x72, 0x6a, 0x82, 0x7e, 0x7a, 0x76, 0x71, 0x6f, 0x74, 0x7b, 0x40, 0x38, 0x36, 0x3f, 0x4b, 0x4c, 0x46, 0x41, 0x3d, 0x38, 0x3d, 0x44, 0x47, 0x4e, 0x56, 0x57, 0x5b, 0x57, 0x52, 0x4d, 0x4b, 0x4c, 0x4f, 0x51, 0x53, 0x56, 0x59, 0x5b, 0x5c, 0x5b, 0x5a, 0x59, 0x59, 0x5a, 0x5b, 0x5d, 0x5b, 0x58, 0x58, 0x5a, 0x5a, 0x57, 0x56, 0x55, 0x54, 0x54, 0x55, 0x57, 0x58, 0x4f, 0x48, 0x4a, 0x4c, 0x4a, 0x4b, 0x4f, 0x5b, 0x6a, 0x6c, 0x62, 0x61, 0x62, 0x5d, 0x58, 0x61, 0x66, 0x65, 0x55, 0x4e, 0x67, 0x8c, 0xa0, 0x8b, 0x6e, 0x4d, 0x3f, 0x3d, 0x3f, 0x41, 0x45, 0x3c, 0x37, 0x30, 0x2b, 0x29, 0x26, 0x23, 0x20, 0x2e, 0x29, 0x2c, 0x3e, 0x61, 0x7e, 0x74, 0x53, 0x37, 0x33, 0x38, 0x3e, 0x3d, 0x40, 0x48, 0x4a, 0x5d, 0x66, 0x61, 0x51, 0x4e, 0x57, 0x56, 0x4b, 0x39, 0x32, 0x28, 0x2b, 0x45, 0x64, 0x6e, 0x66, 0x4e, 0x46, 0x40, 0x42, 0x47, 0x4b, 0x4f, 0x52, 0x54, 0x58, 0x59, 0x54, 0x4a, 0x44, 0x45, 0x49, 0x44, 0x47, 0x45, 0x3e, 0x3a, 0x3b, 0x3d, 0x3c, 0x36, 0x3b, 0x44, 0x4b, 0x4f, 0x52, 0x59, 0x60, 0x6e, 0x6a, 0x62, 0x5c, 0x5e, 0x65, 0x69, 0x68, 0x61, 0x67, 0x6b, 0x68, 0x62, 0x5c, 0x58, 0x55, 0x60, 0x64, 0x68, 0x6b, 0x6b, 0x6d, 0x71, 0x75, 0x75, 0x6d, 0x67, 0x69, 0x72, 0x77, 0x75, 0x70, 0x6e, 0x73, 0x79, 0x7b, 0x7a, 0x77, 0x75, 0x75, 0x78, 0x69, 0x58, 0x55, 0x5f, 0x69, 0x66, 0x5d, 0x55, 0x5e, 0x6c, 0x75, 0x73, 0x6d, 0x6f, 0x74, 0x74, 0x72, 0x72, 0x72, 0x6b, 0x61, 0x5a, 0x5a, 0x57, 0x5b, 0x5b, 0x58, 0x55, 0x54, 0x54, 0x53, 0x54, 0x56, 0x59, 0x5a, 0x55, 0x4f, 0x4f, 0x52, 0x59, 0x58, 0x55, 0x4f, 0x49, 0x46, 0x46, 0x47, 0x4b, 0x4b, 0x4b, 0x4b, 0x49, 0x48, 0x49, 0x4b, 0x47, 0x47, 0x45, 0x41, 0x3c, 0x37, 0x34, 0x32, 0x3b, 0x42, 0x47, 0x46, 0x46, 0x4a, 0x4c, 0x4c, 0x56, 0x51, 0x47, 0x3d, 0x3a, 0x3d, 0x3d, 0x3a, 0x40, 0x40, 0x39, 0x2f, 0x28, 0x29, 0x2a, 0x29, 0x32, 0x36, 0x3b, 0x3d, 0x3d, 0x3c, 0x3d, 0x3e, 0x3f, 0x36, 0x45, 0x6b, 0x81, 0x7e, 0x7c, 0x85, 0x87, 0x86, 0x86, 0x89, 0x8b, 0x8e, 0x92, 0x95, 0x94, 0x93, 0x8e, 0x88, 0x83, 0x84, 0x89, 0x8f, 0x93, 0x92, 0x92, 0x91, 0x91, 0x93, 0x96, 0x99, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0xa2, 0xa1, 0xa1, 0xa3, 0xa5, 0xa8, 0xa9, 0xaa, 0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa5, 0xa2, 0xa5, 0xa7, 0xa5, 0xa1, 0x9e, 0x9c, 0x9b, 0x9f, 0xa7, 0xa8, 0xa6, 0xa3, 0x9c, 0x95, 0x98, 0x9b, 0x9e, 0x9f, 0x9d, 0x9a, 0x9b, 0xa0, 0xa3, 0x9e, 0x9b, 0x9e, 0x99, 0x8d, 0x91, 0x98, 0x90, 0x88, 0x8b, 0x8f, 0x90, 0x90, 0x90, 0x92, 0x95, 0x9f, 0x99, 0x8e, 0x87, 0x85, 0x88, 0x87, 0x83, 0x86, 0x82, 0x7d, 0x7c, 0x80, 0x83, 0x7e, 0x77, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x70, 0x6d, 0x6d, 0x6d, 0x6a, 0x65, 0x62, 0x61, 0x5e, 0x5a, 0x56, 0x53, 0x52, 0x52, 0x53, 0x54, 0x51, 0x4d, 0x47, 0x49, 0x66, 0x8f, 0xbd, 0xc2, 0xc6, 0xc6, 0xc5, 0xc2, 0xbd, 0xb7, 0xad, 0xb0, 0xae, 0xa2, 0x96, 0x89, 0x79, 0x6a, 0x66, 0x5d, 0x57, 0x52, 0x50, 0x55, 0x55, 0x4b, 0x48, 0x4d, 0x50, 0x57, 0x62, 0x63, 0x60, 0x62, 0x61, 0x60, 0x62, 0x67, 0x6c, 0x70, 0x74, 0x78, 0x7f, 0x7d, 0x7b, 0x76, 0x68, 0x5b, 0x5c, 0x65, 0x62, 0x67, 0x67, 0x5c, 0x50, 0x49, 0x47, 0x46, 0x44, 0x42, 0x42, 0x45, 0x4b, 0x5c, 0x77, 0x8e, 0x90, 0x93, 0x93, 0x8e, 0x88, 0x84, 0x81, 0x7f, 0x76, 0x6d, 0x52, 0x3d, 0x3c, 0x3f, 0x4c, 0x62, 0x61, 0x6b, 0x73, 0x75, 0x6d, 0x56, 0x43, 0x40, 0x33, 0x34, 0x34, 0x31, 0x2b, 0x30, 0x43, 0x57, 0x62, 0x62, 0x68, 0x6a, 0x65, 0x65, 0x6b, 0x6e, 0x7f, 0x6d, 0x61, 0x49, 0x3b, 0x3a, 0x3b, 0x3c, 0x37, 0x3a, 0x43, 0x4e, 0x5a, 0x69, 0x6e, 0x65, 0x58, 0x47, 0x38, 0x34, 0x32, 0x30, 0x33, 0x39, 0x37, 0x36, 0x35, 0x33, 0x33, 0x35, 0x35, 0x34, 0x21, 0x18, 0x16, 0x1f, 0x27, 0x27, 0x27, 0x2a, 0x2c, 0x39, 0x3e, 0x38, 0x2e, 0x21, 0x1a, 0x1f, 0x1b, 0x28, 0x2c, 0x20, 0x14, 0x11, 0x11, 0x10, 0x17, 0x43, 0x6c, 0x72, 0x61, 0x4f, 0x45, 0x3f, 0x38, 0x46, 0x3f, 0x2c, 0x25, 0x20, 0x1e, 0x24, 0x20, 0x1c, 0x26, 0x3c, 0x44, 0x38, 0x2d, 0x2c, 0x27, 0x39, 0x5a, 0x78, 0x7f, 0x74, 0x6d, 0x6f, 0x6b, 0x72, 0x77, 0x70, 0x5f, 0x57, 0x61, 0x71, 0x3c, 0x39, 0x38, 0x3b, 0x3f, 0x40, 0x40, 0x40, 0x3a, 0x3d, 0x42, 0x48, 0x4d, 0x51, 0x53, 0x54, 0x55, 0x53, 0x4e, 0x4a, 0x49, 0x4a, 0x4c, 0x4e, 0x4e, 0x51, 0x55, 0x58, 0x59, 0x58, 0x58, 0x58, 0x57, 0x56, 0x54, 0x55, 0x57, 0x57, 0x56, 0x54, 0x57, 0x55, 0x52, 0x52, 0x53, 0x55, 0x57, 0x58, 0x53, 0x52, 0x52, 0x52, 0x51, 0x53, 0x59, 0x61, 0x5e, 0x63, 0x65, 0x64, 0x64, 0x68, 0x6f, 0x74, 0x78, 0x77, 0x73, 0x63, 0x56, 0x63, 0x83, 0x98, 0x84, 0x6e, 0x56, 0x49, 0x3f, 0x37, 0x38, 0x40, 0x48, 0x49, 0x40, 0x31, 0x2a, 0x2c, 0x2b, 0x26, 0x2e, 0x2b, 0x2b, 0x32, 0x3d, 0x44, 0x41, 0x3a, 0x3a, 0x3b, 0x3e, 0x43, 0x4a, 0x54, 0x62, 0x6d, 0x82, 0x76, 0x6c, 0x67, 0x5f, 0x4d, 0x3c, 0x32, 0x35, 0x3c, 0x3b, 0x32, 0x3d, 0x64, 0x80, 0x7f, 0x5d, 0x5b, 0x71, 0x8a, 0x84, 0x69, 0x56, 0x51, 0x4e, 0x54, 0x58, 0x55, 0x51, 0x51, 0x52, 0x52, 0x52, 0x4d, 0x48, 0x44, 0x3f, 0x39, 0x37, 0x37, 0x36, 0x3b, 0x3c, 0x3b, 0x40, 0x4b, 0x51, 0x50, 0x50, 0x52, 0x59, 0x63, 0x6c, 0x6d, 0x6b, 0x68, 0x61, 0x61, 0x64, 0x64, 0x5e, 0x58, 0x59, 0x5e, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x6c, 0x6a, 0x64, 0x62, 0x6d, 0x7b, 0x79, 0x6e, 0x67, 0x68, 0x6f, 0x78, 0x7c, 0x79, 0x78, 0x7a, 0x85, 0x77, 0x64, 0x5e, 0x6c, 0x7c, 0x75, 0x64, 0x57, 0x5c, 0x64, 0x6c, 0x71, 0x73, 0x74, 0x74, 0x77, 0x7b, 0x7b, 0x76, 0x71, 0x6c, 0x65, 0x5e, 0x5e, 0x5e, 0x62, 0x67, 0x69, 0x65, 0x60, 0x5d, 0x55, 0x55, 0x58, 0x5a, 0x55, 0x4d, 0x4c, 0x52, 0x53, 0x52, 0x50, 0x4b, 0x44, 0x3f, 0x3d, 0x3c, 0x40, 0x41, 0x41, 0x41, 0x43, 0x48, 0x4c, 0x4c, 0x49, 0x4a, 0x48, 0x42, 0x39, 0x33, 0x30, 0x31, 0x3b, 0x3a, 0x39, 0x37, 0x35, 0x34, 0x3a, 0x40, 0x43, 0x48, 0x4b, 0x48, 0x42, 0x41, 0x42, 0x43, 0x43, 0x42, 0x3e, 0x38, 0x31, 0x2d, 0x2d, 0x2e, 0x30, 0x36, 0x3b, 0x3d, 0x40, 0x41, 0x3e, 0x39, 0x3e, 0x51, 0x66, 0x71, 0x79, 0x7f, 0x80, 0x7c, 0x85, 0x87, 0x8a, 0x8b, 0x8c, 0x8d, 0x91, 0x93, 0x92, 0x8e, 0x8b, 0x8b, 0x8b, 0x8a, 0x8b, 0x8d, 0x92, 0x91, 0x90, 0x91, 0x94, 0x97, 0x99, 0x9a, 0x9d, 0x9c, 0x9a, 0x99, 0x9b, 0x9e, 0xa2, 0xa5, 0xa0, 0xa1, 0xa4, 0xa7, 0xa9, 0xaa, 0xaa, 0xa9, 0xab, 0xab, 0xab, 0xa9, 0xa7, 0xa5, 0xa6, 0xa6, 0xa4, 0xa9, 0xaa, 0xa6, 0xa0, 0x9e, 0x9e, 0x9d, 0xa1, 0xa5, 0xa8, 0xa6, 0xa0, 0x9a, 0x97, 0x96, 0x9d, 0xa0, 0xa4, 0xa6, 0xa5, 0xa4, 0xa5, 0xa5, 0x9a, 0x99, 0x9e, 0xa2, 0x9e, 0x93, 0x8e, 0x91, 0x84, 0x8c, 0x92, 0x92, 0x90, 0x90, 0x93, 0x94, 0x9a, 0x96, 0x8e, 0x87, 0x86, 0x89, 0x8a, 0x88, 0x87, 0x7a, 0x74, 0x7e, 0x87, 0x84, 0x7e, 0x7b, 0x7b, 0x7c, 0x7d, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x68, 0x65, 0x60, 0x5d, 0x5c, 0x5b, 0x5a, 0x5a, 0x53, 0x4f, 0x4d, 0x4d, 0x4b, 0x4a, 0x54, 0x61, 0x94, 0xc1, 0xd0, 0xc4, 0xc5, 0xc4, 0xb5, 0xac, 0xa0, 0x8c, 0x86, 0x7f, 0x76, 0x70, 0x5f, 0x56, 0x54, 0x54, 0x54, 0x55, 0x54, 0x4f, 0x47, 0x42, 0x43, 0x49, 0x54, 0x5d, 0x5f, 0x5c, 0x5a, 0x59, 0x56, 0x56, 0x58, 0x5c, 0x5e, 0x61, 0x68, 0x6f, 0x72, 0x73, 0x71, 0x67, 0x5a, 0x57, 0x62, 0x6e, 0x69, 0x66, 0x5f, 0x57, 0x4f, 0x4a, 0x47, 0x47, 0x45, 0x44, 0x43, 0x43, 0x4a, 0x58, 0x6b, 0x78, 0x7f, 0x8d, 0x96, 0x92, 0x8b, 0x87, 0x81, 0x7a, 0x78, 0x6e, 0x5d, 0x4b, 0x42, 0x48, 0x57, 0x64, 0x60, 0x65, 0x67, 0x69, 0x70, 0x71, 0x64, 0x51, 0x42, 0x42, 0x40, 0x3b, 0x37, 0x3e, 0x52, 0x65, 0x6e, 0x77, 0x7b, 0x69, 0x5a, 0x6e, 0x88, 0x8a, 0x8a, 0x83, 0x6e, 0x5d, 0x52, 0x3e, 0x34, 0x3d, 0x32, 0x3a, 0x40, 0x43, 0x50, 0x61, 0x63, 0x5a, 0x5a, 0x4d, 0x3e, 0x36, 0x32, 0x2f, 0x30, 0x33, 0x37, 0x3c, 0x38, 0x2e, 0x30, 0x3b, 0x38, 0x2b, 0x1e, 0x19, 0x13, 0x12, 0x19, 0x1e, 0x1c, 0x17, 0x1d, 0x22, 0x24, 0x22, 0x1d, 0x17, 0x12, 0x0f, 0x18, 0x17, 0x19, 0x1a, 0x14, 0x0f, 0x15, 0x1f, 0x3b, 0x59, 0x6e, 0x64, 0x4f, 0x40, 0x34, 0x29, 0x2e, 0x40, 0x47, 0x38, 0x28, 0x25, 0x29, 0x29, 0x3b, 0x49, 0x59, 0x58, 0x42, 0x2b, 0x2b, 0x37, 0x57, 0x6e, 0x82, 0x85, 0x81, 0x7b, 0x6f, 0x62, 0x5a, 0x50, 0x46, 0x42, 0x45, 0x46, 0x42, 0x3c, 0x35, 0x33, 0x33, 0x35, 0x35, 0x33, 0x34, 0x37, 0x36, 0x39, 0x3e, 0x43, 0x49, 0x4f, 0x53, 0x55, 0x55, 0x53, 0x50, 0x4d, 0x4b, 0x4c, 0x4e, 0x4f, 0x4f, 0x52, 0x55, 0x57, 0x58, 0x58, 0x58, 0x59, 0x53, 0x50, 0x4e, 0x4f, 0x52, 0x54, 0x53, 0x52, 0x53, 0x52, 0x51, 0x51, 0x52, 0x53, 0x54, 0x54, 0x54, 0x53, 0x54, 0x55, 0x53, 0x53, 0x58, 0x5d, 0x5f, 0x65, 0x6d, 0x72, 0x71, 0x6f, 0x71, 0x76, 0x82, 0x7a, 0x72, 0x69, 0x63, 0x6e, 0x7e, 0x83, 0x72, 0x68, 0x60, 0x5a, 0x4e, 0x3c, 0x33, 0x34, 0x38, 0x3b, 0x38, 0x30, 0x2c, 0x2d, 0x2f, 0x2d, 0x2a, 0x2d, 0x2f, 0x2e, 0x2e, 0x31, 0x35, 0x38, 0x30, 0x3c, 0x4c, 0x58, 0x5b, 0x5b, 0x5c, 0x5e, 0x60, 0x63, 0x69, 0x69, 0x5e, 0x4d, 0x45, 0x45, 0x54, 0x61, 0x63, 0x4c, 0x3c, 0x4f, 0x6e, 0x7a, 0x71, 0x74, 0x87, 0x9d, 0x9e, 0x8e, 0x75, 0x61, 0x5b, 0x5a, 0x54, 0x4a, 0x43, 0x47, 0x55, 0x62, 0x5f, 0x54, 0x46, 0x3c, 0x36, 0x35, 0x3a, 0x3f, 0x43, 0x46, 0x47, 0x45, 0x48, 0x4f, 0x51, 0x4e, 0x4d, 0x50, 0x57, 0x61, 0x67, 0x66, 0x61, 0x5d, 0x5b, 0x5f, 0x64, 0x65, 0x5f, 0x5a, 0x5d, 0x64, 0x6e, 0x6c, 0x6b, 0x6a, 0x6b, 0x6d, 0x70, 0x71, 0x63, 0x63, 0x61, 0x64, 0x73, 0x83, 0x84, 0x7b, 0x62, 0x63, 0x66, 0x6a, 0x6e, 0x72, 0x7a, 0x82, 0x80, 0x82, 0x7d, 0x72, 0x6d, 0x6c, 0x65, 0x5a, 0x57, 0x59, 0x5b, 0x5d, 0x60, 0x66, 0x6c, 0x71, 0x76, 0x78, 0x76, 0x6f, 0x6a, 0x6e, 0x74, 0x78, 0x6a, 0x68, 0x67, 0x69, 0x68, 0x63, 0x5f, 0x5d, 0x57, 0x5a, 0x5b, 0x57, 0x52, 0x4e, 0x4c, 0x4b, 0x55, 0x54, 0x50, 0x4b, 0x44, 0x3f, 0x3e, 0x3e, 0x3c, 0x3e, 0x3d, 0x3c, 0x3e, 0x42, 0x45, 0x45, 0x41, 0x42, 0x41, 0x3f, 0x3c, 0x3a, 0x3b, 0x3c, 0x3c, 0x3c, 0x3c, 0x3b, 0x37, 0x33, 0x33, 0x35, 0x3b, 0x41, 0x45, 0x44, 0x43, 0x46, 0x4a, 0x4c, 0x4b, 0x4a, 0x47, 0x42, 0x3e, 0x3c, 0x3d, 0x3f, 0x3d, 0x40, 0x45, 0x48, 0x48, 0x48, 0x48, 0x49, 0x53, 0x62, 0x71, 0x77, 0x7c, 0x81, 0x82, 0x7f, 0x83, 0x85, 0x88, 0x8b, 0x8e, 0x91, 0x94, 0x96, 0x90, 0x8d, 0x8b, 0x8b, 0x8a, 0x89, 0x8b, 0x8f, 0x91, 0x90, 0x90, 0x92, 0x96, 0x9a, 0x9d, 0x9e, 0x9b, 0x9d, 0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0x9f, 0xa1, 0xa3, 0xa6, 0xa9, 0xab, 0xaa, 0xa9, 0xa8, 0xaa, 0xaa, 0xa9, 0xa7, 0xa6, 0xa5, 0xa6, 0xa7, 0xa4, 0xa8, 0xa9, 0xa5, 0xa2, 0xa2, 0xa2, 0xa1, 0xa6, 0xa8, 0xa9, 0xa6, 0xa1, 0x9e, 0x9d, 0x9e, 0xa1, 0xa3, 0xa6, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa, 0x9e, 0x9c, 0x9f, 0xa4, 0xa2, 0x99, 0x93, 0x92, 0x8d, 0x94, 0x9a, 0x99, 0x96, 0x95, 0x96, 0x96, 0x97, 0x95, 0x90, 0x8c, 0x8b, 0x8d, 0x8c, 0x88, 0x80, 0x79, 0x78, 0x81, 0x8a, 0x89, 0x84, 0x80, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6b, 0x69, 0x66, 0x64, 0x61, 0x5f, 0x5c, 0x5a, 0x58, 0x54, 0x51, 0x50, 0x4c, 0x4a, 0x52, 0x5d, 0x7e, 0xa7, 0xc1, 0xc1, 0xc1, 0xbf, 0xb5, 0xad, 0x91, 0x79, 0x72, 0x6d, 0x69, 0x68, 0x60, 0x5f, 0x54, 0x54, 0x51, 0x4a, 0x41, 0x3c, 0x3c, 0x3f, 0x43, 0x47, 0x4d, 0x52, 0x55, 0x57, 0x59, 0x5b, 0x5e, 0x5b, 0x58, 0x56, 0x56, 0x58, 0x60, 0x68, 0x6b, 0x6d, 0x6d, 0x64, 0x59, 0x57, 0x61, 0x6c, 0x6b, 0x69, 0x66, 0x61, 0x5c, 0x59, 0x58, 0x58, 0x50, 0x4f, 0x4d, 0x4a, 0x4b, 0x4f, 0x57, 0x5d, 0x65, 0x70, 0x79, 0x7b, 0x7d, 0x80, 0x7d, 0x75, 0x6f, 0x6f, 0x6c, 0x64, 0x5c, 0x58, 0x5a, 0x5d, 0x65, 0x66, 0x65, 0x67, 0x6f, 0x76, 0x74, 0x6d, 0x6e, 0x6f, 0x6f, 0x6b, 0x63, 0x5f, 0x65, 0x6d, 0x83, 0x81, 0x7b, 0x6c, 0x6b, 0x87, 0x99, 0x90, 0x64, 0x67, 0x76, 0x80, 0x66, 0x34, 0x20, 0x30, 0x3b, 0x3d, 0x3a, 0x36, 0x3a, 0x48, 0x51, 0x52, 0x55, 0x4b, 0x40, 0x39, 0x34, 0x30, 0x2f, 0x30, 0x2b, 0x34, 0x3a, 0x38, 0x35, 0x33, 0x2e, 0x28, 0x2b, 0x1f, 0x12, 0x0c, 0x0a, 0x09, 0x0a, 0x0c, 0x0f, 0x13, 0x16, 0x16, 0x14, 0x11, 0x0f, 0x0f, 0x13, 0x16, 0x19, 0x17, 0x17, 0x24, 0x40, 0x58, 0x78, 0x74, 0x67, 0x54, 0x44, 0x3b, 0x32, 0x2b, 0x2e, 0x2d, 0x38, 0x49, 0x4a, 0x3f, 0x40, 0x4d, 0x4b, 0x49, 0x43, 0x3a, 0x32, 0x36, 0x48, 0x5c, 0x6e, 0x71, 0x6d, 0x5f, 0x51, 0x48, 0x3e, 0x35, 0x2d, 0x2b, 0x2a, 0x2c, 0x2e, 0x2f, 0x2d, 0x2b, 0x37, 0x37, 0x37, 0x37, 0x33, 0x30, 0x31, 0x35, 0x37, 0x39, 0x3d, 0x42, 0x47, 0x4c, 0x51, 0x53, 0x54, 0x52, 0x50, 0x4e, 0x4d, 0x4d, 0x4e, 0x4f, 0x4f, 0x51, 0x53, 0x54, 0x54, 0x55, 0x56, 0x57, 0x53, 0x4e, 0x4a, 0x4b, 0x4f, 0x52, 0x51, 0x4f, 0x4e, 0x4d, 0x4d, 0x4f, 0x51, 0x52, 0x52, 0x51, 0x50, 0x51, 0x52, 0x54, 0x53, 0x51, 0x54, 0x58, 0x63, 0x68, 0x72, 0x7b, 0x7e, 0x7d, 0x7d, 0x7e, 0x7b, 0x75, 0x71, 0x6e, 0x6c, 0x71, 0x74, 0x6f, 0x6f, 0x6c, 0x6a, 0x63, 0x51, 0x39, 0x2d, 0x2d, 0x2f, 0x30, 0x31, 0x2f, 0x2b, 0x28, 0x28, 0x29, 0x29, 0x2c, 0x2f, 0x2e, 0x2e, 0x33, 0x3e, 0x47, 0x49, 0x58, 0x6b, 0x73, 0x6f, 0x65, 0x5c, 0x57, 0x54, 0x5b, 0x64, 0x67, 0x5d, 0x51, 0x4f, 0x55, 0x5c, 0x5c, 0x55, 0x3f, 0x30, 0x3b, 0x4f, 0x55, 0x67, 0x72, 0x86, 0x96, 0x9e, 0xa1, 0x92, 0x7a, 0x73, 0x6b, 0x5f, 0x50, 0x42, 0x41, 0x50, 0x63, 0x62, 0x57, 0x4a, 0x40, 0x3a, 0x38, 0x3b, 0x3f, 0x3e, 0x42, 0x46, 0x4a, 0x54, 0x62, 0x69, 0x69, 0x62, 0x5d, 0x57, 0x54, 0x57, 0x5c, 0x60, 0x62, 0x57, 0x5a, 0x5e, 0x5e, 0x5d, 0x5f, 0x6a, 0x76, 0x74, 0x70, 0x6a, 0x65, 0x63, 0x65, 0x68, 0x6a, 0x59, 0x5b, 0x5c, 0x61, 0x71, 0x81, 0x83, 0x7c, 0x6b, 0x6c, 0x6f, 0x71, 0x71, 0x72, 0x77, 0x7e, 0x81, 0x85, 0x7f, 0x70, 0x68, 0x6f, 0x7a, 0x7f, 0x78, 0x75, 0x6e, 0x68, 0x65, 0x6b, 0x75, 0x7e, 0x7a, 0x78, 0x71, 0x69, 0x68, 0x6e, 0x77, 0x7c, 0x6c, 0x68, 0x64, 0x63, 0x61, 0x5c, 0x5a, 0x5a, 0x59, 0x60, 0x61, 0x5c, 0x5b, 0x5f, 0x5c, 0x56, 0x55, 0x54, 0x50, 0x49, 0x42, 0x3e, 0x3d, 0x3e, 0x3c, 0x3d, 0x3c, 0x3b, 0x3c, 0x3f, 0x41, 0x41, 0x40, 0x3f, 0x3e, 0x3c, 0x3b, 0x3b, 0x3b, 0x3c, 0x3e, 0x41, 0x47, 0x4d, 0x4e, 0x48, 0x43, 0x41, 0x40, 0x43, 0x43, 0x40, 0x3e, 0x41, 0x44, 0x45, 0x48, 0x47, 0x45, 0x40, 0x3c, 0x3c, 0x3f, 0x42, 0x43, 0x44, 0x48, 0x4b, 0x49, 0x47, 0x4c, 0x55, 0x65, 0x6f, 0x78, 0x7a, 0x7b, 0x80, 0x82, 0x81, 0x84, 0x85, 0x87, 0x8b, 0x8f, 0x93, 0x94, 0x95, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8d, 0x93, 0x92, 0x92, 0x92, 0x94, 0x98, 0x9c, 0x9f, 0xa0, 0x9d, 0xa0, 0xa3, 0xa4, 0xa3, 0xa1, 0xa0, 0xa0, 0xa4, 0xa5, 0xa6, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa, 0xac, 0xab, 0xaa, 0xa9, 0xa8, 0xa8, 0xab, 0xad, 0xaa, 0xac, 0xac, 0xaa, 0xa9, 0xab, 0xac, 0xaa, 0xac, 0xac, 0xaa, 0xa6, 0xa3, 0xa3, 0xa5, 0xa8, 0xa8, 0xa8, 0xa9, 0xac, 0xae, 0xb0, 0xb0, 0xaf, 0xa0, 0x9d, 0x9e, 0xa4, 0xa5, 0x9d, 0x96, 0x93, 0x93, 0x99, 0x9e, 0x9c, 0x98, 0x96, 0x95, 0x93, 0x90, 0x90, 0x8e, 0x8d, 0x8d, 0x8d, 0x8a, 0x85, 0x7b, 0x7c, 0x80, 0x86, 0x8b, 0x8c, 0x88, 0x84, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7e, 0x80, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x76, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x65, 0x61, 0x5e, 0x5e, 0x5a, 0x57, 0x55, 0x50, 0x4c, 0x50, 0x57, 0x5e, 0x82, 0xad, 0xc2, 0xc2, 0xbc, 0xb2, 0xa5, 0x82, 0x6a, 0x64, 0x63, 0x62, 0x63, 0x60, 0x65, 0x60, 0x5c, 0x52, 0x45, 0x39, 0x35, 0x39, 0x3e, 0x41, 0x44, 0x48, 0x4c, 0x4f, 0x53, 0x56, 0x58, 0x62, 0x5f, 0x5b, 0x58, 0x56, 0x56, 0x5c, 0x62, 0x61, 0x64, 0x63, 0x5a, 0x4f, 0x4c, 0x54, 0x5d, 0x60, 0x61, 0x63, 0x65, 0x66, 0x67, 0x6a, 0x6b, 0x66, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6d, 0x6f, 0x70, 0x71, 0x77, 0x7d, 0x7c, 0x76, 0x76, 0x76, 0x73, 0x6e, 0x67, 0x62, 0x60, 0x60, 0x61, 0x5d, 0x5a, 0x5a, 0x5f, 0x66, 0x6d, 0x71, 0x6e, 0x72, 0x79, 0x7d, 0x7b, 0x78, 0x79, 0x7c, 0x77, 0x84, 0x8b, 0x83, 0x80, 0x8a, 0x86, 0x70, 0x67, 0x6f, 0x73, 0x62, 0x47, 0x38, 0x34, 0x2f, 0x2c, 0x34, 0x38, 0x33, 0x2b, 0x2b, 0x38, 0x45, 0x45, 0x41, 0x3d, 0x3a, 0x35, 0x2f, 0x2b, 0x2b, 0x33, 0x2f, 0x2d, 0x2d, 0x2c, 0x2b, 0x2b, 0x2d, 0x1e, 0x13, 0x0d, 0x0f, 0x13, 0x12, 0x12, 0x14, 0x10, 0x12, 0x15, 0x16, 0x15, 0x15, 0x17, 0x19, 0x18, 0x17, 0x18, 0x23, 0x39, 0x55, 0x69, 0x72, 0x76, 0x67, 0x50, 0x38, 0x27, 0x23, 0x2e, 0x3b, 0x4a, 0x4d, 0x45, 0x36, 0x35, 0x43, 0x4c, 0x4a, 0x4d, 0x45, 0x38, 0x2e, 0x30, 0x40, 0x53, 0x5e, 0x52, 0x52, 0x53, 0x54, 0x52, 0x4b, 0x41, 0x3a, 0x37, 0x3b, 0x3b, 0x34, 0x2c, 0x2f, 0x3d, 0x4a, 0x40, 0x3e, 0x3e, 0x3d, 0x3a, 0x37, 0x37, 0x39, 0x38, 0x3a, 0x3d, 0x42, 0x46, 0x49, 0x4b, 0x4d, 0x4f, 0x4e, 0x4d, 0x4c, 0x4c, 0x4c, 0x4d, 0x4d, 0x50, 0x51, 0x52, 0x51, 0x51, 0x51, 0x52, 0x53, 0x54, 0x4f, 0x49, 0x49, 0x4d, 0x50, 0x50, 0x4e, 0x4b, 0x4b, 0x4b, 0x4c, 0x4f, 0x51, 0x51, 0x51, 0x4f, 0x4f, 0x50, 0x52, 0x51, 0x50, 0x52, 0x55, 0x61, 0x65, 0x68, 0x6e, 0x79, 0x83, 0x81, 0x79, 0x74, 0x76, 0x7d, 0x7c, 0x75, 0x74, 0x74, 0x6e, 0x76, 0x77, 0x77, 0x6f, 0x59, 0x40, 0x34, 0x35, 0x37, 0x35, 0x36, 0x37, 0x34, 0x2f, 0x2c, 0x2d, 0x31, 0x2d, 0x2c, 0x32, 0x3d, 0x47, 0x51, 0x57, 0x5c, 0x66, 0x71, 0x76, 0x78, 0x76, 0x73, 0x71, 0x65, 0x5f, 0x5b, 0x5a, 0x56, 0x51, 0x51, 0x54, 0x54, 0x48, 0x3c, 0x34, 0x35, 0x44, 0x4d, 0x49, 0x4e, 0x5d, 0x6f, 0x78, 0x7e, 0x8a, 0x8a, 0x7d, 0x76, 0x6f, 0x67, 0x5f, 0x51, 0x46, 0x49, 0x55, 0x5b, 0x51, 0x45, 0x3e, 0x3b, 0x3b, 0x3d, 0x40, 0x45, 0x44, 0x42, 0x42, 0x48, 0x52, 0x58, 0x58, 0x5e, 0x60, 0x62, 0x63, 0x65, 0x66, 0x62, 0x5e, 0x56, 0x5b, 0x60, 0x64, 0x66, 0x69, 0x6f, 0x74, 0x70, 0x6b, 0x65, 0x5f, 0x5d, 0x5e, 0x61, 0x63, 0x61, 0x62, 0x63, 0x66, 0x71, 0x7b, 0x7b, 0x74, 0x6d, 0x74, 0x7e, 0x86, 0x87, 0x81, 0x7b, 0x77, 0x74, 0x77, 0x76, 0x72, 0x75, 0x80, 0x88, 0x89, 0x89, 0x86, 0x7e, 0x74, 0x6e, 0x6f, 0x76, 0x7d, 0x77, 0x72, 0x6d, 0x6b, 0x6d, 0x6f, 0x6c, 0x67, 0x64, 0x60, 0x5e, 0x5d, 0x5c, 0x59, 0x59, 0x5b, 0x57, 0x5b, 0x5e, 0x5f, 0x62, 0x64, 0x60, 0x59, 0x56, 0x55, 0x52, 0x4b, 0x43, 0x3f, 0x40, 0x41, 0x3f, 0x40, 0x40, 0x3f, 0x40, 0x43, 0x45, 0x44, 0x44, 0x42, 0x40, 0x3d, 0x3b, 0x39, 0x36, 0x34, 0x37, 0x38, 0x3c, 0x44, 0x4a, 0x4d, 0x50, 0x52, 0x4c, 0x4b, 0x46, 0x3f, 0x3c, 0x3d, 0x3d, 0x3c, 0x41, 0x3f, 0x3c, 0x36, 0x32, 0x32, 0x35, 0x39, 0x42, 0x40, 0x43, 0x46, 0x43, 0x40, 0x4b, 0x5b, 0x6c, 0x73, 0x78, 0x79, 0x7b, 0x80, 0x83, 0x84, 0x89, 0x88, 0x89, 0x8c, 0x90, 0x92, 0x91, 0x8f, 0x8d, 0x8d, 0x8d, 0x8d, 0x8b, 0x8b, 0x90, 0x97, 0x95, 0x95, 0x95, 0x96, 0x9a, 0x9d, 0x9e, 0x9f, 0xa2, 0xa3, 0xa3, 0xa1, 0x9f, 0xa0, 0xa4, 0xa7, 0xa4, 0xa3, 0xa3, 0xa3, 0xa5, 0xa8, 0xac, 0xae, 0xac, 0xac, 0xab, 0xaa, 0xa9, 0xab, 0xae, 0xb1, 0xb0, 0xb0, 0xaf, 0xad, 0xaf, 0xb2, 0xb3, 0xb0, 0xae, 0xad, 0xab, 0xa8, 0xa7, 0xa8, 0xab, 0xae, 0xad, 0xad, 0xae, 0xb1, 0xb4, 0xb5, 0xb3, 0xb0, 0xa3, 0xa2, 0xa3, 0xa7, 0xa7, 0xa1, 0x9b, 0x98, 0x97, 0x9c, 0x9f, 0x9d, 0x99, 0x96, 0x93, 0x90, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x88, 0x82, 0x7c, 0x82, 0x88, 0x89, 0x89, 0x8a, 0x88, 0x85, 0x82, 0x81, 0x7f, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x66, 0x64, 0x60, 0x5d, 0x5a, 0x55, 0x50, 0x50, 0x54, 0x54, 0x66, 0x90, 0xaf, 0xaf, 0xac, 0xa4, 0x92, 0x79, 0x62, 0x60, 0x62, 0x60, 0x5d, 0x59, 0x5e, 0x59, 0x53, 0x48, 0x3e, 0x38, 0x36, 0x37, 0x39, 0x3d, 0x43, 0x49, 0x4e, 0x51, 0x53, 0x53, 0x51, 0x58, 0x59, 0x5b, 0x5e, 0x5c, 0x5a, 0x5c, 0x5f, 0x62, 0x65, 0x63, 0x59, 0x50, 0x4f, 0x56, 0x5d, 0x68, 0x69, 0x68, 0x66, 0x62, 0x5e, 0x5c, 0x5b, 0x63, 0x65, 0x68, 0x6d, 0x70, 0x72, 0x71, 0x70, 0x6a, 0x67, 0x65, 0x68, 0x72, 0x7c, 0x82, 0x82, 0x80, 0x7a, 0x73, 0x6f, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b, 0x66, 0x62, 0x60, 0x5c, 0x5a, 0x5d, 0x62, 0x64, 0x68, 0x6f, 0x73, 0x71, 0x6f, 0x72, 0x77, 0x78, 0x82, 0x81, 0x75, 0x74, 0x81, 0x7f, 0x6f, 0x67, 0x5c, 0x6b, 0x85, 0x83, 0x6e, 0x55, 0x3f, 0x46, 0x38, 0x2e, 0x2d, 0x2d, 0x28, 0x24, 0x24, 0x2e, 0x30, 0x32, 0x33, 0x2f, 0x2a, 0x25, 0x22, 0x25, 0x25, 0x27, 0x28, 0x25, 0x1d, 0x17, 0x15, 0x11, 0x12, 0x13, 0x11, 0x0f, 0x10, 0x14, 0x17, 0x17, 0x1a, 0x1f, 0x23, 0x22, 0x1e, 0x1d, 0x1e, 0x25, 0x33, 0x41, 0x47, 0x4e, 0x5c, 0x6a, 0x71, 0x5d, 0x49, 0x33, 0x2f, 0x3a, 0x48, 0x4e, 0x4f, 0x4d, 0x51, 0x5a, 0x60, 0x5a, 0x4d, 0x42, 0x3e, 0x39, 0x3d, 0x3e, 0x3e, 0x48, 0x59, 0x63, 0x62, 0x5d, 0x52, 0x49, 0x47, 0x44, 0x3d, 0x36, 0x33, 0x2e, 0x30, 0x31, 0x33, 0x3a, 0x4a, 0x5e, 0x6c, 0x40, 0x3c, 0x3a, 0x3a, 0x3b, 0x38, 0x37, 0x37, 0x33, 0x36, 0x3b, 0x40, 0x45, 0x48, 0x49, 0x4a, 0x4b, 0x4b, 0x4a, 0x4a, 0x4b, 0x4b, 0x4c, 0x4d, 0x53, 0x53, 0x53, 0x52, 0x50, 0x50, 0x51, 0x52, 0x51, 0x4c, 0x48, 0x48, 0x4c, 0x50, 0x51, 0x50, 0x4d, 0x4c, 0x4b, 0x4b, 0x4d, 0x4e, 0x4f, 0x4e, 0x52, 0x50, 0x4f, 0x50, 0x4f, 0x4e, 0x4f, 0x52, 0x57, 0x5c, 0x5c, 0x5f, 0x73, 0x89, 0x85, 0x72, 0x6c, 0x70, 0x79, 0x7a, 0x74, 0x73, 0x74, 0x6e, 0x6d, 0x71, 0x76, 0x71, 0x5d, 0x45, 0x37, 0x33, 0x35, 0x34, 0x35, 0x38, 0x38, 0x34, 0x32, 0x32, 0x37, 0x31, 0x2f, 0x38, 0x45, 0x4f, 0x56, 0x5a, 0x65, 0x67, 0x69, 0x6b, 0x71, 0x77, 0x78, 0x74, 0x6a, 0x5d, 0x50, 0x4c, 0x4b, 0x4a, 0x4b, 0x4f, 0x4b, 0x46, 0x42, 0x3e, 0x3e, 0x48, 0x51, 0x50, 0x47, 0x4e, 0x5c, 0x67, 0x6c, 0x74, 0x73, 0x68, 0x63, 0x5d, 0x5b, 0x5e, 0x5a, 0x51, 0x4d, 0x51, 0x52, 0x46, 0x39, 0x33, 0x33, 0x38, 0x40, 0x46, 0x50, 0x4e, 0x4a, 0x47, 0x47, 0x48, 0x47, 0x45, 0x4a, 0x52, 0x5b, 0x61, 0x64, 0x63, 0x5c, 0x54, 0x56, 0x5c, 0x66, 0x6e, 0x72, 0x6f, 0x67, 0x5f, 0x61, 0x5e, 0x5b, 0x59, 0x58, 0x5a, 0x5c, 0x5e, 0x5d, 0x5d, 0x5b, 0x5b, 0x60, 0x65, 0x62, 0x5b, 0x58, 0x61, 0x71, 0x82, 0x8d, 0x8e, 0x86, 0x7d, 0x7b, 0x78, 0x73, 0x70, 0x74, 0x7a, 0x79, 0x74, 0x82, 0x84, 0x86, 0x82, 0x7b, 0x72, 0x6d, 0x6b, 0x6b, 0x6d, 0x72, 0x74, 0x72, 0x6b, 0x64, 0x5f, 0x5e, 0x5c, 0x5c, 0x5d, 0x5c, 0x5b, 0x5b, 0x5e, 0x5e, 0x5c, 0x5f, 0x65, 0x66, 0x60, 0x58, 0x55, 0x55, 0x56, 0x55, 0x4f, 0x48, 0x43, 0x44, 0x46, 0x41, 0x43, 0x44, 0x43, 0x44, 0x48, 0x4a, 0x49, 0x44, 0x45, 0x46, 0x47, 0x48, 0x48, 0x45, 0x44, 0x3b, 0x35, 0x31, 0x31, 0x36, 0x3d, 0x47, 0x4e, 0x51, 0x4e, 0x48, 0x42, 0x41, 0x43, 0x42, 0x3f, 0x41, 0x3f, 0x3a, 0x34, 0x30, 0x31, 0x35, 0x39, 0x42, 0x40, 0x41, 0x44, 0x42, 0x42, 0x51, 0x63, 0x70, 0x75, 0x7a, 0x7c, 0x7e, 0x82, 0x86, 0x87, 0x8c, 0x8b, 0x8c, 0x8e, 0x90, 0x90, 0x8e, 0x8b, 0x8d, 0x8d, 0x8e, 0x8f, 0x8e, 0x8e, 0x93, 0x99, 0x98, 0x97, 0x97, 0x99, 0x9c, 0x9f, 0xa0, 0xa1, 0xa3, 0xa2, 0xa0, 0x9d, 0x9b, 0x9d, 0xa2, 0xa6, 0x9f, 0x9f, 0xa1, 0xa3, 0xa6, 0xaa, 0xad, 0xae, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xaf, 0xb2, 0xb3, 0xb2, 0xb0, 0xae, 0xb1, 0xb4, 0xb4, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xae, 0xb0, 0xb2, 0xb0, 0xb1, 0xb3, 0xb6, 0xb9, 0xb7, 0xb3, 0xaf, 0xa9, 0xaa, 0xad, 0xae, 0xab, 0xa6, 0xa3, 0xa3, 0x9e, 0xa1, 0xa2, 0xa0, 0x9d, 0x9b, 0x97, 0x92, 0x90, 0x91, 0x90, 0x8e, 0x8f, 0x8f, 0x8b, 0x86, 0x81, 0x87, 0x8a, 0x89, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x70, 0x6e, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x67, 0x64, 0x61, 0x5e, 0x5a, 0x56, 0x54, 0x54, 0x5b, 0x5a, 0x73, 0x8c, 0x92, 0x9b, 0x9a, 0x84, 0x70, 0x5c, 0x5b, 0x5b, 0x56, 0x52, 0x4d, 0x51, 0x4c, 0x4e, 0x4d, 0x49, 0x41, 0x3c, 0x3b, 0x3d, 0x3d, 0x43, 0x4a, 0x4d, 0x51, 0x53, 0x50, 0x4c, 0x4c, 0x4f, 0x55, 0x5a, 0x5b, 0x59, 0x59, 0x5c, 0x5e, 0x61, 0x5e, 0x55, 0x4e, 0x50, 0x58, 0x5d, 0x64, 0x65, 0x64, 0x61, 0x5c, 0x57, 0x53, 0x52, 0x57, 0x58, 0x59, 0x5b, 0x5e, 0x60, 0x5f, 0x5f, 0x5c, 0x5a, 0x5a, 0x5e, 0x63, 0x68, 0x6b, 0x6d, 0x71, 0x6c, 0x69, 0x6e, 0x77, 0x7c, 0x78, 0x72, 0x75, 0x73, 0x71, 0x6d, 0x63, 0x56, 0x4f, 0x4e, 0x4d, 0x53, 0x5b, 0x5f, 0x5d, 0x5d, 0x64, 0x6c, 0x7b, 0x78, 0x6b, 0x64, 0x75, 0x8c, 0x8e, 0x84, 0x77, 0x6a, 0x78, 0x98, 0xa8, 0xa4, 0x93, 0x7d, 0x66, 0x50, 0x3b, 0x2e, 0x23, 0x19, 0x18, 0x1f, 0x1f, 0x23, 0x26, 0x27, 0x25, 0x22, 0x1d, 0x1a, 0x16, 0x1c, 0x20, 0x1f, 0x1d, 0x1e, 0x1f, 0x20, 0x1b, 0x16, 0x10, 0x13, 0x25, 0x39, 0x40, 0x3b, 0x30, 0x29, 0x20, 0x1b, 0x1b, 0x21, 0x2e, 0x3a, 0x55, 0x4e, 0x47, 0x4b, 0x59, 0x62, 0x59, 0x48, 0x38, 0x47, 0x52, 0x50, 0x4e, 0x57, 0x65, 0x6d, 0x71, 0x69, 0x5b, 0x4d, 0x44, 0x41, 0x3c, 0x38, 0x43, 0x4c, 0x4e, 0x46, 0x43, 0x45, 0x44, 0x3e, 0x44, 0x3a, 0x34, 0x37, 0x39, 0x34, 0x30, 0x30, 0x2b, 0x25, 0x23, 0x2f, 0x40, 0x49, 0x43, 0x3a, 0x39, 0x35, 0x32, 0x34, 0x36, 0x35, 0x33, 0x32, 0x2f, 0x32, 0x37, 0x3d, 0x42, 0x45, 0x47, 0x48, 0x47, 0x47, 0x47, 0x47, 0x48, 0x49, 0x4b, 0x4c, 0x4e, 0x4e, 0x4e, 0x4d, 0x4b, 0x4a, 0x4b, 0x4c, 0x48, 0x46, 0x44, 0x45, 0x49, 0x4d, 0x50, 0x51, 0x4d, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4a, 0x49, 0x4f, 0x4d, 0x4b, 0x4b, 0x4b, 0x49, 0x4a, 0x4d, 0x53, 0x5e, 0x65, 0x6b, 0x82, 0x9a, 0x98, 0x85, 0x6a, 0x67, 0x69, 0x6d, 0x71, 0x7a, 0x7e, 0x77, 0x76, 0x75, 0x72, 0x6a, 0x5a, 0x47, 0x3a, 0x35, 0x39, 0x3d, 0x40, 0x3e, 0x39, 0x34, 0x32, 0x31, 0x34, 0x33, 0x38, 0x40, 0x47, 0x4d, 0x57, 0x62, 0x6c, 0x6c, 0x6a, 0x6a, 0x6f, 0x72, 0x6b, 0x61, 0x59, 0x52, 0x4c, 0x4a, 0x48, 0x47, 0x4d, 0x54, 0x4e, 0x4c, 0x4a, 0x43, 0x3d, 0x43, 0x47, 0x42, 0x43, 0x42, 0x4d, 0x62, 0x74, 0x7d, 0x76, 0x64, 0x5a, 0x51, 0x4c, 0x4f, 0x54, 0x55, 0x55, 0x56, 0x46, 0x3e, 0x36, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x46, 0x49, 0x4f, 0x53, 0x56, 0x56, 0x55, 0x53, 0x53, 0x5a, 0x5f, 0x60, 0x60, 0x60, 0x5b, 0x54, 0x53, 0x56, 0x5b, 0x62, 0x69, 0x6b, 0x65, 0x5d, 0x5d, 0x5b, 0x5a, 0x58, 0x57, 0x57, 0x57, 0x57, 0x50, 0x4f, 0x4c, 0x4b, 0x4c, 0x4e, 0x4a, 0x45, 0x46, 0x4c, 0x58, 0x68, 0x7b, 0x87, 0x87, 0x82, 0x82, 0x81, 0x7b, 0x73, 0x70, 0x71, 0x72, 0x70, 0x7f, 0x86, 0x8f, 0x92, 0x8c, 0x7d, 0x6e, 0x63, 0x6f, 0x79, 0x83, 0x81, 0x73, 0x65, 0x62, 0x66, 0x5e, 0x5d, 0x5d, 0x5d, 0x5c, 0x59, 0x5a, 0x5d, 0x62, 0x5e, 0x5f, 0x65, 0x63, 0x59, 0x51, 0x50, 0x4e, 0x51, 0x52, 0x4f, 0x48, 0x43, 0x43, 0x45, 0x41, 0x43, 0x44, 0x44, 0x46, 0x4a, 0x4c, 0x4b, 0x45, 0x48, 0x4e, 0x54, 0x5a, 0x5e, 0x60, 0x61, 0x55, 0x53, 0x54, 0x55, 0x53, 0x4f, 0x4d, 0x4e, 0x53, 0x4f, 0x49, 0x45, 0x47, 0x48, 0x45, 0x40, 0x40, 0x3e, 0x39, 0x34, 0x31, 0x33, 0x39, 0x3e, 0x44, 0x41, 0x41, 0x43, 0x45, 0x4b, 0x5a, 0x6a, 0x73, 0x76, 0x7a, 0x7d, 0x7f, 0x82, 0x85, 0x87, 0x8b, 0x8b, 0x8d, 0x8f, 0x90, 0x8f, 0x8c, 0x8a, 0x8c, 0x8c, 0x8e, 0x90, 0x91, 0x91, 0x94, 0x99, 0x98, 0x98, 0x99, 0x9c, 0x9f, 0xa2, 0xa4, 0xa4, 0x9f, 0x9e, 0x9c, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9a, 0x9e, 0xa3, 0xa9, 0xac, 0xac, 0xab, 0xaa, 0xab, 0xab, 0xac, 0xac, 0xac, 0xaf, 0xb2, 0xb5, 0xb6, 0xb6, 0xb4, 0xb3, 0xb4, 0xb7, 0xb6, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xb2, 0xb3, 0xb6, 0xb9, 0xb9, 0xb7, 0xb3, 0xb0, 0xad, 0xb0, 0xb1, 0xaf, 0xab, 0xa7, 0xa7, 0xa7, 0xa3, 0xa5, 0xa4, 0xa2, 0xa0, 0x9e, 0x9a, 0x95, 0x93, 0x93, 0x90, 0x8f, 0x8f, 0x90, 0x8e, 0x8a, 0x86, 0x88, 0x89, 0x89, 0x88, 0x88, 0x89, 0x8a, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x74, 0x74, 0x74, 0x74, 0x77, 0x73, 0x6f, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x69, 0x67, 0x64, 0x61, 0x5f, 0x5c, 0x59, 0x57, 0x58, 0x53, 0x65, 0x7d, 0x8f, 0xa4, 0xa2, 0x84, 0x66, 0x55, 0x53, 0x4f, 0x49, 0x4b, 0x49, 0x4c, 0x4c, 0x58, 0x60, 0x5b, 0x4a, 0x3d, 0x3b, 0x3f, 0x40, 0x45, 0x47, 0x48, 0x4c, 0x51, 0x51, 0x4d, 0x4a, 0x4b, 0x4e, 0x50, 0x50, 0x50, 0x53, 0x57, 0x5b, 0x5d, 0x59, 0x4e, 0x46, 0x48, 0x4c, 0x4f, 0x4e, 0x51, 0x54, 0x56, 0x56, 0x56, 0x56, 0x56, 0x58, 0x58, 0x57, 0x57, 0x57, 0x57, 0x58, 0x59, 0x5a, 0x5a, 0x5e, 0x64, 0x63, 0x5b, 0x54, 0x53, 0x54, 0x50, 0x50, 0x59, 0x68, 0x73, 0x75, 0x73, 0x73, 0x73, 0x72, 0x6d, 0x65, 0x5a, 0x50, 0x4a, 0x3b, 0x44, 0x50, 0x58, 0x5a, 0x5b, 0x62, 0x6b, 0x6e, 0x75, 0x74, 0x74, 0x7f, 0x85, 0x82, 0x7f, 0x7b, 0x8a, 0x99, 0x9d, 0x9e, 0xa0, 0x90, 0x76, 0x5d, 0x50, 0x44, 0x3d, 0x33, 0x28, 0x29, 0x31, 0x28, 0x27, 0x23, 0x1e, 0x1a, 0x19, 0x18, 0x16, 0x17, 0x15, 0x18, 0x26, 0x3f, 0x53, 0x57, 0x52, 0x46, 0x4f, 0x53, 0x4e, 0x49, 0x4c, 0x51, 0x53, 0x4a, 0x43, 0x3e, 0x3d, 0x3d, 0x40, 0x4c, 0x57, 0x45, 0x4c, 0x51, 0x4f, 0x4b, 0x47, 0x44, 0x41, 0x46, 0x4e, 0x54, 0x55, 0x59, 0x5d, 0x59, 0x50, 0x43, 0x4c, 0x47, 0x39, 0x3e, 0x4b, 0x40, 0x26, 0x26, 0x33, 0x3e, 0x3d, 0x3a, 0x3b, 0x3b, 0x37, 0x33, 0x31, 0x32, 0x34, 0x31, 0x28, 0x21, 0x20, 0x23, 0x26, 0x2e, 0x3b, 0x45, 0x47, 0x41, 0x39, 0x34, 0x31, 0x30, 0x32, 0x32, 0x31, 0x31, 0x32, 0x31, 0x31, 0x31, 0x33, 0x34, 0x36, 0x37, 0x38, 0x36, 0x36, 0x35, 0x35, 0x37, 0x39, 0x3b, 0x3d, 0x3a, 0x3b, 0x3c, 0x3b, 0x3b, 0x3a, 0x3b, 0x3c, 0x39, 0x39, 0x39, 0x39, 0x3b, 0x3e, 0x42, 0x44, 0x45, 0x46, 0x48, 0x4a, 0x4c, 0x4b, 0x49, 0x46, 0x46, 0x45, 0x46, 0x49, 0x4b, 0x4b, 0x4b, 0x4d, 0x5e, 0x6a, 0x76, 0x7e, 0x89, 0x94, 0x96, 0x91, 0x7e, 0x73, 0x6c, 0x6b, 0x70, 0x7e, 0x88, 0x85, 0x82, 0x7c, 0x73, 0x6c, 0x62, 0x54, 0x46, 0x3e, 0x4a, 0x57, 0x5f, 0x56, 0x46, 0x3d, 0x3a, 0x39, 0x37, 0x38, 0x3e, 0x46, 0x4a, 0x4e, 0x5a, 0x68, 0x65, 0x68, 0x69, 0x6a, 0x6f, 0x72, 0x6b, 0x5f, 0x4d, 0x49, 0x48, 0x4b, 0x4c, 0x4c, 0x51, 0x57, 0x5a, 0x57, 0x53, 0x4b, 0x4a, 0x52, 0x53, 0x47, 0x47, 0x42, 0x47, 0x59, 0x71, 0x85, 0x83, 0x71, 0x5e, 0x53, 0x48, 0x46, 0x4b, 0x51, 0x54, 0x53, 0x3f, 0x3a, 0x37, 0x3b, 0x3f, 0x40, 0x3f, 0x3e, 0x40, 0x44, 0x4b, 0x50, 0x50, 0x4e, 0x4d, 0x4e, 0x5a, 0x66, 0x71, 0x75, 0x74, 0x6f, 0x63, 0x57, 0x54, 0x54, 0x54, 0x58, 0x60, 0x69, 0x6a, 0x67, 0x62, 0x62, 0x61, 0x60, 0x60, 0x5f, 0x5f, 0x5f, 0x5d, 0x5a, 0x56, 0x53, 0x52, 0x51, 0x4d, 0x49, 0x4b, 0x4f, 0x55, 0x5f, 0x6f, 0x7c, 0x80, 0x7d, 0x72, 0x78, 0x7e, 0x7f, 0x7c, 0x78, 0x73, 0x6f, 0x74, 0x79, 0x81, 0x88, 0x8a, 0x84, 0x7a, 0x73, 0x85, 0x8b, 0x90, 0x8a, 0x78, 0x68, 0x67, 0x6e, 0x6b, 0x69, 0x67, 0x66, 0x63, 0x60, 0x61, 0x65, 0x65, 0x63, 0x60, 0x5d, 0x57, 0x4f, 0x48, 0x45, 0x45, 0x4a, 0x4f, 0x4e, 0x48, 0x42, 0x41, 0x42, 0x42, 0x44, 0x46, 0x45, 0x47, 0x4b, 0x4d, 0x4c, 0x48, 0x4b, 0x4f, 0x51, 0x52, 0x55, 0x58, 0x5b, 0x5a, 0x5f, 0x68, 0x6f, 0x6d, 0x65, 0x5e, 0x5c, 0x5a, 0x56, 0x4f, 0x4c, 0x4d, 0x4d, 0x47, 0x3f, 0x3f, 0x3c, 0x37, 0x32, 0x2f, 0x32, 0x39, 0x3f, 0x44, 0x42, 0x41, 0x42, 0x48, 0x54, 0x63, 0x6d, 0x75, 0x76, 0x78, 0x7c, 0x7f, 0x81, 0x85, 0x87, 0x8a, 0x8c, 0x8f, 0x90, 0x8f, 0x8c, 0x8a, 0x89, 0x8b, 0x8a, 0x8c, 0x90, 0x92, 0x92, 0x94, 0x96, 0x99, 0x98, 0x99, 0x9c, 0x9f, 0xa1, 0xa2, 0xa3, 0x9c, 0x99, 0x98, 0x99, 0x9d, 0x9f, 0x9f, 0x9d, 0xa1, 0xa4, 0xa8, 0xab, 0xad, 0xad, 0xab, 0xaa, 0xae, 0xaf, 0xb0, 0xb0, 0xb1, 0xb3, 0xb6, 0xb8, 0xb8, 0xb9, 0xb9, 0xb7, 0xb8, 0xb9, 0xb8, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb3, 0xb5, 0xb7, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb2, 0xb2, 0xb0, 0xad, 0xaa, 0xa9, 0xa8, 0xa7, 0xa8, 0xa8, 0xa6, 0xa3, 0xa1, 0xa0, 0x9c, 0x97, 0x93, 0x93, 0x92, 0x90, 0x92, 0x94, 0x92, 0x8e, 0x8e, 0x8a, 0x8a, 0x8d, 0x8e, 0x8a, 0x89, 0x8b, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x88, 0x84, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7b, 0x78, 0x76, 0x74, 0x74, 0x74, 0x75, 0x77, 0x73, 0x6f, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x6c, 0x69, 0x66, 0x63, 0x62, 0x60, 0x5c, 0x59, 0x53, 0x53, 0x5e, 0x6f, 0x89, 0xa7, 0xa1, 0x7f, 0x5a, 0x4f, 0x4f, 0x47, 0x43, 0x4a, 0x4b, 0x4d, 0x49, 0x52, 0x5a, 0x57, 0x4b, 0x3f, 0x3b, 0x3b, 0x41, 0x45, 0x46, 0x46, 0x4b, 0x53, 0x54, 0x50, 0x49, 0x48, 0x47, 0x46, 0x45, 0x44, 0x48, 0x4d, 0x5a, 0x5e, 0x5b, 0x50, 0x48, 0x49, 0x4a, 0x48, 0x4c, 0x4e, 0x50, 0x50, 0x4f, 0x4d, 0x4d, 0x4c, 0x52, 0x54, 0x56, 0x56, 0x55, 0x55, 0x57, 0x58, 0x53, 0x54, 0x5d, 0x69, 0x6b, 0x61, 0x57, 0x54, 0x47, 0x43, 0x41, 0x46, 0x51, 0x5f, 0x69, 0x6e, 0x72, 0x71, 0x6c, 0x67, 0x66, 0x6a, 0x68, 0x63, 0x5a, 0x5f, 0x66, 0x6a, 0x67, 0x62, 0x62, 0x65, 0x72, 0x7d, 0x7d, 0x77, 0x72, 0x6a, 0x6d, 0x7d, 0x93, 0x8a, 0x84, 0x87, 0x83, 0x71, 0x66, 0x6c, 0x5c, 0x50, 0x4f, 0x61, 0x71, 0x6d, 0x5a, 0x4b, 0x46, 0x3d, 0x2b, 0x1a, 0x13, 0x14, 0x16, 0x15, 0x13, 0x1a, 0x33, 0x5a, 0x76, 0x75, 0x60, 0x4d, 0x3d, 0x2d, 0x29, 0x3c, 0x50, 0x4d, 0x37, 0x24, 0x30, 0x36, 0x45, 0x51, 0x4e, 0x40, 0x34, 0x31, 0x3e, 0x3e, 0x42, 0x48, 0x4a, 0x45, 0x3e, 0x39, 0x4f, 0x58, 0x5f, 0x5b, 0x4f, 0x47, 0x47, 0x4b, 0x4c, 0x3f, 0x3f, 0x4b, 0x46, 0x2e, 0x20, 0x23, 0x2f, 0x38, 0x41, 0x42, 0x3f, 0x3b, 0x35, 0x2f, 0x2e, 0x30, 0x31, 0x30, 0x2d, 0x2d, 0x35, 0x3d, 0x41, 0x44, 0x46, 0x43, 0x3a, 0x32, 0x2e, 0x2d, 0x31, 0x31, 0x32, 0x32, 0x30, 0x2e, 0x30, 0x33, 0x32, 0x2f, 0x2a, 0x25, 0x21, 0x20, 0x20, 0x20, 0x1f, 0x1e, 0x1d, 0x1e, 0x1f, 0x22, 0x25, 0x26, 0x25, 0x26, 0x28, 0x29, 0x29, 0x29, 0x2a, 0x2b, 0x2a, 0x2b, 0x2b, 0x2a, 0x29, 0x2a, 0x2d, 0x30, 0x3a, 0x3d, 0x43, 0x4a, 0x4d, 0x4d, 0x4a, 0x47, 0x40, 0x41, 0x45, 0x4d, 0x52, 0x53, 0x54, 0x55, 0x69, 0x72, 0x7d, 0x7f, 0x78, 0x72, 0x77, 0x7f, 0x8d, 0x80, 0x72, 0x66, 0x60, 0x6a, 0x78, 0x7a, 0x69, 0x67, 0x67, 0x69, 0x67, 0x59, 0x45, 0x36, 0x4a, 0x5f, 0x6b, 0x5f, 0x49, 0x3d, 0x3b, 0x3b, 0x42, 0x3e, 0x3f, 0x46, 0x4c, 0x50, 0x59, 0x63, 0x6c, 0x6e, 0x6b, 0x66, 0x65, 0x66, 0x5f, 0x55, 0x4e, 0x46, 0x42, 0x47, 0x4e, 0x50, 0x51, 0x52, 0x58, 0x5c, 0x5e, 0x57, 0x55, 0x63, 0x6b, 0x63, 0x59, 0x53, 0x4f, 0x50, 0x5f, 0x79, 0x83, 0x78, 0x5b, 0x53, 0x48, 0x43, 0x46, 0x4d, 0x4e, 0x4b, 0x43, 0x3a, 0x32, 0x32, 0x35, 0x39, 0x3c, 0x3e, 0x45, 0x47, 0x4a, 0x4b, 0x48, 0x46, 0x49, 0x4d, 0x51, 0x59, 0x5e, 0x5e, 0x60, 0x66, 0x66, 0x61, 0x56, 0x5c, 0x61, 0x65, 0x6a, 0x6e, 0x6a, 0x64, 0x64, 0x65, 0x66, 0x68, 0x6c, 0x6f, 0x72, 0x73, 0x6b, 0x68, 0x62, 0x5d, 0x59, 0x56, 0x51, 0x4d, 0x57, 0x5c, 0x62, 0x69, 0x73, 0x7c, 0x7e, 0x7a, 0x78, 0x75, 0x6f, 0x6c, 0x6d, 0x71, 0x74, 0x75, 0x65, 0x67, 0x6b, 0x75, 0x82, 0x8d, 0x93, 0x95, 0x95, 0x93, 0x90, 0x8b, 0x81, 0x76, 0x71, 0x73, 0x7f, 0x7c, 0x79, 0x76, 0x73, 0x70, 0x72, 0x76, 0x7d, 0x7d, 0x74, 0x65, 0x59, 0x54, 0x4c, 0x44, 0x43, 0x4a, 0x51, 0x51, 0x4c, 0x46, 0x44, 0x44, 0x45, 0x47, 0x48, 0x48, 0x49, 0x4d, 0x4e, 0x4d, 0x4b, 0x4a, 0x47, 0x41, 0x3a, 0x36, 0x37, 0x39, 0x3f, 0x43, 0x4a, 0x51, 0x55, 0x58, 0x5e, 0x64, 0x61, 0x5d, 0x57, 0x54, 0x56, 0x56, 0x4f, 0x45, 0x42, 0x3f, 0x3a, 0x33, 0x31, 0x33, 0x3a, 0x40, 0x44, 0x43, 0x41, 0x42, 0x4b, 0x5b, 0x69, 0x6f, 0x77, 0x77, 0x78, 0x7c, 0x80, 0x84, 0x88, 0x8c, 0x8b, 0x8e, 0x91, 0x91, 0x8d, 0x89, 0x87, 0x86, 0x8a, 0x89, 0x8b, 0x90, 0x93, 0x93, 0x93, 0x94, 0x99, 0x99, 0x99, 0x9a, 0x9c, 0x9e, 0x9e, 0x9d, 0x9a, 0x97, 0x94, 0x97, 0x9e, 0xa3, 0xa6, 0xa5, 0xab, 0xab, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xad, 0xad, 0xae, 0xb0, 0xb1, 0xb2, 0xb3, 0xb6, 0xb7, 0xb5, 0xb8, 0xb9, 0xb7, 0xb7, 0xb8, 0xb8, 0xb5, 0xb7, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb4, 0xb6, 0xb7, 0xb7, 0xb5, 0xb5, 0xb7, 0xb9, 0xb8, 0xb5, 0xb0, 0xad, 0xac, 0xad, 0xab, 0xa8, 0xae, 0xad, 0xa9, 0xa5, 0xa4, 0xa3, 0x9f, 0x99, 0x96, 0x96, 0x96, 0x95, 0x98, 0x9a, 0x97, 0x93, 0x94, 0x8d, 0x8b, 0x91, 0x92, 0x8b, 0x88, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x89, 0x83, 0x7f, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7f, 0x7e, 0x7c, 0x79, 0x76, 0x74, 0x74, 0x75, 0x76, 0x72, 0x6f, 0x6c, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x6d, 0x6b, 0x67, 0x64, 0x63, 0x62, 0x5e, 0x5a, 0x5c, 0x59, 0x54, 0x54, 0x6e, 0x92, 0x91, 0x70, 0x4f, 0x49, 0x4c, 0x45, 0x41, 0x4b, 0x4b, 0x4a, 0x47, 0x48, 0x4c, 0x51, 0x55, 0x54, 0x4e, 0x49, 0x3f, 0x44, 0x47, 0x48, 0x4e, 0x56, 0x56, 0x51, 0x42, 0x41, 0x40, 0x3f, 0x3c, 0x39, 0x3b, 0x40, 0x49, 0x50, 0x51, 0x4a, 0x46, 0x48, 0x49, 0x46, 0x47, 0x4a, 0x4d, 0x4e, 0x4f, 0x4f, 0x50, 0x51, 0x4d, 0x52, 0x57, 0x58, 0x56, 0x55, 0x55, 0x57, 0x57, 0x54, 0x58, 0x63, 0x63, 0x57, 0x4b, 0x47, 0x49, 0x4a, 0x4b, 0x4d, 0x51, 0x58, 0x60, 0x66, 0x6a, 0x67, 0x5e, 0x57, 0x5e, 0x6f, 0x78, 0x76, 0x70, 0x6f, 0x71, 0x71, 0x6c, 0x65, 0x61, 0x61, 0x73, 0x78, 0x76, 0x75, 0x76, 0x6c, 0x6a, 0x7b, 0x82, 0x80, 0x6d, 0x63, 0x72, 0x7b, 0x71, 0x69, 0x62, 0x72, 0x8b, 0x9b, 0x98, 0x89, 0x81, 0x81, 0x61, 0x51, 0x35, 0x1a, 0x0f, 0x11, 0x16, 0x16, 0x1d, 0x32, 0x59, 0x7a, 0x73, 0x4f, 0x32, 0x2a, 0x32, 0x3b, 0x4f, 0x58, 0x44, 0x28, 0x2b, 0x41, 0x56, 0x51, 0x4f, 0x4e, 0x48, 0x3f, 0x3e, 0x43, 0x45, 0x48, 0x4d, 0x4b, 0x40, 0x36, 0x3b, 0x47, 0x56, 0x4f, 0x4c, 0x50, 0x4e, 0x46, 0x43, 0x47, 0x43, 0x42, 0x44, 0x40, 0x30, 0x20, 0x22, 0x2f, 0x37, 0x39, 0x3b, 0x3d, 0x3e, 0x3d, 0x39, 0x34, 0x34, 0x42, 0x50, 0x53, 0x4d, 0x49, 0x4a, 0x4d, 0x4b, 0x43, 0x3c, 0x3a, 0x3a, 0x33, 0x26, 0x1a, 0x39, 0x38, 0x35, 0x32, 0x30, 0x2f, 0x30, 0x32, 0x33, 0x2d, 0x27, 0x24, 0x20, 0x1c, 0x1a, 0x1b, 0x1a, 0x1a, 0x1a, 0x1c, 0x1e, 0x20, 0x20, 0x20, 0x22, 0x25, 0x28, 0x2a, 0x2b, 0x2b, 0x2c, 0x2c, 0x29, 0x2b, 0x28, 0x27, 0x2a, 0x28, 0x2a, 0x33, 0x45, 0x5c, 0x5d, 0x56, 0x4f, 0x4a, 0x4e, 0x4d, 0x43, 0x49, 0x52, 0x5c, 0x67, 0x6e, 0x6c, 0x66, 0x67, 0x6f, 0x74, 0x75, 0x73, 0x6b, 0x6a, 0x74, 0x82, 0x7d, 0x71, 0x62, 0x5b, 0x61, 0x69, 0x6e, 0x64, 0x61, 0x60, 0x63, 0x66, 0x61, 0x52, 0x44, 0x46, 0x56, 0x67, 0x65, 0x55, 0x4b, 0x43, 0x38, 0x37, 0x3c, 0x40, 0x43, 0x46, 0x4f, 0x5c, 0x67, 0x6b, 0x6c, 0x68, 0x62, 0x64, 0x69, 0x64, 0x5a, 0x4f, 0x42, 0x3b, 0x42, 0x50, 0x55, 0x51, 0x4c, 0x47, 0x58, 0x62, 0x60, 0x63, 0x6e, 0x73, 0x6f, 0x66, 0x70, 0x78, 0x78, 0x73, 0x6c, 0x61, 0x57, 0x54, 0x54, 0x56, 0x52, 0x48, 0x45, 0x44, 0x3e, 0x3e, 0x3a, 0x37, 0x36, 0x35, 0x37, 0x3c, 0x42, 0x47, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x48, 0x46, 0x49, 0x4f, 0x55, 0x54, 0x4e, 0x4c, 0x54, 0x5e, 0x62, 0x5f, 0x5d, 0x61, 0x6c, 0x76, 0x75, 0x6e, 0x64, 0x65, 0x66, 0x6d, 0x78, 0x81, 0x7f, 0x78, 0x6b, 0x63, 0x5d, 0x5e, 0x62, 0x63, 0x62, 0x61, 0x64, 0x6a, 0x75, 0x80, 0x84, 0x81, 0x7b, 0x79, 0x76, 0x6f, 0x6a, 0x62, 0x5c, 0x63, 0x6d, 0x6e, 0x68, 0x60, 0x5c, 0x65, 0x79, 0x8c, 0x98, 0x9d, 0xa1, 0x99, 0x94, 0x91, 0x87, 0x77, 0x72, 0x76, 0x7d, 0x80, 0x84, 0x90, 0x9d, 0x9c, 0x95, 0x97, 0x94, 0x8d, 0x88, 0x85, 0x7b, 0x69, 0x5a, 0x55, 0x62, 0x70, 0x75, 0x67, 0x53, 0x49, 0x49, 0x4a, 0x4a, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4f, 0x51, 0x4b, 0x4e, 0x4d, 0x45, 0x38, 0x30, 0x30, 0x34, 0x36, 0x35, 0x37, 0x3b, 0x3f, 0x44, 0x4d, 0x55, 0x5d, 0x62, 0x67, 0x66, 0x64, 0x60, 0x5c, 0x58, 0x4a, 0x40, 0x33, 0x2c, 0x2e, 0x34, 0x3a, 0x3d, 0x3f, 0x42, 0x44, 0x47, 0x4f, 0x5e, 0x6c, 0x73, 0x79, 0x75, 0x75, 0x7a, 0x7f, 0x83, 0x88, 0x8f, 0x8c, 0x8f, 0x91, 0x90, 0x8d, 0x89, 0x86, 0x85, 0x87, 0x89, 0x8c, 0x90, 0x93, 0x96, 0x98, 0x99, 0x96, 0x96, 0x98, 0x9b, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x99, 0x99, 0x9e, 0xa2, 0xa5, 0xa9, 0xac, 0xaa, 0xaa, 0xab, 0xab, 0xac, 0xac, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb2, 0xb4, 0xb5, 0xb4, 0xb2, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb2, 0xb3, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb9, 0xb7, 0xb5, 0xb3, 0xb2, 0xb4, 0xb6, 0xb8, 0xb8, 0xb5, 0xb2, 0xb0, 0xaf, 0xae, 0xad, 0xac, 0xab, 0xa8, 0xa5, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e, 0xa0, 0x9d, 0x9c, 0x9e, 0x9d, 0x9a, 0x96, 0x95, 0x90, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x8a, 0x8e, 0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x87, 0x88, 0x80, 0x82, 0x85, 0x86, 0x85, 0x83, 0x81, 0x81, 0x7e, 0x7c, 0x78, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x71, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x70, 0x6d, 0x6a, 0x67, 0x64, 0x62, 0x60, 0x5e, 0x5d, 0x53, 0x54, 0x52, 0x52, 0x62, 0x74, 0x73, 0x64, 0x4e, 0x48, 0x47, 0x4d, 0x4e, 0x48, 0x45, 0x48, 0x45, 0x45, 0x49, 0x50, 0x53, 0x50, 0x4b, 0x49, 0x3b, 0x45, 0x4d, 0x4e, 0x51, 0x55, 0x53, 0x4d, 0x3d, 0x36, 0x32, 0x35, 0x39, 0x38, 0x36, 0x36, 0x3e, 0x48, 0x4d, 0x48, 0x45, 0x47, 0x49, 0x48, 0x4c, 0x4d, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x52, 0x52, 0x53, 0x54, 0x53, 0x53, 0x54, 0x57, 0x53, 0x50, 0x4f, 0x51, 0x53, 0x54, 0x54, 0x57, 0x57, 0x57, 0x5a, 0x60, 0x65, 0x65, 0x62, 0x67, 0x62, 0x59, 0x50, 0x4e, 0x53, 0x57, 0x59, 0x5e, 0x5f, 0x64, 0x6c, 0x70, 0x72, 0x74, 0x78, 0x64, 0x6b, 0x76, 0x7f, 0x7d, 0x75, 0x74, 0x79, 0x7f, 0x73, 0x64, 0x62, 0x74, 0x87, 0x89, 0x80, 0x86, 0x8f, 0x83, 0x64, 0x5e, 0x7e, 0x94, 0x8d, 0x77, 0x6b, 0x47, 0x23, 0x21, 0x2d, 0x2d, 0x24, 0x37, 0x5e, 0x7e, 0x74, 0x52, 0x3a, 0x38, 0x3f, 0x50, 0x53, 0x50, 0x48, 0x4f, 0x5e, 0x51, 0x2d, 0x29, 0x52, 0x64, 0x71, 0x6c, 0x51, 0x41, 0x36, 0x36, 0x4c, 0x4b, 0x43, 0x3e, 0x3e, 0x45, 0x45, 0x3e, 0x4d, 0x53, 0x4b, 0x45, 0x49, 0x4b, 0x49, 0x3f, 0x3d, 0x38, 0x33, 0x2f, 0x30, 0x34, 0x38, 0x37, 0x29, 0x23, 0x2f, 0x41, 0x4e, 0x59, 0x63, 0x68, 0x68, 0x5c, 0x49, 0x42, 0x42, 0x39, 0x2a, 0x2f, 0x34, 0x38, 0x36, 0x2f, 0x27, 0x24, 0x24, 0x48, 0x43, 0x3d, 0x35, 0x31, 0x2f, 0x30, 0x31, 0x2d, 0x28, 0x22, 0x1f, 0x1d, 0x19, 0x18, 0x19, 0x19, 0x19, 0x1a, 0x1c, 0x1e, 0x20, 0x21, 0x21, 0x24, 0x26, 0x2a, 0x2c, 0x2c, 0x2d, 0x2d, 0x2e, 0x2f, 0x31, 0x2e, 0x2c, 0x2f, 0x2d, 0x2f, 0x38, 0x64, 0x7e, 0x7c, 0x6d, 0x63, 0x5e, 0x5e, 0x56, 0x49, 0x44, 0x44, 0x53, 0x69, 0x75, 0x73, 0x6b, 0x73, 0x77, 0x77, 0x74, 0x71, 0x6d, 0x71, 0x7e, 0x8c, 0x86, 0x7a, 0x6b, 0x64, 0x67, 0x6c, 0x6e, 0x6b, 0x68, 0x61, 0x5c, 0x5b, 0x59, 0x50, 0x45, 0x43, 0x4e, 0x5c, 0x5b, 0x4d, 0x46, 0x45, 0x40, 0x31, 0x32, 0x38, 0x43, 0x51, 0x5d, 0x63, 0x64, 0x5b, 0x5c, 0x5a, 0x57, 0x5d, 0x68, 0x6b, 0x66, 0x4f, 0x44, 0x3e, 0x44, 0x4f, 0x52, 0x4f, 0x4b, 0x43, 0x50, 0x61, 0x6e, 0x75, 0x77, 0x76, 0x74, 0x79, 0x7a, 0x78, 0x72, 0x6a, 0x5d, 0x4b, 0x3d, 0x3a, 0x3a, 0x43, 0x4f, 0x55, 0x58, 0x4f, 0x3f, 0x39, 0x37, 0x35, 0x36, 0x37, 0x3a, 0x40, 0x46, 0x4e, 0x4c, 0x4c, 0x51, 0x58, 0x5d, 0x5d, 0x5b, 0x56, 0x56, 0x57, 0x5b, 0x5e, 0x5d, 0x5c, 0x5a, 0x53, 0x4a, 0x44, 0x4c, 0x63, 0x75, 0x77, 0x6f, 0x65, 0x68, 0x6d, 0x72, 0x79, 0x7b, 0x74, 0x6a, 0x5b, 0x56, 0x54, 0x57, 0x5b, 0x5d, 0x5e, 0x60, 0x6b, 0x69, 0x6a, 0x6d, 0x6f, 0x6e, 0x6f, 0x71, 0x70, 0x6e, 0x6d, 0x68, 0x60, 0x65, 0x6f, 0x70, 0x66, 0x54, 0x47, 0x51, 0x6d, 0x8b, 0x9c, 0xa2, 0x9c, 0x8f, 0x85, 0x81, 0x7b, 0x71, 0x6b, 0x6c, 0x7d, 0x82, 0x87, 0x91, 0x9a, 0x95, 0x8c, 0x8b, 0x93, 0x92, 0x96, 0x9b, 0x97, 0x88, 0x7c, 0x77, 0x7c, 0x80, 0x7b, 0x6b, 0x5f, 0x5e, 0x62, 0x64, 0x5a, 0x56, 0x52, 0x51, 0x53, 0x53, 0x50, 0x4e, 0x61, 0x5c, 0x52, 0x43, 0x36, 0x31, 0x35, 0x3a, 0x42, 0x43, 0x46, 0x4c, 0x4f, 0x50, 0x53, 0x57, 0x62, 0x65, 0x64, 0x60, 0x5c, 0x5a, 0x59, 0x58, 0x5a, 0x50, 0x42, 0x36, 0x31, 0x34, 0x3a, 0x3f, 0x42, 0x43, 0x45, 0x4a, 0x56, 0x66, 0x72, 0x77, 0x77, 0x75, 0x77, 0x7d, 0x82, 0x84, 0x88, 0x8d, 0x8d, 0x8e, 0x8f, 0x8d, 0x89, 0x85, 0x83, 0x83, 0x8a, 0x8c, 0x8f, 0x92, 0x94, 0x95, 0x96, 0x96, 0x96, 0x97, 0x9a, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c, 0x9e, 0x9d, 0x9e, 0xa3, 0xa7, 0xaa, 0xad, 0xb0, 0xab, 0xab, 0xac, 0xad, 0xad, 0xad, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xb1, 0xb3, 0xb4, 0xb3, 0xb1, 0xb2, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb1, 0xb1, 0xb2, 0xb4, 0xb6, 0xb7, 0xb9, 0xb9, 0xb6, 0xb5, 0xb3, 0xb3, 0xb3, 0xb4, 0xb6, 0xb8, 0xb8, 0xb6, 0xb3, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xab, 0xaa, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1, 0xa4, 0xa1, 0x9f, 0xa0, 0x9f, 0x9a, 0x97, 0x96, 0x92, 0x92, 0x93, 0x94, 0x93, 0x91, 0x8f, 0x8e, 0x8f, 0x8c, 0x8c, 0x8d, 0x8c, 0x89, 0x89, 0x8b, 0x84, 0x86, 0x88, 0x88, 0x86, 0x84, 0x83, 0x83, 0x80, 0x7e, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x74, 0x75, 0x73, 0x72, 0x72, 0x71, 0x6e, 0x6e, 0x70, 0x6e, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x61, 0x60, 0x5a, 0x5a, 0x55, 0x53, 0x5c, 0x69, 0x68, 0x5e, 0x52, 0x4b, 0x49, 0x4d, 0x4e, 0x46, 0x3f, 0x3e, 0x37, 0x38, 0x3d, 0x44, 0x48, 0x45, 0x3f, 0x3c, 0x40, 0x48, 0x4d, 0x4c, 0x4c, 0x4d, 0x4a, 0x45, 0x39, 0x31, 0x2c, 0x30, 0x36, 0x38, 0x37, 0x37, 0x38, 0x41, 0x47, 0x45, 0x44, 0x48, 0x4b, 0x49, 0x4a, 0x4b, 0x4d, 0x4d, 0x4c, 0x4c, 0x4d, 0x4e, 0x49, 0x4d, 0x53, 0x56, 0x55, 0x52, 0x50, 0x4f, 0x54, 0x54, 0x54, 0x56, 0x56, 0x54, 0x51, 0x4e, 0x4d, 0x47, 0x45, 0x4d, 0x5c, 0x6c, 0x77, 0x7c, 0x78, 0x6c, 0x57, 0x42, 0x37, 0x39, 0x3f, 0x44, 0x4a, 0x52, 0x5a, 0x5d, 0x5b, 0x58, 0x57, 0x58, 0x6b, 0x6b, 0x71, 0x7d, 0x83, 0x7c, 0x6e, 0x64, 0x46, 0x47, 0x5a, 0x7a, 0x8a, 0x85, 0x80, 0x83, 0x79, 0x80, 0x7a, 0x69, 0x65, 0x74, 0x88, 0x93, 0x94, 0x81, 0x5c, 0x3c, 0x37, 0x3f, 0x48, 0x50, 0x6f, 0x7b, 0x78, 0x5c, 0x40, 0x3c, 0x4c, 0x5b, 0x58, 0x62, 0x7f, 0x8a, 0x68, 0x3e, 0x37, 0x45, 0x55, 0x64, 0x5b, 0x4f, 0x41, 0x3b, 0x4e, 0x5a, 0x54, 0x4a, 0x39, 0x3f, 0x3e, 0x32, 0x3e, 0x52, 0x41, 0x47, 0x48, 0x43, 0x43, 0x47, 0x43, 0x3a, 0x37, 0x31, 0x29, 0x21, 0x1e, 0x20, 0x26, 0x2b, 0x26, 0x24, 0x2a, 0x38, 0x44, 0x48, 0x4c, 0x52, 0x42, 0x3c, 0x2f, 0x24, 0x2a, 0x3c, 0x48, 0x49, 0x35, 0x33, 0x2f, 0x29, 0x25, 0x23, 0x23, 0x24, 0x4a, 0x46, 0x3f, 0x39, 0x33, 0x2f, 0x2e, 0x2d, 0x28, 0x23, 0x1e, 0x1c, 0x1a, 0x17, 0x17, 0x18, 0x18, 0x18, 0x19, 0x1b, 0x1f, 0x21, 0x22, 0x22, 0x26, 0x29, 0x2c, 0x2e, 0x2e, 0x2f, 0x2f, 0x30, 0x30, 0x32, 0x2f, 0x2d, 0x2f, 0x2e, 0x2f, 0x38, 0x55, 0x74, 0x75, 0x67, 0x60, 0x62, 0x67, 0x5f, 0x65, 0x62, 0x66, 0x71, 0x7a, 0x7b, 0x79, 0x79, 0x76, 0x77, 0x72, 0x6d, 0x6e, 0x6e, 0x74, 0x81, 0x88, 0x83, 0x7a, 0x70, 0x6c, 0x6e, 0x70, 0x70, 0x6d, 0x6c, 0x65, 0x5c, 0x5b, 0x5c, 0x56, 0x4b, 0x47, 0x51, 0x63, 0x68, 0x58, 0x46, 0x3b, 0x35, 0x2e, 0x30, 0x37, 0x46, 0x58, 0x64, 0x66, 0x65, 0x5f, 0x5c, 0x54, 0x4b, 0x4a, 0x4f, 0x53, 0x51, 0x50, 0x4d, 0x4a, 0x47, 0x45, 0x46, 0x4b, 0x52, 0x4b, 0x51, 0x64, 0x7b, 0x83, 0x7c, 0x77, 0x7a, 0x7e, 0x76, 0x6a, 0x61, 0x5e, 0x58, 0x4b, 0x3f, 0x3d, 0x39, 0x3f, 0x4a, 0x54, 0x5c, 0x58, 0x4a, 0x3a, 0x37, 0x34, 0x34, 0x36, 0x3a, 0x42, 0x4a, 0x40, 0x3e, 0x3f, 0x46, 0x51, 0x57, 0x55, 0x50, 0x55, 0x55, 0x56, 0x5b, 0x62, 0x65, 0x62, 0x5e, 0x59, 0x54, 0x4f, 0x4d, 0x53, 0x5b, 0x5e, 0x5c, 0x5e, 0x62, 0x66, 0x69, 0x6b, 0x69, 0x61, 0x5a, 0x4f, 0x4b, 0x49, 0x4c, 0x51, 0x56, 0x5c, 0x60, 0x60, 0x64, 0x6d, 0x75, 0x77, 0x74, 0x71, 0x70, 0x6b, 0x6d, 0x72, 0x70, 0x6a, 0x6d, 0x75, 0x75, 0x66, 0x54, 0x47, 0x4f, 0x66, 0x7e, 0x8d, 0x94, 0x95, 0x8c, 0x82, 0x7b, 0x74, 0x6e, 0x6e, 0x72, 0x7b, 0x82, 0x86, 0x8c, 0x8f, 0x87, 0x7d, 0x7d, 0x7c, 0x7d, 0x83, 0x8a, 0x8a, 0x83, 0x7f, 0x80, 0x8d, 0x8e, 0x89, 0x80, 0x7a, 0x77, 0x73, 0x6d, 0x60, 0x5f, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x63, 0x62, 0x5e, 0x54, 0x47, 0x3a, 0x32, 0x31, 0x32, 0x3f, 0x40, 0x46, 0x50, 0x58, 0x5e, 0x62, 0x66, 0x6a, 0x69, 0x62, 0x58, 0x50, 0x4f, 0x50, 0x51, 0x50, 0x49, 0x3d, 0x32, 0x2d, 0x31, 0x3a, 0x41, 0x3c, 0x3d, 0x41, 0x4a, 0x59, 0x69, 0x71, 0x72, 0x75, 0x76, 0x7a, 0x81, 0x85, 0x87, 0x89, 0x8b, 0x8e, 0x8d, 0x8c, 0x89, 0x86, 0x83, 0x82, 0x83, 0x8b, 0x8d, 0x90, 0x93, 0x94, 0x95, 0x94, 0x94, 0x96, 0x99, 0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9e, 0xa3, 0xa1, 0xa3, 0xa8, 0xab, 0xac, 0xad, 0xae, 0xac, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb2, 0xb2, 0xb3, 0xb3, 0xb4, 0xb6, 0xb8, 0xb9, 0xba, 0xb3, 0xb3, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb6, 0xb5, 0xb3, 0xb2, 0xb2, 0xb2, 0xb0, 0xaf, 0xae, 0xac, 0xaa, 0xa9, 0xa9, 0xa9, 0xa8, 0xa7, 0xa7, 0xa4, 0xa1, 0xa0, 0x9e, 0x9a, 0x98, 0x97, 0x94, 0x95, 0x97, 0x98, 0x98, 0x96, 0x94, 0x92, 0x90, 0x8e, 0x8d, 0x8f, 0x8e, 0x8d, 0x8d, 0x8f, 0x8a, 0x8b, 0x8b, 0x8a, 0x88, 0x86, 0x85, 0x86, 0x82, 0x80, 0x7d, 0x7b, 0x79, 0x77, 0x75, 0x73, 0x75, 0x75, 0x75, 0x75, 0x72, 0x6e, 0x6e, 0x70, 0x6f, 0x6d, 0x6a, 0x68, 0x67, 0x65, 0x63, 0x62, 0x5f, 0x5c, 0x57, 0x54, 0x57, 0x5d, 0x60, 0x5f, 0x5d, 0x55, 0x4f, 0x51, 0x51, 0x4a, 0x41, 0x3c, 0x36, 0x37, 0x3c, 0x44, 0x48, 0x46, 0x40, 0x3e, 0x3f, 0x44, 0x46, 0x42, 0x3f, 0x3f, 0x3c, 0x37, 0x36, 0x30, 0x2d, 0x31, 0x36, 0x38, 0x36, 0x35, 0x35, 0x3c, 0x41, 0x42, 0x44, 0x49, 0x4a, 0x47, 0x4a, 0x4b, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4e, 0x4f, 0x52, 0x54, 0x53, 0x50, 0x4e, 0x50, 0x52, 0x50, 0x52, 0x56, 0x59, 0x5a, 0x58, 0x55, 0x53, 0x4f, 0x46, 0x42, 0x4b, 0x58, 0x60, 0x65, 0x69, 0x69, 0x64, 0x59, 0x49, 0x3d, 0x39, 0x39, 0x3a, 0x43, 0x53, 0x60, 0x60, 0x59, 0x57, 0x57, 0x57, 0x5f, 0x67, 0x74, 0x7f, 0x87, 0x87, 0x7d, 0x73, 0x62, 0x60, 0x62, 0x69, 0x70, 0x70, 0x67, 0x5f, 0x58, 0x68, 0x6a, 0x63, 0x63, 0x69, 0x79, 0x8f, 0x9e, 0x8d, 0x73, 0x60, 0x55, 0x4d, 0x53, 0x64, 0x66, 0x75, 0x7a, 0x65, 0x4d, 0x4e, 0x6c, 0x89, 0x8f, 0x8f, 0x7b, 0x4d, 0x2c, 0x31, 0x44, 0x49, 0x51, 0x51, 0x4e, 0x56, 0x5a, 0x5c, 0x5e, 0x52, 0x4b, 0x4e, 0x3d, 0x37, 0x3f, 0x44, 0x46, 0x3f, 0x4e, 0x4f, 0x4b, 0x45, 0x45, 0x47, 0x3f, 0x33, 0x32, 0x2c, 0x23, 0x1c, 0x1a, 0x1c, 0x20, 0x22, 0x29, 0x2e, 0x38, 0x3e, 0x3a, 0x2f, 0x2b, 0x2c, 0x2b, 0x2e, 0x32, 0x36, 0x39, 0x38, 0x31, 0x29, 0x31, 0x2a, 0x21, 0x1b, 0x19, 0x1a, 0x1b, 0x1b, 0x3e, 0x3d, 0x3c, 0x3b, 0x38, 0x35, 0x30, 0x2e, 0x27, 0x22, 0x1e, 0x1c, 0x1a, 0x18, 0x17, 0x19, 0x18, 0x18, 0x19, 0x1c, 0x1f, 0x22, 0x23, 0x23, 0x27, 0x2a, 0x2d, 0x2f, 0x30, 0x30, 0x31, 0x31, 0x31, 0x33, 0x2f, 0x2d, 0x2f, 0x2d, 0x2f, 0x37, 0x51, 0x6c, 0x6e, 0x63, 0x5c, 0x5c, 0x66, 0x67, 0x67, 0x63, 0x63, 0x66, 0x61, 0x5a, 0x5c, 0x65, 0x72, 0x71, 0x6a, 0x66, 0x6c, 0x6f, 0x72, 0x7a, 0x74, 0x71, 0x6c, 0x68, 0x67, 0x66, 0x64, 0x61, 0x60, 0x64, 0x64, 0x62, 0x66, 0x6a, 0x62, 0x54, 0x4c, 0x52, 0x63, 0x6b, 0x59, 0x3f, 0x2e, 0x27, 0x2c, 0x32, 0x3b, 0x47, 0x51, 0x58, 0x5c, 0x5e, 0x53, 0x4f, 0x47, 0x3f, 0x3b, 0x3e, 0x43, 0x46, 0x50, 0x58, 0x5b, 0x4f, 0x3d, 0x38, 0x45, 0x56, 0x5d, 0x60, 0x6d, 0x7e, 0x82, 0x7b, 0x79, 0x7f, 0x7a, 0x6f, 0x62, 0x5b, 0x5a, 0x59, 0x53, 0x4c, 0x45, 0x44, 0x47, 0x48, 0x46, 0x4a, 0x4c, 0x46, 0x3d, 0x38, 0x34, 0x33, 0x34, 0x38, 0x40, 0x48, 0x4e, 0x50, 0x56, 0x60, 0x68, 0x68, 0x60, 0x58, 0x54, 0x59, 0x5d, 0x5d, 0x5b, 0x5c, 0x5f, 0x61, 0x56, 0x57, 0x57, 0x55, 0x52, 0x54, 0x57, 0x5a, 0x56, 0x57, 0x56, 0x56, 0x55, 0x55, 0x54, 0x54, 0x47, 0x40, 0x3b, 0x3c, 0x41, 0x49, 0x50, 0x56, 0x57, 0x5b, 0x60, 0x62, 0x60, 0x5e, 0x62, 0x69, 0x66, 0x68, 0x6e, 0x70, 0x6e, 0x73, 0x79, 0x77, 0x6c, 0x68, 0x69, 0x6f, 0x76, 0x79, 0x7d, 0x81, 0x80, 0x83, 0x81, 0x75, 0x67, 0x61, 0x68, 0x71, 0x77, 0x7d, 0x7d, 0x7c, 0x7c, 0x75, 0x6e, 0x70, 0x73, 0x72, 0x75, 0x7a, 0x7c, 0x7f, 0x85, 0x8c, 0x85, 0x86, 0x87, 0x86, 0x85, 0x82, 0x79, 0x6f, 0x73, 0x77, 0x7a, 0x76, 0x6f, 0x6a, 0x6a, 0x6d, 0x6d, 0x6d, 0x68, 0x5c, 0x4e, 0x43, 0x40, 0x40, 0x44, 0x40, 0x40, 0x46, 0x4e, 0x54, 0x5a, 0x5f, 0x6e, 0x6c, 0x64, 0x57, 0x4c, 0x49, 0x4a, 0x4b, 0x49, 0x43, 0x3a, 0x34, 0x32, 0x37, 0x3f, 0x44, 0x39, 0x3f, 0x4a, 0x57, 0x66, 0x73, 0x77, 0x76, 0x76, 0x79, 0x7e, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x8d, 0x8c, 0x89, 0x87, 0x85, 0x84, 0x85, 0x86, 0x8a, 0x8c, 0x8f, 0x93, 0x95, 0x95, 0x95, 0x94, 0x96, 0x9a, 0x9d, 0x9e, 0x9c, 0x9c, 0x9f, 0xa2, 0xa5, 0xa3, 0xa5, 0xa9, 0xab, 0xaa, 0xa8, 0xa8, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xaf, 0xaf, 0xb0, 0xb1, 0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb3, 0xb3, 0xb4, 0xb4, 0xb6, 0xb6, 0xb5, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xaf, 0xb1, 0xae, 0xab, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xa7, 0xa4, 0xa1, 0xa0, 0x9e, 0x9a, 0x98, 0x99, 0x97, 0x98, 0x9a, 0x9b, 0x9a, 0x98, 0x96, 0x94, 0x92, 0x90, 0x8f, 0x91, 0x91, 0x8f, 0x90, 0x92, 0x8e, 0x8e, 0x8d, 0x8b, 0x88, 0x86, 0x86, 0x86, 0x83, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x77, 0x74, 0x75, 0x76, 0x77, 0x78, 0x73, 0x6f, 0x6f, 0x72, 0x70, 0x6e, 0x6c, 0x69, 0x68, 0x66, 0x63, 0x61, 0x5f, 0x5c, 0x58, 0x56, 0x55, 0x58, 0x5f, 0x66, 0x5d, 0x51, 0x46, 0x42, 0x42, 0x41, 0x3b, 0x37, 0x36, 0x35, 0x38, 0x3f, 0x44, 0x43, 0x41, 0x40, 0x41, 0x42, 0x40, 0x3a, 0x36, 0x36, 0x35, 0x33, 0x36, 0x35, 0x36, 0x37, 0x38, 0x36, 0x34, 0x32, 0x38, 0x3d, 0x40, 0x42, 0x45, 0x49, 0x48, 0x45, 0x49, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d, 0x4f, 0x50, 0x50, 0x4d, 0x4c, 0x4e, 0x50, 0x52, 0x4d, 0x4e, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x4e, 0x4a, 0x4d, 0x59, 0x60, 0x5c, 0x56, 0x54, 0x65, 0x6c, 0x72, 0x70, 0x6a, 0x64, 0x5e, 0x59, 0x4d, 0x60, 0x6c, 0x64, 0x59, 0x58, 0x5d, 0x5f, 0x68, 0x71, 0x7a, 0x7f, 0x84, 0x85, 0x7e, 0x74, 0x4e, 0x4e, 0x4d, 0x4e, 0x56, 0x5e, 0x5a, 0x51, 0x56, 0x6f, 0x6c, 0x5a, 0x5e, 0x6b, 0x7e, 0x98, 0x9e, 0x94, 0x81, 0x6f, 0x5f, 0x50, 0x54, 0x66, 0x7b, 0x7e, 0x6c, 0x5c, 0x79, 0xab, 0xac, 0x8a, 0x76, 0x58, 0x39, 0x27, 0x27, 0x3a, 0x52, 0x5c, 0x37, 0x44, 0x5d, 0x6c, 0x61, 0x55, 0x4f, 0x40, 0x34, 0x3b, 0x3c, 0x49, 0x4d, 0x40, 0x41, 0x46, 0x50, 0x4e, 0x48, 0x3f, 0x3b, 0x38, 0x31, 0x29, 0x26, 0x24, 0x20, 0x1f, 0x1f, 0x1f, 0x1e, 0x1c, 0x15, 0x20, 0x2e, 0x36, 0x36, 0x34, 0x38, 0x3d, 0x3d, 0x34, 0x2b, 0x27, 0x27, 0x26, 0x27, 0x29, 0x23, 0x1f, 0x1b, 0x18, 0x17, 0x16, 0x13, 0x12, 0x36, 0x36, 0x37, 0x39, 0x3a, 0x3a, 0x37, 0x35, 0x29, 0x24, 0x1f, 0x1d, 0x1b, 0x19, 0x18, 0x19, 0x18, 0x18, 0x1a, 0x1c, 0x20, 0x23, 0x24, 0x24, 0x28, 0x2a, 0x2e, 0x30, 0x30, 0x31, 0x31, 0x32, 0x34, 0x36, 0x32, 0x31, 0x32, 0x30, 0x32, 0x3b, 0x51, 0x65, 0x68, 0x66, 0x5f, 0x5a, 0x69, 0x76, 0x7b, 0x6d, 0x63, 0x64, 0x65, 0x65, 0x6c, 0x75, 0x77, 0x72, 0x66, 0x62, 0x6a, 0x6f, 0x70, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6a, 0x65, 0x5e, 0x5a, 0x53, 0x59, 0x5e, 0x63, 0x6d, 0x73, 0x6a, 0x5b, 0x4a, 0x45, 0x49, 0x4d, 0x3f, 0x2f, 0x2a, 0x2a, 0x28, 0x2e, 0x37, 0x40, 0x47, 0x4a, 0x48, 0x46, 0x40, 0x3d, 0x38, 0x35, 0x33, 0x35, 0x3a, 0x3f, 0x4a, 0x59, 0x64, 0x5d, 0x4a, 0x3e, 0x40, 0x47, 0x5f, 0x67, 0x72, 0x77, 0x75, 0x74, 0x77, 0x7c, 0x74, 0x6a, 0x5b, 0x50, 0x48, 0x43, 0x3f, 0x3d, 0x42, 0x44, 0x4c, 0x4d, 0x45, 0x40, 0x3b, 0x31, 0x35, 0x33, 0x33, 0x34, 0x35, 0x36, 0x3a, 0x3f, 0x4b, 0x51, 0x5c, 0x65, 0x6a, 0x68, 0x62, 0x5d, 0x65, 0x6d, 0x71, 0x6c, 0x64, 0x60, 0x60, 0x60, 0x57, 0x50, 0x4b, 0x4d, 0x52, 0x56, 0x56, 0x54, 0x53, 0x51, 0x50, 0x4e, 0x4c, 0x4d, 0x51, 0x55, 0x5b, 0x54, 0x4e, 0x50, 0x56, 0x5b, 0x5e, 0x61, 0x5c, 0x61, 0x66, 0x63, 0x57, 0x4f, 0x51, 0x58, 0x60, 0x5e, 0x62, 0x66, 0x6a, 0x73, 0x78, 0x73, 0x67, 0x69, 0x70, 0x78, 0x77, 0x6d, 0x67, 0x66, 0x6e, 0x78, 0x7c, 0x72, 0x68, 0x66, 0x6c, 0x71, 0x73, 0x75, 0x6f, 0x67, 0x64, 0x60, 0x5d, 0x62, 0x5c, 0x5f, 0x64, 0x6a, 0x6e, 0x71, 0x76, 0x7b, 0x72, 0x72, 0x72, 0x73, 0x78, 0x7c, 0x7d, 0x7b, 0x78, 0x7b, 0x7e, 0x7e, 0x7a, 0x76, 0x73, 0x71, 0x71, 0x71, 0x6b, 0x5b, 0x48, 0x3d, 0x3e, 0x43, 0x57, 0x53, 0x51, 0x56, 0x5d, 0x64, 0x6b, 0x70, 0x6a, 0x6c, 0x69, 0x60, 0x58, 0x55, 0x55, 0x55, 0x54, 0x4d, 0x44, 0x3e, 0x3c, 0x3c, 0x3b, 0x3a, 0x33, 0x40, 0x50, 0x60, 0x6d, 0x76, 0x79, 0x78, 0x78, 0x7c, 0x80, 0x83, 0x85, 0x87, 0x8a, 0x8b, 0x89, 0x88, 0x86, 0x85, 0x85, 0x87, 0x89, 0x8a, 0x8d, 0x8f, 0x91, 0x94, 0x96, 0x96, 0x95, 0x95, 0x97, 0x9a, 0x9e, 0x9e, 0x9d, 0x9f, 0xa2, 0xa6, 0xa3, 0xa2, 0xa4, 0xa8, 0xaa, 0xa9, 0xa7, 0xa6, 0xac, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xb0, 0xaf, 0xaf, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb6, 0xb4, 0xb3, 0xb2, 0xb2, 0xb3, 0xb3, 0xb4, 0xb5, 0xb6, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb3, 0xb3, 0xb2, 0xb2, 0xb3, 0xb3, 0xb2, 0xb0, 0xb1, 0xad, 0xa9, 0xa6, 0xa7, 0xa9, 0xab, 0xac, 0xa6, 0xa3, 0xa2, 0xa1, 0x9f, 0x9c, 0x9b, 0x9d, 0x99, 0x9a, 0x9b, 0x9c, 0x9b, 0x98, 0x96, 0x94, 0x95, 0x93, 0x91, 0x92, 0x92, 0x91, 0x92, 0x94, 0x90, 0x8f, 0x8e, 0x8b, 0x88, 0x86, 0x86, 0x86, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x74, 0x75, 0x78, 0x78, 0x75, 0x71, 0x71, 0x75, 0x73, 0x71, 0x6e, 0x6c, 0x6a, 0x67, 0x64, 0x62, 0x60, 0x5d, 0x5b, 0x58, 0x54, 0x53, 0x5b, 0x64, 0x5e, 0x52, 0x42, 0x37, 0x36, 0x39, 0x3a, 0x39, 0x37, 0x34, 0x34, 0x39, 0x3d, 0x3f, 0x40, 0x41, 0x47, 0x46, 0x41, 0x3a, 0x35, 0x35, 0x36, 0x36, 0x37, 0x39, 0x3a, 0x36, 0x32, 0x31, 0x33, 0x35, 0x3d, 0x3f, 0x41, 0x44, 0x47, 0x4a, 0x4a, 0x47, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4f, 0x51, 0x51, 0x54, 0x57, 0x56, 0x52, 0x56, 0x54, 0x51, 0x50, 0x50, 0x50, 0x51, 0x52, 0x56, 0x54, 0x56, 0x5d, 0x5f, 0x59, 0x54, 0x52, 0x65, 0x6c, 0x72, 0x71, 0x6b, 0x65, 0x60, 0x5c, 0x60, 0x6d, 0x71, 0x63, 0x55, 0x55, 0x5d, 0x62, 0x73, 0x74, 0x74, 0x79, 0x82, 0x84, 0x77, 0x65, 0x51, 0x48, 0x47, 0x4c, 0x46, 0x3b, 0x43, 0x56, 0x78, 0x82, 0x6d, 0x4f, 0x4a, 0x4f, 0x5d, 0x75, 0x8e, 0x8c, 0x7f, 0x6d, 0x5f, 0x54, 0x55, 0x60, 0x72, 0x67, 0x73, 0x8d, 0x89, 0x68, 0x54, 0x59, 0x49, 0x46, 0x58, 0x6b, 0x5c, 0x41, 0x40, 0x4e, 0x5e, 0x63, 0x75, 0x70, 0x53, 0x3c, 0x30, 0x26, 0x2e, 0x38, 0x38, 0x43, 0x4f, 0x4f, 0x4f, 0x4a, 0x4d, 0x45, 0x3a, 0x34, 0x33, 0x30, 0x28, 0x20, 0x1f, 0x1f, 0x21, 0x25, 0x28, 0x2a, 0x28, 0x26, 0x32, 0x38, 0x3c, 0x38, 0x31, 0x2e, 0x2f, 0x31, 0x2f, 0x2d, 0x30, 0x34, 0x31, 0x26, 0x1b, 0x16, 0x18, 0x1b, 0x1d, 0x1d, 0x19, 0x16, 0x14, 0x13, 0x3a, 0x37, 0x33, 0x32, 0x34, 0x36, 0x37, 0x37, 0x29, 0x24, 0x1f, 0x1d, 0x1b, 0x18, 0x18, 0x19, 0x1a, 0x1a, 0x1b, 0x1e, 0x21, 0x24, 0x25, 0x25, 0x29, 0x2b, 0x2e, 0x30, 0x31, 0x31, 0x32, 0x32, 0x35, 0x37, 0x34, 0x32, 0x34, 0x32, 0x34, 0x3d, 0x47, 0x58, 0x5d, 0x63, 0x5f, 0x56, 0x63, 0x71, 0x6d, 0x69, 0x68, 0x6b, 0x6d, 0x6f, 0x75, 0x7d, 0x7c, 0x76, 0x67, 0x5f, 0x65, 0x6b, 0x6b, 0x6c, 0x6e, 0x6d, 0x6d, 0x6e, 0x6c, 0x66, 0x61, 0x5f, 0x55, 0x57, 0x5b, 0x62, 0x6c, 0x71, 0x6c, 0x64, 0x4a, 0x3e, 0x3a, 0x39, 0x31, 0x2a, 0x2c, 0x2d, 0x28, 0x28, 0x2e, 0x3a, 0x45, 0x47, 0x3d, 0x33, 0x38, 0x33, 0x30, 0x30, 0x2e, 0x2b, 0x2d, 0x31, 0x40, 0x4d, 0x5c, 0x62, 0x5e, 0x52, 0x44, 0x3a, 0x52, 0x60, 0x6b, 0x6b, 0x68, 0x6a, 0x6f, 0x72, 0x7b, 0x6d, 0x5a, 0x47, 0x3b, 0x39, 0x40, 0x4a, 0x54, 0x4e, 0x4e, 0x4f, 0x4d, 0x49, 0x3d, 0x2b, 0x28, 0x2a, 0x2f, 0x35, 0x36, 0x35, 0x35, 0x37, 0x42, 0x4a, 0x53, 0x5b, 0x5f, 0x62, 0x65, 0x68, 0x71, 0x76, 0x79, 0x78, 0x76, 0x75, 0x6e, 0x66, 0x60, 0x57, 0x4d, 0x46, 0x41, 0x3f, 0x41, 0x45, 0x50, 0x50, 0x52, 0x53, 0x52, 0x4f, 0x4f, 0x52, 0x56, 0x53, 0x54, 0x58, 0x5d, 0x5e, 0x5d, 0x5d, 0x5a, 0x63, 0x6c, 0x6c, 0x61, 0x56, 0x55, 0x59, 0x60, 0x5b, 0x5c, 0x60, 0x65, 0x70, 0x75, 0x70, 0x69, 0x62, 0x62, 0x68, 0x67, 0x5b, 0x4f, 0x4b, 0x5b, 0x67, 0x6e, 0x6f, 0x75, 0x7e, 0x7e, 0x77, 0x6b, 0x6b, 0x61, 0x54, 0x51, 0x4f, 0x50, 0x55, 0x5c, 0x64, 0x6e, 0x76, 0x77, 0x72, 0x6b, 0x67, 0x65, 0x66, 0x69, 0x6d, 0x71, 0x75, 0x77, 0x77, 0x6c, 0x6a, 0x6c, 0x73, 0x7c, 0x7e, 0x78, 0x71, 0x75, 0x79, 0x77, 0x67, 0x51, 0x40, 0x3c, 0x3f, 0x3f, 0x3e, 0x42, 0x4a, 0x52, 0x57, 0x5d, 0x61, 0x65, 0x6b, 0x6f, 0x6d, 0x69, 0x69, 0x6b, 0x6c, 0x67, 0x61, 0x58, 0x53, 0x4f, 0x4a, 0x44, 0x3e, 0x3a, 0x46, 0x55, 0x61, 0x6b, 0x72, 0x76, 0x76, 0x78, 0x7d, 0x80, 0x81, 0x81, 0x84, 0x87, 0x88, 0x83, 0x83, 0x82, 0x83, 0x86, 0x89, 0x8b, 0x8c, 0x93, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x99, 0x9b, 0x9d, 0x9e, 0x9e, 0xa0, 0xa3, 0xa6, 0xa2, 0xa1, 0xa4, 0xa9, 0xac, 0xab, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xad, 0xac, 0xac, 0xaf, 0xad, 0xad, 0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xb3, 0xb4, 0xb5, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb5, 0xb4, 0xb3, 0xae, 0xab, 0xa7, 0xa5, 0xa5, 0xa6, 0xa7, 0xa7, 0xa5, 0xa3, 0xa3, 0xa4, 0xa2, 0x9e, 0x9e, 0xa0, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x99, 0x96, 0x95, 0x98, 0x95, 0x93, 0x93, 0x93, 0x91, 0x92, 0x94, 0x91, 0x91, 0x8f, 0x8c, 0x89, 0x86, 0x86, 0x86, 0x84, 0x83, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x76, 0x76, 0x77, 0x78, 0x76, 0x72, 0x73, 0x76, 0x74, 0x73, 0x70, 0x6e, 0x6c, 0x6a, 0x67, 0x64, 0x64, 0x62, 0x5f, 0x5a, 0x54, 0x50, 0x53, 0x59, 0x61, 0x5a, 0x4b, 0x3c, 0x38, 0x3d, 0x41, 0x41, 0x3a, 0x35, 0x32, 0x34, 0x38, 0x3a, 0x3d, 0x3f, 0x45, 0x43, 0x3e, 0x38, 0x34, 0x32, 0x33, 0x35, 0x38, 0x3a, 0x37, 0x30, 0x2b, 0x2f, 0x37, 0x3c, 0x3e, 0x3f, 0x42, 0x45, 0x49, 0x4c, 0x4e, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x50, 0x4f, 0x4f, 0x4f, 0x50, 0x53, 0x53, 0x51, 0x52, 0x57, 0x58, 0x55, 0x5a, 0x58, 0x56, 0x57, 0x58, 0x58, 0x55, 0x52, 0x56, 0x50, 0x4a, 0x49, 0x4d, 0x53, 0x57, 0x59, 0x66, 0x6b, 0x6d, 0x68, 0x61, 0x59, 0x52, 0x4c, 0x58, 0x60, 0x63, 0x5b, 0x53, 0x58, 0x62, 0x69, 0x6d, 0x73, 0x7a, 0x7e, 0x80, 0x7c, 0x72, 0x69, 0x5e, 0x4f, 0x42, 0x3e, 0x3d, 0x43, 0x58, 0x6f, 0x75, 0x74, 0x6b, 0x69, 0x6f, 0x6b, 0x6c, 0x7a, 0x81, 0x74, 0x54, 0x39, 0x36, 0x44, 0x5b, 0x6f, 0x5f, 0x66, 0x6a, 0x67, 0x65, 0x63, 0x59, 0x4c, 0x23, 0x4a, 0x78, 0x8a, 0x82, 0x7b, 0x78, 0x71, 0x77, 0x68, 0x60, 0x4c, 0x35, 0x28, 0x1c, 0x1a, 0x27, 0x51, 0x5a, 0x4b, 0x46, 0x50, 0x5a, 0x52, 0x45, 0x37, 0x2a, 0x2a, 0x30, 0x2e, 0x24, 0x1a, 0x1a, 0x1a, 0x1c, 0x1f, 0x23, 0x28, 0x2b, 0x2d, 0x2c, 0x33, 0x36, 0x32, 0x2f, 0x31, 0x32, 0x30, 0x36, 0x30, 0x29, 0x23, 0x1e, 0x18, 0x14, 0x13, 0x13, 0x18, 0x1c, 0x1b, 0x16, 0x14, 0x16, 0x19, 0x42, 0x3c, 0x35, 0x31, 0x31, 0x32, 0x33, 0x33, 0x29, 0x24, 0x1f, 0x1d, 0x1b, 0x19, 0x18, 0x1a, 0x1b, 0x1b, 0x1c, 0x1f, 0x22, 0x25, 0x26, 0x26, 0x2a, 0x2c, 0x2f, 0x31, 0x32, 0x32, 0x33, 0x33, 0x34, 0x36, 0x33, 0x32, 0x34, 0x33, 0x35, 0x3d, 0x51, 0x63, 0x68, 0x6e, 0x6c, 0x5f, 0x5e, 0x5f, 0x59, 0x5d, 0x62, 0x65, 0x67, 0x69, 0x6d, 0x71, 0x76, 0x77, 0x6d, 0x63, 0x65, 0x67, 0x67, 0x6a, 0x63, 0x60, 0x60, 0x61, 0x5e, 0x59, 0x58, 0x5a, 0x5b, 0x5a, 0x5d, 0x63, 0x66, 0x66, 0x66, 0x67, 0x50, 0x43, 0x3d, 0x3b, 0x34, 0x30, 0x2e, 0x29, 0x2a, 0x29, 0x2b, 0x34, 0x3e, 0x41, 0x3b, 0x34, 0x34, 0x2f, 0x2e, 0x33, 0x33, 0x30, 0x31, 0x36, 0x38, 0x42, 0x4e, 0x57, 0x5d, 0x5d, 0x55, 0x4c, 0x54, 0x60, 0x69, 0x69, 0x66, 0x67, 0x6a, 0x6c, 0x82, 0x79, 0x6b, 0x5e, 0x53, 0x51, 0x5b, 0x66, 0x60, 0x51, 0x47, 0x45, 0x46, 0x49, 0x40, 0x2f, 0x27, 0x28, 0x2c, 0x31, 0x33, 0x34, 0x36, 0x39, 0x39, 0x3e, 0x44, 0x48, 0x4b, 0x50, 0x57, 0x5d, 0x64, 0x68, 0x69, 0x6a, 0x6f, 0x74, 0x71, 0x69, 0x5c, 0x58, 0x52, 0x48, 0x3d, 0x39, 0x3f, 0x49, 0x4e, 0x50, 0x56, 0x5c, 0x5b, 0x55, 0x51, 0x51, 0x55, 0x57, 0x5d, 0x63, 0x65, 0x65, 0x68, 0x6d, 0x68, 0x63, 0x5d, 0x56, 0x51, 0x52, 0x5b, 0x65, 0x63, 0x5d, 0x5d, 0x5f, 0x63, 0x6c, 0x72, 0x6d, 0x75, 0x6d, 0x6a, 0x6b, 0x64, 0x54, 0x48, 0x46, 0x4e, 0x5c, 0x66, 0x6b, 0x76, 0x82, 0x7e, 0x71, 0x5d, 0x5e, 0x54, 0x49, 0x48, 0x49, 0x4a, 0x4e, 0x56, 0x5d, 0x66, 0x6d, 0x6e, 0x68, 0x5e, 0x55, 0x5a, 0x5e, 0x67, 0x70, 0x73, 0x70, 0x69, 0x64, 0x69, 0x67, 0x67, 0x6a, 0x6e, 0x6d, 0x68, 0x63, 0x66, 0x6c, 0x6e, 0x63, 0x4f, 0x3d, 0x34, 0x33, 0x42, 0x43, 0x46, 0x4a, 0x4c, 0x4c, 0x4d, 0x50, 0x66, 0x6d, 0x74, 0x73, 0x72, 0x73, 0x77, 0x79, 0x7a, 0x78, 0x74, 0x71, 0x6e, 0x6b, 0x66, 0x63, 0x60, 0x63, 0x66, 0x69, 0x6f, 0x75, 0x79, 0x79, 0x76, 0x7c, 0x80, 0x7f, 0x7e, 0x81, 0x83, 0x82, 0x80, 0x80, 0x81, 0x85, 0x89, 0x8c, 0x8d, 0x8d, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0x9f, 0xa2, 0xa4, 0xa5, 0xa4, 0xa6, 0xab, 0xad, 0xac, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xab, 0xac, 0xac, 0xac, 0xac, 0xac, 0xab, 0xaa, 0xab, 0xad, 0xb0, 0xb2, 0xb3, 0xb2, 0xb2, 0xb3, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb0, 0xb0, 0xaf, 0xb0, 0xb1, 0xb4, 0xb6, 0xb8, 0xb8, 0xb8, 0xb9, 0xba, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xad, 0xac, 0xaa, 0xa9, 0xa9, 0xa7, 0xa5, 0xa3, 0xa3, 0xa3, 0xa4, 0xa5, 0xa3, 0x9f, 0x9e, 0xa0, 0x9e, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x99, 0x9a, 0x97, 0x94, 0x94, 0x92, 0x90, 0x91, 0x93, 0x92, 0x92, 0x91, 0x8f, 0x8b, 0x89, 0x87, 0x87, 0x86, 0x85, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x79, 0x77, 0x76, 0x77, 0x75, 0x73, 0x73, 0x75, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6c, 0x69, 0x67, 0x64, 0x64, 0x62, 0x5c, 0x56, 0x53, 0x52, 0x52, 0x58, 0x5a, 0x55, 0x48, 0x41, 0x44, 0x47, 0x46, 0x3d, 0x37, 0x33, 0x33, 0x35, 0x36, 0x37, 0x39, 0x41, 0x40, 0x3f, 0x3d, 0x3a, 0x38, 0x37, 0x38, 0x3b, 0x3b, 0x37, 0x30, 0x2f, 0x35, 0x3c, 0x3e, 0x40, 0x40, 0x42, 0x45, 0x48, 0x4c, 0x4f, 0x52, 0x55, 0x56, 0x57, 0x56, 0x54, 0x53, 0x52, 0x53, 0x51, 0x5e, 0x69, 0x6c, 0x6d, 0x71, 0x72, 0x70, 0x6e, 0x6a, 0x67, 0x67, 0x68, 0x66, 0x5f, 0x59, 0x4c, 0x4a, 0x45, 0x46, 0x53, 0x62, 0x67, 0x62, 0x51, 0x53, 0x54, 0x50, 0x4a, 0x45, 0x3d, 0x37, 0x45, 0x4a, 0x4e, 0x4f, 0x4f, 0x52, 0x58, 0x5d, 0x63, 0x6f, 0x7b, 0x7c, 0x71, 0x66, 0x66, 0x6c, 0x67, 0x5e, 0x4f, 0x43, 0x44, 0x4e, 0x57, 0x5b, 0x72, 0x6c, 0x6a, 0x72, 0x78, 0x6e, 0x5c, 0x4f, 0x42, 0x40, 0x3a, 0x3a, 0x45, 0x4d, 0x4e, 0x52, 0x65, 0x67, 0x68, 0x66, 0x60, 0x51, 0x3a, 0x27, 0x2c, 0x3c, 0x5d, 0x78, 0x7b, 0x76, 0x71, 0x6c, 0x6a, 0x5f, 0x53, 0x38, 0x2a, 0x30, 0x3d, 0x5b, 0x64, 0x55, 0x40, 0x4d, 0x60, 0x59, 0x49, 0x3a, 0x30, 0x28, 0x24, 0x26, 0x27, 0x21, 0x19, 0x14, 0x13, 0x12, 0x11, 0x10, 0x11, 0x15, 0x19, 0x1d, 0x20, 0x28, 0x2c, 0x26, 0x23, 0x25, 0x24, 0x21, 0x1b, 0x18, 0x13, 0x0e, 0x0e, 0x11, 0x13, 0x14, 0x12, 0x16, 0x1a, 0x18, 0x14, 0x13, 0x16, 0x1a, 0x48, 0x43, 0x3c, 0x38, 0x36, 0x35, 0x32, 0x2f, 0x28, 0x23, 0x1f, 0x1e, 0x1c, 0x1a, 0x1a, 0x1b, 0x1c, 0x1c, 0x1d, 0x20, 0x23, 0x25, 0x26, 0x26, 0x2b, 0x2d, 0x30, 0x32, 0x33, 0x33, 0x34, 0x34, 0x35, 0x37, 0x35, 0x33, 0x36, 0x35, 0x37, 0x40, 0x4d, 0x64, 0x6e, 0x78, 0x7e, 0x77, 0x6f, 0x64, 0x62, 0x58, 0x4d, 0x4e, 0x5c, 0x6c, 0x6f, 0x6b, 0x6e, 0x76, 0x74, 0x6d, 0x6b, 0x69, 0x68, 0x6b, 0x6b, 0x67, 0x63, 0x60, 0x5a, 0x54, 0x55, 0x59, 0x5a, 0x59, 0x5c, 0x62, 0x5f, 0x5a, 0x5c, 0x63, 0x56, 0x48, 0x3d, 0x37, 0x32, 0x32, 0x31, 0x2b, 0x29, 0x2b, 0x2d, 0x2e, 0x30, 0x34, 0x3a, 0x3e, 0x46, 0x3e, 0x3a, 0x3e, 0x3c, 0x35, 0x33, 0x37, 0x35, 0x3d, 0x44, 0x47, 0x4d, 0x59, 0x65, 0x6b, 0x68, 0x6c, 0x70, 0x71, 0x6e, 0x6c, 0x6e, 0x71, 0x70, 0x73, 0x77, 0x77, 0x6d, 0x5e, 0x55, 0x55, 0x4a, 0x3e, 0x36, 0x35, 0x36, 0x3a, 0x36, 0x28, 0x2f, 0x2c, 0x2b, 0x2c, 0x2e, 0x32, 0x39, 0x3f, 0x42, 0x44, 0x46, 0x47, 0x48, 0x4b, 0x50, 0x54, 0x52, 0x56, 0x56, 0x52, 0x54, 0x5e, 0x63, 0x63, 0x63, 0x59, 0x51, 0x4d, 0x4c, 0x48, 0x47, 0x48, 0x4f, 0x52, 0x59, 0x61, 0x61, 0x5b, 0x56, 0x55, 0x51, 0x56, 0x5d, 0x62, 0x62, 0x65, 0x70, 0x7b, 0x8a, 0x80, 0x74, 0x6b, 0x65, 0x63, 0x64, 0x67, 0x62, 0x5e, 0x5f, 0x5f, 0x5f, 0x67, 0x6d, 0x6a, 0x6e, 0x6e, 0x72, 0x71, 0x61, 0x4b, 0x42, 0x46, 0x5a, 0x6d, 0x78, 0x76, 0x77, 0x7d, 0x77, 0x6a, 0x50, 0x53, 0x4c, 0x45, 0x47, 0x4a, 0x4b, 0x4d, 0x4a, 0x4d, 0x52, 0x58, 0x5d, 0x5f, 0x5b, 0x57, 0x50, 0x54, 0x5d, 0x68, 0x6d, 0x69, 0x61, 0x5b, 0x5a, 0x60, 0x65, 0x65, 0x62, 0x61, 0x65, 0x6a, 0x6c, 0x6d, 0x6a, 0x5f, 0x50, 0x46, 0x43, 0x45, 0x45, 0x46, 0x4b, 0x50, 0x52, 0x54, 0x58, 0x5d, 0x6b, 0x72, 0x76, 0x74, 0x71, 0x72, 0x76, 0x79, 0x7d, 0x7e, 0x7f, 0x7e, 0x7b, 0x7a, 0x79, 0x79, 0x7b, 0x76, 0x6d, 0x68, 0x6a, 0x70, 0x73, 0x72, 0x73, 0x7a, 0x7f, 0x7e, 0x7d, 0x7e, 0x7f, 0x7e, 0x80, 0x81, 0x83, 0x87, 0x8c, 0x8f, 0x90, 0x8f, 0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x97, 0x98, 0x9e, 0x9d, 0x9b, 0x9b, 0x9c, 0x9f, 0xa0, 0xa1, 0xaa, 0xa9, 0xa9, 0xac, 0xad, 0xaa, 0xa8, 0xa8, 0xa9, 0xaa, 0xab, 0xab, 0xac, 0xac, 0xac, 0xab, 0xa9, 0xa8, 0xa8, 0xa9, 0xac, 0xaf, 0xb2, 0xb3, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb1, 0xb0, 0xb0, 0xb0, 0xb1, 0xb4, 0xb6, 0xb8, 0xba, 0xbb, 0xbc, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xb7, 0xb5, 0xb2, 0xb2, 0xb2, 0xb3, 0xb3, 0xb3, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xaa, 0xa5, 0xa2, 0xa2, 0xa2, 0xa4, 0xa5, 0xa2, 0x9d, 0x9c, 0x9e, 0x9f, 0x9e, 0x9e, 0x9d, 0x9d, 0x9c, 0x9d, 0x9d, 0x9b, 0x98, 0x95, 0x94, 0x92, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x93, 0x91, 0x8e, 0x8b, 0x89, 0x89, 0x88, 0x86, 0x84, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x7c, 0x78, 0x76, 0x76, 0x75, 0x73, 0x72, 0x73, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x69, 0x67, 0x61, 0x64, 0x63, 0x5e, 0x5a, 0x5a, 0x57, 0x53, 0x56, 0x60, 0x64, 0x5b, 0x54, 0x55, 0x55, 0x52, 0x4c, 0x46, 0x42, 0x41, 0x41, 0x40, 0x40, 0x40, 0x43, 0x44, 0x48, 0x4a, 0x49, 0x47, 0x45, 0x45, 0x3e, 0x3e, 0x3b, 0x38, 0x39, 0x3e, 0x3f, 0x3b, 0x41, 0x41, 0x43, 0x45, 0x47, 0x49, 0x4e, 0x52, 0x55, 0x56, 0x56, 0x55, 0x53, 0x51, 0x51, 0x51, 0x5a, 0x79, 0x9c, 0xb0, 0xb5, 0xb4, 0xae, 0xa6, 0xa2, 0x9a, 0x91, 0x8b, 0x89, 0x83, 0x79, 0x71, 0x62, 0x63, 0x62, 0x64, 0x6f, 0x76, 0x6a, 0x56, 0x53, 0x51, 0x4b, 0x44, 0x42, 0x43, 0x43, 0x42, 0x51, 0x51, 0x53, 0x56, 0x53, 0x4d, 0x48, 0x47, 0x4c, 0x51, 0x5b, 0x63, 0x63, 0x62, 0x68, 0x72, 0x75, 0x65, 0x5c, 0x5a, 0x52, 0x4b, 0x59, 0x71, 0x62, 0x5e, 0x5c, 0x60, 0x6f, 0x7c, 0x6e, 0x51, 0x3f, 0x34, 0x28, 0x2e, 0x43, 0x52, 0x5b, 0x65, 0x55, 0x5f, 0x65, 0x5e, 0x4f, 0x40, 0x31, 0x27, 0x2e, 0x39, 0x48, 0x49, 0x3b, 0x35, 0x37, 0x38, 0x39, 0x2c, 0x24, 0x1f, 0x31, 0x42, 0x41, 0x56, 0x60, 0x6d, 0x5f, 0x4c, 0x3c, 0x32, 0x39, 0x3e, 0x29, 0x2d, 0x33, 0x33, 0x27, 0x1a, 0x18, 0x1e, 0x1c, 0x1b, 0x19, 0x15, 0x11, 0x10, 0x12, 0x14, 0x1d, 0x25, 0x26, 0x1d, 0x16, 0x16, 0x16, 0x11, 0x0d, 0x10, 0x10, 0x0f, 0x12, 0x18, 0x1a, 0x18, 0x14, 0x18, 0x1b, 0x1b, 0x18, 0x16, 0x18, 0x1b, 0x40, 0x3e, 0x3d, 0x3d, 0x3e, 0x3c, 0x37, 0x34, 0x28, 0x21, 0x1f, 0x1d, 0x18, 0x19, 0x1e, 0x1d, 0x1a, 0x1a, 0x1c, 0x20, 0x24, 0x27, 0x27, 0x26, 0x29, 0x2d, 0x31, 0x32, 0x31, 0x31, 0x33, 0x35, 0x36, 0x36, 0x33, 0x32, 0x34, 0x33, 0x38, 0x45, 0x4e, 0x63, 0x70, 0x75, 0x7f, 0x81, 0x76, 0x6c, 0x75, 0x72, 0x72, 0x76, 0x78, 0x73, 0x6d, 0x6a, 0x6b, 0x6e, 0x75, 0x7e, 0x82, 0x7d, 0x71, 0x66, 0x64, 0x64, 0x67, 0x6a, 0x69, 0x65, 0x61, 0x60, 0x61, 0x5c, 0x54, 0x4e, 0x4d, 0x52, 0x5a, 0x5f, 0x57, 0x46, 0x38, 0x36, 0x36, 0x33, 0x30, 0x31, 0x2e, 0x2c, 0x30, 0x37, 0x39, 0x35, 0x36, 0x3b, 0x49, 0x47, 0x43, 0x3e, 0x3e, 0x40, 0x3f, 0x3a, 0x3f, 0x40, 0x44, 0x47, 0x47, 0x48, 0x51, 0x5a, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x6c, 0x71, 0x75, 0x75, 0x72, 0x6c, 0x68, 0x6a, 0x6b, 0x62, 0x57, 0x4b, 0x3b, 0x36, 0x3b, 0x3b, 0x36, 0x30, 0x27, 0x2d, 0x2c, 0x2f, 0x35, 0x3b, 0x3e, 0x40, 0x42, 0x44, 0x49, 0x4c, 0x4a, 0x4c, 0x53, 0x5a, 0x5e, 0x66, 0x60, 0x5d, 0x5e, 0x5d, 0x5b, 0x61, 0x69, 0x5e, 0x56, 0x4d, 0x4b, 0x50, 0x56, 0x59, 0x5a, 0x5b, 0x54, 0x50, 0x56, 0x5d, 0x5f, 0x5c, 0x59, 0x5b, 0x61, 0x61, 0x5d, 0x60, 0x6e, 0x7c, 0x83, 0x85, 0x7d, 0x75, 0x72, 0x71, 0x6d, 0x67, 0x62, 0x66, 0x63, 0x5d, 0x65, 0x5c, 0x69, 0x6a, 0x6c, 0x63, 0x66, 0x6a, 0x6b, 0x64, 0x57, 0x4d, 0x48, 0x4d, 0x5a, 0x63, 0x65, 0x6c, 0x7a, 0x80, 0x7e, 0x68, 0x62, 0x57, 0x4c, 0x48, 0x48, 0x48, 0x47, 0x43, 0x50, 0x58, 0x54, 0x4f, 0x51, 0x59, 0x5e, 0x54, 0x4e, 0x52, 0x5c, 0x61, 0x66, 0x65, 0x5e, 0x5d, 0x5c, 0x59, 0x53, 0x50, 0x53, 0x59, 0x5e, 0x62, 0x66, 0x65, 0x5e, 0x54, 0x4f, 0x4d, 0x4e, 0x48, 0x4a, 0x51, 0x5a, 0x5f, 0x5d, 0x59, 0x58, 0x6a, 0x71, 0x70, 0x66, 0x64, 0x6b, 0x6c, 0x65, 0x6a, 0x73, 0x79, 0x76, 0x76, 0x7b, 0x7e, 0x7d, 0x79, 0x75, 0x6c, 0x64, 0x65, 0x6d, 0x71, 0x71, 0x71, 0x75, 0x7a, 0x7a, 0x79, 0x79, 0x7c, 0x80, 0x7f, 0x81, 0x82, 0x84, 0x88, 0x8f, 0x92, 0x91, 0x95, 0x94, 0x93, 0x95, 0x97, 0x9a, 0x9b, 0x9c, 0x9c, 0x9b, 0x9a, 0x9b, 0x9e, 0xa1, 0xa5, 0xa6, 0xab, 0xaa, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa8, 0xa8, 0xaa, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xaa, 0xad, 0xb0, 0xb2, 0xb1, 0xb0, 0xac, 0xad, 0xae, 0xb0, 0xb2, 0xb3, 0xb4, 0xb5, 0xb4, 0xb3, 0xb3, 0xb3, 0xb5, 0xb7, 0xba, 0xbc, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3, 0xb0, 0xb1, 0xb2, 0xb3, 0xb1, 0xad, 0xa6, 0xa2, 0xa2, 0xa3, 0xa5, 0xa4, 0xa2, 0xa0, 0xa1, 0xa2, 0xa3, 0xa2, 0xa1, 0xa0, 0x9e, 0x9c, 0x9a, 0x99, 0x97, 0x96, 0x96, 0x97, 0x97, 0x96, 0x94, 0x92, 0x93, 0x94, 0x95, 0x93, 0x8f, 0x8c, 0x8a, 0x8a, 0x87, 0x86, 0x85, 0x85, 0x85, 0x84, 0x82, 0x7f, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6a, 0x69, 0x64, 0x64, 0x63, 0x62, 0x60, 0x5c, 0x57, 0x53, 0x59, 0x5d, 0x5d, 0x59, 0x58, 0x59, 0x59, 0x57, 0x58, 0x58, 0x5a, 0x5a, 0x55, 0x4b, 0x43, 0x40, 0x46, 0x4d, 0x56, 0x5d, 0x5c, 0x58, 0x57, 0x59, 0x54, 0x58, 0x55, 0x51, 0x54, 0x5b, 0x58, 0x50, 0x4d, 0x4d, 0x46, 0x41, 0x43, 0x43, 0x45, 0x4c, 0x4d, 0x4e, 0x55, 0x55, 0x4a, 0x44, 0x41, 0x3c, 0x4d, 0x78, 0xa9, 0xc3, 0xc8, 0xca, 0xcc, 0xcd, 0xcc, 0xd1, 0xd5, 0xd1, 0xc1, 0xa6, 0x9a, 0xa1, 0x8a, 0x79, 0x6b, 0x65, 0x61, 0x5c, 0x5e, 0x65, 0x5a, 0x52, 0x52, 0x5d, 0x64, 0x63, 0x62, 0x63, 0x6f, 0x6f, 0x6f, 0x69, 0x5b, 0x4f, 0x4d, 0x52, 0x56, 0x53, 0x54, 0x57, 0x52, 0x4d, 0x54, 0x61, 0x65, 0x70, 0x75, 0x6d, 0x62, 0x5a, 0x52, 0x49, 0x4f, 0x4f, 0x4d, 0x4b, 0x4a, 0x47, 0x3a, 0x2e, 0x28, 0x28, 0x2d, 0x35, 0x3b, 0x42, 0x4c, 0x56, 0x62, 0x59, 0x4e, 0x44, 0x3b, 0x32, 0x2e, 0x2e, 0x2e, 0x3f, 0x4a, 0x4d, 0x4c, 0x41, 0x31, 0x29, 0x30, 0x32, 0x25, 0x20, 0x28, 0x29, 0x30, 0x46, 0x5a, 0x49, 0x37, 0x2f, 0x2e, 0x31, 0x38, 0x3f, 0x29, 0x37, 0x3a, 0x2a, 0x1a, 0x18, 0x1d, 0x1e, 0x1e, 0x1a, 0x17, 0x15, 0x12, 0x11, 0x15, 0x1a, 0x22, 0x2d, 0x2a, 0x1f, 0x1e, 0x1e, 0x18, 0x12, 0x10, 0x11, 0x0f, 0x0d, 0x10, 0x17, 0x1b, 0x1a, 0x18, 0x1b, 0x1e, 0x1e, 0x1b, 0x1b, 0x1f, 0x22, 0x32, 0x33, 0x36, 0x3b, 0x3e, 0x3e, 0x3b, 0x37, 0x2a, 0x1f, 0x1b, 0x1b, 0x19, 0x1b, 0x1e, 0x1b, 0x1a, 0x1a, 0x1b, 0x1f, 0x23, 0x26, 0x27, 0x27, 0x29, 0x2d, 0x31, 0x33, 0x33, 0x33, 0x35, 0x37, 0x39, 0x39, 0x36, 0x36, 0x38, 0x36, 0x3b, 0x48, 0x58, 0x6c, 0x76, 0x74, 0x75, 0x71, 0x65, 0x5c, 0x4e, 0x5d, 0x71, 0x7e, 0x7f, 0x78, 0x6e, 0x68, 0x66, 0x64, 0x65, 0x6a, 0x6e, 0x6a, 0x5f, 0x54, 0x58, 0x5b, 0x62, 0x68, 0x67, 0x60, 0x58, 0x55, 0x57, 0x57, 0x56, 0x53, 0x52, 0x56, 0x5d, 0x62, 0x52, 0x45, 0x3a, 0x3a, 0x3a, 0x36, 0x31, 0x2f, 0x2d, 0x31, 0x3e, 0x4e, 0x53, 0x4e, 0x49, 0x48, 0x4f, 0x49, 0x3f, 0x39, 0x3c, 0x41, 0x41, 0x3c, 0x3e, 0x3e, 0x41, 0x46, 0x48, 0x48, 0x49, 0x4d, 0x51, 0x55, 0x5a, 0x5f, 0x65, 0x6c, 0x73, 0x78, 0x7e, 0x7a, 0x71, 0x68, 0x66, 0x68, 0x65, 0x5e, 0x48, 0x3e, 0x42, 0x52, 0x5c, 0x59, 0x47, 0x31, 0x31, 0x30, 0x32, 0x37, 0x3c, 0x3f, 0x42, 0x46, 0x46, 0x47, 0x45, 0x41, 0x41, 0x47, 0x4c, 0x4e, 0x59, 0x5d, 0x62, 0x66, 0x65, 0x62, 0x62, 0x64, 0x67, 0x5a, 0x4d, 0x4c, 0x56, 0x60, 0x65, 0x64, 0x65, 0x58, 0x4c, 0x4a, 0x52, 0x5c, 0x66, 0x6d, 0x65, 0x68, 0x67, 0x64, 0x6a, 0x7a, 0x88, 0x8d, 0x74, 0x6a, 0x65, 0x6c, 0x73, 0x72, 0x6d, 0x69, 0x7a, 0x7b, 0x79, 0x72, 0x5d, 0x5b, 0x60, 0x66, 0x6b, 0x66, 0x63, 0x64, 0x65, 0x63, 0x5f, 0x5e, 0x58, 0x62, 0x68, 0x66, 0x67, 0x6e, 0x6f, 0x6b, 0x6f, 0x69, 0x5f, 0x54, 0x4a, 0x44, 0x44, 0x47, 0x47, 0x4a, 0x53, 0x5f, 0x61, 0x59, 0x51, 0x4f, 0x5d, 0x53, 0x50, 0x53, 0x56, 0x5d, 0x62, 0x5e, 0x56, 0x56, 0x50, 0x49, 0x49, 0x50, 0x55, 0x56, 0x4d, 0x54, 0x54, 0x4a, 0x44, 0x47, 0x49, 0x47, 0x54, 0x54, 0x57, 0x5c, 0x5f, 0x60, 0x62, 0x66, 0x63, 0x67, 0x66, 0x61, 0x62, 0x67, 0x65, 0x5e, 0x63, 0x67, 0x68, 0x67, 0x6c, 0x74, 0x76, 0x72, 0x6d, 0x6c, 0x68, 0x63, 0x64, 0x6a, 0x6d, 0x6d, 0x71, 0x73, 0x75, 0x75, 0x76, 0x78, 0x7c, 0x80, 0x80, 0x83, 0x86, 0x87, 0x8b, 0x90, 0x93, 0x93, 0x93, 0x93, 0x94, 0x96, 0x99, 0x9a, 0x9b, 0x9a, 0x9c, 0x9b, 0x9b, 0x9c, 0x9e, 0xa1, 0xa3, 0xa4, 0xa7, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xaa, 0xa8, 0xa8, 0xa9, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xae, 0xb2, 0xb4, 0xb3, 0xb2, 0xb0, 0xb1, 0xb2, 0xb2, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xba, 0xba, 0xb8, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb8, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb2, 0xb1, 0xb1, 0xb1, 0xb0, 0xac, 0xa8, 0xa4, 0xa2, 0xa4, 0xa5, 0xa4, 0xa2, 0xa1, 0xa2, 0xa3, 0xa1, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x94, 0x92, 0x92, 0x94, 0x95, 0x93, 0x90, 0x8d, 0x8c, 0x8c, 0x87, 0x86, 0x85, 0x85, 0x86, 0x85, 0x82, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x79, 0x77, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x69, 0x65, 0x63, 0x62, 0x62, 0x60, 0x5d, 0x57, 0x53, 0x54, 0x57, 0x57, 0x53, 0x4f, 0x50, 0x52, 0x51, 0x57, 0x57, 0x58, 0x58, 0x53, 0x49, 0x42, 0x3f, 0x48, 0x4f, 0x59, 0x5f, 0x5e, 0x5b, 0x5d, 0x61, 0x69, 0x6c, 0x6d, 0x6b, 0x6d, 0x71, 0x71, 0x6e, 0x6f, 0x67, 0x54, 0x45, 0x43, 0x41, 0x41, 0x45, 0x4c, 0x46, 0x44, 0x44, 0x42, 0x42, 0x43, 0x42, 0x3a, 0x4e, 0x63, 0x6a, 0x6d, 0x74, 0x7d, 0x82, 0x8e, 0x90, 0x94, 0x9e, 0xa0, 0x8e, 0x7b, 0x79, 0x6a, 0x68, 0x63, 0x5e, 0x5d, 0x61, 0x64, 0x65, 0x5c, 0x57, 0x5b, 0x69, 0x72, 0x72, 0x75, 0x7d, 0x8e, 0x82, 0x71, 0x61, 0x54, 0x50, 0x58, 0x63, 0x6d, 0x6a, 0x65, 0x5c, 0x50, 0x48, 0x4c, 0x56, 0x66, 0x74, 0x8b, 0xa8, 0xbd, 0xb4, 0x83, 0x51, 0x47, 0x42, 0x38, 0x2e, 0x2a, 0x2c, 0x2d, 0x2a, 0x2b, 0x28, 0x29, 0x32, 0x3f, 0x4c, 0x56, 0x5b, 0x55, 0x48, 0x39, 0x33, 0x31, 0x2e, 0x29, 0x26, 0x2f, 0x3c, 0x45, 0x47, 0x46, 0x3d, 0x33, 0x32, 0x1f, 0x1d, 0x22, 0x27, 0x24, 0x27, 0x3a, 0x4d, 0x57, 0x59, 0x54, 0x47, 0x3f, 0x3e, 0x3d, 0x39, 0x2c, 0x39, 0x3d, 0x30, 0x1f, 0x1b, 0x21, 0x27, 0x1c, 0x19, 0x17, 0x15, 0x11, 0x10, 0x14, 0x1a, 0x28, 0x32, 0x2e, 0x22, 0x20, 0x21, 0x1b, 0x16, 0x10, 0x11, 0x10, 0x0f, 0x12, 0x19, 0x1d, 0x1c, 0x1a, 0x1f, 0x23, 0x21, 0x1d, 0x1c, 0x1f, 0x24, 0x2f, 0x2f, 0x32, 0x37, 0x3b, 0x3d, 0x3b, 0x39, 0x2b, 0x1d, 0x17, 0x19, 0x19, 0x1c, 0x1d, 0x19, 0x1b, 0x1b, 0x1b, 0x1d, 0x21, 0x25, 0x28, 0x29, 0x2b, 0x2e, 0x32, 0x34, 0x35, 0x35, 0x38, 0x3a, 0x3a, 0x3a, 0x37, 0x37, 0x39, 0x37, 0x3b, 0x48, 0x65, 0x78, 0x7f, 0x78, 0x73, 0x6c, 0x60, 0x58, 0x4c, 0x5e, 0x6f, 0x71, 0x6b, 0x66, 0x62, 0x5f, 0x64, 0x61, 0x5f, 0x62, 0x65, 0x60, 0x54, 0x49, 0x48, 0x4d, 0x57, 0x5f, 0x5f, 0x57, 0x50, 0x4c, 0x4d, 0x49, 0x47, 0x47, 0x4b, 0x4d, 0x4d, 0x4c, 0x4c, 0x40, 0x36, 0x35, 0x35, 0x32, 0x2f, 0x2f, 0x2e, 0x33, 0x41, 0x54, 0x5f, 0x60, 0x5d, 0x5d, 0x5e, 0x5b, 0x53, 0x4b, 0x46, 0x45, 0x43, 0x41, 0x47, 0x44, 0x43, 0x46, 0x48, 0x46, 0x43, 0x42, 0x48, 0x4c, 0x52, 0x56, 0x5a, 0x5d, 0x62, 0x65, 0x6e, 0x6e, 0x68, 0x62, 0x62, 0x67, 0x69, 0x66, 0x54, 0x4a, 0x4b, 0x5b, 0x6b, 0x71, 0x61, 0x47, 0x32, 0x30, 0x30, 0x33, 0x35, 0x38, 0x3d, 0x43, 0x4d, 0x4d, 0x49, 0x44, 0x41, 0x43, 0x44, 0x44, 0x4b, 0x52, 0x59, 0x5c, 0x5f, 0x64, 0x69, 0x6b, 0x61, 0x5a, 0x56, 0x5c, 0x66, 0x6b, 0x65, 0x5d, 0x5a, 0x53, 0x4f, 0x51, 0x57, 0x5b, 0x5e, 0x60, 0x63, 0x64, 0x62, 0x62, 0x6a, 0x75, 0x7a, 0x79, 0x62, 0x56, 0x51, 0x5c, 0x6d, 0x75, 0x75, 0x73, 0x6f, 0x6e, 0x73, 0x67, 0x5a, 0x55, 0x63, 0x69, 0x6e, 0x6b, 0x6a, 0x6b, 0x6b, 0x68, 0x66, 0x66, 0x73, 0x78, 0x76, 0x6e, 0x6c, 0x71, 0x74, 0x72, 0x6c, 0x69, 0x69, 0x67, 0x5c, 0x49, 0x38, 0x30, 0x3f, 0x3e, 0x51, 0x73, 0x82, 0x74, 0x60, 0x58, 0x59, 0x53, 0x53, 0x55, 0x56, 0x5e, 0x65, 0x63, 0x5e, 0x5a, 0x50, 0x46, 0x44, 0x4a, 0x4d, 0x4c, 0x51, 0x52, 0x50, 0x4c, 0x49, 0x4a, 0x4d, 0x4e, 0x57, 0x57, 0x5a, 0x5d, 0x5c, 0x58, 0x56, 0x56, 0x65, 0x66, 0x67, 0x67, 0x6a, 0x6c, 0x69, 0x64, 0x59, 0x57, 0x52, 0x52, 0x5d, 0x6a, 0x6f, 0x6b, 0x60, 0x62, 0x64, 0x63, 0x64, 0x67, 0x6a, 0x6a, 0x70, 0x70, 0x6f, 0x70, 0x73, 0x77, 0x7c, 0x7f, 0x80, 0x85, 0x8a, 0x8b, 0x8d, 0x91, 0x94, 0x95, 0x92, 0x92, 0x94, 0x97, 0x9a, 0x9b, 0x9a, 0x98, 0x9a, 0x9b, 0x9c, 0x9e, 0x9f, 0xa0, 0xa1, 0xa1, 0xa3, 0xa4, 0xa6, 0xa7, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xad, 0xb0, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0xb2, 0xb1, 0xaf, 0xae, 0xac, 0xa9, 0xa6, 0xa3, 0xa4, 0xa4, 0xa4, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa2, 0xa2, 0x9f, 0x9d, 0x9a, 0x98, 0x97, 0x95, 0x94, 0x92, 0x92, 0x93, 0x94, 0x93, 0x91, 0x8f, 0x8e, 0x8e, 0x88, 0x87, 0x86, 0x86, 0x86, 0x85, 0x83, 0x81, 0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x75, 0x75, 0x75, 0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x66, 0x64, 0x62, 0x61, 0x61, 0x5e, 0x59, 0x54, 0x4f, 0x52, 0x51, 0x4b, 0x45, 0x45, 0x48, 0x4b, 0x4e, 0x4d, 0x4d, 0x4e, 0x4b, 0x44, 0x3f, 0x3d, 0x49, 0x4e, 0x54, 0x57, 0x53, 0x4f, 0x51, 0x56, 0x63, 0x62, 0x64, 0x66, 0x65, 0x64, 0x67, 0x6b, 0x6e, 0x6b, 0x61, 0x5b, 0x5f, 0x5f, 0x5a, 0x59, 0x52, 0x4f, 0x4e, 0x50, 0x4d, 0x47, 0x44, 0x45, 0x46, 0x4a, 0x4a, 0x46, 0x46, 0x4a, 0x4c, 0x4a, 0x48, 0x4f, 0x5a, 0x67, 0x6c, 0x61, 0x59, 0x5d, 0x5f, 0x68, 0x69, 0x61, 0x62, 0x69, 0x68, 0x5f, 0x56, 0x50, 0x55, 0x63, 0x6a, 0x68, 0x6e, 0x79, 0x79, 0x75, 0x6c, 0x5f, 0x53, 0x52, 0x5f, 0x6d, 0x75, 0x74, 0x6d, 0x60, 0x51, 0x48, 0x49, 0x4d, 0x62, 0x72, 0x8b, 0xa9, 0xc0, 0xb6, 0x7f, 0x46, 0x3f, 0x3d, 0x37, 0x2f, 0x29, 0x27, 0x27, 0x25, 0x28, 0x26, 0x27, 0x31, 0x43, 0x51, 0x53, 0x4f, 0x40, 0x36, 0x2e, 0x2f, 0x32, 0x2f, 0x25, 0x1e, 0x14, 0x1e, 0x33, 0x4b, 0x4d, 0x34, 0x24, 0x2b, 0x33, 0x28, 0x2a, 0x26, 0x19, 0x27, 0x3e, 0x3f, 0x46, 0x53, 0x4f, 0x38, 0x2d, 0x37, 0x3f, 0x3d, 0x3a, 0x32, 0x27, 0x20, 0x1f, 0x21, 0x25, 0x27, 0x19, 0x19, 0x18, 0x15, 0x11, 0x0f, 0x14, 0x1b, 0x2c, 0x35, 0x31, 0x26, 0x26, 0x28, 0x22, 0x1d, 0x10, 0x11, 0x11, 0x11, 0x15, 0x1b, 0x1e, 0x1e, 0x1c, 0x21, 0x26, 0x25, 0x20, 0x1d, 0x1f, 0x21, 0x3a, 0x38, 0x36, 0x37, 0x39, 0x3a, 0x38, 0x37, 0x2a, 0x1c, 0x16, 0x18, 0x18, 0x1a, 0x1c, 0x1a, 0x1d, 0x1c, 0x1c, 0x1e, 0x21, 0x26, 0x2a, 0x2d, 0x2e, 0x30, 0x33, 0x35, 0x36, 0x37, 0x38, 0x3a, 0x3a, 0x3b, 0x38, 0x38, 0x3a, 0x37, 0x3b, 0x48, 0x60, 0x72, 0x78, 0x73, 0x71, 0x6f, 0x67, 0x61, 0x51, 0x5c, 0x60, 0x5a, 0x55, 0x5a, 0x5e, 0x5d, 0x58, 0x54, 0x51, 0x50, 0x50, 0x4d, 0x47, 0x42, 0x42, 0x46, 0x4d, 0x53, 0x54, 0x52, 0x52, 0x55, 0x5c, 0x5a, 0x56, 0x51, 0x4d, 0x4b, 0x4c, 0x4e, 0x5a, 0x4b, 0x3a, 0x31, 0x2d, 0x2b, 0x2c, 0x2e, 0x2f, 0x34, 0x41, 0x55, 0x64, 0x69, 0x69, 0x68, 0x6a, 0x70, 0x72, 0x6a, 0x5a, 0x4c, 0x46, 0x45, 0x49, 0x46, 0x43, 0x44, 0x46, 0x48, 0x48, 0x49, 0x4e, 0x53, 0x57, 0x56, 0x52, 0x50, 0x53, 0x57, 0x59, 0x5d, 0x5f, 0x61, 0x66, 0x6c, 0x6b, 0x65, 0x5c, 0x52, 0x4f, 0x56, 0x62, 0x6c, 0x62, 0x4c, 0x33, 0x30, 0x2d, 0x2d, 0x2d, 0x2f, 0x35, 0x3c, 0x45, 0x48, 0x4c, 0x4e, 0x50, 0x55, 0x5b, 0x5e, 0x5d, 0x60, 0x5e, 0x59, 0x59, 0x5d, 0x5d, 0x59, 0x5b, 0x5c, 0x61, 0x69, 0x6e, 0x6c, 0x63, 0x5b, 0x5d, 0x57, 0x52, 0x52, 0x54, 0x56, 0x59, 0x5b, 0x5f, 0x60, 0x63, 0x6a, 0x73, 0x77, 0x70, 0x66, 0x61, 0x59, 0x4f, 0x52, 0x64, 0x78, 0x81, 0x80, 0x71, 0x69, 0x6c, 0x60, 0x60, 0x59, 0x64, 0x60, 0x64, 0x65, 0x67, 0x65, 0x5f, 0x5a, 0x5c, 0x62, 0x65, 0x68, 0x66, 0x62, 0x68, 0x7a, 0x8a, 0x92, 0x7a, 0x6f, 0x68, 0x6b, 0x6d, 0x68, 0x60, 0x5d, 0x4d, 0x4b, 0x59, 0x73, 0x7d, 0x6e, 0x5b, 0x54, 0x4e, 0x55, 0x62, 0x67, 0x62, 0x60, 0x5f, 0x5a, 0x5e, 0x58, 0x53, 0x51, 0x50, 0x50, 0x53, 0x59, 0x5b, 0x4f, 0x47, 0x48, 0x47, 0x41, 0x43, 0x4a, 0x4f, 0x50, 0x55, 0x5f, 0x67, 0x6b, 0x6e, 0x6f, 0x66, 0x65, 0x64, 0x63, 0x61, 0x5e, 0x5c, 0x5b, 0x55, 0x50, 0x49, 0x47, 0x4e, 0x58, 0x5e, 0x5e, 0x5a, 0x5e, 0x62, 0x64, 0x65, 0x67, 0x69, 0x6a, 0x6f, 0x6d, 0x6d, 0x6f, 0x74, 0x79, 0x7c, 0x7d, 0x7f, 0x86, 0x8c, 0x8d, 0x8e, 0x90, 0x93, 0x94, 0x92, 0x92, 0x93, 0x96, 0x98, 0x9a, 0x99, 0x99, 0x99, 0x9b, 0x9d, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0xa1, 0xa2, 0xa4, 0xa6, 0xa8, 0xa8, 0xa8, 0xa8, 0xa6, 0xa5, 0xa5, 0xa7, 0xa8, 0xa9, 0xa8, 0xa7, 0xac, 0xad, 0xae, 0xb0, 0xb2, 0xb3, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0xb5, 0xb3, 0xb1, 0xb0, 0xae, 0xac, 0xa8, 0xa6, 0xa3, 0xa3, 0xa3, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa5, 0xa5, 0xa5, 0xa4, 0xa4, 0xa2, 0xa2, 0xa1, 0x9e, 0x9c, 0x99, 0x97, 0x96, 0x96, 0x95, 0x94, 0x93, 0x94, 0x93, 0x93, 0x91, 0x8f, 0x8e, 0x8e, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x84, 0x82, 0x83, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x78, 0x79, 0x78, 0x75, 0x72, 0x6e, 0x6c, 0x69, 0x66, 0x63, 0x62, 0x63, 0x61, 0x5b, 0x57, 0x4f, 0x51, 0x4f, 0x48, 0x40, 0x3d, 0x41, 0x45, 0x40, 0x3d, 0x3c, 0x3d, 0x3d, 0x3c, 0x3c, 0x3d, 0x48, 0x48, 0x4a, 0x4c, 0x4b, 0x4a, 0x4c, 0x4f, 0x5c, 0x53, 0x50, 0x54, 0x53, 0x4d, 0x50, 0x58, 0x63, 0x66, 0x65, 0x67, 0x6e, 0x6f, 0x6b, 0x6b, 0x6a, 0x72, 0x78, 0x78, 0x6c, 0x56, 0x47, 0x45, 0x44, 0x45, 0x45, 0x46, 0x4a, 0x4f, 0x4d, 0x48, 0x48, 0x4d, 0x50, 0x52, 0x51, 0x4b, 0x4d, 0x5a, 0x5f, 0x65, 0x67, 0x65, 0x6b, 0x72, 0x6b, 0x5c, 0x4a, 0x42, 0x44, 0x4e, 0x51, 0x4c, 0x4f, 0x59, 0x54, 0x60, 0x68, 0x60, 0x4f, 0x49, 0x56, 0x67, 0x69, 0x6b, 0x68, 0x60, 0x58, 0x54, 0x52, 0x4f, 0x55, 0x5d, 0x62, 0x68, 0x75, 0x7e, 0x70, 0x59, 0x4d, 0x44, 0x35, 0x28, 0x23, 0x26, 0x2d, 0x32, 0x29, 0x2c, 0x33, 0x40, 0x4f, 0x56, 0x4c, 0x3e, 0x2d, 0x2e, 0x33, 0x38, 0x35, 0x29, 0x1d, 0x15, 0x17, 0x1d, 0x20, 0x25, 0x2b, 0x2a, 0x2e, 0x38, 0x1b, 0x19, 0x19, 0x18, 0x27, 0x49, 0x58, 0x49, 0x58, 0x5f, 0x52, 0x32, 0x22, 0x2e, 0x3c, 0x3f, 0x31, 0x20, 0x12, 0x13, 0x1a, 0x1d, 0x1c, 0x1a, 0x19, 0x19, 0x1a, 0x17, 0x12, 0x0f, 0x14, 0x1c, 0x2b, 0x35, 0x33, 0x2a, 0x2d, 0x30, 0x28, 0x21, 0x12, 0x12, 0x11, 0x13, 0x16, 0x1a, 0x1c, 0x1c, 0x1c, 0x21, 0x26, 0x28, 0x25, 0x20, 0x1d, 0x1b, 0x41, 0x3f, 0x3e, 0x3d, 0x3e, 0x3c, 0x38, 0x34, 0x28, 0x1b, 0x16, 0x19, 0x17, 0x17, 0x1b, 0x1c, 0x1f, 0x1f, 0x1f, 0x20, 0x23, 0x28, 0x2d, 0x31, 0x31, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3d, 0x3e, 0x3b, 0x3b, 0x3d, 0x3a, 0x3e, 0x4a, 0x58, 0x68, 0x6d, 0x6b, 0x72, 0x77, 0x72, 0x6d, 0x54, 0x59, 0x5a, 0x56, 0x56, 0x59, 0x54, 0x4a, 0x4e, 0x4d, 0x4c, 0x49, 0x46, 0x45, 0x47, 0x49, 0x47, 0x47, 0x48, 0x49, 0x4b, 0x50, 0x5c, 0x66, 0x6d, 0x6f, 0x6d, 0x60, 0x52, 0x4e, 0x56, 0x61, 0x69, 0x5a, 0x46, 0x36, 0x2e, 0x2b, 0x2d, 0x2f, 0x2f, 0x37, 0x48, 0x5c, 0x6a, 0x6d, 0x68, 0x63, 0x63, 0x69, 0x6f, 0x6c, 0x61, 0x53, 0x49, 0x45, 0x3f, 0x42, 0x45, 0x47, 0x49, 0x4e, 0x53, 0x57, 0x6c, 0x70, 0x6f, 0x66, 0x59, 0x51, 0x52, 0x56, 0x51, 0x54, 0x55, 0x58, 0x60, 0x64, 0x5d, 0x53, 0x52, 0x50, 0x52, 0x54, 0x56, 0x59, 0x50, 0x3e, 0x35, 0x30, 0x2d, 0x2c, 0x2e, 0x30, 0x37, 0x3d, 0x40, 0x42, 0x46, 0x47, 0x49, 0x4e, 0x58, 0x61, 0x71, 0x73, 0x71, 0x6e, 0x6d, 0x6d, 0x64, 0x5a, 0x5c, 0x60, 0x64, 0x65, 0x64, 0x65, 0x6a, 0x6e, 0x66, 0x62, 0x5f, 0x60, 0x60, 0x5c, 0x58, 0x56, 0x54, 0x56, 0x5b, 0x66, 0x72, 0x74, 0x6a, 0x5e, 0x65, 0x65, 0x5c, 0x54, 0x5f, 0x78, 0x84, 0x80, 0x6c, 0x65, 0x6e, 0x6a, 0x6f, 0x65, 0x67, 0x5b, 0x5c, 0x57, 0x52, 0x4e, 0x4c, 0x4e, 0x57, 0x5f, 0x5c, 0x5e, 0x5b, 0x5a, 0x62, 0x75, 0x89, 0x93, 0x9e, 0x90, 0x81, 0x78, 0x71, 0x6a, 0x68, 0x6b, 0x74, 0x75, 0x77, 0x77, 0x71, 0x66, 0x5f, 0x5c, 0x62, 0x73, 0x88, 0x8b, 0x7a, 0x6b, 0x61, 0x57, 0x4e, 0x4d, 0x58, 0x68, 0x6b, 0x64, 0x67, 0x74, 0x81, 0x73, 0x5e, 0x4b, 0x40, 0x3b, 0x3c, 0x3e, 0x49, 0x42, 0x3f, 0x45, 0x52, 0x5e, 0x68, 0x6e, 0x77, 0x77, 0x74, 0x6c, 0x61, 0x5a, 0x5a, 0x5d, 0x59, 0x57, 0x53, 0x4f, 0x4c, 0x4d, 0x4c, 0x4b, 0x5a, 0x5d, 0x61, 0x64, 0x66, 0x66, 0x69, 0x6c, 0x6d, 0x6c, 0x6e, 0x72, 0x78, 0x7c, 0x7d, 0x7c, 0x7f, 0x86, 0x8b, 0x8d, 0x8d, 0x8f, 0x91, 0x92, 0x93, 0x92, 0x92, 0x93, 0x96, 0x98, 0x9a, 0x9a, 0x98, 0x9b, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0xa1, 0xa2, 0xa3, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6, 0xa2, 0xa4, 0xa6, 0xa9, 0xac, 0xac, 0xaa, 0xa8, 0xac, 0xad, 0xae, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb3, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb8, 0xb9, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4, 0xb4, 0xb4, 0xb2, 0xb1, 0xaf, 0xac, 0xa8, 0xa4, 0xa5, 0xa4, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1, 0xa1, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0, 0xa1, 0x9e, 0x9b, 0x99, 0x98, 0x98, 0x97, 0x97, 0x95, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8d, 0x8c, 0x89, 0x89, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x84, 0x84, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x74, 0x70, 0x6e, 0x6c, 0x69, 0x66, 0x65, 0x65, 0x63, 0x5f, 0x5b, 0x52, 0x52, 0x4f, 0x48, 0x3e, 0x38, 0x3b, 0x3f, 0x38, 0x33, 0x30, 0x31, 0x34, 0x38, 0x3c, 0x40, 0x46, 0x44, 0x45, 0x4a, 0x51, 0x56, 0x5a, 0x5d, 0x5f, 0x50, 0x47, 0x4a, 0x49, 0x41, 0x42, 0x4b, 0x57, 0x68, 0x7f, 0x93, 0x9c, 0x93, 0x87, 0x87, 0x8b, 0x90, 0x8c, 0x82, 0x77, 0x60, 0x4b, 0x47, 0x47, 0x45, 0x43, 0x42, 0x44, 0x47, 0x47, 0x45, 0x4b, 0x47, 0x3f, 0x40, 0x48, 0x4b, 0x51, 0x5b, 0x5c, 0x57, 0x57, 0x60, 0x6d, 0x71, 0x67, 0x5c, 0x41, 0x39, 0x39, 0x42, 0x47, 0x44, 0x46, 0x4c, 0x65, 0x6e, 0x71, 0x63, 0x4f, 0x48, 0x52, 0x5f, 0x62, 0x62, 0x60, 0x5d, 0x5d, 0x5d, 0x59, 0x53, 0x53, 0x4f, 0x46, 0x42, 0x4d, 0x5f, 0x63, 0x5b, 0x4d, 0x4e, 0x4f, 0x50, 0x4c, 0x42, 0x35, 0x2d, 0x20, 0x26, 0x30, 0x3e, 0x49, 0x49, 0x3d, 0x30, 0x2d, 0x34, 0x3b, 0x38, 0x28, 0x18, 0x12, 0x14, 0x1c, 0x46, 0x5d, 0x59, 0x5c, 0x5d, 0x45, 0x25, 0x1e, 0x22, 0x1c, 0x1f, 0x36, 0x3e, 0x2f, 0x20, 0x37, 0x3b, 0x34, 0x20, 0x13, 0x16, 0x1d, 0x1f, 0x16, 0x12, 0x13, 0x18, 0x17, 0x11, 0x10, 0x14, 0x1a, 0x1b, 0x1c, 0x1a, 0x14, 0x11, 0x16, 0x1d, 0x29, 0x34, 0x33, 0x2e, 0x32, 0x34, 0x29, 0x1f, 0x15, 0x13, 0x12, 0x13, 0x15, 0x17, 0x19, 0x1a, 0x1d, 0x20, 0x25, 0x2a, 0x2b, 0x26, 0x1e, 0x18, 0x3c, 0x3d, 0x40, 0x43, 0x45, 0x41, 0x3b, 0x35, 0x28, 0x1a, 0x16, 0x19, 0x17, 0x16, 0x1b, 0x1d, 0x21, 0x21, 0x21, 0x22, 0x25, 0x2a, 0x30, 0x34, 0x34, 0x35, 0x35, 0x36, 0x37, 0x38, 0x39, 0x39, 0x3d, 0x3e, 0x3b, 0x3b, 0x3d, 0x3a, 0x3d, 0x49, 0x51, 0x5e, 0x61, 0x5e, 0x66, 0x6e, 0x6b, 0x67, 0x59, 0x5a, 0x59, 0x59, 0x5c, 0x5b, 0x4f, 0x41, 0x47, 0x51, 0x5d, 0x61, 0x5d, 0x56, 0x50, 0x4e, 0x4a, 0x48, 0x45, 0x43, 0x43, 0x4a, 0x5a, 0x69, 0x6d, 0x66, 0x5d, 0x57, 0x55, 0x56, 0x57, 0x57, 0x58, 0x4e, 0x41, 0x35, 0x2e, 0x2e, 0x2f, 0x31, 0x35, 0x3a, 0x44, 0x51, 0x5a, 0x5d, 0x5b, 0x58, 0x4e, 0x4b, 0x4b, 0x50, 0x53, 0x50, 0x4a, 0x45, 0x4d, 0x55, 0x5c, 0x5d, 0x5c, 0x5d, 0x61, 0x63, 0x69, 0x6b, 0x6b, 0x64, 0x5a, 0x54, 0x54, 0x57, 0x58, 0x57, 0x53, 0x53, 0x5b, 0x62, 0x5e, 0x55, 0x50, 0x4e, 0x4f, 0x4f, 0x4a, 0x49, 0x46, 0x3c, 0x36, 0x31, 0x2e, 0x2f, 0x33, 0x37, 0x3d, 0x42, 0x4a, 0x49, 0x47, 0x46, 0x46, 0x4b, 0x55, 0x5f, 0x5b, 0x5a, 0x57, 0x57, 0x5c, 0x5e, 0x5b, 0x55, 0x55, 0x5c, 0x62, 0x63, 0x61, 0x64, 0x6d, 0x76, 0x70, 0x6d, 0x6d, 0x6e, 0x6a, 0x5e, 0x50, 0x48, 0x4c, 0x4a, 0x4b, 0x53, 0x5c, 0x5f, 0x58, 0x51, 0x5a, 0x62, 0x5f, 0x56, 0x5b, 0x6c, 0x72, 0x6b, 0x5f, 0x66, 0x79, 0x7f, 0x7e, 0x75, 0x72, 0x69, 0x63, 0x59, 0x51, 0x52, 0x57, 0x59, 0x58, 0x56, 0x61, 0x64, 0x64, 0x63, 0x67, 0x71, 0x7b, 0x80, 0x88, 0x8a, 0x88, 0x7f, 0x74, 0x71, 0x79, 0x83, 0x8f, 0x98, 0x9b, 0x93, 0x85, 0x7b, 0x72, 0x6b, 0x6b, 0x7d, 0x91, 0x91, 0x7d, 0x70, 0x68, 0x60, 0x5e, 0x62, 0x74, 0x89, 0x8a, 0x7d, 0x7b, 0x86, 0x92, 0x94, 0x83, 0x64, 0x59, 0x67, 0x75, 0x74, 0x6e, 0x65, 0x5c, 0x5b, 0x60, 0x64, 0x66, 0x68, 0x6d, 0x71, 0x70, 0x66, 0x5d, 0x5c, 0x62, 0x67, 0x66, 0x66, 0x65, 0x64, 0x61, 0x5b, 0x54, 0x4f, 0x5b, 0x5c, 0x5f, 0x63, 0x65, 0x66, 0x68, 0x6c, 0x6c, 0x6e, 0x71, 0x76, 0x7b, 0x7e, 0x7e, 0x7c, 0x80, 0x86, 0x8a, 0x8b, 0x8c, 0x8f, 0x90, 0x90, 0x93, 0x92, 0x91, 0x92, 0x95, 0x98, 0x99, 0x9a, 0x99, 0x9b, 0x9d, 0x9d, 0x9b, 0x9b, 0x9c, 0x9e, 0xa0, 0xa1, 0xa1, 0xa2, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4, 0xa5, 0xa8, 0xab, 0xae, 0xae, 0xac, 0xaa, 0xaa, 0xac, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb2, 0xb2, 0xb3, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb4, 0xb5, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb4, 0xb3, 0xb3, 0xb3, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb7, 0xb5, 0xb4, 0xb3, 0xb3, 0xb2, 0xb1, 0xb0, 0xad, 0xa9, 0xa6, 0xa7, 0xa5, 0xa3, 0xa1, 0xa1, 0xa1, 0xa1, 0xa0, 0xa0, 0xa1, 0xa1, 0xa2, 0xa2, 0xa2, 0xa2, 0xa1, 0xa2, 0x9f, 0x9b, 0x98, 0x96, 0x95, 0x94, 0x92, 0x96, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x89, 0x8a, 0x8b, 0x8a, 0x88, 0x87, 0x86, 0x86, 0x86, 0x84, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x76, 0x73, 0x71, 0x6d, 0x6b, 0x69, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x54, 0x53, 0x50, 0x49, 0x3e, 0x36, 0x35, 0x38, 0x38, 0x32, 0x2e, 0x30, 0x35, 0x3a, 0x40, 0x45, 0x49, 0x45, 0x44, 0x49, 0x50, 0x56, 0x5b, 0x5f, 0x5b, 0x4a, 0x41, 0x43, 0x43, 0x3d, 0x3c, 0x44, 0x48, 0x5e, 0x7f, 0xa0, 0xac, 0x9f, 0x96, 0x9f, 0xbb, 0xb4, 0x98, 0x80, 0x7f, 0x79, 0x6b, 0x68, 0x65, 0x65, 0x65, 0x64, 0x62, 0x60, 0x5e, 0x5d, 0x58, 0x59, 0x55, 0x52, 0x55, 0x55, 0x59, 0x64, 0x66, 0x5c, 0x58, 0x62, 0x68, 0x62, 0x58, 0x52, 0x5d, 0x5b, 0x5e, 0x66, 0x6f, 0x74, 0x78, 0x7a, 0x7e, 0x83, 0x82, 0x77, 0x69, 0x62, 0x62, 0x64, 0x63, 0x60, 0x5c, 0x5c, 0x5c, 0x5a, 0x55, 0x51, 0x52, 0x56, 0x5a, 0x5c, 0x5c, 0x59, 0x4e, 0x45, 0x48, 0x43, 0x3e, 0x3b, 0x37, 0x30, 0x28, 0x24, 0x18, 0x1a, 0x22, 0x2e, 0x36, 0x37, 0x33, 0x30, 0x40, 0x41, 0x3d, 0x2e, 0x1a, 0x0e, 0x13, 0x1e, 0x34, 0x51, 0x64, 0x62, 0x5a, 0x49, 0x2f, 0x1b, 0x1f, 0x1e, 0x18, 0x22, 0x33, 0x24, 0x13, 0x1c, 0x19, 0x1d, 0x1e, 0x19, 0x14, 0x13, 0x16, 0x17, 0x18, 0x13, 0x10, 0x13, 0x14, 0x13, 0x15, 0x1a, 0x1d, 0x1d, 0x1e, 0x1c, 0x17, 0x14, 0x17, 0x1c, 0x28, 0x32, 0x33, 0x2f, 0x34, 0x35, 0x28, 0x1b, 0x19, 0x16, 0x13, 0x14, 0x16, 0x16, 0x17, 0x19, 0x1f, 0x22, 0x27, 0x2c, 0x2e, 0x2b, 0x23, 0x1d, 0x39, 0x3a, 0x3d, 0x41, 0x43, 0x41, 0x3c, 0x38, 0x2b, 0x1a, 0x13, 0x18, 0x19, 0x18, 0x1b, 0x1d, 0x21, 0x22, 0x23, 0x24, 0x26, 0x2b, 0x31, 0x35, 0x36, 0x36, 0x36, 0x37, 0x39, 0x3a, 0x3b, 0x3b, 0x3c, 0x3d, 0x3b, 0x3b, 0x3d, 0x39, 0x3c, 0x48, 0x51, 0x5d, 0x5d, 0x54, 0x56, 0x5a, 0x57, 0x54, 0x53, 0x51, 0x52, 0x56, 0x5c, 0x5d, 0x58, 0x52, 0x42, 0x4e, 0x5d, 0x64, 0x61, 0x57, 0x4d, 0x48, 0x4a, 0x4a, 0x48, 0x45, 0x41, 0x44, 0x4f, 0x5c, 0x68, 0x5e, 0x55, 0x57, 0x5f, 0x60, 0x55, 0x4a, 0x44, 0x3f, 0x37, 0x2f, 0x2c, 0x2e, 0x32, 0x34, 0x39, 0x3b, 0x3e, 0x41, 0x45, 0x48, 0x4a, 0x4a, 0x3f, 0x39, 0x36, 0x3b, 0x41, 0x44, 0x45, 0x47, 0x42, 0x4a, 0x4f, 0x4d, 0x48, 0x47, 0x49, 0x49, 0x46, 0x48, 0x4c, 0x51, 0x56, 0x5a, 0x5c, 0x5c, 0x61, 0x5f, 0x5a, 0x58, 0x60, 0x6b, 0x6f, 0x6c, 0x5c, 0x51, 0x4b, 0x4a, 0x47, 0x47, 0x49, 0x46, 0x3c, 0x36, 0x32, 0x35, 0x3b, 0x3f, 0x42, 0x44, 0x4c, 0x4b, 0x4d, 0x54, 0x5c, 0x61, 0x68, 0x6d, 0x63, 0x5e, 0x5a, 0x59, 0x59, 0x59, 0x5b, 0x5d, 0x54, 0x5c, 0x67, 0x6e, 0x6f, 0x6d, 0x6b, 0x6a, 0x78, 0x6e, 0x64, 0x60, 0x5f, 0x5b, 0x56, 0x52, 0x50, 0x4b, 0x49, 0x4c, 0x52, 0x55, 0x54, 0x52, 0x54, 0x58, 0x5b, 0x5a, 0x5e, 0x63, 0x62, 0x5e, 0x6d, 0x75, 0x81, 0x89, 0x7c, 0x76, 0x6f, 0x69, 0x6d, 0x69, 0x66, 0x67, 0x67, 0x61, 0x59, 0x54, 0x59, 0x5f, 0x67, 0x6c, 0x71, 0x76, 0x7b, 0x7d, 0x90, 0x92, 0x8b, 0x7a, 0x6e, 0x74, 0x83, 0x8e, 0x8f, 0x95, 0x98, 0x95, 0x91, 0x8a, 0x80, 0x76, 0x86, 0x93, 0xa1, 0xa2, 0x9a, 0x9b, 0x9f, 0x9c, 0x94, 0x98, 0xa2, 0xab, 0xa9, 0xa3, 0xa2, 0xa6, 0xc2, 0xc7, 0xb7, 0x8e, 0x6a, 0x5f, 0x64, 0x68, 0x69, 0x67, 0x67, 0x6a, 0x6c, 0x6c, 0x6d, 0x6f, 0x74, 0x7d, 0x80, 0x7a, 0x79, 0x83, 0x8d, 0x91, 0x82, 0x79, 0x72, 0x72, 0x76, 0x74, 0x6a, 0x61, 0x5b, 0x5a, 0x5d, 0x63, 0x67, 0x67, 0x69, 0x6b, 0x6e, 0x70, 0x74, 0x79, 0x7d, 0x7f, 0x7f, 0x7f, 0x83, 0x87, 0x8a, 0x8b, 0x8d, 0x91, 0x91, 0x90, 0x92, 0x91, 0x91, 0x93, 0x96, 0x98, 0x99, 0x98, 0x99, 0x9b, 0x9c, 0x9b, 0x99, 0x99, 0x9c, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0xa0, 0xa2, 0xa3, 0xa7, 0xa7, 0xa8, 0xaa, 0xac, 0xac, 0xab, 0xaa, 0xa7, 0xaa, 0xac, 0xad, 0xad, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb5, 0xb7, 0xb8, 0xb9, 0xb9, 0xb8, 0xb8, 0xb8, 0xb6, 0xb5, 0xb5, 0xb4, 0xb5, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb6, 0xb4, 0xb3, 0xb2, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xac, 0xab, 0xaa, 0xa7, 0xa4, 0xa3, 0xa2, 0xa2, 0xa1, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0x9e, 0x9c, 0x98, 0x96, 0x94, 0x93, 0x91, 0x90, 0x96, 0x94, 0x92, 0x91, 0x91, 0x91, 0x8f, 0x8d, 0x8a, 0x8b, 0x8c, 0x8b, 0x89, 0x87, 0x86, 0x87, 0x87, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7a, 0x77, 0x75, 0x74, 0x6d, 0x6c, 0x6b, 0x68, 0x65, 0x62, 0x62, 0x62, 0x58, 0x55, 0x51, 0x4b, 0x41, 0x36, 0x31, 0x32, 0x35, 0x30, 0x2e, 0x32, 0x3a, 0x40, 0x45, 0x49, 0x4c, 0x48, 0x46, 0x45, 0x45, 0x45, 0x4a, 0x4f, 0x50, 0x46, 0x41, 0x45, 0x46, 0x41, 0x42, 0x49, 0x4b, 0x4f, 0x5d, 0x73, 0x7a, 0x6f, 0x75, 0x8e, 0xa6, 0xa2, 0x7f, 0x5d, 0x5d, 0x61, 0x5b, 0x5b, 0x61, 0x65, 0x6d, 0x74, 0x77, 0x78, 0x7a, 0x7c, 0x7e, 0x84, 0x81, 0x78, 0x6d, 0x61, 0x5c, 0x63, 0x66, 0x62, 0x62, 0x64, 0x5e, 0x52, 0x4c, 0x4d, 0x5d, 0x63, 0x68, 0x6b, 0x71, 0x7a, 0x7e, 0x7d, 0x7a, 0x89, 0x96, 0x92, 0x83, 0x74, 0x69, 0x63, 0x5d, 0x5c, 0x5f, 0x65, 0x65, 0x5d, 0x57, 0x56, 0x52, 0x5c, 0x6a, 0x73, 0x6b, 0x5a, 0x4c, 0x48, 0x3b, 0x3a, 0x3c, 0x3d, 0x36, 0x28, 0x1c, 0x17, 0x24, 0x1d, 0x1d, 0x27, 0x2e, 0x2f, 0x33, 0x3a, 0x43, 0x3b, 0x2d, 0x20, 0x15, 0x12, 0x17, 0x1f, 0x41, 0x4c, 0x52, 0x4d, 0x3c, 0x25, 0x1d, 0x27, 0x26, 0x1d, 0x19, 0x1d, 0x1e, 0x15, 0x13, 0x1c, 0x19, 0x1c, 0x1b, 0x13, 0x0d, 0x0d, 0x10, 0x10, 0x20, 0x17, 0x0e, 0x0f, 0x16, 0x1c, 0x1f, 0x1e, 0x1f, 0x1f, 0x1e, 0x1d, 0x19, 0x15, 0x16, 0x1a, 0x24, 0x2e, 0x2e, 0x2c, 0x34, 0x36, 0x29, 0x1c, 0x1e, 0x19, 0x16, 0x17, 0x17, 0x17, 0x19, 0x1c, 0x21, 0x24, 0x29, 0x2c, 0x2c, 0x2b, 0x29, 0x28, 0x3d, 0x3b, 0x39, 0x39, 0x3b, 0x3c, 0x3b, 0x3a, 0x2d, 0x19, 0x11, 0x17, 0x1a, 0x1b, 0x1c, 0x1b, 0x21, 0x22, 0x23, 0x25, 0x27, 0x2b, 0x31, 0x36, 0x36, 0x36, 0x37, 0x38, 0x3a, 0x3d, 0x3e, 0x3e, 0x3f, 0x40, 0x3e, 0x3e, 0x3f, 0x3c, 0x3f, 0x4a, 0x68, 0x74, 0x71, 0x63, 0x5d, 0x5d, 0x5a, 0x58, 0x58, 0x56, 0x58, 0x5a, 0x59, 0x53, 0x4e, 0x4d, 0x4f, 0x50, 0x51, 0x50, 0x4e, 0x4c, 0x4d, 0x4e, 0x4c, 0x4e, 0x51, 0x4e, 0x47, 0x43, 0x48, 0x50, 0x59, 0x5e, 0x64, 0x65, 0x5e, 0x56, 0x4f, 0x4c, 0x48, 0x43, 0x3a, 0x31, 0x2c, 0x2e, 0x33, 0x35, 0x36, 0x3c, 0x43, 0x46, 0x46, 0x44, 0x3f, 0x3b, 0x3c, 0x3c, 0x3c, 0x3b, 0x37, 0x37, 0x40, 0x4b, 0x51, 0x56, 0x58, 0x54, 0x51, 0x54, 0x57, 0x58, 0x5a, 0x58, 0x58, 0x5e, 0x65, 0x67, 0x62, 0x5c, 0x57, 0x56, 0x52, 0x4f, 0x56, 0x63, 0x6b, 0x6c, 0x62, 0x52, 0x4c, 0x50, 0x50, 0x4f, 0x4d, 0x49, 0x45, 0x3e, 0x39, 0x3c, 0x42, 0x45, 0x45, 0x45, 0x49, 0x46, 0x4a, 0x55, 0x5c, 0x5a, 0x54, 0x50, 0x51, 0x52, 0x59, 0x61, 0x61, 0x5d, 0x5d, 0x62, 0x65, 0x68, 0x6f, 0x77, 0x7a, 0x76, 0x6b, 0x62, 0x5e, 0x5a, 0x5a, 0x62, 0x68, 0x66, 0x5e, 0x58, 0x4c, 0x49, 0x48, 0x4c, 0x52, 0x56, 0x58, 0x59, 0x5c, 0x59, 0x5d, 0x65, 0x6a, 0x67, 0x64, 0x65, 0x67, 0x69, 0x68, 0x71, 0x63, 0x67, 0x5f, 0x5c, 0x6e, 0x6f, 0x6f, 0x6a, 0x60, 0x59, 0x5a, 0x5f, 0x6d, 0x72, 0x79, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x77, 0x7e, 0x7e, 0x78, 0x78, 0x81, 0x83, 0x7e, 0x7d, 0x78, 0x75, 0x7e, 0x8e, 0x9e, 0xa3, 0xa3, 0x8c, 0x93, 0x9e, 0xa1, 0xa3, 0xb0, 0xbd, 0xbd, 0xbb, 0xc0, 0xc1, 0xbf, 0xc2, 0xcb, 0xd3, 0xd5, 0xd1, 0xd0, 0xc8, 0xa9, 0x75, 0x4a, 0x45, 0x56, 0x53, 0x54, 0x56, 0x58, 0x5a, 0x5e, 0x67, 0x70, 0x7f, 0x8a, 0x8e, 0x8a, 0x8d, 0x9d, 0xa7, 0xa7, 0xa0, 0x8b, 0x76, 0x73, 0x7b, 0x7d, 0x74, 0x69, 0x5b, 0x59, 0x5c, 0x64, 0x6a, 0x6a, 0x6a, 0x6b, 0x6f, 0x71, 0x75, 0x79, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x89, 0x8a, 0x8c, 0x8f, 0x92, 0x93, 0x91, 0x90, 0x90, 0x92, 0x94, 0x97, 0x98, 0x98, 0x97, 0x9a, 0x9b, 0x9b, 0x99, 0x97, 0x98, 0x9d, 0xa1, 0x9c, 0x9c, 0x9b, 0x9b, 0x9c, 0x9e, 0xa1, 0xa3, 0xa9, 0xa8, 0xa6, 0xa6, 0xa8, 0xa9, 0xa9, 0xa9, 0xa5, 0xa8, 0xab, 0xad, 0xad, 0xae, 0xaf, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xb1, 0xb3, 0xb6, 0xb8, 0xb9, 0xb8, 0xb6, 0xb5, 0xb7, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xb2, 0xb0, 0xae, 0xad, 0xae, 0xaf, 0xaf, 0xaf, 0xac, 0xa9, 0xa6, 0xa4, 0xa3, 0xa3, 0xa2, 0xa0, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0x9e, 0x9d, 0x9d, 0x9c, 0x9a, 0x98, 0x97, 0x97, 0x96, 0x94, 0x93, 0x95, 0x93, 0x91, 0x91, 0x92, 0x92, 0x91, 0x90, 0x8a, 0x8c, 0x8d, 0x8c, 0x89, 0x87, 0x87, 0x87, 0x87, 0x85, 0x83, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x6c, 0x6d, 0x6c, 0x68, 0x64, 0x61, 0x62, 0x64, 0x5b, 0x57, 0x53, 0x4e, 0x44, 0x37, 0x2f, 0x2e, 0x2f, 0x2c, 0x2d, 0x34, 0x3d, 0x44, 0x49, 0x4c, 0x4c, 0x4b, 0x49, 0x44, 0x3d, 0x3a, 0x3f, 0x46, 0x41, 0x3d, 0x3e, 0x44, 0x44, 0x41, 0x43, 0x4b, 0x48, 0x4b, 0x5e, 0x7c, 0x81, 0x6b, 0x68, 0x7e, 0x83, 0x8e, 0x75, 0x50, 0x48, 0x48, 0x44, 0x48, 0x47, 0x47, 0x49, 0x4b, 0x4e, 0x52, 0x59, 0x5f, 0x65, 0x64, 0x60, 0x60, 0x64, 0x5d, 0x50, 0x4b, 0x4d, 0x55, 0x5d, 0x5d, 0x53, 0x4a, 0x4d, 0x55, 0x5e, 0x68, 0x6d, 0x69, 0x68, 0x6f, 0x72, 0x6e, 0x74, 0x8f, 0xa5, 0x9e, 0x83, 0x69, 0x5c, 0x58, 0x51, 0x57, 0x66, 0x75, 0x75, 0x69, 0x62, 0x63, 0x65, 0x5e, 0x5c, 0x5e, 0x58, 0x49, 0x40, 0x40, 0x3e, 0x3a, 0x35, 0x2f, 0x25, 0x1b, 0x19, 0x1d, 0x27, 0x1a, 0x14, 0x1c, 0x22, 0x22, 0x28, 0x34, 0x32, 0x24, 0x16, 0x12, 0x14, 0x15, 0x13, 0x12, 0x2e, 0x4a, 0x4a, 0x2b, 0x18, 0x1c, 0x24, 0x29, 0x1a, 0x15, 0x19, 0x18, 0x13, 0x1e, 0x23, 0x13, 0x12, 0x1a, 0x1c, 0x14, 0x10, 0x16, 0x1a, 0x19, 0x11, 0x16, 0x1b, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x21, 0x1f, 0x1e, 0x1d, 0x1a, 0x16, 0x16, 0x18, 0x1f, 0x29, 0x2a, 0x29, 0x33, 0x38, 0x2d, 0x21, 0x21, 0x1b, 0x17, 0x18, 0x19, 0x19, 0x1b, 0x1f, 0x20, 0x25, 0x2a, 0x2b, 0x29, 0x28, 0x2c, 0x30, 0x47, 0x3d, 0x33, 0x32, 0x36, 0x39, 0x39, 0x39, 0x2f, 0x1f, 0x15, 0x19, 0x1c, 0x19, 0x1b, 0x21, 0x22, 0x23, 0x23, 0x25, 0x29, 0x2d, 0x31, 0x33, 0x35, 0x36, 0x38, 0x3a, 0x3c, 0x3d, 0x3f, 0x3f, 0x42, 0x41, 0x3f, 0x3f, 0x3f, 0x41, 0x44, 0x46, 0x53, 0x5e, 0x65, 0x61, 0x5e, 0x60, 0x5c, 0x55, 0x59, 0x57, 0x51, 0x4b, 0x49, 0x4c, 0x4f, 0x4f, 0x54, 0x52, 0x52, 0x54, 0x50, 0x48, 0x47, 0x4b, 0x4f, 0x51, 0x52, 0x4f, 0x4b, 0x4a, 0x4e, 0x52, 0x54, 0x54, 0x53, 0x4f, 0x4e, 0x4f, 0x4e, 0x4b, 0x47, 0x3f, 0x34, 0x2d, 0x2c, 0x2f, 0x33, 0x35, 0x38, 0x3e, 0x48, 0x4f, 0x51, 0x4f, 0x4b, 0x48, 0x3f, 0x3a, 0x3a, 0x3f, 0x3f, 0x3f, 0x4b, 0x5c, 0x5f, 0x60, 0x63, 0x65, 0x63, 0x5c, 0x53, 0x4c, 0x46, 0x48, 0x4e, 0x58, 0x65, 0x6c, 0x6a, 0x66, 0x56, 0x4c, 0x3f, 0x3e, 0x4e, 0x60, 0x64, 0x5d, 0x5d, 0x5a, 0x58, 0x5e, 0x67, 0x64, 0x50, 0x3a, 0x33, 0x33, 0x36, 0x3a, 0x40, 0x44, 0x45, 0x45, 0x46, 0x46, 0x49, 0x4f, 0x59, 0x60, 0x5f, 0x59, 0x5a, 0x53, 0x51, 0x57, 0x5c, 0x5a, 0x58, 0x59, 0x64, 0x6d, 0x77, 0x7c, 0x7f, 0x7e, 0x76, 0x6d, 0x6c, 0x63, 0x5c, 0x62, 0x6f, 0x76, 0x6f, 0x63, 0x55, 0x5b, 0x5c, 0x5b, 0x59, 0x52, 0x4e, 0x53, 0x60, 0x62, 0x5f, 0x61, 0x69, 0x6a, 0x64, 0x62, 0x61, 0x65, 0x69, 0x68, 0x65, 0x63, 0x63, 0x63, 0x6c, 0x6f, 0x6e, 0x67, 0x63, 0x64, 0x65, 0x65, 0x6d, 0x71, 0x77, 0x79, 0x76, 0x75, 0x7a, 0x82, 0x7e, 0x83, 0x7d, 0x78, 0x8f, 0xb0, 0xb5, 0xa2, 0x7d, 0x63, 0x5b, 0x67, 0x74, 0x85, 0x93, 0x93, 0x8f, 0x8f, 0x91, 0x8e, 0x86, 0x87, 0x9a, 0xb0, 0xbe, 0xbf, 0xc0, 0xc2, 0xc5, 0xc7, 0xc8, 0xc9, 0xc9, 0xca, 0xc8, 0xad, 0x7c, 0x58, 0x50, 0x53, 0x54, 0x53, 0x51, 0x50, 0x52, 0x58, 0x5f, 0x65, 0x7d, 0x87, 0x92, 0x96, 0x97, 0x94, 0x8b, 0x82, 0x7f, 0x81, 0x73, 0x73, 0x7a, 0x77, 0x74, 0x6d, 0x5b, 0x5f, 0x5f, 0x62, 0x69, 0x6a, 0x69, 0x6c, 0x72, 0x74, 0x76, 0x77, 0x7b, 0x7f, 0x80, 0x80, 0x85, 0x88, 0x8b, 0x8f, 0x91, 0x92, 0x91, 0x90, 0x8e, 0x90, 0x94, 0x96, 0x97, 0x98, 0x9a, 0x9b, 0x9e, 0x9a, 0x96, 0x96, 0x99, 0x9d, 0x9e, 0x9d, 0x99, 0x9d, 0x9f, 0x9f, 0x9d, 0x9c, 0x9e, 0xa1, 0xa3, 0xa5, 0xa7, 0xa9, 0xa9, 0xa8, 0xa8, 0xa7, 0xa8, 0xab, 0xaf, 0xb1, 0xb2, 0xb1, 0xb1, 0xb1, 0xac, 0xad, 0xad, 0xad, 0xad, 0xad, 0xaf, 0xb0, 0xb0, 0xb2, 0xb4, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb8, 0xb6, 0xb4, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb4, 0xb5, 0xb6, 0xb5, 0xb4, 0xb4, 0xb4, 0xb5, 0xb4, 0xb4, 0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xaa, 0xa9, 0xa7, 0xa6, 0xa5, 0xa5, 0xa4, 0xa3, 0xa2, 0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x9d, 0x9c, 0x9d, 0x9c, 0x99, 0x97, 0x96, 0x96, 0x96, 0x97, 0x97, 0x94, 0x91, 0x90, 0x91, 0x91, 0x8f, 0x8d, 0x8b, 0x8d, 0x8e, 0x8d, 0x8b, 0x88, 0x87, 0x88, 0x86, 0x86, 0x85, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x79, 0x75, 0x71, 0x71, 0x6f, 0x6c, 0x69, 0x67, 0x64, 0x63, 0x61, 0x5f, 0x58, 0x52, 0x4f, 0x49, 0x3c, 0x30, 0x2a, 0x25, 0x2b, 0x36, 0x44, 0x4e, 0x51, 0x52, 0x53, 0x55, 0x54, 0x4e, 0x42, 0x38, 0x36, 0x3d, 0x44, 0x42, 0x44, 0x45, 0x43, 0x3d, 0x3b, 0x43, 0x4c, 0x4d, 0x4f, 0x5f, 0x74, 0x76, 0x6a, 0x6a, 0x77, 0x94, 0x88, 0x6b, 0x4b, 0x3f, 0x45, 0x46, 0x3e, 0x3c, 0x37, 0x36, 0x39, 0x3c, 0x3c, 0x3a, 0x3a, 0x3f, 0x44, 0x47, 0x49, 0x4d, 0x52, 0x53, 0x4f, 0x59, 0x64, 0x70, 0x6f, 0x5d, 0x4e, 0x52, 0x60, 0x55, 0x56, 0x53, 0x53, 0x5d, 0x67, 0x63, 0x58, 0x76, 0x9a, 0xab, 0x90, 0x6d, 0x5f, 0x59, 0x51, 0x44, 0x50, 0x66, 0x73, 0x71, 0x70, 0x73, 0x71, 0x70, 0x68, 0x5b, 0x4f, 0x49, 0x45, 0x41, 0x3e, 0x33, 0x3b, 0x39, 0x30, 0x27, 0x1d, 0x1a, 0x20, 0x29, 0x20, 0x18, 0x16, 0x19, 0x1d, 0x21, 0x25, 0x21, 0x18, 0x10, 0x0f, 0x11, 0x13, 0x15, 0x17, 0x32, 0x2e, 0x27, 0x1d, 0x17, 0x18, 0x1f, 0x25, 0x22, 0x1c, 0x16, 0x16, 0x19, 0x1b, 0x19, 0x16, 0x17, 0x21, 0x22, 0x17, 0x13, 0x1a, 0x20, 0x1e, 0x17, 0x16, 0x16, 0x19, 0x1d, 0x20, 0x1f, 0x1b, 0x1c, 0x1d, 0x22, 0x24, 0x1d, 0x15, 0x18, 0x21, 0x29, 0x2b, 0x2b, 0x2c, 0x35, 0x3d, 0x34, 0x24, 0x23, 0x1e, 0x1d, 0x1a, 0x16, 0x19, 0x1e, 0x1c, 0x21, 0x27, 0x2d, 0x2f, 0x30, 0x31, 0x31, 0x30, 0x48, 0x42, 0x3c, 0x39, 0x38, 0x36, 0x36, 0x38, 0x2d, 0x1e, 0x14, 0x18, 0x1c, 0x1a, 0x1c, 0x21, 0x22, 0x23, 0x24, 0x27, 0x2b, 0x2f, 0x34, 0x36, 0x36, 0x37, 0x39, 0x3b, 0x3d, 0x3f, 0x40, 0x40, 0x42, 0x41, 0x3f, 0x3e, 0x3f, 0x41, 0x43, 0x45, 0x60, 0x5c, 0x58, 0x57, 0x58, 0x5a, 0x58, 0x55, 0x54, 0x4e, 0x47, 0x45, 0x4b, 0x54, 0x56, 0x54, 0x5a, 0x5a, 0x5b, 0x59, 0x53, 0x4b, 0x47, 0x47, 0x4e, 0x52, 0x57, 0x59, 0x57, 0x54, 0x52, 0x50, 0x57, 0x5a, 0x5a, 0x55, 0x51, 0x51, 0x53, 0x53, 0x50, 0x46, 0x3a, 0x31, 0x2e, 0x30, 0x33, 0x34, 0x39, 0x41, 0x4d, 0x55, 0x57, 0x53, 0x4e, 0x4b, 0x3b, 0x39, 0x3d, 0x45, 0x4a, 0x4c, 0x51, 0x59, 0x5d, 0x60, 0x66, 0x6b, 0x68, 0x5d, 0x4c, 0x40, 0x46, 0x44, 0x40, 0x3e, 0x43, 0x4b, 0x50, 0x4f, 0x4a, 0x45, 0x40, 0x42, 0x4b, 0x56, 0x59, 0x58, 0x5a, 0x68, 0x73, 0x6f, 0x61, 0x56, 0x4f, 0x4d, 0x3b, 0x36, 0x2f, 0x2a, 0x2d, 0x37, 0x45, 0x4f, 0x49, 0x47, 0x46, 0x4a, 0x55, 0x5f, 0x62, 0x5f, 0x68, 0x65, 0x63, 0x63, 0x62, 0x60, 0x61, 0x63, 0x5f, 0x64, 0x6b, 0x71, 0x77, 0x7b, 0x78, 0x71, 0x71, 0x67, 0x5c, 0x5c, 0x64, 0x6c, 0x6c, 0x68, 0x6e, 0x71, 0x6b, 0x61, 0x59, 0x54, 0x5a, 0x69, 0x62, 0x66, 0x61, 0x5b, 0x5c, 0x5d, 0x5d, 0x60, 0x6a, 0x67, 0x65, 0x62, 0x5f, 0x5e, 0x65, 0x6f, 0x71, 0x6f, 0x6b, 0x6a, 0x6f, 0x75, 0x74, 0x6f, 0x6a, 0x6c, 0x71, 0x75, 0x76, 0x76, 0x7a, 0x80, 0x87, 0x87, 0x81, 0x7d, 0x89, 0x9e, 0xa8, 0xa4, 0x8e, 0x78, 0x66, 0x61, 0x65, 0x7a, 0x9b, 0xb2, 0xa8, 0x9a, 0x92, 0x93, 0x8f, 0x85, 0x85, 0x8f, 0xa7, 0xaf, 0xb9, 0xc1, 0xc7, 0xcc, 0xd1, 0xd5, 0xd7, 0xd3, 0xcb, 0xae, 0x7f, 0x5d, 0x56, 0x57, 0x52, 0x56, 0x5b, 0x60, 0x62, 0x62, 0x63, 0x63, 0x81, 0x8f, 0x9c, 0x9a, 0x90, 0x87, 0x83, 0x81, 0x7a, 0x77, 0x67, 0x68, 0x73, 0x78, 0x7b, 0x73, 0x54, 0x5d, 0x62, 0x64, 0x68, 0x67, 0x66, 0x6c, 0x72, 0x72, 0x74, 0x79, 0x7d, 0x80, 0x81, 0x81, 0x86, 0x87, 0x89, 0x8c, 0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x90, 0x93, 0x95, 0x97, 0x98, 0x99, 0x9a, 0x9d, 0x9a, 0x97, 0x97, 0x9a, 0x9d, 0x9d, 0x9c, 0x9b, 0x9c, 0x9e, 0x9d, 0x9c, 0x9b, 0x9d, 0x9e, 0xa0, 0xa4, 0xa8, 0xa8, 0xa6, 0xa5, 0xa6, 0xa8, 0xa8, 0xaa, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xae, 0xaf, 0xb0, 0xb2, 0xb0, 0xb2, 0xb4, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb9, 0xb7, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5, 0xb5, 0xb4, 0xb3, 0xb4, 0xb5, 0xb4, 0xb3, 0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xac, 0xaa, 0xa8, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1, 0xa2, 0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x9d, 0x9c, 0x9e, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x95, 0x94, 0x93, 0x91, 0x8f, 0x8e, 0x8e, 0x8e, 0x8d, 0x8f, 0x90, 0x8f, 0x8c, 0x8a, 0x89, 0x89, 0x86, 0x86, 0x86, 0x86, 0x84, 0x82, 0x7f, 0x7e, 0x80, 0x80, 0x7f, 0x7f, 0x7d, 0x7a, 0x76, 0x73, 0x72, 0x70, 0x6d, 0x6a, 0x68, 0x65, 0x62, 0x60, 0x5e, 0x58, 0x52, 0x4f, 0x48, 0x3c, 0x2f, 0x29, 0x2a, 0x32, 0x43, 0x53, 0x5d, 0x5e, 0x5d, 0x5d, 0x5f, 0x5e, 0x59, 0x4d, 0x40, 0x38, 0x3a, 0x3e, 0x3e, 0x40, 0x43, 0x44, 0x41, 0x40, 0x46, 0x4d, 0x4b, 0x46, 0x4b, 0x57, 0x58, 0x51, 0x54, 0x5e, 0x68, 0x63, 0x54, 0x44, 0x41, 0x46, 0x46, 0x3e, 0x33, 0x33, 0x36, 0x39, 0x3a, 0x38, 0x38, 0x3a, 0x33, 0x35, 0x36, 0x3a, 0x45, 0x54, 0x5d, 0x60, 0x4f, 0x59, 0x67, 0x6d, 0x64, 0x54, 0x46, 0x40, 0x3a, 0x39, 0x3c, 0x42, 0x47, 0x49, 0x49, 0x4b, 0x5b, 0x73, 0x7d, 0x6d, 0x5e, 0x5c, 0x54, 0x45, 0x48, 0x53, 0x68, 0x78, 0x79, 0x79, 0x78, 0x73, 0x71, 0x6c, 0x61, 0x54, 0x48, 0x41, 0x3e, 0x3c, 0x36, 0x3d, 0x3b, 0x30, 0x25, 0x1b, 0x18, 0x1e, 0x22, 0x1c, 0x18, 0x17, 0x18, 0x19, 0x1a, 0x1c, 0x13, 0x0f, 0x0d, 0x11, 0x15, 0x17, 0x18, 0x18, 0x20, 0x1d, 0x18, 0x13, 0x10, 0x13, 0x1a, 0x20, 0x21, 0x1c, 0x17, 0x18, 0x1c, 0x1e, 0x1c, 0x19, 0x19, 0x20, 0x20, 0x16, 0x10, 0x13, 0x16, 0x15, 0x16, 0x18, 0x1b, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x22, 0x21, 0x23, 0x25, 0x20, 0x19, 0x1c, 0x23, 0x2a, 0x2d, 0x2f, 0x35, 0x43, 0x4c, 0x43, 0x32, 0x1e, 0x1b, 0x1e, 0x20, 0x1b, 0x1b, 0x1d, 0x1a, 0x23, 0x29, 0x2e, 0x30, 0x30, 0x32, 0x32, 0x30, 0x47, 0x46, 0x45, 0x42, 0x3c, 0x37, 0x39, 0x3e, 0x33, 0x23, 0x18, 0x18, 0x1c, 0x1b, 0x1c, 0x20, 0x22, 0x22, 0x24, 0x27, 0x2b, 0x31, 0x36, 0x38, 0x38, 0x38, 0x3a, 0x3c, 0x3e, 0x40, 0x41, 0x42, 0x42, 0x40, 0x3f, 0x3e, 0x3e, 0x40, 0x42, 0x44, 0x4d, 0x4d, 0x51, 0x5b, 0x5e, 0x5a, 0x56, 0x56, 0x4f, 0x4e, 0x50, 0x5a, 0x69, 0x6e, 0x66, 0x59, 0x57, 0x5b, 0x5d, 0x5a, 0x56, 0x52, 0x4d, 0x4a, 0x4d, 0x53, 0x5b, 0x61, 0x64, 0x62, 0x5e, 0x5b, 0x61, 0x65, 0x65, 0x5e, 0x55, 0x51, 0x53, 0x54, 0x58, 0x4d, 0x3f, 0x33, 0x2f, 0x2f, 0x2f, 0x30, 0x34, 0x3f, 0x4c, 0x55, 0x56, 0x52, 0x4d, 0x4a, 0x3e, 0x3b, 0x39, 0x3d, 0x46, 0x4f, 0x56, 0x58, 0x5c, 0x5b, 0x59, 0x58, 0x57, 0x53, 0x4c, 0x46, 0x45, 0x49, 0x47, 0x40, 0x3d, 0x40, 0x3f, 0x3a, 0x3b, 0x3e, 0x44, 0x4c, 0x50, 0x53, 0x58, 0x5d, 0x5a, 0x65, 0x6e, 0x6a, 0x5d, 0x4f, 0x45, 0x40, 0x48, 0x46, 0x42, 0x3d, 0x39, 0x3b, 0x42, 0x47, 0x46, 0x43, 0x3f, 0x40, 0x47, 0x52, 0x59, 0x5b, 0x5f, 0x5f, 0x5f, 0x61, 0x66, 0x6b, 0x6b, 0x68, 0x5e, 0x5e, 0x5e, 0x61, 0x68, 0x70, 0x72, 0x71, 0x67, 0x5f, 0x57, 0x56, 0x5c, 0x67, 0x70, 0x75, 0x78, 0x76, 0x6c, 0x61, 0x5c, 0x59, 0x60, 0x6d, 0x68, 0x70, 0x6c, 0x5e, 0x55, 0x50, 0x52, 0x59, 0x55, 0x59, 0x61, 0x68, 0x65, 0x5f, 0x61, 0x67, 0x68, 0x63, 0x5c, 0x5a, 0x60, 0x67, 0x69, 0x67, 0x6f, 0x6d, 0x6e, 0x72, 0x75, 0x76, 0x77, 0x79, 0x79, 0x7c, 0x83, 0x8a, 0x8c, 0x8b, 0x8d, 0x91, 0x87, 0x78, 0x64, 0x5e, 0x68, 0x77, 0x8b, 0x9e, 0x94, 0x8c, 0x91, 0xa0, 0x9d, 0x8b, 0x83, 0x8b, 0x91, 0x9b, 0xa6, 0xae, 0xb3, 0xb9, 0xc2, 0xca, 0xcc, 0xc6, 0xbb, 0x9e, 0x74, 0x5a, 0x56, 0x58, 0x60, 0x61, 0x60, 0x5f, 0x5d, 0x5c, 0x5c, 0x5c, 0x74, 0x88, 0x99, 0x9a, 0x8f, 0x8a, 0x8f, 0x96, 0xa6, 0xa9, 0x9a, 0x8b, 0x7e, 0x76, 0x79, 0x73, 0x4d, 0x5b, 0x64, 0x66, 0x66, 0x63, 0x64, 0x6d, 0x72, 0x70, 0x73, 0x7b, 0x81, 0x81, 0x81, 0x83, 0x87, 0x88, 0x88, 0x89, 0x8b, 0x8c, 0x8d, 0x8d, 0x8e, 0x90, 0x93, 0x95, 0x96, 0x97, 0x98, 0x9a, 0x9a, 0x98, 0x96, 0x97, 0x9a, 0x9c, 0x9c, 0x9b, 0x9c, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x9b, 0x9c, 0x9d, 0xa1, 0xa6, 0xa6, 0xa2, 0xa1, 0xa3, 0xa7, 0xa7, 0xa9, 0xaa, 0xab, 0xaa, 0xaa, 0xab, 0xab, 0xaf, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xb0, 0xb1, 0xaf, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb4, 0xb3, 0xb1, 0xb2, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb4, 0xb5, 0xb3, 0xb3, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xac, 0xa9, 0xa7, 0xa5, 0xa3, 0xa1, 0xa0, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9c, 0x9d, 0x9e, 0x9f, 0x9f, 0x9e, 0x9d, 0x9b, 0x9a, 0x95, 0x96, 0x96, 0x93, 0x8f, 0x8d, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x8f, 0x8c, 0x8a, 0x89, 0x88, 0x85, 0x86, 0x87, 0x87, 0x85, 0x82, 0x7e, 0x7c, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7b, 0x79, 0x76, 0x73, 0x71, 0x6e, 0x6c, 0x69, 0x66, 0x62, 0x5f, 0x5f, 0x5a, 0x55, 0x51, 0x4b, 0x3f, 0x32, 0x2a, 0x2b, 0x33, 0x42, 0x4f, 0x55, 0x55, 0x54, 0x54, 0x59, 0x5b, 0x5a, 0x53, 0x47, 0x3f, 0x3c, 0x3e, 0x41, 0x42, 0x44, 0x46, 0x45, 0x44, 0x46, 0x4a, 0x4b, 0x46, 0x43, 0x45, 0x46, 0x45, 0x47, 0x4c, 0x49, 0x47, 0x42, 0x3f, 0x3f, 0x41, 0x3e, 0x3a, 0x3a, 0x3c, 0x42, 0x4b, 0x50, 0x4e, 0x4a, 0x48, 0x47, 0x45, 0x42, 0x44, 0x4e, 0x5b, 0x63, 0x66, 0x62, 0x63, 0x60, 0x59, 0x54, 0x51, 0x4e, 0x4c, 0x46, 0x3e, 0x3b, 0x3c, 0x38, 0x34, 0x41, 0x55, 0x75, 0x80, 0x7a, 0x60, 0x4f, 0x52, 0x55, 0x4f, 0x4b, 0x55, 0x6b, 0x7c, 0x7f, 0x80, 0x7d, 0x76, 0x75, 0x70, 0x66, 0x57, 0x47, 0x3d, 0x3b, 0x3c, 0x3c, 0x42, 0x3e, 0x32, 0x25, 0x1a, 0x18, 0x1f, 0x1d, 0x1a, 0x19, 0x1a, 0x19, 0x15, 0x13, 0x14, 0x13, 0x11, 0x13, 0x18, 0x1b, 0x19, 0x16, 0x15, 0x16, 0x14, 0x11, 0x0f, 0x11, 0x15, 0x1b, 0x1f, 0x23, 0x1e, 0x1a, 0x1b, 0x20, 0x22, 0x1f, 0x1b, 0x1f, 0x22, 0x22, 0x1c, 0x14, 0x12, 0x13, 0x14, 0x17, 0x1b, 0x1f, 0x20, 0x1e, 0x1d, 0x1d, 0x1f, 0x24, 0x23, 0x24, 0x24, 0x1f, 0x19, 0x1b, 0x21, 0x2e, 0x30, 0x32, 0x37, 0x40, 0x43, 0x35, 0x22, 0x1b, 0x19, 0x21, 0x28, 0x25, 0x20, 0x1f, 0x1b, 0x23, 0x29, 0x2f, 0x31, 0x33, 0x35, 0x34, 0x32, 0x42, 0x43, 0x43, 0x41, 0x3c, 0x38, 0x3d, 0x44, 0x3e, 0x2e, 0x1f, 0x1a, 0x1b, 0x1c, 0x1d, 0x1f, 0x21, 0x22, 0x23, 0x26, 0x2b, 0x30, 0x35, 0x38, 0x39, 0x39, 0x3b, 0x3c, 0x3e, 0x40, 0x42, 0x43, 0x42, 0x41, 0x3f, 0x3e, 0x3e, 0x40, 0x42, 0x43, 0x44, 0x51, 0x61, 0x69, 0x66, 0x5f, 0x5c, 0x5d, 0x55, 0x57, 0x5d, 0x68, 0x75, 0x77, 0x6a, 0x5b, 0x52, 0x57, 0x59, 0x57, 0x58, 0x5c, 0x5c, 0x58, 0x56, 0x5a, 0x60, 0x64, 0x66, 0x65, 0x65, 0x64, 0x67, 0x6a, 0x6a, 0x63, 0x5b, 0x57, 0x57, 0x57, 0x5b, 0x50, 0x42, 0x35, 0x2f, 0x2d, 0x2d, 0x2d, 0x2e, 0x37, 0x43, 0x49, 0x4a, 0x47, 0x45, 0x45, 0x49, 0x49, 0x45, 0x42, 0x48, 0x52, 0x57, 0x56, 0x46, 0x4b, 0x51, 0x55, 0x56, 0x52, 0x4d, 0x4a, 0x53, 0x5e, 0x61, 0x5a, 0x54, 0x53, 0x4e, 0x46, 0x4e, 0x50, 0x56, 0x59, 0x52, 0x48, 0x46, 0x4b, 0x56, 0x56, 0x57, 0x5a, 0x59, 0x4f, 0x3d, 0x2f, 0x3a, 0x41, 0x4b, 0x53, 0x56, 0x54, 0x50, 0x4d, 0x4b, 0x4b, 0x49, 0x46, 0x48, 0x4f, 0x58, 0x5c, 0x58, 0x58, 0x58, 0x5c, 0x68, 0x70, 0x6a, 0x5e, 0x5f, 0x5c, 0x58, 0x57, 0x5c, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x59, 0x57, 0x5b, 0x63, 0x6c, 0x74, 0x73, 0x69, 0x59, 0x52, 0x58, 0x5c, 0x60, 0x69, 0x6d, 0x77, 0x74, 0x64, 0x55, 0x49, 0x46, 0x4c, 0x4d, 0x61, 0x78, 0x84, 0x82, 0x78, 0x6d, 0x65, 0x63, 0x62, 0x5e, 0x59, 0x57, 0x5c, 0x65, 0x6b, 0x6b, 0x65, 0x60, 0x62, 0x65, 0x66, 0x66, 0x66, 0x65, 0x6c, 0x79, 0x86, 0x86, 0x7d, 0x78, 0x79, 0x72, 0x73, 0x6b, 0x6a, 0x74, 0x74, 0x71, 0x78, 0x7f, 0x7e, 0x87, 0x96, 0x99, 0x90, 0x8c, 0x91, 0x94, 0x97, 0x9b, 0x9c, 0x9f, 0xa6, 0xb2, 0xbb, 0xb2, 0xaf, 0xa9, 0x92, 0x6f, 0x5d, 0x5f, 0x64, 0x63, 0x61, 0x5e, 0x5a, 0x59, 0x5b, 0x5f, 0x62, 0x63, 0x73, 0x83, 0x89, 0x87, 0x88, 0x8f, 0x97, 0x9a, 0xa2, 0x9b, 0x8f, 0x7e, 0x75, 0x75, 0x67, 0x4d, 0x5b, 0x64, 0x66, 0x65, 0x62, 0x65, 0x6e, 0x73, 0x70, 0x74, 0x7e, 0x82, 0x80, 0x7f, 0x82, 0x87, 0x88, 0x89, 0x8a, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8f, 0x92, 0x94, 0x95, 0x96, 0x97, 0x98, 0x97, 0x96, 0x95, 0x96, 0x98, 0x9a, 0x99, 0x98, 0x9a, 0x99, 0x97, 0x97, 0x98, 0x99, 0x9a, 0x9a, 0x9c, 0x9f, 0xa2, 0xa2, 0xa0, 0xa0, 0xa2, 0xa5, 0xa6, 0xa7, 0xa8, 0xa8, 0xa8, 0xa9, 0xaa, 0xac, 0xae, 0xae, 0xaf, 0xae, 0xad, 0xae, 0xaf, 0xb0, 0xae, 0xb0, 0xb1, 0xb2, 0xb1, 0xb1, 0xb2, 0xb3, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xb2, 0xb3, 0xb3, 0xb2, 0xb2, 0xb3, 0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xac, 0xa9, 0xa7, 0xa5, 0xa4, 0xa2, 0xa0, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9c, 0x9d, 0x9d, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x98, 0x98, 0x98, 0x95, 0x92, 0x8f, 0x8f, 0x90, 0x8f, 0x8f, 0x8f, 0x8d, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x85, 0x85, 0x84, 0x82, 0x80, 0x7d, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x75, 0x72, 0x70, 0x6e, 0x6b, 0x67, 0x62, 0x5e, 0x5f, 0x5c, 0x58, 0x55, 0x50, 0x45, 0x39, 0x30, 0x2f, 0x32, 0x38, 0x3d, 0x3e, 0x3c, 0x3e, 0x41, 0x42, 0x47, 0x4c, 0x4b, 0x46, 0x42, 0x42, 0x43, 0x49, 0x47, 0x46, 0x47, 0x47, 0x44, 0x44, 0x45, 0x45, 0x46, 0x46, 0x45, 0x45, 0x46, 0x46, 0x45, 0x46, 0x41, 0x3d, 0x3d, 0x3c, 0x3b, 0x3a, 0x3b, 0x42, 0x44, 0x4f, 0x61, 0x6f, 0x6e, 0x63, 0x59, 0x64, 0x62, 0x5f, 0x5e, 0x5e, 0x5c, 0x56, 0x51, 0x48, 0x54, 0x5d, 0x59, 0x55, 0x57, 0x5c, 0x5e, 0x54, 0x4b, 0x43, 0x3d, 0x34, 0x31, 0x43, 0x5b, 0x92, 0x94, 0x82, 0x60, 0x4c, 0x4f, 0x57, 0x57, 0x4e, 0x58, 0x6d, 0x7c, 0x7f, 0x7f, 0x7f, 0x7a, 0x7b, 0x72, 0x64, 0x54, 0x45, 0x3b, 0x39, 0x3b, 0x40, 0x45, 0x41, 0x34, 0x28, 0x1d, 0x1b, 0x23, 0x1e, 0x1c, 0x1c, 0x1c, 0x19, 0x14, 0x13, 0x14, 0x17, 0x16, 0x17, 0x1a, 0x1a, 0x17, 0x14, 0x14, 0x18, 0x16, 0x13, 0x13, 0x16, 0x1b, 0x1f, 0x22, 0x25, 0x20, 0x1c, 0x1e, 0x23, 0x25, 0x21, 0x1b, 0x22, 0x24, 0x25, 0x22, 0x1c, 0x17, 0x16, 0x18, 0x1b, 0x1c, 0x1f, 0x21, 0x1f, 0x1d, 0x1e, 0x21, 0x26, 0x27, 0x2a, 0x28, 0x21, 0x1b, 0x1c, 0x21, 0x2c, 0x32, 0x38, 0x3d, 0x42, 0x42, 0x36, 0x27, 0x19, 0x16, 0x20, 0x2c, 0x2a, 0x25, 0x22, 0x1f, 0x22, 0x29, 0x30, 0x35, 0x38, 0x39, 0x37, 0x34, 0x41, 0x3f, 0x3d, 0x3b, 0x38, 0x37, 0x3d, 0x44, 0x46, 0x37, 0x26, 0x1b, 0x19, 0x1c, 0x1f, 0x21, 0x24, 0x24, 0x25, 0x28, 0x2b, 0x30, 0x34, 0x37, 0x39, 0x3a, 0x3b, 0x3c, 0x3e, 0x41, 0x43, 0x44, 0x44, 0x43, 0x40, 0x3f, 0x3f, 0x40, 0x42, 0x43, 0x4c, 0x58, 0x60, 0x5c, 0x57, 0x59, 0x5b, 0x5b, 0x5d, 0x5a, 0x57, 0x56, 0x5c, 0x63, 0x65, 0x63, 0x5d, 0x5e, 0x5c, 0x5b, 0x60, 0x69, 0x6b, 0x67, 0x62, 0x66, 0x69, 0x6a, 0x68, 0x66, 0x67, 0x69, 0x6b, 0x6c, 0x6c, 0x69, 0x69, 0x6a, 0x69, 0x67, 0x5d, 0x55, 0x48, 0x3c, 0x33, 0x2f, 0x30, 0x31, 0x30, 0x35, 0x3b, 0x3e, 0x3e, 0x3d, 0x3e, 0x3f, 0x44, 0x4d, 0x53, 0x4f, 0x4b, 0x4a, 0x47, 0x42, 0x44, 0x48, 0x4b, 0x4b, 0x4a, 0x4d, 0x53, 0x58, 0x66, 0x6c, 0x6b, 0x62, 0x5d, 0x61, 0x64, 0x62, 0x60, 0x5f, 0x61, 0x61, 0x59, 0x4b, 0x43, 0x44, 0x4a, 0x4b, 0x4d, 0x4f, 0x4f, 0x49, 0x42, 0x3d, 0x38, 0x3c, 0x43, 0x4c, 0x54, 0x55, 0x50, 0x4b, 0x46, 0x4d, 0x50, 0x4d, 0x49, 0x4d, 0x54, 0x5a, 0x73, 0x74, 0x71, 0x6f, 0x72, 0x76, 0x71, 0x68, 0x61, 0x5d, 0x58, 0x54, 0x54, 0x5c, 0x68, 0x72, 0x72, 0x6a, 0x61, 0x5c, 0x5a, 0x5b, 0x62, 0x69, 0x71, 0x68, 0x58, 0x52, 0x5a, 0x60, 0x65, 0x6e, 0x6d, 0x74, 0x72, 0x67, 0x58, 0x48, 0x42, 0x49, 0x5e, 0x78, 0x90, 0x98, 0x96, 0x90, 0x82, 0x73, 0x64, 0x64, 0x64, 0x63, 0x62, 0x65, 0x6b, 0x71, 0x67, 0x5f, 0x59, 0x5a, 0x5f, 0x62, 0x63, 0x65, 0x69, 0x6a, 0x6d, 0x71, 0x74, 0x75, 0x75, 0x74, 0x77, 0x84, 0x83, 0x7a, 0x77, 0x70, 0x6f, 0x7a, 0x78, 0x73, 0x71, 0x7b, 0x8e, 0x9d, 0xa1, 0x9d, 0x95, 0x92, 0x8e, 0x8d, 0x91, 0x99, 0xa1, 0xa6, 0xaa, 0xab, 0xa8, 0x8e, 0x66, 0x50, 0x50, 0x54, 0x4a, 0x4c, 0x50, 0x54, 0x59, 0x5f, 0x65, 0x69, 0x70, 0x74, 0x7a, 0x81, 0x84, 0x84, 0x83, 0x83, 0x7c, 0x7c, 0x77, 0x7c, 0x82, 0x87, 0x80, 0x60, 0x51, 0x5c, 0x63, 0x64, 0x66, 0x65, 0x67, 0x6f, 0x74, 0x73, 0x77, 0x7f, 0x81, 0x7e, 0x7d, 0x7f, 0x83, 0x85, 0x88, 0x8b, 0x8d, 0x8d, 0x8c, 0x8b, 0x8d, 0x8f, 0x92, 0x94, 0x94, 0x95, 0x96, 0x97, 0x94, 0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x97, 0x96, 0x95, 0x95, 0x97, 0x99, 0x9b, 0x9b, 0x9d, 0x9d, 0x9d, 0x9e, 0xa0, 0xa1, 0xa2, 0xa2, 0xa5, 0xa6, 0xa7, 0xa8, 0xa8, 0xa9, 0xab, 0xad, 0xad, 0xae, 0xae, 0xae, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xb0, 0xb2, 0xb2, 0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb4, 0xb4, 0xb5, 0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xac, 0xaa, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa3, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x99, 0x96, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x89, 0x87, 0x86, 0x87, 0x86, 0x84, 0x82, 0x81, 0x7f, 0x7f, 0x7e, 0x7f, 0x7e, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x74, 0x70, 0x6e, 0x6d, 0x69, 0x63, 0x5e, 0x5e, 0x5d, 0x5a, 0x57, 0x53, 0x4c, 0x41, 0x38, 0x36, 0x35, 0x36, 0x37, 0x36, 0x34, 0x36, 0x3a, 0x36, 0x3b, 0x40, 0x41, 0x3e, 0x3c, 0x3d, 0x40, 0x44, 0x41, 0x3e, 0x40, 0x41, 0x40, 0x40, 0x40, 0x3a, 0x41, 0x44, 0x41, 0x3f, 0x40, 0x40, 0x3d, 0x43, 0x3e, 0x3b, 0x3c, 0x3c, 0x3b, 0x3d, 0x41, 0x3b, 0x44, 0x58, 0x6e, 0x7b, 0x78, 0x6e, 0x66, 0x6e, 0x6d, 0x6d, 0x6c, 0x66, 0x59, 0x4a, 0x40, 0x41, 0x51, 0x5c, 0x59, 0x51, 0x4e, 0x4e, 0x4e, 0x50, 0x51, 0x4f, 0x49, 0x43, 0x44, 0x4f, 0x59, 0x73, 0x6f, 0x60, 0x4f, 0x4f, 0x5a, 0x5c, 0x55, 0x54, 0x5e, 0x71, 0x7c, 0x7b, 0x7b, 0x7f, 0x7f, 0x82, 0x71, 0x5c, 0x4c, 0x3f, 0x38, 0x35, 0x37, 0x3f, 0x44, 0x3f, 0x33, 0x2a, 0x21, 0x1f, 0x27, 0x22, 0x1f, 0x1d, 0x1c, 0x19, 0x16, 0x17, 0x1a, 0x13, 0x11, 0x11, 0x12, 0x13, 0x13, 0x15, 0x19, 0x1a, 0x17, 0x15, 0x14, 0x17, 0x1c, 0x20, 0x22, 0x24, 0x1f, 0x1b, 0x1f, 0x26, 0x29, 0x24, 0x1e, 0x23, 0x25, 0x26, 0x24, 0x1e, 0x19, 0x18, 0x19, 0x1c, 0x1a, 0x1b, 0x1f, 0x20, 0x1e, 0x1e, 0x21, 0x26, 0x2c, 0x31, 0x2e, 0x25, 0x1d, 0x1e, 0x23, 0x2e, 0x38, 0x40, 0x41, 0x3e, 0x39, 0x30, 0x28, 0x1b, 0x14, 0x1b, 0x29, 0x2b, 0x26, 0x25, 0x24, 0x26, 0x2d, 0x35, 0x3a, 0x3d, 0x3c, 0x38, 0x32, 0x4a, 0x45, 0x41, 0x3c, 0x39, 0x38, 0x3d, 0x44, 0x46, 0x3c, 0x2c, 0x1d, 0x19, 0x1c, 0x21, 0x23, 0x27, 0x27, 0x28, 0x2a, 0x2d, 0x31, 0x35, 0x37, 0x3a, 0x3b, 0x3b, 0x3d, 0x3f, 0x41, 0x43, 0x45, 0x46, 0x45, 0x42, 0x41, 0x40, 0x41, 0x43, 0x44, 0x46, 0x4e, 0x51, 0x50, 0x57, 0x63, 0x65, 0x5e, 0x5b, 0x5a, 0x56, 0x51, 0x52, 0x5c, 0x69, 0x72, 0x6d, 0x68, 0x63, 0x64, 0x6c, 0x74, 0x73, 0x6e, 0x66, 0x6a, 0x6f, 0x73, 0x74, 0x74, 0x74, 0x75, 0x78, 0x75, 0x70, 0x6f, 0x72, 0x77, 0x77, 0x73, 0x61, 0x5d, 0x53, 0x46, 0x3a, 0x34, 0x35, 0x38, 0x37, 0x39, 0x3c, 0x3e, 0x3f, 0x3f, 0x3f, 0x40, 0x48, 0x55, 0x5d, 0x57, 0x4b, 0x43, 0x40, 0x3e, 0x4e, 0x4b, 0x44, 0x3c, 0x3a, 0x42, 0x51, 0x5d, 0x5f, 0x5e, 0x5b, 0x57, 0x57, 0x5d, 0x62, 0x64, 0x67, 0x66, 0x68, 0x6a, 0x68, 0x60, 0x57, 0x53, 0x44, 0x42, 0x42, 0x43, 0x43, 0x43, 0x44, 0x47, 0x40, 0x3e, 0x3f, 0x43, 0x49, 0x4b, 0x47, 0x42, 0x3f, 0x47, 0x4d, 0x4c, 0x49, 0x4b, 0x51, 0x56, 0x62, 0x67, 0x68, 0x63, 0x5e, 0x61, 0x69, 0x6f, 0x67, 0x60, 0x58, 0x51, 0x4c, 0x4d, 0x55, 0x5d, 0x6a, 0x64, 0x5f, 0x5c, 0x59, 0x5b, 0x65, 0x71, 0x6e, 0x75, 0x76, 0x74, 0x71, 0x69, 0x67, 0x6f, 0x6e, 0x6f, 0x6e, 0x6d, 0x64, 0x53, 0x4e, 0x59, 0x69, 0x80, 0x97, 0x9f, 0xa0, 0x9b, 0x8c, 0x7c, 0x67, 0x63, 0x61, 0x66, 0x6a, 0x69, 0x65, 0x61, 0x60, 0x5b, 0x58, 0x5b, 0x61, 0x67, 0x6b, 0x6f, 0x73, 0x71, 0x6e, 0x6c, 0x70, 0x76, 0x77, 0x75, 0x8a, 0x90, 0x8c, 0x81, 0x7c, 0x7a, 0x79, 0x7b, 0x6c, 0x72, 0x78, 0x7e, 0x8c, 0x9d, 0xa3, 0x9f, 0x90, 0x8b, 0x86, 0x86, 0x8a, 0x8d, 0x8d, 0x8b, 0x98, 0x9e, 0x9f, 0x89, 0x63, 0x4d, 0x4b, 0x4c, 0x4f, 0x50, 0x50, 0x52, 0x56, 0x5d, 0x66, 0x6c, 0x76, 0x74, 0x77, 0x7e, 0x82, 0x81, 0x7c, 0x78, 0x82, 0x80, 0x7d, 0x81, 0x85, 0x8c, 0x85, 0x5f, 0x54, 0x5e, 0x63, 0x65, 0x68, 0x67, 0x68, 0x6f, 0x72, 0x77, 0x7c, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7f, 0x82, 0x86, 0x89, 0x8b, 0x8a, 0x89, 0x88, 0x8c, 0x8e, 0x91, 0x93, 0x93, 0x94, 0x95, 0x96, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x97, 0x99, 0x9b, 0x9c, 0x9f, 0x9c, 0x9b, 0x9c, 0xa0, 0xa2, 0xa2, 0xa1, 0xa4, 0xa5, 0xa7, 0xa7, 0xa8, 0xa9, 0xab, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb2, 0xb1, 0xb3, 0xb4, 0xb4, 0xb3, 0xb4, 0xb5, 0xb6, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5, 0xb5, 0xb4, 0xb2, 0xb0, 0xb1, 0xb2, 0xb1, 0xb0, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xad, 0xad, 0xab, 0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0, 0x9e, 0x9e, 0x9d, 0x9e, 0x9d, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9a, 0x97, 0x93, 0x92, 0x93, 0x93, 0x90, 0x8d, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x89, 0x87, 0x85, 0x83, 0x82, 0x81, 0x82, 0x82, 0x83, 0x82, 0x80, 0x7e, 0x7d, 0x7c, 0x79, 0x78, 0x78, 0x75, 0x71, 0x6e, 0x6d, 0x6a, 0x64, 0x60, 0x5c, 0x5b, 0x59, 0x56, 0x54, 0x4f, 0x46, 0x3e, 0x36, 0x35, 0x37, 0x3a, 0x3c, 0x3a, 0x3a, 0x3c, 0x3e, 0x40, 0x41, 0x3e, 0x39, 0x35, 0x35, 0x36, 0x35, 0x32, 0x31, 0x34, 0x38, 0x39, 0x3a, 0x3b, 0x3a, 0x3e, 0x3e, 0x39, 0x35, 0x36, 0x37, 0x36, 0x38, 0x37, 0x38, 0x39, 0x39, 0x38, 0x3a, 0x3d, 0x36, 0x48, 0x61, 0x73, 0x76, 0x70, 0x6e, 0x70, 0x75, 0x75, 0x76, 0x75, 0x6e, 0x60, 0x52, 0x4a, 0x66, 0x62, 0x5a, 0x50, 0x48, 0x46, 0x44, 0x42, 0x52, 0x57, 0x55, 0x4d, 0x4b, 0x53, 0x5a, 0x5b, 0x52, 0x52, 0x4c, 0x47, 0x50, 0x62, 0x6c, 0x6c, 0x5e, 0x66, 0x76, 0x7d, 0x79, 0x79, 0x7f, 0x80, 0x80, 0x6a, 0x50, 0x41, 0x39, 0x33, 0x31, 0x32, 0x3b, 0x3e, 0x39, 0x30, 0x2b, 0x24, 0x22, 0x28, 0x24, 0x20, 0x1d, 0x1d, 0x1c, 0x1b, 0x1d, 0x1f, 0x17, 0x14, 0x12, 0x11, 0x10, 0x10, 0x16, 0x1d, 0x1c, 0x1a, 0x17, 0x15, 0x17, 0x1b, 0x21, 0x25, 0x22, 0x1d, 0x1a, 0x1f, 0x28, 0x2c, 0x29, 0x23, 0x28, 0x2b, 0x2b, 0x26, 0x20, 0x1d, 0x1b, 0x18, 0x18, 0x17, 0x19, 0x20, 0x23, 0x20, 0x20, 0x22, 0x20, 0x26, 0x2c, 0x2a, 0x22, 0x1c, 0x1d, 0x21, 0x31, 0x3a, 0x41, 0x3d, 0x35, 0x2e, 0x29, 0x27, 0x27, 0x18, 0x1a, 0x29, 0x2d, 0x2b, 0x2b, 0x2d, 0x30, 0x35, 0x3b, 0x3e, 0x40, 0x3f, 0x39, 0x33, 0x51, 0x4e, 0x49, 0x42, 0x3b, 0x38, 0x3d, 0x44, 0x47, 0x41, 0x34, 0x24, 0x1c, 0x1d, 0x21, 0x22, 0x28, 0x28, 0x29, 0x2a, 0x2e, 0x32, 0x36, 0x38, 0x3c, 0x3c, 0x3c, 0x3e, 0x40, 0x42, 0x45, 0x46, 0x49, 0x47, 0x44, 0x42, 0x42, 0x42, 0x44, 0x45, 0x46, 0x4c, 0x54, 0x5c, 0x67, 0x6f, 0x6d, 0x67, 0x62, 0x67, 0x68, 0x60, 0x59, 0x5b, 0x65, 0x6d, 0x68, 0x61, 0x5f, 0x69, 0x77, 0x7c, 0x77, 0x71, 0x66, 0x67, 0x6a, 0x71, 0x79, 0x7e, 0x7d, 0x7b, 0x77, 0x70, 0x67, 0x61, 0x65, 0x6c, 0x6f, 0x6e, 0x64, 0x63, 0x5c, 0x4e, 0x3e, 0x34, 0x35, 0x39, 0x37, 0x3a, 0x3f, 0x46, 0x4b, 0x4c, 0x4b, 0x49, 0x5a, 0x66, 0x6f, 0x6a, 0x5c, 0x50, 0x4e, 0x51, 0x47, 0x4b, 0x50, 0x53, 0x53, 0x50, 0x4d, 0x4c, 0x4a, 0x46, 0x45, 0x4a, 0x50, 0x54, 0x56, 0x59, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x64, 0x58, 0x4d, 0x45, 0x41, 0x3e, 0x40, 0x40, 0x3d, 0x3b, 0x3c, 0x35, 0x36, 0x3a, 0x42, 0x4a, 0x50, 0x50, 0x4e, 0x4a, 0x4e, 0x50, 0x50, 0x50, 0x54, 0x58, 0x59, 0x59, 0x5d, 0x63, 0x65, 0x64, 0x68, 0x74, 0x80, 0x6c, 0x62, 0x58, 0x51, 0x4b, 0x47, 0x47, 0x49, 0x51, 0x53, 0x58, 0x5b, 0x58, 0x58, 0x65, 0x75, 0x73, 0x81, 0x8b, 0x8b, 0x81, 0x6e, 0x63, 0x65, 0x6f, 0x6e, 0x74, 0x7e, 0x79, 0x64, 0x5e, 0x6e, 0x78, 0x83, 0x92, 0x9d, 0x9b, 0x8e, 0x7e, 0x74, 0x6b, 0x64, 0x60, 0x62, 0x65, 0x62, 0x5d, 0x5a, 0x57, 0x56, 0x58, 0x5c, 0x61, 0x64, 0x68, 0x6d, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x8c, 0x8a, 0x88, 0x85, 0x83, 0x85, 0x7e, 0x6f, 0x71, 0x7e, 0x89, 0x89, 0x84, 0x83, 0x85, 0x87, 0x8c, 0x89, 0x86, 0x87, 0x89, 0x89, 0x84, 0x7f, 0x7f, 0x89, 0x91, 0x84, 0x69, 0x5c, 0x5c, 0x5b, 0x5f, 0x5d, 0x5b, 0x59, 0x5a, 0x60, 0x67, 0x6c, 0x65, 0x68, 0x70, 0x77, 0x77, 0x73, 0x72, 0x74, 0x79, 0x80, 0x84, 0x83, 0x7b, 0x7f, 0x7b, 0x57, 0x53, 0x5f, 0x65, 0x67, 0x69, 0x67, 0x67, 0x6e, 0x6f, 0x79, 0x7f, 0x7c, 0x79, 0x7b, 0x7d, 0x7c, 0x80, 0x81, 0x83, 0x86, 0x87, 0x87, 0x86, 0x86, 0x8c, 0x8e, 0x91, 0x92, 0x93, 0x93, 0x94, 0x95, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x97, 0x94, 0x96, 0x98, 0x98, 0x97, 0x98, 0x9a, 0x9c, 0x9e, 0x9d, 0x9c, 0x9d, 0x9f, 0xa2, 0xa3, 0xa4, 0xa3, 0xa4, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xaa, 0xab, 0xac, 0xad, 0xad, 0xae, 0xae, 0xb0, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb3, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xac, 0xab, 0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x98, 0x96, 0x95, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x90, 0x8e, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x87, 0x88, 0x87, 0x86, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7a, 0x78, 0x7a, 0x75, 0x70, 0x6e, 0x6d, 0x6b, 0x66, 0x61, 0x5c, 0x5b, 0x58, 0x55, 0x53, 0x51, 0x4a, 0x41, 0x38, 0x36, 0x37, 0x3c, 0x3f, 0x3e, 0x3c, 0x3b, 0x44, 0x45, 0x45, 0x42, 0x3c, 0x39, 0x38, 0x39, 0x37, 0x35, 0x36, 0x39, 0x3b, 0x3b, 0x3a, 0x3b, 0x3f, 0x3d, 0x38, 0x32, 0x2f, 0x2f, 0x30, 0x2f, 0x2c, 0x30, 0x33, 0x33, 0x32, 0x32, 0x33, 0x33, 0x39, 0x46, 0x57, 0x62, 0x61, 0x5e, 0x61, 0x67, 0x6d, 0x6e, 0x70, 0x71, 0x6b, 0x60, 0x59, 0x57, 0x61, 0x5b, 0x55, 0x53, 0x4f, 0x48, 0x41, 0x3d, 0x41, 0x45, 0x43, 0x3d, 0x40, 0x4b, 0x52, 0x52, 0x4e, 0x50, 0x4f, 0x4e, 0x59, 0x6c, 0x7b, 0x81, 0x67, 0x6c, 0x79, 0x7f, 0x7a, 0x7a, 0x7e, 0x7d, 0x70, 0x5b, 0x43, 0x37, 0x33, 0x30, 0x30, 0x33, 0x38, 0x3a, 0x35, 0x2f, 0x2d, 0x28, 0x25, 0x29, 0x23, 0x1f, 0x1f, 0x21, 0x24, 0x23, 0x23, 0x23, 0x21, 0x1e, 0x1c, 0x18, 0x14, 0x12, 0x17, 0x1d, 0x24, 0x22, 0x1d, 0x19, 0x18, 0x1c, 0x23, 0x29, 0x26, 0x20, 0x1c, 0x20, 0x29, 0x2e, 0x2a, 0x24, 0x2b, 0x31, 0x30, 0x27, 0x22, 0x23, 0x20, 0x1a, 0x14, 0x16, 0x1f, 0x29, 0x2a, 0x25, 0x24, 0x27, 0x22, 0x25, 0x27, 0x26, 0x24, 0x24, 0x25, 0x26, 0x2c, 0x35, 0x3d, 0x3f, 0x3d, 0x3e, 0x42, 0x46, 0x33, 0x1e, 0x1a, 0x28, 0x2f, 0x2d, 0x2e, 0x30, 0x38, 0x3b, 0x3e, 0x40, 0x42, 0x43, 0x3f, 0x3a, 0x51, 0x4f, 0x4c, 0x44, 0x3a, 0x35, 0x3a, 0x42, 0x49, 0x47, 0x3c, 0x2a, 0x1f, 0x1e, 0x20, 0x1f, 0x27, 0x27, 0x27, 0x29, 0x2d, 0x31, 0x35, 0x38, 0x3d, 0x3d, 0x3e, 0x3f, 0x41, 0x43, 0x46, 0x48, 0x4a, 0x48, 0x46, 0x43, 0x43, 0x43, 0x45, 0x46, 0x4d, 0x50, 0x56, 0x5c, 0x5c, 0x57, 0x57, 0x5a, 0x76, 0x7a, 0x77, 0x67, 0x54, 0x4c, 0x4f, 0x55, 0x56, 0x4e, 0x52, 0x67, 0x7b, 0x80, 0x7a, 0x73, 0x69, 0x64, 0x60, 0x66, 0x71, 0x77, 0x76, 0x71, 0x63, 0x5b, 0x50, 0x49, 0x4d, 0x58, 0x60, 0x63, 0x65, 0x65, 0x60, 0x50, 0x3d, 0x32, 0x32, 0x37, 0x31, 0x36, 0x40, 0x4c, 0x56, 0x59, 0x55, 0x51, 0x55, 0x65, 0x76, 0x79, 0x6a, 0x59, 0x51, 0x51, 0x52, 0x57, 0x5f, 0x67, 0x6b, 0x66, 0x5c, 0x55, 0x44, 0x39, 0x36, 0x3f, 0x49, 0x4f, 0x55, 0x5b, 0x5b, 0x5f, 0x60, 0x60, 0x60, 0x5f, 0x54, 0x47, 0x46, 0x49, 0x4e, 0x4e, 0x43, 0x36, 0x32, 0x34, 0x38, 0x38, 0x3a, 0x3e, 0x45, 0x4b, 0x50, 0x53, 0x50, 0x4f, 0x4c, 0x4a, 0x4e, 0x54, 0x56, 0x54, 0x58, 0x55, 0x58, 0x61, 0x67, 0x67, 0x69, 0x6d, 0x6c, 0x60, 0x56, 0x54, 0x54, 0x50, 0x4c, 0x4b, 0x46, 0x4f, 0x5a, 0x5e, 0x55, 0x4d, 0x55, 0x64, 0x83, 0x87, 0x86, 0x81, 0x79, 0x6a, 0x5f, 0x61, 0x6d, 0x6e, 0x7a, 0x8d, 0x89, 0x6e, 0x65, 0x76, 0x89, 0x81, 0x81, 0x85, 0x7c, 0x67, 0x59, 0x59, 0x5e, 0x5a, 0x57, 0x55, 0x52, 0x50, 0x56, 0x5e, 0x60, 0x61, 0x65, 0x69, 0x6a, 0x69, 0x6c, 0x6f, 0x72, 0x72, 0x76, 0x77, 0x72, 0x6d, 0x73, 0x7e, 0x81, 0x85, 0x8e, 0x8b, 0x80, 0x81, 0x80, 0x71, 0x75, 0x74, 0x75, 0x77, 0x77, 0x76, 0x79, 0x7f, 0x7b, 0x79, 0x79, 0x7b, 0x7e, 0x80, 0x7d, 0x7a, 0x86, 0x8c, 0x8f, 0x7d, 0x5e, 0x4b, 0x43, 0x3c, 0x42, 0x47, 0x4f, 0x55, 0x59, 0x5c, 0x5d, 0x5d, 0x67, 0x70, 0x7c, 0x7f, 0x76, 0x6c, 0x6e, 0x75, 0x80, 0x84, 0x88, 0x8a, 0x84, 0x87, 0x7d, 0x4f, 0x51, 0x5f, 0x68, 0x6a, 0x6a, 0x66, 0x66, 0x6d, 0x6d, 0x7a, 0x81, 0x7b, 0x76, 0x7a, 0x7e, 0x7d, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x8c, 0x8e, 0x90, 0x92, 0x92, 0x93, 0x94, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x97, 0x98, 0x94, 0x97, 0x9a, 0x9a, 0x98, 0x97, 0x99, 0x9b, 0x9d, 0x9e, 0x9f, 0x9e, 0x9e, 0xa0, 0xa4, 0xa7, 0xa2, 0xa3, 0xa5, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xaf, 0xb1, 0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb2, 0xb3, 0xb5, 0xb7, 0xb6, 0xb4, 0xb4, 0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xae, 0xad, 0xad, 0xae, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xac, 0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9a, 0x9b, 0x9d, 0x9e, 0x9d, 0x9b, 0x98, 0x97, 0x96, 0x97, 0x98, 0x95, 0x92, 0x90, 0x91, 0x93, 0x8e, 0x8b, 0x89, 0x89, 0x89, 0x89, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7a, 0x7b, 0x76, 0x70, 0x6e, 0x6e, 0x6c, 0x67, 0x63, 0x5d, 0x5d, 0x59, 0x55, 0x54, 0x52, 0x4c, 0x44, 0x41, 0x3c, 0x3a, 0x3d, 0x40, 0x40, 0x3e, 0x3c, 0x40, 0x43, 0x45, 0x45, 0x43, 0x42, 0x43, 0x46, 0x48, 0x47, 0x48, 0x4b, 0x4a, 0x45, 0x42, 0x41, 0x3e, 0x38, 0x31, 0x2d, 0x2b, 0x2a, 0x28, 0x26, 0x24, 0x2a, 0x2d, 0x2b, 0x2c, 0x30, 0x33, 0x33, 0x38, 0x38, 0x3d, 0x43, 0x48, 0x49, 0x4a, 0x4c, 0x50, 0x52, 0x58, 0x5c, 0x59, 0x52, 0x50, 0x52, 0x5f, 0x57, 0x50, 0x4a, 0x40, 0x32, 0x2b, 0x2b, 0x24, 0x2b, 0x33, 0x39, 0x40, 0x48, 0x4c, 0x4b, 0x48, 0x45, 0x44, 0x50, 0x69, 0x7c, 0x7e, 0x75, 0x6c, 0x6f, 0x79, 0x7f, 0x7c, 0x7b, 0x7c, 0x78, 0x60, 0x4d, 0x39, 0x32, 0x30, 0x2f, 0x32, 0x37, 0x38, 0x3a, 0x34, 0x2f, 0x30, 0x2c, 0x28, 0x2a, 0x21, 0x1f, 0x21, 0x27, 0x2b, 0x2a, 0x27, 0x25, 0x21, 0x20, 0x20, 0x1e, 0x19, 0x16, 0x19, 0x1f, 0x2b, 0x28, 0x23, 0x1b, 0x18, 0x1b, 0x23, 0x2a, 0x2b, 0x24, 0x1e, 0x21, 0x29, 0x2d, 0x28, 0x22, 0x29, 0x31, 0x30, 0x26, 0x22, 0x25, 0x23, 0x1c, 0x12, 0x18, 0x26, 0x32, 0x31, 0x2a, 0x28, 0x2d, 0x30, 0x2f, 0x2d, 0x2d, 0x30, 0x35, 0x36, 0x35, 0x31, 0x37, 0x3d, 0x3e, 0x3f, 0x43, 0x4a, 0x4f, 0x37, 0x1d, 0x16, 0x24, 0x2b, 0x2a, 0x2a, 0x2c, 0x3c, 0x3e, 0x3e, 0x40, 0x43, 0x47, 0x46, 0x43, 0x54, 0x4d, 0x44, 0x3c, 0x34, 0x33, 0x3b, 0x46, 0x48, 0x48, 0x3f, 0x2d, 0x20, 0x1d, 0x21, 0x23, 0x25, 0x2a, 0x2e, 0x2c, 0x2d, 0x33, 0x39, 0x3b, 0x3f, 0x3c, 0x3d, 0x41, 0x43, 0x42, 0x44, 0x48, 0x4a, 0x47, 0x45, 0x45, 0x42, 0x3f, 0x41, 0x46, 0x4c, 0x49, 0x4a, 0x4e, 0x4a, 0x42, 0x42, 0x49, 0x58, 0x63, 0x67, 0x5e, 0x51, 0x4d, 0x4e, 0x50, 0x55, 0x59, 0x5b, 0x5b, 0x5f, 0x67, 0x6b, 0x6c, 0x65, 0x5e, 0x55, 0x51, 0x58, 0x63, 0x67, 0x66, 0x5c, 0x58, 0x53, 0x4e, 0x4a, 0x4c, 0x53, 0x5b, 0x68, 0x69, 0x63, 0x53, 0x40, 0x34, 0x31, 0x32, 0x34, 0x39, 0x43, 0x50, 0x5c, 0x60, 0x5f, 0x5c, 0x63, 0x68, 0x70, 0x75, 0x71, 0x66, 0x5d, 0x5a, 0x61, 0x6a, 0x75, 0x7a, 0x79, 0x71, 0x63, 0x58, 0x43, 0x38, 0x36, 0x3f, 0x4e, 0x5c, 0x5e, 0x54, 0x42, 0x3b, 0x39, 0x41, 0x4a, 0x4c, 0x49, 0x47, 0x44, 0x47, 0x48, 0x44, 0x3c, 0x35, 0x32, 0x33, 0x2d, 0x2f, 0x35, 0x3f, 0x44, 0x44, 0x44, 0x46, 0x4e, 0x54, 0x5c, 0x61, 0x63, 0x64, 0x65, 0x67, 0x63, 0x65, 0x6d, 0x77, 0x7a, 0x76, 0x73, 0x72, 0x70, 0x67, 0x5e, 0x5e, 0x62, 0x63, 0x60, 0x5c, 0x53, 0x50, 0x55, 0x5b, 0x51, 0x42, 0x45, 0x55, 0x72, 0x7a, 0x7d, 0x77, 0x75, 0x7b, 0x80, 0x81, 0x81, 0x78, 0x72, 0x70, 0x6f, 0x6d, 0x70, 0x76, 0x6c, 0x6f, 0x77, 0x7f, 0x80, 0x77, 0x6b, 0x64, 0x63, 0x5d, 0x5a, 0x56, 0x50, 0x57, 0x65, 0x6a, 0x6f, 0x70, 0x6d, 0x69, 0x6c, 0x71, 0x6f, 0x68, 0x6f, 0x71, 0x78, 0x7f, 0x7c, 0x75, 0x77, 0x80, 0x8e, 0x95, 0x96, 0x90, 0x89, 0x86, 0x7f, 0x77, 0x6e, 0x73, 0x77, 0x78, 0x76, 0x74, 0x74, 0x75, 0x72, 0x6f, 0x6c, 0x6c, 0x70, 0x73, 0x74, 0x73, 0x71, 0x7e, 0x87, 0x7d, 0x63, 0x49, 0x39, 0x33, 0x39, 0x43, 0x4d, 0x54, 0x5a, 0x5f, 0x5e, 0x59, 0x55, 0x60, 0x6c, 0x6d, 0x60, 0x57, 0x61, 0x72, 0x83, 0x89, 0x92, 0x8d, 0x99, 0xa7, 0x82, 0x4e, 0x56, 0x5e, 0x68, 0x6e, 0x6b, 0x67, 0x6b, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7d, 0x7e, 0x83, 0x84, 0x84, 0x82, 0x81, 0x82, 0x86, 0x89, 0x8c, 0x8f, 0x91, 0x93, 0x93, 0x92, 0x92, 0x92, 0x95, 0x94, 0x92, 0x91, 0x91, 0x92, 0x94, 0x95, 0x96, 0x95, 0x94, 0x94, 0x94, 0x95, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9e, 0xa3, 0xa5, 0xa4, 0xa3, 0xa3, 0xa3, 0xa4, 0xa6, 0xa8, 0xaa, 0xab, 0xaa, 0xab, 0xac, 0xad, 0xad, 0xae, 0xb0, 0xb2, 0xae, 0xae, 0xb0, 0xb1, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb3, 0xb4, 0xb5, 0xb3, 0xb2, 0xb1, 0xb1, 0xb0, 0xb1, 0xb1, 0xb0, 0xae, 0xad, 0xae, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xad, 0xa9, 0xa8, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa1, 0xa0, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9d, 0x9b, 0x99, 0x98, 0x98, 0x96, 0x92, 0x90, 0x90, 0x91, 0x91, 0x92, 0x8f, 0x8d, 0x8b, 0x89, 0x88, 0x88, 0x89, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x7e, 0x7b, 0x79, 0x78, 0x76, 0x73, 0x70, 0x6e, 0x6c, 0x69, 0x67, 0x5f, 0x5b, 0x5a, 0x5a, 0x55, 0x4e, 0x50, 0x56, 0x54, 0x4f, 0x42, 0x3b, 0x3f, 0x3e, 0x3b, 0x3d, 0x41, 0x45, 0x4b, 0x4e, 0x4e, 0x4e, 0x51, 0x54, 0x52, 0x51, 0x50, 0x51, 0x52, 0x52, 0x51, 0x51, 0x51, 0x3d, 0x31, 0x2f, 0x2b, 0x26, 0x25, 0x21, 0x25, 0x26, 0x2b, 0x2a, 0x23, 0x27, 0x2f, 0x2f, 0x2f, 0x2c, 0x32, 0x2f, 0x30, 0x34, 0x2d, 0x2c, 0x30, 0x36, 0x36, 0x35, 0x3e, 0x4b, 0x59, 0x65, 0x5b, 0x4a, 0x4e, 0x56, 0x44, 0x2f, 0x28, 0x27, 0x28, 0x28, 0x2c, 0x32, 0x39, 0x48, 0x4e, 0x48, 0x3d, 0x40, 0x47, 0x53, 0x60, 0x6a, 0x70, 0x72, 0x70, 0x76, 0x7a, 0x7a, 0x7a, 0x79, 0x70, 0x64, 0x4c, 0x3b, 0x30, 0x31, 0x2f, 0x29, 0x2e, 0x3b, 0x3e, 0x3a, 0x35, 0x31, 0x2e, 0x2b, 0x2a, 0x29, 0x24, 0x22, 0x26, 0x2b, 0x2b, 0x2c, 0x2b, 0x25, 0x21, 0x22, 0x25, 0x23, 0x1b, 0x14, 0x19, 0x24, 0x2f, 0x2e, 0x27, 0x1d, 0x1a, 0x21, 0x2a, 0x2f, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x34, 0x31, 0x2a, 0x28, 0x2f, 0x31, 0x2b, 0x25, 0x23, 0x21, 0x1e, 0x15, 0x1b, 0x2c, 0x37, 0x36, 0x35, 0x36, 0x32, 0x32, 0x30, 0x32, 0x37, 0x3b, 0x3b, 0x39, 0x37, 0x30, 0x28, 0x29, 0x32, 0x3a, 0x42, 0x42, 0x39, 0x2a, 0x1d, 0x1a, 0x27, 0x30, 0x2f, 0x2f, 0x34, 0x35, 0x3a, 0x3e, 0x42, 0x46, 0x4a, 0x4a, 0x47, 0x4f, 0x4b, 0x46, 0x3f, 0x38, 0x35, 0x3d, 0x46, 0x43, 0x43, 0x3f, 0x33, 0x26, 0x1f, 0x1e, 0x21, 0x29, 0x2c, 0x2c, 0x2b, 0x2e, 0x35, 0x3b, 0x3d, 0x3f, 0x3e, 0x3e, 0x41, 0x43, 0x44, 0x46, 0x49, 0x4a, 0x47, 0x45, 0x44, 0x42, 0x41, 0x44, 0x49, 0x51, 0x55, 0x5f, 0x68, 0x66, 0x5a, 0x51, 0x4e, 0x50, 0x55, 0x57, 0x53, 0x4f, 0x4e, 0x50, 0x51, 0x5e, 0x5f, 0x5c, 0x58, 0x58, 0x5d, 0x61, 0x61, 0x60, 0x55, 0x4a, 0x47, 0x4d, 0x53, 0x56, 0x55, 0x5a, 0x58, 0x57, 0x55, 0x53, 0x52, 0x52, 0x54, 0x53, 0x56, 0x56, 0x4c, 0x3e, 0x35, 0x32, 0x33, 0x34, 0x3c, 0x4c, 0x5d, 0x63, 0x5e, 0x58, 0x56, 0x5b, 0x60, 0x68, 0x6e, 0x6c, 0x65, 0x60, 0x5e, 0x69, 0x6d, 0x70, 0x70, 0x6e, 0x6a, 0x63, 0x5c, 0x51, 0x40, 0x35, 0x3a, 0x47, 0x55, 0x59, 0x4f, 0x41, 0x39, 0x35, 0x39, 0x3f, 0x40, 0x3f, 0x3f, 0x3e, 0x43, 0x47, 0x43, 0x3b, 0x34, 0x34, 0x37, 0x31, 0x32, 0x37, 0x3e, 0x41, 0x40, 0x41, 0x43, 0x46, 0x4a, 0x51, 0x58, 0x5d, 0x61, 0x64, 0x66, 0x6a, 0x6c, 0x71, 0x77, 0x78, 0x74, 0x71, 0x71, 0x73, 0x70, 0x6d, 0x6c, 0x6c, 0x6a, 0x67, 0x65, 0x69, 0x67, 0x64, 0x61, 0x5b, 0x56, 0x56, 0x59, 0x55, 0x58, 0x5b, 0x5d, 0x67, 0x78, 0x89, 0x92, 0x90, 0x80, 0x71, 0x6b, 0x6c, 0x6f, 0x74, 0x7a, 0x72, 0x76, 0x7d, 0x82, 0x81, 0x7d, 0x7c, 0x7d, 0x82, 0x77, 0x71, 0x70, 0x71, 0x78, 0x7f, 0x7c, 0x81, 0x7d, 0x73, 0x67, 0x65, 0x6a, 0x6c, 0x68, 0x6b, 0x6e, 0x74, 0x78, 0x76, 0x73, 0x76, 0x7b, 0x82, 0x86, 0x84, 0x7d, 0x7b, 0x7c, 0x7a, 0x75, 0x74, 0x7a, 0x81, 0x84, 0x80, 0x79, 0x74, 0x71, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x71, 0x7c, 0x7e, 0x7f, 0x7e, 0x79, 0x6f, 0x61, 0x56, 0x5d, 0x61, 0x64, 0x66, 0x66, 0x62, 0x58, 0x4d, 0x46, 0x4d, 0x5c, 0x68, 0x65, 0x60, 0x6c, 0x7e, 0x98, 0x90, 0x8b, 0x7f, 0x81, 0x86, 0x6a, 0x4b, 0x5d, 0x64, 0x6b, 0x6c, 0x69, 0x68, 0x6b, 0x6e, 0x73, 0x76, 0x79, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x81, 0x82, 0x82, 0x81, 0x80, 0x82, 0x86, 0x89, 0x8c, 0x8e, 0x91, 0x92, 0x92, 0x91, 0x90, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x91, 0x91, 0x90, 0x91, 0x92, 0x94, 0x96, 0x97, 0x99, 0x9b, 0x9b, 0x9b, 0x9e, 0xa2, 0xa3, 0xa1, 0xa1, 0xa2, 0xa3, 0xa5, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa9, 0xab, 0xad, 0xad, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb1, 0xb3, 0xb3, 0xb3, 0xb2, 0xb2, 0xb3, 0xb1, 0xb1, 0xb2, 0xb1, 0xaf, 0xae, 0xaf, 0xb1, 0xae, 0xae, 0xae, 0xad, 0xad, 0xad, 0xac, 0xac, 0xa9, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa5, 0xa5, 0xa4, 0xa2, 0xa1, 0xa0, 0xa0, 0x9f, 0x9e, 0x9e, 0x9f, 0x9f, 0x9e, 0x9c, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x94, 0x94, 0x93, 0x92, 0x91, 0x8f, 0x8d, 0x8b, 0x89, 0x88, 0x89, 0x8a, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x7e, 0x7b, 0x79, 0x78, 0x76, 0x72, 0x70, 0x6e, 0x6b, 0x69, 0x67, 0x60, 0x5b, 0x58, 0x58, 0x56, 0x53, 0x56, 0x5d, 0x62, 0x5a, 0x49, 0x3e, 0x3f, 0x3e, 0x3c, 0x3f, 0x3f, 0x44, 0x4c, 0x54, 0x5b, 0x60, 0x64, 0x65, 0x66, 0x65, 0x63, 0x61, 0x61, 0x64, 0x6a, 0x6f, 0x63, 0x4b, 0x3a, 0x35, 0x30, 0x2b, 0x28, 0x22, 0x24, 0x25, 0x29, 0x2b, 0x2e, 0x39, 0x3f, 0x3a, 0x35, 0x26, 0x28, 0x26, 0x24, 0x2d, 0x30, 0x35, 0x33, 0x35, 0x35, 0x38, 0x47, 0x5c, 0x64, 0x60, 0x4b, 0x4a, 0x56, 0x60, 0x58, 0x4f, 0x49, 0x40, 0x31, 0x2e, 0x34, 0x3e, 0x49, 0x51, 0x49, 0x36, 0x35, 0x36, 0x3a, 0x45, 0x54, 0x63, 0x6e, 0x73, 0x73, 0x74, 0x73, 0x72, 0x76, 0x77, 0x6c, 0x5e, 0x45, 0x35, 0x2b, 0x2d, 0x30, 0x30, 0x3b, 0x4a, 0x4d, 0x4a, 0x41, 0x35, 0x2d, 0x2c, 0x2b, 0x2b, 0x2a, 0x25, 0x27, 0x2c, 0x2e, 0x32, 0x32, 0x2c, 0x26, 0x27, 0x28, 0x24, 0x19, 0x13, 0x1a, 0x26, 0x36, 0x33, 0x2a, 0x21, 0x1e, 0x26, 0x2f, 0x34, 0x35, 0x29, 0x1f, 0x23, 0x2f, 0x35, 0x30, 0x29, 0x2b, 0x34, 0x37, 0x2f, 0x25, 0x23, 0x24, 0x24, 0x1a, 0x1f, 0x2d, 0x39, 0x39, 0x39, 0x3b, 0x38, 0x38, 0x36, 0x34, 0x34, 0x38, 0x3c, 0x3e, 0x3d, 0x31, 0x2a, 0x2c, 0x34, 0x3b, 0x41, 0x3f, 0x36, 0x23, 0x18, 0x16, 0x22, 0x2b, 0x2a, 0x2a, 0x2f, 0x37, 0x3b, 0x40, 0x42, 0x46, 0x4b, 0x4e, 0x4f, 0x4c, 0x4c, 0x4b, 0x45, 0x3b, 0x36, 0x39, 0x40, 0x40, 0x3e, 0x3c, 0x37, 0x2c, 0x21, 0x1f, 0x24, 0x28, 0x2a, 0x2d, 0x2f, 0x33, 0x38, 0x3a, 0x3a, 0x3b, 0x3d, 0x3f, 0x3f, 0x42, 0x45, 0x46, 0x45, 0x49, 0x46, 0x44, 0x43, 0x42, 0x42, 0x46, 0x4a, 0x49, 0x50, 0x59, 0x5e, 0x5b, 0x52, 0x48, 0x42, 0x4c, 0x48, 0x46, 0x48, 0x4d, 0x50, 0x52, 0x54, 0x5d, 0x5e, 0x5c, 0x59, 0x57, 0x59, 0x5b, 0x5b, 0x58, 0x4c, 0x43, 0x46, 0x4c, 0x4d, 0x4b, 0x4a, 0x51, 0x53, 0x56, 0x58, 0x59, 0x57, 0x54, 0x51, 0x4e, 0x52, 0x52, 0x4b, 0x3e, 0x34, 0x32, 0x34, 0x36, 0x40, 0x54, 0x69, 0x6e, 0x66, 0x62, 0x64, 0x62, 0x61, 0x62, 0x64, 0x61, 0x5c, 0x59, 0x58, 0x5f, 0x64, 0x68, 0x6a, 0x6a, 0x69, 0x66, 0x61, 0x4f, 0x45, 0x40, 0x3f, 0x3e, 0x42, 0x45, 0x40, 0x3e, 0x39, 0x36, 0x36, 0x37, 0x36, 0x35, 0x35, 0x36, 0x3c, 0x41, 0x3f, 0x37, 0x32, 0x34, 0x38, 0x32, 0x34, 0x38, 0x3d, 0x3f, 0x3f, 0x41, 0x45, 0x40, 0x41, 0x43, 0x46, 0x49, 0x4c, 0x4e, 0x4f, 0x5b, 0x5d, 0x61, 0x66, 0x67, 0x66, 0x68, 0x6b, 0x68, 0x6c, 0x6f, 0x6e, 0x6a, 0x69, 0x6c, 0x6f, 0x6b, 0x6c, 0x69, 0x69, 0x72, 0x81, 0x86, 0x82, 0x63, 0x5b, 0x55, 0x57, 0x5f, 0x6a, 0x77, 0x81, 0x66, 0x61, 0x60, 0x68, 0x72, 0x75, 0x70, 0x6b, 0x72, 0x76, 0x7e, 0x84, 0x85, 0x86, 0x8b, 0x92, 0x90, 0x81, 0x79, 0x79, 0x7e, 0x84, 0x82, 0x78, 0x7c, 0x78, 0x6c, 0x60, 0x5d, 0x64, 0x6a, 0x6c, 0x71, 0x75, 0x77, 0x73, 0x6f, 0x6e, 0x6e, 0x6d, 0x72, 0x73, 0x72, 0x6f, 0x73, 0x7a, 0x7c, 0x79, 0x6d, 0x75, 0x7f, 0x85, 0x84, 0x7e, 0x78, 0x75, 0x6f, 0x71, 0x75, 0x77, 0x77, 0x75, 0x73, 0x72, 0x75, 0x6e, 0x67, 0x69, 0x70, 0x76, 0x75, 0x72, 0x6c, 0x65, 0x5d, 0x58, 0x5a, 0x5e, 0x5e, 0x5a, 0x5c, 0x58, 0x5b, 0x64, 0x69, 0x6e, 0x81, 0x96, 0x97, 0x89, 0x83, 0x79, 0x74, 0x6e, 0x5a, 0x51, 0x61, 0x66, 0x69, 0x66, 0x65, 0x69, 0x6c, 0x6a, 0x71, 0x74, 0x78, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x80, 0x80, 0x81, 0x85, 0x89, 0x8b, 0x8d, 0x8f, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x95, 0x96, 0x9b, 0x9c, 0x9c, 0x9c, 0x9e, 0xa0, 0x9f, 0x9d, 0x9f, 0xa0, 0xa3, 0xa4, 0xa5, 0xa5, 0xa4, 0xa3, 0xa4, 0xa6, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xab, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb1, 0xb2, 0xb3, 0xb4, 0xb1, 0xb2, 0xb2, 0xb1, 0xaf, 0xaf, 0xb0, 0xb1, 0xae, 0xad, 0xac, 0xab, 0xaa, 0xaa, 0xab, 0xab, 0xa8, 0xa8, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa5, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0xa0, 0x9e, 0x9e, 0x9f, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x93, 0x90, 0x8e, 0x8d, 0x8b, 0x8a, 0x89, 0x89, 0x8a, 0x8b, 0x88, 0x86, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x75, 0x72, 0x6f, 0x6d, 0x6b, 0x69, 0x67, 0x64, 0x5c, 0x55, 0x55, 0x55, 0x54, 0x58, 0x5e, 0x69, 0x60, 0x4c, 0x3d, 0x3c, 0x3b, 0x3b, 0x3f, 0x41, 0x48, 0x55, 0x64, 0x71, 0x78, 0x79, 0x78, 0x7e, 0x7d, 0x7b, 0x75, 0x70, 0x6f, 0x74, 0x79, 0x64, 0x4c, 0x3a, 0x35, 0x31, 0x2f, 0x2c, 0x25, 0x26, 0x2e, 0x39, 0x3c, 0x41, 0x52, 0x5b, 0x55, 0x43, 0x26, 0x26, 0x27, 0x1d, 0x21, 0x29, 0x2f, 0x31, 0x3a, 0x4e, 0x5a, 0x61, 0x6a, 0x61, 0x46, 0x40, 0x4c, 0x5f, 0x68, 0x68, 0x6a, 0x65, 0x57, 0x4d, 0x45, 0x46, 0x50, 0x5e, 0x63, 0x52, 0x36, 0x2f, 0x2f, 0x34, 0x3f, 0x4f, 0x5f, 0x6c, 0x72, 0x6f, 0x6b, 0x67, 0x69, 0x72, 0x77, 0x6e, 0x60, 0x47, 0x37, 0x2b, 0x2a, 0x2d, 0x32, 0x40, 0x4f, 0x54, 0x54, 0x4a, 0x38, 0x2d, 0x2e, 0x31, 0x30, 0x2f, 0x27, 0x26, 0x2b, 0x31, 0x38, 0x3a, 0x34, 0x2e, 0x2e, 0x2c, 0x26, 0x1a, 0x15, 0x1f, 0x2d, 0x3b, 0x35, 0x2b, 0x21, 0x20, 0x27, 0x30, 0x35, 0x3a, 0x2a, 0x1f, 0x25, 0x31, 0x34, 0x2e, 0x28, 0x2c, 0x37, 0x3b, 0x32, 0x25, 0x22, 0x25, 0x28, 0x1d, 0x1f, 0x2c, 0x38, 0x3a, 0x3b, 0x3c, 0x3a, 0x39, 0x3a, 0x35, 0x2f, 0x32, 0x3d, 0x43, 0x40, 0x33, 0x2d, 0x2f, 0x37, 0x3d, 0x42, 0x40, 0x37, 0x29, 0x1d, 0x1b, 0x25, 0x2d, 0x2d, 0x2e, 0x33, 0x37, 0x3c, 0x40, 0x41, 0x43, 0x49, 0x4f, 0x53, 0x46, 0x4a, 0x4c, 0x47, 0x3e, 0x37, 0x39, 0x3e, 0x3f, 0x39, 0x38, 0x38, 0x30, 0x23, 0x21, 0x29, 0x26, 0x29, 0x2c, 0x2d, 0x2f, 0x33, 0x39, 0x3c, 0x3a, 0x3e, 0x3f, 0x3f, 0x41, 0x45, 0x46, 0x44, 0x47, 0x45, 0x44, 0x43, 0x42, 0x43, 0x45, 0x47, 0x51, 0x57, 0x5a, 0x55, 0x50, 0x4f, 0x51, 0x52, 0x4b, 0x41, 0x3d, 0x42, 0x49, 0x4d, 0x51, 0x56, 0x52, 0x55, 0x59, 0x59, 0x57, 0x55, 0x53, 0x52, 0x4c, 0x42, 0x3f, 0x49, 0x50, 0x4d, 0x47, 0x46, 0x44, 0x49, 0x4e, 0x50, 0x51, 0x53, 0x54, 0x54, 0x59, 0x5a, 0x59, 0x4f, 0x41, 0x35, 0x33, 0x36, 0x39, 0x3e, 0x4f, 0x63, 0x6c, 0x6a, 0x6c, 0x72, 0x6e, 0x67, 0x60, 0x5d, 0x5a, 0x56, 0x52, 0x50, 0x4e, 0x58, 0x63, 0x69, 0x6a, 0x67, 0x5f, 0x58, 0x49, 0x41, 0x3e, 0x3e, 0x39, 0x39, 0x3b, 0x38, 0x3b, 0x3b, 0x3b, 0x3b, 0x39, 0x36, 0x34, 0x33, 0x36, 0x39, 0x3b, 0x3a, 0x36, 0x33, 0x34, 0x36, 0x33, 0x36, 0x3b, 0x3e, 0x3f, 0x3f, 0x41, 0x44, 0x4a, 0x4b, 0x4b, 0x49, 0x46, 0x46, 0x49, 0x4c, 0x4d, 0x50, 0x53, 0x56, 0x58, 0x5b, 0x60, 0x64, 0x71, 0x79, 0x7e, 0x7a, 0x73, 0x73, 0x7b, 0x83, 0x81, 0x7c, 0x72, 0x6c, 0x72, 0x7c, 0x7b, 0x72, 0x6f, 0x62, 0x5b, 0x5f, 0x66, 0x6a, 0x70, 0x77, 0x7f, 0x74, 0x69, 0x66, 0x6c, 0x73, 0x74, 0x71, 0x6a, 0x6f, 0x7a, 0x87, 0x8e, 0x90, 0x90, 0x92, 0x84, 0x77, 0x71, 0x73, 0x77, 0x7d, 0x7e, 0x76, 0x73, 0x73, 0x6e, 0x67, 0x65, 0x6b, 0x72, 0x75, 0x76, 0x7b, 0x79, 0x70, 0x6b, 0x6c, 0x6a, 0x65, 0x6c, 0x6b, 0x6a, 0x6a, 0x70, 0x77, 0x77, 0x72, 0x6c, 0x72, 0x79, 0x7d, 0x7c, 0x77, 0x73, 0x70, 0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x65, 0x5b, 0x55, 0x56, 0x60, 0x70, 0x7e, 0x76, 0x6c, 0x5e, 0x56, 0x58, 0x61, 0x69, 0x6c, 0x69, 0x6a, 0x6f, 0x76, 0x7a, 0x7a, 0x79, 0x79, 0x7c, 0x78, 0x7d, 0x7b, 0x76, 0x67, 0x54, 0x55, 0x5f, 0x63, 0x63, 0x5f, 0x62, 0x6b, 0x6e, 0x69, 0x6f, 0x73, 0x78, 0x7b, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x82, 0x86, 0x89, 0x8c, 0x8d, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x9a, 0x9c, 0x9c, 0x9c, 0x9d, 0x9f, 0x9e, 0x9a, 0x9e, 0x9f, 0xa1, 0xa2, 0xa3, 0xa4, 0xa3, 0xa3, 0xa4, 0xa6, 0xa8, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xab, 0xac, 0xac, 0xac, 0xab, 0xab, 0xae, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb3, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xaf, 0xaf, 0xad, 0xac, 0xab, 0xa9, 0xa8, 0xa9, 0xaa, 0xaa, 0xa7, 0xa8, 0xa8, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9d, 0x9d, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x97, 0x94, 0x91, 0x8e, 0x8d, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x89, 0x86, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x75, 0x71, 0x6e, 0x6c, 0x6a, 0x68, 0x67, 0x66, 0x5d, 0x55, 0x52, 0x53, 0x53, 0x54, 0x57, 0x67, 0x5f, 0x4d, 0x3f, 0x3e, 0x3e, 0x3e, 0x44, 0x41, 0x4b, 0x5b, 0x6c, 0x77, 0x7c, 0x7b, 0x79, 0x6f, 0x70, 0x6f, 0x6a, 0x62, 0x5b, 0x58, 0x58, 0x5c, 0x49, 0x3b, 0x36, 0x32, 0x32, 0x30, 0x2b, 0x34, 0x48, 0x5b, 0x5c, 0x59, 0x67, 0x73, 0x6f, 0x55, 0x26, 0x1c, 0x1c, 0x16, 0x2a, 0x4a, 0x5e, 0x6b, 0x6e, 0x7f, 0x82, 0x6f, 0x65, 0x5b, 0x44, 0x3f, 0x4e, 0x5d, 0x62, 0x65, 0x6a, 0x66, 0x5b, 0x60, 0x58, 0x58, 0x62, 0x6e, 0x70, 0x5a, 0x3a, 0x32, 0x37, 0x3f, 0x49, 0x54, 0x5f, 0x69, 0x6e, 0x64, 0x5d, 0x57, 0x59, 0x65, 0x6f, 0x6d, 0x65, 0x4f, 0x40, 0x31, 0x2b, 0x2c, 0x31, 0x3d, 0x4a, 0x55, 0x59, 0x51, 0x3c, 0x2f, 0x32, 0x35, 0x32, 0x30, 0x26, 0x23, 0x2a, 0x33, 0x3d, 0x3f, 0x37, 0x33, 0x31, 0x2f, 0x28, 0x1e, 0x1c, 0x28, 0x38, 0x40, 0x38, 0x2d, 0x23, 0x21, 0x27, 0x2f, 0x34, 0x3b, 0x2b, 0x22, 0x28, 0x32, 0x31, 0x2b, 0x26, 0x2d, 0x38, 0x3d, 0x35, 0x2a, 0x26, 0x27, 0x28, 0x1f, 0x1e, 0x2a, 0x38, 0x3c, 0x3c, 0x3c, 0x39, 0x37, 0x3c, 0x39, 0x30, 0x34, 0x43, 0x48, 0x42, 0x31, 0x2a, 0x2d, 0x35, 0x3d, 0x44, 0x43, 0x3b, 0x2d, 0x21, 0x1a, 0x20, 0x26, 0x27, 0x29, 0x2f, 0x3b, 0x41, 0x46, 0x46, 0x44, 0x48, 0x4e, 0x52, 0x3e, 0x44, 0x48, 0x45, 0x3e, 0x3a, 0x3c, 0x3f, 0x3d, 0x36, 0x35, 0x3a, 0x34, 0x26, 0x21, 0x26, 0x2a, 0x2f, 0x33, 0x32, 0x30, 0x32, 0x3a, 0x43, 0x3f, 0x3f, 0x3e, 0x3c, 0x3d, 0x42, 0x46, 0x48, 0x45, 0x45, 0x44, 0x43, 0x43, 0x43, 0x43, 0x43, 0x41, 0x4a, 0x4f, 0x4a, 0x42, 0x42, 0x47, 0x4c, 0x46, 0x3d, 0x38, 0x3b, 0x40, 0x43, 0x49, 0x51, 0x49, 0x4c, 0x4f, 0x50, 0x4c, 0x48, 0x47, 0x47, 0x49, 0x3f, 0x3c, 0x44, 0x49, 0x46, 0x42, 0x43, 0x3e, 0x46, 0x4a, 0x47, 0x45, 0x4b, 0x55, 0x5b, 0x5f, 0x60, 0x60, 0x58, 0x49, 0x39, 0x33, 0x35, 0x3a, 0x39, 0x42, 0x54, 0x61, 0x65, 0x69, 0x6e, 0x62, 0x5b, 0x56, 0x55, 0x54, 0x4f, 0x47, 0x42, 0x4f, 0x57, 0x60, 0x62, 0x5f, 0x58, 0x4f, 0x47, 0x4b, 0x41, 0x3d, 0x40, 0x3e, 0x3f, 0x40, 0x3c, 0x3c, 0x3d, 0x3e, 0x3c, 0x3a, 0x39, 0x3a, 0x3a, 0x3c, 0x3a, 0x37, 0x36, 0x36, 0x36, 0x35, 0x34, 0x36, 0x3a, 0x3f, 0x43, 0x44, 0x45, 0x47, 0x47, 0x4a, 0x4e, 0x51, 0x50, 0x4c, 0x4d, 0x54, 0x5b, 0x5c, 0x5e, 0x5e, 0x5e, 0x5d, 0x60, 0x63, 0x65, 0x67, 0x70, 0x75, 0x6e, 0x65, 0x64, 0x6a, 0x6f, 0x71, 0x6a, 0x65, 0x6a, 0x74, 0x7d, 0x80, 0x80, 0x6d, 0x60, 0x59, 0x60, 0x67, 0x67, 0x69, 0x6f, 0x7e, 0x7e, 0x7b, 0x77, 0x75, 0x72, 0x69, 0x60, 0x65, 0x69, 0x76, 0x8a, 0x97, 0x96, 0x8b, 0x81, 0x68, 0x63, 0x64, 0x65, 0x66, 0x6f, 0x7a, 0x7c, 0x70, 0x70, 0x6b, 0x65, 0x61, 0x64, 0x69, 0x6d, 0x6d, 0x73, 0x73, 0x6b, 0x69, 0x6e, 0x6f, 0x69, 0x6e, 0x6a, 0x64, 0x62, 0x66, 0x69, 0x68, 0x64, 0x69, 0x70, 0x7a, 0x83, 0x88, 0x88, 0x86, 0x85, 0x72, 0x6f, 0x6b, 0x6a, 0x6b, 0x6d, 0x6d, 0x6d, 0x6b, 0x65, 0x5b, 0x50, 0x47, 0x4b, 0x5c, 0x6d, 0x77, 0x72, 0x6c, 0x67, 0x63, 0x60, 0x5f, 0x5f, 0x70, 0x75, 0x76, 0x75, 0x76, 0x76, 0x6a, 0x5b, 0x68, 0x6e, 0x78, 0x77, 0x72, 0x62, 0x4c, 0x50, 0x5e, 0x61, 0x5f, 0x5c, 0x61, 0x6c, 0x6e, 0x69, 0x6e, 0x72, 0x77, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x86, 0x89, 0x8c, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x98, 0x9a, 0x9a, 0x9a, 0x9c, 0x9e, 0x9d, 0x9a, 0x9d, 0x9e, 0x9e, 0xa0, 0xa1, 0xa3, 0xa4, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa9, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xae, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xb0, 0xaf, 0xae, 0xad, 0xad, 0xad, 0xad, 0xac, 0xac, 0xac, 0xab, 0xa9, 0xa8, 0xa8, 0xa8, 0xa9, 0xaa, 0xa7, 0xa7, 0xa8, 0xa8, 0xa8, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9b, 0x9a, 0x98, 0x97, 0x97, 0x96, 0x94, 0x92, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x88, 0x86, 0x83, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x74, 0x71, 0x6e, 0x6c, 0x6a, 0x68, 0x66, 0x65, 0x5e, 0x56, 0x53, 0x53, 0x52, 0x51, 0x51, 0x5d, 0x58, 0x4b, 0x42, 0x42, 0x41, 0x3f, 0x43, 0x46, 0x4f, 0x5b, 0x66, 0x6c, 0x70, 0x73, 0x75, 0x7a, 0x7a, 0x7a, 0x78, 0x75, 0x6f, 0x69, 0x64, 0x58, 0x4c, 0x44, 0x40, 0x39, 0x38, 0x38, 0x33, 0x45, 0x59, 0x6d, 0x6f, 0x6b, 0x75, 0x7b, 0x73, 0x5f, 0x2c, 0x1d, 0x1c, 0x1d, 0x3f, 0x6c, 0x88, 0x87, 0x7e, 0x8b, 0x91, 0x78, 0x62, 0x5a, 0x4f, 0x44, 0x4c, 0x52, 0x57, 0x5b, 0x5e, 0x5d, 0x5d, 0x5d, 0x5a, 0x5f, 0x69, 0x70, 0x6e, 0x59, 0x3c, 0x41, 0x46, 0x4d, 0x53, 0x58, 0x5d, 0x64, 0x69, 0x62, 0x59, 0x4d, 0x48, 0x4d, 0x58, 0x60, 0x62, 0x59, 0x4c, 0x3d, 0x34, 0x31, 0x33, 0x3b, 0x43, 0x4e, 0x56, 0x53, 0x42, 0x36, 0x36, 0x37, 0x33, 0x31, 0x26, 0x24, 0x2c, 0x36, 0x40, 0x41, 0x38, 0x32, 0x2f, 0x2d, 0x29, 0x22, 0x22, 0x2f, 0x3e, 0x45, 0x3e, 0x33, 0x2a, 0x27, 0x2a, 0x31, 0x37, 0x3b, 0x30, 0x2a, 0x2e, 0x33, 0x31, 0x2c, 0x29, 0x31, 0x3a, 0x3f, 0x3b, 0x34, 0x31, 0x2d, 0x29, 0x22, 0x1f, 0x29, 0x3a, 0x3f, 0x3e, 0x3c, 0x38, 0x38, 0x3f, 0x3f, 0x38, 0x3e, 0x4c, 0x4d, 0x43, 0x2e, 0x26, 0x28, 0x32, 0x3d, 0x47, 0x49, 0x41, 0x35, 0x28, 0x1f, 0x20, 0x24, 0x26, 0x2a, 0x31, 0x43, 0x4b, 0x51, 0x50, 0x4c, 0x4b, 0x4e, 0x50, 0x42, 0x46, 0x47, 0x41, 0x3b, 0x38, 0x39, 0x3a, 0x3c, 0x34, 0x34, 0x3b, 0x3a, 0x2e, 0x26, 0x25, 0x2c, 0x39, 0x48, 0x4e, 0x47, 0x3e, 0x3d, 0x41, 0x42, 0x3e, 0x3a, 0x3a, 0x3b, 0x3e, 0x43, 0x48, 0x43, 0x44, 0x44, 0x43, 0x44, 0x47, 0x48, 0x46, 0x42, 0x4d, 0x59, 0x58, 0x4e, 0x43, 0x40, 0x42, 0x42, 0x3e, 0x39, 0x37, 0x36, 0x39, 0x40, 0x47, 0x43, 0x43, 0x44, 0x44, 0x41, 0x40, 0x44, 0x4a, 0x52, 0x48, 0x41, 0x40, 0x41, 0x40, 0x40, 0x43, 0x44, 0x4c, 0x4f, 0x47, 0x42, 0x49, 0x57, 0x60, 0x61, 0x63, 0x66, 0x61, 0x4f, 0x3b, 0x30, 0x30, 0x36, 0x35, 0x3c, 0x4d, 0x5e, 0x68, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6e, 0x68, 0x5d, 0x51, 0x4b, 0x56, 0x59, 0x58, 0x53, 0x4e, 0x4b, 0x4a, 0x48, 0x47, 0x4d, 0x5b, 0x5d, 0x4b, 0x3c, 0x3c, 0x3f, 0x3f, 0x40, 0x3f, 0x3b, 0x3a, 0x3d, 0x41, 0x43, 0x3d, 0x37, 0x30, 0x2f, 0x32, 0x35, 0x33, 0x31, 0x36, 0x3b, 0x41, 0x47, 0x4e, 0x55, 0x59, 0x59, 0x44, 0x49, 0x4d, 0x4d, 0x4b, 0x4d, 0x55, 0x5c, 0x64, 0x66, 0x67, 0x66, 0x68, 0x6b, 0x6c, 0x6b, 0x69, 0x72, 0x78, 0x76, 0x73, 0x75, 0x77, 0x76, 0x70, 0x64, 0x5f, 0x65, 0x6c, 0x6d, 0x6f, 0x73, 0x6f, 0x63, 0x5b, 0x5c, 0x5d, 0x5b, 0x5c, 0x60, 0x75, 0x7b, 0x7c, 0x76, 0x74, 0x75, 0x70, 0x68, 0x62, 0x64, 0x6f, 0x81, 0x8d, 0x89, 0x79, 0x6c, 0x5d, 0x5d, 0x60, 0x5f, 0x5b, 0x64, 0x76, 0x80, 0x6e, 0x69, 0x60, 0x56, 0x52, 0x55, 0x5d, 0x64, 0x67, 0x6e, 0x6f, 0x6a, 0x67, 0x6b, 0x6d, 0x6a, 0x6c, 0x64, 0x5b, 0x57, 0x5a, 0x60, 0x63, 0x63, 0x5e, 0x66, 0x74, 0x81, 0x8a, 0x8c, 0x8a, 0x87, 0x72, 0x70, 0x6e, 0x6d, 0x6f, 0x74, 0x78, 0x7b, 0x77, 0x6e, 0x63, 0x5a, 0x50, 0x49, 0x4b, 0x51, 0x5b, 0x5b, 0x5d, 0x61, 0x62, 0x60, 0x61, 0x63, 0x7e, 0x7e, 0x78, 0x71, 0x75, 0x7b, 0x75, 0x68, 0x66, 0x6d, 0x73, 0x6e, 0x6c, 0x5f, 0x4d, 0x56, 0x61, 0x61, 0x5f, 0x5e, 0x64, 0x6b, 0x6c, 0x68, 0x6e, 0x72, 0x77, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a, 0x7d, 0x7f, 0x81, 0x81, 0x81, 0x82, 0x86, 0x89, 0x8b, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8c, 0x8d, 0x8c, 0x8b, 0x8b, 0x8c, 0x8f, 0x91, 0x93, 0x8f, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x9a, 0x9d, 0x9d, 0x9a, 0x9c, 0x9c, 0x9d, 0x9d, 0x9f, 0xa1, 0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa4, 0xa5, 0xa8, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xac, 0xab, 0xab, 0xac, 0xad, 0xab, 0xaa, 0xaa, 0xaa, 0xab, 0xaa, 0xa9, 0xa9, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xa8, 0xa9, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa6, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa3, 0xa2, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9a, 0x98, 0x96, 0x95, 0x95, 0x94, 0x93, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x89, 0x89, 0x87, 0x85, 0x83, 0x81, 0x80, 0x7f, 0x7d, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x78, 0x76, 0x73, 0x71, 0x6e, 0x6c, 0x6a, 0x67, 0x64, 0x63, 0x5d, 0x57, 0x54, 0x54, 0x54, 0x53, 0x51, 0x63, 0x63, 0x5c, 0x58, 0x59, 0x56, 0x52, 0x54, 0x5b, 0x5f, 0x63, 0x66, 0x69, 0x6e, 0x76, 0x7d, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x74, 0x72, 0x76, 0x70, 0x6f, 0x6e, 0x69, 0x69, 0x6b, 0x67, 0x6b, 0x76, 0x84, 0x8d, 0x95, 0xa0, 0x9e, 0x8f, 0x68, 0x3b, 0x25, 0x1a, 0x1f, 0x49, 0x77, 0x94, 0x86, 0x75, 0x79, 0x86, 0x78, 0x5f, 0x50, 0x47, 0x4a, 0x4e, 0x4e, 0x52, 0x59, 0x59, 0x5a, 0x62, 0x5e, 0x5c, 0x5e, 0x60, 0x63, 0x68, 0x64, 0x56, 0x52, 0x52, 0x52, 0x52, 0x54, 0x59, 0x5f, 0x64, 0x69, 0x60, 0x51, 0x45, 0x42, 0x49, 0x54, 0x5d, 0x66, 0x5d, 0x4f, 0x43, 0x3b, 0x37, 0x35, 0x36, 0x37, 0x42, 0x47, 0x41, 0x3c, 0x3c, 0x3c, 0x39, 0x34, 0x29, 0x27, 0x30, 0x3a, 0x44, 0x43, 0x39, 0x30, 0x2c, 0x2a, 0x28, 0x24, 0x24, 0x2f, 0x3c, 0x45, 0x3f, 0x37, 0x30, 0x2b, 0x2b, 0x31, 0x39, 0x3f, 0x38, 0x32, 0x31, 0x35, 0x36, 0x33, 0x2e, 0x30, 0x37, 0x3c, 0x3b, 0x39, 0x37, 0x30, 0x28, 0x22, 0x1b, 0x24, 0x36, 0x3d, 0x3d, 0x3b, 0x36, 0x39, 0x3f, 0x40, 0x3d, 0x45, 0x51, 0x4d, 0x40, 0x31, 0x28, 0x29, 0x36, 0x44, 0x50, 0x50, 0x47, 0x39, 0x2d, 0x23, 0x23, 0x27, 0x2b, 0x32, 0x3a, 0x47, 0x50, 0x57, 0x56, 0x51, 0x4d, 0x4b, 0x4a, 0x48, 0x49, 0x45, 0x3d, 0x37, 0x37, 0x38, 0x38, 0x3d, 0x34, 0x31, 0x38, 0x3e, 0x3c, 0x37, 0x35, 0x36, 0x42, 0x51, 0x58, 0x50, 0x43, 0x3c, 0x3d, 0x42, 0x3e, 0x41, 0x49, 0x4a, 0x43, 0x41, 0x45, 0x43, 0x44, 0x43, 0x42, 0x47, 0x4e, 0x51, 0x50, 0x44, 0x49, 0x51, 0x54, 0x4d, 0x42, 0x3e, 0x41, 0x4c, 0x4a, 0x44, 0x3b, 0x36, 0x37, 0x3b, 0x3d, 0x3f, 0x3e, 0x3e, 0x3e, 0x3c, 0x3b, 0x42, 0x4a, 0x4f, 0x4a, 0x43, 0x3e, 0x3c, 0x3d, 0x40, 0x42, 0x43, 0x4c, 0x4e, 0x46, 0x41, 0x47, 0x52, 0x58, 0x5a, 0x5b, 0x5d, 0x5a, 0x4a, 0x37, 0x2e, 0x30, 0x34, 0x36, 0x3d, 0x49, 0x5a, 0x67, 0x68, 0x63, 0x5f, 0x65, 0x6b, 0x68, 0x5a, 0x4b, 0x43, 0x44, 0x57, 0x58, 0x55, 0x4e, 0x4a, 0x4c, 0x50, 0x52, 0x47, 0x54, 0x69, 0x6b, 0x52, 0x3c, 0x3b, 0x40, 0x42, 0x45, 0x45, 0x42, 0x42, 0x45, 0x47, 0x46, 0x3a, 0x34, 0x2d, 0x2b, 0x2f, 0x33, 0x35, 0x34, 0x37, 0x3a, 0x3d, 0x42, 0x4c, 0x58, 0x5d, 0x5d, 0x4b, 0x4d, 0x4e, 0x4e, 0x4e, 0x4f, 0x52, 0x54, 0x57, 0x5a, 0x5d, 0x61, 0x67, 0x6d, 0x6d, 0x69, 0x68, 0x6c, 0x6e, 0x6f, 0x77, 0x82, 0x85, 0x82, 0x63, 0x57, 0x4f, 0x53, 0x59, 0x5a, 0x5b, 0x5e, 0x61, 0x5d, 0x5a, 0x5c, 0x5e, 0x5e, 0x61, 0x65, 0x70, 0x82, 0x92, 0x95, 0x91, 0x88, 0x72, 0x5d, 0x5a, 0x5a, 0x5e, 0x65, 0x68, 0x63, 0x5c, 0x58, 0x5d, 0x5d, 0x60, 0x5f, 0x5b, 0x65, 0x78, 0x82, 0x75, 0x6b, 0x5d, 0x53, 0x50, 0x56, 0x62, 0x6c, 0x6d, 0x72, 0x74, 0x6f, 0x69, 0x68, 0x69, 0x68, 0x66, 0x5f, 0x57, 0x54, 0x57, 0x5c, 0x60, 0x63, 0x5e, 0x63, 0x6a, 0x71, 0x73, 0x70, 0x6b, 0x67, 0x73, 0x77, 0x7a, 0x7b, 0x7a, 0x7d, 0x83, 0x89, 0x8a, 0x7e, 0x71, 0x6a, 0x5f, 0x50, 0x46, 0x42, 0x40, 0x3e, 0x40, 0x4b, 0x57, 0x63, 0x6e, 0x76, 0x74, 0x74, 0x77, 0x7e, 0x84, 0x82, 0x78, 0x6e, 0x6a, 0x6c, 0x6e, 0x6c, 0x6f, 0x60, 0x4e, 0x5e, 0x61, 0x5e, 0x5d, 0x60, 0x66, 0x69, 0x69, 0x67, 0x6f, 0x73, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7e, 0x80, 0x80, 0x80, 0x81, 0x84, 0x87, 0x89, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8c, 0x8d, 0x8f, 0x91, 0x92, 0x8e, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x97, 0x9b, 0x9c, 0x9a, 0x9a, 0x9b, 0x9c, 0x9d, 0x9f, 0xa0, 0xa0, 0xa1, 0xa4, 0xa4, 0xa5, 0xa4, 0xa4, 0xa4, 0xa6, 0xa8, 0xaa, 0xaa, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xab, 0xac, 0xad, 0xad, 0xab, 0xaa, 0xa9, 0xa9, 0xab, 0xaa, 0xa8, 0xa8, 0xa9, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa6, 0xa6, 0xa5, 0xa5, 0xa5, 0xa6, 0xa3, 0xa4, 0xa5, 0xa5, 0xa4, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9a, 0x98, 0x96, 0x95, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x85, 0x83, 0x82, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x7d, 0x7e, 0x7f, 0x7d, 0x7b, 0x78, 0x77, 0x77, 0x74, 0x73, 0x71, 0x6f, 0x6d, 0x6a, 0x66, 0x63, 0x62, 0x5e, 0x58, 0x54, 0x53, 0x54, 0x54, 0x53, 0x74, 0x78, 0x77, 0x77, 0x7b, 0x78, 0x72, 0x73, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x77, 0x7c, 0x81, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x76, 0x77, 0x79, 0x77, 0x7c, 0x7e, 0x7a, 0x74, 0x76, 0x7f, 0x89, 0x92, 0x9a, 0x95, 0x85, 0x72, 0x51, 0x35, 0x21, 0x2b, 0x59, 0x82, 0x9b, 0x94, 0x7b, 0x69, 0x67, 0x5f, 0x4f, 0x45, 0x45, 0x4a, 0x51, 0x50, 0x4f, 0x55, 0x52, 0x4e, 0x54, 0x54, 0x54, 0x58, 0x5a, 0x5d, 0x6b, 0x75, 0x73, 0x5c, 0x54, 0x4d, 0x4d, 0x53, 0x5b, 0x5e, 0x5f, 0x61, 0x5f, 0x5b, 0x55, 0x4f, 0x4f, 0x55, 0x5b, 0x6b, 0x66, 0x5d, 0x51, 0x46, 0x3c, 0x33, 0x2c, 0x26, 0x31, 0x3d, 0x42, 0x42, 0x42, 0x41, 0x3f, 0x38, 0x2d, 0x2b, 0x32, 0x3b, 0x45, 0x45, 0x3c, 0x32, 0x2d, 0x2a, 0x29, 0x26, 0x24, 0x2a, 0x33, 0x3f, 0x3c, 0x38, 0x33, 0x2d, 0x2a, 0x30, 0x39, 0x45, 0x3f, 0x34, 0x2e, 0x34, 0x3c, 0x3b, 0x33, 0x2e, 0x35, 0x39, 0x39, 0x39, 0x38, 0x32, 0x2a, 0x21, 0x17, 0x1e, 0x30, 0x39, 0x3b, 0x3b, 0x38, 0x3e, 0x3f, 0x3d, 0x3d, 0x46, 0x4f, 0x4a, 0x3c, 0x35, 0x2b, 0x2c, 0x39, 0x49, 0x53, 0x4f, 0x42, 0x2b, 0x22, 0x1b, 0x1d, 0x24, 0x2b, 0x34, 0x3c, 0x47, 0x50, 0x58, 0x58, 0x53, 0x4e, 0x4a, 0x47, 0x44, 0x44, 0x3f, 0x39, 0x37, 0x3b, 0x3f, 0x3f, 0x41, 0x35, 0x2d, 0x33, 0x3f, 0x48, 0x4b, 0x4b, 0x47, 0x47, 0x46, 0x43, 0x3c, 0x36, 0x3a, 0x42, 0x42, 0x42, 0x4f, 0x60, 0x60, 0x4f, 0x43, 0x43, 0x43, 0x44, 0x42, 0x41, 0x48, 0x53, 0x59, 0x5a, 0x45, 0x3f, 0x3e, 0x44, 0x45, 0x44, 0x4b, 0x57, 0x5b, 0x5a, 0x51, 0x43, 0x3b, 0x3b, 0x3b, 0x38, 0x3e, 0x3d, 0x3e, 0x3d, 0x38, 0x33, 0x36, 0x3c, 0x3c, 0x3e, 0x3c, 0x38, 0x36, 0x39, 0x3b, 0x3b, 0x38, 0x41, 0x45, 0x3f, 0x3c, 0x41, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x48, 0x3e, 0x32, 0x32, 0x39, 0x35, 0x39, 0x3c, 0x40, 0x4c, 0x59, 0x5a, 0x53, 0x5d, 0x66, 0x6d, 0x65, 0x52, 0x44, 0x46, 0x4f, 0x56, 0x59, 0x59, 0x55, 0x51, 0x51, 0x53, 0x54, 0x57, 0x4e, 0x50, 0x55, 0x50, 0x4a, 0x48, 0x46, 0x42, 0x48, 0x4d, 0x4e, 0x4d, 0x4d, 0x4a, 0x45, 0x3b, 0x36, 0x30, 0x2d, 0x30, 0x35, 0x3a, 0x3d, 0x3e, 0x3c, 0x39, 0x39, 0x40, 0x49, 0x4d, 0x4b, 0x4b, 0x49, 0x48, 0x49, 0x4b, 0x4c, 0x4a, 0x48, 0x4d, 0x50, 0x54, 0x59, 0x62, 0x69, 0x67, 0x61, 0x65, 0x62, 0x5c, 0x5b, 0x68, 0x7a, 0x81, 0x7e, 0x68, 0x5c, 0x51, 0x4f, 0x54, 0x58, 0x58, 0x57, 0x58, 0x5a, 0x5d, 0x61, 0x63, 0x64, 0x66, 0x68, 0x6c, 0x77, 0x7d, 0x7b, 0x7a, 0x79, 0x6e, 0x5e, 0x50, 0x4e, 0x4c, 0x48, 0x42, 0x3f, 0x42, 0x48, 0x4b, 0x49, 0x4e, 0x51, 0x52, 0x5f, 0x73, 0x7c, 0x76, 0x6a, 0x5b, 0x50, 0x4d, 0x54, 0x60, 0x6a, 0x72, 0x76, 0x79, 0x75, 0x6e, 0x6a, 0x6b, 0x6d, 0x65, 0x5f, 0x59, 0x56, 0x56, 0x56, 0x57, 0x58, 0x62, 0x65, 0x69, 0x6f, 0x73, 0x75, 0x75, 0x74, 0x7b, 0x84, 0x8b, 0x89, 0x81, 0x7e, 0x83, 0x8a, 0x8a, 0x7e, 0x71, 0x66, 0x57, 0x44, 0x37, 0x34, 0x33, 0x2d, 0x2d, 0x39, 0x48, 0x54, 0x5e, 0x65, 0x6d, 0x62, 0x61, 0x6e, 0x75, 0x70, 0x6d, 0x6f, 0x6e, 0x6c, 0x6d, 0x70, 0x75, 0x5e, 0x47, 0x59, 0x5d, 0x5a, 0x5a, 0x60, 0x66, 0x68, 0x67, 0x68, 0x70, 0x73, 0x77, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7d, 0x7f, 0x80, 0x7f, 0x80, 0x83, 0x86, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x89, 0x8a, 0x89, 0x8a, 0x8c, 0x8e, 0x8f, 0x90, 0x91, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x95, 0x95, 0x95, 0x94, 0x96, 0x9a, 0x9b, 0x99, 0x98, 0x9a, 0x9c, 0x9e, 0x9f, 0x9e, 0x9d, 0x9d, 0xa2, 0xa3, 0xa4, 0xa5, 0xa4, 0xa4, 0xa4, 0xa5, 0xa7, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xa9, 0xaa, 0xac, 0xac, 0xab, 0xa9, 0xa8, 0xa8, 0xab, 0xa9, 0xa7, 0xa7, 0xa8, 0xa9, 0xa8, 0xa6, 0xa3, 0xa4, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa6, 0xa5, 0xa5, 0xa4, 0xa5, 0xa5, 0xa6, 0xa1, 0xa2, 0xa2, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0xa0, 0xa0, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9c, 0x9a, 0x98, 0x97, 0x96, 0x95, 0x93, 0x91, 0x90, 0x90, 0x8e, 0x8d, 0x8b, 0x89, 0x88, 0x88, 0x83, 0x82, 0x82, 0x82, 0x82, 0x80, 0x7d, 0x7b, 0x7d, 0x7f, 0x7f, 0x7e, 0x7a, 0x77, 0x76, 0x77, 0x73, 0x72, 0x71, 0x6f, 0x6d, 0x6a, 0x65, 0x62, 0x63, 0x5f, 0x59, 0x53, 0x51, 0x52, 0x52, 0x52, 0x6c, 0x72, 0x74, 0x78, 0x7e, 0x7c, 0x77, 0x78, 0x74, 0x74, 0x75, 0x77, 0x79, 0x79, 0x78, 0x76, 0x73, 0x77, 0x7b, 0x7c, 0x7b, 0x7b, 0x7e, 0x81, 0x85, 0x7f, 0x7d, 0x7e, 0x7e, 0x82, 0x83, 0x7d, 0x82, 0x81, 0x86, 0x89, 0x87, 0x85, 0x80, 0x75, 0x75, 0x6e, 0x67, 0x58, 0x5d, 0x71, 0x74, 0x73, 0x65, 0x5b, 0x51, 0x51, 0x53, 0x49, 0x41, 0x44, 0x45, 0x51, 0x4f, 0x48, 0x4b, 0x45, 0x3a, 0x39, 0x37, 0x41, 0x52, 0x5d, 0x64, 0x71, 0x7a, 0x77, 0x5e, 0x53, 0x49, 0x4c, 0x57, 0x60, 0x5f, 0x5a, 0x4c, 0x54, 0x5e, 0x63, 0x61, 0x5c, 0x59, 0x59, 0x63, 0x63, 0x5f, 0x57, 0x4d, 0x43, 0x37, 0x2e, 0x2b, 0x34, 0x40, 0x48, 0x49, 0x44, 0x41, 0x3f, 0x3b, 0x30, 0x2c, 0x32, 0x3a, 0x44, 0x45, 0x3e, 0x36, 0x30, 0x2c, 0x2b, 0x28, 0x24, 0x26, 0x2b, 0x3b, 0x3a, 0x39, 0x36, 0x2f, 0x2c, 0x32, 0x3c, 0x4a, 0x42, 0x33, 0x2a, 0x31, 0x3f, 0x3f, 0x34, 0x2f, 0x36, 0x3b, 0x3a, 0x39, 0x39, 0x36, 0x30, 0x24, 0x18, 0x1c, 0x2e, 0x39, 0x3d, 0x3f, 0x3e, 0x46, 0x42, 0x3d, 0x3d, 0x47, 0x50, 0x4a, 0x3d, 0x33, 0x28, 0x29, 0x37, 0x47, 0x4f, 0x47, 0x36, 0x25, 0x1e, 0x1b, 0x20, 0x29, 0x32, 0x3c, 0x44, 0x49, 0x51, 0x59, 0x5a, 0x56, 0x52, 0x4d, 0x49, 0x44, 0x44, 0x43, 0x41, 0x3e, 0x42, 0x4f, 0x5b, 0x55, 0x3b, 0x27, 0x2b, 0x3d, 0x4b, 0x4c, 0x49, 0x45, 0x3e, 0x38, 0x37, 0x38, 0x38, 0x3a, 0x3b, 0x3d, 0x40, 0x4f, 0x5f, 0x5c, 0x48, 0x3c, 0x3e, 0x3e, 0x3d, 0x3e, 0x3d, 0x40, 0x4f, 0x5b, 0x5a, 0x4c, 0x42, 0x3e, 0x46, 0x50, 0x54, 0x56, 0x5a, 0x5e, 0x54, 0x49, 0x40, 0x39, 0x34, 0x35, 0x39, 0x41, 0x3e, 0x40, 0x44, 0x42, 0x3b, 0x38, 0x3a, 0x3a, 0x39, 0x38, 0x37, 0x34, 0x33, 0x37, 0x3c, 0x40, 0x40, 0x41, 0x41, 0x3c, 0x39, 0x40, 0x4b, 0x52, 0x4a, 0x44, 0x42, 0x3d, 0x36, 0x34, 0x36, 0x34, 0x35, 0x38, 0x3d, 0x46, 0x50, 0x5a, 0x60, 0x60, 0x60, 0x58, 0x4c, 0x46, 0x4a, 0x4c, 0x49, 0x4f, 0x50, 0x53, 0x58, 0x5c, 0x5c, 0x57, 0x52, 0x47, 0x4c, 0x51, 0x52, 0x51, 0x51, 0x50, 0x4e, 0x4a, 0x4b, 0x4e, 0x50, 0x4f, 0x49, 0x3f, 0x38, 0x36, 0x33, 0x2f, 0x2f, 0x32, 0x35, 0x38, 0x39, 0x3c, 0x37, 0x35, 0x36, 0x38, 0x3b, 0x42, 0x4b, 0x48, 0x47, 0x49, 0x4e, 0x50, 0x4f, 0x51, 0x56, 0x5b, 0x5e, 0x60, 0x61, 0x67, 0x6c, 0x65, 0x5a, 0x62, 0x57, 0x4c, 0x4c, 0x55, 0x61, 0x6c, 0x74, 0x69, 0x59, 0x4e, 0x4f, 0x51, 0x4f, 0x52, 0x59, 0x58, 0x5b, 0x5c, 0x5c, 0x60, 0x65, 0x65, 0x61, 0x6a, 0x6e, 0x6e, 0x67, 0x61, 0x5f, 0x5f, 0x5e, 0x5e, 0x51, 0x46, 0x44, 0x42, 0x3e, 0x3d, 0x3f, 0x3a, 0x3b, 0x3d, 0x40, 0x46, 0x52, 0x6a, 0x7e, 0x8a, 0x70, 0x57, 0x51, 0x57, 0x5c, 0x60, 0x65, 0x65, 0x70, 0x72, 0x72, 0x6d, 0x74, 0x82, 0x7c, 0x65, 0x5b, 0x5d, 0x65, 0x62, 0x5c, 0x5b, 0x5c, 0x63, 0x64, 0x69, 0x70, 0x75, 0x6f, 0x60, 0x52, 0x5e, 0x6a, 0x78, 0x7f, 0x82, 0x84, 0x86, 0x86, 0x81, 0x7c, 0x6e, 0x5c, 0x51, 0x4e, 0x4f, 0x4d, 0x49, 0x4d, 0x53, 0x5a, 0x60, 0x63, 0x64, 0x64, 0x63, 0x62, 0x66, 0x6d, 0x6d, 0x67, 0x67, 0x6d, 0x6c, 0x6d, 0x77, 0x72, 0x6f, 0x50, 0x4f, 0x59, 0x5d, 0x5c, 0x5d, 0x60, 0x62, 0x62, 0x64, 0x67, 0x6e, 0x74, 0x79, 0x7a, 0x78, 0x78, 0x79, 0x78, 0x7c, 0x7e, 0x7e, 0x7c, 0x7c, 0x80, 0x82, 0x83, 0x83, 0x85, 0x88, 0x8a, 0x89, 0x88, 0x87, 0x86, 0x86, 0x87, 0x8a, 0x8c, 0x8d, 0x8d, 0x8d, 0x8c, 0x8e, 0x90, 0x91, 0x91, 0x91, 0x91, 0x93, 0x94, 0x94, 0x97, 0x97, 0x95, 0x96, 0x99, 0x9a, 0x97, 0x98, 0x99, 0x9a, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9e, 0xa0, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4, 0xa6, 0xa6, 0xa7, 0xa7, 0xa8, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xa9, 0xa7, 0xa5, 0xa4, 0xa4, 0xa5, 0xa8, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa7, 0xa7, 0xa6, 0xa6, 0xa6, 0xa5, 0xa5, 0xa5, 0xa3, 0xa3, 0xa3, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1, 0xa0, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0x99, 0x98, 0x97, 0x97, 0x97, 0x95, 0x93, 0x91, 0x8e, 0x90, 0x90, 0x8e, 0x8d, 0x8c, 0x89, 0x85, 0x87, 0x85, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x75, 0x75, 0x73, 0x73, 0x71, 0x6e, 0x6a, 0x67, 0x64, 0x63, 0x5f, 0x5f, 0x5c, 0x56, 0x53, 0x52, 0x50, 0x4e, 0x62, 0x6c, 0x6e, 0x74, 0x72, 0x6d, 0x73, 0x72, 0x6e, 0x70, 0x70, 0x6c, 0x69, 0x67, 0x67, 0x67, 0x64, 0x6a, 0x70, 0x74, 0x75, 0x78, 0x7d, 0x81, 0x7b, 0x7c, 0x7e, 0x80, 0x83, 0x86, 0x87, 0x88, 0x88, 0x83, 0x81, 0x84, 0x86, 0x85, 0x84, 0x86, 0x7f, 0x80, 0x7d, 0x77, 0x73, 0x73, 0x72, 0x6e, 0x61, 0x68, 0x68, 0x5d, 0x4e, 0x47, 0x49, 0x4d, 0x49, 0x4a, 0x4e, 0x54, 0x54, 0x4c, 0x42, 0x3c, 0x38, 0x48, 0x5c, 0x69, 0x70, 0x73, 0x75, 0x77, 0x60, 0x5e, 0x5d, 0x5f, 0x5f, 0x5d, 0x5c, 0x5c, 0x4f, 0x4f, 0x5b, 0x64, 0x66, 0x6c, 0x67, 0x53, 0x4d, 0x4f, 0x58, 0x5e, 0x56, 0x46, 0x3e, 0x40, 0x3e, 0x42, 0x47, 0x4c, 0x4d, 0x48, 0x41, 0x3b, 0x38, 0x32, 0x31, 0x34, 0x39, 0x43, 0x45, 0x3c, 0x3e, 0x38, 0x31, 0x2a, 0x25, 0x23, 0x28, 0x2e, 0x38, 0x41, 0x43, 0x3e, 0x38, 0x30, 0x2f, 0x37, 0x45, 0x41, 0x30, 0x2e, 0x36, 0x3c, 0x3d, 0x2f, 0x2b, 0x30, 0x38, 0x39, 0x36, 0x3b, 0x3e, 0x38, 0x30, 0x25, 0x1e, 0x2b, 0x3f, 0x42, 0x3f, 0x43, 0x46, 0x49, 0x3a, 0x37, 0x4e, 0x51, 0x3f, 0x38, 0x21, 0x25, 0x31, 0x3b, 0x3d, 0x3e, 0x39, 0x2e, 0x28, 0x21, 0x1e, 0x23, 0x2f, 0x38, 0x3c, 0x3d, 0x41, 0x48, 0x51, 0x58, 0x5a, 0x59, 0x57, 0x57, 0x47, 0x46, 0x47, 0x47, 0x46, 0x4a, 0x55, 0x5f, 0x59, 0x44, 0x2f, 0x2e, 0x3c, 0x47, 0x45, 0x3f, 0x40, 0x3f, 0x3e, 0x3d, 0x3a, 0x37, 0x39, 0x3e, 0x3f, 0x3e, 0x44, 0x4b, 0x47, 0x3c, 0x39, 0x3d, 0x3e, 0x3c, 0x41, 0x44, 0x42, 0x45, 0x4c, 0x4d, 0x4c, 0x44, 0x3e, 0x41, 0x46, 0x4b, 0x51, 0x56, 0x58, 0x50, 0x43, 0x37, 0x30, 0x30, 0x34, 0x37, 0x3c, 0x46, 0x4d, 0x49, 0x41, 0x3c, 0x3f, 0x43, 0x3d, 0x37, 0x31, 0x31, 0x32, 0x35, 0x39, 0x3d, 0x45, 0x47, 0x46, 0x41, 0x3f, 0x41, 0x43, 0x43, 0x44, 0x3f, 0x3d, 0x3f, 0x3c, 0x35, 0x32, 0x33, 0x36, 0x36, 0x37, 0x39, 0x3f, 0x49, 0x55, 0x5d, 0x5e, 0x5e, 0x59, 0x53, 0x53, 0x57, 0x56, 0x50, 0x4c, 0x4c, 0x4e, 0x51, 0x54, 0x53, 0x4f, 0x4b, 0x47, 0x4c, 0x51, 0x54, 0x56, 0x55, 0x4e, 0x47, 0x46, 0x4a, 0x51, 0x58, 0x59, 0x50, 0x40, 0x34, 0x33, 0x33, 0x33, 0x35, 0x38, 0x3a, 0x3a, 0x39, 0x3c, 0x39, 0x38, 0x3c, 0x42, 0x46, 0x49, 0x4b, 0x49, 0x47, 0x47, 0x4b, 0x4d, 0x4d, 0x4f, 0x52, 0x52, 0x55, 0x5c, 0x64, 0x67, 0x65, 0x61, 0x5f, 0x58, 0x56, 0x53, 0x50, 0x50, 0x56, 0x65, 0x73, 0x6a, 0x5e, 0x51, 0x4d, 0x4d, 0x53, 0x62, 0x70, 0x76, 0x6c, 0x66, 0x66, 0x60, 0x55, 0x52, 0x58, 0x62, 0x6b, 0x72, 0x6e, 0x66, 0x61, 0x5f, 0x5d, 0x57, 0x55, 0x50, 0x48, 0x41, 0x3e, 0x3e, 0x3e, 0x40, 0x3e, 0x3b, 0x37, 0x39, 0x47, 0x63, 0x7b, 0x79, 0x68, 0x55, 0x51, 0x56, 0x5e, 0x64, 0x68, 0x6b, 0x70, 0x77, 0x87, 0x8c, 0x8c, 0x8d, 0x7f, 0x77, 0x71, 0x79, 0x83, 0x7c, 0x6d, 0x63, 0x5c, 0x61, 0x6b, 0x72, 0x73, 0x77, 0x75, 0x61, 0x49, 0x42, 0x50, 0x62, 0x6f, 0x74, 0x76, 0x79, 0x7d, 0x74, 0x72, 0x6c, 0x62, 0x5d, 0x5f, 0x63, 0x63, 0x61, 0x62, 0x63, 0x65, 0x67, 0x69, 0x6b, 0x6d, 0x70, 0x72, 0x76, 0x76, 0x6e, 0x66, 0x66, 0x6b, 0x68, 0x6a, 0x76, 0x72, 0x6c, 0x4f, 0x4f, 0x59, 0x5d, 0x5b, 0x5a, 0x5d, 0x5f, 0x60, 0x63, 0x67, 0x6d, 0x73, 0x78, 0x79, 0x78, 0x79, 0x7a, 0x79, 0x7b, 0x7d, 0x7d, 0x7b, 0x7c, 0x7f, 0x82, 0x82, 0x82, 0x84, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85, 0x86, 0x88, 0x8a, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b, 0x8d, 0x8e, 0x90, 0x90, 0x8f, 0x8f, 0x91, 0x92, 0x93, 0x95, 0x96, 0x94, 0x95, 0x97, 0x98, 0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9a, 0x9c, 0x9d, 0x9e, 0xa0, 0xa1, 0xa2, 0xa3, 0xa3, 0xa3, 0xa4, 0xa4, 0xa4, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa5, 0xa6, 0xa7, 0xa7, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xa8, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa5, 0xa5, 0xa5, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa2, 0xa2, 0xa2, 0xa1, 0xa0, 0x9f, 0x9f, 0x9e, 0x9d, 0x9d, 0x9c, 0x9c, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96, 0x93, 0x92, 0x8f, 0x8f, 0x8f, 0x8d, 0x8c, 0x8b, 0x88, 0x83, 0x86, 0x84, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x72, 0x72, 0x71, 0x6e, 0x6a, 0x67, 0x65, 0x63, 0x60, 0x5f, 0x5c, 0x56, 0x52, 0x52, 0x50, 0x4e, 0x52, 0x5a, 0x58, 0x59, 0x58, 0x57, 0x60, 0x5f, 0x62, 0x65, 0x69, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x66, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x70, 0x72, 0x7a, 0x7a, 0x7b, 0x7d, 0x80, 0x83, 0x84, 0x85, 0x83, 0x82, 0x84, 0x88, 0x87, 0x83, 0x82, 0x84, 0x83, 0x85, 0x84, 0x80, 0x7f, 0x81, 0x81, 0x80, 0x83, 0x87, 0x80, 0x69, 0x4d, 0x3e, 0x3d, 0x42, 0x42, 0x45, 0x4b, 0x54, 0x57, 0x55, 0x51, 0x50, 0x4f, 0x5c, 0x65, 0x65, 0x65, 0x69, 0x6a, 0x65, 0x5f, 0x61, 0x64, 0x67, 0x68, 0x65, 0x5d, 0x56, 0x58, 0x56, 0x59, 0x5a, 0x58, 0x5e, 0x5d, 0x4e, 0x48, 0x4a, 0x54, 0x60, 0x60, 0x55, 0x4b, 0x49, 0x4f, 0x52, 0x55, 0x52, 0x4b, 0x43, 0x3d, 0x3b, 0x3c, 0x35, 0x31, 0x30, 0x34, 0x40, 0x46, 0x40, 0x3e, 0x38, 0x32, 0x2e, 0x2b, 0x2a, 0x2b, 0x2e, 0x38, 0x40, 0x42, 0x3e, 0x38, 0x30, 0x2f, 0x38, 0x4a, 0x46, 0x34, 0x30, 0x36, 0x3d, 0x43, 0x39, 0x2e, 0x30, 0x36, 0x38, 0x35, 0x39, 0x3e, 0x3b, 0x35, 0x2a, 0x21, 0x2e, 0x42, 0x47, 0x44, 0x48, 0x45, 0x46, 0x3c, 0x40, 0x57, 0x53, 0x39, 0x2b, 0x22, 0x23, 0x2e, 0x3b, 0x43, 0x4a, 0x47, 0x3a, 0x21, 0x1d, 0x1c, 0x22, 0x2c, 0x35, 0x3b, 0x3d, 0x48, 0x4d, 0x53, 0x57, 0x5a, 0x5b, 0x57, 0x51, 0x45, 0x44, 0x44, 0x45, 0x44, 0x45, 0x4a, 0x50, 0x4d, 0x40, 0x30, 0x2b, 0x36, 0x43, 0x42, 0x3a, 0x3d, 0x40, 0x45, 0x45, 0x3f, 0x3a, 0x3c, 0x41, 0x40, 0x3e, 0x3e, 0x3e, 0x3c, 0x3c, 0x40, 0x45, 0x45, 0x43, 0x4b, 0x52, 0x4b, 0x42, 0x42, 0x44, 0x41, 0x3f, 0x3d, 0x3d, 0x3f, 0x41, 0x42, 0x42, 0x41, 0x43, 0x40, 0x38, 0x35, 0x35, 0x33, 0x2f, 0x3b, 0x4a, 0x52, 0x4b, 0x42, 0x41, 0x44, 0x45, 0x42, 0x39, 0x32, 0x34, 0x3a, 0x3e, 0x3f, 0x3f, 0x3f, 0x44, 0x42, 0x3c, 0x3f, 0x49, 0x48, 0x40, 0x43, 0x41, 0x42, 0x45, 0x42, 0x39, 0x34, 0x34, 0x37, 0x38, 0x39, 0x39, 0x3a, 0x40, 0x49, 0x51, 0x59, 0x59, 0x56, 0x55, 0x59, 0x5c, 0x56, 0x4d, 0x4c, 0x4b, 0x4a, 0x4b, 0x4c, 0x4c, 0x49, 0x46, 0x4b, 0x4c, 0x4e, 0x51, 0x56, 0x57, 0x50, 0x48, 0x48, 0x4b, 0x53, 0x5c, 0x5e, 0x55, 0x43, 0x35, 0x33, 0x33, 0x34, 0x35, 0x38, 0x3a, 0x3b, 0x3b, 0x3b, 0x3b, 0x3e, 0x46, 0x52, 0x5b, 0x5c, 0x59, 0x52, 0x50, 0x51, 0x55, 0x57, 0x56, 0x55, 0x54, 0x52, 0x50, 0x53, 0x59, 0x58, 0x56, 0x5d, 0x68, 0x6b, 0x63, 0x5a, 0x58, 0x59, 0x5d, 0x63, 0x67, 0x64, 0x62, 0x5e, 0x58, 0x57, 0x5b, 0x65, 0x6d, 0x71, 0x6a, 0x68, 0x6b, 0x63, 0x51, 0x47, 0x47, 0x59, 0x64, 0x6e, 0x6d, 0x66, 0x60, 0x5e, 0x5e, 0x63, 0x6a, 0x67, 0x57, 0x49, 0x45, 0x45, 0x44, 0x47, 0x4a, 0x4b, 0x47, 0x41, 0x41, 0x4d, 0x5b, 0x65, 0x64, 0x61, 0x5f, 0x64, 0x6c, 0x71, 0x73, 0x6d, 0x69, 0x6d, 0x86, 0x95, 0x97, 0x98, 0x8b, 0x7a, 0x72, 0x75, 0x7c, 0x76, 0x6c, 0x66, 0x61, 0x61, 0x6e, 0x72, 0x6e, 0x79, 0x8c, 0x8a, 0x79, 0x55, 0x50, 0x53, 0x63, 0x74, 0x7a, 0x76, 0x73, 0x70, 0x6e, 0x68, 0x5d, 0x54, 0x50, 0x4f, 0x4f, 0x48, 0x47, 0x45, 0x45, 0x47, 0x4c, 0x51, 0x54, 0x5e, 0x64, 0x69, 0x6b, 0x6b, 0x6a, 0x68, 0x65, 0x63, 0x68, 0x75, 0x72, 0x66, 0x4e, 0x50, 0x5a, 0x5d, 0x5b, 0x5a, 0x5c, 0x5e, 0x60, 0x64, 0x69, 0x6b, 0x71, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x81, 0x81, 0x80, 0x82, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x86, 0x87, 0x89, 0x8b, 0x8c, 0x8c, 0x8b, 0x8b, 0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8e, 0x8f, 0x91, 0x93, 0x93, 0x92, 0x93, 0x95, 0x95, 0x94, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0xa0, 0xa1, 0xa2, 0xa1, 0xa1, 0xa1, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0xa2, 0xa4, 0xa5, 0xa5, 0xa5, 0xa4, 0xa5, 0xa6, 0xa6, 0xa6, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa6, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x9b, 0x99, 0x98, 0x98, 0x98, 0x96, 0x94, 0x93, 0x90, 0x8f, 0x8d, 0x8b, 0x8b, 0x8b, 0x87, 0x81, 0x84, 0x82, 0x81, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x71, 0x71, 0x6f, 0x6d, 0x6b, 0x68, 0x65, 0x63, 0x60, 0x5f, 0x5b, 0x55, 0x51, 0x51, 0x50, 0x4f, 0x54, 0x5d, 0x57, 0x50, 0x4b, 0x4c, 0x55, 0x52, 0x53, 0x57, 0x5d, 0x62, 0x64, 0x64, 0x64, 0x65, 0x64, 0x64, 0x65, 0x67, 0x69, 0x69, 0x66, 0x63, 0x6c, 0x6b, 0x6b, 0x6d, 0x70, 0x72, 0x74, 0x74, 0x71, 0x77, 0x7f, 0x84, 0x83, 0x80, 0x80, 0x83, 0x82, 0x84, 0x83, 0x80, 0x7e, 0x80, 0x82, 0x82, 0x78, 0x7c, 0x74, 0x5a, 0x3d, 0x31, 0x37, 0x41, 0x46, 0x45, 0x47, 0x4b, 0x4d, 0x4f, 0x53, 0x58, 0x57, 0x5d, 0x5b, 0x51, 0x52, 0x5d, 0x62, 0x5d, 0x57, 0x5e, 0x65, 0x69, 0x6c, 0x69, 0x5e, 0x51, 0x57, 0x53, 0x51, 0x4e, 0x4a, 0x50, 0x52, 0x4a, 0x42, 0x3c, 0x3b, 0x44, 0x4d, 0x4e, 0x4d, 0x4d, 0x58, 0x5b, 0x5c, 0x54, 0x47, 0x3e, 0x3d, 0x3f, 0x39, 0x33, 0x30, 0x2d, 0x30, 0x3d, 0x44, 0x3f, 0x3b, 0x38, 0x35, 0x2f, 0x27, 0x24, 0x28, 0x2f, 0x3a, 0x42, 0x44, 0x41, 0x3c, 0x32, 0x32, 0x3b, 0x48, 0x44, 0x34, 0x30, 0x34, 0x3b, 0x42, 0x3b, 0x33, 0x31, 0x37, 0x3a, 0x35, 0x36, 0x3c, 0x3e, 0x38, 0x2c, 0x24, 0x30, 0x44, 0x49, 0x43, 0x44, 0x43, 0x45, 0x41, 0x4a, 0x5a, 0x50, 0x35, 0x29, 0x2b, 0x29, 0x30, 0x3e, 0x4a, 0x52, 0x4d, 0x3d, 0x24, 0x20, 0x1e, 0x23, 0x29, 0x2d, 0x30, 0x32, 0x40, 0x47, 0x4e, 0x53, 0x5c, 0x64, 0x61, 0x57, 0x47, 0x46, 0x46, 0x48, 0x47, 0x46, 0x46, 0x49, 0x46, 0x42, 0x37, 0x2e, 0x36, 0x46, 0x48, 0x40, 0x3f, 0x3f, 0x42, 0x45, 0x44, 0x41, 0x40, 0x41, 0x41, 0x43, 0x42, 0x3e, 0x3e, 0x41, 0x45, 0x46, 0x48, 0x46, 0x4e, 0x54, 0x4d, 0x46, 0x43, 0x40, 0x3d, 0x3b, 0x39, 0x3a, 0x3d, 0x3f, 0x3d, 0x39, 0x35, 0x3c, 0x3f, 0x3c, 0x3b, 0x3e, 0x3a, 0x31, 0x38, 0x41, 0x47, 0x46, 0x43, 0x42, 0x40, 0x3d, 0x3f, 0x38, 0x36, 0x3c, 0x45, 0x48, 0x47, 0x44, 0x3f, 0x43, 0x42, 0x41, 0x48, 0x55, 0x57, 0x52, 0x47, 0x45, 0x46, 0x48, 0x44, 0x3c, 0x38, 0x39, 0x36, 0x3a, 0x3d, 0x3d, 0x3a, 0x3a, 0x3d, 0x41, 0x4b, 0x4d, 0x4e, 0x50, 0x55, 0x57, 0x52, 0x4a, 0x4f, 0x4c, 0x49, 0x47, 0x47, 0x48, 0x48, 0x47, 0x46, 0x45, 0x44, 0x46, 0x4d, 0x55, 0x57, 0x56, 0x51, 0x4f, 0x50, 0x55, 0x58, 0x52, 0x45, 0x3a, 0x35, 0x33, 0x31, 0x30, 0x32, 0x36, 0x3a, 0x3d, 0x3e, 0x41, 0x45, 0x4b, 0x57, 0x62, 0x63, 0x5f, 0x5c, 0x5d, 0x60, 0x67, 0x6d, 0x6f, 0x6e, 0x6b, 0x66, 0x63, 0x62, 0x60, 0x5b, 0x59, 0x5f, 0x69, 0x73, 0x67, 0x5b, 0x59, 0x5c, 0x5e, 0x5f, 0x5f, 0x5d, 0x5e, 0x5e, 0x5e, 0x64, 0x6a, 0x69, 0x63, 0x5d, 0x63, 0x69, 0x6d, 0x74, 0x77, 0x71, 0x68, 0x61, 0x67, 0x6c, 0x6c, 0x69, 0x67, 0x69, 0x6b, 0x66, 0x6a, 0x66, 0x57, 0x49, 0x45, 0x49, 0x4c, 0x5e, 0x64, 0x6a, 0x6a, 0x62, 0x58, 0x54, 0x54, 0x64, 0x74, 0x80, 0x7f, 0x7d, 0x81, 0x84, 0x84, 0x74, 0x6d, 0x68, 0x75, 0x81, 0x8c, 0x9b, 0x97, 0x75, 0x66, 0x61, 0x64, 0x63, 0x62, 0x61, 0x5d, 0x5e, 0x68, 0x68, 0x64, 0x73, 0x91, 0xa3, 0xa2, 0x7f, 0x69, 0x5c, 0x65, 0x75, 0x7a, 0x76, 0x73, 0x73, 0x72, 0x6c, 0x62, 0x57, 0x51, 0x50, 0x51, 0x57, 0x56, 0x55, 0x56, 0x59, 0x5e, 0x63, 0x66, 0x62, 0x69, 0x70, 0x78, 0x83, 0x8b, 0x84, 0x76, 0x62, 0x68, 0x74, 0x71, 0x5e, 0x4d, 0x53, 0x5d, 0x5f, 0x5d, 0x5d, 0x5f, 0x62, 0x63, 0x67, 0x6a, 0x6c, 0x71, 0x75, 0x76, 0x77, 0x79, 0x79, 0x78, 0x76, 0x79, 0x79, 0x78, 0x78, 0x7c, 0x7f, 0x7f, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x81, 0x82, 0x82, 0x85, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8c, 0x8b, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x9a, 0x9a, 0x9a, 0x9b, 0x9c, 0x9d, 0x9f, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0xa2, 0xa2, 0xa2, 0xa2, 0xa0, 0xa1, 0xa3, 0xa4, 0xa3, 0xa3, 0xa3, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9f, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9a, 0x9b, 0x9a, 0x98, 0x98, 0x98, 0x97, 0x95, 0x94, 0x92, 0x90, 0x8c, 0x8a, 0x8c, 0x8c, 0x87, 0x80, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x7b, 0x7a, 0x78, 0x76, 0x74, 0x74, 0x74, 0x74, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x68, 0x64, 0x62, 0x60, 0x5f, 0x5a, 0x53, 0x50, 0x50, 0x50, 0x4f, 0x54, 0x61, 0x59, 0x4b, 0x3f, 0x3d, 0x46, 0x42, 0x4b, 0x4c, 0x51, 0x56, 0x58, 0x57, 0x57, 0x58, 0x5a, 0x5d, 0x61, 0x65, 0x66, 0x63, 0x5e, 0x5b, 0x5a, 0x58, 0x56, 0x57, 0x5b, 0x5e, 0x5f, 0x60, 0x62, 0x6a, 0x74, 0x77, 0x74, 0x71, 0x72, 0x76, 0x78, 0x79, 0x77, 0x73, 0x6f, 0x6e, 0x6f, 0x70, 0x74, 0x75, 0x6a, 0x4f, 0x33, 0x28, 0x2e, 0x39, 0x48, 0x41, 0x38, 0x30, 0x2b, 0x2a, 0x31, 0x38, 0x3d, 0x42, 0x46, 0x46, 0x4a, 0x50, 0x50, 0x4b, 0x48, 0x52, 0x5b, 0x5e, 0x61, 0x62, 0x5b, 0x52, 0x4e, 0x4a, 0x47, 0x44, 0x47, 0x4d, 0x50, 0x4c, 0x49, 0x3e, 0x34, 0x34, 0x3c, 0x46, 0x4c, 0x50, 0x5c, 0x5f, 0x5d, 0x53, 0x46, 0x3d, 0x3d, 0x40, 0x33, 0x32, 0x32, 0x30, 0x32, 0x3e, 0x45, 0x3e, 0x39, 0x3c, 0x3b, 0x30, 0x20, 0x19, 0x23, 0x32, 0x3d, 0x44, 0x46, 0x44, 0x3e, 0x33, 0x32, 0x3c, 0x47, 0x41, 0x31, 0x2f, 0x35, 0x3a, 0x3f, 0x37, 0x36, 0x33, 0x38, 0x3d, 0x36, 0x33, 0x3a, 0x3f, 0x3a, 0x30, 0x27, 0x32, 0x46, 0x49, 0x42, 0x40, 0x42, 0x46, 0x48, 0x50, 0x57, 0x4a, 0x3a, 0x38, 0x2e, 0x2d, 0x36, 0x45, 0x50, 0x56, 0x4e, 0x3c, 0x2e, 0x26, 0x23, 0x28, 0x2e, 0x2e, 0x2c, 0x2c, 0x32, 0x3e, 0x49, 0x50, 0x5e, 0x6d, 0x6d, 0x64, 0x3f, 0x3e, 0x41, 0x45, 0x47, 0x45, 0x45, 0x46, 0x4d, 0x4e, 0x46, 0x3a, 0x3c, 0x48, 0x4c, 0x46, 0x3f, 0x38, 0x34, 0x3a, 0x42, 0x44, 0x40, 0x3b, 0x41, 0x43, 0x41, 0x3c, 0x3b, 0x3e, 0x3f, 0x3e, 0x3f, 0x3f, 0x43, 0x45, 0x45, 0x4a, 0x4b, 0x42, 0x41, 0x3b, 0x36, 0x39, 0x42, 0x48, 0x46, 0x42, 0x40, 0x44, 0x41, 0x3a, 0x39, 0x3e, 0x3f, 0x3a, 0x31, 0x34, 0x3c, 0x43, 0x43, 0x3e, 0x3d, 0x3f, 0x3e, 0x3a, 0x39, 0x3f, 0x46, 0x49, 0x49, 0x48, 0x3f, 0x3f, 0x3f, 0x41, 0x47, 0x50, 0x57, 0x59, 0x44, 0x42, 0x41, 0x42, 0x3e, 0x38, 0x36, 0x39, 0x35, 0x39, 0x3d, 0x3d, 0x3a, 0x39, 0x3b, 0x3e, 0x42, 0x47, 0x4c, 0x4f, 0x52, 0x54, 0x53, 0x51, 0x4f, 0x4b, 0x46, 0x43, 0x42, 0x44, 0x46, 0x48, 0x41, 0x43, 0x43, 0x43, 0x47, 0x52, 0x5b, 0x60, 0x57, 0x51, 0x4c, 0x4c, 0x4e, 0x4b, 0x43, 0x3b, 0x34, 0x33, 0x30, 0x2f, 0x30, 0x34, 0x38, 0x3c, 0x44, 0x46, 0x47, 0x4a, 0x50, 0x56, 0x57, 0x55, 0x50, 0x50, 0x52, 0x59, 0x63, 0x6c, 0x71, 0x71, 0x72, 0x77, 0x79, 0x76, 0x72, 0x70, 0x6b, 0x66, 0x5d, 0x5a, 0x56, 0x52, 0x4e, 0x4f, 0x58, 0x61, 0x5c, 0x54, 0x4d, 0x52, 0x66, 0x7a, 0x79, 0x6e, 0x61, 0x5e, 0x5b, 0x5d, 0x68, 0x74, 0x76, 0x70, 0x63, 0x62, 0x62, 0x63, 0x64, 0x65, 0x66, 0x68, 0x64, 0x5d, 0x56, 0x52, 0x4e, 0x4e, 0x55, 0x5e, 0x69, 0x67, 0x65, 0x64, 0x65, 0x67, 0x68, 0x69, 0x64, 0x79, 0x87, 0x81, 0x76, 0x75, 0x79, 0x7a, 0x83, 0x84, 0x7a, 0x72, 0x6a, 0x70, 0x80, 0x7b, 0x7b, 0x6b, 0x65, 0x67, 0x66, 0x63, 0x5b, 0x52, 0x55, 0x5a, 0x5c, 0x5c, 0x63, 0x72, 0x80, 0x86, 0x7f, 0x72, 0x68, 0x69, 0x6a, 0x69, 0x6e, 0x77, 0x79, 0x78, 0x72, 0x67, 0x5b, 0x53, 0x54, 0x58, 0x63, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x68, 0x6b, 0x75, 0x7c, 0x7f, 0x84, 0x86, 0x7b, 0x6b, 0x61, 0x67, 0x70, 0x6d, 0x54, 0x4c, 0x54, 0x5d, 0x5f, 0x5e, 0x60, 0x63, 0x66, 0x66, 0x67, 0x6a, 0x6e, 0x72, 0x75, 0x75, 0x75, 0x77, 0x77, 0x75, 0x75, 0x77, 0x77, 0x75, 0x76, 0x79, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x91, 0x91, 0x92, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9c, 0x9d, 0x9e, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa0, 0xa1, 0xa1, 0x9f, 0xa0, 0xa2, 0xa2, 0xa1, 0xa0, 0xa1, 0xa2, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa1, 0xa1, 0xa1, 0xa1, 0xa0, 0x9f, 0x9f, 0x9e, 0x9e, 0x9d, 0x9c, 0x9c, 0x9d, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x97, 0x97, 0x96, 0x95, 0x94, 0x93, 0x91, 0x8d, 0x8b, 0x8c, 0x8d, 0x88, 0x81, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x72, 0x71, 0x70, 0x71, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x67, 0x63, 0x60, 0x5f, 0x5e, 0x59, 0x52, 0x4f, 0x4f, 0x4f, 0x4e, 0x54, 0x61, 0x59, 0x48, 0x3a, 0x3a, 0x47, 0x45, 0x49, 0x47, 0x48, 0x4b, 0x4d, 0x4b, 0x4b, 0x4d, 0x50, 0x54, 0x58, 0x59, 0x57, 0x55, 0x54, 0x55, 0x52, 0x4f, 0x4c, 0x4c, 0x50, 0x54, 0x56, 0x56, 0x5e, 0x64, 0x68, 0x65, 0x5e, 0x5a, 0x5b, 0x5f, 0x67, 0x67, 0x67, 0x64, 0x5f, 0x5c, 0x5d, 0x5f, 0x64, 0x66, 0x5f, 0x50, 0x42, 0x42, 0x4e, 0x58, 0x5a, 0x51, 0x45, 0x38, 0x2e, 0x28, 0x2b, 0x30, 0x34, 0x3b, 0x4d, 0x5e, 0x60, 0x53, 0x44, 0x3e, 0x43, 0x4c, 0x52, 0x53, 0x54, 0x59, 0x5a, 0x59, 0x52, 0x4d, 0x44, 0x41, 0x48, 0x4e, 0x50, 0x50, 0x4a, 0x44, 0x3c, 0x37, 0x39, 0x3f, 0x44, 0x46, 0x60, 0x5f, 0x5b, 0x51, 0x45, 0x3d, 0x3b, 0x3b, 0x35, 0x34, 0x34, 0x31, 0x33, 0x42, 0x4a, 0x44, 0x3a, 0x3e, 0x3e, 0x35, 0x26, 0x1f, 0x26, 0x33, 0x3d, 0x43, 0x46, 0x45, 0x3f, 0x33, 0x31, 0x3c, 0x4d, 0x42, 0x2d, 0x2d, 0x37, 0x3c, 0x40, 0x37, 0x30, 0x2f, 0x37, 0x3c, 0x35, 0x31, 0x38, 0x3e, 0x40, 0x34, 0x29, 0x30, 0x42, 0x49, 0x45, 0x45, 0x3f, 0x3f, 0x43, 0x4d, 0x53, 0x4b, 0x40, 0x3d, 0x26, 0x2a, 0x39, 0x4a, 0x55, 0x5a, 0x52, 0x43, 0x30, 0x26, 0x22, 0x2c, 0x38, 0x39, 0x34, 0x30, 0x2e, 0x3d, 0x4a, 0x52, 0x5f, 0x6e, 0x70, 0x68, 0x3c, 0x3b, 0x3d, 0x40, 0x40, 0x3d, 0x3c, 0x3d, 0x47, 0x4b, 0x47, 0x3c, 0x3a, 0x42, 0x47, 0x45, 0x3b, 0x2f, 0x28, 0x2f, 0x3c, 0x42, 0x3d, 0x37, 0x3b, 0x3b, 0x38, 0x35, 0x36, 0x3c, 0x40, 0x42, 0x3b, 0x3b, 0x3e, 0x3f, 0x44, 0x51, 0x56, 0x4d, 0x3a, 0x34, 0x36, 0x44, 0x50, 0x4e, 0x44, 0x3d, 0x44, 0x46, 0x44, 0x3f, 0x3b, 0x3c, 0x39, 0x34, 0x2d, 0x32, 0x3d, 0x46, 0x43, 0x3d, 0x42, 0x4e, 0x4e, 0x47, 0x40, 0x3f, 0x3f, 0x40, 0x41, 0x43, 0x44, 0x42, 0x40, 0x3f, 0x40, 0x45, 0x4b, 0x50, 0x48, 0x45, 0x45, 0x44, 0x3d, 0x34, 0x31, 0x34, 0x34, 0x37, 0x38, 0x38, 0x38, 0x3b, 0x40, 0x45, 0x49, 0x4e, 0x54, 0x54, 0x52, 0x4f, 0x50, 0x52, 0x4c, 0x4a, 0x47, 0x44, 0x42, 0x43, 0x44, 0x45, 0x4e, 0x52, 0x53, 0x4e, 0x4b, 0x4d, 0x53, 0x58, 0x53, 0x4e, 0x48, 0x46, 0x47, 0x44, 0x3d, 0x37, 0x31, 0x32, 0x33, 0x33, 0x34, 0x36, 0x39, 0x3b, 0x44, 0x43, 0x46, 0x4c, 0x50, 0x51, 0x51, 0x51, 0x4c, 0x4a, 0x47, 0x47, 0x4e, 0x59, 0x62, 0x65, 0x66, 0x6a, 0x6c, 0x6b, 0x70, 0x77, 0x74, 0x6c, 0x60, 0x5a, 0x55, 0x52, 0x52, 0x53, 0x58, 0x5e, 0x5b, 0x50, 0x46, 0x4d, 0x65, 0x78, 0x77, 0x6b, 0x60, 0x53, 0x4f, 0x5a, 0x64, 0x63, 0x61, 0x63, 0x5e, 0x5b, 0x59, 0x5c, 0x5e, 0x5c, 0x5a, 0x59, 0x67, 0x5a, 0x52, 0x55, 0x59, 0x5a, 0x5e, 0x63, 0x5d, 0x56, 0x4d, 0x4b, 0x53, 0x5f, 0x67, 0x69, 0x65, 0x71, 0x75, 0x69, 0x5c, 0x5d, 0x66, 0x6d, 0x6c, 0x7c, 0x84, 0x88, 0x87, 0x92, 0xa3, 0x9d, 0x7e, 0x6f, 0x66, 0x65, 0x62, 0x61, 0x5d, 0x55, 0x56, 0x53, 0x53, 0x55, 0x56, 0x57, 0x5f, 0x68, 0x6a, 0x67, 0x68, 0x6b, 0x6b, 0x68, 0x69, 0x6e, 0x71, 0x6f, 0x68, 0x5c, 0x4c, 0x42, 0x43, 0x49, 0x49, 0x4b, 0x4f, 0x52, 0x55, 0x55, 0x55, 0x55, 0x62, 0x6d, 0x73, 0x6c, 0x62, 0x5c, 0x55, 0x4d, 0x5e, 0x63, 0x6b, 0x6a, 0x4d, 0x4c, 0x56, 0x5c, 0x5f, 0x5e, 0x61, 0x65, 0x67, 0x66, 0x66, 0x68, 0x70, 0x73, 0x74, 0x74, 0x74, 0x76, 0x75, 0x72, 0x73, 0x76, 0x76, 0x74, 0x74, 0x77, 0x79, 0x7a, 0x7d, 0x7e, 0x81, 0x82, 0x82, 0x82, 0x83, 0x84, 0x82, 0x83, 0x85, 0x87, 0x89, 0x8a, 0x8b, 0x8c, 0x8b, 0x8c, 0x8d, 0x8d, 0x8c, 0x8c, 0x8d, 0x8e, 0x8e, 0x8c, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x93, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9f, 0xa0, 0xa0, 0x9f, 0x9e, 0x9e, 0x9f, 0xa0, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa4, 0xa2, 0xa1, 0xa1, 0xa1, 0xa0, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9c, 0x9d, 0x9d, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x99, 0x97, 0x96, 0x95, 0x95, 0x95, 0x94, 0x93, 0x93, 0x92, 0x8f, 0x8c, 0x8d, 0x8d, 0x89, 0x84, 0x84, 0x82, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x72, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x6a, 0x69, 0x66, 0x61, 0x5d, 0x5d, 0x5c, 0x58, 0x51, 0x4e, 0x4e, 0x4d, 0x4c, 0x58, 0x61, 0x59, 0x4f, 0x47, 0x4a, 0x5a, 0x5d, 0x4c, 0x47, 0x45, 0x47, 0x48, 0x45, 0x46, 0x49, 0x4d, 0x4d, 0x4d, 0x49, 0x45, 0x46, 0x4c, 0x52, 0x4d, 0x49, 0x44, 0x45, 0x49, 0x4e, 0x50, 0x50, 0x55, 0x58, 0x57, 0x50, 0x4b, 0x4a, 0x4d, 0x4f, 0x50, 0x52, 0x55, 0x56, 0x53, 0x51, 0x53, 0x57, 0x60, 0x60, 0x5a, 0x4d, 0x42, 0x40, 0x46, 0x4b, 0x4e, 0x49, 0x43, 0x3c, 0x35, 0x2e, 0x2b, 0x2c, 0x3b, 0x40, 0x52, 0x65, 0x63, 0x50, 0x43, 0x44, 0x4f, 0x51, 0x54, 0x55, 0x56, 0x59, 0x5e, 0x63, 0x61, 0x5b, 0x4b, 0x42, 0x46, 0x48, 0x48, 0x4d, 0x49, 0x48, 0x41, 0x36, 0x33, 0x3a, 0x42, 0x46, 0x57, 0x55, 0x50, 0x49, 0x42, 0x3e, 0x3c, 0x3c, 0x39, 0x36, 0x31, 0x2b, 0x2f, 0x42, 0x4d, 0x47, 0x3a, 0x39, 0x38, 0x36, 0x30, 0x2a, 0x2b, 0x2e, 0x3e, 0x43, 0x47, 0x48, 0x43, 0x36, 0x34, 0x41, 0x50, 0x40, 0x28, 0x28, 0x33, 0x3b, 0x40, 0x38, 0x2a, 0x2d, 0x36, 0x39, 0x31, 0x30, 0x39, 0x3e, 0x40, 0x35, 0x26, 0x28, 0x38, 0x42, 0x42, 0x46, 0x36, 0x34, 0x39, 0x46, 0x50, 0x4c, 0x3e, 0x30, 0x26, 0x2b, 0x3a, 0x4a, 0x52, 0x57, 0x52, 0x45, 0x2f, 0x22, 0x1e, 0x2b, 0x39, 0x39, 0x31, 0x2b, 0x2c, 0x3a, 0x49, 0x54, 0x61, 0x6d, 0x6f, 0x6a, 0x44, 0x43, 0x44, 0x44, 0x41, 0x3b, 0x3a, 0x3b, 0x38, 0x40, 0x42, 0x3b, 0x37, 0x3a, 0x3f, 0x40, 0x36, 0x2d, 0x28, 0x2e, 0x3a, 0x40, 0x3e, 0x3b, 0x39, 0x36, 0x33, 0x33, 0x37, 0x3c, 0x42, 0x47, 0x42, 0x3e, 0x40, 0x43, 0x46, 0x4e, 0x54, 0x51, 0x38, 0x31, 0x37, 0x49, 0x50, 0x44, 0x36, 0x30, 0x37, 0x3a, 0x3e, 0x40, 0x3e, 0x38, 0x32, 0x2d, 0x31, 0x35, 0x3a, 0x3c, 0x3b, 0x3d, 0x44, 0x4d, 0x4f, 0x46, 0x3e, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0x4d, 0x4f, 0x4a, 0x42, 0x41, 0x48, 0x4a, 0x47, 0x44, 0x44, 0x48, 0x4a, 0x43, 0x37, 0x30, 0x31, 0x33, 0x34, 0x36, 0x37, 0x3a, 0x3e, 0x43, 0x47, 0x48, 0x4d, 0x52, 0x52, 0x4d, 0x47, 0x47, 0x49, 0x4f, 0x50, 0x50, 0x4f, 0x4d, 0x4a, 0x47, 0x46, 0x56, 0x5a, 0x5a, 0x53, 0x4a, 0x48, 0x4a, 0x4d, 0x4d, 0x49, 0x44, 0x42, 0x41, 0x3e, 0x39, 0x34, 0x31, 0x32, 0x34, 0x35, 0x36, 0x39, 0x3d, 0x40, 0x41, 0x3d, 0x44, 0x54, 0x5d, 0x59, 0x54, 0x54, 0x5b, 0x5b, 0x5a, 0x58, 0x5b, 0x64, 0x6a, 0x6c, 0x5f, 0x5b, 0x57, 0x58, 0x60, 0x69, 0x6c, 0x6b, 0x6b, 0x61, 0x58, 0x58, 0x5d, 0x5e, 0x5c, 0x5a, 0x5a, 0x53, 0x4e, 0x51, 0x5a, 0x5f, 0x5c, 0x55, 0x52, 0x4e, 0x56, 0x69, 0x76, 0x75, 0x73, 0x76, 0x65, 0x61, 0x5e, 0x5e, 0x5c, 0x58, 0x55, 0x54, 0x61, 0x5a, 0x55, 0x5a, 0x62, 0x62, 0x5b, 0x54, 0x57, 0x53, 0x4c, 0x4a, 0x51, 0x5b, 0x5f, 0x5e, 0x64, 0x65, 0x61, 0x58, 0x56, 0x60, 0x6f, 0x79, 0x6d, 0x72, 0x73, 0x79, 0x78, 0x7a, 0x81, 0x76, 0x73, 0x65, 0x5b, 0x55, 0x51, 0x57, 0x61, 0x63, 0x67, 0x5e, 0x58, 0x5a, 0x5d, 0x5d, 0x60, 0x65, 0x63, 0x67, 0x6f, 0x75, 0x76, 0x70, 0x66, 0x5e, 0x59, 0x59, 0x58, 0x52, 0x47, 0x40, 0x45, 0x4f, 0x51, 0x54, 0x58, 0x5e, 0x64, 0x6a, 0x6d, 0x6f, 0x6a, 0x6e, 0x6c, 0x64, 0x5c, 0x5a, 0x5a, 0x59, 0x5a, 0x60, 0x69, 0x6b, 0x4d, 0x51, 0x59, 0x5c, 0x61, 0x60, 0x61, 0x64, 0x66, 0x65, 0x66, 0x68, 0x70, 0x73, 0x73, 0x73, 0x74, 0x75, 0x74, 0x71, 0x73, 0x75, 0x75, 0x72, 0x72, 0x75, 0x77, 0x77, 0x7a, 0x7d, 0x80, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x8a, 0x8a, 0x8d, 0x8e, 0x8c, 0x8c, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9e, 0x9e, 0x9e, 0x9c, 0x9b, 0x9c, 0x9e, 0xa0, 0xa0, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa0, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0xa3, 0xa3, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9b, 0x9a, 0x99, 0x97, 0x96, 0x94, 0x93, 0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x8f, 0x8d, 0x8c, 0x8c, 0x8a, 0x86, 0x84, 0x81, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x75, 0x71, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6b, 0x69, 0x68, 0x68, 0x64, 0x5f, 0x5a, 0x5b, 0x5b, 0x57, 0x51, 0x4d, 0x4d, 0x4c, 0x49, 0x53, 0x58, 0x52, 0x52, 0x53, 0x55, 0x61, 0x61, 0x51, 0x4a, 0x46, 0x48, 0x47, 0x43, 0x42, 0x46, 0x46, 0x45, 0x42, 0x3e, 0x3d, 0x40, 0x46, 0x4b, 0x43, 0x3e, 0x39, 0x39, 0x3e, 0x44, 0x46, 0x47, 0x48, 0x48, 0x44, 0x3f, 0x3e, 0x42, 0x46, 0x47, 0x41, 0x44, 0x49, 0x4c, 0x4a, 0x47, 0x49, 0x4e, 0x49, 0x4d, 0x4d, 0x46, 0x3f, 0x3e, 0x42, 0x46, 0x45, 0x42, 0x40, 0x40, 0x3e, 0x3a, 0x37, 0x37, 0x35, 0x3b, 0x48, 0x52, 0x4f, 0x44, 0x42, 0x49, 0x54, 0x50, 0x51, 0x58, 0x5c, 0x5b, 0x5c, 0x60, 0x64, 0x62, 0x52, 0x44, 0x40, 0x3a, 0x37, 0x3f, 0x4a, 0x4d, 0x49, 0x40, 0x3e, 0x48, 0x52, 0x56, 0x50, 0x4e, 0x4a, 0x45, 0x40, 0x3f, 0x41, 0x44, 0x3d, 0x38, 0x31, 0x2a, 0x2f, 0x43, 0x4d, 0x46, 0x37, 0x37, 0x36, 0x32, 0x2c, 0x28, 0x2b, 0x31, 0x3b, 0x41, 0x45, 0x48, 0x44, 0x38, 0x37, 0x45, 0x46, 0x39, 0x25, 0x28, 0x33, 0x38, 0x3d, 0x35, 0x2e, 0x33, 0x3b, 0x38, 0x2e, 0x2f, 0x39, 0x3c, 0x3d, 0x34, 0x28, 0x28, 0x34, 0x39, 0x36, 0x38, 0x33, 0x36, 0x41, 0x4b, 0x4f, 0x4b, 0x3e, 0x2d, 0x2e, 0x2e, 0x37, 0x42, 0x49, 0x50, 0x4e, 0x43, 0x31, 0x24, 0x20, 0x2c, 0x36, 0x32, 0x27, 0x21, 0x2a, 0x34, 0x42, 0x52, 0x62, 0x6b, 0x6a, 0x65, 0x3c, 0x3c, 0x3d, 0x3e, 0x3a, 0x36, 0x36, 0x38, 0x37, 0x40, 0x46, 0x41, 0x3a, 0x38, 0x3a, 0x3c, 0x34, 0x2f, 0x2e, 0x34, 0x3c, 0x40, 0x42, 0x43, 0x3f, 0x39, 0x36, 0x37, 0x38, 0x38, 0x3b, 0x40, 0x45, 0x3d, 0x3f, 0x45, 0x42, 0x41, 0x46, 0x49, 0x48, 0x3a, 0x36, 0x40, 0x41, 0x34, 0x2c, 0x30, 0x2f, 0x2e, 0x30, 0x34, 0x35, 0x34, 0x33, 0x35, 0x34, 0x33, 0x2f, 0x2a, 0x2f, 0x3a, 0x3e, 0x3b, 0x3a, 0x33, 0x30, 0x35, 0x3d, 0x42, 0x43, 0x43, 0x44, 0x4a, 0x46, 0x39, 0x39, 0x44, 0x43, 0x37, 0x31, 0x35, 0x40, 0x48, 0x45, 0x3a, 0x33, 0x33, 0x32, 0x34, 0x37, 0x3a, 0x3d, 0x40, 0x41, 0x42, 0x39, 0x3e, 0x44, 0x48, 0x46, 0x42, 0x42, 0x43, 0x55, 0x58, 0x5b, 0x5c, 0x59, 0x53, 0x4d, 0x4a, 0x4b, 0x4e, 0x4e, 0x48, 0x43, 0x44, 0x49, 0x4c, 0x4b, 0x46, 0x41, 0x3d, 0x3c, 0x3a, 0x37, 0x35, 0x33, 0x33, 0x32, 0x31, 0x33, 0x39, 0x41, 0x46, 0x42, 0x3c, 0x45, 0x5b, 0x67, 0x5e, 0x53, 0x50, 0x58, 0x5e, 0x65, 0x68, 0x6d, 0x74, 0x77, 0x76, 0x6c, 0x62, 0x5d, 0x60, 0x63, 0x5f, 0x5d, 0x5e, 0x5c, 0x5b, 0x5b, 0x5b, 0x59, 0x57, 0x59, 0x5e, 0x5b, 0x58, 0x53, 0x4d, 0x47, 0x44, 0x45, 0x49, 0x49, 0x50, 0x56, 0x5a, 0x61, 0x68, 0x69, 0x65, 0x64, 0x5e, 0x59, 0x55, 0x4f, 0x49, 0x49, 0x4c, 0x5f, 0x61, 0x62, 0x68, 0x71, 0x74, 0x66, 0x54, 0x54, 0x52, 0x4d, 0x4a, 0x4d, 0x54, 0x57, 0x55, 0x51, 0x4d, 0x47, 0x48, 0x52, 0x64, 0x76, 0x81, 0x79, 0x6b, 0x5e, 0x64, 0x68, 0x6a, 0x70, 0x68, 0x66, 0x5e, 0x58, 0x52, 0x4c, 0x53, 0x62, 0x69, 0x78, 0x6f, 0x68, 0x69, 0x6d, 0x6c, 0x64, 0x5e, 0x61, 0x73, 0x83, 0x83, 0x76, 0x67, 0x5c, 0x57, 0x4f, 0x50, 0x52, 0x4f, 0x45, 0x3f, 0x44, 0x4e, 0x51, 0x52, 0x56, 0x5b, 0x63, 0x6b, 0x72, 0x76, 0x71, 0x67, 0x5c, 0x59, 0x5d, 0x65, 0x68, 0x67, 0x57, 0x5e, 0x69, 0x6f, 0x4f, 0x56, 0x5d, 0x5e, 0x64, 0x62, 0x62, 0x64, 0x65, 0x65, 0x67, 0x6a, 0x70, 0x72, 0x73, 0x72, 0x73, 0x75, 0x74, 0x72, 0x73, 0x75, 0x74, 0x72, 0x71, 0x73, 0x75, 0x76, 0x78, 0x7b, 0x80, 0x82, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x85, 0x86, 0x88, 0x88, 0x88, 0x88, 0x89, 0x8a, 0x8b, 0x88, 0x88, 0x8c, 0x8c, 0x8a, 0x8b, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x96, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9c, 0x9f, 0xa1, 0x9f, 0x9f, 0x9f, 0x9e, 0x9e, 0x9f, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0xa0, 0xa0, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9c, 0x9a, 0x98, 0x97, 0x96, 0x95, 0x93, 0x92, 0x92, 0x93, 0x92, 0x92, 0x90, 0x91, 0x90, 0x8d, 0x8b, 0x8b, 0x8a, 0x87, 0x84, 0x81, 0x7c, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x74, 0x70, 0x6d, 0x6b, 0x6b, 0x6d, 0x6e, 0x6d, 0x6a, 0x68, 0x67, 0x67, 0x63, 0x5d, 0x58, 0x5a, 0x5a, 0x56, 0x51, 0x4d, 0x4c, 0x4b, 0x48, 0x51, 0x53, 0x50, 0x59, 0x5f, 0x5e, 0x60, 0x59, 0x55, 0x4d, 0x49, 0x4a, 0x48, 0x42, 0x3f, 0x42, 0x3b, 0x3a, 0x38, 0x39, 0x3c, 0x3f, 0x41, 0x41, 0x3b, 0x35, 0x2f, 0x2f, 0x35, 0x3b, 0x3e, 0x3e, 0x44, 0x42, 0x3b, 0x35, 0x36, 0x3c, 0x3e, 0x3d, 0x3e, 0x41, 0x46, 0x49, 0x46, 0x41, 0x41, 0x46, 0x5b, 0x60, 0x5f, 0x53, 0x45, 0x3c, 0x3a, 0x3a, 0x38, 0x34, 0x31, 0x33, 0x34, 0x34, 0x33, 0x34, 0x34, 0x42, 0x52, 0x59, 0x54, 0x4c, 0x4b, 0x4e, 0x4b, 0x43, 0x45, 0x52, 0x5a, 0x57, 0x53, 0x55, 0x5b, 0x5f, 0x54, 0x45, 0x3c, 0x2e, 0x28, 0x31, 0x39, 0x45, 0x4c, 0x4c, 0x4d, 0x55, 0x59, 0x57, 0x58, 0x56, 0x51, 0x49, 0x41, 0x40, 0x44, 0x49, 0x41, 0x3d, 0x38, 0x31, 0x37, 0x49, 0x50, 0x45, 0x38, 0x3c, 0x3c, 0x31, 0x22, 0x1d, 0x2b, 0x3c, 0x34, 0x3a, 0x3f, 0x44, 0x41, 0x35, 0x35, 0x43, 0x3b, 0x34, 0x28, 0x2f, 0x38, 0x38, 0x3a, 0x32, 0x37, 0x3d, 0x42, 0x39, 0x2c, 0x2e, 0x38, 0x3a, 0x3b, 0x38, 0x30, 0x31, 0x38, 0x36, 0x2c, 0x29, 0x38, 0x45, 0x57, 0x5a, 0x51, 0x4b, 0x45, 0x3a, 0x30, 0x2c, 0x30, 0x38, 0x41, 0x4b, 0x4d, 0x44, 0x33, 0x28, 0x25, 0x30, 0x38, 0x31, 0x27, 0x23, 0x2e, 0x32, 0x3e, 0x50, 0x60, 0x65, 0x5f, 0x59, 0x43, 0x44, 0x41, 0x40, 0x3e, 0x37, 0x35, 0x3e, 0x38, 0x3c, 0x3e, 0x40, 0x40, 0x38, 0x30, 0x33, 0x3a, 0x3b, 0x3d, 0x3e, 0x3e, 0x3c, 0x3a, 0x38, 0x39, 0x35, 0x33, 0x35, 0x39, 0x3b, 0x3d, 0x40, 0x3f, 0x3f, 0x3c, 0x3a, 0x39, 0x3a, 0x39, 0x37, 0x3c, 0x3e, 0x3c, 0x37, 0x35, 0x38, 0x3b, 0x3a, 0x3b, 0x39, 0x35, 0x30, 0x2e, 0x2e, 0x2c, 0x29, 0x2e, 0x2e, 0x30, 0x31, 0x30, 0x32, 0x39, 0x41, 0x36, 0x2c, 0x2d, 0x3e, 0x4f, 0x50, 0x47, 0x40, 0x3a, 0x39, 0x39, 0x3b, 0x3d, 0x3c, 0x36, 0x31, 0x2e, 0x2f, 0x33, 0x38, 0x3a, 0x38, 0x36, 0x36, 0x32, 0x32, 0x37, 0x3d, 0x3f, 0x3b, 0x3a, 0x3d, 0x3e, 0x3f, 0x41, 0x43, 0x44, 0x43, 0x42, 0x41, 0x44, 0x47, 0x4c, 0x54, 0x59, 0x58, 0x54, 0x50, 0x42, 0x45, 0x46, 0x43, 0x3f, 0x40, 0x48, 0x4f, 0x4b, 0x46, 0x40, 0x3e, 0x3e, 0x3b, 0x34, 0x2d, 0x35, 0x34, 0x32, 0x32, 0x34, 0x39, 0x40, 0x44, 0x43, 0x42, 0x44, 0x4b, 0x53, 0x57, 0x57, 0x54, 0x50, 0x57, 0x60, 0x66, 0x6a, 0x6d, 0x71, 0x74, 0x6e, 0x6c, 0x6d, 0x70, 0x71, 0x6c, 0x64, 0x5f, 0x55, 0x52, 0x56, 0x58, 0x55, 0x58, 0x5d, 0x5c, 0x5c, 0x57, 0x51, 0x4f, 0x4d, 0x42, 0x3f, 0x49, 0x4b, 0x51, 0x57, 0x56, 0x54, 0x52, 0x52, 0x50, 0x57, 0x61, 0x66, 0x62, 0x57, 0x49, 0x46, 0x4f, 0x62, 0x6a, 0x65, 0x65, 0x74, 0x79, 0x6f, 0x69, 0x60, 0x5b, 0x55, 0x52, 0x4f, 0x4e, 0x51, 0x55, 0x50, 0x4d, 0x49, 0x49, 0x4d, 0x56, 0x63, 0x6d, 0x6c, 0x6b, 0x67, 0x61, 0x64, 0x6c, 0x70, 0x70, 0x6e, 0x6b, 0x62, 0x53, 0x4a, 0x4a, 0x53, 0x5b, 0x6a, 0x6e, 0x6e, 0x6b, 0x6b, 0x6c, 0x6c, 0x69, 0x69, 0x73, 0x7b, 0x79, 0x6e, 0x5f, 0x53, 0x4c, 0x4c, 0x47, 0x46, 0x4a, 0x48, 0x42, 0x44, 0x4c, 0x4e, 0x5c, 0x63, 0x62, 0x66, 0x68, 0x6a, 0x70, 0x78, 0x6e, 0x5e, 0x58, 0x5b, 0x5a, 0x5c, 0x64, 0x5e, 0x60, 0x5e, 0x54, 0x53, 0x4c, 0x5d, 0x60, 0x68, 0x65, 0x64, 0x67, 0x67, 0x66, 0x69, 0x6d, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x74, 0x72, 0x70, 0x70, 0x71, 0x72, 0x73, 0x77, 0x78, 0x7b, 0x7e, 0x81, 0x82, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x87, 0x88, 0x89, 0x88, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x8a, 0x8b, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97, 0x97, 0x98, 0x99, 0x99, 0x98, 0x97, 0x97, 0x98, 0x99, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9c, 0x9b, 0x9b, 0x9c, 0x9c, 0x9d, 0x9d, 0x9e, 0x9e, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0xa2, 0xa0, 0x9d, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9b, 0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x99, 0x9a, 0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x96, 0x92, 0x93, 0x94, 0x94, 0x94, 0x92, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8c, 0x89, 0x86, 0x84, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x78, 0x75, 0x71, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x66, 0x64, 0x62, 0x5f, 0x5b, 0x59, 0x5d, 0x59, 0x53, 0x51, 0x50, 0x4e, 0x4a, 0x47, 0x51, 0x57, 0x5a, 0x5f, 0x67, 0x63, 0x5a, 0x58, 0x51, 0x4f, 0x4a, 0x46, 0x46, 0x46, 0x41, 0x3a, 0x3a, 0x38, 0x37, 0x38, 0x3a, 0x3d, 0x3e, 0x3d, 0x3c, 0x35, 0x32, 0x32, 0x30, 0x35, 0x3c, 0x3e, 0x41, 0x3b, 0x36, 0x35, 0x34, 0x36, 0x3c, 0x42, 0x51, 0x53, 0x53, 0x4d, 0x42, 0x3e, 0x47, 0x54, 0x64, 0x70, 0x68, 0x56, 0x52, 0x4c, 0x40, 0x3c, 0x34, 0x2a, 0x22, 0x23, 0x26, 0x27, 0x28, 0x2b, 0x31, 0x42, 0x4f, 0x57, 0x5a, 0x52, 0x45, 0x3f, 0x4d, 0x48, 0x45, 0x4a, 0x51, 0x55, 0x53, 0x4f, 0x5c, 0x54, 0x4e, 0x4f, 0x52, 0x52, 0x50, 0x4e, 0x52, 0x56, 0x58, 0x53, 0x49, 0x47, 0x56, 0x69, 0x7a, 0x66, 0x4b, 0x40, 0x41, 0x41, 0x44, 0x4d, 0x45, 0x33, 0x30, 0x35, 0x3d, 0x53, 0x59, 0x43, 0x37, 0x3a, 0x3e, 0x39, 0x2b, 0x2b, 0x38, 0x40, 0x45, 0x3e, 0x3e, 0x42, 0x44, 0x45, 0x3e, 0x30, 0x27, 0x2a, 0x27, 0x2a, 0x36, 0x3c, 0x38, 0x37, 0x36, 0x3e, 0x40, 0x38, 0x30, 0x31, 0x38, 0x3d, 0x3c, 0x3b, 0x30, 0x3a, 0x34, 0x34, 0x2e, 0x3c, 0x42, 0x4b, 0x51, 0x4f, 0x4d, 0x4c, 0x46, 0x3e, 0x32, 0x29, 0x33, 0x3f, 0x42, 0x50, 0x55, 0x42, 0x39, 0x28, 0x1f, 0x2c, 0x39, 0x36, 0x2a, 0x21, 0x30, 0x38, 0x42, 0x4d, 0x58, 0x5e, 0x59, 0x50, 0x4f, 0x52, 0x51, 0x51, 0x4e, 0x44, 0x41, 0x49, 0x41, 0x44, 0x40, 0x3a, 0x37, 0x30, 0x2c, 0x2f, 0x2b, 0x2e, 0x31, 0x35, 0x38, 0x3a, 0x3c, 0x3e, 0x3f, 0x37, 0x30, 0x32, 0x37, 0x3b, 0x3c, 0x3d, 0x41, 0x46, 0x46, 0x3d, 0x33, 0x2f, 0x32, 0x36, 0x3f, 0x42, 0x41, 0x3c, 0x3b, 0x3f, 0x45, 0x48, 0x43, 0x3d, 0x33, 0x2d, 0x2e, 0x31, 0x2e, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2d, 0x2e, 0x35, 0x3d, 0x3f, 0x3a, 0x36, 0x3a, 0x44, 0x4b, 0x49, 0x43, 0x3a, 0x39, 0x37, 0x35, 0x34, 0x35, 0x38, 0x3a, 0x34, 0x36, 0x3a, 0x3f, 0x3f, 0x3a, 0x35, 0x34, 0x36, 0x37, 0x3b, 0x41, 0x42, 0x3d, 0x3b, 0x3b, 0x3b, 0x3d, 0x3f, 0x42, 0x43, 0x44, 0x44, 0x44, 0x46, 0x46, 0x48, 0x4a, 0x4c, 0x4a, 0x45, 0x41, 0x45, 0x44, 0x42, 0x3f, 0x3c, 0x3b, 0x3d, 0x3f, 0x4a, 0x46, 0x40, 0x3b, 0x39, 0x37, 0x35, 0x34, 0x35, 0x34, 0x34, 0x34, 0x35, 0x38, 0x3b, 0x3d, 0x3d, 0x3f, 0x43, 0x4a, 0x51, 0x56, 0x56, 0x54, 0x4a, 0x4b, 0x4e, 0x52, 0x56, 0x5a, 0x5c, 0x5c, 0x68, 0x69, 0x6d, 0x70, 0x6f, 0x68, 0x5f, 0x58, 0x5b, 0x56, 0x57, 0x58, 0x55, 0x57, 0x5a, 0x56, 0x58, 0x54, 0x4d, 0x4b, 0x4b, 0x46, 0x46, 0x51, 0x57, 0x55, 0x50, 0x4c, 0x4b, 0x4d, 0x4b, 0x48, 0x4d, 0x57, 0x65, 0x67, 0x5b, 0x4d, 0x49, 0x4c, 0x56, 0x5f, 0x66, 0x6f, 0x7d, 0x80, 0x74, 0x68, 0x5b, 0x59, 0x57, 0x52, 0x4b, 0x46, 0x49, 0x4e, 0x4f, 0x4f, 0x4f, 0x4d, 0x4b, 0x4d, 0x54, 0x5b, 0x58, 0x5f, 0x62, 0x60, 0x62, 0x6b, 0x70, 0x6f, 0x79, 0x6e, 0x60, 0x55, 0x52, 0x51, 0x4f, 0x4c, 0x56, 0x5d, 0x63, 0x64, 0x65, 0x69, 0x6c, 0x6c, 0x70, 0x71, 0x6d, 0x61, 0x55, 0x54, 0x5f, 0x6a, 0x61, 0x57, 0x4f, 0x4e, 0x51, 0x57, 0x65, 0x74, 0x6f, 0x75, 0x76, 0x7a, 0x84, 0x86, 0x7e, 0x7a, 0x76, 0x70, 0x64, 0x5f, 0x65, 0x69, 0x6d, 0x75, 0x74, 0x7a, 0x73, 0x5e, 0x4d, 0x59, 0x60, 0x5f, 0x64, 0x63, 0x65, 0x68, 0x69, 0x68, 0x6a, 0x6e, 0x70, 0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x75, 0x77, 0x7a, 0x7d, 0x80, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x87, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x88, 0x88, 0x8a, 0x8b, 0x8d, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x97, 0x96, 0x95, 0x95, 0x96, 0x97, 0x96, 0x96, 0x97, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9e, 0xa1, 0x9f, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x99, 0x9a, 0x99, 0x97, 0x96, 0x97, 0x97, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x92, 0x90, 0x90, 0x8d, 0x8d, 0x8d, 0x8d, 0x8b, 0x89, 0x86, 0x84, 0x7f, 0x7e, 0x7e, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x69, 0x66, 0x64, 0x62, 0x60, 0x5d, 0x5b, 0x5a, 0x57, 0x53, 0x51, 0x4f, 0x4d, 0x48, 0x44, 0x55, 0x5a, 0x59, 0x5a, 0x5f, 0x5c, 0x57, 0x58, 0x55, 0x50, 0x4b, 0x4b, 0x4c, 0x4a, 0x46, 0x43, 0x38, 0x39, 0x3a, 0x3b, 0x3b, 0x38, 0x35, 0x32, 0x35, 0x2e, 0x2d, 0x2f, 0x30, 0x36, 0x3c, 0x3c, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3f, 0x43, 0x45, 0x4c, 0x4f, 0x53, 0x54, 0x4c, 0x45, 0x4b, 0x57, 0x67, 0x6e, 0x6d, 0x64, 0x5b, 0x51, 0x4a, 0x4b, 0x35, 0x2a, 0x20, 0x1e, 0x1e, 0x1e, 0x24, 0x2d, 0x44, 0x4f, 0x54, 0x54, 0x55, 0x4f, 0x48, 0x48, 0x4a, 0x45, 0x46, 0x50, 0x56, 0x53, 0x4c, 0x48, 0x44, 0x4b, 0x4e, 0x4b, 0x4e, 0x58, 0x5c, 0x59, 0x59, 0x50, 0x4b, 0x4e, 0x4e, 0x4e, 0x57, 0x64, 0x66, 0x58, 0x4c, 0x47, 0x42, 0x3e, 0x41, 0x45, 0x3e, 0x32, 0x33, 0x37, 0x3a, 0x4b, 0x50, 0x3d, 0x2f, 0x37, 0x3f, 0x36, 0x23, 0x23, 0x39, 0x4a, 0x44, 0x3e, 0x3f, 0x42, 0x42, 0x43, 0x3f, 0x35, 0x2e, 0x30, 0x2c, 0x2c, 0x36, 0x3b, 0x39, 0x38, 0x39, 0x3e, 0x3f, 0x39, 0x34, 0x35, 0x3a, 0x3e, 0x3d, 0x3d, 0x32, 0x37, 0x31, 0x34, 0x31, 0x3e, 0x4d, 0x4a, 0x4b, 0x53, 0x5a, 0x57, 0x4a, 0x3f, 0x36, 0x28, 0x2c, 0x38, 0x3f, 0x4e, 0x53, 0x43, 0x36, 0x28, 0x23, 0x2e, 0x38, 0x35, 0x2c, 0x27, 0x2b, 0x33, 0x3a, 0x41, 0x4d, 0x56, 0x52, 0x46, 0x4e, 0x53, 0x55, 0x55, 0x51, 0x47, 0x43, 0x4b, 0x4d, 0x53, 0x4c, 0x3e, 0x36, 0x31, 0x2d, 0x2f, 0x2b, 0x2c, 0x2e, 0x31, 0x36, 0x3f, 0x48, 0x4f, 0x49, 0x3d, 0x31, 0x30, 0x35, 0x38, 0x38, 0x36, 0x3e, 0x43, 0x42, 0x37, 0x2c, 0x28, 0x2c, 0x31, 0x3a, 0x3c, 0x3b, 0x38, 0x37, 0x3d, 0x44, 0x49, 0x4a, 0x3f, 0x32, 0x2b, 0x2e, 0x33, 0x32, 0x2d, 0x23, 0x24, 0x27, 0x2a, 0x2a, 0x2b, 0x30, 0x37, 0x44, 0x44, 0x3d, 0x35, 0x35, 0x3c, 0x3c, 0x35, 0x31, 0x32, 0x32, 0x2e, 0x2c, 0x2f, 0x38, 0x40, 0x3b, 0x3d, 0x41, 0x45, 0x43, 0x3c, 0x35, 0x33, 0x34, 0x36, 0x3b, 0x40, 0x41, 0x3e, 0x3a, 0x39, 0x3a, 0x3b, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x41, 0x42, 0x41, 0x41, 0x43, 0x45, 0x46, 0x43, 0x41, 0x48, 0x44, 0x3f, 0x3d, 0x3c, 0x3c, 0x3a, 0x38, 0x42, 0x42, 0x40, 0x3c, 0x38, 0x36, 0x38, 0x3b, 0x35, 0x35, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x3b, 0x3f, 0x46, 0x4d, 0x53, 0x56, 0x57, 0x57, 0x51, 0x4b, 0x46, 0x47, 0x4e, 0x55, 0x59, 0x59, 0x63, 0x62, 0x61, 0x5f, 0x5e, 0x5e, 0x5d, 0x5c, 0x5e, 0x58, 0x57, 0x57, 0x54, 0x56, 0x57, 0x53, 0x57, 0x56, 0x50, 0x4e, 0x4e, 0x49, 0x48, 0x51, 0x5a, 0x52, 0x4a, 0x47, 0x4c, 0x51, 0x4e, 0x47, 0x44, 0x48, 0x58, 0x60, 0x54, 0x4e, 0x51, 0x4f, 0x59, 0x5f, 0x6c, 0x74, 0x76, 0x76, 0x6c, 0x5d, 0x52, 0x56, 0x5b, 0x59, 0x51, 0x4a, 0x4b, 0x51, 0x4e, 0x52, 0x54, 0x50, 0x49, 0x47, 0x4b, 0x51, 0x59, 0x63, 0x67, 0x60, 0x5f, 0x66, 0x69, 0x67, 0x67, 0x5e, 0x54, 0x52, 0x56, 0x59, 0x58, 0x55, 0x59, 0x5e, 0x61, 0x5e, 0x5b, 0x5e, 0x65, 0x6a, 0x65, 0x60, 0x56, 0x4c, 0x4a, 0x55, 0x69, 0x79, 0x68, 0x65, 0x64, 0x66, 0x63, 0x5c, 0x5a, 0x5b, 0x60, 0x67, 0x68, 0x67, 0x6c, 0x6e, 0x6f, 0x72, 0x74, 0x75, 0x6e, 0x69, 0x70, 0x78, 0x7d, 0x84, 0x88, 0x7f, 0x79, 0x68, 0x50, 0x5e, 0x58, 0x63, 0x61, 0x62, 0x66, 0x6a, 0x6a, 0x6a, 0x6b, 0x6f, 0x6d, 0x6e, 0x71, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x73, 0x6f, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x73, 0x75, 0x79, 0x7c, 0x7f, 0x81, 0x82, 0x82, 0x84, 0x83, 0x81, 0x80, 0x80, 0x82, 0x84, 0x85, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x89, 0x86, 0x87, 0x88, 0x89, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x93, 0x92, 0x92, 0x92, 0x93, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x96, 0x97, 0x98, 0x9a, 0x9a, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0x9d, 0x9f, 0x9d, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x98, 0x97, 0x96, 0x95, 0x95, 0x96, 0x97, 0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x95, 0x94, 0x92, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8c, 0x8c, 0x8c, 0x8c, 0x8a, 0x88, 0x86, 0x84, 0x7e, 0x7f, 0x7e, 0x7e, 0x7c, 0x79, 0x76, 0x74, 0x74, 0x72, 0x6f, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6a, 0x68, 0x65, 0x63, 0x62, 0x60, 0x5e, 0x5d, 0x59, 0x56, 0x54, 0x52, 0x50, 0x4c, 0x47, 0x42, 0x56, 0x59, 0x57, 0x56, 0x58, 0x55, 0x50, 0x51, 0x4a, 0x47, 0x46, 0x4a, 0x4d, 0x4b, 0x48, 0x46, 0x3d, 0x3b, 0x37, 0x33, 0x30, 0x30, 0x33, 0x35, 0x3a, 0x34, 0x34, 0x35, 0x34, 0x38, 0x3b, 0x37, 0x38, 0x3d, 0x3f, 0x3d, 0x3f, 0x45, 0x48, 0x47, 0x49, 0x4a, 0x52, 0x5a, 0x56, 0x4d, 0x4e, 0x58, 0x59, 0x55, 0x5d, 0x6c, 0x6e, 0x63, 0x52, 0x42, 0x3b, 0x2f, 0x26, 0x25, 0x24, 0x24, 0x2f, 0x3e, 0x58, 0x62, 0x63, 0x5c, 0x54, 0x48, 0x3d, 0x3b, 0x46, 0x44, 0x4a, 0x56, 0x5c, 0x56, 0x4b, 0x45, 0x39, 0x3e, 0x41, 0x40, 0x42, 0x48, 0x4b, 0x4a, 0x57, 0x4d, 0x4b, 0x54, 0x57, 0x51, 0x4d, 0x50, 0x58, 0x4b, 0x48, 0x44, 0x38, 0x39, 0x43, 0x47, 0x37, 0x32, 0x35, 0x37, 0x38, 0x44, 0x48, 0x38, 0x30, 0x35, 0x3b, 0x32, 0x21, 0x23, 0x3a, 0x4b, 0x3f, 0x3c, 0x40, 0x44, 0x42, 0x41, 0x3d, 0x35, 0x30, 0x32, 0x2d, 0x2c, 0x34, 0x3a, 0x3a, 0x3d, 0x3b, 0x3c, 0x3b, 0x37, 0x35, 0x37, 0x3a, 0x3b, 0x3f, 0x3e, 0x34, 0x34, 0x2e, 0x2f, 0x30, 0x3f, 0x4d, 0x43, 0x41, 0x4d, 0x55, 0x51, 0x49, 0x44, 0x32, 0x26, 0x2e, 0x41, 0x4c, 0x52, 0x4c, 0x39, 0x2b, 0x23, 0x21, 0x2b, 0x31, 0x2e, 0x29, 0x28, 0x2a, 0x35, 0x3a, 0x3b, 0x44, 0x51, 0x51, 0x46, 0x49, 0x4e, 0x4f, 0x4e, 0x4a, 0x40, 0x3e, 0x48, 0x4c, 0x56, 0x50, 0x3f, 0x36, 0x31, 0x2c, 0x2b, 0x30, 0x2f, 0x2d, 0x2d, 0x31, 0x3b, 0x48, 0x52, 0x48, 0x3d, 0x33, 0x32, 0x36, 0x38, 0x38, 0x37, 0x3a, 0x39, 0x35, 0x2f, 0x2d, 0x2e, 0x30, 0x2f, 0x35, 0x34, 0x32, 0x31, 0x34, 0x38, 0x3d, 0x40, 0x44, 0x3b, 0x2e, 0x27, 0x29, 0x2f, 0x2f, 0x2c, 0x24, 0x26, 0x2a, 0x2d, 0x2d, 0x2b, 0x2c, 0x30, 0x39, 0x39, 0x36, 0x30, 0x2e, 0x2f, 0x2c, 0x27, 0x24, 0x28, 0x2b, 0x2c, 0x2b, 0x2e, 0x36, 0x3d, 0x39, 0x3a, 0x3d, 0x40, 0x3e, 0x37, 0x32, 0x30, 0x32, 0x33, 0x37, 0x3c, 0x3e, 0x3e, 0x3c, 0x3b, 0x3b, 0x3a, 0x3a, 0x3a, 0x39, 0x39, 0x39, 0x38, 0x37, 0x38, 0x3c, 0x42, 0x49, 0x4e, 0x4f, 0x4f, 0x4a, 0x45, 0x3f, 0x3b, 0x3a, 0x3a, 0x38, 0x37, 0x35, 0x38, 0x3b, 0x3b, 0x39, 0x37, 0x37, 0x39, 0x37, 0x36, 0x36, 0x36, 0x36, 0x35, 0x34, 0x33, 0x39, 0x3e, 0x46, 0x4c, 0x4f, 0x51, 0x52, 0x53, 0x57, 0x55, 0x56, 0x5c, 0x65, 0x6a, 0x69, 0x66, 0x5d, 0x5c, 0x58, 0x53, 0x50, 0x52, 0x53, 0x54, 0x59, 0x55, 0x57, 0x59, 0x55, 0x56, 0x57, 0x53, 0x50, 0x54, 0x52, 0x50, 0x50, 0x4a, 0x45, 0x48, 0x4a, 0x46, 0x43, 0x47, 0x51, 0x58, 0x54, 0x4b, 0x44, 0x3d, 0x4a, 0x55, 0x51, 0x5a, 0x68, 0x65, 0x62, 0x63, 0x6c, 0x6b, 0x5f, 0x5f, 0x62, 0x5a, 0x55, 0x5a, 0x5f, 0x60, 0x5a, 0x53, 0x52, 0x56, 0x57, 0x5d, 0x5e, 0x57, 0x4d, 0x48, 0x4a, 0x4d, 0x5f, 0x65, 0x62, 0x57, 0x52, 0x59, 0x5c, 0x59, 0x4f, 0x50, 0x52, 0x54, 0x56, 0x5a, 0x62, 0x69, 0x61, 0x5f, 0x5b, 0x57, 0x59, 0x64, 0x72, 0x7d, 0x80, 0x76, 0x6c, 0x6a, 0x6d, 0x6f, 0x6e, 0x6c, 0x74, 0x6e, 0x66, 0x5d, 0x55, 0x50, 0x4f, 0x50, 0x4c, 0x56, 0x5b, 0x5d, 0x61, 0x63, 0x65, 0x6d, 0x6f, 0x79, 0x7c, 0x7c, 0x81, 0x82, 0x7e, 0x7f, 0x9d, 0xa3, 0xab, 0x7a, 0x55, 0x5d, 0x5d, 0x6a, 0x62, 0x64, 0x67, 0x69, 0x6a, 0x6a, 0x6d, 0x6f, 0x6a, 0x6c, 0x70, 0x73, 0x75, 0x76, 0x75, 0x74, 0x77, 0x73, 0x6e, 0x6b, 0x6c, 0x6f, 0x72, 0x72, 0x73, 0x75, 0x78, 0x7c, 0x7f, 0x80, 0x81, 0x81, 0x83, 0x83, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x92, 0x92, 0x92, 0x93, 0x95, 0x96, 0x97, 0x99, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9e, 0x9c, 0x9a, 0x98, 0x98, 0x98, 0x96, 0x95, 0x96, 0x97, 0x98, 0x97, 0x96, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x93, 0x93, 0x92, 0x8f, 0x8d, 0x8c, 0x8d, 0x8e, 0x8f, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x77, 0x75, 0x74, 0x74, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x67, 0x65, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5c, 0x5b, 0x59, 0x56, 0x53, 0x50, 0x4d, 0x48, 0x45, 0x56, 0x58, 0x56, 0x56, 0x5a, 0x56, 0x4d, 0x4b, 0x44, 0x46, 0x46, 0x45, 0x47, 0x48, 0x43, 0x3c, 0x3e, 0x3a, 0x34, 0x2f, 0x2c, 0x30, 0x37, 0x3d, 0x3d, 0x3b, 0x3d, 0x3c, 0x36, 0x36, 0x39, 0x35, 0x3e, 0x42, 0x40, 0x38, 0x37, 0x40, 0x46, 0x45, 0x3a, 0x38, 0x42, 0x54, 0x5c, 0x59, 0x5c, 0x65, 0x5e, 0x51, 0x58, 0x6b, 0x75, 0x78, 0x6f, 0x5d, 0x49, 0x3c, 0x30, 0x2e, 0x2a, 0x28, 0x32, 0x40, 0x59, 0x61, 0x5f, 0x54, 0x4a, 0x3c, 0x30, 0x2e, 0x40, 0x45, 0x4b, 0x52, 0x58, 0x58, 0x4e, 0x43, 0x32, 0x29, 0x29, 0x36, 0x3f, 0x3e, 0x41, 0x48, 0x4e, 0x44, 0x3b, 0x37, 0x39, 0x3e, 0x47, 0x4f, 0x4f, 0x43, 0x46, 0x46, 0x38, 0x3b, 0x49, 0x48, 0x38, 0x35, 0x38, 0x39, 0x3d, 0x48, 0x4a, 0x3c, 0x38, 0x35, 0x34, 0x30, 0x29, 0x2f, 0x3c, 0x42, 0x41, 0x3d, 0x41, 0x48, 0x47, 0x44, 0x3f, 0x35, 0x2f, 0x31, 0x2b, 0x29, 0x31, 0x39, 0x3d, 0x43, 0x40, 0x3e, 0x3a, 0x38, 0x38, 0x39, 0x39, 0x38, 0x41, 0x3c, 0x35, 0x36, 0x31, 0x28, 0x2c, 0x41, 0x53, 0x4e, 0x49, 0x46, 0x3f, 0x37, 0x35, 0x37, 0x2e, 0x28, 0x34, 0x49, 0x53, 0x52, 0x46, 0x34, 0x1d, 0x19, 0x1d, 0x2a, 0x34, 0x36, 0x34, 0x35, 0x3e, 0x4b, 0x4f, 0x4a, 0x4f, 0x5b, 0x59, 0x4b, 0x51, 0x53, 0x50, 0x4d, 0x48, 0x3f, 0x3e, 0x48, 0x4d, 0x57, 0x53, 0x44, 0x3d, 0x3b, 0x38, 0x39, 0x3f, 0x3d, 0x3b, 0x39, 0x3a, 0x3e, 0x46, 0x4b, 0x3d, 0x38, 0x34, 0x35, 0x38, 0x39, 0x3a, 0x3d, 0x3a, 0x39, 0x35, 0x31, 0x32, 0x35, 0x36, 0x34, 0x36, 0x32, 0x2f, 0x33, 0x38, 0x3d, 0x3d, 0x3d, 0x3b, 0x36, 0x2d, 0x25, 0x23, 0x26, 0x27, 0x26, 0x2a, 0x2d, 0x32, 0x36, 0x34, 0x2e, 0x2c, 0x2c, 0x30, 0x2b, 0x29, 0x2e, 0x30, 0x2d, 0x2a, 0x2a, 0x21, 0x24, 0x27, 0x29, 0x2b, 0x2e, 0x32, 0x34, 0x2f, 0x2e, 0x2f, 0x32, 0x32, 0x2e, 0x2d, 0x2d, 0x32, 0x33, 0x34, 0x36, 0x39, 0x3b, 0x3b, 0x3a, 0x38, 0x38, 0x37, 0x36, 0x35, 0x34, 0x33, 0x33, 0x32, 0x34, 0x39, 0x40, 0x48, 0x4c, 0x4c, 0x4b, 0x49, 0x45, 0x3f, 0x39, 0x35, 0x34, 0x35, 0x36, 0x31, 0x32, 0x34, 0x36, 0x37, 0x36, 0x35, 0x33, 0x39, 0x37, 0x35, 0x34, 0x35, 0x36, 0x36, 0x35, 0x35, 0x39, 0x40, 0x44, 0x45, 0x46, 0x48, 0x4a, 0x4b, 0x51, 0x5d, 0x68, 0x70, 0x6f, 0x6a, 0x65, 0x66, 0x6b, 0x6d, 0x6a, 0x65, 0x60, 0x59, 0x52, 0x53, 0x53, 0x58, 0x5a, 0x54, 0x54, 0x56, 0x54, 0x4c, 0x51, 0x4f, 0x4b, 0x4b, 0x46, 0x41, 0x42, 0x3d, 0x3d, 0x3d, 0x42, 0x4b, 0x52, 0x4f, 0x49, 0x49, 0x3e, 0x49, 0x58, 0x5c, 0x69, 0x77, 0x71, 0x5a, 0x5b, 0x63, 0x5e, 0x4f, 0x53, 0x64, 0x69, 0x65, 0x62, 0x5e, 0x5c, 0x58, 0x56, 0x57, 0x5a, 0x5d, 0x65, 0x68, 0x60, 0x55, 0x4b, 0x46, 0x42, 0x4f, 0x50, 0x4c, 0x44, 0x45, 0x4c, 0x4f, 0x4d, 0x4f, 0x54, 0x5b, 0x5f, 0x5c, 0x5a, 0x60, 0x69, 0x6c, 0x64, 0x5a, 0x55, 0x59, 0x64, 0x71, 0x7a, 0x86, 0x7f, 0x7a, 0x7e, 0x81, 0x7c, 0x72, 0x6b, 0x73, 0x6d, 0x61, 0x55, 0x50, 0x55, 0x5f, 0x65, 0x60, 0x66, 0x6b, 0x76, 0x83, 0x83, 0x7a, 0x78, 0x79, 0x7d, 0x78, 0x71, 0x71, 0x73, 0x77, 0x7f, 0xab, 0xdc, 0xeb, 0x76, 0x46, 0x53, 0x63, 0x62, 0x66, 0x66, 0x67, 0x67, 0x68, 0x6b, 0x6e, 0x6f, 0x6b, 0x6d, 0x71, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78, 0x73, 0x6d, 0x6b, 0x6d, 0x70, 0x72, 0x72, 0x73, 0x75, 0x78, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x83, 0x84, 0x84, 0x83, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x89, 0x88, 0x88, 0x89, 0x89, 0x8a, 0x8b, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e, 0x8e, 0x8d, 0x8e, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9b, 0x99, 0x98, 0x97, 0x97, 0x95, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x95, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x90, 0x8e, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e, 0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x86, 0x85, 0x84, 0x80, 0x7f, 0x7c, 0x7a, 0x77, 0x75, 0x74, 0x74, 0x74, 0x72, 0x6f, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x64, 0x62, 0x60, 0x60, 0x5f, 0x5d, 0x5c, 0x5d, 0x5a, 0x56, 0x51, 0x4e, 0x4c, 0x4a, 0x49, 0x58, 0x57, 0x52, 0x52, 0x5a, 0x58, 0x4f, 0x4c, 0x4f, 0x53, 0x4d, 0x40, 0x3d, 0x43, 0x41, 0x37, 0x37, 0x38, 0x39, 0x38, 0x36, 0x36, 0x39, 0x3b, 0x36, 0x3a, 0x3f, 0x3c, 0x33, 0x34, 0x39, 0x37, 0x3d, 0x42, 0x3f, 0x36, 0x34, 0x3d, 0x44, 0x44, 0x46, 0x3f, 0x43, 0x52, 0x5b, 0x5a, 0x5a, 0x5f, 0x58, 0x58, 0x64, 0x6d, 0x6e, 0x78, 0x7e, 0x76, 0x6b, 0x5a, 0x48, 0x3c, 0x34, 0x2e, 0x32, 0x39, 0x46, 0x4b, 0x45, 0x3a, 0x36, 0x33, 0x32, 0x37, 0x3c, 0x45, 0x48, 0x45, 0x4a, 0x54, 0x4f, 0x40, 0x3a, 0x34, 0x34, 0x3b, 0x3e, 0x3c, 0x41, 0x4a, 0x39, 0x46, 0x55, 0x60, 0x67, 0x68, 0x5f, 0x54, 0x47, 0x40, 0x4b, 0x51, 0x45, 0x45, 0x4b, 0x43, 0x3d, 0x39, 0x37, 0x3a, 0x46, 0x54, 0x53, 0x45, 0x3a, 0x36, 0x37, 0x38, 0x35, 0x39, 0x41, 0x41, 0x4a, 0x41, 0x41, 0x48, 0x4a, 0x49, 0x44, 0x3b, 0x32, 0x33, 0x2c, 0x28, 0x31, 0x3a, 0x40, 0x47, 0x47, 0x43, 0x40, 0x3f, 0x3e, 0x3d, 0x3a, 0x38, 0x3f, 0x35, 0x35, 0x3a, 0x36, 0x22, 0x29, 0x46, 0x42, 0x45, 0x44, 0x3a, 0x30, 0x2d, 0x2b, 0x29, 0x2c, 0x2b, 0x35, 0x43, 0x4c, 0x4c, 0x45, 0x3c, 0x2e, 0x28, 0x29, 0x33, 0x3b, 0x3c, 0x37, 0x34, 0x3d, 0x44, 0x44, 0x43, 0x4c, 0x53, 0x42, 0x26, 0x56, 0x56, 0x52, 0x4e, 0x4a, 0x3f, 0x3b, 0x42, 0x4c, 0x53, 0x4e, 0x44, 0x42, 0x43, 0x45, 0x4a, 0x4c, 0x4b, 0x4a, 0x49, 0x47, 0x45, 0x43, 0x42, 0x3a, 0x39, 0x38, 0x37, 0x35, 0x32, 0x33, 0x37, 0x36, 0x3a, 0x3b, 0x37, 0x32, 0x32, 0x34, 0x36, 0x31, 0x2d, 0x2b, 0x31, 0x38, 0x3b, 0x3b, 0x3a, 0x3a, 0x39, 0x33, 0x2a, 0x24, 0x23, 0x24, 0x25, 0x23, 0x26, 0x2d, 0x34, 0x35, 0x32, 0x30, 0x30, 0x36, 0x2c, 0x29, 0x2e, 0x32, 0x2e, 0x2b, 0x2d, 0x28, 0x27, 0x26, 0x27, 0x29, 0x2b, 0x2d, 0x2e, 0x29, 0x28, 0x28, 0x2b, 0x2c, 0x2c, 0x2e, 0x30, 0x31, 0x31, 0x2f, 0x2f, 0x31, 0x35, 0x36, 0x33, 0x33, 0x33, 0x34, 0x34, 0x34, 0x33, 0x33, 0x32, 0x34, 0x34, 0x36, 0x3a, 0x3c, 0x3b, 0x37, 0x34, 0x3d, 0x3d, 0x3c, 0x38, 0x34, 0x35, 0x3a, 0x3f, 0x3b, 0x37, 0x34, 0x34, 0x36, 0x37, 0x36, 0x34, 0x39, 0x36, 0x33, 0x32, 0x34, 0x37, 0x37, 0x37, 0x34, 0x37, 0x3b, 0x3d, 0x3f, 0x41, 0x44, 0x47, 0x42, 0x46, 0x4b, 0x51, 0x55, 0x58, 0x5a, 0x5c, 0x6c, 0x72, 0x75, 0x73, 0x71, 0x6e, 0x67, 0x5e, 0x50, 0x4e, 0x52, 0x54, 0x4e, 0x4e, 0x51, 0x4e, 0x57, 0x5a, 0x52, 0x46, 0x43, 0x40, 0x3d, 0x3d, 0x40, 0x40, 0x3e, 0x3e, 0x41, 0x46, 0x47, 0x44, 0x4c, 0x46, 0x50, 0x5c, 0x5e, 0x5f, 0x5f, 0x55, 0x4e, 0x54, 0x5c, 0x59, 0x4e, 0x51, 0x62, 0x6f, 0x6a, 0x60, 0x55, 0x51, 0x53, 0x58, 0x5f, 0x64, 0x65, 0x71, 0x7b, 0x7c, 0x76, 0x6c, 0x5d, 0x51, 0x43, 0x41, 0x3f, 0x40, 0x44, 0x49, 0x4c, 0x4e, 0x53, 0x54, 0x5a, 0x62, 0x64, 0x62, 0x62, 0x66, 0x6d, 0x63, 0x5a, 0x56, 0x56, 0x58, 0x5c, 0x5f, 0x62, 0x5d, 0x5c, 0x5e, 0x5f, 0x61, 0x68, 0x70, 0x70, 0x73, 0x6f, 0x62, 0x58, 0x57, 0x58, 0x58, 0x5f, 0x64, 0x67, 0x6c, 0x72, 0x71, 0x71, 0x77, 0x82, 0x88, 0x89, 0x86, 0x82, 0x79, 0x75, 0x7c, 0xb1, 0xdd, 0xd7, 0x5b, 0x47, 0x52, 0x66, 0x61, 0x69, 0x68, 0x66, 0x65, 0x69, 0x6d, 0x6e, 0x6d, 0x6c, 0x6e, 0x72, 0x75, 0x78, 0x79, 0x78, 0x78, 0x77, 0x72, 0x6d, 0x6b, 0x6e, 0x71, 0x71, 0x71, 0x74, 0x75, 0x78, 0x7b, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x83, 0x82, 0x81, 0x82, 0x83, 0x83, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x83, 0x83, 0x84, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8c, 0x8e, 0x8f, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9a, 0x99, 0x97, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x93, 0x94, 0x93, 0x92, 0x92, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x92, 0x91, 0x91, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x86, 0x84, 0x82, 0x81, 0x7f, 0x7e, 0x7b, 0x77, 0x75, 0x74, 0x73, 0x73, 0x73, 0x71, 0x6e, 0x6c, 0x6b, 0x69, 0x67, 0x66, 0x65, 0x64, 0x63, 0x62, 0x62, 0x60, 0x5e, 0x5c, 0x5b, 0x58, 0x54, 0x4f, 0x4c, 0x4a, 0x4a, 0x4a, 0x56, 0x53, 0x4a, 0x48, 0x50, 0x53, 0x4f, 0x4f, 0x54, 0x55, 0x49, 0x38, 0x35, 0x41, 0x45, 0x40, 0x3d, 0x3d, 0x3c, 0x3a, 0x39, 0x39, 0x3b, 0x3c, 0x3d, 0x41, 0x46, 0x40, 0x36, 0x37, 0x3b, 0x39, 0x3b, 0x41, 0x42, 0x3f, 0x3e, 0x43, 0x47, 0x48, 0x5b, 0x57, 0x57, 0x5c, 0x5e, 0x5b, 0x59, 0x5b, 0x61, 0x5d, 0x5a, 0x57, 0x5b, 0x6a, 0x75, 0x74, 0x7b, 0x6e, 0x5c, 0x4c, 0x41, 0x3c, 0x3b, 0x3b, 0x37, 0x3c, 0x3a, 0x35, 0x37, 0x37, 0x37, 0x3b, 0x3c, 0x44, 0x43, 0x3b, 0x40, 0x4e, 0x4d, 0x41, 0x3e, 0x4a, 0x4d, 0x40, 0x38, 0x3c, 0x42, 0x44, 0x46, 0x53, 0x65, 0x76, 0x82, 0x81, 0x70, 0x5d, 0x4b, 0x47, 0x4d, 0x50, 0x48, 0x49, 0x4d, 0x48, 0x3d, 0x38, 0x31, 0x36, 0x4a, 0x5a, 0x55, 0x47, 0x35, 0x3a, 0x43, 0x42, 0x39, 0x3b, 0x46, 0x4d, 0x4b, 0x3d, 0x3b, 0x43, 0x47, 0x48, 0x46, 0x3f, 0x3a, 0x38, 0x2e, 0x29, 0x31, 0x39, 0x3f, 0x45, 0x47, 0x45, 0x44, 0x44, 0x41, 0x3c, 0x38, 0x37, 0x37, 0x2e, 0x33, 0x38, 0x35, 0x1c, 0x27, 0x45, 0x4a, 0x4f, 0x51, 0x4d, 0x4c, 0x4a, 0x3f, 0x31, 0x26, 0x30, 0x3c, 0x47, 0x4e, 0x4e, 0x46, 0x3f, 0x35, 0x2e, 0x2a, 0x31, 0x39, 0x3b, 0x38, 0x34, 0x46, 0x45, 0x43, 0x48, 0x59, 0x5d, 0x41, 0x1d, 0x4d, 0x4f, 0x4e, 0x4f, 0x4d, 0x41, 0x38, 0x3b, 0x3c, 0x40, 0x3e, 0x3b, 0x3e, 0x40, 0x42, 0x4a, 0x49, 0x46, 0x43, 0x41, 0x3f, 0x3d, 0x38, 0x35, 0x3b, 0x39, 0x37, 0x34, 0x2f, 0x2a, 0x2a, 0x2d, 0x30, 0x33, 0x35, 0x34, 0x33, 0x34, 0x33, 0x32, 0x2d, 0x29, 0x28, 0x2c, 0x30, 0x31, 0x33, 0x37, 0x38, 0x38, 0x33, 0x2b, 0x25, 0x24, 0x26, 0x27, 0x21, 0x23, 0x28, 0x2e, 0x30, 0x2f, 0x2f, 0x30, 0x32, 0x2e, 0x2c, 0x2c, 0x2d, 0x2c, 0x2a, 0x28, 0x28, 0x27, 0x26, 0x26, 0x27, 0x27, 0x28, 0x28, 0x29, 0x27, 0x28, 0x2b, 0x2d, 0x2e, 0x31, 0x34, 0x2f, 0x2f, 0x2e, 0x2d, 0x30, 0x35, 0x34, 0x30, 0x2d, 0x2e, 0x30, 0x32, 0x32, 0x32, 0x32, 0x31, 0x33, 0x32, 0x32, 0x33, 0x34, 0x31, 0x2c, 0x28, 0x33, 0x35, 0x36, 0x36, 0x35, 0x37, 0x3b, 0x3e, 0x3a, 0x37, 0x35, 0x35, 0x37, 0x38, 0x37, 0x35, 0x37, 0x34, 0x31, 0x32, 0x35, 0x37, 0x37, 0x36, 0x37, 0x38, 0x39, 0x3c, 0x3f, 0x44, 0x49, 0x4d, 0x4c, 0x4b, 0x4b, 0x4b, 0x4e, 0x53, 0x58, 0x5c, 0x60, 0x64, 0x66, 0x64, 0x65, 0x67, 0x62, 0x5a, 0x4c, 0x44, 0x43, 0x44, 0x43, 0x47, 0x49, 0x45, 0x5a, 0x5e, 0x53, 0x44, 0x3f, 0x3f, 0x3c, 0x3c, 0x41, 0x41, 0x3f, 0x3d, 0x3f, 0x43, 0x45, 0x45, 0x4b, 0x4c, 0x50, 0x54, 0x51, 0x49, 0x41, 0x3d, 0x4a, 0x55, 0x5a, 0x57, 0x51, 0x4d, 0x53, 0x5e, 0x5a, 0x51, 0x49, 0x49, 0x4f, 0x57, 0x5e, 0x64, 0x68, 0x75, 0x84, 0x8d, 0x8f, 0x88, 0x76, 0x65, 0x47, 0x41, 0x40, 0x44, 0x47, 0x49, 0x51, 0x5b, 0x5d, 0x58, 0x57, 0x5d, 0x61, 0x62, 0x66, 0x6d, 0x63, 0x5f, 0x5c, 0x5c, 0x5c, 0x5a, 0x5a, 0x5d, 0x58, 0x4f, 0x47, 0x44, 0x44, 0x49, 0x59, 0x6a, 0x7b, 0x7d, 0x74, 0x5e, 0x4b, 0x46, 0x47, 0x47, 0x47, 0x51, 0x56, 0x56, 0x55, 0x54, 0x5e, 0x6f, 0x7f, 0x91, 0xa7, 0xb5, 0xac, 0x8c, 0x71, 0x6b, 0xab, 0xc2, 0xa0, 0x4d, 0x5a, 0x5e, 0x6a, 0x71, 0x69, 0x68, 0x65, 0x65, 0x6b, 0x71, 0x6f, 0x6a, 0x6e, 0x70, 0x72, 0x75, 0x76, 0x77, 0x76, 0x76, 0x76, 0x71, 0x6c, 0x6b, 0x6e, 0x70, 0x70, 0x6f, 0x73, 0x75, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x80, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x81, 0x81, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8c, 0x8d, 0x8a, 0x8c, 0x8d, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x93, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x97, 0x96, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x91, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x85, 0x83, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x66, 0x64, 0x63, 0x63, 0x63, 0x62, 0x60, 0x5d, 0x5a, 0x57, 0x56, 0x53, 0x4f, 0x4b, 0x49, 0x49, 0x49, 0x51, 0x50, 0x49, 0x46, 0x4c, 0x4e, 0x4f, 0x53, 0x4f, 0x49, 0x40, 0x38, 0x37, 0x3c, 0x42, 0x45, 0x44, 0x41, 0x3d, 0x3a, 0x3a, 0x3b, 0x3c, 0x3d, 0x44, 0x45, 0x46, 0x3f, 0x37, 0x3a, 0x3e, 0x38, 0x3c, 0x40, 0x44, 0x44, 0x42, 0x41, 0x43, 0x46, 0x51, 0x59, 0x62, 0x65, 0x64, 0x64, 0x66, 0x69, 0x79, 0x65, 0x4b, 0x41, 0x4c, 0x5a, 0x66, 0x70, 0x69, 0x6c, 0x68, 0x5c, 0x53, 0x4f, 0x48, 0x41, 0x3d, 0x43, 0x42, 0x40, 0x41, 0x3d, 0x35, 0x33, 0x36, 0x37, 0x36, 0x35, 0x3b, 0x45, 0x48, 0x45, 0x36, 0x46, 0x4b, 0x40, 0x3e, 0x4a, 0x4f, 0x49, 0x4e, 0x5f, 0x7e, 0x9a, 0x9d, 0x85, 0x66, 0x53, 0x51, 0x50, 0x4f, 0x4a, 0x45, 0x46, 0x4b, 0x4e, 0x3c, 0x38, 0x2f, 0x34, 0x4c, 0x5c, 0x54, 0x45, 0x38, 0x3f, 0x4a, 0x46, 0x39, 0x3a, 0x4b, 0x56, 0x3e, 0x35, 0x39, 0x45, 0x49, 0x47, 0x43, 0x3c, 0x3c, 0x38, 0x2b, 0x25, 0x2d, 0x35, 0x39, 0x3e, 0x43, 0x44, 0x46, 0x46, 0x41, 0x39, 0x35, 0x36, 0x37, 0x35, 0x3c, 0x36, 0x32, 0x1c, 0x29, 0x41, 0x54, 0x52, 0x51, 0x50, 0x4c, 0x3e, 0x28, 0x15, 0x28, 0x3a, 0x46, 0x4c, 0x52, 0x51, 0x45, 0x39, 0x26, 0x20, 0x1e, 0x25, 0x32, 0x3d, 0x43, 0x45, 0x45, 0x44, 0x40, 0x3e, 0x44, 0x43, 0x31, 0x1b, 0x44, 0x48, 0x4c, 0x52, 0x54, 0x47, 0x3a, 0x3a, 0x37, 0x3c, 0x3e, 0x42, 0x48, 0x46, 0x46, 0x4d, 0x4c, 0x45, 0x3c, 0x38, 0x39, 0x3a, 0x39, 0x37, 0x35, 0x32, 0x30, 0x2f, 0x2c, 0x29, 0x2a, 0x2d, 0x2d, 0x2b, 0x2a, 0x2f, 0x39, 0x3e, 0x38, 0x2f, 0x30, 0x2d, 0x2d, 0x2d, 0x2c, 0x2b, 0x30, 0x37, 0x31, 0x30, 0x2c, 0x25, 0x22, 0x24, 0x26, 0x27, 0x2f, 0x2d, 0x2e, 0x2f, 0x2d, 0x29, 0x27, 0x28, 0x1f, 0x25, 0x28, 0x27, 0x28, 0x2c, 0x2a, 0x24, 0x1f, 0x22, 0x26, 0x27, 0x27, 0x25, 0x25, 0x25, 0x27, 0x26, 0x27, 0x2a, 0x2c, 0x2d, 0x2f, 0x32, 0x30, 0x31, 0x31, 0x31, 0x36, 0x3b, 0x3a, 0x35, 0x2a, 0x2c, 0x2e, 0x2f, 0x30, 0x30, 0x2e, 0x2d, 0x2f, 0x2e, 0x2f, 0x31, 0x34, 0x34, 0x31, 0x2f, 0x33, 0x34, 0x34, 0x34, 0x32, 0x30, 0x2f, 0x2f, 0x2e, 0x2f, 0x31, 0x34, 0x35, 0x35, 0x33, 0x31, 0x35, 0x32, 0x30, 0x32, 0x35, 0x37, 0x35, 0x33, 0x38, 0x37, 0x38, 0x3b, 0x40, 0x47, 0x4e, 0x52, 0x57, 0x5c, 0x63, 0x6a, 0x6e, 0x6c, 0x66, 0x61, 0x60, 0x67, 0x6c, 0x6c, 0x6c, 0x6a, 0x5d, 0x4f, 0x46, 0x3a, 0x34, 0x35, 0x39, 0x41, 0x44, 0x3e, 0x4b, 0x52, 0x4c, 0x40, 0x3f, 0x41, 0x3f, 0x3e, 0x39, 0x3a, 0x3a, 0x3c, 0x40, 0x46, 0x48, 0x47, 0x49, 0x4d, 0x4d, 0x4b, 0x48, 0x41, 0x3f, 0x46, 0x4a, 0x55, 0x56, 0x52, 0x52, 0x49, 0x44, 0x4d, 0x49, 0x45, 0x43, 0x47, 0x4c, 0x4f, 0x51, 0x54, 0x51, 0x5c, 0x6a, 0x73, 0x79, 0x76, 0x63, 0x4f, 0x49, 0x40, 0x3d, 0x42, 0x44, 0x47, 0x56, 0x69, 0x74, 0x6b, 0x62, 0x5c, 0x56, 0x57, 0x63, 0x72, 0x74, 0x71, 0x6e, 0x6c, 0x65, 0x5e, 0x5c, 0x5e, 0x53, 0x46, 0x3c, 0x3e, 0x45, 0x4f, 0x5e, 0x6b, 0x6c, 0x74, 0x70, 0x5c, 0x4a, 0x45, 0x46, 0x46, 0x4a, 0x54, 0x5e, 0x69, 0x71, 0x6e, 0x6d, 0x74, 0x8a, 0x8f, 0x96, 0x9a, 0x8e, 0x72, 0x63, 0x6a, 0x90, 0xb8, 0x8d, 0x46, 0x53, 0x59, 0x60, 0x6d, 0x68, 0x67, 0x64, 0x66, 0x6e, 0x74, 0x70, 0x68, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x74, 0x70, 0x6b, 0x6a, 0x6e, 0x70, 0x6f, 0x6d, 0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8b, 0x8c, 0x8b, 0x8a, 0x89, 0x8a, 0x8c, 0x87, 0x89, 0x8b, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x91, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x94, 0x91, 0x91, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x94, 0x93, 0x93, 0x93, 0x93, 0x91, 0x90, 0x90, 0x91, 0x92, 0x91, 0x91, 0x90, 0x91, 0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8b, 0x8c, 0x8d, 0x8d, 0x8d, 0x8b, 0x88, 0x87, 0x88, 0x87, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x73, 0x71, 0x6f, 0x70, 0x6e, 0x6c, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x62, 0x62, 0x62, 0x62, 0x61, 0x5f, 0x5b, 0x58, 0x55, 0x55, 0x53, 0x50, 0x4d, 0x4a, 0x49, 0x48, 0x4f, 0x53, 0x51, 0x4f, 0x51, 0x51, 0x52, 0x58, 0x4f, 0x45, 0x3f, 0x41, 0x3e, 0x37, 0x38, 0x3f, 0x3d, 0x3e, 0x40, 0x42, 0x43, 0x3f, 0x39, 0x34, 0x3b, 0x3a, 0x39, 0x35, 0x33, 0x3a, 0x3d, 0x36, 0x3d, 0x3e, 0x3f, 0x3f, 0x3a, 0x35, 0x37, 0x3b, 0x4d, 0x5e, 0x6b, 0x69, 0x60, 0x5c, 0x5e, 0x5f, 0x59, 0x57, 0x52, 0x56, 0x5a, 0x4d, 0x45, 0x50, 0x63, 0x75, 0x80, 0x7a, 0x71, 0x6a, 0x5d, 0x4e, 0x4d, 0x4e, 0x46, 0x3e, 0x3e, 0x3b, 0x35, 0x34, 0x2b, 0x26, 0x26, 0x2f, 0x37, 0x3b, 0x40, 0x45, 0x47, 0x47, 0x46, 0x47, 0x4e, 0x53, 0x4e, 0x44, 0x4f, 0x5b, 0x76, 0x8d, 0x83, 0x62, 0x50, 0x52, 0x4a, 0x52, 0x53, 0x4e, 0x4a, 0x45, 0x44, 0x48, 0x40, 0x3d, 0x34, 0x39, 0x52, 0x60, 0x56, 0x47, 0x41, 0x44, 0x49, 0x44, 0x38, 0x3b, 0x4c, 0x57, 0x32, 0x30, 0x3e, 0x4f, 0x52, 0x4b, 0x42, 0x3a, 0x38, 0x33, 0x25, 0x1e, 0x28, 0x31, 0x34, 0x37, 0x42, 0x44, 0x49, 0x4a, 0x43, 0x3a, 0x36, 0x39, 0x41, 0x45, 0x4b, 0x39, 0x33, 0x21, 0x30, 0x41, 0x55, 0x52, 0x53, 0x58, 0x52, 0x3f, 0x2c, 0x22, 0x34, 0x43, 0x47, 0x43, 0x48, 0x4b, 0x42, 0x37, 0x38, 0x30, 0x27, 0x26, 0x2c, 0x34, 0x3b, 0x3f, 0x4d, 0x4f, 0x48, 0x37, 0x26, 0x1e, 0x1d, 0x1c, 0x4e, 0x4c, 0x4f, 0x55, 0x53, 0x48, 0x3e, 0x39, 0x2f, 0x39, 0x44, 0x48, 0x47, 0x46, 0x43, 0x40, 0x3e, 0x3e, 0x3b, 0x38, 0x35, 0x34, 0x34, 0x33, 0x33, 0x35, 0x34, 0x32, 0x30, 0x2f, 0x30, 0x2f, 0x2c, 0x2d, 0x36, 0x45, 0x4c, 0x46, 0x3f, 0x3d, 0x3e, 0x38, 0x35, 0x34, 0x32, 0x2e, 0x2c, 0x2e, 0x31, 0x2d, 0x28, 0x27, 0x28, 0x27, 0x24, 0x21, 0x30, 0x2f, 0x2f, 0x2d, 0x29, 0x26, 0x26, 0x28, 0x26, 0x23, 0x21, 0x22, 0x25, 0x26, 0x26, 0x24, 0x25, 0x23, 0x21, 0x23, 0x25, 0x25, 0x22, 0x1f, 0x22, 0x24, 0x27, 0x29, 0x2b, 0x2c, 0x2d, 0x2e, 0x31, 0x35, 0x39, 0x3d, 0x41, 0x43, 0x40, 0x3b, 0x33, 0x2d, 0x28, 0x2a, 0x30, 0x32, 0x2f, 0x2c, 0x2a, 0x2c, 0x2d, 0x2e, 0x2d, 0x2c, 0x2b, 0x2b, 0x33, 0x33, 0x33, 0x32, 0x30, 0x2e, 0x2d, 0x2c, 0x2d, 0x33, 0x37, 0x35, 0x31, 0x30, 0x32, 0x33, 0x38, 0x36, 0x34, 0x32, 0x32, 0x34, 0x38, 0x3a, 0x37, 0x38, 0x3a, 0x3e, 0x43, 0x47, 0x4a, 0x4b, 0x4d, 0x5a, 0x67, 0x69, 0x66, 0x65, 0x68, 0x6b, 0x74, 0x6d, 0x67, 0x6a, 0x74, 0x78, 0x6e, 0x61, 0x4e, 0x45, 0x3c, 0x38, 0x3b, 0x3f, 0x40, 0x40, 0x42, 0x47, 0x49, 0x44, 0x3e, 0x3d, 0x3d, 0x3e, 0x38, 0x37, 0x39, 0x3d, 0x40, 0x40, 0x42, 0x44, 0x4b, 0x4e, 0x4e, 0x4a, 0x47, 0x44, 0x3f, 0x3b, 0x48, 0x54, 0x5d, 0x58, 0x4d, 0x46, 0x43, 0x42, 0x3e, 0x42, 0x43, 0x42, 0x46, 0x4f, 0x59, 0x5c, 0x5e, 0x5e, 0x5f, 0x61, 0x61, 0x5d, 0x53, 0x4a, 0x44, 0x40, 0x3f, 0x42, 0x47, 0x4d, 0x58, 0x62, 0x73, 0x67, 0x61, 0x60, 0x5a, 0x56, 0x67, 0x80, 0x85, 0x7c, 0x6f, 0x65, 0x60, 0x5d, 0x5a, 0x57, 0x51, 0x4b, 0x49, 0x4f, 0x5a, 0x62, 0x61, 0x5e, 0x64, 0x66, 0x66, 0x60, 0x56, 0x4d, 0x48, 0x47, 0x42, 0x49, 0x50, 0x57, 0x5c, 0x5b, 0x63, 0x74, 0x8d, 0x98, 0xa1, 0x8f, 0x70, 0x54, 0x47, 0x57, 0x95, 0xa6, 0x7f, 0x4e, 0x55, 0x66, 0x67, 0x6d, 0x6b, 0x69, 0x69, 0x6b, 0x6b, 0x69, 0x6b, 0x70, 0x78, 0x7a, 0x7a, 0x78, 0x77, 0x77, 0x76, 0x73, 0x74, 0x6e, 0x6b, 0x6d, 0x71, 0x71, 0x70, 0x70, 0x71, 0x74, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7c, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7f, 0x82, 0x84, 0x84, 0x84, 0x86, 0x87, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x87, 0x87, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x89, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x92, 0x91, 0x91, 0x90, 0x91, 0x91, 0x92, 0x93, 0x94, 0x91, 0x91, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x8f, 0x8c, 0x8c, 0x8d, 0x8d, 0x8b, 0x8b, 0x8d, 0x8a, 0x8b, 0x8a, 0x87, 0x86, 0x87, 0x87, 0x85, 0x86, 0x85, 0x84, 0x82, 0x80, 0x7e, 0x7d, 0x7c, 0x79, 0x78, 0x76, 0x74, 0x73, 0x71, 0x6e, 0x6c, 0x6d, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x67, 0x67, 0x65, 0x64, 0x62, 0x60, 0x60, 0x5f, 0x5d, 0x5c, 0x58, 0x55, 0x54, 0x4c, 0x4b, 0x4a, 0x42, 0x4b, 0x4e, 0x5b, 0x65, 0x70, 0x69, 0x5b, 0x62, 0x67, 0x5c, 0x50, 0x4e, 0x4e, 0x42, 0x37, 0x37, 0x3a, 0x3e, 0x31, 0x3d, 0x4d, 0x45, 0x45, 0x4e, 0x4d, 0x47, 0x45, 0x42, 0x3f, 0x3e, 0x3d, 0x37, 0x30, 0x36, 0x3a, 0x3d, 0x3b, 0x39, 0x3a, 0x3a, 0x38, 0x45, 0x52, 0x62, 0x66, 0x5d, 0x53, 0x53, 0x58, 0x52, 0x50, 0x60, 0x76, 0x7d, 0x74, 0x65, 0x57, 0x61, 0x70, 0x7d, 0x7e, 0x7a, 0x74, 0x6b, 0x61, 0x5a, 0x4f, 0x41, 0x3a, 0x3a, 0x38, 0x31, 0x2a, 0x1f, 0x2f, 0x40, 0x45, 0x3f, 0x3a, 0x3e, 0x45, 0x4e, 0x4c, 0x4f, 0x55, 0x55, 0x4d, 0x47, 0x46, 0x4d, 0x66, 0x6e, 0x74, 0x68, 0x65, 0x51, 0x4c, 0x42, 0x53, 0x53, 0x49, 0x43, 0x3e, 0x42, 0x52, 0x45, 0x41, 0x3e, 0x42, 0x4f, 0x5a, 0x56, 0x4b, 0x3d, 0x3e, 0x45, 0x41, 0x3b, 0x50, 0x5f, 0x51, 0x32, 0x35, 0x3d, 0x46, 0x49, 0x47, 0x45, 0x45, 0x35, 0x28, 0x1b, 0x1a, 0x26, 0x34, 0x3d, 0x40, 0x37, 0x39, 0x3d, 0x45, 0x43, 0x34, 0x33, 0x42, 0x41, 0x49, 0x4b, 0x45, 0x39, 0x2d, 0x31, 0x42, 0x53, 0x4c, 0x4b, 0x5a, 0x5f, 0x46, 0x28, 0x1f, 0x2d, 0x3a, 0x49, 0x4f, 0x4f, 0x4b, 0x41, 0x37, 0x36, 0x2e, 0x25, 0x23, 0x29, 0x33, 0x3a, 0x3e, 0x4d, 0x4c, 0x3f, 0x2c, 0x25, 0x29, 0x27, 0x1d, 0x53, 0x51, 0x4f, 0x4f, 0x52, 0x53, 0x4d, 0x45, 0x3e, 0x43, 0x47, 0x45, 0x41, 0x3c, 0x36, 0x31, 0x28, 0x2e, 0x34, 0x38, 0x38, 0x35, 0x30, 0x2c, 0x2f, 0x2e, 0x2d, 0x2e, 0x30, 0x34, 0x3a, 0x3f, 0x34, 0x33, 0x3a, 0x45, 0x4a, 0x44, 0x3d, 0x3b, 0x3f, 0x3a, 0x36, 0x35, 0x33, 0x2f, 0x2d, 0x2e, 0x2c, 0x2d, 0x2f, 0x2f, 0x2c, 0x29, 0x25, 0x24, 0x2b, 0x2a, 0x28, 0x26, 0x24, 0x22, 0x24, 0x26, 0x22, 0x21, 0x22, 0x25, 0x28, 0x2a, 0x28, 0x26, 0x25, 0x22, 0x20, 0x21, 0x22, 0x22, 0x1f, 0x1c, 0x1e, 0x21, 0x24, 0x27, 0x29, 0x2b, 0x2e, 0x2f, 0x33, 0x35, 0x38, 0x3a, 0x3e, 0x41, 0x40, 0x3d, 0x33, 0x2c, 0x27, 0x29, 0x2e, 0x31, 0x30, 0x2e, 0x2a, 0x2c, 0x2f, 0x30, 0x2f, 0x2e, 0x2e, 0x2f, 0x2d, 0x2d, 0x2d, 0x2d, 0x2c, 0x2a, 0x2a, 0x29, 0x2c, 0x32, 0x35, 0x34, 0x31, 0x30, 0x30, 0x2f, 0x32, 0x31, 0x30, 0x31, 0x32, 0x34, 0x36, 0x36, 0x3b, 0x3b, 0x3a, 0x3c, 0x3e, 0x41, 0x43, 0x44, 0x52, 0x5b, 0x61, 0x60, 0x5d, 0x61, 0x69, 0x70, 0x6f, 0x69, 0x64, 0x66, 0x71, 0x79, 0x77, 0x6f, 0x61, 0x5b, 0x53, 0x4e, 0x4d, 0x4d, 0x4b, 0x49, 0x45, 0x4a, 0x4d, 0x4a, 0x44, 0x40, 0x3c, 0x39, 0x3a, 0x38, 0x38, 0x3b, 0x3b, 0x3a, 0x3b, 0x3d, 0x3b, 0x3f, 0x42, 0x41, 0x40, 0x40, 0x40, 0x3e, 0x43, 0x4b, 0x51, 0x4f, 0x4a, 0x46, 0x44, 0x42, 0x3d, 0x3e, 0x3d, 0x3a, 0x3e, 0x4a, 0x56, 0x5c, 0x61, 0x5e, 0x5b, 0x5c, 0x60, 0x63, 0x62, 0x5f, 0x63, 0x5a, 0x50, 0x4d, 0x50, 0x57, 0x62, 0x6b, 0x74, 0x6a, 0x65, 0x64, 0x5e, 0x56, 0x5b, 0x68, 0x6e, 0x65, 0x5b, 0x57, 0x5a, 0x5d, 0x5c, 0x59, 0x59, 0x5e, 0x68, 0x75, 0x7c, 0x77, 0x68, 0x5c, 0x5f, 0x63, 0x64, 0x5d, 0x50, 0x47, 0x44, 0x46, 0x50, 0x4f, 0x4c, 0x4e, 0x53, 0x54, 0x5c, 0x6c, 0x88, 0x9a, 0xaa, 0x96, 0x70, 0x4f, 0x42, 0x55, 0x74, 0x7c, 0x62, 0x4a, 0x57, 0x64, 0x63, 0x68, 0x6a, 0x67, 0x67, 0x69, 0x6a, 0x69, 0x6d, 0x72, 0x76, 0x78, 0x79, 0x77, 0x77, 0x77, 0x75, 0x72, 0x71, 0x6d, 0x6a, 0x6d, 0x70, 0x71, 0x70, 0x6f, 0x72, 0x75, 0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x80, 0x83, 0x84, 0x84, 0x84, 0x86, 0x87, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x88, 0x88, 0x89, 0x88, 0x88, 0x88, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8d, 0x8b, 0x8a, 0x8b, 0x8b, 0x89, 0x89, 0x8b, 0x88, 0x8a, 0x89, 0x86, 0x85, 0x86, 0x86, 0x84, 0x85, 0x84, 0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x66, 0x66, 0x64, 0x63, 0x61, 0x60, 0x60, 0x5e, 0x5c, 0x5a, 0x59, 0x54, 0x53, 0x4d, 0x4c, 0x49, 0x44, 0x51, 0x61, 0x6f, 0x75, 0x7a, 0x72, 0x6a, 0x76, 0x7d, 0x73, 0x64, 0x55, 0x4c, 0x4c, 0x5a, 0x69, 0x6d, 0x57, 0x3f, 0x3c, 0x45, 0x42, 0x4a, 0x5e, 0x65, 0x6b, 0x65, 0x5b, 0x53, 0x4f, 0x4b, 0x41, 0x38, 0x40, 0x45, 0x46, 0x44, 0x46, 0x48, 0x43, 0x3b, 0x3f, 0x45, 0x4a, 0x4c, 0x4f, 0x57, 0x60, 0x64, 0x68, 0x58, 0x52, 0x59, 0x63, 0x6f, 0x76, 0x74, 0x64, 0x63, 0x62, 0x67, 0x72, 0x7a, 0x78, 0x70, 0x64, 0x5a, 0x4d, 0x44, 0x3b, 0x32, 0x2d, 0x2d, 0x30, 0x38, 0x40, 0x42, 0x41, 0x43, 0x4b, 0x53, 0x54, 0x51, 0x4f, 0x4e, 0x4b, 0x45, 0x3f, 0x3c, 0x44, 0x65, 0x7d, 0x75, 0x63, 0x4a, 0x3b, 0x37, 0x44, 0x53, 0x59, 0x51, 0x47, 0x41, 0x45, 0x4f, 0x53, 0x4f, 0x48, 0x46, 0x50, 0x5b, 0x56, 0x49, 0x38, 0x43, 0x4c, 0x42, 0x39, 0x48, 0x4f, 0x40, 0x35, 0x3c, 0x47, 0x50, 0x4f, 0x45, 0x3b, 0x36, 0x2f, 0x2c, 0x28, 0x27, 0x2b, 0x33, 0x37, 0x38, 0x28, 0x2e, 0x37, 0x3e, 0x3a, 0x2b, 0x2a, 0x3a, 0x44, 0x50, 0x55, 0x4d, 0x3d, 0x2e, 0x32, 0x44, 0x52, 0x53, 0x57, 0x5d, 0x5a, 0x44, 0x31, 0x30, 0x3a, 0x44, 0x4a, 0x4a, 0x4a, 0x4c, 0x47, 0x3f, 0x2e, 0x26, 0x27, 0x33, 0x3e, 0x43, 0x47, 0x4c, 0x47, 0x47, 0x3e, 0x30, 0x2e, 0x33, 0x2f, 0x24, 0x50, 0x4c, 0x44, 0x40, 0x47, 0x52, 0x51, 0x48, 0x48, 0x4a, 0x49, 0x43, 0x3d, 0x37, 0x31, 0x2b, 0x28, 0x2b, 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x33, 0x2e, 0x2c, 0x2e, 0x2f, 0x31, 0x38, 0x40, 0x39, 0x37, 0x3a, 0x41, 0x42, 0x3b, 0x34, 0x31, 0x39, 0x37, 0x37, 0x38, 0x37, 0x33, 0x30, 0x2f, 0x31, 0x38, 0x3f, 0x3e, 0x37, 0x2e, 0x28, 0x27, 0x28, 0x29, 0x2a, 0x29, 0x27, 0x25, 0x25, 0x25, 0x1e, 0x1f, 0x22, 0x26, 0x29, 0x29, 0x26, 0x23, 0x21, 0x1f, 0x1d, 0x1d, 0x1f, 0x20, 0x1f, 0x1d, 0x1d, 0x1f, 0x22, 0x25, 0x27, 0x29, 0x2b, 0x2d, 0x30, 0x32, 0x34, 0x36, 0x3a, 0x3f, 0x41, 0x40, 0x3a, 0x34, 0x2d, 0x2b, 0x2d, 0x2e, 0x2c, 0x2a, 0x27, 0x2b, 0x30, 0x31, 0x2f, 0x2c, 0x2c, 0x2d, 0x2c, 0x2c, 0x2c, 0x2c, 0x2d, 0x2d, 0x2d, 0x2d, 0x2e, 0x32, 0x36, 0x35, 0x33, 0x32, 0x30, 0x2e, 0x30, 0x30, 0x30, 0x32, 0x36, 0x37, 0x37, 0x35, 0x33, 0x33, 0x33, 0x35, 0x38, 0x3d, 0x42, 0x45, 0x4b, 0x51, 0x54, 0x50, 0x4d, 0x50, 0x56, 0x5b, 0x66, 0x63, 0x5f, 0x60, 0x68, 0x71, 0x73, 0x71, 0x6e, 0x6a, 0x64, 0x60, 0x5d, 0x59, 0x54, 0x50, 0x46, 0x4a, 0x4b, 0x48, 0x43, 0x3e, 0x3a, 0x35, 0x38, 0x36, 0x36, 0x38, 0x38, 0x36, 0x36, 0x38, 0x37, 0x3c, 0x3f, 0x3c, 0x39, 0x39, 0x39, 0x39, 0x3d, 0x40, 0x43, 0x44, 0x46, 0x46, 0x42, 0x3d, 0x3e, 0x3f, 0x3d, 0x3b, 0x3e, 0x48, 0x53, 0x5a, 0x5d, 0x59, 0x57, 0x5a, 0x62, 0x6b, 0x70, 0x73, 0x6e, 0x67, 0x5f, 0x5c, 0x5b, 0x5b, 0x5d, 0x60, 0x64, 0x5e, 0x5b, 0x5d, 0x5d, 0x5a, 0x59, 0x5b, 0x58, 0x4d, 0x44, 0x46, 0x54, 0x63, 0x6b, 0x6e, 0x68, 0x6e, 0x79, 0x82, 0x83, 0x79, 0x6a, 0x5f, 0x5e, 0x62, 0x64, 0x5d, 0x53, 0x4e, 0x53, 0x5a, 0x5d, 0x58, 0x51, 0x53, 0x5c, 0x62, 0x69, 0x75, 0x76, 0x84, 0x92, 0x83, 0x68, 0x51, 0x4a, 0x5d, 0x60, 0x59, 0x4c, 0x4c, 0x5c, 0x64, 0x63, 0x65, 0x67, 0x65, 0x65, 0x67, 0x68, 0x6a, 0x6f, 0x74, 0x76, 0x79, 0x7b, 0x79, 0x78, 0x78, 0x75, 0x72, 0x6f, 0x6c, 0x6c, 0x6f, 0x72, 0x71, 0x70, 0x70, 0x74, 0x76, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x80, 0x81, 0x82, 0x82, 0x82, 0x83, 0x84, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x89, 0x89, 0x89, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8d, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x91, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x8a, 0x88, 0x88, 0x89, 0x89, 0x87, 0x86, 0x88, 0x86, 0x88, 0x87, 0x84, 0x83, 0x84, 0x84, 0x82, 0x83, 0x83, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x74, 0x73, 0x71, 0x70, 0x6d, 0x6b, 0x6b, 0x69, 0x67, 0x66, 0x66, 0x66, 0x65, 0x64, 0x63, 0x62, 0x61, 0x60, 0x60, 0x5e, 0x5b, 0x59, 0x5b, 0x53, 0x52, 0x4e, 0x4d, 0x49, 0x48, 0x5b, 0x69, 0x74, 0x74, 0x77, 0x75, 0x73, 0x7b, 0x79, 0x78, 0x73, 0x6a, 0x63, 0x69, 0x7e, 0x86, 0x7a, 0x58, 0x3e, 0x38, 0x41, 0x41, 0x48, 0x5b, 0x67, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x68, 0x55, 0x43, 0x4e, 0x5a, 0x61, 0x5c, 0x58, 0x59, 0x56, 0x4e, 0x46, 0x48, 0x48, 0x4c, 0x58, 0x67, 0x6d, 0x6b, 0x64, 0x5b, 0x55, 0x54, 0x59, 0x6b, 0x7c, 0x80, 0x74, 0x66, 0x59, 0x5a, 0x65, 0x70, 0x75, 0x77, 0x77, 0x6c, 0x5d, 0x4c, 0x38, 0x29, 0x28, 0x2f, 0x46, 0x46, 0x46, 0x45, 0x46, 0x49, 0x4f, 0x53, 0x57, 0x56, 0x54, 0x50, 0x4d, 0x4a, 0x44, 0x3e, 0x45, 0x5e, 0x75, 0x64, 0x57, 0x39, 0x37, 0x38, 0x39, 0x44, 0x51, 0x4e, 0x42, 0x3f, 0x46, 0x4a, 0x48, 0x47, 0x40, 0x3d, 0x4b, 0x5c, 0x58, 0x49, 0x32, 0x44, 0x4b, 0x41, 0x3e, 0x4b, 0x51, 0x4a, 0x36, 0x3c, 0x44, 0x48, 0x40, 0x31, 0x24, 0x1e, 0x19, 0x21, 0x27, 0x26, 0x26, 0x2a, 0x2d, 0x2d, 0x2a, 0x34, 0x3d, 0x40, 0x36, 0x25, 0x25, 0x36, 0x47, 0x51, 0x54, 0x49, 0x37, 0x27, 0x2b, 0x3d, 0x4c, 0x54, 0x58, 0x58, 0x53, 0x45, 0x38, 0x37, 0x3e, 0x4d, 0x55, 0x54, 0x55, 0x57, 0x4c, 0x3b, 0x27, 0x20, 0x25, 0x38, 0x44, 0x40, 0x3d, 0x40, 0x42, 0x43, 0x3e, 0x35, 0x36, 0x3b, 0x35, 0x28, 0x47, 0x40, 0x38, 0x35, 0x3a, 0x42, 0x44, 0x41, 0x45, 0x47, 0x45, 0x42, 0x3f, 0x3b, 0x36, 0x30, 0x31, 0x2f, 0x2c, 0x2a, 0x28, 0x29, 0x2d, 0x32, 0x38, 0x31, 0x2e, 0x30, 0x2f, 0x2c, 0x31, 0x38, 0x3f, 0x3e, 0x3f, 0x42, 0x40, 0x38, 0x2f, 0x2c, 0x30, 0x31, 0x34, 0x38, 0x3a, 0x38, 0x35, 0x33, 0x3b, 0x42, 0x48, 0x46, 0x3d, 0x31, 0x2a, 0x26, 0x2a, 0x2d, 0x30, 0x2f, 0x2d, 0x2a, 0x25, 0x20, 0x1d, 0x1e, 0x20, 0x23, 0x25, 0x24, 0x20, 0x1d, 0x1c, 0x1a, 0x1a, 0x1b, 0x1d, 0x20, 0x21, 0x20, 0x1f, 0x21, 0x22, 0x23, 0x23, 0x24, 0x25, 0x26, 0x29, 0x2c, 0x2f, 0x32, 0x37, 0x3e, 0x41, 0x41, 0x3c, 0x39, 0x33, 0x2e, 0x2e, 0x2e, 0x2c, 0x28, 0x28, 0x2e, 0x33, 0x34, 0x31, 0x2c, 0x29, 0x29, 0x2e, 0x2d, 0x2d, 0x2e, 0x2f, 0x31, 0x31, 0x32, 0x32, 0x35, 0x37, 0x36, 0x35, 0x35, 0x34, 0x31, 0x32, 0x31, 0x31, 0x33, 0x37, 0x38, 0x37, 0x35, 0x30, 0x30, 0x31, 0x34, 0x38, 0x3f, 0x47, 0x4c, 0x4b, 0x50, 0x55, 0x57, 0x58, 0x5a, 0x5a, 0x58, 0x5a, 0x5c, 0x5c, 0x5b, 0x5d, 0x60, 0x5f, 0x5d, 0x64, 0x5f, 0x5a, 0x59, 0x59, 0x56, 0x4e, 0x48, 0x42, 0x43, 0x41, 0x3c, 0x39, 0x38, 0x36, 0x33, 0x31, 0x31, 0x33, 0x37, 0x38, 0x36, 0x34, 0x35, 0x39, 0x3e, 0x3f, 0x3a, 0x34, 0x32, 0x32, 0x33, 0x3b, 0x3b, 0x3d, 0x44, 0x4c, 0x4c, 0x43, 0x3a, 0x34, 0x37, 0x38, 0x39, 0x3b, 0x40, 0x47, 0x4c, 0x52, 0x50, 0x51, 0x58, 0x61, 0x69, 0x6e, 0x71, 0x6e, 0x6c, 0x69, 0x67, 0x65, 0x62, 0x60, 0x5f, 0x57, 0x53, 0x50, 0x50, 0x53, 0x56, 0x56, 0x56, 0x4e, 0x49, 0x47, 0x4d, 0x5a, 0x68, 0x70, 0x73, 0x6b, 0x6f, 0x74, 0x75, 0x71, 0x69, 0x61, 0x5b, 0x63, 0x63, 0x60, 0x57, 0x4d, 0x49, 0x4f, 0x55, 0x4c, 0x4c, 0x4b, 0x51, 0x5c, 0x60, 0x62, 0x6a, 0x6c, 0x67, 0x66, 0x5f, 0x5e, 0x5b, 0x55, 0x62, 0x60, 0x50, 0x49, 0x51, 0x5c, 0x62, 0x64, 0x64, 0x64, 0x63, 0x63, 0x65, 0x67, 0x6b, 0x71, 0x76, 0x79, 0x7c, 0x7e, 0x7c, 0x7b, 0x79, 0x76, 0x71, 0x6e, 0x6d, 0x6e, 0x72, 0x73, 0x72, 0x71, 0x72, 0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7e, 0x7d, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8c, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x8d, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x88, 0x87, 0x86, 0x88, 0x88, 0x85, 0x85, 0x86, 0x85, 0x86, 0x85, 0x83, 0x82, 0x83, 0x83, 0x81, 0x81, 0x81, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x73, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6b, 0x69, 0x67, 0x65, 0x65, 0x65, 0x65, 0x64, 0x63, 0x62, 0x61, 0x60, 0x60, 0x5e, 0x5b, 0x59, 0x5c, 0x53, 0x52, 0x4f, 0x4d, 0x48, 0x4a, 0x63, 0x7c, 0x7a, 0x6b, 0x67, 0x69, 0x6c, 0x70, 0x65, 0x6b, 0x72, 0x7a, 0x7e, 0x83, 0x8b, 0x82, 0x6a, 0x56, 0x4a, 0x52, 0x60, 0x5c, 0x55, 0x5c, 0x66, 0x6d, 0x6c, 0x6e, 0x72, 0x76, 0x6f, 0x5b, 0x48, 0x4c, 0x63, 0x70, 0x65, 0x55, 0x53, 0x56, 0x56, 0x45, 0x43, 0x43, 0x4a, 0x55, 0x5f, 0x62, 0x61, 0x64, 0x6e, 0x79, 0x76, 0x6f, 0x75, 0x7d, 0x7b, 0x83, 0x78, 0x6e, 0x68, 0x61, 0x5e, 0x66, 0x73, 0x75, 0x70, 0x61, 0x4a, 0x36, 0x2e, 0x31, 0x37, 0x49, 0x49, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x4a, 0x54, 0x57, 0x56, 0x50, 0x4c, 0x4a, 0x43, 0x3b, 0x41, 0x52, 0x65, 0x66, 0x68, 0x54, 0x46, 0x3d, 0x3f, 0x42, 0x4d, 0x4a, 0x3a, 0x3a, 0x44, 0x44, 0x36, 0x38, 0x34, 0x35, 0x48, 0x60, 0x5d, 0x4a, 0x33, 0x46, 0x50, 0x4d, 0x49, 0x42, 0x36, 0x2f, 0x23, 0x23, 0x23, 0x21, 0x1b, 0x15, 0x12, 0x13, 0x22, 0x2a, 0x2e, 0x2a, 0x28, 0x2c, 0x32, 0x35, 0x39, 0x43, 0x47, 0x40, 0x30, 0x1f, 0x22, 0x35, 0x4b, 0x4e, 0x49, 0x3f, 0x33, 0x25, 0x26, 0x34, 0x49, 0x52, 0x55, 0x53, 0x53, 0x4a, 0x3a, 0x31, 0x3d, 0x51, 0x5d, 0x5c, 0x5c, 0x5c, 0x4b, 0x34, 0x26, 0x21, 0x26, 0x37, 0x43, 0x42, 0x3d, 0x3b, 0x48, 0x48, 0x43, 0x3c, 0x3d, 0x40, 0x37, 0x28, 0x44, 0x3c, 0x38, 0x3a, 0x39, 0x34, 0x35, 0x3b, 0x44, 0x46, 0x46, 0x44, 0x42, 0x40, 0x3b, 0x36, 0x2b, 0x2a, 0x2a, 0x2b, 0x29, 0x28, 0x2c, 0x32, 0x38, 0x32, 0x2e, 0x2f, 0x2f, 0x30, 0x37, 0x3f, 0x48, 0x48, 0x49, 0x4a, 0x46, 0x3e, 0x35, 0x31, 0x2f, 0x2f, 0x30, 0x32, 0x35, 0x38, 0x39, 0x39, 0x3a, 0x3d, 0x40, 0x3f, 0x3a, 0x32, 0x2b, 0x27, 0x2c, 0x2f, 0x2f, 0x2c, 0x29, 0x26, 0x21, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x1f, 0x1d, 0x1c, 0x1a, 0x19, 0x19, 0x1a, 0x1c, 0x1e, 0x20, 0x20, 0x21, 0x21, 0x22, 0x22, 0x21, 0x21, 0x22, 0x23, 0x25, 0x2a, 0x2f, 0x33, 0x37, 0x3c, 0x3e, 0x3e, 0x34, 0x35, 0x32, 0x2f, 0x2f, 0x31, 0x30, 0x2c, 0x2e, 0x33, 0x39, 0x3a, 0x35, 0x2f, 0x2a, 0x28, 0x2b, 0x2a, 0x29, 0x29, 0x2c, 0x2e, 0x2f, 0x2f, 0x33, 0x35, 0x36, 0x34, 0x34, 0x35, 0x34, 0x32, 0x33, 0x32, 0x31, 0x32, 0x34, 0x35, 0x34, 0x33, 0x3a, 0x3a, 0x39, 0x39, 0x3b, 0x40, 0x48, 0x4d, 0x4b, 0x4c, 0x4f, 0x55, 0x5f, 0x67, 0x68, 0x65, 0x61, 0x66, 0x6a, 0x6a, 0x68, 0x65, 0x60, 0x5a, 0x51, 0x4a, 0x44, 0x45, 0x49, 0x48, 0x3f, 0x37, 0x3c, 0x3c, 0x3a, 0x35, 0x32, 0x31, 0x30, 0x2e, 0x2b, 0x2c, 0x30, 0x35, 0x36, 0x33, 0x30, 0x30, 0x35, 0x39, 0x3b, 0x36, 0x31, 0x30, 0x32, 0x34, 0x3a, 0x3a, 0x3f, 0x4b, 0x55, 0x53, 0x47, 0x3d, 0x37, 0x39, 0x3d, 0x40, 0x43, 0x46, 0x4c, 0x51, 0x4f, 0x4c, 0x4d, 0x53, 0x59, 0x5d, 0x61, 0x65, 0x6d, 0x6c, 0x69, 0x63, 0x5e, 0x5d, 0x5e, 0x60, 0x59, 0x56, 0x50, 0x4c, 0x4c, 0x4e, 0x50, 0x50, 0x56, 0x5b, 0x62, 0x67, 0x68, 0x67, 0x65, 0x64, 0x64, 0x69, 0x6f, 0x6e, 0x68, 0x5e, 0x57, 0x54, 0x58, 0x58, 0x57, 0x54, 0x51, 0x50, 0x53, 0x57, 0x61, 0x66, 0x69, 0x6e, 0x76, 0x75, 0x73, 0x78, 0x6b, 0x5c, 0x53, 0x52, 0x5d, 0x5f, 0x53, 0x55, 0x5b, 0x4d, 0x4a, 0x53, 0x59, 0x5f, 0x64, 0x60, 0x61, 0x62, 0x63, 0x63, 0x66, 0x6c, 0x73, 0x77, 0x7a, 0x7d, 0x7d, 0x7b, 0x79, 0x76, 0x72, 0x6e, 0x6d, 0x6d, 0x6f, 0x73, 0x73, 0x71, 0x71, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7e, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x89, 0x8b, 0x8c, 0x8c, 0x8b, 0x8c, 0x8d, 0x8c, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x90, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x89, 0x89, 0x89, 0x89, 0x87, 0x86, 0x85, 0x87, 0x86, 0x86, 0x88, 0x87, 0x85, 0x84, 0x85, 0x84, 0x85, 0x84, 0x82, 0x81, 0x83, 0x83, 0x81, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x75, 0x72, 0x70, 0x6e, 0x6d, 0x6b, 0x6a, 0x6b, 0x69, 0x67, 0x65, 0x65, 0x65, 0x65, 0x64, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5b, 0x59, 0x5b, 0x53, 0x52, 0x4f, 0x4c, 0x48, 0x4b, 0x66, 0x91, 0x88, 0x6f, 0x60, 0x5d, 0x60, 0x67, 0x61, 0x64, 0x6a, 0x78, 0x82, 0x84, 0x84, 0x7c, 0x6d, 0x67, 0x6a, 0x7a, 0x85, 0x7c, 0x6e, 0x70, 0x7a, 0x7e, 0x74, 0x66, 0x5f, 0x5f, 0x5f, 0x56, 0x4b, 0x55, 0x69, 0x73, 0x65, 0x53, 0x4e, 0x51, 0x53, 0x51, 0x4b, 0x49, 0x50, 0x56, 0x5a, 0x62, 0x6b, 0x76, 0x83, 0x91, 0x8f, 0x87, 0x86, 0x85, 0x7a, 0x70, 0x6e, 0x6e, 0x68, 0x56, 0x45, 0x48, 0x55, 0x5a, 0x5e, 0x57, 0x46, 0x3d, 0x41, 0x43, 0x40, 0x3e, 0x42, 0x47, 0x4a, 0x4c, 0x4b, 0x4a, 0x49, 0x46, 0x4c, 0x50, 0x50, 0x54, 0x5e, 0x63, 0x63, 0x64, 0x65, 0x5d, 0x67, 0x6c, 0x6d, 0x5d, 0x59, 0x5f, 0x59, 0x57, 0x4c, 0x3a, 0x3a, 0x43, 0x42, 0x3b, 0x3c, 0x37, 0x3a, 0x51, 0x67, 0x60, 0x49, 0x36, 0x3a, 0x3c, 0x3e, 0x3c, 0x31, 0x28, 0x2a, 0x24, 0x1d, 0x17, 0x17, 0x1b, 0x22, 0x2c, 0x34, 0x3d, 0x3a, 0x32, 0x29, 0x26, 0x2b, 0x34, 0x3b, 0x3e, 0x46, 0x44, 0x36, 0x25, 0x1a, 0x24, 0x39, 0x51, 0x4e, 0x46, 0x43, 0x41, 0x37, 0x31, 0x35, 0x4c, 0x5a, 0x60, 0x5c, 0x59, 0x4d, 0x39, 0x2b, 0x3f, 0x52, 0x5e, 0x5a, 0x58, 0x58, 0x49, 0x34, 0x2d, 0x2d, 0x31, 0x3c, 0x4d, 0x5a, 0x59, 0x53, 0x51, 0x50, 0x4a, 0x43, 0x43, 0x43, 0x39, 0x2b, 0x47, 0x40, 0x40, 0x44, 0x3d, 0x2f, 0x30, 0x3a, 0x4a, 0x4c, 0x4c, 0x49, 0x46, 0x43, 0x3f, 0x3b, 0x2d, 0x2a, 0x29, 0x2a, 0x2a, 0x2c, 0x34, 0x3f, 0x3d, 0x3a, 0x34, 0x30, 0x30, 0x36, 0x3f, 0x46, 0x44, 0x45, 0x46, 0x45, 0x42, 0x3c, 0x36, 0x32, 0x36, 0x34, 0x2e, 0x2a, 0x2d, 0x34, 0x39, 0x3b, 0x33, 0x33, 0x34, 0x34, 0x34, 0x32, 0x2f, 0x2d, 0x31, 0x31, 0x2c, 0x25, 0x22, 0x23, 0x21, 0x1c, 0x1b, 0x1b, 0x1c, 0x1d, 0x1d, 0x1e, 0x1e, 0x1e, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1c, 0x1c, 0x1c, 0x1e, 0x1e, 0x1f, 0x1f, 0x1f, 0x1f, 0x21, 0x22, 0x26, 0x2c, 0x31, 0x35, 0x37, 0x3b, 0x3b, 0x3a, 0x35, 0x37, 0x34, 0x2e, 0x2c, 0x2e, 0x2d, 0x29, 0x2e, 0x32, 0x35, 0x37, 0x35, 0x31, 0x2d, 0x2a, 0x2b, 0x29, 0x26, 0x26, 0x29, 0x2b, 0x2c, 0x2c, 0x2f, 0x33, 0x34, 0x33, 0x31, 0x32, 0x32, 0x31, 0x36, 0x37, 0x37, 0x37, 0x36, 0x36, 0x35, 0x35, 0x3d, 0x3d, 0x3b, 0x3a, 0x3a, 0x3f, 0x46, 0x4b, 0x47, 0x44, 0x40, 0x42, 0x4c, 0x58, 0x5e, 0x5f, 0x63, 0x68, 0x6c, 0x6e, 0x6d, 0x69, 0x62, 0x5b, 0x4a, 0x44, 0x3e, 0x3f, 0x42, 0x41, 0x38, 0x2f, 0x36, 0x39, 0x3a, 0x36, 0x32, 0x2f, 0x2b, 0x27, 0x28, 0x29, 0x2c, 0x30, 0x31, 0x2d, 0x2b, 0x2b, 0x36, 0x38, 0x38, 0x34, 0x30, 0x31, 0x33, 0x34, 0x34, 0x35, 0x3c, 0x49, 0x51, 0x4e, 0x44, 0x3c, 0x40, 0x41, 0x44, 0x49, 0x4d, 0x52, 0x5a, 0x61, 0x59, 0x51, 0x4b, 0x4d, 0x50, 0x54, 0x5c, 0x63, 0x6f, 0x71, 0x70, 0x6a, 0x62, 0x5a, 0x53, 0x4e, 0x51, 0x50, 0x4e, 0x4e, 0x50, 0x53, 0x57, 0x5a, 0x6b, 0x6f, 0x73, 0x70, 0x68, 0x63, 0x65, 0x68, 0x66, 0x6a, 0x6c, 0x68, 0x60, 0x59, 0x55, 0x55, 0x4c, 0x4f, 0x53, 0x56, 0x58, 0x58, 0x58, 0x58, 0x54, 0x5b, 0x5e, 0x60, 0x65, 0x65, 0x65, 0x6a, 0x61, 0x58, 0x56, 0x57, 0x5e, 0x5b, 0x49, 0x49, 0x50, 0x48, 0x4a, 0x55, 0x5c, 0x61, 0x64, 0x61, 0x60, 0x62, 0x63, 0x64, 0x67, 0x6d, 0x73, 0x76, 0x78, 0x7a, 0x7a, 0x77, 0x75, 0x73, 0x6f, 0x6b, 0x6d, 0x6e, 0x71, 0x74, 0x72, 0x70, 0x71, 0x73, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x82, 0x81, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x85, 0x87, 0x8a, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x87, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x85, 0x86, 0x85, 0x85, 0x87, 0x87, 0x84, 0x83, 0x84, 0x82, 0x83, 0x83, 0x80, 0x80, 0x82, 0x82, 0x80, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x74, 0x71, 0x6e, 0x6d, 0x6c, 0x6b, 0x69, 0x6a, 0x68, 0x66, 0x65, 0x65, 0x65, 0x64, 0x64, 0x63, 0x61, 0x5f, 0x5e, 0x5e, 0x5d, 0x5b, 0x59, 0x5a, 0x53, 0x53, 0x4e, 0x4b, 0x48, 0x4b, 0x62, 0x79, 0x7c, 0x71, 0x69, 0x60, 0x5a, 0x62, 0x61, 0x66, 0x68, 0x74, 0x7d, 0x79, 0x74, 0x72, 0x6e, 0x6a, 0x71, 0x79, 0x7c, 0x75, 0x6e, 0x74, 0x81, 0x82, 0x78, 0x69, 0x5f, 0x5e, 0x61, 0x5e, 0x59, 0x65, 0x6c, 0x6d, 0x64, 0x58, 0x53, 0x4f, 0x4c, 0x54, 0x52, 0x54, 0x5b, 0x5e, 0x5e, 0x61, 0x66, 0x6a, 0x70, 0x7b, 0x82, 0x86, 0x8b, 0x85, 0x75, 0x62, 0x62, 0x64, 0x62, 0x54, 0x40, 0x37, 0x39, 0x47, 0x4d, 0x4d, 0x47, 0x47, 0x4b, 0x46, 0x3b, 0x3c, 0x3f, 0x43, 0x45, 0x47, 0x47, 0x48, 0x48, 0x41, 0x46, 0x49, 0x4c, 0x56, 0x68, 0x7d, 0x8b, 0x91, 0x81, 0x63, 0x64, 0x63, 0x6f, 0x69, 0x71, 0x6b, 0x61, 0x55, 0x46, 0x3b, 0x3e, 0x46, 0x47, 0x44, 0x3f, 0x38, 0x3f, 0x59, 0x6d, 0x61, 0x47, 0x2b, 0x29, 0x2e, 0x38, 0x3b, 0x3a, 0x3e, 0x43, 0x3a, 0x30, 0x29, 0x2d, 0x38, 0x45, 0x4e, 0x53, 0x43, 0x37, 0x2b, 0x26, 0x24, 0x28, 0x32, 0x3c, 0x3d, 0x44, 0x40, 0x30, 0x25, 0x23, 0x33, 0x49, 0x51, 0x4e, 0x4b, 0x4f, 0x53, 0x4a, 0x3d, 0x3b, 0x4e, 0x63, 0x6d, 0x67, 0x5d, 0x4a, 0x34, 0x28, 0x3c, 0x53, 0x64, 0x63, 0x5d, 0x56, 0x47, 0x36, 0x3c, 0x3c, 0x3b, 0x41, 0x52, 0x62, 0x62, 0x58, 0x50, 0x50, 0x4b, 0x46, 0x46, 0x44, 0x3a, 0x2e, 0x48, 0x46, 0x47, 0x47, 0x3e, 0x34, 0x34, 0x3b, 0x45, 0x48, 0x49, 0x45, 0x42, 0x42, 0x42, 0x41, 0x3a, 0x35, 0x32, 0x32, 0x2f, 0x2d, 0x36, 0x41, 0x43, 0x44, 0x40, 0x38, 0x36, 0x3c, 0x3f, 0x3f, 0x3a, 0x3a, 0x3a, 0x38, 0x36, 0x34, 0x33, 0x31, 0x37, 0x35, 0x31, 0x2c, 0x2d, 0x33, 0x37, 0x37, 0x33, 0x32, 0x31, 0x30, 0x2f, 0x2f, 0x2f, 0x2f, 0x30, 0x31, 0x2d, 0x27, 0x25, 0x27, 0x25, 0x1f, 0x1a, 0x1b, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x1b, 0x1a, 0x1b, 0x1b, 0x1b, 0x1a, 0x1a, 0x19, 0x19, 0x1b, 0x1b, 0x1c, 0x1c, 0x1c, 0x1d, 0x1f, 0x21, 0x23, 0x29, 0x2f, 0x32, 0x35, 0x38, 0x3a, 0x3a, 0x3e, 0x3f, 0x3a, 0x2f, 0x29, 0x2a, 0x29, 0x26, 0x2b, 0x2b, 0x2c, 0x2e, 0x31, 0x33, 0x33, 0x32, 0x2f, 0x2b, 0x27, 0x27, 0x29, 0x2b, 0x2c, 0x2b, 0x2b, 0x32, 0x37, 0x36, 0x34, 0x33, 0x33, 0x32, 0x37, 0x3a, 0x3e, 0x3e, 0x3b, 0x38, 0x38, 0x38, 0x3a, 0x3a, 0x3a, 0x39, 0x39, 0x3e, 0x45, 0x4b, 0x4d, 0x4e, 0x4d, 0x4c, 0x4e, 0x54, 0x59, 0x5a, 0x59, 0x59, 0x57, 0x55, 0x55, 0x55, 0x50, 0x4a, 0x47, 0x45, 0x42, 0x43, 0x43, 0x3f, 0x37, 0x30, 0x30, 0x35, 0x37, 0x34, 0x2e, 0x2b, 0x29, 0x28, 0x2a, 0x28, 0x29, 0x2b, 0x2b, 0x2a, 0x29, 0x2b, 0x35, 0x37, 0x35, 0x30, 0x2e, 0x30, 0x32, 0x32, 0x32, 0x33, 0x38, 0x40, 0x43, 0x3e, 0x39, 0x37, 0x36, 0x38, 0x3d, 0x44, 0x48, 0x4a, 0x50, 0x57, 0x57, 0x4c, 0x43, 0x43, 0x48, 0x4f, 0x5d, 0x6a, 0x71, 0x77, 0x7b, 0x7c, 0x7a, 0x71, 0x61, 0x53, 0x4c, 0x47, 0x46, 0x4b, 0x52, 0x58, 0x5f, 0x66, 0x71, 0x73, 0x71, 0x69, 0x5f, 0x5e, 0x65, 0x6e, 0x6b, 0x6c, 0x69, 0x63, 0x5a, 0x54, 0x54, 0x55, 0x50, 0x52, 0x52, 0x50, 0x4d, 0x4a, 0x4a, 0x4b, 0x49, 0x50, 0x51, 0x52, 0x59, 0x5b, 0x5c, 0x61, 0x57, 0x51, 0x53, 0x53, 0x58, 0x55, 0x48, 0x4e, 0x55, 0x4b, 0x4a, 0x57, 0x62, 0x61, 0x60, 0x63, 0x5f, 0x63, 0x65, 0x65, 0x67, 0x6e, 0x73, 0x75, 0x79, 0x7b, 0x7a, 0x77, 0x75, 0x74, 0x71, 0x6e, 0x70, 0x71, 0x74, 0x76, 0x74, 0x71, 0x72, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x78, 0x7a, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x81, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x84, 0x86, 0x89, 0x8a, 0x8a, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x84, 0x83, 0x84, 0x86, 0x86, 0x83, 0x81, 0x82, 0x80, 0x81, 0x81, 0x7e, 0x7e, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x76, 0x73, 0x70, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x67, 0x65, 0x64, 0x64, 0x64, 0x63, 0x62, 0x62, 0x60, 0x5d, 0x5b, 0x5b, 0x5a, 0x59, 0x59, 0x58, 0x54, 0x54, 0x4c, 0x49, 0x49, 0x49, 0x5b, 0x63, 0x6a, 0x6c, 0x72, 0x6e, 0x63, 0x63, 0x60, 0x68, 0x6d, 0x7a, 0x7f, 0x76, 0x6c, 0x66, 0x60, 0x5f, 0x66, 0x69, 0x69, 0x6c, 0x70, 0x73, 0x79, 0x77, 0x77, 0x76, 0x73, 0x72, 0x6f, 0x68, 0x62, 0x60, 0x60, 0x60, 0x5d, 0x57, 0x50, 0x4b, 0x48, 0x43, 0x49, 0x4d, 0x51, 0x59, 0x61, 0x5f, 0x57, 0x55, 0x57, 0x60, 0x6a, 0x71, 0x7b, 0x7c, 0x73, 0x72, 0x71, 0x71, 0x70, 0x66, 0x57, 0x4c, 0x47, 0x4b, 0x47, 0x45, 0x48, 0x4a, 0x47, 0x3e, 0x36, 0x3d, 0x3d, 0x3e, 0x40, 0x43, 0x46, 0x47, 0x47, 0x49, 0x47, 0x43, 0x3e, 0x3d, 0x47, 0x5e, 0x72, 0x7e, 0x73, 0x67, 0x6f, 0x78, 0x72, 0x62, 0x5e, 0x5c, 0x55, 0x44, 0x39, 0x3d, 0x46, 0x4d, 0x52, 0x49, 0x3d, 0x34, 0x3f, 0x5e, 0x71, 0x64, 0x4a, 0x2c, 0x34, 0x4a, 0x57, 0x52, 0x4f, 0x4b, 0x3f, 0x3a, 0x2e, 0x28, 0x30, 0x40, 0x4b, 0x4c, 0x4a, 0x41, 0x34, 0x2e, 0x32, 0x33, 0x2f, 0x34, 0x3f, 0x3e, 0x45, 0x41, 0x34, 0x2d, 0x32, 0x42, 0x55, 0x50, 0x51, 0x50, 0x53, 0x54, 0x49, 0x3e, 0x3f, 0x51, 0x61, 0x6a, 0x67, 0x5f, 0x4b, 0x33, 0x26, 0x3a, 0x53, 0x68, 0x6a, 0x5f, 0x53, 0x46, 0x3b, 0x42, 0x3d, 0x3c, 0x44, 0x53, 0x5d, 0x58, 0x4f, 0x4d, 0x4e, 0x4d, 0x4b, 0x49, 0x46, 0x3c, 0x32, 0x4a, 0x4c, 0x4b, 0x46, 0x3f, 0x3b, 0x3c, 0x3e, 0x35, 0x39, 0x3b, 0x39, 0x39, 0x3d, 0x43, 0x45, 0x40, 0x3f, 0x41, 0x41, 0x39, 0x2d, 0x2a, 0x2e, 0x3f, 0x48, 0x49, 0x41, 0x3e, 0x41, 0x3e, 0x36, 0x37, 0x37, 0x36, 0x33, 0x32, 0x33, 0x35, 0x36, 0x31, 0x34, 0x34, 0x32, 0x33, 0x36, 0x35, 0x31, 0x36, 0x35, 0x32, 0x2e, 0x29, 0x27, 0x27, 0x28, 0x29, 0x2e, 0x2f, 0x2c, 0x2b, 0x2c, 0x27, 0x1e, 0x1b, 0x1c, 0x1d, 0x1d, 0x1b, 0x19, 0x17, 0x16, 0x17, 0x18, 0x1a, 0x1a, 0x1a, 0x1a, 0x19, 0x19, 0x1a, 0x1b, 0x1b, 0x1b, 0x1a, 0x1b, 0x1d, 0x1f, 0x1d, 0x23, 0x2a, 0x2e, 0x32, 0x37, 0x3b, 0x3c, 0x42, 0x42, 0x3b, 0x2e, 0x28, 0x2b, 0x2d, 0x2c, 0x2a, 0x27, 0x26, 0x2a, 0x31, 0x38, 0x3c, 0x3d, 0x31, 0x2d, 0x28, 0x27, 0x29, 0x2b, 0x2b, 0x2a, 0x2b, 0x34, 0x3c, 0x3d, 0x3a, 0x37, 0x36, 0x34, 0x33, 0x39, 0x3f, 0x40, 0x3c, 0x38, 0x37, 0x37, 0x3e, 0x3f, 0x3e, 0x3c, 0x3b, 0x3e, 0x44, 0x4a, 0x4e, 0x58, 0x62, 0x64, 0x62, 0x5f, 0x5e, 0x5d, 0x61, 0x5b, 0x51, 0x4a, 0x4a, 0x4c, 0x4a, 0x45, 0x40, 0x42, 0x44, 0x44, 0x41, 0x3b, 0x34, 0x30, 0x2d, 0x31, 0x31, 0x2d, 0x28, 0x28, 0x2b, 0x2d, 0x2b, 0x28, 0x27, 0x28, 0x29, 0x29, 0x2c, 0x30, 0x2c, 0x2d, 0x2c, 0x29, 0x2a, 0x2e, 0x31, 0x32, 0x39, 0x37, 0x39, 0x3b, 0x39, 0x34, 0x32, 0x35, 0x2f, 0x32, 0x3b, 0x43, 0x46, 0x44, 0x45, 0x49, 0x47, 0x3d, 0x35, 0x38, 0x3f, 0x4b, 0x5c, 0x6c, 0x67, 0x6a, 0x6e, 0x76, 0x7f, 0x82, 0x79, 0x6c, 0x58, 0x4b, 0x43, 0x46, 0x4c, 0x51, 0x59, 0x61, 0x65, 0x6a, 0x6c, 0x66, 0x5c, 0x56, 0x58, 0x5c, 0x68, 0x6b, 0x6c, 0x67, 0x5e, 0x55, 0x4f, 0x4d, 0x4e, 0x50, 0x50, 0x4d, 0x4b, 0x50, 0x5a, 0x63, 0x6b, 0x71, 0x70, 0x71, 0x78, 0x7a, 0x77, 0x79, 0x5b, 0x51, 0x4c, 0x49, 0x50, 0x53, 0x4e, 0x58, 0x63, 0x52, 0x49, 0x56, 0x62, 0x5c, 0x57, 0x61, 0x5f, 0x64, 0x66, 0x65, 0x68, 0x6f, 0x73, 0x73, 0x7c, 0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x77, 0x74, 0x74, 0x75, 0x78, 0x79, 0x76, 0x73, 0x75, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x75, 0x75, 0x77, 0x78, 0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x85, 0x85, 0x85, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x82, 0x82, 0x80, 0x7e, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x86, 0x85, 0x84, 0x82, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x86, 0x88, 0x89, 0x88, 0x87, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x86, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x83, 0x82, 0x83, 0x85, 0x85, 0x82, 0x80, 0x81, 0x7f, 0x80, 0x7f, 0x7d, 0x7d, 0x7f, 0x7f, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x75, 0x73, 0x6f, 0x6d, 0x6c, 0x6b, 0x69, 0x69, 0x68, 0x66, 0x64, 0x63, 0x63, 0x63, 0x62, 0x61, 0x62, 0x5f, 0x5c, 0x59, 0x59, 0x59, 0x58, 0x58, 0x57, 0x55, 0x54, 0x4a, 0x48, 0x49, 0x48, 0x56, 0x77, 0x72, 0x6b, 0x74, 0x77, 0x6e, 0x6d, 0x67, 0x6c, 0x74, 0x81, 0x82, 0x77, 0x6e, 0x66, 0x5b, 0x61, 0x6a, 0x6f, 0x74, 0x82, 0x89, 0x83, 0x7d, 0x78, 0x7d, 0x80, 0x7e, 0x77, 0x6e, 0x63, 0x5a, 0x59, 0x5c, 0x61, 0x63, 0x5c, 0x53, 0x51, 0x55, 0x50, 0x57, 0x55, 0x52, 0x65, 0x80, 0x85, 0x76, 0x5f, 0x5e, 0x61, 0x60, 0x5e, 0x68, 0x77, 0x7d, 0x77, 0x77, 0x78, 0x75, 0x6d, 0x65, 0x5f, 0x5d, 0x53, 0x44, 0x3e, 0x46, 0x49, 0x40, 0x3a, 0x3c, 0x35, 0x35, 0x36, 0x3d, 0x45, 0x4a, 0x4b, 0x49, 0x44, 0x40, 0x3b, 0x35, 0x30, 0x35, 0x4b, 0x62, 0x63, 0x57, 0x5a, 0x66, 0x82, 0x74, 0x62, 0x52, 0x51, 0x4d, 0x3c, 0x34, 0x43, 0x4e, 0x52, 0x5b, 0x54, 0x42, 0x35, 0x43, 0x63, 0x75, 0x67, 0x4e, 0x43, 0x49, 0x58, 0x56, 0x49, 0x53, 0x5d, 0x50, 0x2e, 0x22, 0x1e, 0x2b, 0x3f, 0x4a, 0x48, 0x41, 0x3c, 0x32, 0x32, 0x3d, 0x3b, 0x2e, 0x2b, 0x35, 0x3d, 0x44, 0x40, 0x35, 0x31, 0x36, 0x44, 0x54, 0x54, 0x56, 0x53, 0x50, 0x4b, 0x3e, 0x39, 0x40, 0x56, 0x5c, 0x5f, 0x61, 0x63, 0x54, 0x38, 0x27, 0x41, 0x54, 0x63, 0x5f, 0x52, 0x48, 0x46, 0x47, 0x3a, 0x34, 0x38, 0x4a, 0x5d, 0x63, 0x5d, 0x58, 0x4f, 0x52, 0x54, 0x52, 0x50, 0x4b, 0x41, 0x37, 0x4a, 0x49, 0x45, 0x3e, 0x39, 0x3a, 0x42, 0x4a, 0x40, 0x3c, 0x36, 0x32, 0x31, 0x33, 0x37, 0x39, 0x3b, 0x3b, 0x3c, 0x3e, 0x3e, 0x37, 0x2c, 0x24, 0x34, 0x3d, 0x43, 0x42, 0x3e, 0x3b, 0x38, 0x35, 0x38, 0x35, 0x33, 0x34, 0x31, 0x2d, 0x2d, 0x30, 0x35, 0x3b, 0x3d, 0x38, 0x35, 0x38, 0x3a, 0x37, 0x34, 0x37, 0x3a, 0x3b, 0x37, 0x32, 0x2d, 0x2a, 0x26, 0x25, 0x26, 0x29, 0x2c, 0x2b, 0x26, 0x22, 0x1c, 0x1d, 0x1e, 0x1c, 0x19, 0x17, 0x17, 0x18, 0x17, 0x18, 0x19, 0x19, 0x18, 0x18, 0x18, 0x19, 0x18, 0x18, 0x19, 0x18, 0x19, 0x1a, 0x1d, 0x1f, 0x1d, 0x20, 0x24, 0x29, 0x2d, 0x31, 0x35, 0x37, 0x38, 0x38, 0x35, 0x2e, 0x28, 0x27, 0x26, 0x24, 0x29, 0x27, 0x26, 0x27, 0x2a, 0x2c, 0x2d, 0x2c, 0x25, 0x23, 0x24, 0x2a, 0x2d, 0x2a, 0x27, 0x27, 0x27, 0x2e, 0x36, 0x3a, 0x38, 0x35, 0x34, 0x34, 0x30, 0x30, 0x2f, 0x2f, 0x30, 0x33, 0x36, 0x39, 0x3c, 0x3b, 0x3c, 0x3f, 0x40, 0x3f, 0x40, 0x42, 0x4c, 0x52, 0x5b, 0x5f, 0x5f, 0x5d, 0x5d, 0x5d, 0x5f, 0x62, 0x65, 0x66, 0x66, 0x63, 0x5a, 0x52, 0x45, 0x40, 0x42, 0x41, 0x39, 0x35, 0x34, 0x32, 0x2c, 0x2e, 0x30, 0x2e, 0x2a, 0x28, 0x28, 0x2a, 0x2b, 0x2b, 0x29, 0x28, 0x27, 0x29, 0x2b, 0x2e, 0x35, 0x37, 0x36, 0x31, 0x2c, 0x2b, 0x31, 0x36, 0x3a, 0x3b, 0x39, 0x36, 0x33, 0x33, 0x33, 0x33, 0x31, 0x34, 0x39, 0x3e, 0x41, 0x41, 0x3e, 0x3c, 0x35, 0x3a, 0x35, 0x30, 0x3a, 0x4a, 0x58, 0x63, 0x67, 0x6a, 0x6c, 0x69, 0x64, 0x61, 0x62, 0x63, 0x69, 0x69, 0x67, 0x5f, 0x55, 0x4f, 0x56, 0x60, 0x68, 0x6c, 0x6d, 0x66, 0x5e, 0x58, 0x54, 0x51, 0x58, 0x60, 0x68, 0x61, 0x54, 0x54, 0x59, 0x56, 0x54, 0x51, 0x4b, 0x4d, 0x58, 0x5b, 0x58, 0x59, 0x57, 0x5e, 0x65, 0x68, 0x67, 0x66, 0x67, 0x6a, 0x63, 0x67, 0x6b, 0x6e, 0x6d, 0x6b, 0x68, 0x64, 0x56, 0x4f, 0x51, 0x58, 0x57, 0x57, 0x5c, 0x5c, 0x5f, 0x62, 0x67, 0x6b, 0x6f, 0x73, 0x77, 0x7a, 0x7a, 0x7e, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x76, 0x75, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x80, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x83, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x87, 0x89, 0x8b, 0x8a, 0x87, 0x85, 0x85, 0x87, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x73, 0x70, 0x6d, 0x6b, 0x69, 0x69, 0x69, 0x67, 0x67, 0x66, 0x65, 0x64, 0x63, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x59, 0x4f, 0x49, 0x49, 0x44, 0x3f, 0x49, 0x5a, 0x6e, 0x6d, 0x71, 0x79, 0x80, 0x7f, 0x78, 0x72, 0x71, 0x76, 0x7a, 0x7a, 0x79, 0x79, 0x74, 0x6e, 0x66, 0x6c, 0x6f, 0x6f, 0x75, 0x7e, 0x7f, 0x79, 0x79, 0x72, 0x66, 0x68, 0x64, 0x59, 0x58, 0x55, 0x5a, 0x50, 0x4d, 0x54, 0x56, 0x52, 0x54, 0x5c, 0x54, 0x55, 0x57, 0x5c, 0x62, 0x69, 0x6e, 0x71, 0x6f, 0x65, 0x61, 0x67, 0x6c, 0x68, 0x61, 0x5d, 0x5f, 0x63, 0x60, 0x57, 0x50, 0x51, 0x51, 0x50, 0x47, 0x48, 0x46, 0x44, 0x46, 0x47, 0x42, 0x3a, 0x3b, 0x44, 0x45, 0x3f, 0x40, 0x4b, 0x53, 0x53, 0x49, 0x43, 0x34, 0x24, 0x23, 0x33, 0x4a, 0x58, 0x53, 0x5a, 0x5d, 0x63, 0x67, 0x57, 0x49, 0x4f, 0x52, 0x45, 0x3a, 0x3e, 0x47, 0x4f, 0x54, 0x58, 0x52, 0x37, 0x33, 0x4d, 0x68, 0x77, 0x6c, 0x53, 0x3c, 0x41, 0x4e, 0x57, 0x58, 0x57, 0x51, 0x44, 0x32, 0x25, 0x23, 0x32, 0x43, 0x48, 0x46, 0x45, 0x41, 0x35, 0x3a, 0x40, 0x3f, 0x37, 0x2a, 0x30, 0x37, 0x3f, 0x40, 0x3b, 0x39, 0x3a, 0x42, 0x50, 0x5c, 0x5f, 0x51, 0x4a, 0x53, 0x4d, 0x44, 0x4e, 0x53, 0x64, 0x61, 0x5d, 0x5d, 0x40, 0x24, 0x2a, 0x4f, 0x5b, 0x61, 0x5b, 0x55, 0x54, 0x4f, 0x48, 0x42, 0x41, 0x44, 0x4f, 0x5e, 0x65, 0x60, 0x57, 0x5a, 0x54, 0x4f, 0x47, 0x3e, 0x3c, 0x38, 0x2f, 0x45, 0x43, 0x3f, 0x3a, 0x36, 0x38, 0x3e, 0x43, 0x42, 0x3f, 0x3a, 0x34, 0x30, 0x30, 0x32, 0x34, 0x39, 0x38, 0x37, 0x38, 0x3a, 0x3b, 0x3a, 0x38, 0x2c, 0x32, 0x37, 0x38, 0x3a, 0x3c, 0x3c, 0x3a, 0x39, 0x35, 0x32, 0x31, 0x2e, 0x2e, 0x34, 0x3b, 0x42, 0x3e, 0x3a, 0x38, 0x37, 0x35, 0x34, 0x35, 0x3a, 0x3c, 0x3e, 0x3c, 0x37, 0x30, 0x2a, 0x27, 0x20, 0x21, 0x25, 0x2a, 0x2e, 0x2e, 0x29, 0x25, 0x1c, 0x1d, 0x1d, 0x1c, 0x19, 0x18, 0x19, 0x19, 0x19, 0x19, 0x19, 0x18, 0x17, 0x17, 0x19, 0x1b, 0x17, 0x18, 0x19, 0x19, 0x19, 0x1a, 0x1b, 0x1d, 0x1b, 0x1e, 0x23, 0x28, 0x2c, 0x30, 0x34, 0x36, 0x3b, 0x3c, 0x39, 0x32, 0x2c, 0x2a, 0x29, 0x27, 0x26, 0x25, 0x25, 0x26, 0x29, 0x2a, 0x2a, 0x2a, 0x25, 0x23, 0x23, 0x27, 0x28, 0x26, 0x26, 0x27, 0x25, 0x2b, 0x32, 0x35, 0x34, 0x32, 0x32, 0x34, 0x2e, 0x2d, 0x2c, 0x2c, 0x2e, 0x32, 0x37, 0x3a, 0x3e, 0x3d, 0x3e, 0x41, 0x42, 0x42, 0x43, 0x47, 0x48, 0x4e, 0x54, 0x58, 0x57, 0x56, 0x57, 0x58, 0x5d, 0x61, 0x66, 0x6a, 0x6d, 0x6d, 0x67, 0x60, 0x53, 0x44, 0x3b, 0x38, 0x35, 0x36, 0x36, 0x31, 0x2d, 0x2f, 0x30, 0x2e, 0x2b, 0x2a, 0x2c, 0x2e, 0x27, 0x28, 0x2b, 0x2c, 0x2c, 0x2a, 0x27, 0x25, 0x2a, 0x2b, 0x2a, 0x28, 0x26, 0x25, 0x27, 0x2a, 0x2c, 0x32, 0x38, 0x3b, 0x3e, 0x40, 0x3c, 0x36, 0x37, 0x40, 0x49, 0x48, 0x41, 0x3c, 0x3e, 0x43, 0x51, 0x4e, 0x41, 0x38, 0x3e, 0x47, 0x4d, 0x52, 0x59, 0x5a, 0x5c, 0x5e, 0x61, 0x64, 0x63, 0x60, 0x62, 0x67, 0x6d, 0x6d, 0x69, 0x66, 0x67, 0x6a, 0x6f, 0x77, 0x7e, 0x7b, 0x71, 0x64, 0x57, 0x4e, 0x52, 0x51, 0x54, 0x57, 0x5c, 0x68, 0x6d, 0x65, 0x54, 0x54, 0x4c, 0x48, 0x4a, 0x48, 0x47, 0x4c, 0x4f, 0x51, 0x56, 0x5d, 0x65, 0x67, 0x65, 0x61, 0x63, 0x68, 0x6e, 0x71, 0x6e, 0x66, 0x58, 0x4e, 0x48, 0x44, 0x4a, 0x53, 0x53, 0x56, 0x5e, 0x63, 0x60, 0x63, 0x69, 0x6e, 0x72, 0x75, 0x79, 0x7b, 0x7c, 0x80, 0x81, 0x7f, 0x7c, 0x7c, 0x7a, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x81, 0x81, 0x81, 0x83, 0x84, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f, 0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x88, 0x8a, 0x8b, 0x89, 0x86, 0x85, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6d, 0x6a, 0x69, 0x68, 0x68, 0x66, 0x66, 0x65, 0x64, 0x63, 0x62, 0x61, 0x61, 0x60, 0x60, 0x5e, 0x5c, 0x5a, 0x58, 0x57, 0x56, 0x55, 0x4d, 0x4a, 0x4b, 0x45, 0x3f, 0x48, 0x58, 0x6e, 0x70, 0x74, 0x7a, 0x80, 0x82, 0x7e, 0x78, 0x6f, 0x6d, 0x6d, 0x72, 0x74, 0x71, 0x6e, 0x6e, 0x66, 0x62, 0x5f, 0x62, 0x68, 0x70, 0x76, 0x79, 0x74, 0x70, 0x67, 0x6d, 0x69, 0x5c, 0x58, 0x51, 0x57, 0x54, 0x57, 0x60, 0x62, 0x59, 0x52, 0x51, 0x47, 0x4a, 0x50, 0x57, 0x5d, 0x60, 0x60, 0x5f, 0x61, 0x5c, 0x5a, 0x5d, 0x62, 0x62, 0x60, 0x5e, 0x4a, 0x4f, 0x51, 0x4b, 0x42, 0x3e, 0x3f, 0x41, 0x46, 0x47, 0x46, 0x44, 0x45, 0x49, 0x48, 0x45, 0x46, 0x42, 0x39, 0x33, 0x3b, 0x4b, 0x4f, 0x49, 0x40, 0x3d, 0x32, 0x24, 0x20, 0x2c, 0x3f, 0x4c, 0x4f, 0x51, 0x50, 0x58, 0x62, 0x59, 0x4e, 0x51, 0x43, 0x3e, 0x39, 0x3c, 0x48, 0x52, 0x52, 0x4e, 0x47, 0x38, 0x38, 0x50, 0x6e, 0x7c, 0x70, 0x5b, 0x3c, 0x41, 0x4e, 0x58, 0x55, 0x50, 0x48, 0x3e, 0x3b, 0x2d, 0x26, 0x31, 0x40, 0x47, 0x49, 0x4b, 0x45, 0x37, 0x39, 0x3c, 0x3b, 0x33, 0x28, 0x2f, 0x3b, 0x46, 0x49, 0x42, 0x3b, 0x38, 0x41, 0x51, 0x55, 0x58, 0x4e, 0x4b, 0x54, 0x4c, 0x3f, 0x44, 0x58, 0x67, 0x63, 0x5c, 0x5a, 0x40, 0x2b, 0x35, 0x41, 0x49, 0x4c, 0x45, 0x42, 0x46, 0x47, 0x43, 0x43, 0x40, 0x42, 0x50, 0x62, 0x6b, 0x68, 0x62, 0x67, 0x5f, 0x59, 0x52, 0x48, 0x41, 0x38, 0x2a, 0x3f, 0x3b, 0x36, 0x32, 0x31, 0x34, 0x38, 0x3c, 0x3b, 0x3c, 0x3a, 0x36, 0x32, 0x30, 0x33, 0x36, 0x36, 0x36, 0x35, 0x35, 0x36, 0x3a, 0x3f, 0x43, 0x34, 0x34, 0x34, 0x35, 0x39, 0x3c, 0x3b, 0x37, 0x37, 0x35, 0x33, 0x32, 0x30, 0x32, 0x39, 0x41, 0x45, 0x38, 0x30, 0x33, 0x34, 0x31, 0x30, 0x32, 0x32, 0x35, 0x37, 0x38, 0x35, 0x30, 0x2c, 0x2a, 0x23, 0x25, 0x29, 0x2e, 0x31, 0x2f, 0x29, 0x24, 0x1a, 0x1b, 0x1b, 0x1a, 0x19, 0x18, 0x19, 0x1a, 0x1a, 0x1a, 0x19, 0x17, 0x16, 0x17, 0x1a, 0x1c, 0x16, 0x18, 0x19, 0x1a, 0x19, 0x19, 0x19, 0x1a, 0x1a, 0x1d, 0x22, 0x26, 0x2b, 0x2f, 0x33, 0x36, 0x3b, 0x3c, 0x39, 0x32, 0x2b, 0x28, 0x27, 0x26, 0x23, 0x23, 0x23, 0x25, 0x27, 0x27, 0x27, 0x26, 0x25, 0x24, 0x23, 0x24, 0x24, 0x23, 0x25, 0x27, 0x2a, 0x2f, 0x34, 0x35, 0x34, 0x32, 0x32, 0x34, 0x31, 0x31, 0x30, 0x32, 0x34, 0x38, 0x3a, 0x3b, 0x43, 0x41, 0x42, 0x44, 0x45, 0x45, 0x49, 0x4d, 0x53, 0x56, 0x58, 0x57, 0x53, 0x51, 0x51, 0x53, 0x51, 0x54, 0x58, 0x5c, 0x62, 0x67, 0x66, 0x62, 0x56, 0x46, 0x3b, 0x35, 0x30, 0x30, 0x30, 0x2c, 0x2e, 0x2f, 0x30, 0x30, 0x2e, 0x2e, 0x30, 0x33, 0x28, 0x29, 0x2b, 0x2d, 0x2e, 0x2b, 0x25, 0x20, 0x21, 0x22, 0x23, 0x26, 0x29, 0x2a, 0x27, 0x25, 0x27, 0x2d, 0x31, 0x36, 0x41, 0x4d, 0x4f, 0x48, 0x42, 0x44, 0x46, 0x46, 0x43, 0x3f, 0x3c, 0x3a, 0x3c, 0x3a, 0x33, 0x34, 0x43, 0x4d, 0x4f, 0x51, 0x52, 0x5c, 0x67, 0x6b, 0x6b, 0x6a, 0x67, 0x64, 0x54, 0x59, 0x5c, 0x5d, 0x63, 0x6c, 0x71, 0x71, 0x77, 0x7c, 0x7f, 0x7a, 0x72, 0x6b, 0x65, 0x61, 0x5e, 0x57, 0x55, 0x59, 0x61, 0x6e, 0x70, 0x66, 0x5a, 0x5e, 0x59, 0x4f, 0x4b, 0x48, 0x4b, 0x54, 0x5c, 0x5c, 0x5e, 0x64, 0x6c, 0x70, 0x6f, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x67, 0x5b, 0x50, 0x49, 0x45, 0x4c, 0x53, 0x53, 0x55, 0x5e, 0x63, 0x61, 0x65, 0x6b, 0x71, 0x75, 0x78, 0x7b, 0x7d, 0x7e, 0x81, 0x82, 0x80, 0x7e, 0x7e, 0x7d, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x7e, 0x80, 0x83, 0x84, 0x85, 0x87, 0x89, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x86, 0x85, 0x84, 0x83, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x85, 0x84, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x89, 0x8a, 0x8a, 0x89, 0x86, 0x85, 0x86, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x89, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x75, 0x74, 0x72, 0x72, 0x71, 0x6e, 0x6c, 0x6a, 0x68, 0x68, 0x68, 0x65, 0x65, 0x64, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x55, 0x52, 0x4d, 0x4a, 0x4a, 0x44, 0x40, 0x4d, 0x5f, 0x64, 0x67, 0x68, 0x67, 0x6b, 0x72, 0x74, 0x71, 0x6e, 0x66, 0x66, 0x6e, 0x6e, 0x65, 0x60, 0x64, 0x64, 0x68, 0x73, 0x7f, 0x81, 0x7b, 0x7b, 0x82, 0x79, 0x76, 0x6f, 0x75, 0x72, 0x66, 0x62, 0x5b, 0x5c, 0x54, 0x4c, 0x4a, 0x4b, 0x4d, 0x4f, 0x51, 0x4d, 0x4a, 0x46, 0x48, 0x50, 0x5c, 0x68, 0x70, 0x71, 0x6c, 0x64, 0x5c, 0x59, 0x5a, 0x5b, 0x5a, 0x5c, 0x60, 0x61, 0x59, 0x48, 0x38, 0x32, 0x34, 0x42, 0x42, 0x3f, 0x3d, 0x3f, 0x46, 0x4b, 0x4d, 0x54, 0x4a, 0x3b, 0x33, 0x3c, 0x4a, 0x4b, 0x43, 0x3c, 0x3d, 0x39, 0x30, 0x2c, 0x33, 0x43, 0x4f, 0x4d, 0x51, 0x56, 0x5f, 0x68, 0x62, 0x59, 0x5a, 0x4b, 0x47, 0x42, 0x42, 0x4e, 0x59, 0x54, 0x48, 0x3f, 0x3a, 0x37, 0x48, 0x64, 0x6f, 0x60, 0x4f, 0x40, 0x43, 0x52, 0x5c, 0x54, 0x47, 0x3f, 0x38, 0x3b, 0x2e, 0x28, 0x32, 0x3f, 0x46, 0x4a, 0x4e, 0x47, 0x36, 0x33, 0x32, 0x30, 0x2b, 0x22, 0x29, 0x38, 0x47, 0x4e, 0x46, 0x3c, 0x36, 0x3f, 0x50, 0x51, 0x53, 0x4b, 0x4a, 0x52, 0x4c, 0x41, 0x45, 0x56, 0x67, 0x66, 0x60, 0x59, 0x3c, 0x26, 0x2d, 0x3e, 0x48, 0x4d, 0x49, 0x45, 0x46, 0x45, 0x40, 0x3d, 0x34, 0x34, 0x45, 0x5b, 0x66, 0x67, 0x66, 0x60, 0x51, 0x46, 0x44, 0x44, 0x48, 0x47, 0x3f, 0x3e, 0x38, 0x30, 0x2c, 0x2d, 0x31, 0x35, 0x37, 0x34, 0x39, 0x3c, 0x3a, 0x35, 0x31, 0x32, 0x34, 0x37, 0x3b, 0x3e, 0x3e, 0x3b, 0x3a, 0x3b, 0x3e, 0x42, 0x3d, 0x38, 0x38, 0x3c, 0x3d, 0x38, 0x32, 0x34, 0x34, 0x35, 0x36, 0x36, 0x36, 0x37, 0x38, 0x37, 0x2e, 0x28, 0x2a, 0x2d, 0x2d, 0x2e, 0x2f, 0x29, 0x2e, 0x33, 0x36, 0x35, 0x31, 0x2d, 0x2b, 0x29, 0x2a, 0x2b, 0x2c, 0x2c, 0x27, 0x21, 0x1d, 0x19, 0x1a, 0x1a, 0x19, 0x18, 0x18, 0x18, 0x18, 0x1a, 0x1a, 0x1a, 0x19, 0x17, 0x18, 0x19, 0x1b, 0x18, 0x18, 0x19, 0x19, 0x18, 0x18, 0x19, 0x1a, 0x19, 0x1d, 0x21, 0x26, 0x2b, 0x2f, 0x33, 0x36, 0x3a, 0x3c, 0x39, 0x31, 0x2a, 0x26, 0x25, 0x24, 0x20, 0x21, 0x23, 0x24, 0x25, 0x25, 0x23, 0x22, 0x24, 0x25, 0x25, 0x25, 0x23, 0x23, 0x25, 0x28, 0x33, 0x37, 0x3a, 0x3b, 0x38, 0x34, 0x33, 0x33, 0x34, 0x35, 0x37, 0x39, 0x3b, 0x3c, 0x3b, 0x3a, 0x45, 0x43, 0x43, 0x43, 0x43, 0x44, 0x49, 0x4f, 0x55, 0x57, 0x59, 0x58, 0x55, 0x56, 0x59, 0x5d, 0x59, 0x58, 0x56, 0x55, 0x58, 0x5c, 0x5c, 0x59, 0x4c, 0x47, 0x46, 0x42, 0x36, 0x2e, 0x2c, 0x29, 0x28, 0x2a, 0x2d, 0x2e, 0x2d, 0x2e, 0x2f, 0x30, 0x2e, 0x2c, 0x29, 0x2a, 0x2a, 0x29, 0x25, 0x21, 0x1f, 0x1f, 0x22, 0x2a, 0x31, 0x33, 0x2e, 0x29, 0x29, 0x2d, 0x2e, 0x31, 0x3d, 0x4d, 0x50, 0x49, 0x3f, 0x3d, 0x3d, 0x3e, 0x3e, 0x3b, 0x34, 0x2e, 0x29, 0x2b, 0x2c, 0x36, 0x46, 0x4c, 0x4a, 0x4b, 0x4f, 0x5c, 0x69, 0x6d, 0x6d, 0x69, 0x62, 0x5b, 0x59, 0x5b, 0x5a, 0x5a, 0x66, 0x79, 0x83, 0x82, 0x7c, 0x7b, 0x76, 0x6b, 0x64, 0x64, 0x67, 0x69, 0x5e, 0x5a, 0x5a, 0x57, 0x53, 0x56, 0x55, 0x4c, 0x56, 0x5c, 0x57, 0x4a, 0x41, 0x3c, 0x3e, 0x47, 0x48, 0x4b, 0x4e, 0x4f, 0x51, 0x55, 0x5c, 0x62, 0x6f, 0x6e, 0x6b, 0x69, 0x6c, 0x6e, 0x68, 0x60, 0x51, 0x4b, 0x4e, 0x55, 0x55, 0x57, 0x5d, 0x60, 0x62, 0x66, 0x6d, 0x73, 0x77, 0x7a, 0x7d, 0x7e, 0x7e, 0x81, 0x82, 0x81, 0x80, 0x80, 0x80, 0x7e, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x88, 0x87, 0x86, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x87, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x89, 0x8a, 0x8b, 0x8a, 0x87, 0x86, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x79, 0x77, 0x76, 0x75, 0x75, 0x74, 0x72, 0x70, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x65, 0x65, 0x64, 0x62, 0x61, 0x5f, 0x5e, 0x5e, 0x5e, 0x5d, 0x5c, 0x5a, 0x58, 0x56, 0x55, 0x54, 0x53, 0x4d, 0x49, 0x46, 0x41, 0x43, 0x56, 0x6c, 0x63, 0x65, 0x62, 0x5c, 0x5d, 0x67, 0x6d, 0x6e, 0x65, 0x64, 0x67, 0x6c, 0x69, 0x5f, 0x5a, 0x5c, 0x69, 0x78, 0x8c, 0x97, 0x8d, 0x7a, 0x70, 0x71, 0x77, 0x73, 0x69, 0x6c, 0x6b, 0x63, 0x64, 0x5f, 0x54, 0x4f, 0x47, 0x43, 0x44, 0x48, 0x4a, 0x4a, 0x4c, 0x47, 0x41, 0x42, 0x4a, 0x58, 0x65, 0x6d, 0x78, 0x79, 0x75, 0x6d, 0x6a, 0x6a, 0x64, 0x5c, 0x58, 0x57, 0x57, 0x53, 0x48, 0x3a, 0x37, 0x3b, 0x3f, 0x3a, 0x34, 0x32, 0x36, 0x3e, 0x45, 0x48, 0x4a, 0x47, 0x3f, 0x37, 0x37, 0x3c, 0x3b, 0x34, 0x32, 0x36, 0x38, 0x33, 0x2e, 0x31, 0x3b, 0x44, 0x4b, 0x51, 0x58, 0x5d, 0x61, 0x61, 0x64, 0x6a, 0x58, 0x4a, 0x3c, 0x3b, 0x47, 0x4e, 0x46, 0x38, 0x3f, 0x3f, 0x39, 0x44, 0x63, 0x6d, 0x5e, 0x52, 0x44, 0x46, 0x56, 0x62, 0x58, 0x46, 0x3c, 0x37, 0x2f, 0x28, 0x2a, 0x38, 0x46, 0x4a, 0x4c, 0x50, 0x4f, 0x3c, 0x35, 0x32, 0x33, 0x31, 0x29, 0x2d, 0x37, 0x47, 0x4f, 0x49, 0x40, 0x3b, 0x42, 0x52, 0x52, 0x52, 0x49, 0x46, 0x4b, 0x4a, 0x49, 0x51, 0x56, 0x63, 0x63, 0x5d, 0x54, 0x3a, 0x25, 0x2a, 0x3f, 0x48, 0x4c, 0x45, 0x3d, 0x3b, 0x3a, 0x37, 0x3b, 0x32, 0x33, 0x45, 0x5b, 0x66, 0x68, 0x69, 0x62, 0x54, 0x50, 0x54, 0x52, 0x48, 0x36, 0x24, 0x48, 0x3e, 0x33, 0x2c, 0x2c, 0x30, 0x33, 0x34, 0x35, 0x3b, 0x40, 0x3e, 0x36, 0x2e, 0x2c, 0x2c, 0x3a, 0x40, 0x46, 0x46, 0x41, 0x3c, 0x3b, 0x3c, 0x44, 0x3e, 0x39, 0x3b, 0x40, 0x40, 0x3a, 0x34, 0x37, 0x36, 0x35, 0x34, 0x35, 0x34, 0x2f, 0x2b, 0x2a, 0x2c, 0x2a, 0x26, 0x26, 0x2a, 0x2c, 0x2a, 0x2e, 0x32, 0x37, 0x38, 0x35, 0x2f, 0x29, 0x25, 0x28, 0x27, 0x25, 0x23, 0x21, 0x1d, 0x1a, 0x17, 0x1b, 0x1b, 0x1a, 0x19, 0x19, 0x18, 0x17, 0x17, 0x18, 0x19, 0x1a, 0x1a, 0x19, 0x18, 0x18, 0x18, 0x1a, 0x1a, 0x1a, 0x18, 0x17, 0x18, 0x19, 0x1b, 0x1a, 0x1e, 0x22, 0x27, 0x2b, 0x30, 0x34, 0x36, 0x3c, 0x3f, 0x3d, 0x34, 0x2c, 0x27, 0x26, 0x25, 0x1e, 0x20, 0x22, 0x24, 0x24, 0x23, 0x21, 0x20, 0x22, 0x25, 0x27, 0x26, 0x25, 0x26, 0x28, 0x29, 0x33, 0x37, 0x3a, 0x3b, 0x38, 0x34, 0x31, 0x30, 0x31, 0x31, 0x33, 0x33, 0x34, 0x35, 0x38, 0x39, 0x43, 0x42, 0x41, 0x40, 0x3f, 0x40, 0x46, 0x4c, 0x4a, 0x4d, 0x50, 0x52, 0x54, 0x59, 0x60, 0x66, 0x6a, 0x69, 0x66, 0x62, 0x60, 0x5f, 0x5a, 0x55, 0x48, 0x46, 0x4b, 0x4d, 0x43, 0x39, 0x32, 0x2b, 0x22, 0x24, 0x28, 0x2a, 0x2b, 0x2a, 0x2a, 0x2a, 0x2e, 0x2b, 0x28, 0x27, 0x27, 0x26, 0x23, 0x1f, 0x1e, 0x1e, 0x21, 0x29, 0x31, 0x33, 0x2f, 0x29, 0x27, 0x2c, 0x30, 0x33, 0x3b, 0x44, 0x41, 0x37, 0x37, 0x3d, 0x42, 0x40, 0x37, 0x30, 0x2e, 0x2f, 0x2c, 0x2f, 0x32, 0x3b, 0x46, 0x48, 0x49, 0x51, 0x5c, 0x60, 0x61, 0x60, 0x61, 0x63, 0x5e, 0x55, 0x52, 0x55, 0x56, 0x58, 0x66, 0x79, 0x81, 0x7d, 0x80, 0x7f, 0x77, 0x6a, 0x5e, 0x57, 0x56, 0x55, 0x55, 0x54, 0x57, 0x57, 0x52, 0x50, 0x4d, 0x44, 0x49, 0x52, 0x51, 0x4b, 0x4a, 0x4c, 0x4f, 0x56, 0x6c, 0x6c, 0x6c, 0x6a, 0x68, 0x67, 0x69, 0x6c, 0x6c, 0x6f, 0x70, 0x6e, 0x70, 0x71, 0x6b, 0x61, 0x51, 0x47, 0x48, 0x52, 0x57, 0x5b, 0x60, 0x60, 0x63, 0x67, 0x6e, 0x74, 0x78, 0x7b, 0x7d, 0x7f, 0x7d, 0x80, 0x82, 0x81, 0x81, 0x83, 0x83, 0x82, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x81, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x86, 0x88, 0x8b, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x89, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x85, 0x84, 0x84, 0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x89, 0x8a, 0x8b, 0x89, 0x86, 0x84, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x70, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x66, 0x65, 0x64, 0x62, 0x60, 0x5f, 0x5d, 0x5d, 0x5c, 0x5b, 0x5a, 0x58, 0x56, 0x54, 0x53, 0x52, 0x52, 0x4d, 0x49, 0x46, 0x41, 0x44, 0x57, 0x6c, 0x5c, 0x5f, 0x5f, 0x5a, 0x5a, 0x60, 0x64, 0x64, 0x5a, 0x62, 0x68, 0x67, 0x62, 0x60, 0x60, 0x61, 0x68, 0x72, 0x7c, 0x80, 0x7e, 0x7a, 0x76, 0x74, 0x75, 0x72, 0x67, 0x68, 0x68, 0x63, 0x65, 0x60, 0x4f, 0x4b, 0x44, 0x3e, 0x3d, 0x40, 0x42, 0x43, 0x45, 0x47, 0x4b, 0x51, 0x56, 0x56, 0x53, 0x4f, 0x52, 0x5d, 0x6a, 0x75, 0x7e, 0x7f, 0x74, 0x65, 0x5b, 0x50, 0x45, 0x40, 0x3c, 0x39, 0x3d, 0x43, 0x43, 0x3a, 0x31, 0x2e, 0x33, 0x3a, 0x3f, 0x41, 0x41, 0x44, 0x45, 0x43, 0x42, 0x40, 0x38, 0x2f, 0x33, 0x36, 0x37, 0x35, 0x30, 0x2d, 0x31, 0x36, 0x41, 0x41, 0x43, 0x47, 0x51, 0x61, 0x6f, 0x75, 0x61, 0x49, 0x36, 0x3c, 0x48, 0x49, 0x3e, 0x35, 0x39, 0x3a, 0x38, 0x49, 0x6b, 0x75, 0x65, 0x59, 0x41, 0x43, 0x53, 0x62, 0x5b, 0x4b, 0x41, 0x3b, 0x27, 0x23, 0x2a, 0x3c, 0x4a, 0x4d, 0x4d, 0x50, 0x4a, 0x38, 0x33, 0x31, 0x35, 0x36, 0x2d, 0x30, 0x3f, 0x4c, 0x52, 0x4e, 0x49, 0x45, 0x4a, 0x56, 0x52, 0x50, 0x49, 0x44, 0x43, 0x44, 0x4a, 0x55, 0x5a, 0x5f, 0x5c, 0x56, 0x4e, 0x3b, 0x2f, 0x35, 0x43, 0x46, 0x42, 0x34, 0x29, 0x2a, 0x30, 0x35, 0x25, 0x23, 0x2b, 0x3f, 0x51, 0x56, 0x53, 0x4f, 0x2c, 0x23, 0x2a, 0x3f, 0x49, 0x46, 0x39, 0x2a, 0x50, 0x45, 0x38, 0x30, 0x2f, 0x31, 0x32, 0x32, 0x32, 0x38, 0x3e, 0x3c, 0x35, 0x2e, 0x2b, 0x2b, 0x35, 0x3b, 0x41, 0x41, 0x3d, 0x3a, 0x3b, 0x3d, 0x44, 0x3e, 0x3b, 0x3d, 0x41, 0x40, 0x3d, 0x3a, 0x3e, 0x3b, 0x36, 0x30, 0x2e, 0x2e, 0x2a, 0x26, 0x2a, 0x31, 0x31, 0x29, 0x25, 0x28, 0x29, 0x27, 0x2f, 0x32, 0x35, 0x36, 0x32, 0x2d, 0x27, 0x24, 0x26, 0x25, 0x22, 0x1f, 0x1d, 0x1c, 0x1b, 0x1b, 0x1d, 0x1c, 0x1b, 0x1a, 0x1a, 0x1a, 0x19, 0x18, 0x16, 0x18, 0x1a, 0x1b, 0x1a, 0x18, 0x16, 0x16, 0x1a, 0x1b, 0x1b, 0x1a, 0x19, 0x19, 0x1a, 0x1c, 0x1c, 0x1f, 0x24, 0x28, 0x2c, 0x30, 0x34, 0x36, 0x3c, 0x3f, 0x3d, 0x34, 0x2b, 0x25, 0x24, 0x23, 0x1e, 0x20, 0x22, 0x23, 0x22, 0x20, 0x1f, 0x1f, 0x21, 0x24, 0x26, 0x25, 0x26, 0x29, 0x2a, 0x2a, 0x2d, 0x30, 0x33, 0x34, 0x32, 0x30, 0x2e, 0x2d, 0x2f, 0x2f, 0x2e, 0x2b, 0x29, 0x2d, 0x36, 0x3d, 0x42, 0x41, 0x40, 0x40, 0x3e, 0x3f, 0x45, 0x4c, 0x52, 0x54, 0x55, 0x54, 0x52, 0x53, 0x57, 0x5b, 0x60, 0x61, 0x62, 0x62, 0x62, 0x61, 0x5b, 0x55, 0x4c, 0x41, 0x3f, 0x45, 0x47, 0x43, 0x39, 0x2b, 0x23, 0x25, 0x28, 0x2a, 0x2b, 0x2a, 0x29, 0x28, 0x27, 0x27, 0x27, 0x28, 0x28, 0x25, 0x1f, 0x1a, 0x21, 0x20, 0x21, 0x26, 0x2c, 0x2e, 0x2c, 0x28, 0x29, 0x2b, 0x2c, 0x2e, 0x34, 0x3b, 0x3e, 0x3d, 0x40, 0x41, 0x41, 0x3f, 0x3a, 0x35, 0x32, 0x30, 0x2e, 0x2f, 0x2f, 0x34, 0x3c, 0x40, 0x4d, 0x61, 0x72, 0x78, 0x73, 0x61, 0x52, 0x51, 0x54, 0x55, 0x59, 0x58, 0x56, 0x59, 0x66, 0x77, 0x81, 0x83, 0x83, 0x81, 0x77, 0x68, 0x5a, 0x52, 0x50, 0x4f, 0x53, 0x4e, 0x50, 0x58, 0x5c, 0x5e, 0x59, 0x4d, 0x46, 0x50, 0x51, 0x50, 0x57, 0x5e, 0x62, 0x67, 0x62, 0x61, 0x62, 0x6a, 0x73, 0x77, 0x74, 0x6f, 0x7c, 0x7f, 0x7b, 0x71, 0x6c, 0x6e, 0x6c, 0x66, 0x56, 0x49, 0x48, 0x52, 0x59, 0x5e, 0x61, 0x5e, 0x65, 0x69, 0x6f, 0x74, 0x78, 0x7b, 0x7e, 0x7f, 0x7d, 0x81, 0x83, 0x82, 0x82, 0x85, 0x86, 0x85, 0x84, 0x85, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x81, 0x80, 0x80, 0x81, 0x82, 0x84, 0x87, 0x88, 0x8a, 0x8c, 0x8e, 0x90, 0x90, 0x91, 0x92, 0x94, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x91, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x87, 0x87, 0x88, 0x88, 0x8c, 0x8a, 0x88, 0x87, 0x88, 0x89, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x88, 0x86, 0x83, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x77, 0x75, 0x76, 0x75, 0x74, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x65, 0x63, 0x62, 0x5f, 0x5e, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x56, 0x54, 0x52, 0x50, 0x50, 0x4e, 0x4c, 0x4a, 0x47, 0x42, 0x42, 0x4f, 0x5f, 0x4d, 0x52, 0x58, 0x5c, 0x5c, 0x58, 0x53, 0x50, 0x57, 0x5f, 0x64, 0x60, 0x5c, 0x60, 0x65, 0x67, 0x69, 0x66, 0x65, 0x69, 0x75, 0x7e, 0x7d, 0x77, 0x72, 0x72, 0x6a, 0x6c, 0x6c, 0x65, 0x63, 0x5b, 0x53, 0x4e, 0x49, 0x44, 0x40, 0x3d, 0x3e, 0x42, 0x48, 0x45, 0x44, 0x47, 0x4c, 0x50, 0x50, 0x4f, 0x52, 0x59, 0x64, 0x72, 0x7f, 0x85, 0x80, 0x78, 0x77, 0x65, 0x4e, 0x42, 0x3f, 0x41, 0x45, 0x48, 0x47, 0x3e, 0x35, 0x33, 0x35, 0x38, 0x3a, 0x3c, 0x40, 0x43, 0x47, 0x4c, 0x4f, 0x4d, 0x43, 0x38, 0x38, 0x37, 0x37, 0x39, 0x37, 0x35, 0x34, 0x36, 0x33, 0x2f, 0x36, 0x44, 0x58, 0x6e, 0x76, 0x6e, 0x5f, 0x47, 0x3b, 0x47, 0x54, 0x52, 0x48, 0x44, 0x40, 0x3f, 0x43, 0x59, 0x72, 0x72, 0x5d, 0x4c, 0x38, 0x3b, 0x4b, 0x5b, 0x5b, 0x52, 0x47, 0x3d, 0x23, 0x1f, 0x25, 0x37, 0x46, 0x49, 0x4a, 0x4c, 0x41, 0x37, 0x38, 0x38, 0x39, 0x39, 0x31, 0x35, 0x46, 0x50, 0x52, 0x4e, 0x4a, 0x47, 0x4a, 0x54, 0x4e, 0x4b, 0x47, 0x42, 0x3e, 0x3e, 0x45, 0x4d, 0x56, 0x5b, 0x5b, 0x57, 0x4b, 0x37, 0x2c, 0x30, 0x40, 0x43, 0x41, 0x37, 0x2e, 0x2b, 0x2b, 0x2c, 0x23, 0x2e, 0x3f, 0x52, 0x5e, 0x5d, 0x54, 0x4c, 0x3a, 0x2b, 0x2c, 0x3c, 0x45, 0x43, 0x3d, 0x36, 0x4a, 0x42, 0x38, 0x32, 0x31, 0x33, 0x34, 0x33, 0x30, 0x34, 0x37, 0x36, 0x31, 0x2d, 0x2c, 0x2e, 0x2e, 0x33, 0x37, 0x38, 0x35, 0x33, 0x36, 0x39, 0x40, 0x3a, 0x37, 0x3a, 0x3c, 0x3c, 0x3d, 0x3f, 0x44, 0x44, 0x3e, 0x34, 0x2d, 0x2b, 0x2b, 0x29, 0x2c, 0x2e, 0x2e, 0x2b, 0x27, 0x27, 0x29, 0x2b, 0x2c, 0x2e, 0x30, 0x2f, 0x2e, 0x2b, 0x2a, 0x29, 0x2c, 0x2a, 0x27, 0x23, 0x1f, 0x1d, 0x1d, 0x1d, 0x1c, 0x1a, 0x19, 0x19, 0x1a, 0x1a, 0x19, 0x18, 0x17, 0x18, 0x19, 0x19, 0x18, 0x16, 0x16, 0x16, 0x18, 0x1b, 0x1d, 0x1e, 0x1e, 0x1c, 0x1b, 0x1b, 0x1d, 0x20, 0x24, 0x28, 0x2c, 0x2f, 0x33, 0x35, 0x38, 0x3b, 0x3a, 0x31, 0x26, 0x20, 0x1f, 0x1e, 0x1d, 0x1f, 0x21, 0x21, 0x1f, 0x1e, 0x1d, 0x1e, 0x20, 0x21, 0x21, 0x21, 0x24, 0x2a, 0x2c, 0x2b, 0x2e, 0x2e, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x30, 0x32, 0x32, 0x2d, 0x28, 0x29, 0x33, 0x3b, 0x3b, 0x3b, 0x3b, 0x3c, 0x3a, 0x3b, 0x42, 0x4a, 0x5c, 0x5e, 0x5e, 0x5b, 0x56, 0x54, 0x56, 0x58, 0x59, 0x59, 0x58, 0x58, 0x5a, 0x5d, 0x5c, 0x59, 0x4f, 0x3f, 0x37, 0x3b, 0x3e, 0x3e, 0x35, 0x28, 0x27, 0x27, 0x27, 0x27, 0x28, 0x28, 0x27, 0x27, 0x23, 0x25, 0x28, 0x2a, 0x29, 0x24, 0x1f, 0x1a, 0x24, 0x23, 0x23, 0x25, 0x29, 0x2c, 0x2e, 0x2f, 0x30, 0x2c, 0x29, 0x2a, 0x2b, 0x31, 0x3c, 0x46, 0x47, 0x40, 0x38, 0x37, 0x3a, 0x3b, 0x37, 0x32, 0x37, 0x35, 0x32, 0x34, 0x3a, 0x40, 0x54, 0x70, 0x8b, 0x91, 0x8d, 0x79, 0x64, 0x58, 0x4f, 0x46, 0x46, 0x43, 0x43, 0x47, 0x52, 0x60, 0x6c, 0x73, 0x7a, 0x78, 0x6f, 0x61, 0x56, 0x54, 0x57, 0x5a, 0x52, 0x48, 0x48, 0x4f, 0x55, 0x59, 0x55, 0x4b, 0x53, 0x59, 0x54, 0x4a, 0x4b, 0x4d, 0x4d, 0x4e, 0x3b, 0x3c, 0x41, 0x4e, 0x5f, 0x6a, 0x6c, 0x6a, 0x7f, 0x83, 0x7d, 0x6c, 0x62, 0x64, 0x68, 0x67, 0x5c, 0x50, 0x4e, 0x55, 0x5a, 0x5d, 0x60, 0x5e, 0x68, 0x6c, 0x70, 0x75, 0x78, 0x7b, 0x7e, 0x80, 0x80, 0x84, 0x85, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x86, 0x88, 0x8b, 0x8c, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x94, 0x96, 0x98, 0x99, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x88, 0x89, 0x8c, 0x8a, 0x88, 0x87, 0x87, 0x88, 0x88, 0x88, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x89, 0x88, 0x87, 0x86, 0x85, 0x84, 0x82, 0x81, 0x82, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x86, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7b, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x65, 0x64, 0x62, 0x60, 0x5e, 0x5c, 0x5a, 0x59, 0x58, 0x57, 0x56, 0x54, 0x52, 0x50, 0x4f, 0x4e, 0x4c, 0x4a, 0x48, 0x45, 0x40, 0x40, 0x4a, 0x56, 0x4f, 0x51, 0x59, 0x63, 0x61, 0x54, 0x49, 0x45, 0x4b, 0x4f, 0x56, 0x5d, 0x61, 0x64, 0x68, 0x6c, 0x73, 0x6d, 0x69, 0x6c, 0x6d, 0x67, 0x60, 0x5c, 0x68, 0x6a, 0x63, 0x65, 0x63, 0x5a, 0x55, 0x4a, 0x49, 0x4e, 0x59, 0x61, 0x5a, 0x48, 0x3c, 0x3c, 0x40, 0x3b, 0x37, 0x39, 0x44, 0x50, 0x59, 0x5e, 0x6d, 0x69, 0x66, 0x68, 0x6d, 0x70, 0x73, 0x75, 0x69, 0x5d, 0x4f, 0x47, 0x4a, 0x4f, 0x4f, 0x4a, 0x42, 0x3d, 0x39, 0x37, 0x34, 0x32, 0x34, 0x38, 0x37, 0x3c, 0x41, 0x43, 0x42, 0x42, 0x41, 0x40, 0x3a, 0x34, 0x30, 0x33, 0x35, 0x33, 0x30, 0x2e, 0x2b, 0x2d, 0x3a, 0x49, 0x56, 0x66, 0x67, 0x56, 0x4c, 0x40, 0x3b, 0x44, 0x4e, 0x4e, 0x4b, 0x4a, 0x52, 0x4b, 0x56, 0x6e, 0x79, 0x6e, 0x59, 0x46, 0x34, 0x36, 0x44, 0x54, 0x58, 0x54, 0x48, 0x38, 0x20, 0x1b, 0x22, 0x35, 0x45, 0x49, 0x47, 0x48, 0x49, 0x48, 0x52, 0x4f, 0x47, 0x3f, 0x38, 0x3e, 0x45, 0x4e, 0x4e, 0x49, 0x45, 0x41, 0x45, 0x50, 0x4d, 0x45, 0x40, 0x3f, 0x3c, 0x3e, 0x45, 0x49, 0x4f, 0x54, 0x56, 0x4f, 0x3e, 0x2d, 0x2b, 0x34, 0x45, 0x48, 0x4a, 0x48, 0x43, 0x37, 0x28, 0x1c, 0x20, 0x32, 0x46, 0x52, 0x57, 0x58, 0x52, 0x4a, 0x38, 0x2e, 0x36, 0x49, 0x4b, 0x3d, 0x2f, 0x25, 0x3f, 0x39, 0x33, 0x30, 0x32, 0x34, 0x35, 0x35, 0x36, 0x37, 0x36, 0x31, 0x2b, 0x28, 0x28, 0x2a, 0x2c, 0x31, 0x35, 0x35, 0x32, 0x30, 0x31, 0x33, 0x33, 0x2f, 0x2d, 0x31, 0x34, 0x38, 0x3e, 0x45, 0x46, 0x4a, 0x47, 0x3c, 0x31, 0x2d, 0x2d, 0x2d, 0x29, 0x25, 0x25, 0x29, 0x29, 0x26, 0x2a, 0x32, 0x32, 0x32, 0x30, 0x2e, 0x2c, 0x2b, 0x2c, 0x2e, 0x32, 0x30, 0x2b, 0x25, 0x1f, 0x1b, 0x19, 0x18, 0x18, 0x17, 0x16, 0x17, 0x19, 0x19, 0x18, 0x17, 0x18, 0x18, 0x18, 0x17, 0x16, 0x15, 0x16, 0x17, 0x16, 0x1a, 0x1f, 0x22, 0x21, 0x1e, 0x1c, 0x1a, 0x1d, 0x20, 0x24, 0x28, 0x2b, 0x2f, 0x32, 0x34, 0x37, 0x3a, 0x39, 0x30, 0x25, 0x1f, 0x1d, 0x1d, 0x1c, 0x1e, 0x20, 0x1f, 0x1d, 0x1c, 0x1c, 0x1d, 0x1f, 0x1f, 0x1d, 0x1c, 0x21, 0x29, 0x2d, 0x2c, 0x35, 0x33, 0x31, 0x2e, 0x2d, 0x2e, 0x30, 0x32, 0x30, 0x35, 0x38, 0x33, 0x2b, 0x27, 0x2c, 0x33, 0x2f, 0x30, 0x32, 0x33, 0x32, 0x34, 0x3b, 0x43, 0x51, 0x55, 0x5a, 0x5d, 0x5e, 0x61, 0x66, 0x6b, 0x70, 0x6a, 0x61, 0x59, 0x59, 0x5e, 0x61, 0x61, 0x51, 0x43, 0x3c, 0x3b, 0x37, 0x34, 0x2f, 0x27, 0x25, 0x23, 0x21, 0x20, 0x20, 0x21, 0x21, 0x22, 0x24, 0x27, 0x2a, 0x2b, 0x28, 0x25, 0x21, 0x1f, 0x23, 0x23, 0x23, 0x24, 0x27, 0x2c, 0x32, 0x37, 0x32, 0x2e, 0x2e, 0x2e, 0x29, 0x25, 0x2b, 0x36, 0x3c, 0x3a, 0x37, 0x33, 0x30, 0x31, 0x37, 0x3c, 0x37, 0x37, 0x38, 0x40, 0x4c, 0x57, 0x72, 0x92, 0xab, 0xa6, 0x9e, 0x99, 0x99, 0x8b, 0x62, 0x3a, 0x35, 0x39, 0x42, 0x4f, 0x58, 0x5e, 0x63, 0x67, 0x6b, 0x6c, 0x69, 0x60, 0x59, 0x58, 0x59, 0x5b, 0x57, 0x4e, 0x4d, 0x50, 0x4f, 0x52, 0x54, 0x4f, 0x63, 0x68, 0x62, 0x56, 0x55, 0x58, 0x59, 0x5b, 0x64, 0x62, 0x5f, 0x5c, 0x59, 0x59, 0x5a, 0x5c, 0x66, 0x71, 0x74, 0x67, 0x5c, 0x5b, 0x5b, 0x59, 0x58, 0x4e, 0x4e, 0x56, 0x58, 0x5c, 0x61, 0x61, 0x6b, 0x6d, 0x71, 0x75, 0x78, 0x7c, 0x7f, 0x81, 0x83, 0x86, 0x87, 0x86, 0x85, 0x87, 0x88, 0x87, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b, 0x8a, 0x87, 0x87, 0x87, 0x87, 0x89, 0x8b, 0x8e, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x95, 0x98, 0x9b, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9a, 0x99, 0x98, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8d, 0x8d, 0x8e, 0x8b, 0x89, 0x87, 0x86, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x8b, 0x89, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x76, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x64, 0x63, 0x61, 0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x57, 0x56, 0x55, 0x53, 0x51, 0x4f, 0x4d, 0x4d, 0x4d, 0x49, 0x44, 0x40, 0x3d, 0x3f, 0x4a, 0x56, 0x54, 0x51, 0x56, 0x5f, 0x5b, 0x4a, 0x3d, 0x3b, 0x35, 0x38, 0x46, 0x5d, 0x6b, 0x6d, 0x6f, 0x75, 0x74, 0x72, 0x76, 0x7a, 0x6d, 0x5b, 0x58, 0x63, 0x6b, 0x6c, 0x63, 0x63, 0x5f, 0x56, 0x52, 0x47, 0x43, 0x45, 0x4d, 0x55, 0x4d, 0x3c, 0x36, 0x3c, 0x38, 0x3d, 0x48, 0x57, 0x64, 0x69, 0x67, 0x63, 0x59, 0x53, 0x4f, 0x4f, 0x4b, 0x46, 0x47, 0x4d, 0x51, 0x51, 0x4e, 0x4d, 0x51, 0x54, 0x4a, 0x3d, 0x39, 0x39, 0x39, 0x37, 0x30, 0x2a, 0x2d, 0x34, 0x35, 0x40, 0x47, 0x40, 0x35, 0x34, 0x41, 0x4f, 0x49, 0x3e, 0x35, 0x35, 0x36, 0x31, 0x29, 0x24, 0x2d, 0x30, 0x3b, 0x3c, 0x38, 0x43, 0x4c, 0x42, 0x45, 0x42, 0x3f, 0x41, 0x45, 0x4a, 0x4d, 0x4e, 0x48, 0x3e, 0x4f, 0x6c, 0x71, 0x68, 0x5a, 0x4c, 0x36, 0x38, 0x42, 0x4f, 0x55, 0x54, 0x45, 0x30, 0x1e, 0x1b, 0x24, 0x3b, 0x4d, 0x4f, 0x4b, 0x49, 0x4a, 0x50, 0x5f, 0x58, 0x46, 0x38, 0x30, 0x39, 0x42, 0x4b, 0x4c, 0x46, 0x41, 0x3e, 0x44, 0x51, 0x4f, 0x42, 0x3b, 0x3a, 0x3b, 0x42, 0x4b, 0x4d, 0x50, 0x50, 0x4a, 0x3c, 0x2a, 0x25, 0x38, 0x50, 0x63, 0x60, 0x5c, 0x5b, 0x57, 0x49, 0x34, 0x22, 0x26, 0x3a, 0x4a, 0x4e, 0x50, 0x56, 0x57, 0x53, 0x47, 0x3a, 0x3e, 0x4c, 0x4a, 0x3b, 0x30, 0x2a, 0x34, 0x2f, 0x2e, 0x32, 0x31, 0x2d, 0x2e, 0x33, 0x37, 0x33, 0x2f, 0x2d, 0x2a, 0x26, 0x29, 0x2f, 0x2b, 0x2f, 0x2e, 0x28, 0x28, 0x2d, 0x2e, 0x2b, 0x2c, 0x2e, 0x33, 0x33, 0x2e, 0x2b, 0x32, 0x3c, 0x41, 0x42, 0x3d, 0x32, 0x2a, 0x2a, 0x2d, 0x2e, 0x28, 0x26, 0x25, 0x26, 0x28, 0x2a, 0x2c, 0x2d, 0x2e, 0x2c, 0x2c, 0x2d, 0x2c, 0x2a, 0x2d, 0x33, 0x31, 0x35, 0x37, 0x31, 0x25, 0x1c, 0x1a, 0x1b, 0x20, 0x1e, 0x1a, 0x1a, 0x1b, 0x1b, 0x1a, 0x19, 0x17, 0x17, 0x17, 0x18, 0x18, 0x19, 0x1a, 0x1a, 0x18, 0x1a, 0x1e, 0x20, 0x1f, 0x1e, 0x1d, 0x1d, 0x22, 0x20, 0x21, 0x25, 0x29, 0x2b, 0x2e, 0x31, 0x37, 0x39, 0x3a, 0x35, 0x2b, 0x23, 0x1e, 0x1d, 0x1b, 0x1c, 0x1d, 0x1d, 0x1c, 0x1c, 0x1c, 0x1c, 0x1d, 0x1f, 0x21, 0x21, 0x21, 0x23, 0x28, 0x2d, 0x34, 0x36, 0x37, 0x36, 0x33, 0x31, 0x31, 0x33, 0x2e, 0x31, 0x34, 0x33, 0x2f, 0x2c, 0x2c, 0x2e, 0x2a, 0x2b, 0x2a, 0x28, 0x29, 0x2f, 0x39, 0x42, 0x4a, 0x50, 0x53, 0x54, 0x58, 0x60, 0x66, 0x68, 0x6f, 0x72, 0x6f, 0x65, 0x62, 0x67, 0x6b, 0x6a, 0x5a, 0x40, 0x2f, 0x2e, 0x2d, 0x2a, 0x26, 0x1f, 0x22, 0x22, 0x22, 0x22, 0x21, 0x22, 0x24, 0x25, 0x23, 0x25, 0x28, 0x2a, 0x27, 0x22, 0x20, 0x21, 0x22, 0x24, 0x26, 0x27, 0x28, 0x2d, 0x34, 0x3a, 0x39, 0x39, 0x3c, 0x3d, 0x36, 0x2c, 0x2e, 0x36, 0x30, 0x2f, 0x2f, 0x30, 0x33, 0x36, 0x38, 0x39, 0x34, 0x39, 0x42, 0x4a, 0x4f, 0x57, 0x6b, 0x7e, 0x9c, 0xab, 0xa5, 0xb0, 0xcd, 0xc3, 0x83, 0x3c, 0x34, 0x35, 0x3a, 0x43, 0x4b, 0x50, 0x51, 0x51, 0x54, 0x61, 0x61, 0x56, 0x56, 0x5d, 0x62, 0x67, 0x60, 0x5a, 0x53, 0x4f, 0x50, 0x53, 0x55, 0x56, 0x63, 0x65, 0x65, 0x5d, 0x53, 0x4f, 0x53, 0x58, 0x66, 0x68, 0x68, 0x68, 0x6e, 0x73, 0x70, 0x68, 0x66, 0x61, 0x65, 0x72, 0x77, 0x6f, 0x64, 0x60, 0x5d, 0x4f, 0x50, 0x5d, 0x5e, 0x5b, 0x60, 0x67, 0x6e, 0x6f, 0x72, 0x77, 0x7b, 0x7e, 0x7f, 0x7f, 0x84, 0x85, 0x87, 0x87, 0x86, 0x86, 0x88, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8c, 0x8a, 0x8b, 0x8d, 0x8d, 0x8a, 0x8d, 0x92, 0x93, 0x93, 0x94, 0x95, 0x97, 0x98, 0x9a, 0x9b, 0xa0, 0xa0, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9c, 0x9b, 0x9a, 0x98, 0x95, 0x93, 0x92, 0x92, 0x93, 0x90, 0x8e, 0x8c, 0x8c, 0x8e, 0x8f, 0x8e, 0x8d, 0x8b, 0x8a, 0x89, 0x8a, 0x8b, 0x8a, 0x89, 0x88, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x89, 0x88, 0x87, 0x86, 0x85, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x85, 0x86, 0x86, 0x84, 0x83, 0x85, 0x86, 0x86, 0x85, 0x83, 0x82, 0x84, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x78, 0x79, 0x78, 0x76, 0x74, 0x74, 0x75, 0x75, 0x76, 0x75, 0x73, 0x71, 0x70, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x64, 0x64, 0x63, 0x60, 0x5c, 0x5b, 0x5c, 0x5b, 0x58, 0x57, 0x55, 0x53, 0x50, 0x4f, 0x4e, 0x4f, 0x4f, 0x52, 0x4a, 0x41, 0x3c, 0x3b, 0x3e, 0x45, 0x4b, 0x4d, 0x4e, 0x51, 0x51, 0x4b, 0x43, 0x40, 0x42, 0x3b, 0x48, 0x5f, 0x70, 0x70, 0x63, 0x5b, 0x5c, 0x62, 0x6f, 0x6d, 0x66, 0x61, 0x4f, 0x4a, 0x5e, 0x77, 0x6a, 0x5f, 0x60, 0x67, 0x65, 0x56, 0x46, 0x3e, 0x3e, 0x3b, 0x3d, 0x41, 0x3c, 0x35, 0x37, 0x2b, 0x35, 0x3f, 0x50, 0x65, 0x6c, 0x63, 0x5c, 0x4a, 0x44, 0x41, 0x42, 0x40, 0x3b, 0x3a, 0x3d, 0x4a, 0x44, 0x43, 0x49, 0x4d, 0x48, 0x40, 0x3a, 0x3b, 0x34, 0x2f, 0x2f, 0x2e, 0x2b, 0x29, 0x2a, 0x25, 0x28, 0x2f, 0x39, 0x41, 0x49, 0x52, 0x5a, 0x45, 0x3e, 0x36, 0x30, 0x2d, 0x2a, 0x25, 0x21, 0x2a, 0x38, 0x3f, 0x40, 0x43, 0x42, 0x40, 0x41, 0x49, 0x45, 0x48, 0x3f, 0x4e, 0x4e, 0x50, 0x42, 0x2a, 0x36, 0x58, 0x74, 0x70, 0x60, 0x4d, 0x38, 0x27, 0x1e, 0x2d, 0x4c, 0x58, 0x50, 0x45, 0x3e, 0x2f, 0x26, 0x2c, 0x3c, 0x45, 0x4a, 0x4d, 0x4c, 0x4e, 0x51, 0x4e, 0x43, 0x39, 0x37, 0x39, 0x3b, 0x4e, 0x57, 0x57, 0x4b, 0x41, 0x41, 0x45, 0x44, 0x48, 0x41, 0x43, 0x42, 0x3b, 0x40, 0x44, 0x3b, 0x3a, 0x45, 0x4a, 0x3d, 0x2a, 0x2a, 0x46, 0x63, 0x6c, 0x59, 0x47, 0x43, 0x47, 0x44, 0x35, 0x26, 0x31, 0x3e, 0x50, 0x5a, 0x5c, 0x5e, 0x57, 0x46, 0x28, 0x2f, 0x44, 0x51, 0x4c, 0x47, 0x40, 0x31, 0x37, 0x2d, 0x26, 0x26, 0x27, 0x25, 0x26, 0x2a, 0x33, 0x2f, 0x2b, 0x29, 0x24, 0x22, 0x25, 0x2b, 0x29, 0x31, 0x34, 0x2f, 0x2c, 0x2e, 0x2f, 0x2c, 0x2f, 0x30, 0x32, 0x33, 0x31, 0x2e, 0x32, 0x38, 0x39, 0x36, 0x30, 0x29, 0x28, 0x2b, 0x2c, 0x29, 0x2b, 0x29, 0x27, 0x27, 0x28, 0x29, 0x2a, 0x2a, 0x26, 0x24, 0x25, 0x28, 0x29, 0x29, 0x2d, 0x32, 0x2e, 0x30, 0x30, 0x2d, 0x27, 0x24, 0x25, 0x28, 0x26, 0x22, 0x1d, 0x1b, 0x1a, 0x19, 0x18, 0x16, 0x17, 0x17, 0x16, 0x16, 0x17, 0x17, 0x18, 0x18, 0x15, 0x18, 0x1b, 0x1d, 0x1c, 0x1b, 0x19, 0x18, 0x1e, 0x1d, 0x1f, 0x25, 0x2a, 0x2e, 0x31, 0x34, 0x3b, 0x3c, 0x3b, 0x36, 0x2e, 0x26, 0x22, 0x20, 0x1e, 0x1e, 0x1d, 0x1c, 0x1b, 0x1b, 0x1c, 0x1c, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x22, 0x29, 0x2f, 0x37, 0x37, 0x37, 0x36, 0x35, 0x32, 0x2f, 0x2c, 0x2e, 0x2f, 0x31, 0x31, 0x30, 0x2e, 0x2c, 0x2b, 0x29, 0x2a, 0x2b, 0x2b, 0x2e, 0x35, 0x3f, 0x46, 0x44, 0x47, 0x47, 0x45, 0x48, 0x51, 0x59, 0x5c, 0x5b, 0x61, 0x63, 0x61, 0x61, 0x65, 0x64, 0x5f, 0x50, 0x3a, 0x2c, 0x2a, 0x26, 0x23, 0x22, 0x20, 0x21, 0x22, 0x22, 0x21, 0x20, 0x20, 0x21, 0x22, 0x25, 0x24, 0x26, 0x27, 0x24, 0x20, 0x20, 0x22, 0x23, 0x24, 0x25, 0x25, 0x25, 0x27, 0x2c, 0x31, 0x39, 0x3b, 0x40, 0x42, 0x3b, 0x31, 0x31, 0x38, 0x28, 0x29, 0x2d, 0x33, 0x39, 0x3c, 0x3d, 0x3b, 0x3d, 0x40, 0x46, 0x4d, 0x51, 0x56, 0x62, 0x6e, 0x7c, 0x9a, 0xa3, 0xa9, 0xaf, 0xa2, 0x7b, 0x49, 0x44, 0x42, 0x40, 0x41, 0x43, 0x45, 0x4a, 0x4e, 0x63, 0x67, 0x5d, 0x50, 0x4f, 0x56, 0x5d, 0x64, 0x65, 0x5f, 0x57, 0x52, 0x51, 0x51, 0x52, 0x52, 0x55, 0x58, 0x58, 0x50, 0x45, 0x3f, 0x42, 0x46, 0x45, 0x4a, 0x50, 0x54, 0x5a, 0x64, 0x6c, 0x70, 0x6e, 0x69, 0x69, 0x71, 0x7d, 0x80, 0x77, 0x6c, 0x5c, 0x51, 0x54, 0x5f, 0x5f, 0x5e, 0x63, 0x68, 0x6d, 0x6f, 0x72, 0x75, 0x78, 0x7b, 0x7d, 0x7f, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x8a, 0x8b, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x8d, 0x8c, 0x8d, 0x8f, 0x8e, 0x8c, 0x8f, 0x93, 0x92, 0x93, 0x94, 0x96, 0x98, 0x9b, 0x9c, 0x9d, 0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0x9e, 0x9d, 0x9d, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x97, 0x94, 0x92, 0x91, 0x91, 0x92, 0x90, 0x8e, 0x8d, 0x8d, 0x8d, 0x8c, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x8a, 0x89, 0x88, 0x87, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x84, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x86, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x76, 0x74, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x66, 0x65, 0x63, 0x63, 0x63, 0x60, 0x5c, 0x5b, 0x5c, 0x5a, 0x57, 0x57, 0x55, 0x52, 0x50, 0x4e, 0x4e, 0x4e, 0x4e, 0x4d, 0x48, 0x43, 0x40, 0x3f, 0x3f, 0x42, 0x46, 0x41, 0x41, 0x43, 0x47, 0x4b, 0x4d, 0x4b, 0x48, 0x45, 0x41, 0x48, 0x58, 0x64, 0x60, 0x54, 0x4d, 0x52, 0x5c, 0x5e, 0x5f, 0x5e, 0x51, 0x4c, 0x58, 0x77, 0x78, 0x72, 0x68, 0x64, 0x62, 0x5a, 0x4f, 0x52, 0x4c, 0x3f, 0x37, 0x39, 0x35, 0x2e, 0x2e, 0x2e, 0x3d, 0x48, 0x50, 0x5b, 0x62, 0x67, 0x6d, 0x6d, 0x69, 0x65, 0x65, 0x64, 0x61, 0x5e, 0x5d, 0x46, 0x41, 0x3e, 0x41, 0x44, 0x43, 0x3d, 0x38, 0x31, 0x2f, 0x2e, 0x31, 0x31, 0x30, 0x33, 0x37, 0x42, 0x39, 0x37, 0x3d, 0x3e, 0x3b, 0x40, 0x4a, 0x52, 0x48, 0x3a, 0x2f, 0x2a, 0x2a, 0x2a, 0x2b, 0x34, 0x3e, 0x3f, 0x39, 0x36, 0x33, 0x34, 0x39, 0x45, 0x41, 0x43, 0x3c, 0x4c, 0x50, 0x54, 0x4a, 0x39, 0x3f, 0x54, 0x64, 0x5c, 0x4e, 0x3c, 0x28, 0x29, 0x30, 0x44, 0x55, 0x57, 0x55, 0x51, 0x4a, 0x3c, 0x2b, 0x2b, 0x3b, 0x46, 0x4b, 0x4e, 0x4e, 0x4f, 0x49, 0x3d, 0x33, 0x33, 0x3e, 0x49, 0x4e, 0x4d, 0x4f, 0x48, 0x3b, 0x32, 0x36, 0x3f, 0x45, 0x4d, 0x49, 0x49, 0x41, 0x34, 0x37, 0x3f, 0x3c, 0x3a, 0x38, 0x37, 0x33, 0x2d, 0x2f, 0x40, 0x53, 0x58, 0x4a, 0x3d, 0x3a, 0x3b, 0x37, 0x30, 0x2b, 0x35, 0x3e, 0x4f, 0x59, 0x59, 0x56, 0x4c, 0x3c, 0x2f, 0x3b, 0x4d, 0x54, 0x4a, 0x3e, 0x34, 0x2c, 0x3e, 0x33, 0x2a, 0x2a, 0x2b, 0x2a, 0x28, 0x29, 0x31, 0x2e, 0x2b, 0x27, 0x22, 0x20, 0x24, 0x2a, 0x32, 0x3b, 0x42, 0x3f, 0x3a, 0x3a, 0x39, 0x38, 0x36, 0x33, 0x30, 0x2e, 0x2a, 0x26, 0x24, 0x25, 0x2a, 0x2b, 0x2a, 0x26, 0x23, 0x21, 0x20, 0x1f, 0x2a, 0x29, 0x28, 0x28, 0x28, 0x29, 0x28, 0x28, 0x25, 0x23, 0x22, 0x25, 0x27, 0x28, 0x29, 0x2a, 0x2a, 0x2b, 0x2a, 0x27, 0x25, 0x26, 0x29, 0x2d, 0x2a, 0x26, 0x20, 0x1c, 0x19, 0x18, 0x15, 0x13, 0x17, 0x17, 0x16, 0x16, 0x16, 0x17, 0x17, 0x18, 0x1b, 0x1e, 0x22, 0x23, 0x22, 0x1f, 0x1d, 0x1b, 0x1c, 0x1b, 0x1e, 0x26, 0x2d, 0x32, 0x37, 0x3b, 0x41, 0x41, 0x3e, 0x38, 0x30, 0x29, 0x23, 0x21, 0x20, 0x1f, 0x1e, 0x1d, 0x1c, 0x1c, 0x1c, 0x1c, 0x20, 0x1f, 0x1d, 0x1c, 0x1d, 0x23, 0x2c, 0x33, 0x34, 0x33, 0x34, 0x37, 0x39, 0x37, 0x32, 0x2e, 0x2d, 0x2d, 0x2e, 0x2f, 0x31, 0x30, 0x2d, 0x2a, 0x28, 0x28, 0x29, 0x2a, 0x2e, 0x35, 0x3e, 0x44, 0x44, 0x47, 0x48, 0x46, 0x44, 0x46, 0x48, 0x49, 0x4a, 0x4d, 0x4d, 0x4b, 0x4e, 0x55, 0x58, 0x56, 0x4c, 0x38, 0x2a, 0x27, 0x22, 0x20, 0x23, 0x24, 0x1f, 0x20, 0x21, 0x21, 0x20, 0x1f, 0x1f, 0x20, 0x24, 0x23, 0x22, 0x23, 0x21, 0x1e, 0x1f, 0x22, 0x24, 0x26, 0x27, 0x27, 0x26, 0x27, 0x2a, 0x2c, 0x36, 0x3d, 0x48, 0x4e, 0x46, 0x37, 0x2f, 0x2f, 0x28, 0x28, 0x2a, 0x31, 0x38, 0x3c, 0x3c, 0x3b, 0x38, 0x3b, 0x41, 0x4b, 0x54, 0x59, 0x5d, 0x60, 0x78, 0x8c, 0x92, 0x90, 0x8b, 0x86, 0x75, 0x50, 0x4b, 0x48, 0x45, 0x42, 0x3e, 0x3b, 0x3d, 0x41, 0x41, 0x44, 0x42, 0x45, 0x50, 0x57, 0x5c, 0x63, 0x5f, 0x5c, 0x59, 0x56, 0x53, 0x51, 0x4f, 0x4d, 0x44, 0x48, 0x4b, 0x49, 0x45, 0x45, 0x4a, 0x4f, 0x4d, 0x50, 0x55, 0x5a, 0x5a, 0x58, 0x58, 0x59, 0x64, 0x67, 0x68, 0x69, 0x71, 0x79, 0x74, 0x68, 0x59, 0x53, 0x57, 0x60, 0x61, 0x62, 0x68, 0x6a, 0x6e, 0x70, 0x73, 0x75, 0x76, 0x79, 0x7d, 0x80, 0x84, 0x84, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x8c, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x91, 0x90, 0x91, 0x92, 0x92, 0x91, 0x92, 0x95, 0x97, 0x98, 0x99, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e, 0x9f, 0x9f, 0xa0, 0xa0, 0x9f, 0x9d, 0x9b, 0x9a, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x92, 0x94, 0x95, 0x97, 0x96, 0x94, 0x92, 0x90, 0x8f, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x88, 0x87, 0x85, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x84, 0x83, 0x83, 0x85, 0x86, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6d, 0x6b, 0x6a, 0x68, 0x68, 0x67, 0x65, 0x63, 0x62, 0x62, 0x5f, 0x5c, 0x5b, 0x5b, 0x59, 0x56, 0x55, 0x53, 0x51, 0x4f, 0x4d, 0x4d, 0x4d, 0x4d, 0x4a, 0x46, 0x43, 0x42, 0x41, 0x42, 0x45, 0x49, 0x4a, 0x47, 0x43, 0x45, 0x52, 0x63, 0x6a, 0x69, 0x55, 0x4a, 0x41, 0x42, 0x47, 0x4a, 0x4d, 0x50, 0x56, 0x54, 0x53, 0x53, 0x51, 0x4b, 0x4b, 0x50, 0x5f, 0x72, 0x7c, 0x74, 0x6c, 0x6c, 0x6a, 0x63, 0x54, 0x4f, 0x42, 0x39, 0x3b, 0x39, 0x31, 0x2d, 0x40, 0x54, 0x63, 0x66, 0x69, 0x6e, 0x7b, 0x8b, 0x8d, 0x86, 0x7a, 0x6d, 0x66, 0x65, 0x65, 0x63, 0x61, 0x5b, 0x51, 0x49, 0x44, 0x41, 0x39, 0x32, 0x2e, 0x2f, 0x31, 0x33, 0x33, 0x34, 0x39, 0x3f, 0x46, 0x3d, 0x3d, 0x46, 0x45, 0x37, 0x34, 0x3c, 0x47, 0x42, 0x3a, 0x33, 0x2f, 0x2f, 0x32, 0x34, 0x34, 0x3e, 0x3e, 0x36, 0x30, 0x2c, 0x2e, 0x37, 0x41, 0x3e, 0x3e, 0x3b, 0x49, 0x50, 0x56, 0x50, 0x4c, 0x4b, 0x4d, 0x46, 0x37, 0x32, 0x32, 0x2d, 0x42, 0x49, 0x53, 0x55, 0x51, 0x54, 0x58, 0x53, 0x44, 0x2c, 0x27, 0x3b, 0x49, 0x4d, 0x4e, 0x4e, 0x4d, 0x47, 0x3e, 0x3a, 0x43, 0x50, 0x55, 0x51, 0x4f, 0x48, 0x3d, 0x31, 0x2b, 0x31, 0x3f, 0x4a, 0x56, 0x5b, 0x60, 0x55, 0x44, 0x41, 0x45, 0x42, 0x3b, 0x42, 0x4f, 0x56, 0x4c, 0x3b, 0x39, 0x43, 0x3f, 0x33, 0x2b, 0x30, 0x35, 0x34, 0x32, 0x33, 0x30, 0x37, 0x4b, 0x5c, 0x60, 0x5d, 0x55, 0x49, 0x29, 0x3e, 0x51, 0x56, 0x4e, 0x3f, 0x36, 0x38, 0x3f, 0x39, 0x36, 0x38, 0x38, 0x34, 0x2f, 0x2d, 0x2d, 0x2c, 0x2a, 0x26, 0x21, 0x21, 0x24, 0x29, 0x29, 0x30, 0x36, 0x36, 0x34, 0x33, 0x32, 0x30, 0x30, 0x2e, 0x2c, 0x2b, 0x2a, 0x29, 0x2b, 0x2c, 0x2f, 0x39, 0x41, 0x3b, 0x2c, 0x21, 0x1f, 0x22, 0x26, 0x25, 0x25, 0x26, 0x28, 0x29, 0x28, 0x27, 0x24, 0x23, 0x23, 0x26, 0x28, 0x28, 0x26, 0x24, 0x29, 0x2b, 0x2a, 0x27, 0x23, 0x21, 0x23, 0x26, 0x28, 0x24, 0x1e, 0x1b, 0x19, 0x18, 0x16, 0x14, 0x17, 0x17, 0x17, 0x17, 0x17, 0x18, 0x19, 0x19, 0x20, 0x22, 0x25, 0x26, 0x25, 0x22, 0x1f, 0x1e, 0x1b, 0x1a, 0x1c, 0x23, 0x2c, 0x33, 0x39, 0x3f, 0x45, 0x43, 0x3f, 0x38, 0x2f, 0x27, 0x21, 0x1e, 0x1f, 0x1f, 0x1f, 0x20, 0x20, 0x1f, 0x1e, 0x1d, 0x21, 0x20, 0x1e, 0x1d, 0x1f, 0x25, 0x2d, 0x33, 0x33, 0x33, 0x35, 0x37, 0x38, 0x37, 0x33, 0x30, 0x2b, 0x2a, 0x2a, 0x2b, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2b, 0x29, 0x28, 0x2b, 0x31, 0x39, 0x3e, 0x4e, 0x55, 0x5b, 0x5d, 0x5a, 0x56, 0x53, 0x51, 0x4e, 0x50, 0x4f, 0x4d, 0x4f, 0x56, 0x5c, 0x5d, 0x56, 0x3c, 0x2a, 0x27, 0x26, 0x27, 0x29, 0x28, 0x1f, 0x21, 0x22, 0x23, 0x21, 0x20, 0x20, 0x20, 0x21, 0x1f, 0x1e, 0x20, 0x1f, 0x1d, 0x1e, 0x20, 0x22, 0x24, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2c, 0x30, 0x37, 0x42, 0x47, 0x42, 0x37, 0x31, 0x31, 0x34, 0x30, 0x2c, 0x2d, 0x32, 0x38, 0x3b, 0x3c, 0x3b, 0x3f, 0x48, 0x55, 0x62, 0x69, 0x67, 0x62, 0x57, 0x65, 0x7b, 0x9d, 0xbb, 0xc9, 0xb5, 0x81, 0x44, 0x40, 0x40, 0x42, 0x40, 0x3b, 0x38, 0x39, 0x38, 0x3b, 0x3f, 0x4d, 0x5d, 0x60, 0x5e, 0x63, 0x60, 0x60, 0x5f, 0x5d, 0x59, 0x54, 0x4f, 0x4c, 0x5a, 0x57, 0x52, 0x4a, 0x44, 0x40, 0x40, 0x41, 0x50, 0x4f, 0x55, 0x63, 0x6d, 0x71, 0x73, 0x77, 0x6d, 0x77, 0x7c, 0x76, 0x6d, 0x67, 0x5f, 0x58, 0x57, 0x53, 0x59, 0x60, 0x61, 0x66, 0x6c, 0x6b, 0x70, 0x73, 0x75, 0x75, 0x75, 0x78, 0x7e, 0x83, 0x85, 0x84, 0x85, 0x88, 0x8c, 0x8f, 0x8f, 0x8e, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x97, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9a, 0x99, 0x98, 0x99, 0x99, 0x9a, 0x9a, 0x99, 0x96, 0x94, 0x92, 0x92, 0x91, 0x8f, 0x8e, 0x8c, 0x8b, 0x8b, 0x8b, 0x8d, 0x8e, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x87, 0x85, 0x84, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x84, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x64, 0x61, 0x61, 0x5f, 0x5c, 0x5b, 0x5b, 0x58, 0x55, 0x52, 0x51, 0x4f, 0x4e, 0x4d, 0x4d, 0x4d, 0x4e, 0x4d, 0x47, 0x41, 0x3f, 0x41, 0x44, 0x4c, 0x53, 0x5e, 0x58, 0x4a, 0x40, 0x47, 0x5c, 0x6b, 0x6f, 0x51, 0x4c, 0x48, 0x48, 0x4a, 0x51, 0x5d, 0x68, 0x61, 0x59, 0x56, 0x53, 0x4b, 0x45, 0x45, 0x44, 0x50, 0x63, 0x73, 0x72, 0x69, 0x61, 0x59, 0x51, 0x43, 0x47, 0x44, 0x42, 0x46, 0x42, 0x37, 0x33, 0x3d, 0x51, 0x60, 0x67, 0x6d, 0x71, 0x77, 0x81, 0x87, 0x86, 0x7d, 0x6e, 0x63, 0x61, 0x5f, 0x5b, 0x5c, 0x58, 0x50, 0x48, 0x45, 0x45, 0x42, 0x3c, 0x36, 0x34, 0x32, 0x30, 0x2e, 0x2f, 0x33, 0x38, 0x36, 0x31, 0x33, 0x39, 0x36, 0x2b, 0x29, 0x2f, 0x30, 0x35, 0x3b, 0x3f, 0x3d, 0x38, 0x33, 0x30, 0x2f, 0x3c, 0x40, 0x3b, 0x35, 0x2f, 0x30, 0x38, 0x3f, 0x3f, 0x3f, 0x41, 0x4b, 0x53, 0x56, 0x53, 0x53, 0x55, 0x50, 0x40, 0x31, 0x33, 0x3f, 0x47, 0x5e, 0x54, 0x55, 0x59, 0x56, 0x53, 0x51, 0x4e, 0x47, 0x2b, 0x26, 0x3f, 0x50, 0x51, 0x4f, 0x4f, 0x55, 0x4a, 0x3a, 0x33, 0x3f, 0x54, 0x60, 0x60, 0x52, 0x48, 0x3c, 0x34, 0x32, 0x39, 0x47, 0x54, 0x57, 0x5f, 0x61, 0x53, 0x44, 0x41, 0x44, 0x44, 0x46, 0x48, 0x51, 0x56, 0x47, 0x33, 0x32, 0x40, 0x3e, 0x30, 0x2b, 0x38, 0x46, 0x48, 0x44, 0x43, 0x39, 0x3d, 0x4e, 0x5f, 0x60, 0x5a, 0x50, 0x46, 0x36, 0x4c, 0x59, 0x5a, 0x52, 0x3d, 0x30, 0x35, 0x37, 0x36, 0x37, 0x38, 0x36, 0x31, 0x2d, 0x2b, 0x27, 0x27, 0x26, 0x23, 0x20, 0x20, 0x22, 0x23, 0x1f, 0x22, 0x24, 0x25, 0x28, 0x29, 0x28, 0x25, 0x2a, 0x2b, 0x29, 0x26, 0x25, 0x27, 0x2b, 0x2e, 0x3b, 0x42, 0x46, 0x3e, 0x2e, 0x20, 0x1d, 0x20, 0x22, 0x22, 0x23, 0x25, 0x26, 0x26, 0x25, 0x23, 0x1e, 0x1f, 0x21, 0x24, 0x27, 0x27, 0x24, 0x21, 0x25, 0x29, 0x2b, 0x28, 0x21, 0x1d, 0x1d, 0x1f, 0x21, 0x1e, 0x1b, 0x19, 0x1a, 0x1a, 0x19, 0x17, 0x16, 0x16, 0x16, 0x17, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1d, 0x1f, 0x20, 0x1e, 0x1c, 0x1a, 0x19, 0x1c, 0x19, 0x19, 0x1e, 0x26, 0x2f, 0x37, 0x3e, 0x41, 0x40, 0x3c, 0x35, 0x2d, 0x25, 0x20, 0x1e, 0x1e, 0x1e, 0x20, 0x23, 0x25, 0x24, 0x20, 0x1d, 0x20, 0x1f, 0x1e, 0x1e, 0x21, 0x26, 0x2d, 0x31, 0x37, 0x39, 0x39, 0x37, 0x33, 0x2e, 0x2c, 0x2b, 0x28, 0x29, 0x29, 0x28, 0x26, 0x28, 0x2c, 0x30, 0x32, 0x30, 0x2c, 0x29, 0x29, 0x2f, 0x37, 0x3d, 0x47, 0x4d, 0x54, 0x58, 0x59, 0x59, 0x5c, 0x60, 0x5f, 0x65, 0x6b, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x61, 0x40, 0x27, 0x25, 0x2a, 0x2e, 0x2e, 0x29, 0x23, 0x24, 0x25, 0x24, 0x22, 0x20, 0x1f, 0x1f, 0x1d, 0x1c, 0x1c, 0x1f, 0x1f, 0x1e, 0x1d, 0x1f, 0x1d, 0x1f, 0x21, 0x24, 0x25, 0x26, 0x27, 0x28, 0x2c, 0x2e, 0x32, 0x34, 0x33, 0x33, 0x37, 0x3d, 0x3a, 0x34, 0x2f, 0x2e, 0x32, 0x39, 0x3e, 0x40, 0x41, 0x48, 0x52, 0x5d, 0x68, 0x6d, 0x67, 0x5c, 0x5b, 0x61, 0x73, 0x9c, 0xc3, 0xd6, 0xc1, 0x8b, 0x51, 0x43, 0x38, 0x39, 0x3d, 0x3d, 0x3d, 0x3f, 0x42, 0x42, 0x44, 0x52, 0x63, 0x66, 0x65, 0x6c, 0x6d, 0x6c, 0x68, 0x62, 0x5c, 0x58, 0x57, 0x57, 0x51, 0x4e, 0x4b, 0x4e, 0x56, 0x61, 0x69, 0x6d, 0x6e, 0x66, 0x60, 0x5f, 0x61, 0x64, 0x6f, 0x7b, 0x99, 0xa0, 0xa5, 0x9f, 0x8d, 0x74, 0x61, 0x57, 0x5a, 0x54, 0x58, 0x5f, 0x62, 0x68, 0x6e, 0x6d, 0x72, 0x74, 0x75, 0x75, 0x75, 0x79, 0x7f, 0x85, 0x85, 0x85, 0x86, 0x8a, 0x8e, 0x91, 0x92, 0x91, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x95, 0x96, 0x96, 0x96, 0x97, 0x98, 0x97, 0x97, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x90, 0x91, 0x91, 0x92, 0x92, 0x90, 0x8e, 0x8b, 0x89, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x8a, 0x8d, 0x8f, 0x8b, 0x8c, 0x8d, 0x8c, 0x8b, 0x8a, 0x88, 0x87, 0x89, 0x88, 0x87, 0x87, 0x87, 0x86, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x84, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x75, 0x75, 0x75, 0x73, 0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6f, 0x6e, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x64, 0x61, 0x61, 0x5f, 0x5b, 0x5a, 0x5a, 0x58, 0x55, 0x4f, 0x4e, 0x4e, 0x4d, 0x4d, 0x4d, 0x4d, 0x4e, 0x4e, 0x48, 0x41, 0x3f, 0x40, 0x43, 0x4a, 0x50, 0x65, 0x63, 0x56, 0x41, 0x38, 0x3f, 0x48, 0x4b, 0x4b, 0x4d, 0x54, 0x5c, 0x61, 0x60, 0x5d, 0x5b, 0x59, 0x57, 0x58, 0x57, 0x4d, 0x47, 0x45, 0x42, 0x53, 0x57, 0x5f, 0x65, 0x63, 0x58, 0x4d, 0x48, 0x38, 0x3f, 0x41, 0x43, 0x45, 0x40, 0x3b, 0x3d, 0x3c, 0x48, 0x52, 0x5d, 0x6b, 0x6f, 0x69, 0x66, 0x6e, 0x7a, 0x82, 0x7f, 0x78, 0x71, 0x6a, 0x62, 0x57, 0x55, 0x4f, 0x4a, 0x48, 0x48, 0x47, 0x44, 0x3e, 0x38, 0x30, 0x29, 0x28, 0x2b, 0x2e, 0x2f, 0x43, 0x3f, 0x37, 0x2d, 0x26, 0x24, 0x26, 0x2a, 0x2b, 0x34, 0x3e, 0x44, 0x40, 0x38, 0x2f, 0x29, 0x2e, 0x39, 0x3e, 0x3c, 0x38, 0x31, 0x30, 0x38, 0x3e, 0x41, 0x44, 0x4c, 0x52, 0x59, 0x58, 0x56, 0x52, 0x57, 0x57, 0x52, 0x4f, 0x50, 0x53, 0x58, 0x63, 0x4e, 0x4f, 0x61, 0x60, 0x4f, 0x48, 0x4b, 0x4a, 0x2e, 0x29, 0x41, 0x52, 0x53, 0x52, 0x52, 0x47, 0x42, 0x36, 0x30, 0x3d, 0x54, 0x62, 0x63, 0x54, 0x49, 0x3d, 0x36, 0x37, 0x3f, 0x4f, 0x5c, 0x60, 0x61, 0x54, 0x3e, 0x35, 0x3b, 0x45, 0x4a, 0x47, 0x40, 0x41, 0x48, 0x44, 0x37, 0x34, 0x3d, 0x3e, 0x35, 0x33, 0x3c, 0x44, 0x41, 0x3d, 0x3c, 0x3a, 0x3e, 0x4d, 0x5b, 0x5a, 0x52, 0x4a, 0x41, 0x41, 0x51, 0x59, 0x5a, 0x53, 0x3e, 0x2e, 0x32, 0x32, 0x30, 0x2e, 0x2b, 0x29, 0x27, 0x27, 0x28, 0x24, 0x26, 0x26, 0x25, 0x26, 0x27, 0x25, 0x21, 0x25, 0x23, 0x22, 0x25, 0x29, 0x2c, 0x2b, 0x2a, 0x28, 0x2b, 0x2c, 0x2b, 0x2c, 0x30, 0x35, 0x37, 0x3d, 0x38, 0x31, 0x2c, 0x25, 0x1e, 0x19, 0x18, 0x20, 0x21, 0x22, 0x24, 0x24, 0x23, 0x20, 0x1e, 0x1f, 0x21, 0x21, 0x20, 0x21, 0x22, 0x20, 0x1d, 0x1e, 0x22, 0x24, 0x22, 0x1d, 0x1a, 0x19, 0x1b, 0x1b, 0x1a, 0x18, 0x19, 0x1b, 0x1c, 0x1b, 0x19, 0x15, 0x15, 0x15, 0x15, 0x16, 0x17, 0x17, 0x18, 0x19, 0x1a, 0x1c, 0x1c, 0x1b, 0x19, 0x19, 0x19, 0x1f, 0x1b, 0x1a, 0x1f, 0x26, 0x2e, 0x37, 0x3d, 0x3a, 0x3c, 0x3b, 0x35, 0x2b, 0x23, 0x20, 0x20, 0x1e, 0x1e, 0x20, 0x24, 0x26, 0x26, 0x22, 0x1e, 0x1e, 0x1e, 0x1d, 0x1f, 0x22, 0x27, 0x2d, 0x30, 0x36, 0x38, 0x39, 0x36, 0x30, 0x2c, 0x2a, 0x2a, 0x2a, 0x2c, 0x2d, 0x2b, 0x29, 0x2b, 0x31, 0x37, 0x33, 0x32, 0x2f, 0x2b, 0x28, 0x2c, 0x34, 0x3c, 0x41, 0x41, 0x43, 0x44, 0x45, 0x4a, 0x56, 0x60, 0x6b, 0x6e, 0x70, 0x71, 0x70, 0x71, 0x74, 0x77, 0x5e, 0x3c, 0x24, 0x23, 0x2b, 0x30, 0x2e, 0x27, 0x27, 0x28, 0x28, 0x26, 0x23, 0x21, 0x20, 0x20, 0x1f, 0x1d, 0x1d, 0x1f, 0x20, 0x1f, 0x1e, 0x1e, 0x1d, 0x1f, 0x21, 0x23, 0x24, 0x25, 0x25, 0x25, 0x2a, 0x2e, 0x33, 0x35, 0x33, 0x32, 0x32, 0x34, 0x2e, 0x2d, 0x2d, 0x30, 0x35, 0x3a, 0x3f, 0x41, 0x45, 0x50, 0x5b, 0x62, 0x6a, 0x6e, 0x67, 0x5c, 0x54, 0x61, 0x6e, 0x89, 0xa6, 0xbc, 0xc0, 0xab, 0x7e, 0x5d, 0x3c, 0x2f, 0x32, 0x38, 0x41, 0x48, 0x41, 0x45, 0x4a, 0x57, 0x65, 0x67, 0x65, 0x6a, 0x6c, 0x69, 0x63, 0x5b, 0x57, 0x58, 0x60, 0x66, 0x67, 0x61, 0x59, 0x57, 0x5a, 0x62, 0x68, 0x6c, 0x70, 0x73, 0x75, 0x74, 0x74, 0x7d, 0x93, 0xa6, 0xb4, 0xb4, 0xb6, 0xb8, 0xaf, 0x98, 0x7d, 0x6b, 0x64, 0x58, 0x58, 0x60, 0x64, 0x69, 0x6f, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x76, 0x7a, 0x7f, 0x84, 0x85, 0x86, 0x88, 0x8c, 0x90, 0x92, 0x93, 0x93, 0x96, 0x97, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99, 0x96, 0x97, 0x97, 0x96, 0x97, 0x99, 0x98, 0x95, 0x92, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x89, 0x8a, 0x89, 0x87, 0x84, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7f, 0x83, 0x87, 0x87, 0x89, 0x8b, 0x8b, 0x89, 0x86, 0x85, 0x84, 0x86, 0x85, 0x85, 0x84, 0x85, 0x84, 0x82, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x78, 0x76, 0x74, 0x74, 0x75, 0x72, 0x73, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x66, 0x64, 0x62, 0x61, 0x5e, 0x5a, 0x59, 0x5a, 0x59, 0x56, 0x4f, 0x4e, 0x4e, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c, 0x4a, 0x47, 0x43, 0x42, 0x40, 0x3e, 0x3e, 0x40, 0x4c, 0x52, 0x50, 0x43, 0x35, 0x2e, 0x2c, 0x2b, 0x3c, 0x46, 0x52, 0x57, 0x54, 0x4d, 0x4a, 0x49, 0x4d, 0x4d, 0x4a, 0x46, 0x44, 0x45, 0x4b, 0x51, 0x4b, 0x43, 0x42, 0x49, 0x4b, 0x45, 0x3e, 0x3d, 0x35, 0x36, 0x36, 0x3a, 0x3e, 0x3b, 0x40, 0x4f, 0x5b, 0x61, 0x64, 0x6b, 0x79, 0x7a, 0x6f, 0x68, 0x6c, 0x71, 0x74, 0x72, 0x6e, 0x69, 0x65, 0x61, 0x66, 0x60, 0x58, 0x51, 0x49, 0x42, 0x3e, 0x3e, 0x42, 0x3c, 0x32, 0x2a, 0x2a, 0x2f, 0x32, 0x32, 0x48, 0x48, 0x43, 0x39, 0x33, 0x30, 0x2a, 0x23, 0x2d, 0x31, 0x36, 0x37, 0x35, 0x32, 0x2f, 0x2e, 0x2c, 0x32, 0x33, 0x33, 0x34, 0x32, 0x33, 0x3c, 0x3c, 0x43, 0x48, 0x56, 0x58, 0x5e, 0x59, 0x58, 0x55, 0x53, 0x4d, 0x50, 0x5a, 0x5b, 0x57, 0x5a, 0x61, 0x45, 0x41, 0x52, 0x52, 0x46, 0x49, 0x56, 0x44, 0x2e, 0x2c, 0x40, 0x4d, 0x4f, 0x51, 0x52, 0x43, 0x46, 0x42, 0x3d, 0x45, 0x55, 0x5c, 0x58, 0x4f, 0x47, 0x3b, 0x32, 0x33, 0x3f, 0x4f, 0x5b, 0x61, 0x62, 0x50, 0x3a, 0x37, 0x40, 0x47, 0x4b, 0x49, 0x48, 0x4e, 0x54, 0x4c, 0x3f, 0x3c, 0x44, 0x3b, 0x3b, 0x3c, 0x37, 0x2e, 0x28, 0x29, 0x2f, 0x3d, 0x43, 0x52, 0x5c, 0x58, 0x54, 0x50, 0x49, 0x45, 0x4c, 0x53, 0x57, 0x51, 0x40, 0x32, 0x31, 0x31, 0x2d, 0x28, 0x25, 0x25, 0x29, 0x2b, 0x2b, 0x27, 0x29, 0x2b, 0x2d, 0x31, 0x32, 0x2c, 0x24, 0x23, 0x21, 0x21, 0x22, 0x24, 0x26, 0x27, 0x28, 0x21, 0x27, 0x2d, 0x35, 0x3e, 0x48, 0x4c, 0x4b, 0x3b, 0x31, 0x2a, 0x28, 0x28, 0x24, 0x1f, 0x1d, 0x1d, 0x1f, 0x21, 0x23, 0x24, 0x23, 0x1f, 0x1c, 0x21, 0x22, 0x21, 0x1e, 0x1e, 0x22, 0x25, 0x26, 0x25, 0x22, 0x1d, 0x1b, 0x1a, 0x1a, 0x1a, 0x19, 0x1b, 0x1a, 0x1a, 0x1b, 0x1d, 0x1d, 0x1a, 0x17, 0x17, 0x16, 0x16, 0x15, 0x15, 0x15, 0x16, 0x16, 0x19, 0x1a, 0x1b, 0x1b, 0x1a, 0x1a, 0x1b, 0x1c, 0x1f, 0x1c, 0x1c, 0x21, 0x27, 0x2e, 0x35, 0x3a, 0x39, 0x3d, 0x3e, 0x37, 0x2c, 0x22, 0x1f, 0x20, 0x20, 0x1f, 0x1f, 0x22, 0x24, 0x25, 0x22, 0x1f, 0x1e, 0x1d, 0x1d, 0x1f, 0x24, 0x2b, 0x31, 0x34, 0x35, 0x36, 0x38, 0x37, 0x35, 0x31, 0x2d, 0x2b, 0x2a, 0x2c, 0x2d, 0x2d, 0x2e, 0x30, 0x33, 0x36, 0x33, 0x35, 0x34, 0x30, 0x2a, 0x2b, 0x32, 0x39, 0x4a, 0x4b, 0x4d, 0x4e, 0x4d, 0x4f, 0x58, 0x63, 0x6a, 0x64, 0x5e, 0x5b, 0x5c, 0x5f, 0x62, 0x64, 0x4f, 0x35, 0x24, 0x26, 0x2a, 0x2d, 0x2e, 0x2a, 0x28, 0x29, 0x29, 0x29, 0x28, 0x28, 0x29, 0x2a, 0x26, 0x22, 0x1f, 0x20, 0x21, 0x1f, 0x1f, 0x20, 0x20, 0x21, 0x22, 0x24, 0x26, 0x28, 0x28, 0x28, 0x28, 0x2f, 0x36, 0x39, 0x35, 0x2f, 0x2a, 0x27, 0x27, 0x2a, 0x2e, 0x32, 0x36, 0x3a, 0x3e, 0x41, 0x4d, 0x5d, 0x6a, 0x6d, 0x6f, 0x73, 0x6f, 0x66, 0x63, 0x81, 0x92, 0xa2, 0xad, 0xb2, 0xb7, 0xb2, 0x97, 0x6d, 0x3f, 0x2b, 0x2d, 0x38, 0x48, 0x55, 0x5f, 0x63, 0x62, 0x61, 0x63, 0x5d, 0x56, 0x57, 0x5c, 0x5b, 0x58, 0x52, 0x4f, 0x52, 0x5c, 0x64, 0x66, 0x61, 0x57, 0x4b, 0x42, 0x40, 0x44, 0x48, 0x4c, 0x55, 0x5e, 0x64, 0x6e, 0x7f, 0x92, 0x9f, 0xaa, 0xae, 0xb1, 0xb4, 0xb4, 0xac, 0x97, 0x83, 0x72, 0x5f, 0x5a, 0x63, 0x68, 0x6b, 0x6f, 0x71, 0x72, 0x72, 0x73, 0x74, 0x78, 0x7c, 0x81, 0x84, 0x85, 0x87, 0x8b, 0x8e, 0x91, 0x92, 0x94, 0x95, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x98, 0x9a, 0x99, 0x98, 0x9a, 0x9c, 0x9b, 0x97, 0x95, 0x94, 0x92, 0x90, 0x90, 0x90, 0x92, 0x92, 0x94, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8b, 0x8a, 0x87, 0x83, 0x80, 0x7d, 0x7b, 0x7a, 0x77, 0x76, 0x74, 0x72, 0x71, 0x72, 0x75, 0x78, 0x7e, 0x81, 0x85, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x82, 0x81, 0x81, 0x82, 0x81, 0x80, 0x7f, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x83, 0x84, 0x83, 0x82, 0x83, 0x85, 0x84, 0x83, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x79, 0x76, 0x74, 0x75, 0x76, 0x73, 0x73, 0x73, 0x74, 0x73, 0x72, 0x72, 0x71, 0x72, 0x71, 0x6e, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x63, 0x62, 0x5e, 0x5a, 0x58, 0x5a, 0x5a, 0x57, 0x51, 0x50, 0x4f, 0x4e, 0x4c, 0x4b, 0x4a, 0x4a, 0x47, 0x45, 0x44, 0x43, 0x3f, 0x38, 0x34, 0x33, 0x30, 0x35, 0x3a, 0x3c, 0x39, 0x34, 0x31, 0x30, 0x34, 0x3d, 0x45, 0x44, 0x3f, 0x3f, 0x46, 0x4d, 0x43, 0x46, 0x3d, 0x35, 0x3b, 0x3f, 0x43, 0x4f, 0x58, 0x59, 0x5b, 0x5c, 0x57, 0x4d, 0x43, 0x3f, 0x36, 0x31, 0x31, 0x3c, 0x43, 0x3f, 0x45, 0x59, 0x74, 0x7f, 0x82, 0x80, 0x7f, 0x79, 0x71, 0x70, 0x71, 0x64, 0x55, 0x4e, 0x4f, 0x54, 0x5a, 0x5f, 0x5b, 0x51, 0x4a, 0x47, 0x40, 0x37, 0x36, 0x3c, 0x41, 0x3e, 0x37, 0x2e, 0x2c, 0x2f, 0x32, 0x32, 0x32, 0x34, 0x3a, 0x44, 0x48, 0x40, 0x2c, 0x1c, 0x2a, 0x2b, 0x2b, 0x2c, 0x2d, 0x2f, 0x32, 0x35, 0x2e, 0x2e, 0x2b, 0x2d, 0x34, 0x34, 0x34, 0x3c, 0x3b, 0x44, 0x49, 0x58, 0x56, 0x5b, 0x52, 0x52, 0x56, 0x53, 0x4a, 0x4a, 0x50, 0x4c, 0x4d, 0x5c, 0x63, 0x49, 0x3a, 0x3e, 0x45, 0x4c, 0x53, 0x53, 0x33, 0x29, 0x30, 0x44, 0x4e, 0x50, 0x52, 0x52, 0x5a, 0x57, 0x48, 0x38, 0x3a, 0x4b, 0x55, 0x53, 0x46, 0x45, 0x3d, 0x33, 0x32, 0x3d, 0x4a, 0x51, 0x53, 0x59, 0x4b, 0x39, 0x3c, 0x44, 0x46, 0x47, 0x53, 0x53, 0x52, 0x4b, 0x3e, 0x36, 0x3d, 0x4a, 0x3d, 0x42, 0x40, 0x33, 0x26, 0x27, 0x32, 0x3d, 0x4a, 0x53, 0x5f, 0x60, 0x57, 0x54, 0x52, 0x4b, 0x50, 0x4f, 0x55, 0x58, 0x4c, 0x3b, 0x2f, 0x29, 0x2f, 0x2b, 0x26, 0x25, 0x2a, 0x30, 0x31, 0x2f, 0x28, 0x2b, 0x2d, 0x32, 0x37, 0x39, 0x30, 0x25, 0x21, 0x21, 0x22, 0x22, 0x21, 0x21, 0x23, 0x26, 0x23, 0x26, 0x2a, 0x2f, 0x37, 0x3d, 0x38, 0x30, 0x2c, 0x29, 0x28, 0x29, 0x26, 0x20, 0x1c, 0x1d, 0x1a, 0x1b, 0x1f, 0x22, 0x25, 0x24, 0x21, 0x1f, 0x1b, 0x1e, 0x1e, 0x1c, 0x20, 0x2b, 0x35, 0x3a, 0x35, 0x2b, 0x1f, 0x1a, 0x1b, 0x1e, 0x1d, 0x1a, 0x1d, 0x1c, 0x1c, 0x1d, 0x1e, 0x1d, 0x18, 0x15, 0x1a, 0x19, 0x18, 0x17, 0x16, 0x15, 0x15, 0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x19, 0x1b, 0x19, 0x17, 0x19, 0x1f, 0x25, 0x2a, 0x2f, 0x34, 0x3c, 0x41, 0x42, 0x3b, 0x2c, 0x21, 0x1e, 0x1f, 0x23, 0x20, 0x1e, 0x1f, 0x21, 0x23, 0x21, 0x1f, 0x20, 0x1e, 0x1e, 0x20, 0x26, 0x2e, 0x36, 0x3a, 0x3c, 0x3b, 0x3b, 0x3c, 0x3a, 0x35, 0x2d, 0x27, 0x25, 0x25, 0x26, 0x29, 0x2c, 0x2f, 0x2f, 0x2e, 0x37, 0x3b, 0x3d, 0x38, 0x30, 0x2d, 0x32, 0x39, 0x45, 0x4b, 0x56, 0x5e, 0x5d, 0x59, 0x5b, 0x60, 0x63, 0x5b, 0x55, 0x55, 0x57, 0x56, 0x50, 0x4b, 0x42, 0x30, 0x28, 0x2b, 0x2b, 0x2b, 0x2e, 0x2f, 0x27, 0x28, 0x2a, 0x2b, 0x2d, 0x30, 0x34, 0x36, 0x2c, 0x27, 0x22, 0x21, 0x20, 0x20, 0x20, 0x21, 0x1f, 0x20, 0x21, 0x24, 0x27, 0x29, 0x2a, 0x2b, 0x26, 0x29, 0x2b, 0x2a, 0x28, 0x29, 0x2a, 0x2c, 0x2d, 0x30, 0x34, 0x36, 0x37, 0x3a, 0x3f, 0x43, 0x4c, 0x5e, 0x6b, 0x6a, 0x67, 0x68, 0x65, 0x5d, 0x78, 0x93, 0x98, 0x9b, 0xa0, 0x9d, 0x9f, 0xa0, 0x8d, 0x65, 0x3b, 0x2b, 0x31, 0x41, 0x55, 0x65, 0x76, 0x74, 0x67, 0x58, 0x51, 0x4d, 0x4d, 0x52, 0x55, 0x57, 0x57, 0x52, 0x4c, 0x4a, 0x4e, 0x52, 0x5c, 0x5b, 0x53, 0x43, 0x32, 0x2b, 0x2f, 0x36, 0x3a, 0x3c, 0x3f, 0x4a, 0x63, 0x82, 0x95, 0x9b, 0xa0, 0xac, 0xb2, 0xac, 0xab, 0xad, 0xa1, 0x90, 0x7d, 0x65, 0x5c, 0x66, 0x6b, 0x6b, 0x6f, 0x72, 0x74, 0x73, 0x74, 0x76, 0x7b, 0x80, 0x83, 0x85, 0x84, 0x88, 0x8d, 0x90, 0x91, 0x92, 0x94, 0x96, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9c, 0x9d, 0x9d, 0x9b, 0x9d, 0xa0, 0x9e, 0x99, 0x98, 0x96, 0x92, 0x90, 0x8e, 0x8e, 0x8f, 0x90, 0x95, 0x94, 0x93, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8c, 0x88, 0x84, 0x7f, 0x7b, 0x78, 0x77, 0x74, 0x73, 0x70, 0x6d, 0x6a, 0x69, 0x6a, 0x6c, 0x71, 0x75, 0x7a, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7d, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x83, 0x81, 0x7e, 0x7e, 0x7f, 0x82, 0x84, 0x85, 0x84, 0x83, 0x82, 0x83, 0x85, 0x84, 0x82, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x79, 0x76, 0x74, 0x75, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x72, 0x73, 0x76, 0x74, 0x72, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x64, 0x63, 0x5e, 0x59, 0x58, 0x5a, 0x5a, 0x58, 0x53, 0x52, 0x51, 0x4e, 0x4c, 0x4a, 0x48, 0x47, 0x45, 0x43, 0x42, 0x41, 0x3d, 0x36, 0x31, 0x30, 0x37, 0x35, 0x37, 0x3f, 0x47, 0x4b, 0x4e, 0x50, 0x56, 0x50, 0x48, 0x45, 0x46, 0x46, 0x3f, 0x38, 0x39, 0x44, 0x3d, 0x38, 0x41, 0x3a, 0x2f, 0x34, 0x39, 0x4c, 0x60, 0x65, 0x5d, 0x52, 0x45, 0x3b, 0x3b, 0x35, 0x38, 0x49, 0x50, 0x44, 0x43, 0x53, 0x7c, 0x8f, 0x98, 0x8e, 0x7e, 0x6f, 0x6b, 0x71, 0x6a, 0x55, 0x41, 0x3f, 0x4a, 0x58, 0x64, 0x6d, 0x58, 0x4b, 0x43, 0x43, 0x3c, 0x31, 0x32, 0x3d, 0x3d, 0x3d, 0x38, 0x2e, 0x27, 0x28, 0x2b, 0x2b, 0x2f, 0x2a, 0x33, 0x4b, 0x5a, 0x51, 0x3a, 0x2a, 0x2b, 0x2b, 0x2c, 0x2e, 0x30, 0x32, 0x33, 0x34, 0x36, 0x34, 0x2e, 0x30, 0x36, 0x33, 0x2e, 0x32, 0x3b, 0x44, 0x47, 0x57, 0x51, 0x54, 0x49, 0x4a, 0x51, 0x58, 0x59, 0x57, 0x51, 0x41, 0x46, 0x61, 0x65, 0x52, 0x3f, 0x3d, 0x4e, 0x61, 0x59, 0x3e, 0x25, 0x26, 0x38, 0x50, 0x59, 0x59, 0x58, 0x55, 0x54, 0x53, 0x48, 0x3a, 0x39, 0x44, 0x46, 0x3e, 0x3f, 0x44, 0x43, 0x39, 0x37, 0x3f, 0x47, 0x47, 0x55, 0x5b, 0x4b, 0x38, 0x3f, 0x4b, 0x51, 0x56, 0x4e, 0x4c, 0x4a, 0x4a, 0x48, 0x41, 0x39, 0x35, 0x36, 0x38, 0x31, 0x24, 0x20, 0x2e, 0x3f, 0x48, 0x3e, 0x4b, 0x5a, 0x5a, 0x54, 0x58, 0x5c, 0x56, 0x49, 0x44, 0x4f, 0x58, 0x4c, 0x40, 0x3c, 0x35, 0x3d, 0x2c, 0x20, 0x25, 0x2d, 0x2e, 0x2b, 0x2b, 0x27, 0x27, 0x27, 0x29, 0x2b, 0x2b, 0x28, 0x25, 0x1e, 0x1f, 0x21, 0x21, 0x21, 0x22, 0x24, 0x26, 0x26, 0x29, 0x29, 0x26, 0x27, 0x2d, 0x2d, 0x29, 0x2a, 0x2b, 0x2b, 0x28, 0x24, 0x21, 0x20, 0x20, 0x21, 0x23, 0x22, 0x1f, 0x21, 0x24, 0x23, 0x1f, 0x1f, 0x22, 0x23, 0x23, 0x24, 0x27, 0x28, 0x27, 0x26, 0x23, 0x21, 0x20, 0x1d, 0x1a, 0x1b, 0x1e, 0x1e, 0x1d, 0x1b, 0x19, 0x18, 0x19, 0x19, 0x1a, 0x1a, 0x18, 0x16, 0x15, 0x16, 0x17, 0x17, 0x16, 0x11, 0x14, 0x18, 0x1b, 0x1c, 0x1c, 0x1a, 0x18, 0x1b, 0x1a, 0x1b, 0x1e, 0x24, 0x2b, 0x30, 0x33, 0x3a, 0x3c, 0x3c, 0x36, 0x2b, 0x22, 0x1e, 0x1d, 0x20, 0x1f, 0x1f, 0x1f, 0x20, 0x20, 0x1d, 0x1b, 0x1e, 0x1c, 0x1f, 0x24, 0x28, 0x2b, 0x32, 0x39, 0x3c, 0x3f, 0x3d, 0x38, 0x35, 0x35, 0x31, 0x2b, 0x26, 0x27, 0x28, 0x29, 0x2c, 0x30, 0x33, 0x35, 0x3d, 0x42, 0x42, 0x3d, 0x38, 0x2e, 0x2b, 0x31, 0x43, 0x49, 0x4e, 0x4f, 0x50, 0x57, 0x61, 0x67, 0x64, 0x65, 0x65, 0x64, 0x63, 0x60, 0x5d, 0x5b, 0x4b, 0x38, 0x28, 0x27, 0x2b, 0x2c, 0x2a, 0x2b, 0x24, 0x24, 0x25, 0x2a, 0x2b, 0x29, 0x26, 0x26, 0x28, 0x27, 0x26, 0x24, 0x23, 0x23, 0x24, 0x26, 0x24, 0x25, 0x24, 0x23, 0x26, 0x2c, 0x2c, 0x29, 0x23, 0x22, 0x24, 0x27, 0x29, 0x28, 0x28, 0x29, 0x29, 0x2e, 0x33, 0x36, 0x3b, 0x41, 0x45, 0x46, 0x47, 0x53, 0x5e, 0x5e, 0x56, 0x51, 0x55, 0x5b, 0x70, 0x7e, 0x78, 0x70, 0x87, 0xa4, 0x9b, 0x7f, 0x6b, 0x5b, 0x52, 0x56, 0x5d, 0x5e, 0x5f, 0x63, 0x66, 0x69, 0x66, 0x5b, 0x51, 0x4d, 0x50, 0x53, 0x59, 0x53, 0x4f, 0x4f, 0x51, 0x51, 0x50, 0x51, 0x50, 0x59, 0x5d, 0x5d, 0x5b, 0x52, 0x48, 0x48, 0x42, 0x3a, 0x35, 0x43, 0x64, 0x85, 0x90, 0x8c, 0xa1, 0xa4, 0xaa, 0xb0, 0xb1, 0xad, 0xa5, 0xa0, 0x8a, 0x73, 0x61, 0x62, 0x6c, 0x72, 0x73, 0x74, 0x77, 0x74, 0x73, 0x77, 0x7c, 0x7f, 0x82, 0x85, 0x86, 0x8a, 0x8f, 0x92, 0x93, 0x95, 0x97, 0x9a, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e, 0x9f, 0x9f, 0x9d, 0x9e, 0x9f, 0xa0, 0xa0, 0xa0, 0x9f, 0x9e, 0x9c, 0x9b, 0x9a, 0x98, 0x97, 0x96, 0x96, 0x96, 0x95, 0x94, 0x95, 0x95, 0x95, 0x94, 0x91, 0x8f, 0x8f, 0x8d, 0x8a, 0x87, 0x83, 0x7d, 0x77, 0x73, 0x6f, 0x69, 0x68, 0x6b, 0x6a, 0x64, 0x64, 0x68, 0x6b, 0x6c, 0x6d, 0x71, 0x76, 0x7a, 0x7d, 0x7e, 0x7d, 0x7e, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7d, 0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x82, 0x81, 0x7f, 0x80, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x80, 0x82, 0x85, 0x85, 0x83, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7d, 0x7c, 0x79, 0x76, 0x75, 0x76, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x71, 0x6e, 0x6c, 0x67, 0x62, 0x5d, 0x5b, 0x5b, 0x5c, 0x5a, 0x58, 0x52, 0x51, 0x4f, 0x4e, 0x4e, 0x4d, 0x4b, 0x49, 0x49, 0x44, 0x40, 0x3f, 0x3b, 0x34, 0x32, 0x33, 0x3b, 0x3b, 0x41, 0x47, 0x4e, 0x58, 0x57, 0x4a, 0x42, 0x42, 0x49, 0x51, 0x56, 0x5c, 0x57, 0x47, 0x3e, 0x3f, 0x49, 0x4c, 0x3f, 0x32, 0x2f, 0x2e, 0x2c, 0x3c, 0x4e, 0x56, 0x4f, 0x43, 0x3b, 0x37, 0x34, 0x33, 0x48, 0x69, 0x71, 0x5e, 0x55, 0x5e, 0x7e, 0x87, 0x86, 0x78, 0x6c, 0x69, 0x67, 0x64, 0x5c, 0x56, 0x53, 0x4b, 0x3c, 0x34, 0x38, 0x3b, 0x4d, 0x51, 0x4d, 0x3e, 0x30, 0x2b, 0x2c, 0x2e, 0x32, 0x2d, 0x25, 0x20, 0x1f, 0x23, 0x28, 0x2a, 0x2f, 0x2b, 0x2c, 0x38, 0x43, 0x43, 0x3b, 0x33, 0x30, 0x25, 0x23, 0x2f, 0x34, 0x2d, 0x27, 0x29, 0x30, 0x2d, 0x2c, 0x2f, 0x34, 0x35, 0x31, 0x2b, 0x36, 0x3f, 0x50, 0x5c, 0x59, 0x4e, 0x48, 0x4b, 0x54, 0x51, 0x52, 0x56, 0x53, 0x4c, 0x4d, 0x55, 0x61, 0x3f, 0x3c, 0x52, 0x5a, 0x5b, 0x53, 0x41, 0x2a, 0x29, 0x3a, 0x52, 0x59, 0x59, 0x5d, 0x60, 0x54, 0x58, 0x48, 0x33, 0x36, 0x48, 0x51, 0x53, 0x55, 0x4e, 0x44, 0x37, 0x37, 0x36, 0x33, 0x47, 0x54, 0x61, 0x51, 0x49, 0x4d, 0x41, 0x3c, 0x40, 0x42, 0x49, 0x4e, 0x4e, 0x48, 0x40, 0x39, 0x33, 0x36, 0x28, 0x2e, 0x1d, 0x2e, 0x3a, 0x42, 0x46, 0x41, 0x52, 0x58, 0x4e, 0x4d, 0x56, 0x54, 0x47, 0x46, 0x49, 0x51, 0x56, 0x4c, 0x3a, 0x2e, 0x2c, 0x3c, 0x37, 0x2f, 0x2a, 0x29, 0x29, 0x27, 0x25, 0x20, 0x22, 0x24, 0x24, 0x22, 0x20, 0x1f, 0x20, 0x1f, 0x20, 0x20, 0x20, 0x1f, 0x20, 0x22, 0x24, 0x21, 0x28, 0x2f, 0x34, 0x35, 0x31, 0x29, 0x20, 0x24, 0x25, 0x27, 0x28, 0x29, 0x27, 0x24, 0x21, 0x22, 0x24, 0x24, 0x20, 0x1e, 0x20, 0x21, 0x20, 0x23, 0x24, 0x21, 0x1e, 0x1d, 0x20, 0x21, 0x20, 0x1d, 0x1c, 0x1c, 0x1c, 0x1a, 0x18, 0x19, 0x1b, 0x1a, 0x19, 0x18, 0x17, 0x17, 0x18, 0x18, 0x18, 0x19, 0x18, 0x18, 0x19, 0x1a, 0x1a, 0x19, 0x17, 0x16, 0x18, 0x1b, 0x1d, 0x1e, 0x1e, 0x1d, 0x1c, 0x1d, 0x1d, 0x1e, 0x22, 0x29, 0x30, 0x35, 0x38, 0x3d, 0x3f, 0x3e, 0x37, 0x2b, 0x20, 0x1a, 0x19, 0x1e, 0x1d, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x1b, 0x1e, 0x1c, 0x1e, 0x23, 0x28, 0x2c, 0x31, 0x36, 0x3d, 0x3f, 0x3e, 0x3a, 0x36, 0x32, 0x2c, 0x27, 0x2a, 0x2b, 0x2c, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x30, 0x35, 0x35, 0x32, 0x30, 0x2b, 0x2e, 0x38, 0x3e, 0x44, 0x48, 0x47, 0x47, 0x4d, 0x56, 0x5c, 0x62, 0x63, 0x65, 0x68, 0x6a, 0x69, 0x66, 0x64, 0x4e, 0x3b, 0x2a, 0x26, 0x28, 0x27, 0x25, 0x26, 0x23, 0x20, 0x1e, 0x21, 0x24, 0x26, 0x29, 0x2c, 0x28, 0x28, 0x29, 0x29, 0x2a, 0x2a, 0x29, 0x29, 0x28, 0x29, 0x28, 0x27, 0x2b, 0x30, 0x31, 0x2f, 0x22, 0x20, 0x20, 0x23, 0x25, 0x27, 0x2a, 0x2e, 0x31, 0x34, 0x35, 0x35, 0x35, 0x39, 0x3b, 0x3b, 0x43, 0x4b, 0x51, 0x4e, 0x47, 0x44, 0x48, 0x4e, 0x6a, 0x70, 0x6b, 0x6d, 0x89, 0x9d, 0x88, 0x68, 0x5e, 0x55, 0x4e, 0x4b, 0x47, 0x42, 0x41, 0x44, 0x4f, 0x50, 0x50, 0x4f, 0x52, 0x59, 0x60, 0x63, 0x5a, 0x55, 0x50, 0x4e, 0x4d, 0x4e, 0x52, 0x58, 0x5b, 0x5e, 0x5a, 0x59, 0x5e, 0x5f, 0x5f, 0x64, 0x5d, 0x60, 0x63, 0x69, 0x72, 0x7d, 0x83, 0x84, 0x91, 0x9a, 0xa4, 0xa8, 0xaa, 0xaa, 0xa6, 0xa0, 0x94, 0x7f, 0x6c, 0x69, 0x6d, 0x70, 0x73, 0x75, 0x77, 0x74, 0x74, 0x77, 0x7c, 0x7f, 0x82, 0x85, 0x89, 0x8c, 0x90, 0x93, 0x94, 0x96, 0x99, 0x9c, 0x9e, 0x9e, 0x9e, 0x9f, 0x9e, 0x9e, 0x9d, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9b, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x92, 0x90, 0x8f, 0x8d, 0x8a, 0x86, 0x82, 0x7c, 0x76, 0x72, 0x6f, 0x69, 0x65, 0x67, 0x66, 0x62, 0x63, 0x67, 0x65, 0x65, 0x66, 0x6a, 0x6e, 0x72, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7c, 0x7e, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7b, 0x78, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x72, 0x6f, 0x6d, 0x6a, 0x65, 0x60, 0x5d, 0x5c, 0x5c, 0x5a, 0x57, 0x52, 0x50, 0x4f, 0x4e, 0x4d, 0x4c, 0x4a, 0x49, 0x46, 0x42, 0x40, 0x3f, 0x3c, 0x39, 0x39, 0x3c, 0x45, 0x43, 0x43, 0x41, 0x42, 0x4d, 0x53, 0x4e, 0x44, 0x40, 0x48, 0x55, 0x5c, 0x61, 0x61, 0x5c, 0x49, 0x3b, 0x35, 0x38, 0x36, 0x32, 0x2e, 0x28, 0x2d, 0x35, 0x3e, 0x44, 0x45, 0x43, 0x41, 0x41, 0x35, 0x32, 0x3d, 0x55, 0x68, 0x6f, 0x75, 0x7d, 0x79, 0x7f, 0x7e, 0x71, 0x64, 0x5e, 0x5d, 0x5c, 0x61, 0x5b, 0x58, 0x50, 0x43, 0x3b, 0x38, 0x33, 0x3f, 0x47, 0x4d, 0x49, 0x3c, 0x31, 0x2e, 0x2f, 0x30, 0x2c, 0x25, 0x22, 0x22, 0x25, 0x29, 0x2b, 0x29, 0x27, 0x2b, 0x35, 0x41, 0x4b, 0x54, 0x5a, 0x3e, 0x2b, 0x25, 0x35, 0x3c, 0x2f, 0x26, 0x29, 0x2c, 0x28, 0x26, 0x2a, 0x2f, 0x31, 0x2d, 0x28, 0x31, 0x41, 0x50, 0x50, 0x44, 0x3e, 0x47, 0x54, 0x55, 0x58, 0x61, 0x66, 0x5e, 0x4f, 0x4a, 0x4f, 0x56, 0x48, 0x4d, 0x56, 0x51, 0x52, 0x53, 0x47, 0x3f, 0x3a, 0x48, 0x5d, 0x62, 0x5c, 0x5b, 0x5c, 0x5b, 0x59, 0x43, 0x2d, 0x32, 0x43, 0x4c, 0x4e, 0x4d, 0x46, 0x3d, 0x31, 0x33, 0x31, 0x2d, 0x40, 0x41, 0x5d, 0x5a, 0x50, 0x49, 0x38, 0x34, 0x39, 0x46, 0x46, 0x47, 0x48, 0x48, 0x44, 0x3a, 0x32, 0x39, 0x36, 0x42, 0x30, 0x35, 0x3d, 0x4b, 0x59, 0x50, 0x49, 0x43, 0x49, 0x59, 0x62, 0x56, 0x44, 0x46, 0x4a, 0x50, 0x51, 0x49, 0x3f, 0x42, 0x4b, 0x33, 0x39, 0x37, 0x2a, 0x21, 0x21, 0x20, 0x1d, 0x20, 0x24, 0x27, 0x24, 0x1d, 0x19, 0x1b, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x1f, 0x21, 0x24, 0x27, 0x25, 0x29, 0x31, 0x3a, 0x3a, 0x30, 0x25, 0x1e, 0x24, 0x25, 0x28, 0x2e, 0x32, 0x32, 0x2e, 0x2a, 0x1f, 0x21, 0x21, 0x1f, 0x1e, 0x22, 0x28, 0x2c, 0x2e, 0x2c, 0x27, 0x20, 0x1d, 0x1f, 0x20, 0x1f, 0x18, 0x17, 0x18, 0x19, 0x18, 0x16, 0x16, 0x19, 0x1e, 0x1c, 0x1a, 0x1a, 0x1c, 0x1d, 0x1d, 0x1c, 0x19, 0x19, 0x1a, 0x1c, 0x1d, 0x1d, 0x1b, 0x18, 0x19, 0x19, 0x19, 0x1a, 0x1b, 0x1b, 0x1c, 0x1c, 0x1d, 0x1d, 0x1f, 0x23, 0x29, 0x30, 0x34, 0x36, 0x36, 0x38, 0x38, 0x31, 0x26, 0x1d, 0x19, 0x19, 0x1f, 0x1e, 0x1d, 0x1e, 0x1f, 0x20, 0x1f, 0x1f, 0x22, 0x1f, 0x20, 0x26, 0x2e, 0x32, 0x35, 0x37, 0x3b, 0x3b, 0x3b, 0x3b, 0x37, 0x2f, 0x28, 0x25, 0x27, 0x2a, 0x2d, 0x2e, 0x2d, 0x2c, 0x2a, 0x2a, 0x2b, 0x32, 0x33, 0x31, 0x2f, 0x2b, 0x2f, 0x3c, 0x51, 0x57, 0x5b, 0x59, 0x57, 0x59, 0x5d, 0x5f, 0x59, 0x58, 0x57, 0x59, 0x5b, 0x5b, 0x58, 0x55, 0x42, 0x34, 0x28, 0x25, 0x25, 0x24, 0x24, 0x25, 0x23, 0x1f, 0x1c, 0x1e, 0x21, 0x24, 0x28, 0x2c, 0x26, 0x28, 0x2c, 0x31, 0x35, 0x35, 0x32, 0x2e, 0x28, 0x29, 0x29, 0x2a, 0x2c, 0x30, 0x31, 0x2f, 0x23, 0x20, 0x1d, 0x1e, 0x21, 0x24, 0x2a, 0x30, 0x36, 0x39, 0x39, 0x36, 0x35, 0x37, 0x38, 0x38, 0x3a, 0x40, 0x46, 0x46, 0x43, 0x42, 0x46, 0x4b, 0x5a, 0x60, 0x61, 0x64, 0x70, 0x71, 0x5f, 0x4e, 0x4d, 0x58, 0x64, 0x69, 0x64, 0x5e, 0x5c, 0x5c, 0x69, 0x63, 0x59, 0x54, 0x56, 0x59, 0x57, 0x52, 0x58, 0x54, 0x4f, 0x4a, 0x46, 0x46, 0x4f, 0x58, 0x61, 0x5f, 0x56, 0x50, 0x50, 0x4d, 0x48, 0x4a, 0x4e, 0x51, 0x58, 0x65, 0x6e, 0x72, 0x72, 0x72, 0x7b, 0x89, 0x98, 0x9f, 0xa4, 0xa7, 0xa7, 0xa3, 0x9c, 0x8a, 0x78, 0x70, 0x6f, 0x70, 0x73, 0x77, 0x77, 0x75, 0x75, 0x79, 0x7d, 0x7f, 0x82, 0x86, 0x8c, 0x8f, 0x92, 0x94, 0x95, 0x97, 0x9b, 0x9f, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0x9f, 0x9f, 0x9e, 0xa0, 0xa1, 0xa2, 0xa2, 0xa3, 0xa2, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x99, 0x99, 0x97, 0x95, 0x93, 0x90, 0x8e, 0x8b, 0x88, 0x83, 0x7e, 0x78, 0x74, 0x6f, 0x69, 0x66, 0x67, 0x66, 0x62, 0x61, 0x64, 0x5f, 0x5f, 0x5f, 0x62, 0x66, 0x69, 0x6c, 0x6c, 0x6f, 0x72, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x6c, 0x68, 0x63, 0x5f, 0x5e, 0x5c, 0x59, 0x57, 0x52, 0x50, 0x4e, 0x4d, 0x4c, 0x4b, 0x49, 0x48, 0x47, 0x44, 0x40, 0x3d, 0x38, 0x36, 0x38, 0x3d, 0x3f, 0x3f, 0x43, 0x47, 0x4b, 0x54, 0x55, 0x4c, 0x49, 0x3c, 0x38, 0x3c, 0x3a, 0x38, 0x39, 0x3a, 0x40, 0x3b, 0x3f, 0x46, 0x3f, 0x34, 0x29, 0x1f, 0x25, 0x28, 0x2e, 0x36, 0x3d, 0x40, 0x3d, 0x39, 0x33, 0x32, 0x36, 0x49, 0x67, 0x83, 0x90, 0x91, 0x82, 0x79, 0x71, 0x71, 0x76, 0x77, 0x71, 0x6a, 0x6c, 0x67, 0x64, 0x5e, 0x57, 0x53, 0x49, 0x39, 0x37, 0x3d, 0x45, 0x47, 0x3c, 0x2e, 0x29, 0x2d, 0x30, 0x2c, 0x26, 0x22, 0x20, 0x20, 0x20, 0x20, 0x20, 0x21, 0x26, 0x2d, 0x36, 0x44, 0x56, 0x65, 0x4b, 0x31, 0x27, 0x38, 0x3f, 0x30, 0x24, 0x27, 0x28, 0x23, 0x21, 0x24, 0x2b, 0x2f, 0x2c, 0x27, 0x36, 0x44, 0x4e, 0x4a, 0x43, 0x47, 0x51, 0x58, 0x55, 0x58, 0x5d, 0x5d, 0x52, 0x45, 0x47, 0x52, 0x5d, 0x4d, 0x48, 0x4d, 0x56, 0x65, 0x63, 0x4d, 0x35, 0x2d, 0x3b, 0x57, 0x61, 0x5b, 0x58, 0x57, 0x5f, 0x54, 0x3a, 0x28, 0x33, 0x49, 0x54, 0x57, 0x54, 0x4f, 0x48, 0x3d, 0x3e, 0x38, 0x2e, 0x3c, 0x4f, 0x60, 0x53, 0x46, 0x45, 0x41, 0x43, 0x46, 0x54, 0x52, 0x50, 0x4f, 0x4c, 0x45, 0x3b, 0x34, 0x40, 0x3a, 0x3e, 0x31, 0x33, 0x36, 0x3a, 0x3e, 0x46, 0x3d, 0x3d, 0x49, 0x50, 0x44, 0x32, 0x26, 0x26, 0x3b, 0x56, 0x62, 0x58, 0x46, 0x3e, 0x40, 0x2a, 0x31, 0x32, 0x2a, 0x23, 0x22, 0x22, 0x20, 0x25, 0x28, 0x2a, 0x25, 0x1e, 0x19, 0x1b, 0x1f, 0x1d, 0x1d, 0x1e, 0x1f, 0x22, 0x26, 0x2b, 0x2e, 0x2b, 0x27, 0x28, 0x2d, 0x2c, 0x25, 0x20, 0x21, 0x1e, 0x1f, 0x22, 0x26, 0x2a, 0x2c, 0x2d, 0x2c, 0x26, 0x24, 0x20, 0x1e, 0x1f, 0x26, 0x2e, 0x33, 0x34, 0x32, 0x2d, 0x25, 0x22, 0x22, 0x22, 0x21, 0x1b, 0x19, 0x19, 0x19, 0x17, 0x15, 0x16, 0x18, 0x1c, 0x18, 0x16, 0x15, 0x18, 0x1a, 0x1b, 0x1a, 0x1b, 0x1b, 0x1b, 0x1d, 0x1e, 0x1d, 0x1b, 0x19, 0x19, 0x18, 0x18, 0x17, 0x17, 0x18, 0x1a, 0x1b, 0x1c, 0x1d, 0x1f, 0x23, 0x29, 0x2e, 0x32, 0x33, 0x34, 0x35, 0x33, 0x2c, 0x23, 0x1c, 0x1a, 0x1c, 0x1e, 0x1f, 0x1f, 0x20, 0x21, 0x20, 0x1f, 0x1e, 0x22, 0x20, 0x22, 0x2a, 0x32, 0x38, 0x3a, 0x39, 0x37, 0x35, 0x36, 0x38, 0x34, 0x2b, 0x26, 0x27, 0x26, 0x29, 0x2c, 0x2d, 0x2c, 0x2a, 0x2a, 0x2b, 0x2b, 0x33, 0x35, 0x33, 0x31, 0x2d, 0x31, 0x3d, 0x4f, 0x58, 0x60, 0x62, 0x61, 0x61, 0x60, 0x5f, 0x56, 0x53, 0x50, 0x50, 0x53, 0x53, 0x50, 0x4c, 0x3f, 0x34, 0x2a, 0x27, 0x26, 0x25, 0x25, 0x26, 0x25, 0x23, 0x22, 0x24, 0x24, 0x22, 0x21, 0x21, 0x21, 0x24, 0x2a, 0x32, 0x38, 0x38, 0x33, 0x2e, 0x26, 0x28, 0x2a, 0x2c, 0x2d, 0x2e, 0x2d, 0x2b, 0x25, 0x21, 0x1d, 0x1d, 0x1f, 0x21, 0x27, 0x2d, 0x31, 0x35, 0x37, 0x37, 0x38, 0x3a, 0x3b, 0x3a, 0x36, 0x3c, 0x44, 0x49, 0x4a, 0x49, 0x4a, 0x4b, 0x58, 0x5c, 0x5d, 0x5f, 0x61, 0x59, 0x55, 0x5b, 0x5d, 0x6d, 0x7c, 0x7e, 0x76, 0x6e, 0x6a, 0x68, 0x66, 0x5e, 0x56, 0x57, 0x62, 0x6b, 0x69, 0x62, 0x55, 0x50, 0x4b, 0x47, 0x44, 0x45, 0x4b, 0x52, 0x54, 0x58, 0x57, 0x58, 0x60, 0x64, 0x66, 0x6d, 0x62, 0x5e, 0x62, 0x6c, 0x73, 0x70, 0x6b, 0x6a, 0x66, 0x70, 0x81, 0x93, 0x9e, 0xa1, 0xa2, 0xa2, 0x9e, 0x8f, 0x7e, 0x74, 0x71, 0x71, 0x74, 0x78, 0x77, 0x75, 0x76, 0x7a, 0x7d, 0x80, 0x83, 0x87, 0x8e, 0x91, 0x93, 0x95, 0x96, 0x98, 0x9d, 0xa0, 0xa0, 0xa0, 0xa1, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa4, 0xa4, 0xa4, 0xa4, 0xa3, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0xa0, 0x9f, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x95, 0x93, 0x91, 0x8e, 0x8b, 0x87, 0x83, 0x7e, 0x7b, 0x70, 0x6c, 0x6b, 0x6c, 0x6c, 0x67, 0x62, 0x61, 0x5e, 0x5d, 0x5d, 0x5e, 0x61, 0x64, 0x66, 0x66, 0x68, 0x6b, 0x6f, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x83, 0x84, 0x85, 0x87, 0x87, 0x87, 0x86, 0x86, 0x84, 0x84, 0x82, 0x80, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x7f, 0x7d, 0x7a, 0x78, 0x75, 0x72, 0x6f, 0x6d, 0x69, 0x65, 0x62, 0x5f, 0x5c, 0x59, 0x57, 0x52, 0x50, 0x4e, 0x4d, 0x4c, 0x4b, 0x49, 0x47, 0x49, 0x45, 0x40, 0x39, 0x35, 0x37, 0x3d, 0x43, 0x43, 0x3b, 0x3b, 0x44, 0x53, 0x66, 0x6e, 0x68, 0x4e, 0x3e, 0x32, 0x2d, 0x2a, 0x2d, 0x32, 0x30, 0x37, 0x31, 0x35, 0x38, 0x31, 0x2a, 0x29, 0x27, 0x2c, 0x2c, 0x2e, 0x36, 0x3e, 0x41, 0x3e, 0x3a, 0x36, 0x32, 0x31, 0x3e, 0x5e, 0x7f, 0x90, 0x92, 0x91, 0x7b, 0x67, 0x63, 0x6c, 0x73, 0x73, 0x71, 0x71, 0x6e, 0x6e, 0x6f, 0x74, 0x7b, 0x73, 0x5f, 0x3e, 0x3a, 0x3a, 0x3e, 0x36, 0x29, 0x25, 0x2b, 0x2f, 0x2c, 0x27, 0x24, 0x21, 0x1f, 0x1e, 0x1d, 0x20, 0x22, 0x29, 0x31, 0x39, 0x42, 0x4e, 0x58, 0x4d, 0x36, 0x2a, 0x32, 0x36, 0x2b, 0x22, 0x23, 0x25, 0x21, 0x1e, 0x22, 0x2a, 0x2f, 0x2e, 0x2b, 0x39, 0x49, 0x51, 0x4a, 0x45, 0x4c, 0x52, 0x50, 0x51, 0x51, 0x52, 0x50, 0x46, 0x3e, 0x47, 0x56, 0x5f, 0x58, 0x52, 0x4a, 0x46, 0x4f, 0x53, 0x49, 0x3b, 0x3b, 0x47, 0x4b, 0x36, 0x25, 0x31, 0x45, 0x65, 0x53, 0x35, 0x26, 0x35, 0x49, 0x52, 0x55, 0x52, 0x50, 0x4d, 0x45, 0x46, 0x3c, 0x2c, 0x35, 0x49, 0x5d, 0x55, 0x41, 0x2b, 0x24, 0x40, 0x5d, 0x61, 0x5f, 0x5b, 0x54, 0x4a, 0x3f, 0x39, 0x38, 0x36, 0x43, 0x50, 0x43, 0x30, 0x2a, 0x38, 0x4a, 0x48, 0x3b, 0x30, 0x2b, 0x21, 0x17, 0x1c, 0x28, 0x28, 0x3c, 0x54, 0x5d, 0x51, 0x3e, 0x35, 0x37, 0x28, 0x28, 0x29, 0x2a, 0x2b, 0x2a, 0x29, 0x29, 0x24, 0x25, 0x25, 0x22, 0x1d, 0x19, 0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x1f, 0x22, 0x26, 0x2b, 0x2f, 0x2a, 0x24, 0x21, 0x24, 0x23, 0x1f, 0x1d, 0x20, 0x1f, 0x21, 0x24, 0x25, 0x27, 0x2b, 0x32, 0x38, 0x37, 0x2e, 0x23, 0x1d, 0x1e, 0x22, 0x27, 0x29, 0x2d, 0x2d, 0x2a, 0x25, 0x22, 0x22, 0x21, 0x1f, 0x1e, 0x1b, 0x1a, 0x19, 0x17, 0x16, 0x18, 0x1c, 0x1e, 0x1b, 0x18, 0x17, 0x18, 0x1b, 0x1d, 0x1d, 0x1e, 0x1d, 0x1c, 0x1b, 0x1c, 0x1b, 0x1a, 0x18, 0x1a, 0x19, 0x18, 0x17, 0x17, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x20, 0x25, 0x2c, 0x32, 0x36, 0x38, 0x3c, 0x3c, 0x37, 0x2e, 0x23, 0x1c, 0x1b, 0x1d, 0x1b, 0x1c, 0x1f, 0x20, 0x1f, 0x1d, 0x1a, 0x19, 0x1d, 0x1f, 0x24, 0x2b, 0x33, 0x39, 0x3b, 0x3a, 0x37, 0x33, 0x32, 0x33, 0x2e, 0x26, 0x24, 0x27, 0x29, 0x2b, 0x2d, 0x2c, 0x2b, 0x2a, 0x2c, 0x2f, 0x29, 0x2f, 0x2f, 0x2c, 0x2b, 0x2a, 0x31, 0x3f, 0x41, 0x4b, 0x55, 0x5a, 0x5d, 0x60, 0x61, 0x61, 0x60, 0x5f, 0x61, 0x66, 0x6c, 0x6c, 0x67, 0x62, 0x52, 0x45, 0x35, 0x2a, 0x25, 0x23, 0x24, 0x25, 0x29, 0x26, 0x26, 0x27, 0x25, 0x20, 0x1c, 0x1a, 0x1e, 0x20, 0x25, 0x2c, 0x31, 0x30, 0x2a, 0x25, 0x26, 0x28, 0x2c, 0x2f, 0x2e, 0x2b, 0x28, 0x26, 0x24, 0x20, 0x1e, 0x1f, 0x20, 0x21, 0x25, 0x29, 0x29, 0x2f, 0x34, 0x36, 0x38, 0x3a, 0x3b, 0x39, 0x3b, 0x3f, 0x45, 0x48, 0x49, 0x49, 0x49, 0x49, 0x57, 0x52, 0x4e, 0x53, 0x5a, 0x58, 0x59, 0x65, 0x6e, 0x73, 0x73, 0x6b, 0x62, 0x5e, 0x5f, 0x60, 0x6e, 0x65, 0x5a, 0x57, 0x5d, 0x60, 0x59, 0x4f, 0x51, 0x4b, 0x47, 0x48, 0x4a, 0x4b, 0x4c, 0x4e, 0x61, 0x62, 0x5b, 0x52, 0x4f, 0x4f, 0x53, 0x5d, 0x69, 0x6a, 0x70, 0x75, 0x70, 0x66, 0x62, 0x65, 0x57, 0x58, 0x68, 0x82, 0x93, 0x96, 0x98, 0x9c, 0x9f, 0x93, 0x84, 0x7a, 0x74, 0x73, 0x74, 0x76, 0x76, 0x75, 0x77, 0x7b, 0x7f, 0x81, 0x85, 0x89, 0x8f, 0x92, 0x94, 0x95, 0x96, 0x99, 0x9d, 0xa0, 0xa1, 0xa2, 0xa3, 0xa3, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa5, 0xa5, 0xa5, 0xa5, 0xa6, 0xa5, 0xa5, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa2, 0xa2, 0xa1, 0x9f, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x94, 0x92, 0x90, 0x8e, 0x8c, 0x89, 0x85, 0x83, 0x78, 0x74, 0x6f, 0x6e, 0x6d, 0x6a, 0x66, 0x64, 0x60, 0x5e, 0x5d, 0x5d, 0x5e, 0x60, 0x61, 0x61, 0x61, 0x64, 0x69, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x84, 0x85, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x84, 0x81, 0x7e, 0x7b, 0x77, 0x74, 0x71, 0x6b, 0x69, 0x66, 0x63, 0x60, 0x5d, 0x5a, 0x59, 0x53, 0x51, 0x4f, 0x4d, 0x4c, 0x4b, 0x49, 0x47, 0x48, 0x45, 0x3e, 0x38, 0x38, 0x3f, 0x49, 0x50, 0x47, 0x46, 0x4e, 0x55, 0x56, 0x57, 0x51, 0x45, 0x38, 0x32, 0x2e, 0x2e, 0x37, 0x4a, 0x52, 0x4a, 0x2f, 0x22, 0x20, 0x29, 0x2e, 0x31, 0x32, 0x2e, 0x33, 0x2e, 0x2a, 0x2b, 0x31, 0x38, 0x3c, 0x3d, 0x3c, 0x34, 0x2e, 0x37, 0x50, 0x6d, 0x82, 0x8c, 0x8c, 0x7e, 0x6b, 0x58, 0x4a, 0x45, 0x4c, 0x54, 0x4c, 0x48, 0x4a, 0x51, 0x5e, 0x6e, 0x6d, 0x5c, 0x41, 0x38, 0x36, 0x3e, 0x3d, 0x31, 0x2a, 0x2d, 0x2c, 0x2a, 0x28, 0x28, 0x29, 0x29, 0x29, 0x29, 0x1e, 0x1f, 0x26, 0x34, 0x41, 0x47, 0x4a, 0x4b, 0x4d, 0x3e, 0x30, 0x2a, 0x28, 0x24, 0x20, 0x1e, 0x24, 0x20, 0x1f, 0x22, 0x2a, 0x2f, 0x2f, 0x2d, 0x33, 0x49, 0x51, 0x41, 0x35, 0x3d, 0x4a, 0x4f, 0x4e, 0x50, 0x56, 0x59, 0x4f, 0x43, 0x44, 0x4d, 0x3d, 0x2e, 0x24, 0x2b, 0x3e, 0x4e, 0x49, 0x39, 0x31, 0x26, 0x28, 0x2f, 0x2e, 0x33, 0x47, 0x59, 0x51, 0x3e, 0x25, 0x21, 0x38, 0x4c, 0x55, 0x5a, 0x5c, 0x59, 0x55, 0x4d, 0x4e, 0x46, 0x38, 0x44, 0x59, 0x57, 0x49, 0x43, 0x3a, 0x32, 0x43, 0x54, 0x68, 0x5e, 0x52, 0x49, 0x42, 0x3e, 0x3f, 0x42, 0x4d, 0x55, 0x53, 0x48, 0x33, 0x2d, 0x3b, 0x4b, 0x3b, 0x33, 0x2d, 0x2d, 0x2b, 0x25, 0x22, 0x24, 0x3e, 0x4a, 0x58, 0x5b, 0x4f, 0x40, 0x38, 0x36, 0x2b, 0x26, 0x23, 0x25, 0x27, 0x26, 0x25, 0x26, 0x21, 0x20, 0x20, 0x1e, 0x1c, 0x1a, 0x18, 0x18, 0x1d, 0x1d, 0x1e, 0x1e, 0x1f, 0x21, 0x25, 0x27, 0x25, 0x25, 0x28, 0x2c, 0x2c, 0x28, 0x23, 0x20, 0x25, 0x29, 0x2b, 0x2c, 0x2c, 0x31, 0x3a, 0x43, 0x38, 0x2d, 0x21, 0x1c, 0x1e, 0x1f, 0x20, 0x21, 0x24, 0x25, 0x24, 0x21, 0x20, 0x20, 0x1f, 0x1d, 0x1c, 0x1a, 0x19, 0x1a, 0x19, 0x18, 0x1b, 0x1f, 0x1f, 0x1e, 0x1c, 0x1b, 0x1a, 0x1b, 0x1d, 0x1e, 0x1e, 0x1d, 0x1b, 0x1b, 0x1b, 0x1a, 0x19, 0x17, 0x18, 0x18, 0x17, 0x17, 0x17, 0x18, 0x19, 0x1a, 0x19, 0x1a, 0x1d, 0x23, 0x2c, 0x34, 0x39, 0x3c, 0x3b, 0x3b, 0x37, 0x2f, 0x24, 0x1e, 0x1e, 0x20, 0x1b, 0x1d, 0x20, 0x20, 0x1f, 0x1c, 0x1a, 0x18, 0x1e, 0x24, 0x2b, 0x30, 0x34, 0x39, 0x3b, 0x3b, 0x3b, 0x38, 0x34, 0x2f, 0x28, 0x21, 0x20, 0x22, 0x23, 0x26, 0x29, 0x2b, 0x2b, 0x2e, 0x34, 0x39, 0x31, 0x32, 0x2b, 0x24, 0x23, 0x24, 0x2d, 0x3c, 0x48, 0x4f, 0x55, 0x59, 0x5c, 0x60, 0x63, 0x64, 0x67, 0x6b, 0x71, 0x79, 0x7e, 0x7b, 0x73, 0x6c, 0x5e, 0x4e, 0x37, 0x26, 0x1f, 0x20, 0x24, 0x26, 0x29, 0x25, 0x22, 0x22, 0x21, 0x1e, 0x1d, 0x1d, 0x24, 0x25, 0x27, 0x2a, 0x2b, 0x29, 0x24, 0x20, 0x24, 0x26, 0x29, 0x2c, 0x2a, 0x25, 0x21, 0x21, 0x21, 0x1f, 0x1e, 0x20, 0x22, 0x23, 0x26, 0x29, 0x2b, 0x31, 0x36, 0x38, 0x39, 0x3b, 0x3a, 0x38, 0x3d, 0x3e, 0x40, 0x41, 0x43, 0x47, 0x4c, 0x4f, 0x52, 0x52, 0x4f, 0x4e, 0x4d, 0x46, 0x47, 0x53, 0x5c, 0x5c, 0x5c, 0x5b, 0x59, 0x58, 0x58, 0x59, 0x58, 0x55, 0x52, 0x52, 0x56, 0x58, 0x54, 0x4d, 0x4c, 0x45, 0x41, 0x45, 0x4c, 0x4e, 0x4d, 0x4b, 0x4c, 0x52, 0x50, 0x4a, 0x46, 0x42, 0x43, 0x4c, 0x4d, 0x4f, 0x56, 0x61, 0x66, 0x61, 0x59, 0x53, 0x52, 0x4f, 0x59, 0x71, 0x85, 0x8b, 0x90, 0x97, 0x9e, 0x99, 0x8f, 0x84, 0x7a, 0x74, 0x73, 0x74, 0x74, 0x74, 0x77, 0x7c, 0x80, 0x82, 0x87, 0x8c, 0x90, 0x92, 0x95, 0x97, 0x97, 0x99, 0x9d, 0xa0, 0xa4, 0xa4, 0xa5, 0xa5, 0xa5, 0xa5, 0xa4, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa5, 0xa5, 0xa5, 0xa5, 0xa4, 0xa3, 0xa2, 0xa2, 0xa1, 0x9f, 0x9c, 0x9b, 0x9b, 0x9a, 0x99, 0x99, 0x95, 0x93, 0x91, 0x90, 0x8f, 0x8d, 0x8a, 0x88, 0x84, 0x7d, 0x74, 0x6f, 0x6d, 0x6c, 0x6b, 0x69, 0x62, 0x60, 0x5d, 0x5b, 0x5b, 0x5c, 0x5c, 0x5c, 0x5b, 0x5e, 0x62, 0x65, 0x67, 0x68, 0x6a, 0x6b, 0x6d, 0x6f, 0x72, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x85, 0x87, 0x88, 0x8a, 0x8c, 0x8d, 0x8d, 0x8d, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x8b, 0x89, 0x85, 0x81, 0x7d, 0x79, 0x75, 0x73, 0x6a, 0x69, 0x67, 0x65, 0x62, 0x5e, 0x5c, 0x5a, 0x54, 0x53, 0x50, 0x4f, 0x4e, 0x4c, 0x4a, 0x48, 0x4a, 0x46, 0x3e, 0x37, 0x38, 0x40, 0x48, 0x4d, 0x4b, 0x5a, 0x71, 0x77, 0x64, 0x4b, 0x35, 0x25, 0x23, 0x24, 0x26, 0x27, 0x2f, 0x40, 0x43, 0x33, 0x2a, 0x22, 0x24, 0x2d, 0x2f, 0x30, 0x31, 0x2e, 0x27, 0x25, 0x25, 0x29, 0x30, 0x36, 0x37, 0x37, 0x38, 0x36, 0x3a, 0x49, 0x5b, 0x69, 0x73, 0x79, 0x74, 0x76, 0x76, 0x6f, 0x62, 0x53, 0x47, 0x41, 0x45, 0x3e, 0x3b, 0x3e, 0x46, 0x53, 0x54, 0x49, 0x34, 0x2f, 0x34, 0x41, 0x44, 0x38, 0x2d, 0x2a, 0x2d, 0x2b, 0x29, 0x29, 0x29, 0x2a, 0x2b, 0x2b, 0x31, 0x2f, 0x34, 0x42, 0x52, 0x59, 0x59, 0x56, 0x4f, 0x46, 0x37, 0x29, 0x22, 0x20, 0x1e, 0x1c, 0x22, 0x21, 0x21, 0x23, 0x28, 0x2b, 0x2d, 0x2c, 0x36, 0x41, 0x41, 0x33, 0x31, 0x44, 0x55, 0x59, 0x50, 0x54, 0x5b, 0x5d, 0x50, 0x3e, 0x39, 0x3e, 0x49, 0x54, 0x5a, 0x53, 0x49, 0x43, 0x41, 0x40, 0x30, 0x23, 0x23, 0x33, 0x42, 0x4c, 0x4e, 0x49, 0x3c, 0x2c, 0x1d, 0x25, 0x40, 0x51, 0x57, 0x5d, 0x55, 0x4f, 0x45, 0x36, 0x33, 0x2e, 0x27, 0x38, 0x54, 0x5f, 0x60, 0x5b, 0x47, 0x3d, 0x59, 0x72, 0x6e, 0x5a, 0x46, 0x41, 0x45, 0x4b, 0x50, 0x54, 0x5d, 0x51, 0x36, 0x33, 0x2e, 0x35, 0x3d, 0x40, 0x52, 0x43, 0x32, 0x28, 0x27, 0x2b, 0x32, 0x37, 0x46, 0x52, 0x61, 0x67, 0x5e, 0x4d, 0x3b, 0x31, 0x39, 0x38, 0x31, 0x26, 0x1f, 0x1e, 0x1d, 0x1b, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x1b, 0x1a, 0x1a, 0x1d, 0x1e, 0x1e, 0x1d, 0x1c, 0x1c, 0x1e, 0x1f, 0x22, 0x27, 0x2d, 0x30, 0x32, 0x30, 0x2a, 0x24, 0x21, 0x24, 0x27, 0x28, 0x27, 0x29, 0x2e, 0x32, 0x2a, 0x22, 0x1d, 0x1e, 0x20, 0x20, 0x21, 0x22, 0x20, 0x21, 0x21, 0x1e, 0x1d, 0x1e, 0x1e, 0x1c, 0x1b, 0x1b, 0x1c, 0x1d, 0x1c, 0x1a, 0x1a, 0x1d, 0x17, 0x1a, 0x1c, 0x1b, 0x18, 0x15, 0x14, 0x15, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x18, 0x16, 0x17, 0x17, 0x18, 0x19, 0x19, 0x19, 0x19, 0x19, 0x18, 0x19, 0x1b, 0x20, 0x28, 0x31, 0x37, 0x3a, 0x34, 0x36, 0x36, 0x31, 0x28, 0x21, 0x20, 0x21, 0x1c, 0x1e, 0x1f, 0x1f, 0x1d, 0x1c, 0x1c, 0x1c, 0x21, 0x2c, 0x35, 0x36, 0x34, 0x35, 0x38, 0x39, 0x3e, 0x3e, 0x39, 0x2e, 0x25, 0x20, 0x1e, 0x1d, 0x1e, 0x22, 0x26, 0x28, 0x29, 0x2d, 0x34, 0x3a, 0x36, 0x35, 0x2c, 0x25, 0x25, 0x24, 0x29, 0x35, 0x49, 0x4f, 0x56, 0x59, 0x5a, 0x5c, 0x5d, 0x5b, 0x63, 0x65, 0x68, 0x6c, 0x6c, 0x69, 0x63, 0x5f, 0x57, 0x48, 0x33, 0x24, 0x1f, 0x21, 0x23, 0x23, 0x25, 0x21, 0x1f, 0x1f, 0x20, 0x20, 0x20, 0x22, 0x28, 0x28, 0x28, 0x28, 0x27, 0x26, 0x25, 0x24, 0x24, 0x23, 0x24, 0x26, 0x24, 0x1f, 0x1e, 0x21, 0x22, 0x20, 0x20, 0x22, 0x23, 0x23, 0x25, 0x28, 0x2d, 0x32, 0x36, 0x38, 0x39, 0x3c, 0x3e, 0x3d, 0x38, 0x39, 0x3b, 0x3c, 0x3f, 0x45, 0x4c, 0x52, 0x53, 0x5b, 0x5a, 0x55, 0x4f, 0x48, 0x45, 0x4c, 0x49, 0x49, 0x4e, 0x56, 0x56, 0x4d, 0x43, 0x3f, 0x4b, 0x50, 0x53, 0x53, 0x52, 0x51, 0x4e, 0x4b, 0x4f, 0x45, 0x3e, 0x40, 0x46, 0x4a, 0x49, 0x48, 0x56, 0x5f, 0x63, 0x62, 0x60, 0x5a, 0x55, 0x59, 0x57, 0x56, 0x58, 0x60, 0x6a, 0x69, 0x5a, 0x49, 0x50, 0x51, 0x54, 0x5e, 0x6e, 0x7f, 0x8a, 0x8f, 0x98, 0x9c, 0x9b, 0x8e, 0x7e, 0x73, 0x72, 0x75, 0x72, 0x74, 0x77, 0x7d, 0x81, 0x83, 0x89, 0x8e, 0x90, 0x93, 0x97, 0x99, 0x99, 0x9a, 0x9d, 0xa0, 0xa3, 0xa4, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xa5, 0xa6, 0xa5, 0xa5, 0xa4, 0xa3, 0xa1, 0xa1, 0xa0, 0x9e, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x93, 0x92, 0x91, 0x8f, 0x8d, 0x8b, 0x85, 0x7c, 0x76, 0x74, 0x73, 0x6f, 0x6b, 0x64, 0x61, 0x5d, 0x5a, 0x59, 0x59, 0x58, 0x58, 0x5a, 0x5c, 0x5f, 0x61, 0x62, 0x64, 0x66, 0x68, 0x69, 0x6b, 0x6e, 0x70, 0x71, 0x72, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x7a, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7e, 0x81, 0x82, 0x83, 0x83, 0x83, 0x87, 0x87, 0x89, 0x8a, 0x8c, 0x8e, 0x8f, 0x90, 0x91, 0x90, 0x90, 0x92, 0x94, 0x95, 0x94, 0x93, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8f, 0x8c, 0x88, 0x83, 0x7f, 0x7b, 0x77, 0x74, 0x6b, 0x6b, 0x6a, 0x67, 0x63, 0x5f, 0x5c, 0x5b, 0x56, 0x54, 0x52, 0x50, 0x4f, 0x4d, 0x4b, 0x49, 0x4c, 0x47, 0x3f, 0x38, 0x39, 0x3f, 0x42, 0x41, 0x33, 0x3a, 0x47, 0x48, 0x39, 0x2d, 0x2b, 0x29, 0x29, 0x29, 0x2b, 0x29, 0x28, 0x2f, 0x30, 0x25, 0x2e, 0x24, 0x23, 0x25, 0x23, 0x24, 0x2b, 0x2e, 0x20, 0x22, 0x28, 0x33, 0x3e, 0x41, 0x3c, 0x36, 0x31, 0x3b, 0x4c, 0x5f, 0x6b, 0x6c, 0x64, 0x5c, 0x53, 0x5f, 0x70, 0x7e, 0x84, 0x7d, 0x67, 0x52, 0x4a, 0x3f, 0x38, 0x35, 0x33, 0x37, 0x39, 0x33, 0x2b, 0x2a, 0x2f, 0x39, 0x3a, 0x31, 0x28, 0x25, 0x2e, 0x2b, 0x27, 0x24, 0x23, 0x23, 0x24, 0x24, 0x24, 0x24, 0x28, 0x34, 0x41, 0x47, 0x4a, 0x4a, 0x50, 0x45, 0x37, 0x2d, 0x25, 0x21, 0x1f, 0x1f, 0x24, 0x24, 0x25, 0x26, 0x26, 0x27, 0x28, 0x29, 0x3b, 0x3e, 0x3b, 0x36, 0x41, 0x57, 0x5f, 0x5a, 0x4f, 0x54, 0x5b, 0x59, 0x47, 0x33, 0x2f, 0x36, 0x4f, 0x5a, 0x59, 0x4e, 0x4d, 0x4d, 0x3f, 0x2e, 0x12, 0x23, 0x3a, 0x44, 0x3e, 0x3e, 0x46, 0x4a, 0x3f, 0x31, 0x27, 0x32, 0x47, 0x4e, 0x4b, 0x4e, 0x59, 0x53, 0x47, 0x35, 0x30, 0x2c, 0x29, 0x3e, 0x58, 0x5c, 0x56, 0x54, 0x50, 0x56, 0x6a, 0x6d, 0x6a, 0x5b, 0x4d, 0x49, 0x4a, 0x4b, 0x4f, 0x54, 0x42, 0x47, 0x37, 0x39, 0x2a, 0x31, 0x4b, 0x60, 0x4f, 0x47, 0x3f, 0x3a, 0x33, 0x2e, 0x31, 0x39, 0x55, 0x5a, 0x5f, 0x5d, 0x56, 0x4a, 0x3e, 0x36, 0x4d, 0x53, 0x4a, 0x31, 0x1f, 0x1e, 0x1e, 0x19, 0x17, 0x1a, 0x1d, 0x1e, 0x1c, 0x1a, 0x1a, 0x1b, 0x1d, 0x1d, 0x1d, 0x1d, 0x1b, 0x1b, 0x1c, 0x1d, 0x20, 0x25, 0x28, 0x28, 0x2b, 0x2f, 0x2d, 0x27, 0x24, 0x25, 0x28, 0x29, 0x28, 0x26, 0x24, 0x23, 0x20, 0x1d, 0x1e, 0x22, 0x23, 0x20, 0x20, 0x22, 0x1e, 0x1f, 0x1e, 0x1b, 0x1a, 0x1c, 0x1c, 0x1a, 0x1d, 0x1d, 0x20, 0x22, 0x1f, 0x1b, 0x18, 0x19, 0x1c, 0x22, 0x27, 0x27, 0x22, 0x1c, 0x1a, 0x1a, 0x19, 0x1a, 0x1c, 0x1e, 0x1e, 0x1c, 0x19, 0x16, 0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x1c, 0x1c, 0x1c, 0x1c, 0x20, 0x27, 0x2e, 0x34, 0x37, 0x38, 0x3b, 0x3c, 0x37, 0x2d, 0x23, 0x1e, 0x1e, 0x1a, 0x1b, 0x1b, 0x1a, 0x18, 0x19, 0x1b, 0x1e, 0x22, 0x2f, 0x3a, 0x38, 0x31, 0x2f, 0x32, 0x34, 0x3e, 0x41, 0x3c, 0x2f, 0x24, 0x21, 0x1e, 0x1b, 0x23, 0x26, 0x29, 0x28, 0x25, 0x25, 0x29, 0x2d, 0x2d, 0x2e, 0x2a, 0x29, 0x2b, 0x29, 0x2a, 0x32, 0x3f, 0x49, 0x55, 0x5c, 0x60, 0x60, 0x5d, 0x59, 0x5b, 0x59, 0x57, 0x56, 0x55, 0x56, 0x57, 0x57, 0x52, 0x46, 0x36, 0x2a, 0x25, 0x24, 0x1f, 0x1a, 0x21, 0x1f, 0x1f, 0x21, 0x23, 0x22, 0x22, 0x23, 0x25, 0x24, 0x24, 0x23, 0x22, 0x23, 0x25, 0x27, 0x27, 0x25, 0x24, 0x25, 0x22, 0x1f, 0x21, 0x26, 0x26, 0x24, 0x22, 0x23, 0x23, 0x22, 0x23, 0x26, 0x29, 0x2d, 0x31, 0x33, 0x37, 0x3d, 0x41, 0x42, 0x34, 0x37, 0x3a, 0x3b, 0x3c, 0x3e, 0x43, 0x47, 0x4b, 0x4d, 0x4a, 0x4d, 0x5a, 0x60, 0x58, 0x51, 0x47, 0x44, 0x48, 0x52, 0x53, 0x47, 0x3d, 0x3a, 0x3e, 0x49, 0x53, 0x55, 0x53, 0x51, 0x52, 0x53, 0x58, 0x4d, 0x42, 0x40, 0x43, 0x46, 0x47, 0x48, 0x4f, 0x54, 0x53, 0x53, 0x57, 0x58, 0x58, 0x5e, 0x5b, 0x62, 0x66, 0x65, 0x64, 0x62, 0x5a, 0x50, 0x4c, 0x52, 0x50, 0x4d, 0x59, 0x72, 0x83, 0x85, 0x91, 0x9c, 0xa1, 0x95, 0x7f, 0x72, 0x72, 0x78, 0x71, 0x73, 0x78, 0x7d, 0x81, 0x84, 0x8a, 0x8f, 0x90, 0x94, 0x98, 0x9a, 0x9b, 0x9c, 0x9e, 0xa0, 0xa1, 0xa2, 0xa3, 0xa5, 0xa7, 0xa8, 0xa9, 0xa9, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa8, 0xa8, 0xa6, 0xa6, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x9a, 0x99, 0x99, 0x99, 0x9a, 0x99, 0x9c, 0x9b, 0x99, 0x97, 0x96, 0x94, 0x92, 0x90, 0x8c, 0x89, 0x84, 0x80, 0x7e, 0x7a, 0x71, 0x69, 0x66, 0x63, 0x5e, 0x5a, 0x58, 0x57, 0x56, 0x56, 0x5a, 0x5c, 0x5e, 0x60, 0x61, 0x63, 0x65, 0x67, 0x66, 0x68, 0x6b, 0x6d, 0x6e, 0x70, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x78, 0x79, 0x7c, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x87, 0x88, 0x89, 0x8a, 0x8c, 0x8e, 0x90, 0x91, 0x91, 0x90, 0x90, 0x92, 0x96, 0x97, 0x97, 0x96, 0x98, 0x97, 0x97, 0x96, 0x94, 0x92, 0x90, 0x8f, 0x91, 0x8e, 0x89, 0x84, 0x80, 0x7c, 0x77, 0x75, 0x6d, 0x6d, 0x6c, 0x69, 0x65, 0x60, 0x5d, 0x5b, 0x57, 0x55, 0x53, 0x51, 0x50, 0x4e, 0x4c, 0x4a, 0x49, 0x46, 0x40, 0x3c, 0x3e, 0x44, 0x44, 0x3f, 0x39, 0x32, 0x31, 0x2f, 0x28, 0x25, 0x26, 0x24, 0x29, 0x27, 0x2c, 0x30, 0x31, 0x39, 0x43, 0x45, 0x2a, 0x1f, 0x24, 0x34, 0x3e, 0x3d, 0x30, 0x21, 0x1d, 0x1b, 0x1d, 0x27, 0x35, 0x3c, 0x39, 0x33, 0x34, 0x42, 0x53, 0x60, 0x69, 0x68, 0x5a, 0x49, 0x38, 0x4a, 0x5c, 0x68, 0x72, 0x78, 0x73, 0x68, 0x54, 0x47, 0x40, 0x3d, 0x38, 0x38, 0x3d, 0x3c, 0x30, 0x2e, 0x2d, 0x2d, 0x29, 0x23, 0x22, 0x24, 0x2a, 0x27, 0x23, 0x20, 0x20, 0x22, 0x23, 0x24, 0x22, 0x25, 0x2e, 0x3a, 0x44, 0x4a, 0x50, 0x55, 0x4f, 0x40, 0x34, 0x30, 0x2c, 0x24, 0x21, 0x25, 0x26, 0x28, 0x29, 0x28, 0x25, 0x24, 0x25, 0x27, 0x37, 0x42, 0x49, 0x47, 0x4a, 0x53, 0x55, 0x4f, 0x47, 0x51, 0x5f, 0x5f, 0x4a, 0x32, 0x2d, 0x35, 0x56, 0x67, 0x60, 0x49, 0x44, 0x47, 0x38, 0x21, 0x19, 0x20, 0x2b, 0x30, 0x33, 0x3f, 0x46, 0x42, 0x2f, 0x27, 0x25, 0x37, 0x4f, 0x53, 0x50, 0x53, 0x51, 0x4f, 0x48, 0x3a, 0x38, 0x35, 0x35, 0x4b, 0x51, 0x62, 0x64, 0x5c, 0x52, 0x5a, 0x6a, 0x62, 0x5d, 0x5a, 0x58, 0x53, 0x46, 0x3a, 0x3b, 0x44, 0x46, 0x4f, 0x3f, 0x43, 0x2f, 0x30, 0x45, 0x57, 0x54, 0x42, 0x34, 0x34, 0x35, 0x36, 0x42, 0x51, 0x5a, 0x5d, 0x5f, 0x5a, 0x51, 0x45, 0x3a, 0x32, 0x5c, 0x4d, 0x35, 0x22, 0x1f, 0x26, 0x26, 0x20, 0x1d, 0x1a, 0x18, 0x19, 0x1a, 0x19, 0x19, 0x1a, 0x1c, 0x1f, 0x21, 0x20, 0x1c, 0x1a, 0x1b, 0x1e, 0x24, 0x21, 0x1d, 0x1b, 0x1c, 0x1d, 0x1e, 0x1d, 0x1d, 0x1f, 0x21, 0x23, 0x23, 0x23, 0x24, 0x24, 0x1d, 0x1f, 0x20, 0x22, 0x22, 0x22, 0x21, 0x21, 0x1f, 0x1f, 0x1f, 0x1f, 0x1e, 0x1d, 0x1c, 0x1b, 0x1e, 0x23, 0x26, 0x25, 0x22, 0x20, 0x1c, 0x18, 0x1b, 0x25, 0x2f, 0x30, 0x2e, 0x2b, 0x26, 0x20, 0x1e, 0x1a, 0x1a, 0x1d, 0x1e, 0x1a, 0x17, 0x17, 0x1b, 0x1b, 0x1a, 0x18, 0x17, 0x18, 0x1b, 0x1e, 0x1e, 0x1d, 0x20, 0x27, 0x2d, 0x2f, 0x31, 0x33, 0x3c, 0x3e, 0x3f, 0x3a, 0x30, 0x25, 0x1e, 0x1c, 0x20, 0x1e, 0x1c, 0x1a, 0x18, 0x17, 0x1b, 0x21, 0x27, 0x2d, 0x30, 0x2e, 0x2c, 0x2e, 0x32, 0x35, 0x38, 0x37, 0x33, 0x2c, 0x25, 0x20, 0x1e, 0x1e, 0x24, 0x25, 0x25, 0x26, 0x27, 0x2a, 0x2d, 0x30, 0x27, 0x2d, 0x31, 0x36, 0x3a, 0x35, 0x30, 0x34, 0x3c, 0x46, 0x4f, 0x51, 0x52, 0x57, 0x5f, 0x64, 0x6a, 0x6c, 0x6f, 0x6f, 0x67, 0x5b, 0x51, 0x4b, 0x54, 0x44, 0x39, 0x31, 0x25, 0x1f, 0x20, 0x1f, 0x21, 0x25, 0x2a, 0x2d, 0x2d, 0x2a, 0x25, 0x20, 0x29, 0x26, 0x22, 0x1f, 0x1e, 0x20, 0x23, 0x25, 0x22, 0x1e, 0x1e, 0x23, 0x28, 0x28, 0x25, 0x24, 0x23, 0x23, 0x24, 0x23, 0x22, 0x21, 0x24, 0x28, 0x2d, 0x2f, 0x32, 0x31, 0x30, 0x34, 0x3d, 0x45, 0x44, 0x41, 0x40, 0x44, 0x46, 0x45, 0x45, 0x46, 0x4a, 0x45, 0x43, 0x4a, 0x53, 0x53, 0x4c, 0x44, 0x3b, 0x38, 0x3e, 0x4c, 0x54, 0x4d, 0x42, 0x3d, 0x42, 0x4b, 0x54, 0x5a, 0x60, 0x66, 0x68, 0x65, 0x5d, 0x52, 0x49, 0x47, 0x49, 0x49, 0x47, 0x45, 0x46, 0x44, 0x44, 0x46, 0x45, 0x44, 0x46, 0x48, 0x51, 0x4c, 0x4b, 0x53, 0x5c, 0x5e, 0x58, 0x51, 0x49, 0x52, 0x4f, 0x4c, 0x56, 0x61, 0x6f, 0x82, 0x8a, 0x94, 0x9e, 0x9c, 0x8c, 0x79, 0x6e, 0x6c, 0x6f, 0x72, 0x77, 0x7c, 0x80, 0x85, 0x8a, 0x8e, 0x91, 0x93, 0x97, 0x9a, 0x9d, 0x9f, 0xa1, 0xa2, 0xa2, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa7, 0xa9, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa6, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa0, 0x9f, 0x9e, 0x9c, 0x9d, 0x9d, 0x9b, 0x98, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x97, 0x95, 0x93, 0x92, 0x90, 0x90, 0x8d, 0x88, 0x83, 0x7d, 0x76, 0x6f, 0x67, 0x65, 0x62, 0x5d, 0x58, 0x55, 0x55, 0x55, 0x59, 0x59, 0x5a, 0x5b, 0x5d, 0x5f, 0x61, 0x62, 0x62, 0x64, 0x67, 0x6a, 0x6c, 0x6f, 0x72, 0x75, 0x75, 0x78, 0x7b, 0x7b, 0x78, 0x76, 0x76, 0x77, 0x7b, 0x79, 0x78, 0x7a, 0x7d, 0x7f, 0x7d, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x80, 0x83, 0x84, 0x86, 0x89, 0x8c, 0x8e, 0x8f, 0x90, 0x92, 0x90, 0x8e, 0x90, 0x93, 0x96, 0x96, 0x95, 0x94, 0x97, 0x97, 0x95, 0x91, 0x8e, 0x8f, 0x90, 0x92, 0x90, 0x8d, 0x89, 0x85, 0x7f, 0x79, 0x75, 0x6e, 0x6e, 0x6d, 0x6b, 0x67, 0x62, 0x5e, 0x5b, 0x57, 0x57, 0x57, 0x55, 0x51, 0x4e, 0x4c, 0x4b, 0x48, 0x44, 0x3e, 0x3c, 0x42, 0x48, 0x46, 0x3f, 0x2f, 0x27, 0x21, 0x23, 0x2a, 0x2e, 0x2f, 0x2e, 0x25, 0x1f, 0x1e, 0x2c, 0x3f, 0x49, 0x43, 0x39, 0x28, 0x27, 0x2a, 0x32, 0x35, 0x2e, 0x24, 0x1f, 0x1a, 0x1f, 0x27, 0x30, 0x39, 0x3d, 0x3b, 0x37, 0x35, 0x40, 0x55, 0x67, 0x68, 0x5d, 0x56, 0x57, 0x44, 0x43, 0x42, 0x4b, 0x60, 0x72, 0x74, 0x6b, 0x5f, 0x5b, 0x51, 0x47, 0x45, 0x47, 0x43, 0x3c, 0x33, 0x2b, 0x26, 0x28, 0x28, 0x23, 0x1f, 0x20, 0x21, 0x27, 0x2b, 0x2b, 0x2b, 0x2a, 0x24, 0x1d, 0x20, 0x20, 0x26, 0x34, 0x44, 0x4f, 0x59, 0x5f, 0x56, 0x3f, 0x42, 0x54, 0x4a, 0x2e, 0x24, 0x2d, 0x36, 0x2c, 0x2c, 0x26, 0x23, 0x24, 0x22, 0x2c, 0x3d, 0x48, 0x4d, 0x48, 0x44, 0x47, 0x46, 0x42, 0x4e, 0x56, 0x5e, 0x60, 0x49, 0x36, 0x23, 0x35, 0x5d, 0x6d, 0x62, 0x4f, 0x42, 0x38, 0x32, 0x26, 0x1b, 0x24, 0x2a, 0x2e, 0x3b, 0x48, 0x44, 0x36, 0x29, 0x1d, 0x21, 0x3b, 0x4e, 0x4c, 0x48, 0x4b, 0x51, 0x57, 0x4b, 0x44, 0x4a, 0x44, 0x40, 0x4f, 0x52, 0x51, 0x52, 0x4f, 0x4b, 0x55, 0x61, 0x64, 0x67, 0x65, 0x61, 0x5e, 0x5e, 0x5e, 0x58, 0x51, 0x40, 0x3c, 0x2e, 0x17, 0x19, 0x44, 0x62, 0x5a, 0x50, 0x45, 0x3e, 0x3d, 0x3a, 0x39, 0x48, 0x5b, 0x61, 0x65, 0x64, 0x57, 0x42, 0x30, 0x2c, 0x2f, 0x49, 0x3a, 0x2a, 0x21, 0x20, 0x20, 0x20, 0x1f, 0x1c, 0x1b, 0x1c, 0x1f, 0x1e, 0x1b, 0x1a, 0x1b, 0x1e, 0x22, 0x25, 0x23, 0x1f, 0x1c, 0x1e, 0x21, 0x24, 0x21, 0x1e, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x1c, 0x1e, 0x20, 0x21, 0x21, 0x21, 0x20, 0x1f, 0x1e, 0x21, 0x24, 0x26, 0x26, 0x25, 0x24, 0x24, 0x21, 0x21, 0x21, 0x22, 0x22, 0x1f, 0x1b, 0x17, 0x1e, 0x23, 0x26, 0x26, 0x24, 0x22, 0x1f, 0x1b, 0x1a, 0x23, 0x2a, 0x2b, 0x2b, 0x2b, 0x29, 0x26, 0x23, 0x1e, 0x1c, 0x1e, 0x1f, 0x1e, 0x1d, 0x1f, 0x1e, 0x1d, 0x1b, 0x19, 0x17, 0x17, 0x19, 0x1a, 0x1c, 0x1b, 0x1e, 0x26, 0x2d, 0x2f, 0x2e, 0x2d, 0x33, 0x37, 0x3b, 0x39, 0x31, 0x28, 0x21, 0x1e, 0x1d, 0x1c, 0x1c, 0x1d, 0x1c, 0x1b, 0x1f, 0x24, 0x28, 0x2b, 0x2d, 0x2d, 0x2f, 0x32, 0x35, 0x36, 0x34, 0x32, 0x2d, 0x26, 0x20, 0x1d, 0x1e, 0x1f, 0x20, 0x22, 0x25, 0x26, 0x25, 0x26, 0x27, 0x29, 0x28, 0x2d, 0x2e, 0x32, 0x37, 0x36, 0x37, 0x3e, 0x50, 0x56, 0x58, 0x55, 0x52, 0x55, 0x5d, 0x63, 0x67, 0x68, 0x6a, 0x6c, 0x6b, 0x67, 0x63, 0x60, 0x52, 0x41, 0x35, 0x2e, 0x25, 0x23, 0x28, 0x2b, 0x33, 0x32, 0x31, 0x31, 0x30, 0x2e, 0x29, 0x24, 0x24, 0x24, 0x23, 0x22, 0x22, 0x21, 0x21, 0x21, 0x23, 0x1f, 0x1d, 0x20, 0x22, 0x22, 0x20, 0x20, 0x22, 0x22, 0x22, 0x21, 0x20, 0x20, 0x22, 0x24, 0x2e, 0x31, 0x34, 0x34, 0x34, 0x38, 0x40, 0x47, 0x4a, 0x4a, 0x49, 0x4a, 0x4c, 0x4c, 0x4a, 0x48, 0x47, 0x45, 0x41, 0x40, 0x3f, 0x3e, 0x39, 0x35, 0x37, 0x35, 0x39, 0x3f, 0x3f, 0x39, 0x36, 0x38, 0x44, 0x47, 0x49, 0x4b, 0x4f, 0x54, 0x55, 0x53, 0x5c, 0x55, 0x4f, 0x4f, 0x50, 0x4f, 0x4b, 0x49, 0x52, 0x51, 0x52, 0x55, 0x57, 0x59, 0x5e, 0x63, 0x5b, 0x59, 0x5b, 0x64, 0x6b, 0x66, 0x58, 0x4c, 0x47, 0x4f, 0x4c, 0x4a, 0x54, 0x5d, 0x66, 0x76, 0x82, 0x8d, 0x98, 0x99, 0x8d, 0x7c, 0x70, 0x6b, 0x6f, 0x73, 0x79, 0x7d, 0x81, 0x85, 0x89, 0x8c, 0x91, 0x94, 0x97, 0x9a, 0x9c, 0x9e, 0xa0, 0xa1, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa7, 0xa9, 0xa9, 0xa8, 0xa8, 0xa8, 0xa8, 0xa6, 0xa4, 0xa4, 0xa3, 0xa2, 0xa0, 0x9e, 0x9d, 0x9b, 0x9b, 0x99, 0x9a, 0x99, 0x97, 0x95, 0x94, 0x95, 0x96, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x93, 0x92, 0x90, 0x90, 0x8e, 0x8a, 0x86, 0x81, 0x7b, 0x74, 0x6d, 0x6a, 0x65, 0x60, 0x5c, 0x59, 0x58, 0x57, 0x57, 0x57, 0x58, 0x59, 0x5b, 0x5d, 0x5f, 0x60, 0x63, 0x65, 0x67, 0x68, 0x6a, 0x6d, 0x70, 0x73, 0x73, 0x76, 0x79, 0x7a, 0x78, 0x76, 0x76, 0x78, 0x7b, 0x79, 0x77, 0x77, 0x7a, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x80, 0x80, 0x81, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8a, 0x89, 0x88, 0x8a, 0x8c, 0x8e, 0x8f, 0x8f, 0x91, 0x92, 0x92, 0x90, 0x8c, 0x8a, 0x8b, 0x8d, 0x8f, 0x8d, 0x8b, 0x89, 0x85, 0x80, 0x7a, 0x76, 0x70, 0x6e, 0x6d, 0x6a, 0x67, 0x63, 0x5f, 0x5c, 0x58, 0x58, 0x57, 0x55, 0x52, 0x4f, 0x4d, 0x4b, 0x47, 0x45, 0x3f, 0x39, 0x38, 0x3a, 0x39, 0x34, 0x33, 0x30, 0x2d, 0x2d, 0x2f, 0x31, 0x32, 0x33, 0x1f, 0x1d, 0x20, 0x2c, 0x38, 0x39, 0x2b, 0x1e, 0x24, 0x26, 0x2a, 0x2a, 0x25, 0x1f, 0x22, 0x29, 0x36, 0x3a, 0x3e, 0x40, 0x40, 0x3e, 0x3b, 0x39, 0x3f, 0x4d, 0x65, 0x7a, 0x7f, 0x74, 0x66, 0x5d, 0x4d, 0x4c, 0x4c, 0x4d, 0x4f, 0x52, 0x58, 0x5e, 0x66, 0x63, 0x5b, 0x51, 0x48, 0x42, 0x3b, 0x35, 0x2f, 0x28, 0x23, 0x25, 0x28, 0x28, 0x26, 0x24, 0x26, 0x26, 0x24, 0x25, 0x2c, 0x34, 0x36, 0x33, 0x1e, 0x2d, 0x3f, 0x4d, 0x55, 0x56, 0x4d, 0x43, 0x47, 0x3c, 0x3d, 0x41, 0x34, 0x25, 0x25, 0x2a, 0x2d, 0x27, 0x2c, 0x2a, 0x25, 0x23, 0x24, 0x31, 0x51, 0x49, 0x3b, 0x34, 0x3c, 0x4c, 0x50, 0x4b, 0x45, 0x53, 0x60, 0x60, 0x43, 0x2d, 0x1e, 0x35, 0x50, 0x5f, 0x56, 0x4b, 0x43, 0x39, 0x33, 0x27, 0x17, 0x2d, 0x3f, 0x43, 0x44, 0x48, 0x47, 0x3f, 0x29, 0x23, 0x2b, 0x42, 0x4e, 0x49, 0x46, 0x4b, 0x56, 0x53, 0x43, 0x39, 0x39, 0x35, 0x36, 0x44, 0x4e, 0x4f, 0x51, 0x4f, 0x4e, 0x57, 0x5f, 0x5f, 0x61, 0x6c, 0x6f, 0x69, 0x69, 0x6c, 0x62, 0x51, 0x3d, 0x23, 0x16, 0x1b, 0x28, 0x41, 0x5a, 0x61, 0x47, 0x44, 0x44, 0x43, 0x3c, 0x39, 0x47, 0x5a, 0x63, 0x5d, 0x50, 0x40, 0x34, 0x32, 0x37, 0x3d, 0x31, 0x26, 0x1f, 0x20, 0x20, 0x1c, 0x1a, 0x1e, 0x18, 0x1a, 0x1f, 0x22, 0x20, 0x1b, 0x19, 0x1a, 0x1e, 0x22, 0x25, 0x24, 0x20, 0x1d, 0x1e, 0x20, 0x22, 0x20, 0x1e, 0x1d, 0x1e, 0x20, 0x21, 0x21, 0x1c, 0x1e, 0x20, 0x21, 0x21, 0x20, 0x1e, 0x1c, 0x1b, 0x1f, 0x24, 0x28, 0x2a, 0x29, 0x26, 0x24, 0x1f, 0x1f, 0x20, 0x23, 0x25, 0x24, 0x1f, 0x1a, 0x1f, 0x23, 0x27, 0x27, 0x26, 0x25, 0x22, 0x1f, 0x1e, 0x23, 0x27, 0x28, 0x28, 0x2a, 0x2b, 0x2b, 0x28, 0x23, 0x1e, 0x1d, 0x1e, 0x1e, 0x21, 0x23, 0x20, 0x1e, 0x1b, 0x19, 0x18, 0x19, 0x19, 0x19, 0x19, 0x19, 0x1f, 0x28, 0x30, 0x31, 0x2f, 0x2d, 0x2d, 0x32, 0x38, 0x37, 0x30, 0x27, 0x20, 0x1d, 0x19, 0x19, 0x1a, 0x1c, 0x1c, 0x1c, 0x20, 0x25, 0x29, 0x2b, 0x2c, 0x2e, 0x33, 0x3a, 0x3c, 0x3a, 0x3c, 0x38, 0x30, 0x27, 0x21, 0x1e, 0x1f, 0x21, 0x20, 0x24, 0x29, 0x2b, 0x29, 0x27, 0x28, 0x29, 0x28, 0x2a, 0x28, 0x28, 0x2d, 0x2f, 0x35, 0x40, 0x4c, 0x55, 0x5e, 0x5f, 0x5c, 0x5c, 0x5d, 0x5e, 0x5c, 0x5b, 0x5a, 0x5a, 0x5c, 0x5d, 0x5b, 0x5a, 0x4e, 0x3c, 0x2f, 0x29, 0x23, 0x26, 0x30, 0x35, 0x3e, 0x38, 0x32, 0x30, 0x31, 0x30, 0x2b, 0x26, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x21, 0x21, 0x23, 0x20, 0x1d, 0x1d, 0x1d, 0x1b, 0x1c, 0x1e, 0x24, 0x25, 0x25, 0x22, 0x20, 0x1f, 0x20, 0x22, 0x2a, 0x2d, 0x30, 0x31, 0x31, 0x33, 0x39, 0x3d, 0x45, 0x4c, 0x52, 0x55, 0x57, 0x58, 0x52, 0x4a, 0x52, 0x56, 0x56, 0x4d, 0x45, 0x41, 0x3e, 0x3b, 0x3c, 0x3d, 0x3f, 0x40, 0x3b, 0x35, 0x37, 0x3f, 0x3f, 0x42, 0x45, 0x48, 0x4c, 0x4d, 0x4b, 0x46, 0x51, 0x4e, 0x4d, 0x51, 0x53, 0x52, 0x4f, 0x4f, 0x4b, 0x4b, 0x4e, 0x52, 0x55, 0x54, 0x54, 0x56, 0x5e, 0x5e, 0x62, 0x6a, 0x6e, 0x66, 0x55, 0x45, 0x47, 0x4c, 0x4b, 0x4c, 0x55, 0x59, 0x5e, 0x67, 0x78, 0x83, 0x90, 0x94, 0x8d, 0x7f, 0x70, 0x67, 0x6f, 0x74, 0x7b, 0x7f, 0x82, 0x85, 0x88, 0x8b, 0x91, 0x94, 0x97, 0x99, 0x9b, 0x9c, 0x9e, 0x9f, 0xa0, 0xa1, 0xa3, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa5, 0xa2, 0xa0, 0xa2, 0xa1, 0xa0, 0x9e, 0x9c, 0x9a, 0x99, 0x98, 0x94, 0x94, 0x93, 0x91, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x93, 0x93, 0x8f, 0x90, 0x8f, 0x8b, 0x88, 0x85, 0x80, 0x7a, 0x74, 0x6f, 0x69, 0x64, 0x61, 0x5e, 0x5a, 0x58, 0x55, 0x55, 0x55, 0x56, 0x58, 0x5a, 0x5c, 0x5d, 0x63, 0x64, 0x65, 0x66, 0x68, 0x6a, 0x6e, 0x71, 0x71, 0x74, 0x77, 0x78, 0x77, 0x76, 0x77, 0x78, 0x7b, 0x78, 0x75, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x83, 0x84, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85, 0x87, 0x88, 0x8a, 0x8b, 0x8b, 0x89, 0x86, 0x85, 0x87, 0x88, 0x89, 0x88, 0x88, 0x87, 0x84, 0x80, 0x7b, 0x77, 0x72, 0x70, 0x6c, 0x6a, 0x68, 0x65, 0x61, 0x5d, 0x59, 0x59, 0x58, 0x56, 0x54, 0x51, 0x4e, 0x4d, 0x45, 0x45, 0x40, 0x39, 0x33, 0x31, 0x31, 0x30, 0x38, 0x37, 0x33, 0x2e, 0x28, 0x24, 0x23, 0x23, 0x22, 0x1d, 0x1b, 0x21, 0x2c, 0x33, 0x32, 0x2f, 0x22, 0x24, 0x24, 0x22, 0x21, 0x29, 0x3c, 0x4d, 0x57, 0x59, 0x59, 0x54, 0x4a, 0x42, 0x3f, 0x40, 0x3e, 0x4f, 0x65, 0x77, 0x80, 0x7d, 0x72, 0x66, 0x60, 0x5c, 0x59, 0x55, 0x4a, 0x3d, 0x3d, 0x45, 0x45, 0x48, 0x4d, 0x50, 0x4b, 0x43, 0x3c, 0x3a, 0x2e, 0x2a, 0x26, 0x27, 0x30, 0x37, 0x37, 0x33, 0x28, 0x24, 0x20, 0x23, 0x2f, 0x3f, 0x47, 0x49, 0x39, 0x44, 0x4a, 0x47, 0x49, 0x51, 0x54, 0x4f, 0x48, 0x4b, 0x4b, 0x40, 0x2f, 0x2b, 0x2d, 0x2a, 0x24, 0x20, 0x29, 0x29, 0x24, 0x24, 0x2d, 0x45, 0x4a, 0x3d, 0x2d, 0x2c, 0x3c, 0x4f, 0x54, 0x4f, 0x42, 0x50, 0x5b, 0x58, 0x3a, 0x25, 0x17, 0x2e, 0x47, 0x53, 0x4c, 0x46, 0x40, 0x33, 0x2b, 0x21, 0x22, 0x3d, 0x54, 0x58, 0x52, 0x4f, 0x4a, 0x43, 0x31, 0x2f, 0x38, 0x48, 0x4c, 0x46, 0x49, 0x53, 0x5a, 0x53, 0x47, 0x3e, 0x3d, 0x41, 0x48, 0x4e, 0x4b, 0x51, 0x54, 0x53, 0x55, 0x5b, 0x5f, 0x5d, 0x62, 0x74, 0x79, 0x6e, 0x6c, 0x73, 0x65, 0x4c, 0x40, 0x30, 0x1e, 0x1d, 0x39, 0x62, 0x6c, 0x58, 0x47, 0x46, 0x47, 0x47, 0x41, 0x3e, 0x4a, 0x5a, 0x6d, 0x62, 0x4e, 0x3d, 0x3a, 0x43, 0x4c, 0x4f, 0x23, 0x1f, 0x1e, 0x20, 0x1f, 0x1c, 0x1b, 0x1c, 0x19, 0x1c, 0x21, 0x24, 0x21, 0x1c, 0x1a, 0x1c, 0x1f, 0x20, 0x22, 0x22, 0x21, 0x1f, 0x1d, 0x1c, 0x1e, 0x1d, 0x1c, 0x1d, 0x1e, 0x21, 0x23, 0x24, 0x1e, 0x1f, 0x20, 0x22, 0x23, 0x22, 0x1f, 0x1d, 0x1b, 0x1d, 0x21, 0x29, 0x2f, 0x30, 0x2c, 0x27, 0x20, 0x20, 0x20, 0x21, 0x22, 0x22, 0x20, 0x1f, 0x20, 0x24, 0x27, 0x27, 0x26, 0x26, 0x24, 0x22, 0x25, 0x27, 0x28, 0x28, 0x27, 0x27, 0x29, 0x2a, 0x28, 0x24, 0x1f, 0x1c, 0x1b, 0x1c, 0x1f, 0x21, 0x20, 0x1d, 0x1a, 0x19, 0x1b, 0x1c, 0x1c, 0x1b, 0x18, 0x1b, 0x23, 0x2c, 0x32, 0x33, 0x33, 0x35, 0x34, 0x37, 0x38, 0x35, 0x2d, 0x24, 0x20, 0x1e, 0x1a, 0x1a, 0x1b, 0x1c, 0x1b, 0x1b, 0x1f, 0x24, 0x2a, 0x2c, 0x2e, 0x31, 0x37, 0x3f, 0x42, 0x41, 0x47, 0x41, 0x36, 0x2a, 0x22, 0x20, 0x20, 0x22, 0x22, 0x27, 0x2d, 0x2f, 0x2e, 0x2c, 0x2d, 0x2e, 0x2d, 0x2c, 0x26, 0x22, 0x24, 0x25, 0x2c, 0x38, 0x3c, 0x49, 0x57, 0x5e, 0x61, 0x63, 0x64, 0x64, 0x68, 0x65, 0x61, 0x5e, 0x5d, 0x5b, 0x56, 0x50, 0x47, 0x35, 0x28, 0x23, 0x1f, 0x23, 0x2d, 0x32, 0x3a, 0x33, 0x2e, 0x2f, 0x33, 0x31, 0x2b, 0x26, 0x25, 0x23, 0x21, 0x20, 0x1f, 0x21, 0x23, 0x25, 0x22, 0x1f, 0x1d, 0x1c, 0x1a, 0x19, 0x1c, 0x20, 0x26, 0x2b, 0x2c, 0x27, 0x21, 0x1f, 0x22, 0x25, 0x28, 0x2a, 0x2c, 0x2d, 0x2e, 0x2f, 0x32, 0x35, 0x33, 0x3b, 0x3f, 0x3f, 0x44, 0x4e, 0x50, 0x4b, 0x5d, 0x64, 0x64, 0x58, 0x4a, 0x42, 0x3c, 0x36, 0x39, 0x38, 0x39, 0x3a, 0x38, 0x35, 0x37, 0x3c, 0x44, 0x45, 0x46, 0x46, 0x45, 0x45, 0x43, 0x41, 0x46, 0x45, 0x48, 0x4e, 0x53, 0x56, 0x59, 0x5c, 0x59, 0x4e, 0x43, 0x41, 0x44, 0x4b, 0x52, 0x57, 0x4c, 0x4e, 0x53, 0x5b, 0x63, 0x63, 0x57, 0x4b, 0x49, 0x4a, 0x4d, 0x52, 0x59, 0x5b, 0x5b, 0x5d, 0x6f, 0x79, 0x86, 0x8e, 0x8b, 0x80, 0x71, 0x65, 0x6e, 0x74, 0x7c, 0x81, 0x83, 0x86, 0x89, 0x8b, 0x91, 0x93, 0x96, 0x99, 0x9a, 0x9b, 0x9c, 0x9e, 0x9f, 0xa0, 0xa3, 0xa5, 0xa6, 0xa6, 0xa5, 0xa5, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa1, 0x9e, 0x9c, 0x9e, 0x9d, 0x9c, 0x9a, 0x97, 0x95, 0x94, 0x93, 0x8f, 0x8f, 0x8d, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8d, 0x8e, 0x8d, 0x8a, 0x88, 0x86, 0x82, 0x7d, 0x78, 0x73, 0x6c, 0x67, 0x64, 0x61, 0x5c, 0x58, 0x55, 0x54, 0x54, 0x55, 0x56, 0x58, 0x5a, 0x5b, 0x61, 0x62, 0x63, 0x64, 0x66, 0x69, 0x6d, 0x70, 0x70, 0x73, 0x75, 0x76, 0x76, 0x75, 0x76, 0x77, 0x79, 0x77, 0x75, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x71, 0x6e, 0x6d, 0x6c, 0x6e, 0x71, 0x73, 0x72, 0x71, 0x71, 0x72, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7c, 0x7e, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x82, 0x82, 0x83, 0x83, 0x82, 0x7f, 0x7a, 0x77, 0x74, 0x71, 0x6d, 0x6b, 0x69, 0x67, 0x63, 0x60, 0x5c, 0x5b, 0x59, 0x58, 0x56, 0x53, 0x50, 0x4e, 0x46, 0x45, 0x41, 0x3a, 0x35, 0x33, 0x33, 0x33, 0x2c, 0x2c, 0x29, 0x23, 0x20, 0x1f, 0x1f, 0x1e, 0x1b, 0x24, 0x32, 0x3e, 0x43, 0x3c, 0x2e, 0x24, 0x1f, 0x21, 0x26, 0x2b, 0x32, 0x3d, 0x4a, 0x54, 0x58, 0x59, 0x5a, 0x57, 0x50, 0x49, 0x49, 0x4b, 0x4c, 0x5b, 0x68, 0x6c, 0x6e, 0x71, 0x70, 0x6a, 0x5b, 0x54, 0x4f, 0x4f, 0x4c, 0x41, 0x35, 0x2f, 0x3d, 0x41, 0x4b, 0x54, 0x51, 0x43, 0x38, 0x35, 0x2e, 0x2b, 0x27, 0x28, 0x34, 0x41, 0x43, 0x3c, 0x2b, 0x26, 0x20, 0x1f, 0x25, 0x2c, 0x32, 0x34, 0x3c, 0x45, 0x48, 0x43, 0x41, 0x46, 0x4a, 0x4b, 0x4d, 0x53, 0x52, 0x40, 0x2c, 0x2a, 0x2a, 0x21, 0x22, 0x26, 0x37, 0x39, 0x31, 0x2c, 0x33, 0x4b, 0x44, 0x42, 0x42, 0x47, 0x4f, 0x53, 0x4f, 0x47, 0x43, 0x4d, 0x54, 0x52, 0x39, 0x2a, 0x1d, 0x32, 0x4a, 0x55, 0x4f, 0x4b, 0x44, 0x35, 0x2e, 0x29, 0x2c, 0x3d, 0x4c, 0x4e, 0x4b, 0x46, 0x39, 0x2c, 0x2d, 0x2c, 0x31, 0x3a, 0x3b, 0x39, 0x42, 0x4f, 0x54, 0x50, 0x49, 0x40, 0x3f, 0x4b, 0x4e, 0x44, 0x46, 0x51, 0x55, 0x54, 0x58, 0x5c, 0x5b, 0x59, 0x5f, 0x6c, 0x6e, 0x66, 0x69, 0x71, 0x65, 0x4d, 0x45, 0x30, 0x21, 0x28, 0x38, 0x44, 0x46, 0x41, 0x48, 0x47, 0x46, 0x43, 0x3f, 0x3f, 0x4a, 0x58, 0x5b, 0x51, 0x40, 0x33, 0x33, 0x3b, 0x3b, 0x35, 0x1f, 0x22, 0x22, 0x1d, 0x1c, 0x1e, 0x1e, 0x1b, 0x1d, 0x1e, 0x22, 0x23, 0x20, 0x1d, 0x1e, 0x21, 0x23, 0x21, 0x20, 0x22, 0x26, 0x25, 0x1f, 0x1a, 0x1c, 0x1c, 0x1b, 0x1b, 0x1b, 0x1d, 0x1f, 0x20, 0x1d, 0x1e, 0x1f, 0x22, 0x24, 0x24, 0x22, 0x1f, 0x20, 0x1e, 0x20, 0x28, 0x33, 0x38, 0x34, 0x2f, 0x27, 0x25, 0x23, 0x20, 0x1d, 0x1d, 0x1e, 0x20, 0x21, 0x25, 0x28, 0x27, 0x26, 0x26, 0x25, 0x23, 0x27, 0x27, 0x27, 0x27, 0x26, 0x24, 0x24, 0x24, 0x23, 0x22, 0x20, 0x1e, 0x1d, 0x1e, 0x20, 0x20, 0x20, 0x1e, 0x1b, 0x1b, 0x1c, 0x1d, 0x1c, 0x1b, 0x1a, 0x1f, 0x26, 0x2d, 0x2e, 0x2f, 0x34, 0x3a, 0x3d, 0x3c, 0x39, 0x32, 0x28, 0x22, 0x21, 0x22, 0x20, 0x1e, 0x1d, 0x1d, 0x1b, 0x1a, 0x1e, 0x24, 0x28, 0x2d, 0x31, 0x33, 0x38, 0x3e, 0x43, 0x45, 0x44, 0x3c, 0x31, 0x26, 0x20, 0x1f, 0x21, 0x22, 0x21, 0x26, 0x2b, 0x2d, 0x2d, 0x2d, 0x2f, 0x31, 0x31, 0x31, 0x29, 0x23, 0x22, 0x22, 0x28, 0x34, 0x44, 0x4c, 0x55, 0x59, 0x5d, 0x64, 0x6b, 0x6e, 0x7b, 0x7b, 0x78, 0x75, 0x72, 0x6f, 0x66, 0x5d, 0x45, 0x34, 0x2a, 0x27, 0x22, 0x23, 0x29, 0x2a, 0x34, 0x2e, 0x2d, 0x33, 0x37, 0x32, 0x2a, 0x24, 0x24, 0x23, 0x22, 0x20, 0x20, 0x22, 0x23, 0x24, 0x1d, 0x1c, 0x1b, 0x1b, 0x19, 0x19, 0x1d, 0x23, 0x27, 0x2e, 0x32, 0x2c, 0x23, 0x22, 0x26, 0x29, 0x2a, 0x2b, 0x2c, 0x2e, 0x31, 0x34, 0x37, 0x39, 0x42, 0x43, 0x3d, 0x37, 0x3e, 0x51, 0x61, 0x66, 0x63, 0x69, 0x6b, 0x66, 0x63, 0x65, 0x66, 0x65, 0x53, 0x4b, 0x45, 0x46, 0x4b, 0x4e, 0x4f, 0x4e, 0x54, 0x51, 0x4c, 0x46, 0x3f, 0x3c, 0x3e, 0x40, 0x3c, 0x3a, 0x3a, 0x3f, 0x45, 0x4c, 0x55, 0x5d, 0x5d, 0x53, 0x4a, 0x4c, 0x54, 0x5a, 0x5c, 0x5d, 0x5b, 0x5c, 0x5d, 0x60, 0x65, 0x64, 0x5a, 0x4e, 0x4a, 0x48, 0x4f, 0x59, 0x5e, 0x5e, 0x5c, 0x5a, 0x64, 0x6e, 0x7b, 0x84, 0x87, 0x82, 0x74, 0x68, 0x6c, 0x73, 0x7c, 0x81, 0x84, 0x86, 0x8a, 0x8d, 0x90, 0x93, 0x96, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9e, 0xa0, 0xa2, 0xa4, 0xa5, 0xa5, 0xa3, 0xa2, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0x9f, 0x9c, 0x99, 0x98, 0x97, 0x95, 0x92, 0x90, 0x8d, 0x8b, 0x8a, 0x8c, 0x8a, 0x88, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x89, 0x89, 0x89, 0x8b, 0x8c, 0x8b, 0x89, 0x87, 0x86, 0x83, 0x7e, 0x7b, 0x76, 0x6f, 0x6a, 0x67, 0x64, 0x5e, 0x5a, 0x57, 0x56, 0x55, 0x55, 0x55, 0x57, 0x59, 0x5a, 0x5e, 0x5f, 0x61, 0x62, 0x65, 0x68, 0x6c, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x78, 0x77, 0x76, 0x74, 0x76, 0x75, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x69, 0x6a, 0x69, 0x67, 0x68, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x73, 0x75, 0x73, 0x70, 0x6e, 0x70, 0x72, 0x73, 0x76, 0x7a, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x79, 0x76, 0x74, 0x72, 0x6f, 0x6c, 0x6b, 0x69, 0x65, 0x63, 0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x55, 0x51, 0x4e, 0x49, 0x44, 0x3e, 0x39, 0x36, 0x33, 0x30, 0x2f, 0x2f, 0x2c, 0x26, 0x20, 0x20, 0x22, 0x20, 0x1b, 0x1b, 0x2e, 0x47, 0x59, 0x5a, 0x4b, 0x37, 0x28, 0x27, 0x33, 0x43, 0x4f, 0x52, 0x50, 0x4a, 0x46, 0x45, 0x45, 0x49, 0x4c, 0x4c, 0x4b, 0x4e, 0x53, 0x69, 0x78, 0x80, 0x76, 0x6b, 0x67, 0x65, 0x62, 0x5b, 0x5a, 0x58, 0x5b, 0x63, 0x64, 0x59, 0x4a, 0x40, 0x3e, 0x42, 0x48, 0x45, 0x39, 0x2f, 0x2b, 0x29, 0x26, 0x21, 0x22, 0x2d, 0x39, 0x3a, 0x34, 0x25, 0x23, 0x21, 0x20, 0x23, 0x29, 0x31, 0x37, 0x44, 0x48, 0x4c, 0x4c, 0x46, 0x42, 0x45, 0x4b, 0x55, 0x50, 0x47, 0x35, 0x24, 0x23, 0x27, 0x23, 0x2b, 0x37, 0x50, 0x54, 0x46, 0x39, 0x33, 0x41, 0x3c, 0x3e, 0x43, 0x49, 0x4b, 0x44, 0x39, 0x32, 0x42, 0x50, 0x5b, 0x58, 0x3f, 0x32, 0x27, 0x3d, 0x4e, 0x5b, 0x56, 0x52, 0x4b, 0x3f, 0x3d, 0x3c, 0x46, 0x4d, 0x51, 0x4f, 0x4c, 0x47, 0x39, 0x2b, 0x2d, 0x2d, 0x32, 0x39, 0x3c, 0x3e, 0x46, 0x51, 0x57, 0x56, 0x4e, 0x40, 0x40, 0x4e, 0x48, 0x30, 0x3e, 0x4e, 0x52, 0x50, 0x56, 0x5a, 0x56, 0x54, 0x55, 0x58, 0x5a, 0x5f, 0x6b, 0x72, 0x68, 0x59, 0x50, 0x50, 0x47, 0x3b, 0x34, 0x32, 0x35, 0x3a, 0x3e, 0x45, 0x48, 0x41, 0x36, 0x35, 0x44, 0x55, 0x5f, 0x56, 0x49, 0x3f, 0x40, 0x43, 0x3d, 0x34, 0x1f, 0x23, 0x22, 0x1b, 0x19, 0x1f, 0x20, 0x1c, 0x1e, 0x1d, 0x1d, 0x1e, 0x1d, 0x1b, 0x1d, 0x22, 0x26, 0x23, 0x22, 0x26, 0x2a, 0x29, 0x23, 0x1c, 0x1d, 0x1d, 0x1c, 0x1a, 0x19, 0x18, 0x19, 0x1a, 0x1c, 0x1c, 0x1c, 0x1f, 0x22, 0x24, 0x22, 0x20, 0x21, 0x1e, 0x1d, 0x23, 0x2d, 0x35, 0x36, 0x35, 0x2c, 0x2a, 0x27, 0x24, 0x23, 0x23, 0x24, 0x26, 0x22, 0x25, 0x27, 0x26, 0x25, 0x26, 0x26, 0x24, 0x22, 0x22, 0x23, 0x24, 0x24, 0x20, 0x1f, 0x1f, 0x1d, 0x20, 0x21, 0x20, 0x20, 0x22, 0x23, 0x22, 0x21, 0x1f, 0x1d, 0x1b, 0x1b, 0x1a, 0x1a, 0x19, 0x1c, 0x20, 0x26, 0x2a, 0x2a, 0x2b, 0x30, 0x37, 0x3a, 0x39, 0x34, 0x2c, 0x23, 0x1e, 0x1f, 0x21, 0x20, 0x1f, 0x1d, 0x1c, 0x1a, 0x18, 0x1b, 0x20, 0x28, 0x2c, 0x30, 0x32, 0x35, 0x3b, 0x40, 0x42, 0x38, 0x32, 0x29, 0x22, 0x20, 0x21, 0x24, 0x26, 0x24, 0x26, 0x28, 0x2a, 0x2c, 0x2d, 0x2e, 0x2f, 0x2d, 0x2e, 0x28, 0x22, 0x21, 0x21, 0x28, 0x35, 0x50, 0x59, 0x61, 0x65, 0x65, 0x67, 0x68, 0x67, 0x67, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x62, 0x59, 0x4c, 0x3d, 0x36, 0x35, 0x30, 0x2e, 0x2e, 0x2c, 0x2e, 0x2c, 0x2e, 0x35, 0x35, 0x2d, 0x24, 0x21, 0x20, 0x21, 0x23, 0x24, 0x24, 0x22, 0x20, 0x1f, 0x1a, 0x19, 0x19, 0x1a, 0x1a, 0x19, 0x1d, 0x21, 0x25, 0x2d, 0x31, 0x2c, 0x27, 0x29, 0x2d, 0x2e, 0x27, 0x26, 0x27, 0x2a, 0x30, 0x36, 0x3b, 0x3d, 0x3d, 0x3d, 0x3a, 0x35, 0x3a, 0x49, 0x56, 0x5c, 0x4b, 0x49, 0x48, 0x4b, 0x53, 0x5f, 0x6c, 0x74, 0x6f, 0x61, 0x53, 0x52, 0x5b, 0x64, 0x65, 0x62, 0x58, 0x5a, 0x5e, 0x61, 0x5e, 0x57, 0x53, 0x52, 0x47, 0x40, 0x3a, 0x39, 0x3e, 0x48, 0x54, 0x5e, 0x50, 0x49, 0x45, 0x48, 0x4d, 0x4e, 0x4b, 0x49, 0x5d, 0x5f, 0x60, 0x61, 0x65, 0x65, 0x5b, 0x4e, 0x4a, 0x46, 0x50, 0x5e, 0x61, 0x61, 0x5f, 0x5a, 0x5b, 0x64, 0x6f, 0x77, 0x7f, 0x80, 0x78, 0x6e, 0x6a, 0x72, 0x7b, 0x81, 0x83, 0x85, 0x8a, 0x8e, 0x8f, 0x91, 0x94, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9d, 0x9f, 0xa2, 0xa4, 0xa4, 0xa3, 0xa1, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9d, 0x9b, 0x98, 0x96, 0x92, 0x91, 0x8f, 0x8c, 0x89, 0x86, 0x84, 0x83, 0x85, 0x83, 0x80, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x87, 0x85, 0x85, 0x85, 0x82, 0x7e, 0x7c, 0x78, 0x72, 0x6d, 0x6a, 0x66, 0x61, 0x5d, 0x5a, 0x59, 0x57, 0x56, 0x56, 0x57, 0x58, 0x59, 0x5b, 0x5d, 0x60, 0x62, 0x65, 0x67, 0x6b, 0x6d, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x75, 0x73, 0x72, 0x73, 0x71, 0x6f, 0x6c, 0x6a, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x63, 0x63, 0x62, 0x61, 0x60, 0x60, 0x61, 0x62, 0x64, 0x65, 0x66, 0x67, 0x67, 0x6b, 0x6d, 0x6f, 0x6e, 0x6b, 0x6a, 0x6b, 0x6d, 0x6b, 0x6e, 0x72, 0x76, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x78, 0x76, 0x74, 0x72, 0x72, 0x71, 0x6f, 0x6c, 0x6a, 0x68, 0x67, 0x62, 0x60, 0x5d, 0x5b, 0x5a, 0x57, 0x52, 0x4f, 0x4c, 0x43, 0x3a, 0x35, 0x33, 0x2e, 0x29, 0x26, 0x2f, 0x2b, 0x25, 0x21, 0x25, 0x2a, 0x26, 0x1e, 0x19, 0x23, 0x30, 0x37, 0x37, 0x32, 0x2f, 0x2d, 0x2c, 0x3b, 0x4d, 0x55, 0x55, 0x53, 0x51, 0x51, 0x41, 0x3f, 0x41, 0x45, 0x45, 0x45, 0x4a, 0x52, 0x6f, 0x7f, 0x89, 0x82, 0x73, 0x67, 0x5c, 0x54, 0x54, 0x5a, 0x5c, 0x5a, 0x5c, 0x60, 0x5c, 0x53, 0x3e, 0x39, 0x36, 0x35, 0x33, 0x30, 0x2d, 0x2c, 0x27, 0x22, 0x1d, 0x1d, 0x24, 0x2c, 0x2c, 0x28, 0x21, 0x20, 0x20, 0x22, 0x26, 0x2e, 0x3b, 0x45, 0x47, 0x46, 0x46, 0x45, 0x41, 0x40, 0x4a, 0x57, 0x56, 0x47, 0x37, 0x28, 0x1b, 0x1d, 0x28, 0x2c, 0x33, 0x3f, 0x53, 0x51, 0x46, 0x41, 0x3e, 0x47, 0x4b, 0x44, 0x43, 0x4c, 0x54, 0x56, 0x54, 0x53, 0x44, 0x57, 0x64, 0x5c, 0x3b, 0x2b, 0x21, 0x39, 0x4e, 0x5c, 0x56, 0x4f, 0x49, 0x3f, 0x3f, 0x3c, 0x44, 0x4a, 0x4c, 0x47, 0x41, 0x3b, 0x32, 0x28, 0x32, 0x35, 0x3e, 0x48, 0x4f, 0x52, 0x55, 0x59, 0x5c, 0x59, 0x4c, 0x43, 0x4e, 0x5b, 0x4f, 0x39, 0x3c, 0x4d, 0x4e, 0x4c, 0x59, 0x5f, 0x58, 0x55, 0x51, 0x4e, 0x52, 0x61, 0x6f, 0x70, 0x66, 0x5c, 0x46, 0x4e, 0x3c, 0x22, 0x25, 0x36, 0x35, 0x2a, 0x37, 0x46, 0x4f, 0x43, 0x30, 0x2f, 0x44, 0x59, 0x5d, 0x51, 0x43, 0x3f, 0x43, 0x44, 0x3f, 0x38, 0x1e, 0x1e, 0x1c, 0x1a, 0x1b, 0x1e, 0x20, 0x21, 0x1f, 0x1c, 0x1b, 0x1b, 0x1b, 0x1b, 0x1d, 0x21, 0x23, 0x23, 0x24, 0x27, 0x29, 0x27, 0x21, 0x1c, 0x1f, 0x1f, 0x1f, 0x1d, 0x1b, 0x19, 0x1a, 0x1c, 0x1d, 0x1b, 0x1b, 0x1d, 0x21, 0x23, 0x22, 0x20, 0x20, 0x1e, 0x1c, 0x1d, 0x22, 0x2b, 0x34, 0x39, 0x3b, 0x38, 0x34, 0x34, 0x34, 0x32, 0x2c, 0x26, 0x21, 0x25, 0x27, 0x26, 0x26, 0x28, 0x28, 0x27, 0x21, 0x1f, 0x1f, 0x21, 0x21, 0x1d, 0x1b, 0x1b, 0x1a, 0x1f, 0x21, 0x1f, 0x1e, 0x20, 0x20, 0x1f, 0x1d, 0x1d, 0x1c, 0x1a, 0x19, 0x18, 0x18, 0x19, 0x1d, 0x1f, 0x23, 0x29, 0x2d, 0x2f, 0x32, 0x37, 0x35, 0x35, 0x33, 0x2c, 0x24, 0x1e, 0x1d, 0x1e, 0x1e, 0x1e, 0x1f, 0x20, 0x1e, 0x1b, 0x1c, 0x20, 0x2b, 0x2d, 0x2e, 0x30, 0x35, 0x3b, 0x3d, 0x3c, 0x35, 0x2f, 0x27, 0x22, 0x21, 0x23, 0x25, 0x26, 0x27, 0x27, 0x28, 0x2a, 0x2b, 0x2b, 0x2a, 0x28, 0x25, 0x27, 0x22, 0x1e, 0x1e, 0x20, 0x28, 0x36, 0x4e, 0x5a, 0x68, 0x6f, 0x6f, 0x6c, 0x66, 0x61, 0x59, 0x5e, 0x60, 0x5c, 0x5a, 0x5a, 0x55, 0x4e, 0x4c, 0x3f, 0x3b, 0x3d, 0x3a, 0x36, 0x33, 0x2e, 0x2c, 0x2b, 0x2e, 0x33, 0x30, 0x26, 0x20, 0x21, 0x1f, 0x20, 0x22, 0x23, 0x23, 0x21, 0x1e, 0x1c, 0x1b, 0x1a, 0x1b, 0x1d, 0x1c, 0x1b, 0x1c, 0x1f, 0x24, 0x29, 0x2b, 0x2a, 0x2e, 0x35, 0x36, 0x33, 0x27, 0x25, 0x24, 0x27, 0x2e, 0x36, 0x3c, 0x3f, 0x3f, 0x40, 0x41, 0x42, 0x44, 0x48, 0x4d, 0x51, 0x4f, 0x43, 0x39, 0x36, 0x38, 0x3d, 0x48, 0x53, 0x5b, 0x4f, 0x42, 0x3f, 0x47, 0x50, 0x53, 0x52, 0x4f, 0x55, 0x63, 0x74, 0x7e, 0x7b, 0x74, 0x6f, 0x64, 0x58, 0x4c, 0x46, 0x49, 0x52, 0x60, 0x6a, 0x61, 0x57, 0x4a, 0x41, 0x3d, 0x3e, 0x45, 0x4d, 0x41, 0x46, 0x4b, 0x50, 0x5a, 0x63, 0x60, 0x57, 0x4a, 0x45, 0x52, 0x62, 0x63, 0x62, 0x62, 0x5c, 0x57, 0x5f, 0x67, 0x6d, 0x75, 0x7b, 0x77, 0x6f, 0x6b, 0x73, 0x7b, 0x80, 0x81, 0x83, 0x88, 0x8d, 0x8e, 0x90, 0x93, 0x96, 0x97, 0x98, 0x9a, 0x9b, 0x9d, 0x9f, 0xa1, 0xa3, 0xa3, 0xa1, 0x9e, 0x9c, 0x9b, 0x99, 0x97, 0x96, 0x94, 0x92, 0x8f, 0x8d, 0x8a, 0x88, 0x86, 0x83, 0x80, 0x7d, 0x7b, 0x7a, 0x7a, 0x77, 0x73, 0x71, 0x72, 0x73, 0x73, 0x72, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7f, 0x80, 0x7e, 0x80, 0x80, 0x7f, 0x80, 0x81, 0x7f, 0x7c, 0x79, 0x76, 0x73, 0x6e, 0x69, 0x65, 0x61, 0x5f, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x56, 0x58, 0x59, 0x5a, 0x5d, 0x60, 0x63, 0x65, 0x67, 0x69, 0x6b, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x74, 0x74, 0x73, 0x74, 0x75, 0x75, 0x74, 0x72, 0x71, 0x71, 0x6f, 0x6e, 0x6b, 0x68, 0x65, 0x64, 0x63, 0x62, 0x62, 0x62, 0x62, 0x60, 0x5e, 0x5c, 0x5c, 0x5c, 0x5b, 0x5b, 0x5d, 0x5f, 0x61, 0x62, 0x63, 0x63, 0x67, 0x6a, 0x6c, 0x6c, 0x6b, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x73, 0x72, 0x73, 0x73, 0x72, 0x73, 0x74, 0x74, 0x73, 0x71, 0x70, 0x72, 0x73, 0x72, 0x6e, 0x6a, 0x6a, 0x6a, 0x65, 0x62, 0x5f, 0x5d, 0x5b, 0x58, 0x53, 0x4e, 0x4a, 0x41, 0x39, 0x35, 0x33, 0x2e, 0x2a, 0x29, 0x25, 0x27, 0x27, 0x29, 0x32, 0x3b, 0x39, 0x30, 0x2c, 0x34, 0x3c, 0x3d, 0x37, 0x2e, 0x29, 0x28, 0x25, 0x2c, 0x33, 0x37, 0x3c, 0x44, 0x4c, 0x4f, 0x42, 0x40, 0x40, 0x41, 0x3f, 0x3f, 0x49, 0x57, 0x67, 0x71, 0x7b, 0x7e, 0x7b, 0x71, 0x62, 0x56, 0x5f, 0x65, 0x69, 0x65, 0x5c, 0x55, 0x52, 0x51, 0x4e, 0x4c, 0x44, 0x3a, 0x31, 0x2e, 0x2c, 0x2b, 0x27, 0x20, 0x1d, 0x20, 0x26, 0x29, 0x2a, 0x2a, 0x28, 0x23, 0x1f, 0x1f, 0x1f, 0x21, 0x27, 0x2e, 0x2e, 0x37, 0x3f, 0x40, 0x3e, 0x3e, 0x42, 0x45, 0x4b, 0x40, 0x38, 0x2e, 0x21, 0x1e, 0x24, 0x26, 0x31, 0x3b, 0x48, 0x42, 0x40, 0x4a, 0x4e, 0x55, 0x4a, 0x41, 0x3e, 0x46, 0x4f, 0x52, 0x57, 0x5c, 0x4c, 0x56, 0x58, 0x4c, 0x2f, 0x24, 0x1c, 0x32, 0x4d, 0x5a, 0x52, 0x49, 0x47, 0x43, 0x40, 0x36, 0x48, 0x4d, 0x52, 0x52, 0x50, 0x4c, 0x42, 0x38, 0x2d, 0x33, 0x3f, 0x4a, 0x52, 0x56, 0x59, 0x5a, 0x5a, 0x4e, 0x3d, 0x41, 0x58, 0x5a, 0x46, 0x3a, 0x40, 0x4d, 0x47, 0x47, 0x5f, 0x6b, 0x5f, 0x59, 0x4e, 0x4d, 0x52, 0x5f, 0x69, 0x68, 0x5f, 0x58, 0x55, 0x37, 0x18, 0x1c, 0x31, 0x35, 0x34, 0x3f, 0x42, 0x4a, 0x49, 0x3a, 0x2f, 0x37, 0x4d, 0x5f, 0x58, 0x48, 0x3e, 0x44, 0x4f, 0x4e, 0x45, 0x3e, 0x1e, 0x18, 0x17, 0x1c, 0x1e, 0x1d, 0x21, 0x27, 0x23, 0x20, 0x1e, 0x1f, 0x20, 0x20, 0x22, 0x24, 0x1d, 0x20, 0x24, 0x25, 0x24, 0x21, 0x1d, 0x1b, 0x20, 0x21, 0x21, 0x21, 0x1f, 0x1e, 0x20, 0x22, 0x1f, 0x1c, 0x1b, 0x1d, 0x20, 0x23, 0x22, 0x21, 0x21, 0x22, 0x20, 0x1d, 0x1c, 0x24, 0x33, 0x3f, 0x51, 0x4b, 0x45, 0x44, 0x44, 0x3c, 0x2b, 0x1e, 0x21, 0x24, 0x27, 0x26, 0x27, 0x29, 0x2b, 0x2a, 0x24, 0x20, 0x1f, 0x20, 0x1f, 0x1b, 0x18, 0x19, 0x1a, 0x1e, 0x1f, 0x1b, 0x19, 0x1a, 0x19, 0x17, 0x18, 0x19, 0x1a, 0x19, 0x18, 0x17, 0x19, 0x1b, 0x1e, 0x1d, 0x21, 0x2a, 0x33, 0x37, 0x39, 0x3a, 0x37, 0x39, 0x39, 0x34, 0x2c, 0x24, 0x20, 0x1f, 0x1f, 0x21, 0x25, 0x28, 0x27, 0x23, 0x22, 0x25, 0x2f, 0x2e, 0x2d, 0x2f, 0x36, 0x3c, 0x3c, 0x38, 0x38, 0x32, 0x29, 0x23, 0x21, 0x21, 0x21, 0x21, 0x28, 0x27, 0x26, 0x28, 0x29, 0x28, 0x23, 0x1f, 0x22, 0x24, 0x20, 0x1c, 0x1d, 0x20, 0x2a, 0x39, 0x48, 0x53, 0x5f, 0x67, 0x6b, 0x6d, 0x6d, 0x6b, 0x71, 0x74, 0x72, 0x68, 0x62, 0x60, 0x5c, 0x56, 0x44, 0x38, 0x36, 0x3a, 0x38, 0x34, 0x30, 0x2a, 0x2e, 0x2d, 0x30, 0x33, 0x2d, 0x23, 0x22, 0x27, 0x21, 0x21, 0x20, 0x1f, 0x1e, 0x1e, 0x1e, 0x1e, 0x1e, 0x1d, 0x1d, 0x20, 0x20, 0x1d, 0x1c, 0x1d, 0x25, 0x26, 0x27, 0x29, 0x34, 0x3f, 0x3e, 0x36, 0x31, 0x2d, 0x2a, 0x2b, 0x32, 0x3a, 0x40, 0x43, 0x43, 0x3e, 0x3a, 0x39, 0x39, 0x3b, 0x44, 0x4c, 0x50, 0x41, 0x36, 0x33, 0x31, 0x2f, 0x38, 0x46, 0x4b, 0x46, 0x3f, 0x3d, 0x42, 0x49, 0x4c, 0x4c, 0x4b, 0x4a, 0x53, 0x68, 0x7b, 0x83, 0x82, 0x81, 0x6b, 0x5d, 0x4c, 0x44, 0x46, 0x50, 0x5d, 0x67, 0x70, 0x73, 0x76, 0x74, 0x6a, 0x5f, 0x5b, 0x5c, 0x59, 0x5a, 0x58, 0x57, 0x5d, 0x64, 0x61, 0x59, 0x4c, 0x46, 0x54, 0x65, 0x65, 0x64, 0x64, 0x5f, 0x59, 0x5f, 0x64, 0x66, 0x6d, 0x75, 0x74, 0x6d, 0x6c, 0x74, 0x7c, 0x80, 0x80, 0x82, 0x87, 0x8c, 0x8d, 0x8f, 0x93, 0x95, 0x97, 0x98, 0x9a, 0x9b, 0x9c, 0x9e, 0xa1, 0xa3, 0xa2, 0xa0, 0x9c, 0x9a, 0x95, 0x93, 0x90, 0x8d, 0x8b, 0x88, 0x85, 0x83, 0x7f, 0x7e, 0x7c, 0x79, 0x75, 0x72, 0x70, 0x6f, 0x6f, 0x6c, 0x68, 0x67, 0x67, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6d, 0x70, 0x73, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7d, 0x7c, 0x79, 0x75, 0x74, 0x71, 0x6d, 0x67, 0x63, 0x60, 0x5f, 0x5e, 0x5c, 0x59, 0x57, 0x56, 0x56, 0x57, 0x58, 0x5a, 0x5d, 0x61, 0x64, 0x65, 0x66, 0x67, 0x68, 0x6c, 0x6c, 0x6d, 0x6f, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x6d, 0x6b, 0x68, 0x65, 0x62, 0x60, 0x5f, 0x5f, 0x5e, 0x5f, 0x5f, 0x5d, 0x5a, 0x58, 0x59, 0x5a, 0x58, 0x59, 0x5b, 0x5d, 0x5f, 0x60, 0x61, 0x61, 0x63, 0x64, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70, 0x6e, 0x72, 0x75, 0x73, 0x6f, 0x6b, 0x6b, 0x6c, 0x67, 0x64, 0x60, 0x5d, 0x5c, 0x58, 0x53, 0x4e, 0x46, 0x3f, 0x3a, 0x39, 0x37, 0x34, 0x32, 0x34, 0x3b, 0x3d, 0x3d, 0x3b, 0x3e, 0x40, 0x39, 0x2d, 0x22, 0x2b, 0x34, 0x37, 0x32, 0x2c, 0x28, 0x28, 0x2d, 0x2b, 0x2a, 0x2e, 0x39, 0x42, 0x41, 0x3a, 0x36, 0x37, 0x3a, 0x3c, 0x3a, 0x3e, 0x50, 0x64, 0x6e, 0x6e, 0x71, 0x7a, 0x81, 0x7f, 0x71, 0x63, 0x5d, 0x5f, 0x64, 0x66, 0x5b, 0x4a, 0x43, 0x45, 0x48, 0x4c, 0x4a, 0x3d, 0x33, 0x2f, 0x2d, 0x2a, 0x25, 0x1f, 0x1d, 0x24, 0x2a, 0x2c, 0x2e, 0x31, 0x25, 0x20, 0x1f, 0x24, 0x27, 0x28, 0x2a, 0x2e, 0x36, 0x42, 0x48, 0x43, 0x3f, 0x44, 0x46, 0x42, 0x4d, 0x4d, 0x50, 0x4b, 0x3c, 0x30, 0x2a, 0x22, 0x2a, 0x37, 0x48, 0x45, 0x47, 0x54, 0x53, 0x52, 0x51, 0x4d, 0x4d, 0x4f, 0x49, 0x40, 0x3f, 0x45, 0x52, 0x4d, 0x41, 0x37, 0x29, 0x2c, 0x26, 0x38, 0x4d, 0x5b, 0x52, 0x4c, 0x51, 0x53, 0x4e, 0x3f, 0x47, 0x49, 0x4e, 0x56, 0x5e, 0x5d, 0x4d, 0x3c, 0x2f, 0x36, 0x41, 0x4b, 0x53, 0x59, 0x5e, 0x61, 0x66, 0x52, 0x3c, 0x47, 0x5f, 0x4f, 0x2f, 0x2a, 0x41, 0x4a, 0x40, 0x41, 0x62, 0x71, 0x63, 0x59, 0x46, 0x49, 0x4f, 0x57, 0x5e, 0x61, 0x5d, 0x59, 0x55, 0x43, 0x24, 0x19, 0x29, 0x36, 0x3e, 0x4d, 0x53, 0x4a, 0x38, 0x2a, 0x2d, 0x41, 0x55, 0x5f, 0x4d, 0x3e, 0x3a, 0x4b, 0x5b, 0x56, 0x45, 0x3a, 0x1f, 0x1c, 0x1a, 0x1b, 0x1d, 0x1d, 0x1c, 0x1b, 0x21, 0x1f, 0x1e, 0x1d, 0x1a, 0x19, 0x1e, 0x24, 0x1d, 0x1f, 0x23, 0x25, 0x23, 0x20, 0x21, 0x25, 0x21, 0x22, 0x26, 0x29, 0x2c, 0x2d, 0x30, 0x34, 0x25, 0x22, 0x1d, 0x1c, 0x20, 0x27, 0x2e, 0x32, 0x35, 0x33, 0x30, 0x2b, 0x28, 0x2b, 0x33, 0x39, 0x3e, 0x37, 0x31, 0x31, 0x32, 0x2d, 0x25, 0x20, 0x26, 0x26, 0x28, 0x2a, 0x2b, 0x2a, 0x28, 0x26, 0x28, 0x24, 0x22, 0x22, 0x22, 0x21, 0x21, 0x23, 0x23, 0x26, 0x28, 0x28, 0x24, 0x1e, 0x19, 0x17, 0x16, 0x16, 0x15, 0x17, 0x19, 0x1a, 0x1b, 0x1b, 0x1d, 0x1d, 0x1e, 0x22, 0x29, 0x32, 0x39, 0x3e, 0x3c, 0x40, 0x41, 0x39, 0x2b, 0x21, 0x1f, 0x22, 0x22, 0x24, 0x29, 0x2e, 0x2d, 0x27, 0x25, 0x27, 0x2b, 0x2f, 0x32, 0x34, 0x36, 0x38, 0x36, 0x33, 0x32, 0x35, 0x34, 0x2f, 0x27, 0x23, 0x25, 0x29, 0x2b, 0x2b, 0x2a, 0x29, 0x27, 0x25, 0x25, 0x25, 0x21, 0x22, 0x22, 0x1f, 0x1c, 0x21, 0x30, 0x3f, 0x4a, 0x4e, 0x52, 0x57, 0x5d, 0x62, 0x62, 0x60, 0x68, 0x6f, 0x74, 0x74, 0x73, 0x6f, 0x62, 0x53, 0x40, 0x35, 0x35, 0x39, 0x33, 0x2d, 0x2d, 0x2d, 0x30, 0x38, 0x3d, 0x37, 0x29, 0x1f, 0x20, 0x24, 0x21, 0x1f, 0x1d, 0x1d, 0x1e, 0x1e, 0x1d, 0x1b, 0x1d, 0x1e, 0x1f, 0x1e, 0x1d, 0x1d, 0x1d, 0x1e, 0x23, 0x22, 0x23, 0x27, 0x2f, 0x37, 0x3b, 0x3d, 0x37, 0x31, 0x2c, 0x2d, 0x2f, 0x33, 0x37, 0x3b, 0x3d, 0x40, 0x41, 0x3f, 0x3c, 0x3a, 0x3b, 0x3d, 0x42, 0x3b, 0x34, 0x32, 0x30, 0x30, 0x35, 0x3b, 0x41, 0x3e, 0x3e, 0x45, 0x4f, 0x51, 0x4a, 0x41, 0x3d, 0x3e, 0x3e, 0x43, 0x53, 0x66, 0x6e, 0x6c, 0x53, 0x4b, 0x46, 0x45, 0x45, 0x43, 0x47, 0x4e, 0x48, 0x4a, 0x4e, 0x51, 0x52, 0x54, 0x59, 0x5e, 0x5a, 0x60, 0x62, 0x60, 0x62, 0x66, 0x62, 0x5a, 0x4e, 0x4f, 0x5c, 0x69, 0x69, 0x66, 0x64, 0x60, 0x5e, 0x5f, 0x60, 0x63, 0x68, 0x6d, 0x6f, 0x6e, 0x6b, 0x74, 0x7c, 0x7e, 0x7e, 0x82, 0x88, 0x8c, 0x8c, 0x8e, 0x91, 0x94, 0x95, 0x96, 0x98, 0x99, 0x9a, 0x9d, 0x9f, 0x9f, 0x9f, 0x9e, 0x9a, 0x95, 0x90, 0x8d, 0x89, 0x86, 0x83, 0x7f, 0x7a, 0x76, 0x76, 0x73, 0x6f, 0x6a, 0x66, 0x63, 0x61, 0x61, 0x61, 0x5c, 0x57, 0x55, 0x56, 0x58, 0x58, 0x57, 0x59, 0x5b, 0x5c, 0x5e, 0x61, 0x66, 0x6c, 0x70, 0x6b, 0x71, 0x74, 0x73, 0x74, 0x76, 0x76, 0x73, 0x70, 0x6f, 0x6c, 0x68, 0x66, 0x65, 0x61, 0x5c, 0x5c, 0x5b, 0x59, 0x58, 0x58, 0x58, 0x58, 0x58, 0x5b, 0x5d, 0x5f, 0x61, 0x64, 0x66, 0x68, 0x69, 0x6a, 0x6b, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x70, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6e, 0x6c, 0x6b, 0x69, 0x66, 0x64, 0x62, 0x60, 0x5e, 0x5c, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x59, 0x59, 0x58, 0x5b, 0x5b, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x60, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x68, 0x69, 0x67, 0x6c, 0x6f, 0x73, 0x75, 0x74, 0x73, 0x74, 0x75, 0x72, 0x71, 0x71, 0x6f, 0x6d, 0x6b, 0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x72, 0x6f, 0x6d, 0x6f, 0x71, 0x6b, 0x64, 0x5d, 0x5b, 0x5d, 0x5b, 0x54, 0x4d, 0x45, 0x3f, 0x3a, 0x37, 0x2f, 0x26, 0x26, 0x2c, 0x40, 0x48, 0x4e, 0x4d, 0x48, 0x41, 0x38, 0x2f, 0x28, 0x2e, 0x27, 0x20, 0x29, 0x33, 0x31, 0x2c, 0x2c, 0x2e, 0x2e, 0x31, 0x3c, 0x45, 0x42, 0x38, 0x35, 0x3b, 0x41, 0x40, 0x3e, 0x46, 0x59, 0x6b, 0x7a, 0x6e, 0x6c, 0x69, 0x5f, 0x5d, 0x60, 0x5a, 0x58, 0x52, 0x53, 0x57, 0x52, 0x45, 0x3d, 0x3e, 0x40, 0x41, 0x3c, 0x33, 0x2f, 0x31, 0x30, 0x2c, 0x23, 0x24, 0x27, 0x2b, 0x32, 0x35, 0x32, 0x2c, 0x25, 0x24, 0x26, 0x2a, 0x2c, 0x2a, 0x26, 0x24, 0x2a, 0x2b, 0x33, 0x3f, 0x42, 0x3f, 0x40, 0x46, 0x48, 0x40, 0x36, 0x37, 0x3d, 0x38, 0x2d, 0x2c, 0x2f, 0x32, 0x3a, 0x43, 0x49, 0x4b, 0x4f, 0x55, 0x52, 0x46, 0x4d, 0x54, 0x45, 0x3a, 0x43, 0x4c, 0x52, 0x45, 0x3e, 0x36, 0x33, 0x2e, 0x2b, 0x3c, 0x53, 0x50, 0x47, 0x43, 0x49, 0x49, 0x45, 0x44, 0x4d, 0x4d, 0x52, 0x5a, 0x5b, 0x52, 0x42, 0x36, 0x2f, 0x31, 0x3d, 0x50, 0x5d, 0x60, 0x63, 0x69, 0x68, 0x45, 0x3d, 0x4d, 0x57, 0x46, 0x29, 0x24, 0x44, 0x43, 0x49, 0x5a, 0x69, 0x62, 0x53, 0x4f, 0x4f, 0x53, 0x59, 0x5b, 0x55, 0x4e, 0x4e, 0x52, 0x45, 0x3f, 0x35, 0x31, 0x39, 0x46, 0x4c, 0x4c, 0x4b, 0x4f, 0x4b, 0x40, 0x41, 0x4d, 0x52, 0x4e, 0x3c, 0x34, 0x3b, 0x50, 0x57, 0x48, 0x3a, 0x38, 0x2b, 0x24, 0x1d, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1c, 0x1b, 0x1b, 0x1c, 0x1b, 0x19, 0x1b, 0x1e, 0x1d, 0x1f, 0x22, 0x25, 0x23, 0x20, 0x22, 0x25, 0x25, 0x28, 0x2b, 0x2d, 0x2e, 0x30, 0x30, 0x31, 0x2c, 0x27, 0x21, 0x1f, 0x20, 0x24, 0x27, 0x29, 0x33, 0x33, 0x31, 0x2d, 0x29, 0x29, 0x2d, 0x30, 0x2d, 0x2a, 0x2a, 0x2d, 0x2f, 0x2c, 0x28, 0x26, 0x27, 0x26, 0x28, 0x2c, 0x31, 0x32, 0x2e, 0x2a, 0x28, 0x24, 0x20, 0x21, 0x23, 0x24, 0x26, 0x28, 0x2b, 0x2d, 0x2f, 0x2e, 0x2a, 0x24, 0x1f, 0x1d, 0x17, 0x16, 0x15, 0x16, 0x17, 0x18, 0x18, 0x18, 0x1b, 0x1b, 0x1d, 0x21, 0x28, 0x30, 0x37, 0x3b, 0x35, 0x38, 0x39, 0x34, 0x2c, 0x25, 0x21, 0x21, 0x20, 0x21, 0x24, 0x26, 0x26, 0x23, 0x23, 0x24, 0x29, 0x2f, 0x34, 0x36, 0x39, 0x3c, 0x3c, 0x3b, 0x3e, 0x3d, 0x3b, 0x35, 0x2e, 0x2a, 0x2c, 0x2e, 0x2f, 0x2e, 0x2e, 0x30, 0x30, 0x2c, 0x23, 0x1c, 0x25, 0x24, 0x23, 0x23, 0x26, 0x2f, 0x3f, 0x4d, 0x56, 0x5a, 0x5e, 0x63, 0x68, 0x6b, 0x69, 0x64, 0x5f, 0x62, 0x61, 0x5f, 0x61, 0x62, 0x5a, 0x50, 0x4b, 0x3c, 0x36, 0x39, 0x34, 0x2d, 0x29, 0x26, 0x2b, 0x30, 0x33, 0x2f, 0x25, 0x1f, 0x1f, 0x22, 0x20, 0x1e, 0x1d, 0x1c, 0x1c, 0x1c, 0x1c, 0x1b, 0x19, 0x1a, 0x1d, 0x1f, 0x1f, 0x1f, 0x1f, 0x1e, 0x21, 0x22, 0x24, 0x27, 0x2d, 0x34, 0x3c, 0x42, 0x48, 0x40, 0x37, 0x33, 0x31, 0x31, 0x33, 0x37, 0x43, 0x42, 0x3f, 0x3c, 0x3a, 0x39, 0x38, 0x38, 0x39, 0x36, 0x34, 0x34, 0x33, 0x31, 0x33, 0x37, 0x37, 0x37, 0x39, 0x40, 0x48, 0x4c, 0x49, 0x45, 0x42, 0x41, 0x3c, 0x39, 0x3f, 0x49, 0x4b, 0x46, 0x3f, 0x48, 0x4b, 0x42, 0x3a, 0x3b, 0x3e, 0x3f, 0x40, 0x3f, 0x42, 0x4a, 0x50, 0x50, 0x48, 0x42, 0x48, 0x48, 0x4c, 0x57, 0x64, 0x6b, 0x6a, 0x66, 0x52, 0x54, 0x60, 0x6b, 0x69, 0x65, 0x64, 0x61, 0x60, 0x61, 0x63, 0x65, 0x68, 0x6c, 0x6e, 0x6f, 0x6d, 0x75, 0x7c, 0x7e, 0x7f, 0x83, 0x88, 0x8b, 0x8d, 0x8f, 0x92, 0x94, 0x95, 0x95, 0x97, 0x98, 0x9a, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x95, 0x8f, 0x8b, 0x86, 0x80, 0x7b, 0x78, 0x74, 0x70, 0x6c, 0x65, 0x64, 0x62, 0x60, 0x5d, 0x59, 0x55, 0x52, 0x4c, 0x49, 0x44, 0x42, 0x42, 0x42, 0x42, 0x41, 0x48, 0x48, 0x49, 0x4b, 0x4d, 0x51, 0x56, 0x59, 0x62, 0x67, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x6d, 0x6a, 0x6a, 0x68, 0x65, 0x63, 0x62, 0x5f, 0x5a, 0x5b, 0x5a, 0x59, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x60, 0x63, 0x66, 0x68, 0x69, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x71, 0x72, 0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x68, 0x64, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x58, 0x58, 0x5a, 0x5a, 0x5a, 0x5b, 0x5d, 0x5f, 0x60, 0x61, 0x61, 0x64, 0x66, 0x67, 0x6a, 0x6e, 0x6f, 0x6e, 0x70, 0x73, 0x76, 0x78, 0x77, 0x77, 0x77, 0x78, 0x77, 0x77, 0x75, 0x73, 0x70, 0x6d, 0x69, 0x67, 0x6c, 0x70, 0x73, 0x73, 0x71, 0x6f, 0x6e, 0x6f, 0x6a, 0x65, 0x60, 0x5e, 0x5e, 0x5b, 0x55, 0x50, 0x47, 0x42, 0x41, 0x40, 0x37, 0x27, 0x1c, 0x19, 0x2d, 0x3a, 0x45, 0x48, 0x44, 0x40, 0x3c, 0x38, 0x33, 0x38, 0x33, 0x32, 0x40, 0x48, 0x40, 0x34, 0x35, 0x3b, 0x44, 0x4a, 0x49, 0x42, 0x3c, 0x39, 0x34, 0x3c, 0x3e, 0x3d, 0x47, 0x5b, 0x68, 0x6b, 0x7f, 0x80, 0x7e, 0x72, 0x5f, 0x59, 0x5f, 0x64, 0x5f, 0x55, 0x4e, 0x4f, 0x51, 0x4f, 0x4b, 0x49, 0x43, 0x39, 0x2c, 0x27, 0x2b, 0x30, 0x2d, 0x27, 0x29, 0x28, 0x28, 0x28, 0x2b, 0x2c, 0x2a, 0x27, 0x21, 0x23, 0x26, 0x2c, 0x31, 0x30, 0x28, 0x21, 0x24, 0x21, 0x25, 0x2f, 0x35, 0x35, 0x37, 0x3b, 0x38, 0x31, 0x28, 0x28, 0x2e, 0x2c, 0x29, 0x2e, 0x33, 0x36, 0x3a, 0x40, 0x45, 0x4b, 0x51, 0x54, 0x48, 0x3f, 0x49, 0x52, 0x45, 0x3c, 0x45, 0x4e, 0x4d, 0x5c, 0x67, 0x50, 0x31, 0x1e, 0x1f, 0x39, 0x66, 0x58, 0x50, 0x5a, 0x5e, 0x4c, 0x40, 0x48, 0x47, 0x4a, 0x52, 0x5a, 0x5d, 0x56, 0x48, 0x3d, 0x34, 0x3a, 0x47, 0x58, 0x63, 0x68, 0x6c, 0x70, 0x65, 0x4a, 0x49, 0x59, 0x5d, 0x48, 0x2e, 0x2d, 0x42, 0x55, 0x61, 0x62, 0x64, 0x60, 0x56, 0x51, 0x4c, 0x51, 0x59, 0x5c, 0x57, 0x4d, 0x47, 0x45, 0x45, 0x3d, 0x34, 0x30, 0x36, 0x40, 0x48, 0x4b, 0x56, 0x51, 0x54, 0x57, 0x4b, 0x37, 0x31, 0x3a, 0x34, 0x3c, 0x49, 0x52, 0x50, 0x48, 0x42, 0x41, 0x3e, 0x36, 0x2a, 0x20, 0x1a, 0x1a, 0x1c, 0x1d, 0x1b, 0x1a, 0x1d, 0x22, 0x23, 0x20, 0x1c, 0x1b, 0x1b, 0x1c, 0x1f, 0x22, 0x21, 0x1f, 0x21, 0x24, 0x27, 0x2b, 0x2d, 0x2a, 0x2a, 0x2f, 0x30, 0x2f, 0x2b, 0x27, 0x23, 0x22, 0x25, 0x29, 0x29, 0x29, 0x2f, 0x30, 0x2f, 0x2d, 0x29, 0x27, 0x27, 0x28, 0x28, 0x25, 0x24, 0x26, 0x26, 0x24, 0x24, 0x26, 0x29, 0x26, 0x25, 0x2a, 0x31, 0x35, 0x33, 0x30, 0x27, 0x21, 0x1c, 0x1c, 0x1f, 0x21, 0x23, 0x25, 0x26, 0x28, 0x29, 0x28, 0x25, 0x20, 0x1c, 0x19, 0x17, 0x16, 0x15, 0x15, 0x16, 0x17, 0x17, 0x17, 0x1a, 0x1b, 0x1e, 0x22, 0x28, 0x2e, 0x34, 0x37, 0x33, 0x33, 0x33, 0x32, 0x2e, 0x29, 0x24, 0x20, 0x1f, 0x20, 0x21, 0x20, 0x21, 0x23, 0x25, 0x24, 0x29, 0x2f, 0x35, 0x37, 0x38, 0x3d, 0x41, 0x43, 0x45, 0x41, 0x3b, 0x34, 0x30, 0x2e, 0x2e, 0x2f, 0x2b, 0x2a, 0x2c, 0x32, 0x37, 0x35, 0x2b, 0x23, 0x23, 0x22, 0x23, 0x26, 0x2c, 0x34, 0x42, 0x4d, 0x54, 0x58, 0x5e, 0x64, 0x6b, 0x6f, 0x6c, 0x67, 0x67, 0x66, 0x63, 0x62, 0x67, 0x6c, 0x68, 0x60, 0x56, 0x42, 0x38, 0x39, 0x36, 0x2f, 0x2a, 0x25, 0x2e, 0x30, 0x30, 0x2d, 0x27, 0x22, 0x20, 0x20, 0x20, 0x20, 0x20, 0x1f, 0x1e, 0x1e, 0x1f, 0x21, 0x25, 0x26, 0x27, 0x28, 0x27, 0x25, 0x21, 0x1e, 0x20, 0x24, 0x27, 0x27, 0x29, 0x2f, 0x39, 0x42, 0x43, 0x3c, 0x34, 0x30, 0x2f, 0x30, 0x34, 0x38, 0x3f, 0x41, 0x47, 0x4d, 0x51, 0x4e, 0x46, 0x3f, 0x39, 0x39, 0x39, 0x39, 0x36, 0x33, 0x33, 0x35, 0x41, 0x46, 0x4e, 0x54, 0x57, 0x56, 0x54, 0x52, 0x49, 0x48, 0x42, 0x3c, 0x3b, 0x3f, 0x3e, 0x3a, 0x40, 0x4f, 0x5c, 0x5a, 0x50, 0x4b, 0x4e, 0x54, 0x55, 0x50, 0x4b, 0x4d, 0x52, 0x53, 0x4d, 0x46, 0x4b, 0x43, 0x45, 0x56, 0x66, 0x69, 0x65, 0x63, 0x58, 0x5a, 0x65, 0x6c, 0x67, 0x63, 0x63, 0x61, 0x62, 0x62, 0x63, 0x63, 0x63, 0x65, 0x6a, 0x6f, 0x70, 0x76, 0x7c, 0x7e, 0x80, 0x85, 0x88, 0x89, 0x8d, 0x8f, 0x92, 0x94, 0x94, 0x95, 0x96, 0x97, 0x99, 0x9a, 0x99, 0x98, 0x98, 0x96, 0x8f, 0x87, 0x85, 0x7d, 0x74, 0x6f, 0x6d, 0x6c, 0x69, 0x66, 0x62, 0x60, 0x5c, 0x57, 0x52, 0x4d, 0x47, 0x43, 0x49, 0x47, 0x45, 0x43, 0x42, 0x41, 0x41, 0x41, 0x3a, 0x3a, 0x3a, 0x3a, 0x3b, 0x3e, 0x42, 0x45, 0x4c, 0x51, 0x57, 0x5a, 0x5e, 0x64, 0x67, 0x68, 0x65, 0x66, 0x65, 0x63, 0x62, 0x61, 0x5e, 0x5a, 0x59, 0x59, 0x58, 0x58, 0x58, 0x59, 0x5b, 0x5c, 0x5b, 0x5c, 0x5d, 0x5f, 0x62, 0x65, 0x68, 0x6a, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x75, 0x75, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6b, 0x6a, 0x67, 0x61, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x59, 0x59, 0x5a, 0x5b, 0x5d, 0x61, 0x63, 0x65, 0x65, 0x69, 0x6c, 0x6e, 0x71, 0x75, 0x77, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7b, 0x79, 0x78, 0x75, 0x71, 0x6b, 0x66, 0x6a, 0x6e, 0x72, 0x74, 0x72, 0x70, 0x6f, 0x6f, 0x6c, 0x69, 0x64, 0x61, 0x5e, 0x5a, 0x55, 0x51, 0x4b, 0x40, 0x36, 0x32, 0x30, 0x2d, 0x2e, 0x32, 0x31, 0x33, 0x36, 0x3c, 0x42, 0x42, 0x38, 0x2d, 0x35, 0x3b, 0x35, 0x2d, 0x32, 0x3a, 0x3e, 0x41, 0x36, 0x36, 0x3b, 0x40, 0x3d, 0x35, 0x34, 0x3b, 0x37, 0x3a, 0x3e, 0x44, 0x51, 0x61, 0x6a, 0x6a, 0x5e, 0x6d, 0x7b, 0x83, 0x86, 0x7d, 0x69, 0x5a, 0x5d, 0x55, 0x4b, 0x4a, 0x52, 0x5a, 0x58, 0x51, 0x46, 0x38, 0x2b, 0x2a, 0x31, 0x36, 0x37, 0x35, 0x2b, 0x29, 0x27, 0x26, 0x27, 0x29, 0x2c, 0x2d, 0x2f, 0x2c, 0x27, 0x26, 0x2b, 0x31, 0x2f, 0x28, 0x25, 0x1f, 0x1e, 0x24, 0x2c, 0x30, 0x35, 0x3a, 0x37, 0x2f, 0x22, 0x1c, 0x1f, 0x21, 0x27, 0x35, 0x36, 0x39, 0x3b, 0x3b, 0x42, 0x4d, 0x53, 0x53, 0x51, 0x49, 0x54, 0x5c, 0x4d, 0x42, 0x49, 0x50, 0x53, 0x4b, 0x40, 0x2c, 0x28, 0x2a, 0x27, 0x30, 0x4f, 0x50, 0x50, 0x54, 0x5a, 0x51, 0x41, 0x3b, 0x3d, 0x43, 0x4d, 0x57, 0x5a, 0x55, 0x4a, 0x41, 0x30, 0x3c, 0x4a, 0x56, 0x5f, 0x66, 0x69, 0x69, 0x5a, 0x47, 0x4d, 0x5a, 0x55, 0x3b, 0x23, 0x29, 0x38, 0x3c, 0x46, 0x5a, 0x69, 0x61, 0x52, 0x4e, 0x4c, 0x4b, 0x4c, 0x4d, 0x4a, 0x45, 0x43, 0x43, 0x47, 0x34, 0x26, 0x2e, 0x43, 0x52, 0x54, 0x4f, 0x50, 0x58, 0x54, 0x42, 0x33, 0x2d, 0x27, 0x20, 0x25, 0x41, 0x5d, 0x68, 0x6c, 0x70, 0x6d, 0x65, 0x3f, 0x3d, 0x36, 0x2a, 0x1f, 0x1b, 0x1c, 0x1d, 0x1d, 0x1d, 0x22, 0x2a, 0x2e, 0x2a, 0x23, 0x1f, 0x18, 0x18, 0x1b, 0x1e, 0x1e, 0x1d, 0x1e, 0x21, 0x27, 0x2b, 0x2a, 0x24, 0x24, 0x2b, 0x2e, 0x2d, 0x25, 0x22, 0x20, 0x22, 0x28, 0x2b, 0x2b, 0x2a, 0x29, 0x2a, 0x2c, 0x2c, 0x2d, 0x2f, 0x32, 0x34, 0x38, 0x30, 0x28, 0x23, 0x21, 0x1f, 0x1f, 0x21, 0x29, 0x26, 0x22, 0x23, 0x28, 0x2d, 0x30, 0x30, 0x27, 0x20, 0x1a, 0x1a, 0x1c, 0x1c, 0x1c, 0x1c, 0x22, 0x24, 0x27, 0x27, 0x25, 0x22, 0x20, 0x1f, 0x1c, 0x1b, 0x1a, 0x1a, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1d, 0x20, 0x24, 0x28, 0x2c, 0x31, 0x34, 0x37, 0x36, 0x34, 0x31, 0x2e, 0x29, 0x25, 0x22, 0x1f, 0x22, 0x23, 0x21, 0x23, 0x28, 0x2a, 0x28, 0x2c, 0x32, 0x36, 0x34, 0x34, 0x39, 0x40, 0x46, 0x42, 0x3b, 0x32, 0x2d, 0x2c, 0x2c, 0x2c, 0x2b, 0x28, 0x29, 0x2b, 0x2e, 0x31, 0x31, 0x2e, 0x2c, 0x1f, 0x21, 0x25, 0x29, 0x2b, 0x2f, 0x39, 0x42, 0x45, 0x48, 0x4c, 0x52, 0x5b, 0x63, 0x64, 0x62, 0x6a, 0x6a, 0x6a, 0x6e, 0x75, 0x79, 0x75, 0x6d, 0x53, 0x40, 0x36, 0x37, 0x34, 0x2f, 0x2d, 0x29, 0x36, 0x36, 0x35, 0x31, 0x2a, 0x24, 0x20, 0x1e, 0x1f, 0x21, 0x21, 0x21, 0x1f, 0x20, 0x23, 0x26, 0x2f, 0x2e, 0x2d, 0x2c, 0x2a, 0x27, 0x22, 0x1e, 0x22, 0x25, 0x27, 0x27, 0x27, 0x2b, 0x33, 0x3a, 0x33, 0x2e, 0x2b, 0x2b, 0x2d, 0x30, 0x36, 0x3b, 0x39, 0x3f, 0x4a, 0x54, 0x59, 0x56, 0x4c, 0x45, 0x3f, 0x40, 0x41, 0x3e, 0x39, 0x35, 0x33, 0x34, 0x3f, 0x4a, 0x58, 0x5d, 0x59, 0x52, 0x4d, 0x4c, 0x4c, 0x4d, 0x4b, 0x47, 0x47, 0x4b, 0x4b, 0x4a, 0x42, 0x47, 0x57, 0x65, 0x60, 0x50, 0x50, 0x5d, 0x64, 0x65, 0x65, 0x65, 0x68, 0x6f, 0x75, 0x78, 0x64, 0x5c, 0x5b, 0x67, 0x70, 0x6f, 0x69, 0x65, 0x5c, 0x5f, 0x68, 0x6c, 0x65, 0x61, 0x63, 0x61, 0x60, 0x5f, 0x5e, 0x5c, 0x5a, 0x5c, 0x64, 0x6d, 0x71, 0x77, 0x7c, 0x7f, 0x81, 0x85, 0x88, 0x87, 0x8c, 0x8e, 0x91, 0x93, 0x94, 0x95, 0x96, 0x97, 0x99, 0x99, 0x97, 0x96, 0x96, 0x94, 0x8c, 0x84, 0x7b, 0x71, 0x65, 0x5e, 0x5b, 0x5a, 0x58, 0x55, 0x50, 0x4d, 0x48, 0x45, 0x45, 0x44, 0x43, 0x42, 0x39, 0x39, 0x38, 0x36, 0x34, 0x32, 0x32, 0x33, 0x32, 0x32, 0x32, 0x31, 0x31, 0x34, 0x37, 0x3a, 0x3a, 0x3e, 0x43, 0x48, 0x4d, 0x53, 0x58, 0x5b, 0x5c, 0x5f, 0x5f, 0x5e, 0x5d, 0x5d, 0x5b, 0x57, 0x57, 0x57, 0x56, 0x56, 0x58, 0x5a, 0x5c, 0x5e, 0x5d, 0x5e, 0x5f, 0x60, 0x63, 0x66, 0x69, 0x6b, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6c, 0x6a, 0x69, 0x66, 0x61, 0x5e, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x58, 0x58, 0x58, 0x58, 0x59, 0x59, 0x59, 0x5b, 0x5b, 0x5c, 0x5e, 0x61, 0x65, 0x69, 0x6b, 0x6d, 0x71, 0x74, 0x76, 0x79, 0x7d, 0x7f, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x7d, 0x7b, 0x7a, 0x7a, 0x77, 0x71, 0x6d, 0x6c, 0x6f, 0x72, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6e, 0x6c, 0x68, 0x64, 0x5f, 0x59, 0x54, 0x51, 0x4a, 0x43, 0x3b, 0x38, 0x34, 0x30, 0x2e, 0x2f, 0x29, 0x28, 0x2a, 0x33, 0x3d, 0x3e, 0x35, 0x2b, 0x2c, 0x31, 0x2e, 0x2a, 0x2e, 0x30, 0x2e, 0x2f, 0x32, 0x2d, 0x2d, 0x33, 0x38, 0x3a, 0x3b, 0x3e, 0x39, 0x35, 0x3c, 0x4d, 0x56, 0x55, 0x5c, 0x6a, 0x70, 0x70, 0x64, 0x60, 0x72, 0x7b, 0x73, 0x6e, 0x5e, 0x5f, 0x5b, 0x54, 0x56, 0x5b, 0x56, 0x4a, 0x3b, 0x32, 0x2c, 0x2c, 0x2c, 0x2a, 0x2e, 0x33, 0x2b, 0x28, 0x26, 0x25, 0x25, 0x27, 0x2e, 0x34, 0x3e, 0x3a, 0x30, 0x27, 0x28, 0x30, 0x32, 0x2d, 0x2b, 0x25, 0x21, 0x23, 0x27, 0x2e, 0x37, 0x3e, 0x43, 0x3a, 0x28, 0x1b, 0x19, 0x1a, 0x26, 0x39, 0x40, 0x43, 0x41, 0x3d, 0x41, 0x4c, 0x4f, 0x4a, 0x48, 0x42, 0x4e, 0x56, 0x47, 0x3f, 0x48, 0x4f, 0x5c, 0x52, 0x49, 0x3e, 0x3d, 0x3a, 0x2d, 0x31, 0x52, 0x5c, 0x5e, 0x5b, 0x5c, 0x54, 0x40, 0x31, 0x3b, 0x43, 0x4d, 0x54, 0x56, 0x51, 0x47, 0x3d, 0x31, 0x42, 0x51, 0x59, 0x60, 0x68, 0x6a, 0x66, 0x54, 0x44, 0x4b, 0x53, 0x46, 0x29, 0x15, 0x20, 0x3b, 0x4b, 0x60, 0x73, 0x75, 0x61, 0x4e, 0x4c, 0x39, 0x37, 0x37, 0x38, 0x38, 0x39, 0x3e, 0x44, 0x40, 0x2d, 0x20, 0x2b, 0x3f, 0x48, 0x43, 0x3a, 0x36, 0x30, 0x37, 0x47, 0x46, 0x34, 0x2b, 0x30, 0x40, 0x56, 0x65, 0x63, 0x5f, 0x5c, 0x4f, 0x3e, 0x2b, 0x33, 0x37, 0x30, 0x25, 0x1f, 0x1e, 0x1e, 0x1d, 0x1e, 0x23, 0x2c, 0x31, 0x2d, 0x25, 0x20, 0x17, 0x17, 0x18, 0x1b, 0x1c, 0x1b, 0x1c, 0x1f, 0x25, 0x2a, 0x2b, 0x28, 0x27, 0x29, 0x29, 0x26, 0x21, 0x1f, 0x1e, 0x21, 0x25, 0x28, 0x28, 0x27, 0x2a, 0x2a, 0x2b, 0x2e, 0x32, 0x39, 0x40, 0x45, 0x42, 0x38, 0x2d, 0x29, 0x28, 0x25, 0x22, 0x20, 0x24, 0x24, 0x24, 0x23, 0x23, 0x23, 0x25, 0x27, 0x24, 0x1e, 0x1b, 0x1c, 0x1c, 0x1b, 0x18, 0x18, 0x1c, 0x1e, 0x22, 0x24, 0x24, 0x24, 0x24, 0x24, 0x25, 0x24, 0x22, 0x21, 0x21, 0x21, 0x20, 0x1f, 0x1c, 0x1e, 0x21, 0x24, 0x26, 0x29, 0x2d, 0x30, 0x38, 0x38, 0x36, 0x30, 0x29, 0x26, 0x26, 0x27, 0x20, 0x23, 0x26, 0x27, 0x28, 0x2c, 0x2d, 0x2d, 0x32, 0x36, 0x37, 0x32, 0x2f, 0x34, 0x3d, 0x43, 0x40, 0x37, 0x2d, 0x29, 0x2b, 0x2e, 0x2e, 0x2c, 0x2c, 0x30, 0x32, 0x2e, 0x26, 0x21, 0x21, 0x23, 0x20, 0x23, 0x27, 0x28, 0x27, 0x2a, 0x35, 0x41, 0x3f, 0x40, 0x41, 0x42, 0x48, 0x50, 0x54, 0x54, 0x55, 0x56, 0x58, 0x5d, 0x65, 0x68, 0x63, 0x5c, 0x4a, 0x3a, 0x33, 0x33, 0x2f, 0x2c, 0x2e, 0x2f, 0x36, 0x38, 0x37, 0x32, 0x2a, 0x22, 0x1e, 0x1c, 0x1c, 0x1d, 0x1e, 0x1e, 0x1e, 0x1f, 0x23, 0x26, 0x29, 0x28, 0x27, 0x26, 0x25, 0x23, 0x21, 0x1f, 0x22, 0x23, 0x25, 0x28, 0x2b, 0x2f, 0x32, 0x34, 0x31, 0x2d, 0x2c, 0x2d, 0x2e, 0x30, 0x35, 0x3a, 0x3f, 0x40, 0x41, 0x42, 0x41, 0x3e, 0x3b, 0x39, 0x40, 0x44, 0x47, 0x46, 0x42, 0x3d, 0x38, 0x35, 0x36, 0x43, 0x51, 0x55, 0x50, 0x4a, 0x4a, 0x4e, 0x4a, 0x4b, 0x49, 0x45, 0x42, 0x41, 0x3f, 0x3e, 0x43, 0x41, 0x4c, 0x5c, 0x5e, 0x52, 0x4c, 0x50, 0x52, 0x56, 0x58, 0x58, 0x5a, 0x5f, 0x62, 0x62, 0x5b, 0x5e, 0x62, 0x67, 0x6c, 0x6f, 0x6d, 0x6a, 0x5e, 0x61, 0x69, 0x6a, 0x62, 0x60, 0x61, 0x5e, 0x5d, 0x5a, 0x57, 0x54, 0x52, 0x54, 0x5f, 0x6a, 0x71, 0x76, 0x7c, 0x7e, 0x81, 0x85, 0x87, 0x86, 0x8a, 0x8c, 0x8f, 0x92, 0x94, 0x95, 0x97, 0x98, 0x99, 0x99, 0x97, 0x96, 0x96, 0x95, 0x90, 0x89, 0x7a, 0x71, 0x64, 0x5b, 0x56, 0x53, 0x50, 0x4d, 0x49, 0x43, 0x3c, 0x37, 0x32, 0x2e, 0x28, 0x24, 0x29, 0x29, 0x29, 0x28, 0x27, 0x27, 0x28, 0x2a, 0x29, 0x29, 0x28, 0x27, 0x27, 0x28, 0x2c, 0x2e, 0x30, 0x31, 0x34, 0x38, 0x3b, 0x3f, 0x44, 0x47, 0x50, 0x54, 0x57, 0x57, 0x57, 0x57, 0x56, 0x53, 0x55, 0x54, 0x54, 0x54, 0x56, 0x59, 0x5c, 0x5e, 0x61, 0x61, 0x62, 0x63, 0x65, 0x67, 0x6a, 0x6b, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6a, 0x69, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5d, 0x5b, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x5a, 0x5b, 0x5c, 0x5f, 0x5f, 0x61, 0x64, 0x68, 0x6d, 0x71, 0x73, 0x78, 0x7b, 0x7e, 0x80, 0x82, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x80, 0x7c, 0x7b, 0x7c, 0x7b, 0x78, 0x74, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x72, 0x73, 0x6d, 0x6c, 0x69, 0x65, 0x60, 0x5a, 0x56, 0x53, 0x49, 0x44, 0x3e, 0x39, 0x33, 0x2e, 0x2b, 0x2b, 0x2c, 0x36, 0x41, 0x46, 0x40, 0x38, 0x33, 0x32, 0x3e, 0x36, 0x2b, 0x31, 0x43, 0x46, 0x36, 0x28, 0x2c, 0x32, 0x39, 0x3e, 0x43, 0x45, 0x3f, 0x36, 0x39, 0x34, 0x3c, 0x51, 0x5d, 0x5d, 0x61, 0x6b, 0x7b, 0x87, 0x84, 0x77, 0x70, 0x65, 0x5b, 0x5c, 0x68, 0x74, 0x74, 0x63, 0x55, 0x51, 0x4b, 0x40, 0x3a, 0x34, 0x31, 0x31, 0x2c, 0x24, 0x21, 0x24, 0x2b, 0x28, 0x25, 0x24, 0x23, 0x23, 0x29, 0x31, 0x3d, 0x3f, 0x3c, 0x35, 0x32, 0x33, 0x31, 0x2c, 0x2e, 0x2a, 0x24, 0x20, 0x1e, 0x22, 0x2c, 0x36, 0x40, 0x3b, 0x2e, 0x23, 0x1e, 0x1b, 0x23, 0x34, 0x43, 0x46, 0x44, 0x3e, 0x40, 0x46, 0x44, 0x3d, 0x3b, 0x36, 0x43, 0x4d, 0x42, 0x40, 0x4f, 0x59, 0x53, 0x4b, 0x4b, 0x47, 0x3d, 0x2a, 0x1a, 0x26, 0x46, 0x48, 0x50, 0x5c, 0x5c, 0x48, 0x38, 0x3b, 0x49, 0x4f, 0x55, 0x56, 0x54, 0x4c, 0x40, 0x34, 0x2d, 0x3f, 0x50, 0x58, 0x5f, 0x68, 0x6a, 0x64, 0x5a, 0x49, 0x4d, 0x50, 0x41, 0x26, 0x17, 0x25, 0x39, 0x4c, 0x4e, 0x4a, 0x5b, 0x6d, 0x61, 0x4a, 0x32, 0x33, 0x36, 0x36, 0x32, 0x2b, 0x29, 0x2a, 0x1f, 0x24, 0x31, 0x42, 0x51, 0x5a, 0x61, 0x65, 0x56, 0x4a, 0x47, 0x4b, 0x40, 0x2a, 0x25, 0x2f, 0x4f, 0x59, 0x5c, 0x55, 0x51, 0x53, 0x53, 0x4f, 0x23, 0x2f, 0x37, 0x33, 0x2b, 0x25, 0x21, 0x1d, 0x1b, 0x1b, 0x20, 0x27, 0x2b, 0x27, 0x20, 0x1c, 0x18, 0x17, 0x18, 0x1b, 0x1c, 0x1b, 0x1c, 0x1e, 0x23, 0x28, 0x2f, 0x32, 0x30, 0x2a, 0x23, 0x1f, 0x1f, 0x1e, 0x1f, 0x22, 0x26, 0x2a, 0x2d, 0x2e, 0x35, 0x33, 0x30, 0x2e, 0x30, 0x34, 0x38, 0x3c, 0x38, 0x30, 0x29, 0x2a, 0x2c, 0x29, 0x23, 0x1f, 0x1e, 0x22, 0x27, 0x27, 0x23, 0x1f, 0x1c, 0x1b, 0x1b, 0x19, 0x18, 0x1a, 0x1a, 0x18, 0x18, 0x18, 0x17, 0x1a, 0x1e, 0x21, 0x22, 0x24, 0x25, 0x26, 0x29, 0x27, 0x23, 0x21, 0x1f, 0x1d, 0x1b, 0x19, 0x1b, 0x1d, 0x20, 0x21, 0x22, 0x25, 0x2a, 0x2d, 0x34, 0x35, 0x33, 0x2c, 0x24, 0x21, 0x25, 0x2a, 0x21, 0x23, 0x27, 0x2a, 0x2a, 0x29, 0x2a, 0x2e, 0x35, 0x39, 0x39, 0x34, 0x30, 0x33, 0x3b, 0x40, 0x41, 0x38, 0x2e, 0x2c, 0x30, 0x35, 0x35, 0x33, 0x2a, 0x31, 0x36, 0x32, 0x26, 0x1d, 0x1a, 0x1b, 0x20, 0x22, 0x24, 0x23, 0x21, 0x26, 0x37, 0x47, 0x48, 0x4a, 0x48, 0x45, 0x44, 0x47, 0x4b, 0x4c, 0x49, 0x48, 0x49, 0x4c, 0x50, 0x52, 0x4f, 0x4c, 0x47, 0x39, 0x35, 0x36, 0x30, 0x2d, 0x32, 0x36, 0x34, 0x34, 0x33, 0x2e, 0x28, 0x23, 0x21, 0x20, 0x1d, 0x1d, 0x1d, 0x1d, 0x1e, 0x21, 0x24, 0x26, 0x2a, 0x2a, 0x29, 0x26, 0x22, 0x20, 0x1f, 0x1f, 0x21, 0x20, 0x22, 0x28, 0x2f, 0x34, 0x35, 0x33, 0x32, 0x2f, 0x2e, 0x2f, 0x2f, 0x31, 0x36, 0x3c, 0x43, 0x42, 0x41, 0x3d, 0x39, 0x36, 0x34, 0x33, 0x3e, 0x45, 0x4c, 0x4f, 0x50, 0x4c, 0x45, 0x3e, 0x3c, 0x45, 0x4f, 0x50, 0x4d, 0x4f, 0x59, 0x62, 0x61, 0x5e, 0x58, 0x50, 0x47, 0x3e, 0x36, 0x32, 0x45, 0x4b, 0x51, 0x57, 0x61, 0x67, 0x5f, 0x51, 0x4c, 0x4a, 0x44, 0x40, 0x44, 0x4c, 0x4c, 0x47, 0x4a, 0x54, 0x5c, 0x60, 0x61, 0x64, 0x67, 0x68, 0x61, 0x63, 0x69, 0x68, 0x60, 0x5e, 0x5f, 0x59, 0x5a, 0x56, 0x53, 0x51, 0x4e, 0x4f, 0x59, 0x64, 0x6e, 0x75, 0x7b, 0x7e, 0x80, 0x83, 0x85, 0x86, 0x88, 0x8b, 0x8e, 0x91, 0x93, 0x95, 0x97, 0x99, 0x99, 0x9a, 0x9a, 0x99, 0x99, 0x9b, 0x99, 0x96, 0x90, 0x8b, 0x84, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x75, 0x6c, 0x62, 0x56, 0x47, 0x37, 0x2c, 0x2b, 0x2a, 0x28, 0x27, 0x28, 0x2b, 0x2f, 0x31, 0x23, 0x22, 0x21, 0x1f, 0x1e, 0x1f, 0x22, 0x24, 0x24, 0x24, 0x26, 0x2a, 0x2d, 0x31, 0x36, 0x3c, 0x43, 0x49, 0x4f, 0x51, 0x53, 0x55, 0x54, 0x53, 0x52, 0x52, 0x51, 0x52, 0x54, 0x58, 0x5b, 0x5d, 0x62, 0x62, 0x64, 0x66, 0x68, 0x6a, 0x6b, 0x6c, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x6a, 0x69, 0x66, 0x65, 0x64, 0x63, 0x62, 0x60, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x63, 0x65, 0x67, 0x6b, 0x70, 0x74, 0x78, 0x7a, 0x80, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x8a, 0x87, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x84, 0x85, 0x83, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x73, 0x73, 0x6b, 0x6a, 0x68, 0x66, 0x62, 0x5e, 0x5a, 0x57, 0x4a, 0x44, 0x3c, 0x37, 0x36, 0x36, 0x35, 0x34, 0x34, 0x39, 0x43, 0x49, 0x47, 0x3e, 0x34, 0x30, 0x40, 0x3d, 0x3c, 0x4a, 0x5b, 0x55, 0x3e, 0x2e, 0x39, 0x45, 0x4e, 0x4b, 0x48, 0x47, 0x42, 0x3a, 0x40, 0x41, 0x45, 0x53, 0x6a, 0x7b, 0x7b, 0x72, 0x79, 0x80, 0x7c, 0x6d, 0x5c, 0x50, 0x50, 0x5a, 0x68, 0x77, 0x79, 0x63, 0x4e, 0x47, 0x45, 0x41, 0x42, 0x3c, 0x39, 0x39, 0x38, 0x32, 0x29, 0x23, 0x28, 0x25, 0x25, 0x28, 0x28, 0x27, 0x2b, 0x33, 0x3a, 0x3a, 0x39, 0x37, 0x34, 0x33, 0x34, 0x35, 0x30, 0x2e, 0x27, 0x1d, 0x16, 0x16, 0x1e, 0x26, 0x30, 0x32, 0x30, 0x2e, 0x2d, 0x25, 0x24, 0x2e, 0x30, 0x35, 0x38, 0x38, 0x3a, 0x3e, 0x3d, 0x39, 0x46, 0x41, 0x4c, 0x51, 0x43, 0x41, 0x51, 0x5b, 0x5c, 0x4c, 0x49, 0x4d, 0x4c, 0x38, 0x22, 0x2a, 0x2c, 0x3c, 0x4a, 0x53, 0x54, 0x49, 0x42, 0x46, 0x55, 0x59, 0x5a, 0x56, 0x51, 0x48, 0x39, 0x2b, 0x27, 0x39, 0x4b, 0x57, 0x61, 0x6a, 0x6a, 0x65, 0x57, 0x46, 0x4b, 0x4f, 0x40, 0x27, 0x1c, 0x2d, 0x49, 0x43, 0x33, 0x35, 0x56, 0x6b, 0x53, 0x2f, 0x21, 0x22, 0x25, 0x28, 0x26, 0x21, 0x1d, 0x1c, 0x25, 0x33, 0x44, 0x50, 0x57, 0x59, 0x58, 0x55, 0x51, 0x52, 0x48, 0x33, 0x25, 0x2a, 0x3c, 0x4a, 0x47, 0x50, 0x53, 0x49, 0x3d, 0x3a, 0x3e, 0x42, 0x23, 0x2c, 0x32, 0x30, 0x2e, 0x2d, 0x29, 0x22, 0x1f, 0x1e, 0x1f, 0x24, 0x25, 0x21, 0x1c, 0x1a, 0x19, 0x17, 0x17, 0x19, 0x1b, 0x1a, 0x1b, 0x1c, 0x1f, 0x22, 0x2b, 0x34, 0x33, 0x29, 0x21, 0x21, 0x21, 0x21, 0x23, 0x24, 0x26, 0x2a, 0x2f, 0x32, 0x36, 0x35, 0x32, 0x30, 0x2e, 0x2e, 0x2e, 0x2e, 0x31, 0x2a, 0x24, 0x24, 0x24, 0x22, 0x1f, 0x1d, 0x1e, 0x21, 0x25, 0x26, 0x23, 0x1d, 0x18, 0x15, 0x16, 0x15, 0x16, 0x17, 0x17, 0x16, 0x18, 0x1c, 0x1e, 0x20, 0x23, 0x25, 0x27, 0x28, 0x2a, 0x2b, 0x26, 0x24, 0x21, 0x1e, 0x1c, 0x1a, 0x17, 0x16, 0x18, 0x1b, 0x1e, 0x20, 0x21, 0x24, 0x2a, 0x2e, 0x30, 0x31, 0x30, 0x2a, 0x22, 0x1f, 0x22, 0x26, 0x23, 0x22, 0x26, 0x2b, 0x28, 0x21, 0x23, 0x2d, 0x31, 0x36, 0x38, 0x36, 0x34, 0x36, 0x3a, 0x3d, 0x3f, 0x36, 0x2e, 0x2c, 0x31, 0x36, 0x36, 0x34, 0x28, 0x2c, 0x32, 0x34, 0x31, 0x2c, 0x27, 0x25, 0x20, 0x21, 0x21, 0x21, 0x20, 0x25, 0x32, 0x40, 0x4b, 0x51, 0x56, 0x54, 0x52, 0x52, 0x54, 0x55, 0x57, 0x57, 0x57, 0x57, 0x57, 0x55, 0x52, 0x50, 0x46, 0x39, 0x36, 0x38, 0x34, 0x32, 0x38, 0x3d, 0x34, 0x30, 0x2a, 0x26, 0x25, 0x25, 0x25, 0x25, 0x21, 0x1f, 0x1e, 0x1d, 0x1f, 0x21, 0x23, 0x24, 0x2b, 0x2d, 0x2e, 0x2a, 0x23, 0x1e, 0x1c, 0x1d, 0x1f, 0x1f, 0x20, 0x26, 0x2d, 0x33, 0x34, 0x34, 0x31, 0x2e, 0x2c, 0x2c, 0x2e, 0x32, 0x39, 0x41, 0x45, 0x44, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3e, 0x40, 0x45, 0x4a, 0x4e, 0x53, 0x55, 0x50, 0x49, 0x44, 0x49, 0x4b, 0x47, 0x44, 0x48, 0x54, 0x5f, 0x71, 0x6c, 0x66, 0x60, 0x58, 0x4e, 0x45, 0x3f, 0x40, 0x49, 0x4f, 0x53, 0x60, 0x6d, 0x66, 0x54, 0x57, 0x57, 0x53, 0x51, 0x58, 0x66, 0x6e, 0x6e, 0x5e, 0x63, 0x6a, 0x6c, 0x66, 0x5e, 0x60, 0x67, 0x65, 0x66, 0x6a, 0x68, 0x60, 0x5e, 0x5c, 0x54, 0x56, 0x52, 0x50, 0x51, 0x4e, 0x4b, 0x51, 0x5a, 0x6b, 0x73, 0x7b, 0x7d, 0x7e, 0x80, 0x84, 0x85, 0x88, 0x8b, 0x8e, 0x91, 0x93, 0x94, 0x96, 0x97, 0x98, 0x9c, 0x9d, 0x9d, 0x9e, 0xa2, 0xa5, 0xa5, 0xa9, 0xa9, 0xa9, 0xaa, 0xab, 0xad, 0xaf, 0xb0, 0xb1, 0xae, 0xaa, 0xa6, 0xa1, 0x96, 0x88, 0x7e, 0x54, 0x4c, 0x41, 0x38, 0x32, 0x2f, 0x2d, 0x2b, 0x25, 0x24, 0x22, 0x1f, 0x1d, 0x1d, 0x1f, 0x21, 0x1e, 0x1d, 0x1e, 0x21, 0x24, 0x26, 0x2b, 0x31, 0x35, 0x3c, 0x45, 0x4a, 0x4e, 0x51, 0x53, 0x52, 0x50, 0x4f, 0x4f, 0x4f, 0x52, 0x56, 0x59, 0x5c, 0x60, 0x61, 0x64, 0x68, 0x6a, 0x6c, 0x6d, 0x6e, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x67, 0x66, 0x64, 0x63, 0x63, 0x62, 0x60, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x60, 0x62, 0x63, 0x67, 0x69, 0x6d, 0x72, 0x76, 0x7a, 0x7d, 0x7f, 0x82, 0x86, 0x88, 0x89, 0x8a, 0x8b, 0x8a, 0x87, 0x86, 0x85, 0x84, 0x85, 0x86, 0x86, 0x85, 0x83, 0x83, 0x83, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x6d, 0x6b, 0x69, 0x67, 0x65, 0x61, 0x5b, 0x58, 0x4a, 0x47, 0x45, 0x4a, 0x51, 0x51, 0x48, 0x3d, 0x39, 0x2e, 0x29, 0x35, 0x44, 0x48, 0x40, 0x37, 0x30, 0x3a, 0x47, 0x56, 0x5b, 0x4b, 0x35, 0x2d, 0x49, 0x4b, 0x4b, 0x4a, 0x49, 0x4b, 0x4e, 0x50, 0x4b, 0x4e, 0x51, 0x5a, 0x6f, 0x82, 0x80, 0x73, 0x5f, 0x57, 0x56, 0x58, 0x53, 0x50, 0x52, 0x55, 0x61, 0x6e, 0x6e, 0x5b, 0x47, 0x41, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3c, 0x39, 0x34, 0x2d, 0x26, 0x27, 0x25, 0x28, 0x2e, 0x2f, 0x2c, 0x2d, 0x32, 0x35, 0x30, 0x2f, 0x32, 0x34, 0x32, 0x35, 0x3b, 0x33, 0x31, 0x2a, 0x1f, 0x17, 0x16, 0x1a, 0x1e, 0x28, 0x2c, 0x2e, 0x32, 0x34, 0x2c, 0x26, 0x2b, 0x24, 0x29, 0x2f, 0x35, 0x38, 0x3a, 0x3b, 0x3c, 0x47, 0x43, 0x4d, 0x50, 0x41, 0x3f, 0x4e, 0x58, 0x54, 0x53, 0x5c, 0x5e, 0x54, 0x39, 0x1d, 0x21, 0x41, 0x5f, 0x6e, 0x64, 0x5a, 0x54, 0x4e, 0x4b, 0x58, 0x5a, 0x59, 0x55, 0x51, 0x4b, 0x3d, 0x2e, 0x31, 0x3f, 0x52, 0x61, 0x6d, 0x74, 0x72, 0x6e, 0x4c, 0x3f, 0x48, 0x4e, 0x40, 0x26, 0x1c, 0x2f, 0x43, 0x45, 0x48, 0x4f, 0x4d, 0x35, 0x1b, 0x13, 0x20, 0x1f, 0x24, 0x2e, 0x36, 0x35, 0x2f, 0x2a, 0x2f, 0x3e, 0x4f, 0x5c, 0x68, 0x6d, 0x63, 0x54, 0x4e, 0x3d, 0x36, 0x37, 0x2c, 0x1c, 0x25, 0x3c, 0x38, 0x46, 0x4e, 0x49, 0x43, 0x43, 0x43, 0x41, 0x1d, 0x22, 0x24, 0x26, 0x2d, 0x35, 0x34, 0x2d, 0x25, 0x23, 0x23, 0x24, 0x23, 0x1f, 0x1c, 0x1b, 0x18, 0x16, 0x15, 0x18, 0x19, 0x18, 0x19, 0x1a, 0x1c, 0x1b, 0x22, 0x2e, 0x2f, 0x26, 0x22, 0x27, 0x26, 0x27, 0x26, 0x23, 0x20, 0x21, 0x25, 0x29, 0x2d, 0x2e, 0x30, 0x32, 0x34, 0x34, 0x33, 0x31, 0x38, 0x2f, 0x26, 0x1f, 0x1b, 0x19, 0x1a, 0x1d, 0x22, 0x21, 0x20, 0x1f, 0x1f, 0x1d, 0x19, 0x16, 0x18, 0x18, 0x18, 0x18, 0x17, 0x16, 0x1a, 0x20, 0x1a, 0x1c, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x26, 0x24, 0x21, 0x20, 0x1f, 0x1e, 0x1c, 0x1b, 0x18, 0x1b, 0x1e, 0x20, 0x21, 0x26, 0x2c, 0x32, 0x30, 0x30, 0x2e, 0x29, 0x22, 0x1e, 0x1f, 0x20, 0x26, 0x22, 0x25, 0x2b, 0x25, 0x1b, 0x1e, 0x2c, 0x2a, 0x31, 0x36, 0x37, 0x37, 0x39, 0x3b, 0x3b, 0x3a, 0x32, 0x2a, 0x28, 0x2d, 0x32, 0x32, 0x31, 0x2c, 0x2c, 0x2e, 0x34, 0x3b, 0x3c, 0x37, 0x31, 0x23, 0x23, 0x24, 0x25, 0x25, 0x26, 0x2c, 0x33, 0x44, 0x50, 0x5c, 0x60, 0x60, 0x61, 0x63, 0x64, 0x68, 0x69, 0x6b, 0x6c, 0x68, 0x61, 0x5b, 0x58, 0x42, 0x35, 0x32, 0x35, 0x34, 0x34, 0x3a, 0x3d, 0x34, 0x2b, 0x20, 0x1c, 0x20, 0x24, 0x25, 0x24, 0x21, 0x1e, 0x1b, 0x1b, 0x1c, 0x1f, 0x1f, 0x1f, 0x1f, 0x24, 0x28, 0x26, 0x20, 0x1b, 0x1a, 0x1c, 0x1f, 0x1e, 0x1f, 0x23, 0x28, 0x2e, 0x31, 0x32, 0x36, 0x32, 0x2e, 0x2c, 0x2d, 0x31, 0x3b, 0x44, 0x4c, 0x44, 0x3b, 0x3a, 0x40, 0x47, 0x4a, 0x4b, 0x42, 0x43, 0x43, 0x44, 0x4b, 0x52, 0x52, 0x4d, 0x4d, 0x4e, 0x4c, 0x44, 0x3c, 0x3c, 0x45, 0x4d, 0x54, 0x51, 0x4f, 0x4f, 0x4d, 0x48, 0x42, 0x3e, 0x40, 0x44, 0x4a, 0x53, 0x5d, 0x60, 0x5a, 0x51, 0x50, 0x5b, 0x62, 0x5f, 0x5c, 0x61, 0x67, 0x68, 0x71, 0x6e, 0x72, 0x74, 0x67, 0x54, 0x52, 0x5d, 0x68, 0x69, 0x6b, 0x68, 0x60, 0x5d, 0x5a, 0x50, 0x53, 0x4f, 0x4f, 0x51, 0x4e, 0x49, 0x4b, 0x51, 0x69, 0x72, 0x7b, 0x7d, 0x7d, 0x7f, 0x83, 0x85, 0x89, 0x8c, 0x8f, 0x91, 0x92, 0x93, 0x95, 0x96, 0x98, 0x9d, 0xa0, 0xa0, 0xa1, 0xa6, 0xac, 0xaf, 0xb0, 0xb3, 0xb6, 0xb8, 0xb8, 0xb9, 0xbb, 0xbc, 0xc1, 0xbe, 0xbb, 0xba, 0xb9, 0xb4, 0xab, 0xa4, 0xa4, 0x95, 0x7e, 0x66, 0x53, 0x44, 0x38, 0x31, 0x29, 0x27, 0x25, 0x21, 0x1e, 0x1d, 0x1e, 0x20, 0x25, 0x21, 0x1f, 0x1f, 0x1d, 0x1b, 0x1e, 0x23, 0x27, 0x2f, 0x39, 0x40, 0x46, 0x4b, 0x4e, 0x4e, 0x4f, 0x4e, 0x4d, 0x4e, 0x50, 0x54, 0x58, 0x5b, 0x5d, 0x60, 0x64, 0x68, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x71, 0x73, 0x75, 0x75, 0x75, 0x73, 0x72, 0x73, 0x71, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x68, 0x66, 0x64, 0x62, 0x62, 0x62, 0x62, 0x61, 0x5f, 0x5f, 0x5e, 0x5f, 0x60, 0x62, 0x64, 0x65, 0x68, 0x6b, 0x70, 0x75, 0x7a, 0x7e, 0x80, 0x81, 0x80, 0x84, 0x87, 0x87, 0x88, 0x89, 0x88, 0x85, 0x87, 0x85, 0x84, 0x84, 0x85, 0x85, 0x84, 0x82, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x75, 0x72, 0x70, 0x72, 0x6f, 0x6c, 0x69, 0x66, 0x61, 0x5a, 0x55, 0x4d, 0x43, 0x3d, 0x46, 0x5c, 0x70, 0x75, 0x71, 0x62, 0x4e, 0x3d, 0x3c, 0x44, 0x49, 0x47, 0x45, 0x4e, 0x42, 0x32, 0x2e, 0x34, 0x36, 0x38, 0x41, 0x3c, 0x31, 0x2e, 0x37, 0x43, 0x49, 0x4d, 0x50, 0x51, 0x51, 0x55, 0x5e, 0x68, 0x6c, 0x6d, 0x6c, 0x69, 0x59, 0x5a, 0x64, 0x61, 0x5f, 0x62, 0x60, 0x63, 0x6c, 0x6a, 0x58, 0x47, 0x40, 0x3f, 0x3e, 0x4f, 0x56, 0x55, 0x46, 0x37, 0x30, 0x2d, 0x2b, 0x2b, 0x28, 0x2a, 0x30, 0x30, 0x29, 0x25, 0x27, 0x28, 0x24, 0x29, 0x37, 0x3c, 0x35, 0x30, 0x32, 0x34, 0x31, 0x2a, 0x21, 0x1c, 0x1b, 0x1c, 0x1d, 0x29, 0x2b, 0x2b, 0x2e, 0x31, 0x2a, 0x24, 0x28, 0x2f, 0x31, 0x36, 0x3b, 0x3c, 0x39, 0x39, 0x3c, 0x38, 0x38, 0x47, 0x50, 0x48, 0x4b, 0x5f, 0x6a, 0x5f, 0x55, 0x51, 0x4d, 0x4e, 0x44, 0x2f, 0x2d, 0x46, 0x5a, 0x6a, 0x6a, 0x5b, 0x45, 0x40, 0x4c, 0x56, 0x59, 0x58, 0x56, 0x56, 0x55, 0x48, 0x3a, 0x34, 0x3f, 0x51, 0x62, 0x6e, 0x71, 0x6e, 0x6a, 0x47, 0x3e, 0x4c, 0x53, 0x43, 0x27, 0x1d, 0x30, 0x45, 0x4b, 0x49, 0x43, 0x45, 0x4c, 0x59, 0x68, 0x64, 0x62, 0x65, 0x6d, 0x6d, 0x5c, 0x41, 0x2d, 0x2c, 0x44, 0x58, 0x5e, 0x60, 0x62, 0x58, 0x49, 0x44, 0x39, 0x2a, 0x20, 0x21, 0x29, 0x2e, 0x2e, 0x3e, 0x47, 0x49, 0x44, 0x49, 0x54, 0x53, 0x47, 0x1e, 0x1e, 0x1c, 0x1d, 0x27, 0x31, 0x30, 0x27, 0x20, 0x23, 0x29, 0x2c, 0x29, 0x1f, 0x18, 0x15, 0x14, 0x1b, 0x21, 0x22, 0x1f, 0x1b, 0x1c, 0x1e, 0x1d, 0x1d, 0x20, 0x21, 0x20, 0x1e, 0x22, 0x27, 0x28, 0x29, 0x28, 0x25, 0x23, 0x25, 0x26, 0x25, 0x26, 0x27, 0x2a, 0x30, 0x39, 0x41, 0x46, 0x48, 0x45, 0x3d, 0x31, 0x24, 0x1c, 0x1a, 0x1b, 0x1d, 0x20, 0x21, 0x1f, 0x1d, 0x1c, 0x1b, 0x18, 0x14, 0x15, 0x17, 0x19, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x17, 0x18, 0x19, 0x18, 0x16, 0x18, 0x1c, 0x21, 0x28, 0x23, 0x20, 0x1e, 0x1c, 0x19, 0x19, 0x1a, 0x1b, 0x1d, 0x20, 0x23, 0x27, 0x2b, 0x30, 0x33, 0x32, 0x34, 0x34, 0x2e, 0x25, 0x1f, 0x1d, 0x1e, 0x22, 0x26, 0x29, 0x26, 0x21, 0x20, 0x26, 0x2b, 0x2d, 0x2f, 0x35, 0x3b, 0x41, 0x42, 0x3f, 0x3c, 0x36, 0x32, 0x2c, 0x28, 0x28, 0x29, 0x29, 0x29, 0x2b, 0x2b, 0x29, 0x28, 0x2d, 0x34, 0x36, 0x32, 0x27, 0x29, 0x27, 0x26, 0x28, 0x28, 0x30, 0x40, 0x43, 0x45, 0x49, 0x4e, 0x52, 0x54, 0x53, 0x52, 0x55, 0x50, 0x52, 0x5b, 0x61, 0x5e, 0x59, 0x56, 0x40, 0x2e, 0x27, 0x2b, 0x2f, 0x31, 0x30, 0x2b, 0x23, 0x22, 0x21, 0x21, 0x22, 0x23, 0x23, 0x23, 0x1d, 0x1b, 0x1c, 0x20, 0x21, 0x1e, 0x1e, 0x20, 0x25, 0x2b, 0x2e, 0x29, 0x20, 0x1a, 0x1b, 0x1f, 0x1f, 0x1f, 0x1f, 0x20, 0x25, 0x2c, 0x2e, 0x2e, 0x33, 0x32, 0x32, 0x34, 0x36, 0x39, 0x40, 0x47, 0x49, 0x48, 0x47, 0x46, 0x4a, 0x4f, 0x50, 0x4d, 0x44, 0x3f, 0x40, 0x49, 0x51, 0x53, 0x51, 0x51, 0x4f, 0x4a, 0x47, 0x45, 0x42, 0x3e, 0x3d, 0x3f, 0x41, 0x48, 0x4b, 0x47, 0x45, 0x47, 0x47, 0x44, 0x48, 0x48, 0x4b, 0x51, 0x56, 0x56, 0x4f, 0x48, 0x3c, 0x3e, 0x42, 0x45, 0x47, 0x49, 0x4b, 0x4d, 0x53, 0x56, 0x5d, 0x60, 0x58, 0x4f, 0x51, 0x5b, 0x69, 0x69, 0x6a, 0x6a, 0x66, 0x5f, 0x57, 0x54, 0x4f, 0x4c, 0x4c, 0x4e, 0x4c, 0x48, 0x48, 0x4c, 0x64, 0x75, 0x7d, 0x7c, 0x7e, 0x81, 0x82, 0x85, 0x88, 0x8c, 0x90, 0x93, 0x94, 0x95, 0x97, 0x99, 0x9a, 0x9d, 0xa1, 0xa5, 0xa9, 0xae, 0xb2, 0xb5, 0xb7, 0xb9, 0xba, 0xba, 0xb9, 0xb9, 0xba, 0xbc, 0xbc, 0xbf, 0xc1, 0xc2, 0xc1, 0xbf, 0xbf, 0xc0, 0xb7, 0xb4, 0xac, 0xa2, 0x95, 0x80, 0x61, 0x48, 0x33, 0x2f, 0x29, 0x26, 0x25, 0x22, 0x1e, 0x1a, 0x21, 0x1f, 0x1d, 0x1e, 0x1f, 0x20, 0x1f, 0x1d, 0x21, 0x28, 0x31, 0x38, 0x3f, 0x47, 0x4d, 0x50, 0x51, 0x4e, 0x4d, 0x4f, 0x51, 0x52, 0x56, 0x5a, 0x5f, 0x62, 0x65, 0x69, 0x6d, 0x6f, 0x71, 0x71, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x6f, 0x6c, 0x69, 0x65, 0x67, 0x66, 0x62, 0x63, 0x65, 0x64, 0x61, 0x5f, 0x5f, 0x5e, 0x5f, 0x60, 0x62, 0x64, 0x64, 0x6a, 0x6c, 0x6f, 0x73, 0x77, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x83, 0x81, 0x82, 0x83, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x80, 0x7f, 0x7e, 0x80, 0x7e, 0x7b, 0x78, 0x77, 0x76, 0x74, 0x73, 0x71, 0x6e, 0x6a, 0x68, 0x69, 0x67, 0x5d, 0x52, 0x4d, 0x42, 0x48, 0x68, 0x87, 0x90, 0x8d, 0x8a, 0x81, 0x74, 0x60, 0x47, 0x32, 0x32, 0x3d, 0x41, 0x4a, 0x40, 0x36, 0x33, 0x3a, 0x41, 0x42, 0x3e, 0x32, 0x2f, 0x30, 0x31, 0x34, 0x3c, 0x3d, 0x35, 0x42, 0x58, 0x67, 0x67, 0x67, 0x66, 0x63, 0x65, 0x64, 0x65, 0x69, 0x68, 0x65, 0x6c, 0x71, 0x6d, 0x72, 0x6d, 0x62, 0x50, 0x4a, 0x3f, 0x31, 0x3a, 0x3b, 0x3c, 0x3c, 0x3d, 0x41, 0x42, 0x3a, 0x30, 0x30, 0x2d, 0x2a, 0x2a, 0x2c, 0x2c, 0x2a, 0x28, 0x24, 0x22, 0x21, 0x23, 0x27, 0x2c, 0x2e, 0x2f, 0x2a, 0x2a, 0x2a, 0x29, 0x21, 0x1a, 0x1c, 0x23, 0x29, 0x22, 0x1e, 0x25, 0x29, 0x1e, 0x1a, 0x23, 0x2b, 0x34, 0x43, 0x45, 0x41, 0x36, 0x28, 0x2e, 0x2d, 0x31, 0x42, 0x52, 0x46, 0x48, 0x65, 0x6d, 0x5e, 0x4c, 0x40, 0x3f, 0x38, 0x29, 0x25, 0x2c, 0x47, 0x5b, 0x69, 0x65, 0x53, 0x3f, 0x3e, 0x4d, 0x54, 0x5d, 0x54, 0x4e, 0x4f, 0x50, 0x4c, 0x36, 0x3b, 0x49, 0x5d, 0x69, 0x6f, 0x75, 0x6e, 0x5d, 0x40, 0x41, 0x63, 0x5d, 0x4c, 0x1a, 0x29, 0x3a, 0x4a, 0x4d, 0x53, 0x59, 0x60, 0x64, 0x67, 0x68, 0x69, 0x67, 0x72, 0x6e, 0x55, 0x48, 0x42, 0x2f, 0x3c, 0x42, 0x53, 0x63, 0x68, 0x67, 0x5a, 0x48, 0x36, 0x27, 0x1d, 0x20, 0x26, 0x2a, 0x32, 0x3d, 0x4b, 0x59, 0x5e, 0x56, 0x51, 0x54, 0x51, 0x47, 0x25, 0x1d, 0x18, 0x1c, 0x24, 0x29, 0x29, 0x26, 0x22, 0x23, 0x26, 0x2b, 0x2b, 0x24, 0x1c, 0x17, 0x16, 0x1d, 0x25, 0x28, 0x25, 0x21, 0x20, 0x20, 0x20, 0x20, 0x22, 0x23, 0x21, 0x1e, 0x20, 0x24, 0x26, 0x27, 0x25, 0x22, 0x22, 0x26, 0x28, 0x29, 0x26, 0x27, 0x2a, 0x30, 0x39, 0x42, 0x48, 0x4b, 0x46, 0x3f, 0x35, 0x2a, 0x22, 0x1e, 0x1e, 0x1e, 0x21, 0x23, 0x21, 0x1b, 0x18, 0x18, 0x19, 0x19, 0x1c, 0x1d, 0x1e, 0x1f, 0x1f, 0x1d, 0x1b, 0x1a, 0x14, 0x16, 0x18, 0x18, 0x18, 0x19, 0x1c, 0x1f, 0x20, 0x20, 0x21, 0x22, 0x1e, 0x1a, 0x1a, 0x1c, 0x29, 0x29, 0x2a, 0x2a, 0x2a, 0x2a, 0x2b, 0x2c, 0x33, 0x35, 0x35, 0x2f, 0x26, 0x1f, 0x1c, 0x1d, 0x20, 0x23, 0x25, 0x23, 0x20, 0x21, 0x28, 0x2e, 0x34, 0x36, 0x3a, 0x3d, 0x3e, 0x3b, 0x37, 0x33, 0x30, 0x2d, 0x2a, 0x29, 0x29, 0x2a, 0x28, 0x27, 0x26, 0x28, 0x27, 0x24, 0x25, 0x29, 0x2b, 0x2a, 0x27, 0x27, 0x24, 0x24, 0x29, 0x2d, 0x38, 0x49, 0x58, 0x5d, 0x63, 0x67, 0x65, 0x60, 0x5c, 0x59, 0x4c, 0x4a, 0x4a, 0x4f, 0x55, 0x55, 0x50, 0x4b, 0x35, 0x2b, 0x2a, 0x2e, 0x2b, 0x2a, 0x2d, 0x2d, 0x27, 0x24, 0x1f, 0x1d, 0x1d, 0x1e, 0x1e, 0x1e, 0x19, 0x18, 0x19, 0x1d, 0x1e, 0x1c, 0x1d, 0x1f, 0x20, 0x23, 0x25, 0x25, 0x21, 0x1f, 0x1f, 0x20, 0x21, 0x22, 0x24, 0x26, 0x2b, 0x31, 0x33, 0x32, 0x31, 0x2f, 0x2d, 0x30, 0x33, 0x38, 0x40, 0x48, 0x49, 0x49, 0x47, 0x46, 0x4a, 0x4e, 0x4f, 0x4c, 0x40, 0x40, 0x44, 0x49, 0x4b, 0x4b, 0x4d, 0x51, 0x59, 0x59, 0x53, 0x46, 0x38, 0x32, 0x35, 0x3a, 0x37, 0x3c, 0x3d, 0x3a, 0x39, 0x3e, 0x46, 0x4c, 0x51, 0x4e, 0x4c, 0x4d, 0x50, 0x50, 0x4d, 0x4a, 0x3a, 0x3c, 0x3e, 0x3f, 0x40, 0x3f, 0x3f, 0x3e, 0x48, 0x4a, 0x50, 0x57, 0x58, 0x57, 0x5d, 0x66, 0x6f, 0x6f, 0x70, 0x70, 0x6c, 0x63, 0x5a, 0x54, 0x4f, 0x4d, 0x4c, 0x4c, 0x49, 0x46, 0x46, 0x49, 0x65, 0x76, 0x7e, 0x7d, 0x80, 0x82, 0x82, 0x85, 0x89, 0x8d, 0x91, 0x94, 0x95, 0x96, 0x99, 0x9b, 0x9a, 0x9d, 0xa2, 0xa6, 0xaa, 0xae, 0xb2, 0xb5, 0xb6, 0xb7, 0xb9, 0xb8, 0xb7, 0xb7, 0xb8, 0xb9, 0xb9, 0xbb, 0xbd, 0xbd, 0xbc, 0xbc, 0xbc, 0xbd, 0xb8, 0xb7, 0xb4, 0xb0, 0xae, 0xa7, 0x97, 0x88, 0x6d, 0x5c, 0x44, 0x31, 0x27, 0x24, 0x24, 0x24, 0x22, 0x20, 0x1e, 0x1e, 0x21, 0x22, 0x21, 0x20, 0x1f, 0x24, 0x2a, 0x30, 0x38, 0x42, 0x4c, 0x52, 0x50, 0x4d, 0x4d, 0x4f, 0x51, 0x53, 0x57, 0x5b, 0x5f, 0x61, 0x65, 0x69, 0x6d, 0x6f, 0x71, 0x71, 0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x74, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x67, 0x68, 0x67, 0x64, 0x64, 0x65, 0x63, 0x5f, 0x5c, 0x5d, 0x5f, 0x5f, 0x5e, 0x5f, 0x62, 0x65, 0x6a, 0x6b, 0x6d, 0x70, 0x73, 0x76, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7a, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x81, 0x7f, 0x7c, 0x79, 0x78, 0x76, 0x74, 0x73, 0x71, 0x6e, 0x6a, 0x69, 0x6a, 0x67, 0x5d, 0x52, 0x52, 0x55, 0x62, 0x77, 0x85, 0x87, 0x86, 0x88, 0x7b, 0x73, 0x6a, 0x5a, 0x44, 0x3b, 0x3c, 0x3b, 0x3b, 0x34, 0x29, 0x28, 0x38, 0x49, 0x49, 0x3d, 0x40, 0x37, 0x32, 0x36, 0x38, 0x32, 0x30, 0x35, 0x41, 0x5e, 0x77, 0x80, 0x80, 0x77, 0x6b, 0x66, 0x62, 0x57, 0x54, 0x5a, 0x5f, 0x68, 0x6e, 0x6d, 0x5a, 0x60, 0x5d, 0x4a, 0x42, 0x38, 0x24, 0x24, 0x2c, 0x31, 0x36, 0x39, 0x3c, 0x3c, 0x35, 0x2c, 0x2c, 0x2b, 0x2b, 0x2d, 0x2f, 0x2f, 0x2c, 0x2a, 0x29, 0x26, 0x24, 0x26, 0x2b, 0x30, 0x32, 0x32, 0x31, 0x2a, 0x27, 0x2b, 0x2e, 0x2b, 0x28, 0x27, 0x25, 0x22, 0x21, 0x26, 0x2a, 0x20, 0x19, 0x1e, 0x24, 0x28, 0x32, 0x2f, 0x2b, 0x24, 0x1b, 0x27, 0x30, 0x30, 0x36, 0x43, 0x40, 0x43, 0x5a, 0x60, 0x63, 0x4f, 0x41, 0x40, 0x3a, 0x29, 0x20, 0x21, 0x44, 0x5d, 0x6c, 0x64, 0x4e, 0x3c, 0x40, 0x52, 0x57, 0x5b, 0x51, 0x4e, 0x4e, 0x4d, 0x4d, 0x3f, 0x35, 0x42, 0x57, 0x67, 0x6f, 0x74, 0x6a, 0x55, 0x40, 0x47, 0x64, 0x5a, 0x41, 0x19, 0x28, 0x39, 0x5b, 0x54, 0x55, 0x5f, 0x66, 0x65, 0x64, 0x67, 0x5c, 0x5a, 0x64, 0x61, 0x4d, 0x47, 0x45, 0x38, 0x3b, 0x43, 0x55, 0x66, 0x6b, 0x68, 0x59, 0x46, 0x2c, 0x22, 0x1d, 0x22, 0x27, 0x2a, 0x34, 0x40, 0x58, 0x64, 0x68, 0x60, 0x57, 0x52, 0x4b, 0x43, 0x2f, 0x20, 0x17, 0x1c, 0x23, 0x25, 0x26, 0x2a, 0x25, 0x23, 0x24, 0x29, 0x2b, 0x26, 0x1e, 0x19, 0x18, 0x1f, 0x26, 0x29, 0x26, 0x20, 0x1c, 0x1a, 0x1d, 0x1e, 0x20, 0x22, 0x20, 0x1d, 0x1e, 0x21, 0x24, 0x24, 0x22, 0x1f, 0x20, 0x24, 0x27, 0x27, 0x24, 0x24, 0x26, 0x2b, 0x32, 0x3a, 0x40, 0x43, 0x3a, 0x36, 0x2f, 0x28, 0x23, 0x20, 0x20, 0x20, 0x22, 0x26, 0x26, 0x21, 0x1c, 0x1c, 0x1e, 0x20, 0x1f, 0x20, 0x21, 0x21, 0x20, 0x1d, 0x1a, 0x19, 0x14, 0x15, 0x17, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x18, 0x1c, 0x21, 0x24, 0x21, 0x1c, 0x1b, 0x1d, 0x27, 0x29, 0x2c, 0x2d, 0x2e, 0x2e, 0x2f, 0x30, 0x32, 0x35, 0x35, 0x30, 0x27, 0x1f, 0x1c, 0x1d, 0x20, 0x22, 0x23, 0x22, 0x20, 0x22, 0x28, 0x2e, 0x35, 0x37, 0x3a, 0x3a, 0x36, 0x31, 0x2c, 0x29, 0x2b, 0x2a, 0x29, 0x2b, 0x2c, 0x2c, 0x29, 0x27, 0x25, 0x28, 0x2a, 0x27, 0x26, 0x28, 0x2c, 0x2e, 0x2c, 0x2b, 0x28, 0x29, 0x30, 0x33, 0x3c, 0x4c, 0x58, 0x5f, 0x66, 0x69, 0x69, 0x69, 0x6b, 0x6e, 0x69, 0x6a, 0x66, 0x62, 0x5f, 0x5c, 0x52, 0x46, 0x30, 0x28, 0x29, 0x2e, 0x2c, 0x2b, 0x2d, 0x2c, 0x25, 0x20, 0x1c, 0x1a, 0x1c, 0x1d, 0x1c, 0x1a, 0x1a, 0x19, 0x1a, 0x1d, 0x1f, 0x1e, 0x1e, 0x20, 0x1e, 0x1d, 0x1e, 0x20, 0x22, 0x23, 0x22, 0x21, 0x20, 0x23, 0x25, 0x28, 0x2c, 0x32, 0x33, 0x32, 0x2c, 0x29, 0x28, 0x2b, 0x30, 0x35, 0x3a, 0x3f, 0x43, 0x45, 0x48, 0x4b, 0x4f, 0x53, 0x51, 0x4d, 0x5c, 0x5e, 0x5e, 0x57, 0x4a, 0x43, 0x47, 0x4f, 0x61, 0x6a, 0x68, 0x54, 0x3c, 0x31, 0x32, 0x35, 0x34, 0x36, 0x38, 0x38, 0x35, 0x37, 0x41, 0x4b, 0x4b, 0x49, 0x49, 0x4b, 0x4f, 0x52, 0x52, 0x51, 0x46, 0x48, 0x4b, 0x50, 0x54, 0x58, 0x5a, 0x5a, 0x5a, 0x57, 0x56, 0x55, 0x53, 0x50, 0x55, 0x5c, 0x6a, 0x6b, 0x6e, 0x70, 0x6f, 0x69, 0x5f, 0x58, 0x55, 0x53, 0x50, 0x4e, 0x4b, 0x47, 0x47, 0x4a, 0x68, 0x77, 0x7f, 0x7f, 0x81, 0x82, 0x81, 0x84, 0x89, 0x8d, 0x92, 0x95, 0x97, 0x98, 0x9b, 0x9d, 0x9b, 0x9e, 0xa4, 0xa8, 0xac, 0xaf, 0xb2, 0xb4, 0xb5, 0xb5, 0xb6, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5, 0xb4, 0xb4, 0xb6, 0xb7, 0xb6, 0xb4, 0xb2, 0xb1, 0xb4, 0xb6, 0xb3, 0xaf, 0xa1, 0x8f, 0x76, 0x5e, 0x4d, 0x3f, 0x33, 0x2b, 0x22, 0x20, 0x1e, 0x1e, 0x21, 0x23, 0x23, 0x23, 0x24, 0x26, 0x29, 0x2c, 0x32, 0x3c, 0x4a, 0x54, 0x52, 0x50, 0x4f, 0x51, 0x54, 0x55, 0x59, 0x5d, 0x60, 0x62, 0x66, 0x6a, 0x6e, 0x70, 0x72, 0x73, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x73, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6a, 0x6a, 0x69, 0x66, 0x64, 0x64, 0x61, 0x5d, 0x5b, 0x5e, 0x60, 0x5f, 0x5c, 0x5c, 0x5f, 0x63, 0x65, 0x65, 0x66, 0x68, 0x6b, 0x6e, 0x71, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x76, 0x78, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x82, 0x80, 0x7d, 0x7a, 0x78, 0x77, 0x75, 0x73, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x67, 0x5d, 0x53, 0x53, 0x61, 0x72, 0x7f, 0x84, 0x84, 0x83, 0x83, 0x78, 0x6f, 0x69, 0x5f, 0x4b, 0x3e, 0x3e, 0x40, 0x3b, 0x35, 0x2c, 0x2f, 0x48, 0x61, 0x60, 0x4f, 0x48, 0x39, 0x2c, 0x31, 0x34, 0x23, 0x22, 0x39, 0x4a, 0x5e, 0x6e, 0x79, 0x84, 0x88, 0x85, 0x85, 0x73, 0x5d, 0x51, 0x55, 0x5a, 0x5e, 0x60, 0x5d, 0x4d, 0x4e, 0x4f, 0x45, 0x3f, 0x37, 0x26, 0x28, 0x21, 0x29, 0x32, 0x37, 0x38, 0x35, 0x2f, 0x29, 0x2b, 0x2d, 0x30, 0x32, 0x33, 0x31, 0x2e, 0x2c, 0x2c, 0x28, 0x23, 0x24, 0x2a, 0x2e, 0x30, 0x2f, 0x2d, 0x26, 0x24, 0x2a, 0x2e, 0x2c, 0x28, 0x28, 0x2a, 0x2b, 0x27, 0x27, 0x28, 0x22, 0x1b, 0x1d, 0x1e, 0x20, 0x26, 0x22, 0x1f, 0x1b, 0x18, 0x28, 0x35, 0x40, 0x46, 0x4b, 0x44, 0x43, 0x5c, 0x6e, 0x6b, 0x53, 0x3f, 0x3b, 0x38, 0x2d, 0x28, 0x2b, 0x40, 0x5d, 0x6e, 0x62, 0x4a, 0x38, 0x3d, 0x4f, 0x5d, 0x5a, 0x4f, 0x4f, 0x4d, 0x48, 0x4d, 0x4b, 0x45, 0x52, 0x62, 0x65, 0x5e, 0x5b, 0x52, 0x43, 0x3a, 0x4f, 0x67, 0x5b, 0x37, 0x21, 0x2f, 0x41, 0x55, 0x49, 0x4a, 0x5a, 0x66, 0x63, 0x5f, 0x61, 0x5a, 0x58, 0x5f, 0x5e, 0x4d, 0x46, 0x41, 0x33, 0x39, 0x41, 0x53, 0x61, 0x64, 0x60, 0x53, 0x42, 0x3e, 0x36, 0x31, 0x31, 0x30, 0x2e, 0x34, 0x3f, 0x47, 0x50, 0x59, 0x5b, 0x57, 0x53, 0x50, 0x4d, 0x33, 0x26, 0x1b, 0x1c, 0x23, 0x27, 0x2a, 0x2c, 0x26, 0x24, 0x23, 0x26, 0x27, 0x22, 0x1c, 0x19, 0x1d, 0x21, 0x26, 0x27, 0x24, 0x1e, 0x19, 0x17, 0x17, 0x18, 0x1c, 0x1f, 0x20, 0x1f, 0x1f, 0x22, 0x23, 0x23, 0x21, 0x1e, 0x1e, 0x21, 0x22, 0x21, 0x20, 0x20, 0x21, 0x24, 0x28, 0x2d, 0x31, 0x34, 0x31, 0x2e, 0x28, 0x23, 0x1f, 0x1e, 0x1e, 0x1f, 0x20, 0x25, 0x28, 0x26, 0x22, 0x21, 0x1f, 0x1e, 0x1a, 0x1c, 0x1e, 0x1f, 0x20, 0x1e, 0x1d, 0x1b, 0x17, 0x17, 0x17, 0x19, 0x1b, 0x1c, 0x1d, 0x1d, 0x17, 0x19, 0x1f, 0x23, 0x21, 0x1d, 0x1a, 0x1b, 0x1b, 0x1f, 0x25, 0x2a, 0x2d, 0x30, 0x33, 0x34, 0x31, 0x34, 0x35, 0x30, 0x27, 0x20, 0x1d, 0x1e, 0x21, 0x23, 0x24, 0x23, 0x22, 0x23, 0x28, 0x2c, 0x2f, 0x32, 0x35, 0x35, 0x32, 0x2e, 0x2b, 0x2a, 0x2b, 0x2b, 0x2b, 0x2e, 0x30, 0x30, 0x2d, 0x2b, 0x27, 0x2a, 0x2c, 0x2d, 0x2e, 0x31, 0x35, 0x38, 0x33, 0x33, 0x30, 0x33, 0x38, 0x38, 0x3b, 0x45, 0x48, 0x4a, 0x4d, 0x51, 0x57, 0x61, 0x6d, 0x76, 0x7c, 0x80, 0x7c, 0x71, 0x6c, 0x69, 0x5c, 0x4c, 0x36, 0x27, 0x24, 0x2b, 0x30, 0x32, 0x2f, 0x28, 0x1d, 0x1a, 0x18, 0x19, 0x1c, 0x1d, 0x1b, 0x18, 0x1c, 0x1b, 0x1c, 0x1d, 0x1e, 0x1e, 0x1e, 0x1f, 0x20, 0x1e, 0x1c, 0x1c, 0x1f, 0x22, 0x23, 0x22, 0x23, 0x25, 0x26, 0x27, 0x2a, 0x2e, 0x30, 0x30, 0x2c, 0x29, 0x29, 0x2d, 0x32, 0x34, 0x35, 0x37, 0x39, 0x40, 0x48, 0x50, 0x55, 0x57, 0x52, 0x4c, 0x4f, 0x58, 0x61, 0x5e, 0x53, 0x4c, 0x50, 0x57, 0x55, 0x64, 0x67, 0x56, 0x3f, 0x32, 0x2b, 0x27, 0x2f, 0x30, 0x36, 0x3d, 0x3d, 0x39, 0x3c, 0x42, 0x4d, 0x4d, 0x4e, 0x4f, 0x4f, 0x4c, 0x46, 0x41, 0x3f, 0x3f, 0x40, 0x43, 0x45, 0x46, 0x46, 0x44, 0x50, 0x50, 0x50, 0x4d, 0x49, 0x4b, 0x56, 0x63, 0x68, 0x6b, 0x6f, 0x71, 0x70, 0x6c, 0x64, 0x5c, 0x5d, 0x5b, 0x58, 0x54, 0x50, 0x4e, 0x4e, 0x4f, 0x6b, 0x78, 0x7f, 0x7f, 0x82, 0x81, 0x80, 0x84, 0x89, 0x8d, 0x92, 0x96, 0x97, 0x99, 0x9b, 0x9e, 0x9c, 0xa0, 0xa6, 0xab, 0xae, 0xb0, 0xb2, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xaf, 0xaf, 0xad, 0xac, 0xac, 0xab, 0xaa, 0xab, 0xac, 0xad, 0xac, 0xaa, 0xa7, 0xa5, 0xa6, 0xa8, 0xaa, 0xaa, 0xae, 0xa6, 0x9b, 0x90, 0x83, 0x70, 0x5b, 0x4b, 0x39, 0x35, 0x30, 0x2c, 0x2a, 0x28, 0x25, 0x23, 0x27, 0x29, 0x2a, 0x2a, 0x2b, 0x35, 0x48, 0x59, 0x58, 0x55, 0x54, 0x56, 0x58, 0x58, 0x5b, 0x5f, 0x62, 0x64, 0x67, 0x6b, 0x6f, 0x72, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6b, 0x6a, 0x68, 0x66, 0x64, 0x61, 0x5d, 0x59, 0x59, 0x5b, 0x5c, 0x5c, 0x5a, 0x59, 0x5b, 0x5c, 0x5e, 0x5d, 0x5d, 0x5e, 0x61, 0x64, 0x68, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x73, 0x76, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x75, 0x73, 0x6e, 0x6d, 0x6b, 0x6a, 0x6b, 0x68, 0x5f, 0x55, 0x58, 0x65, 0x73, 0x7c, 0x84, 0x88, 0x82, 0x78, 0x75, 0x69, 0x64, 0x5f, 0x4e, 0x42, 0x44, 0x48, 0x36, 0x2d, 0x27, 0x30, 0x4a, 0x5f, 0x5d, 0x4f, 0x4b, 0x40, 0x30, 0x33, 0x39, 0x2a, 0x2d, 0x4e, 0x77, 0x7a, 0x75, 0x72, 0x78, 0x7f, 0x82, 0x86, 0x75, 0x5f, 0x4f, 0x4b, 0x50, 0x5c, 0x66, 0x67, 0x5b, 0x4c, 0x49, 0x45, 0x3f, 0x31, 0x1e, 0x20, 0x20, 0x28, 0x32, 0x37, 0x38, 0x37, 0x36, 0x35, 0x32, 0x34, 0x37, 0x37, 0x36, 0x33, 0x30, 0x2f, 0x2f, 0x28, 0x20, 0x1e, 0x21, 0x26, 0x27, 0x27, 0x24, 0x24, 0x26, 0x26, 0x20, 0x1b, 0x1f, 0x27, 0x32, 0x34, 0x2c, 0x24, 0x24, 0x22, 0x1e, 0x1f, 0x1b, 0x1d, 0x26, 0x25, 0x24, 0x20, 0x1e, 0x2f, 0x33, 0x46, 0x4c, 0x4e, 0x48, 0x45, 0x5c, 0x72, 0x5e, 0x52, 0x4f, 0x54, 0x50, 0x3d, 0x2d, 0x27, 0x42, 0x5a, 0x65, 0x57, 0x43, 0x39, 0x42, 0x54, 0x5f, 0x59, 0x4e, 0x50, 0x4b, 0x41, 0x49, 0x4f, 0x4f, 0x5a, 0x60, 0x4e, 0x32, 0x27, 0x2a, 0x2b, 0x34, 0x54, 0x67, 0x5a, 0x2e, 0x2a, 0x3b, 0x50, 0x58, 0x51, 0x52, 0x61, 0x6d, 0x6d, 0x68, 0x66, 0x60, 0x5b, 0x5c, 0x59, 0x51, 0x4d, 0x47, 0x39, 0x33, 0x3c, 0x4e, 0x59, 0x57, 0x53, 0x4d, 0x42, 0x39, 0x33, 0x2f, 0x31, 0x31, 0x31, 0x37, 0x40, 0x4d, 0x4e, 0x52, 0x57, 0x58, 0x55, 0x52, 0x52, 0x32, 0x2e, 0x25, 0x20, 0x23, 0x2b, 0x2e, 0x2b, 0x27, 0x26, 0x25, 0x25, 0x21, 0x1c, 0x19, 0x19, 0x22, 0x24, 0x26, 0x28, 0x28, 0x26, 0x23, 0x22, 0x18, 0x18, 0x1c, 0x21, 0x23, 0x23, 0x24, 0x26, 0x23, 0x23, 0x21, 0x1f, 0x20, 0x22, 0x21, 0x1f, 0x21, 0x22, 0x24, 0x25, 0x27, 0x29, 0x2b, 0x2c, 0x32, 0x2f, 0x2a, 0x24, 0x21, 0x20, 0x20, 0x21, 0x24, 0x26, 0x25, 0x22, 0x20, 0x1e, 0x1a, 0x15, 0x16, 0x18, 0x1b, 0x1d, 0x1f, 0x1f, 0x1f, 0x1f, 0x1d, 0x1b, 0x19, 0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x1c, 0x1a, 0x1b, 0x1e, 0x20, 0x1c, 0x19, 0x17, 0x18, 0x1c, 0x21, 0x26, 0x29, 0x2b, 0x2d, 0x2e, 0x30, 0x33, 0x35, 0x30, 0x28, 0x21, 0x1f, 0x20, 0x1f, 0x21, 0x24, 0x26, 0x27, 0x28, 0x2b, 0x2d, 0x2d, 0x30, 0x33, 0x33, 0x32, 0x30, 0x30, 0x31, 0x30, 0x2f, 0x2f, 0x31, 0x33, 0x33, 0x31, 0x2f, 0x2a, 0x29, 0x2a, 0x2c, 0x2e, 0x30, 0x32, 0x34, 0x33, 0x34, 0x32, 0x34, 0x3a, 0x39, 0x3c, 0x46, 0x4a, 0x4a, 0x4a, 0x4d, 0x53, 0x5b, 0x62, 0x66, 0x5f, 0x64, 0x61, 0x59, 0x58, 0x5e, 0x5a, 0x4e, 0x38, 0x29, 0x24, 0x2b, 0x30, 0x31, 0x2f, 0x29, 0x23, 0x1f, 0x1a, 0x19, 0x1a, 0x1c, 0x1b, 0x1a, 0x1d, 0x1d, 0x1c, 0x1b, 0x1a, 0x1a, 0x1a, 0x19, 0x1e, 0x1d, 0x1b, 0x19, 0x1a, 0x1d, 0x21, 0x24, 0x2a, 0x2b, 0x2a, 0x27, 0x28, 0x2d, 0x30, 0x30, 0x32, 0x2f, 0x2d, 0x30, 0x35, 0x37, 0x3a, 0x3c, 0x3d, 0x44, 0x4c, 0x51, 0x54, 0x54, 0x4f, 0x49, 0x50, 0x5b, 0x65, 0x65, 0x5b, 0x52, 0x4e, 0x4e, 0x55, 0x5e, 0x5e, 0x50, 0x42, 0x3a, 0x33, 0x2c, 0x2e, 0x2e, 0x35, 0x40, 0x45, 0x41, 0x3e, 0x3f, 0x42, 0x44, 0x47, 0x4c, 0x4e, 0x4b, 0x44, 0x3e, 0x33, 0x39, 0x44, 0x4f, 0x58, 0x5c, 0x5d, 0x5d, 0x4b, 0x51, 0x54, 0x50, 0x49, 0x4d, 0x60, 0x72, 0x6f, 0x74, 0x78, 0x77, 0x75, 0x71, 0x69, 0x62, 0x62, 0x62, 0x61, 0x5e, 0x5b, 0x5b, 0x5c, 0x5d, 0x6e, 0x79, 0x7e, 0x7e, 0x81, 0x80, 0x7f, 0x83, 0x89, 0x8d, 0x92, 0x95, 0x97, 0x98, 0x9b, 0x9d, 0x9e, 0xa2, 0xa7, 0xab, 0xae, 0xaf, 0xb0, 0xb1, 0xaf, 0xae, 0xad, 0xac, 0xac, 0xab, 0xaa, 0xa9, 0xa6, 0xa5, 0xa2, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0xa1, 0xa5, 0xa2, 0xa0, 0x9f, 0x9f, 0x98, 0x8d, 0x84, 0x6d, 0x66, 0x5c, 0x52, 0x4a, 0x42, 0x3a, 0x35, 0x33, 0x32, 0x2f, 0x29, 0x25, 0x2e, 0x48, 0x60, 0x5f, 0x5c, 0x5b, 0x5c, 0x5c, 0x5b, 0x5d, 0x60, 0x64, 0x66, 0x68, 0x6c, 0x6f, 0x72, 0x74, 0x75, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x70, 0x6d, 0x6c, 0x69, 0x66, 0x64, 0x61, 0x5d, 0x59, 0x56, 0x56, 0x55, 0x54, 0x56, 0x57, 0x57, 0x56, 0x53, 0x56, 0x54, 0x53, 0x52, 0x53, 0x55, 0x58, 0x5a, 0x5b, 0x5b, 0x5c, 0x5e, 0x60, 0x63, 0x65, 0x67, 0x64, 0x67, 0x6a, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x69, 0x61, 0x59, 0x63, 0x6f, 0x78, 0x7c, 0x82, 0x86, 0x7e, 0x70, 0x6e, 0x64, 0x62, 0x61, 0x52, 0x43, 0x3f, 0x3f, 0x2d, 0x22, 0x1f, 0x2d, 0x3f, 0x46, 0x43, 0x41, 0x38, 0x3a, 0x31, 0x32, 0x3c, 0x37, 0x3b, 0x54, 0x76, 0x80, 0x80, 0x76, 0x6c, 0x62, 0x5e, 0x63, 0x6f, 0x64, 0x55, 0x48, 0x48, 0x5d, 0x71, 0x74, 0x61, 0x52, 0x4d, 0x49, 0x4b, 0x4c, 0x3b, 0x30, 0x28, 0x2d, 0x34, 0x3a, 0x3c, 0x3e, 0x42, 0x46, 0x3d, 0x3d, 0x3d, 0x3b, 0x37, 0x34, 0x32, 0x31, 0x36, 0x2d, 0x22, 0x1c, 0x1c, 0x20, 0x22, 0x23, 0x26, 0x26, 0x26, 0x23, 0x19, 0x14, 0x1c, 0x28, 0x31, 0x35, 0x2f, 0x26, 0x25, 0x24, 0x20, 0x21, 0x1d, 0x1d, 0x24, 0x25, 0x26, 0x22, 0x20, 0x33, 0x3b, 0x47, 0x47, 0x4d, 0x50, 0x4e, 0x5a, 0x63, 0x5e, 0x58, 0x58, 0x5a, 0x51, 0x3d, 0x30, 0x2d, 0x4c, 0x5b, 0x5e, 0x50, 0x43, 0x3f, 0x4a, 0x5c, 0x61, 0x5c, 0x51, 0x52, 0x4b, 0x40, 0x48, 0x4e, 0x4f, 0x52, 0x4f, 0x38, 0x1c, 0x17, 0x25, 0x2e, 0x3e, 0x5a, 0x60, 0x4f, 0x22, 0x2c, 0x43, 0x5d, 0x68, 0x66, 0x64, 0x64, 0x69, 0x6c, 0x69, 0x63, 0x5c, 0x56, 0x52, 0x52, 0x53, 0x55, 0x4e, 0x42, 0x2a, 0x39, 0x4f, 0x5a, 0x55, 0x51, 0x4f, 0x48, 0x3b, 0x34, 0x30, 0x30, 0x32, 0x33, 0x37, 0x3c, 0x4c, 0x47, 0x46, 0x4d, 0x55, 0x57, 0x57, 0x57, 0x32, 0x35, 0x32, 0x2b, 0x2c, 0x32, 0x33, 0x2e, 0x2a, 0x28, 0x26, 0x24, 0x20, 0x1b, 0x1a, 0x1c, 0x20, 0x21, 0x23, 0x27, 0x2a, 0x2d, 0x2e, 0x2d, 0x1f, 0x1f, 0x21, 0x25, 0x27, 0x27, 0x27, 0x29, 0x23, 0x23, 0x21, 0x20, 0x22, 0x25, 0x25, 0x22, 0x25, 0x27, 0x2b, 0x2d, 0x2d, 0x2c, 0x2b, 0x2b, 0x2b, 0x29, 0x27, 0x25, 0x25, 0x27, 0x29, 0x2b, 0x2e, 0x2b, 0x24, 0x1d, 0x1a, 0x19, 0x16, 0x12, 0x17, 0x18, 0x1a, 0x1b, 0x1d, 0x1e, 0x1f, 0x1f, 0x1f, 0x1e, 0x1c, 0x1a, 0x1a, 0x1b, 0x1d, 0x1f, 0x22, 0x1d, 0x1a, 0x1c, 0x1d, 0x1b, 0x17, 0x14, 0x17, 0x1a, 0x1f, 0x24, 0x26, 0x28, 0x2a, 0x2b, 0x32, 0x34, 0x34, 0x2f, 0x27, 0x21, 0x1f, 0x21, 0x1d, 0x1e, 0x22, 0x26, 0x2a, 0x2e, 0x31, 0x32, 0x30, 0x30, 0x30, 0x30, 0x2f, 0x2f, 0x30, 0x31, 0x34, 0x32, 0x31, 0x31, 0x32, 0x32, 0x30, 0x2e, 0x2e, 0x2b, 0x29, 0x2a, 0x29, 0x27, 0x26, 0x27, 0x2d, 0x2e, 0x2b, 0x2e, 0x35, 0x39, 0x42, 0x51, 0x5b, 0x5d, 0x60, 0x64, 0x66, 0x65, 0x61, 0x5e, 0x54, 0x55, 0x4f, 0x45, 0x44, 0x4c, 0x4c, 0x45, 0x32, 0x29, 0x29, 0x2d, 0x2b, 0x2b, 0x2d, 0x2d, 0x35, 0x2e, 0x25, 0x1e, 0x1b, 0x1c, 0x1f, 0x22, 0x20, 0x21, 0x1f, 0x1c, 0x1a, 0x1a, 0x19, 0x17, 0x18, 0x19, 0x18, 0x17, 0x17, 0x1a, 0x1f, 0x24, 0x2a, 0x2a, 0x29, 0x26, 0x26, 0x2a, 0x2e, 0x30, 0x34, 0x2f, 0x2c, 0x2d, 0x31, 0x36, 0x3d, 0x43, 0x4d, 0x51, 0x53, 0x53, 0x53, 0x53, 0x50, 0x4c, 0x46, 0x4b, 0x4f, 0x50, 0x54, 0x5c, 0x65, 0x6a, 0x60, 0x5f, 0x57, 0x4a, 0x42, 0x42, 0x43, 0x43, 0x44, 0x42, 0x42, 0x47, 0x4b, 0x4a, 0x46, 0x43, 0x35, 0x36, 0x3a, 0x43, 0x4d, 0x51, 0x4f, 0x4b, 0x4f, 0x55, 0x5e, 0x63, 0x62, 0x5d, 0x58, 0x54, 0x60, 0x63, 0x60, 0x54, 0x47, 0x45, 0x51, 0x5f, 0x69, 0x73, 0x7b, 0x7c, 0x7a, 0x79, 0x75, 0x70, 0x6c, 0x6f, 0x6f, 0x6d, 0x6d, 0x6e, 0x70, 0x6f, 0x72, 0x7b, 0x7d, 0x7d, 0x80, 0x7e, 0x7e, 0x84, 0x89, 0x8d, 0x92, 0x95, 0x96, 0x97, 0x9a, 0x9c, 0x9e, 0xa2, 0xa6, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xac, 0xaa, 0xa9, 0xa8, 0xa8, 0xa7, 0xa6, 0xa4, 0xa0, 0x9e, 0x9a, 0x98, 0x96, 0x96, 0x95, 0x94, 0x92, 0x92, 0x94, 0x97, 0x97, 0x95, 0x95, 0x96, 0x98, 0x97, 0x97, 0x9b, 0x9f, 0xa0, 0x9d, 0x9a, 0x92, 0x8d, 0x84, 0x7c, 0x75, 0x6d, 0x65, 0x60, 0x59, 0x53, 0x4a, 0x3d, 0x33, 0x36, 0x4c, 0x64, 0x66, 0x63, 0x62, 0x62, 0x62, 0x60, 0x61, 0x64, 0x67, 0x68, 0x6a, 0x6d, 0x70, 0x72, 0x74, 0x75, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x74, 0x70, 0x6c, 0x6b, 0x67, 0x64, 0x62, 0x5f, 0x5a, 0x56, 0x56, 0x56, 0x54, 0x52, 0x53, 0x55, 0x54, 0x50, 0x4b, 0x45, 0x43, 0x40, 0x3d, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x44, 0x47, 0x4a, 0x4d, 0x4f, 0x52, 0x55, 0x5a, 0x5e, 0x62, 0x66, 0x69, 0x6c, 0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x74, 0x73, 0x70, 0x6f, 0x6d, 0x6b, 0x6b, 0x6a, 0x64, 0x5d, 0x65, 0x74, 0x7f, 0x7f, 0x7e, 0x7f, 0x7a, 0x70, 0x65, 0x5a, 0x55, 0x52, 0x45, 0x3a, 0x34, 0x2f, 0x2a, 0x21, 0x21, 0x2f, 0x36, 0x31, 0x2f, 0x34, 0x22, 0x2f, 0x32, 0x32, 0x3c, 0x41, 0x44, 0x4f, 0x57, 0x6f, 0x7e, 0x7a, 0x69, 0x57, 0x52, 0x5b, 0x66, 0x6a, 0x6b, 0x62, 0x5e, 0x6c, 0x76, 0x70, 0x5a, 0x4e, 0x44, 0x37, 0x45, 0x66, 0x64, 0x50, 0x36, 0x36, 0x37, 0x3b, 0x3d, 0x3e, 0x40, 0x44, 0x41, 0x40, 0x3d, 0x3b, 0x38, 0x37, 0x35, 0x34, 0x3b, 0x33, 0x28, 0x21, 0x1f, 0x21, 0x24, 0x26, 0x2b, 0x24, 0x1e, 0x1d, 0x1b, 0x1a, 0x20, 0x28, 0x2d, 0x34, 0x33, 0x30, 0x31, 0x2c, 0x26, 0x25, 0x25, 0x1f, 0x21, 0x22, 0x24, 0x23, 0x23, 0x36, 0x41, 0x4d, 0x52, 0x54, 0x4c, 0x47, 0x57, 0x5e, 0x5e, 0x54, 0x4a, 0x43, 0x38, 0x2f, 0x33, 0x3e, 0x52, 0x62, 0x69, 0x61, 0x51, 0x41, 0x40, 0x4d, 0x67, 0x67, 0x5c, 0x59, 0x52, 0x4b, 0x52, 0x54, 0x51, 0x4a, 0x40, 0x32, 0x26, 0x2d, 0x3d, 0x43, 0x55, 0x5e, 0x54, 0x41, 0x1e, 0x2d, 0x48, 0x61, 0x69, 0x69, 0x64, 0x5c, 0x5c, 0x63, 0x64, 0x5f, 0x56, 0x56, 0x55, 0x57, 0x57, 0x4f, 0x3c, 0x2b, 0x29, 0x39, 0x53, 0x60, 0x5c, 0x59, 0x55, 0x4d, 0x46, 0x40, 0x3b, 0x3a, 0x39, 0x38, 0x38, 0x39, 0x3c, 0x39, 0x3b, 0x47, 0x56, 0x60, 0x64, 0x65, 0x2b, 0x30, 0x35, 0x37, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x2a, 0x26, 0x25, 0x24, 0x21, 0x21, 0x23, 0x21, 0x20, 0x20, 0x23, 0x27, 0x2a, 0x2a, 0x29, 0x22, 0x21, 0x21, 0x25, 0x27, 0x27, 0x27, 0x29, 0x27, 0x25, 0x20, 0x1d, 0x1f, 0x24, 0x25, 0x23, 0x24, 0x29, 0x2e, 0x30, 0x2e, 0x29, 0x25, 0x22, 0x21, 0x22, 0x23, 0x25, 0x28, 0x2b, 0x2d, 0x2f, 0x2d, 0x2c, 0x25, 0x1d, 0x17, 0x16, 0x16, 0x15, 0x17, 0x17, 0x17, 0x18, 0x19, 0x1b, 0x1d, 0x1e, 0x1c, 0x1d, 0x1e, 0x1c, 0x1b, 0x1b, 0x1d, 0x1f, 0x25, 0x20, 0x1d, 0x1d, 0x1c, 0x18, 0x15, 0x14, 0x14, 0x17, 0x1d, 0x22, 0x27, 0x2b, 0x2e, 0x30, 0x35, 0x36, 0x35, 0x2f, 0x26, 0x1f, 0x1f, 0x20, 0x1e, 0x1e, 0x1f, 0x23, 0x29, 0x30, 0x34, 0x37, 0x34, 0x32, 0x2e, 0x2c, 0x2b, 0x2c, 0x2d, 0x2d, 0x33, 0x31, 0x2f, 0x2f, 0x2f, 0x2d, 0x29, 0x26, 0x2d, 0x2b, 0x2a, 0x29, 0x25, 0x1f, 0x1f, 0x22, 0x28, 0x2a, 0x29, 0x2c, 0x34, 0x39, 0x44, 0x56, 0x5c, 0x60, 0x65, 0x68, 0x69, 0x68, 0x66, 0x64, 0x67, 0x66, 0x5f, 0x54, 0x4e, 0x4c, 0x47, 0x3f, 0x2f, 0x27, 0x29, 0x2f, 0x2d, 0x2c, 0x2e, 0x2d, 0x34, 0x30, 0x29, 0x21, 0x1d, 0x1d, 0x21, 0x24, 0x23, 0x24, 0x22, 0x1d, 0x1b, 0x1c, 0x1b, 0x18, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1d, 0x1f, 0x21, 0x24, 0x24, 0x22, 0x23, 0x28, 0x2d, 0x2e, 0x2f, 0x2c, 0x2b, 0x2c, 0x2e, 0x32, 0x38, 0x3f, 0x4b, 0x50, 0x54, 0x55, 0x55, 0x55, 0x52, 0x4f, 0x50, 0x4d, 0x45, 0x3d, 0x3d, 0x45, 0x4e, 0x51, 0x52, 0x51, 0x4c, 0x43, 0x3c, 0x3c, 0x43, 0x4a, 0x57, 0x54, 0x50, 0x4b, 0x4a, 0x4a, 0x48, 0x43, 0x43, 0x3f, 0x3f, 0x45, 0x4e, 0x51, 0x4c, 0x46, 0x47, 0x4c, 0x52, 0x56, 0x58, 0x5b, 0x61, 0x65, 0x64, 0x61, 0x58, 0x4c, 0x43, 0x41, 0x45, 0x49, 0x59, 0x6a, 0x7a, 0x7f, 0x80, 0x82, 0x81, 0x7d, 0x7b, 0x7e, 0x7f, 0x7b, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x7d, 0x7d, 0x7d, 0x80, 0x7e, 0x7e, 0x85, 0x8a, 0x8e, 0x92, 0x95, 0x96, 0x97, 0x9a, 0x9c, 0x9e, 0xa0, 0xa4, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xa7, 0xa5, 0xa5, 0xa5, 0xa4, 0xa3, 0xa1, 0x9c, 0x99, 0x95, 0x92, 0x90, 0x8d, 0x8b, 0x89, 0x88, 0x86, 0x87, 0x8a, 0x89, 0x86, 0x85, 0x87, 0x89, 0x8b, 0x8d, 0x90, 0x92, 0x93, 0x91, 0x8f, 0x94, 0x92, 0x8e, 0x8c, 0x8a, 0x87, 0x83, 0x7f, 0x7c, 0x76, 0x6f, 0x68, 0x5e, 0x59, 0x61, 0x6d, 0x6f, 0x6c, 0x6b, 0x6b, 0x6b, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x71, 0x73, 0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x74, 0x70, 0x6d, 0x6c, 0x66, 0x62, 0x60, 0x5d, 0x58, 0x56, 0x56, 0x58, 0x55, 0x52, 0x4f, 0x4b, 0x46, 0x3f, 0x3a, 0x2f, 0x2d, 0x2a, 0x28, 0x26, 0x26, 0x26, 0x26, 0x28, 0x28, 0x29, 0x2b, 0x2e, 0x32, 0x35, 0x37, 0x3e, 0x41, 0x46, 0x4b, 0x51, 0x57, 0x5c, 0x60, 0x65, 0x67, 0x6a, 0x6e, 0x72, 0x75, 0x77, 0x78, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x74, 0x72, 0x71, 0x70, 0x6e, 0x6b, 0x6b, 0x6b, 0x66, 0x61, 0x66, 0x73, 0x7c, 0x7c, 0x78, 0x75, 0x6c, 0x62, 0x56, 0x4e, 0x4b, 0x49, 0x43, 0x3d, 0x35, 0x2a, 0x23, 0x1f, 0x23, 0x2b, 0x2b, 0x24, 0x22, 0x27, 0x29, 0x35, 0x3d, 0x3e, 0x46, 0x53, 0x5c, 0x5e, 0x65, 0x74, 0x7d, 0x7d, 0x78, 0x6d, 0x67, 0x6d, 0x60, 0x66, 0x6e, 0x70, 0x70, 0x78, 0x79, 0x70, 0x54, 0x3e, 0x31, 0x24, 0x2f, 0x50, 0x53, 0x42, 0x33, 0x30, 0x31, 0x37, 0x3c, 0x3c, 0x3a, 0x3a, 0x3d, 0x3b, 0x39, 0x38, 0x3a, 0x3a, 0x39, 0x38, 0x37, 0x32, 0x2c, 0x25, 0x22, 0x23, 0x26, 0x28, 0x28, 0x1e, 0x17, 0x18, 0x1b, 0x1c, 0x20, 0x25, 0x2d, 0x33, 0x36, 0x37, 0x37, 0x2f, 0x27, 0x28, 0x29, 0x20, 0x20, 0x23, 0x2a, 0x2a, 0x2a, 0x3e, 0x3e, 0x4d, 0x58, 0x53, 0x38, 0x33, 0x4f, 0x5b, 0x4c, 0x48, 0x46, 0x42, 0x39, 0x2f, 0x30, 0x38, 0x52, 0x64, 0x70, 0x6b, 0x52, 0x36, 0x34, 0x46, 0x69, 0x6f, 0x65, 0x5c, 0x57, 0x58, 0x60, 0x5b, 0x50, 0x43, 0x37, 0x2e, 0x2c, 0x3a, 0x4b, 0x50, 0x5e, 0x52, 0x40, 0x32, 0x23, 0x32, 0x49, 0x5b, 0x5d, 0x5c, 0x5c, 0x5d, 0x61, 0x66, 0x66, 0x63, 0x59, 0x5c, 0x5a, 0x55, 0x50, 0x42, 0x2f, 0x23, 0x34, 0x3e, 0x51, 0x5c, 0x5b, 0x5a, 0x55, 0x4b, 0x34, 0x35, 0x38, 0x3b, 0x3b, 0x3b, 0x3b, 0x3d, 0x49, 0x4c, 0x51, 0x58, 0x62, 0x68, 0x69, 0x66, 0x1f, 0x24, 0x2f, 0x3a, 0x39, 0x33, 0x33, 0x38, 0x32, 0x2b, 0x26, 0x26, 0x28, 0x29, 0x28, 0x29, 0x26, 0x24, 0x23, 0x23, 0x24, 0x24, 0x20, 0x1d, 0x1f, 0x1d, 0x1d, 0x21, 0x24, 0x24, 0x26, 0x28, 0x2b, 0x27, 0x1f, 0x1a, 0x1b, 0x20, 0x22, 0x20, 0x21, 0x26, 0x2b, 0x2d, 0x28, 0x21, 0x1a, 0x16, 0x24, 0x25, 0x27, 0x28, 0x29, 0x29, 0x28, 0x28, 0x22, 0x25, 0x24, 0x1e, 0x17, 0x15, 0x15, 0x15, 0x15, 0x14, 0x14, 0x14, 0x16, 0x18, 0x1b, 0x1d, 0x19, 0x1c, 0x1e, 0x1e, 0x1b, 0x1b, 0x1d, 0x1f, 0x25, 0x22, 0x21, 0x20, 0x1c, 0x17, 0x14, 0x15, 0x14, 0x18, 0x1d, 0x22, 0x27, 0x2b, 0x2f, 0x32, 0x37, 0x38, 0x36, 0x2e, 0x25, 0x1e, 0x1d, 0x1f, 0x21, 0x1f, 0x1e, 0x21, 0x27, 0x2e, 0x35, 0x38, 0x3a, 0x35, 0x2f, 0x2c, 0x2b, 0x2d, 0x2e, 0x2e, 0x30, 0x2f, 0x2d, 0x2d, 0x2c, 0x29, 0x23, 0x1f, 0x26, 0x27, 0x29, 0x28, 0x22, 0x1c, 0x1e, 0x25, 0x26, 0x2b, 0x2d, 0x31, 0x37, 0x39, 0x43, 0x53, 0x51, 0x53, 0x55, 0x55, 0x55, 0x5a, 0x61, 0x68, 0x6d, 0x6f, 0x6d, 0x67, 0x5f, 0x57, 0x4a, 0x40, 0x31, 0x24, 0x23, 0x2e, 0x34, 0x35, 0x30, 0x28, 0x22, 0x23, 0x22, 0x1f, 0x1b, 0x1a, 0x1c, 0x1f, 0x22, 0x23, 0x21, 0x1b, 0x19, 0x1a, 0x19, 0x16, 0x16, 0x17, 0x19, 0x1b, 0x1d, 0x1c, 0x1b, 0x19, 0x1b, 0x1f, 0x22, 0x22, 0x24, 0x29, 0x2e, 0x2f, 0x2b, 0x2c, 0x2f, 0x32, 0x32, 0x31, 0x33, 0x37, 0x39, 0x42, 0x4c, 0x52, 0x56, 0x56, 0x52, 0x4d, 0x4a, 0x4d, 0x4c, 0x47, 0x44, 0x43, 0x3f, 0x3a, 0x43, 0x48, 0x4d, 0x4c, 0x43, 0x3e, 0x44, 0x4e, 0x50, 0x51, 0x4d, 0x45, 0x42, 0x44, 0x43, 0x3f, 0x46, 0x43, 0x43, 0x4c, 0x56, 0x58, 0x51, 0x48, 0x3b, 0x3d, 0x3e, 0x3e, 0x43, 0x51, 0x64, 0x72, 0x74, 0x6a, 0x5d, 0x53, 0x50, 0x50, 0x4d, 0x48, 0x55, 0x69, 0x7d, 0x85, 0x85, 0x87, 0x85, 0x81, 0x83, 0x86, 0x86, 0x80, 0x7c, 0x7a, 0x77, 0x73, 0x7a, 0x7e, 0x7e, 0x7d, 0x80, 0x7e, 0x7f, 0x87, 0x8b, 0x8f, 0x93, 0x96, 0x96, 0x97, 0x99, 0x9c, 0x9d, 0x9f, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4, 0xa5, 0xa7, 0xa5, 0xa3, 0xa3, 0xa3, 0xa3, 0xa1, 0x9f, 0x9a, 0x97, 0x92, 0x8f, 0x8c, 0x89, 0x85, 0x82, 0x81, 0x7e, 0x7d, 0x80, 0x80, 0x7e, 0x7e, 0x80, 0x7e, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x89, 0x8b, 0x8a, 0x89, 0x87, 0x88, 0x89, 0x88, 0x84, 0x81, 0x85, 0x83, 0x86, 0x8a, 0x87, 0x7e, 0x79, 0x7b, 0x75, 0x73, 0x72, 0x73, 0x72, 0x71, 0x72, 0x74, 0x73, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x7e, 0x7b, 0x78, 0x76, 0x73, 0x71, 0x6f, 0x6c, 0x66, 0x61, 0x5f, 0x5c, 0x58, 0x56, 0x58, 0x56, 0x54, 0x4f, 0x47, 0x3d, 0x33, 0x2a, 0x26, 0x21, 0x20, 0x1e, 0x1d, 0x1c, 0x1d, 0x1d, 0x1e, 0x1e, 0x1e, 0x1f, 0x20, 0x23, 0x26, 0x29, 0x2b, 0x2f, 0x32, 0x35, 0x3a, 0x40, 0x46, 0x4c, 0x51, 0x5a, 0x5d, 0x63, 0x69, 0x6f, 0x73, 0x76, 0x77, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x72, 0x72, 0x71, 0x6e, 0x6b, 0x6b, 0x6b, 0x68, 0x63, 0x6d, 0x72, 0x75, 0x75, 0x72, 0x69, 0x58, 0x48, 0x46, 0x48, 0x51, 0x59, 0x59, 0x53, 0x43, 0x2e, 0x20, 0x23, 0x28, 0x2b, 0x29, 0x24, 0x22, 0x23, 0x32, 0x37, 0x3e, 0x40, 0x46, 0x59, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x74, 0x84, 0x87, 0x7f, 0x7b, 0x79, 0x6e, 0x66, 0x63, 0x60, 0x64, 0x67, 0x63, 0x46, 0x28, 0x26, 0x2f, 0x39, 0x44, 0x3f, 0x37, 0x21, 0x1f, 0x24, 0x31, 0x3c, 0x3f, 0x3d, 0x3b, 0x36, 0x34, 0x34, 0x36, 0x3b, 0x3d, 0x3c, 0x3a, 0x2e, 0x2d, 0x2a, 0x26, 0x22, 0x22, 0x24, 0x27, 0x23, 0x1d, 0x19, 0x19, 0x19, 0x19, 0x1e, 0x25, 0x2f, 0x32, 0x33, 0x33, 0x33, 0x29, 0x22, 0x27, 0x27, 0x1e, 0x21, 0x27, 0x31, 0x33, 0x31, 0x43, 0x49, 0x4f, 0x56, 0x50, 0x35, 0x35, 0x54, 0x5b, 0x56, 0x50, 0x4a, 0x44, 0x39, 0x30, 0x32, 0x3a, 0x53, 0x60, 0x67, 0x5b, 0x3f, 0x29, 0x38, 0x5c, 0x65, 0x6f, 0x65, 0x58, 0x55, 0x5c, 0x65, 0x5d, 0x55, 0x49, 0x3e, 0x34, 0x32, 0x41, 0x58, 0x62, 0x55, 0x3d, 0x2b, 0x27, 0x29, 0x36, 0x46, 0x50, 0x4a, 0x49, 0x4f, 0x5d, 0x66, 0x65, 0x60, 0x5d, 0x60, 0x5e, 0x50, 0x41, 0x3d, 0x3c, 0x3e, 0x43, 0x41, 0x42, 0x4b, 0x52, 0x53, 0x54, 0x4f, 0x44, 0x35, 0x3a, 0x40, 0x41, 0x3d, 0x37, 0x36, 0x37, 0x4a, 0x53, 0x5c, 0x62, 0x66, 0x68, 0x66, 0x62, 0x1c, 0x23, 0x2c, 0x33, 0x39, 0x3b, 0x37, 0x32, 0x34, 0x30, 0x2d, 0x2f, 0x37, 0x3c, 0x39, 0x33, 0x2f, 0x30, 0x30, 0x2c, 0x27, 0x24, 0x20, 0x1c, 0x16, 0x19, 0x1f, 0x24, 0x24, 0x1f, 0x1c, 0x1d, 0x22, 0x25, 0x25, 0x20, 0x1d, 0x1e, 0x22, 0x25, 0x26, 0x27, 0x28, 0x2b, 0x2c, 0x2b, 0x29, 0x27, 0x2a, 0x29, 0x27, 0x27, 0x27, 0x27, 0x27, 0x27, 0x24, 0x22, 0x21, 0x20, 0x1c, 0x17, 0x14, 0x15, 0x14, 0x13, 0x13, 0x16, 0x17, 0x18, 0x1d, 0x22, 0x1e, 0x1e, 0x1d, 0x1d, 0x1c, 0x1d, 0x1d, 0x1e, 0x20, 0x23, 0x25, 0x22, 0x1d, 0x18, 0x15, 0x16, 0x15, 0x15, 0x1b, 0x24, 0x29, 0x2b, 0x2e, 0x31, 0x35, 0x39, 0x38, 0x31, 0x27, 0x22, 0x1f, 0x1e, 0x21, 0x1e, 0x1c, 0x1e, 0x23, 0x28, 0x2e, 0x32, 0x34, 0x36, 0x33, 0x2b, 0x26, 0x28, 0x2c, 0x2e, 0x2c, 0x2b, 0x2b, 0x2c, 0x2d, 0x2b, 0x26, 0x22, 0x22, 0x23, 0x2a, 0x32, 0x33, 0x2b, 0x24, 0x21, 0x21, 0x22, 0x26, 0x2c, 0x33, 0x3b, 0x46, 0x50, 0x46, 0x46, 0x45, 0x45, 0x47, 0x4c, 0x54, 0x5b, 0x57, 0x5a, 0x5a, 0x59, 0x60, 0x63, 0x55, 0x40, 0x2c, 0x25, 0x22, 0x23, 0x26, 0x2c, 0x2b, 0x20, 0x1c, 0x1a, 0x18, 0x18, 0x19, 0x1b, 0x1d, 0x1e, 0x21, 0x22, 0x21, 0x1e, 0x1b, 0x19, 0x19, 0x1a, 0x19, 0x18, 0x16, 0x17, 0x19, 0x1a, 0x18, 0x17, 0x1d, 0x1f, 0x22, 0x24, 0x22, 0x21, 0x28, 0x2f, 0x2e, 0x2e, 0x2e, 0x2f, 0x31, 0x35, 0x3a, 0x3e, 0x47, 0x41, 0x40, 0x48, 0x53, 0x57, 0x56, 0x53, 0x53, 0x54, 0x55, 0x56, 0x53, 0x4e, 0x46, 0x41, 0x4d, 0x57, 0x53, 0x4d, 0x52, 0x54, 0x56, 0x60, 0x54, 0x48, 0x43, 0x48, 0x4a, 0x45, 0x44, 0x4a, 0x4e, 0x52, 0x54, 0x56, 0x5d, 0x65, 0x63, 0x5d, 0x5d, 0x58, 0x54, 0x53, 0x53, 0x59, 0x66, 0x73, 0x7a, 0x74, 0x69, 0x5b, 0x4f, 0x49, 0x47, 0x46, 0x53, 0x69, 0x7a, 0x81, 0x8a, 0x8d, 0x88, 0x84, 0x89, 0x89, 0x86, 0x83, 0x7d, 0x70, 0x6e, 0x79, 0x7e, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x84, 0x88, 0x8e, 0x8f, 0x92, 0x93, 0x94, 0x96, 0x98, 0x9a, 0x9b, 0x9d, 0x9e, 0xa0, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0x9f, 0x9d, 0x9c, 0x9b, 0x9b, 0x96, 0x91, 0x8d, 0x89, 0x84, 0x7d, 0x78, 0x78, 0x76, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x78, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7d, 0x7d, 0x81, 0x7f, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x82, 0x81, 0x84, 0x89, 0x8c, 0x8a, 0x86, 0x80, 0x7c, 0x7c, 0x7e, 0x7d, 0x7b, 0x7b, 0x7d, 0x7d, 0x7b, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7f, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x85, 0x84, 0x83, 0x80, 0x7f, 0x7c, 0x7a, 0x77, 0x74, 0x70, 0x6d, 0x68, 0x66, 0x63, 0x61, 0x5f, 0x5c, 0x59, 0x56, 0x50, 0x58, 0x4b, 0x35, 0x27, 0x1a, 0x14, 0x1b, 0x15, 0x16, 0x18, 0x1a, 0x1b, 0x1a, 0x1a, 0x19, 0x18, 0x1d, 0x1e, 0x1c, 0x1f, 0x26, 0x27, 0x23, 0x23, 0x28, 0x2f, 0x35, 0x38, 0x3b, 0x3e, 0x40, 0x4d, 0x52, 0x59, 0x60, 0x66, 0x6a, 0x6e, 0x70, 0x73, 0x78, 0x79, 0x73, 0x72, 0x76, 0x77, 0x74, 0x75, 0x6d, 0x6b, 0x6c, 0x69, 0x6a, 0x6d, 0x6a, 0x68, 0x74, 0x74, 0x6a, 0x5e, 0x4d, 0x3e, 0x38, 0x40, 0x49, 0x50, 0x4f, 0x4a, 0x45, 0x3e, 0x36, 0x2a, 0x24, 0x21, 0x25, 0x29, 0x29, 0x29, 0x2b, 0x3d, 0x3f, 0x36, 0x32, 0x41, 0x4c, 0x55, 0x63, 0x73, 0x74, 0x76, 0x72, 0x6c, 0x75, 0x82, 0x85, 0x86, 0x73, 0x61, 0x54, 0x4f, 0x52, 0x55, 0x4f, 0x3b, 0x37, 0x37, 0x3c, 0x42, 0x43, 0x40, 0x3f, 0x2b, 0x1e, 0x1a, 0x2d, 0x34, 0x2d, 0x2f, 0x2b, 0x21, 0x22, 0x25, 0x29, 0x2a, 0x28, 0x29, 0x2c, 0x27, 0x28, 0x28, 0x27, 0x28, 0x2a, 0x2a, 0x28, 0x27, 0x2a, 0x2f, 0x30, 0x2a, 0x22, 0x20, 0x22, 0x2a, 0x21, 0x1e, 0x23, 0x27, 0x26, 0x25, 0x27, 0x20, 0x1a, 0x1d, 0x27, 0x2c, 0x2c, 0x31, 0x3a, 0x4c, 0x52, 0x56, 0x4a, 0x3b, 0x41, 0x54, 0x5d, 0x52, 0x52, 0x52, 0x43, 0x33, 0x29, 0x2a, 0x41, 0x4e, 0x5b, 0x5c, 0x58, 0x42, 0x2d, 0x3f, 0x5c, 0x72, 0x6b, 0x61, 0x5c, 0x5e, 0x62, 0x63, 0x61, 0x56, 0x48, 0x39, 0x2c, 0x3d, 0x61, 0x6c, 0x6d, 0x70, 0x73, 0x61, 0x43, 0x34, 0x32, 0x2e, 0x2b, 0x24, 0x44, 0x64, 0x6e, 0x6d, 0x6a, 0x61, 0x57, 0x53, 0x53, 0x4a, 0x47, 0x4a, 0x43, 0x43, 0x54, 0x4f, 0x43, 0x3e, 0x46, 0x4d, 0x4b, 0x45, 0x41, 0x3c, 0x44, 0x49, 0x3a, 0x2d, 0x29, 0x2b, 0x3e, 0x4d, 0x5d, 0x5e, 0x5e, 0x5e, 0x61, 0x64, 0x57, 0x1d, 0x1f, 0x20, 0x23, 0x2a, 0x33, 0x38, 0x38, 0x2f, 0x2d, 0x2b, 0x2b, 0x2d, 0x30, 0x30, 0x2f, 0x2d, 0x2c, 0x29, 0x28, 0x29, 0x2a, 0x26, 0x20, 0x17, 0x16, 0x16, 0x19, 0x19, 0x18, 0x18, 0x1a, 0x1d, 0x1e, 0x1c, 0x19, 0x1a, 0x1e, 0x22, 0x23, 0x20, 0x21, 0x24, 0x27, 0x2a, 0x2b, 0x29, 0x28, 0x23, 0x23, 0x24, 0x27, 0x29, 0x29, 0x27, 0x24, 0x23, 0x20, 0x1f, 0x1f, 0x1c, 0x17, 0x14, 0x14, 0x16, 0x14, 0x14, 0x16, 0x16, 0x17, 0x1a, 0x1f, 0x1f, 0x1e, 0x1d, 0x1b, 0x1b, 0x1a, 0x1b, 0x1b, 0x20, 0x23, 0x25, 0x24, 0x1f, 0x1a, 0x16, 0x14, 0x14, 0x14, 0x17, 0x1f, 0x24, 0x27, 0x2b, 0x2f, 0x35, 0x37, 0x36, 0x2e, 0x27, 0x23, 0x22, 0x21, 0x21, 0x20, 0x20, 0x24, 0x28, 0x2c, 0x2e, 0x2f, 0x2b, 0x2d, 0x2c, 0x28, 0x25, 0x28, 0x2a, 0x2a, 0x2f, 0x30, 0x31, 0x33, 0x33, 0x2f, 0x2a, 0x25, 0x25, 0x24, 0x27, 0x2d, 0x2f, 0x2b, 0x26, 0x24, 0x26, 0x24, 0x24, 0x26, 0x2a, 0x31, 0x3c, 0x46, 0x51, 0x58, 0x61, 0x66, 0x64, 0x5f, 0x59, 0x56, 0x4d, 0x46, 0x43, 0x4b, 0x52, 0x50, 0x4a, 0x47, 0x38, 0x2b, 0x24, 0x22, 0x21, 0x23, 0x23, 0x1b, 0x1c, 0x1b, 0x1a, 0x1b, 0x1c, 0x1e, 0x20, 0x20, 0x24, 0x25, 0x25, 0x22, 0x1e, 0x1b, 0x1b, 0x1c, 0x19, 0x18, 0x17, 0x18, 0x19, 0x1a, 0x1a, 0x19, 0x1c, 0x1d, 0x20, 0x22, 0x22, 0x22, 0x28, 0x2f, 0x2f, 0x2f, 0x2f, 0x30, 0x33, 0x37, 0x3c, 0x3f, 0x40, 0x3c, 0x3f, 0x4d, 0x5e, 0x67, 0x69, 0x68, 0x55, 0x53, 0x52, 0x52, 0x52, 0x50, 0x4b, 0x46, 0x5a, 0x61, 0x59, 0x4e, 0x51, 0x53, 0x59, 0x65, 0x71, 0x67, 0x5a, 0x4e, 0x46, 0x45, 0x4a, 0x4f, 0x57, 0x59, 0x58, 0x55, 0x52, 0x4f, 0x4b, 0x47, 0x4f, 0x4f, 0x53, 0x59, 0x5b, 0x5c, 0x5f, 0x64, 0x64, 0x61, 0x5a, 0x4f, 0x45, 0x3e, 0x38, 0x34, 0x44, 0x5d, 0x74, 0x80, 0x8a, 0x90, 0x90, 0x90, 0x8b, 0x89, 0x82, 0x7c, 0x75, 0x6b, 0x6e, 0x7d, 0x80, 0x7f, 0x7f, 0x81, 0x81, 0x81, 0x83, 0x87, 0x8b, 0x8d, 0x8f, 0x91, 0x92, 0x93, 0x96, 0x97, 0x9a, 0x9b, 0x9c, 0x9e, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9d, 0x9c, 0x9d, 0x9a, 0x96, 0x92, 0x8e, 0x87, 0x7e, 0x77, 0x72, 0x6f, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6f, 0x70, 0x70, 0x6f, 0x75, 0x74, 0x76, 0x7b, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x84, 0x86, 0x85, 0x83, 0x83, 0x85, 0x85, 0x83, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x84, 0x85, 0x86, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7c, 0x7a, 0x76, 0x72, 0x6f, 0x6c, 0x6a, 0x68, 0x65, 0x64, 0x61, 0x5f, 0x5d, 0x59, 0x4f, 0x3a, 0x27, 0x1d, 0x16, 0x14, 0x17, 0x19, 0x19, 0x19, 0x18, 0x18, 0x17, 0x16, 0x16, 0x18, 0x1a, 0x19, 0x17, 0x1b, 0x23, 0x24, 0x21, 0x1e, 0x20, 0x24, 0x27, 0x2b, 0x30, 0x36, 0x3a, 0x3d, 0x42, 0x4a, 0x52, 0x59, 0x61, 0x68, 0x6c, 0x6c, 0x72, 0x74, 0x71, 0x71, 0x76, 0x77, 0x74, 0x72, 0x6d, 0x6c, 0x6c, 0x67, 0x68, 0x6c, 0x6a, 0x68, 0x6a, 0x64, 0x59, 0x4b, 0x3a, 0x33, 0x3a, 0x45, 0x46, 0x43, 0x3d, 0x3a, 0x39, 0x32, 0x2a, 0x24, 0x25, 0x26, 0x26, 0x22, 0x20, 0x24, 0x2a, 0x2f, 0x3a, 0x33, 0x2c, 0x3f, 0x58, 0x67, 0x6f, 0x81, 0x82, 0x81, 0x76, 0x65, 0x5e, 0x5e, 0x59, 0x67, 0x64, 0x64, 0x61, 0x59, 0x55, 0x4e, 0x41, 0x42, 0x3d, 0x39, 0x39, 0x3a, 0x39, 0x38, 0x39, 0x2a, 0x27, 0x1e, 0x1f, 0x1f, 0x22, 0x2a, 0x20, 0x1b, 0x1c, 0x1f, 0x22, 0x21, 0x1f, 0x21, 0x24, 0x29, 0x2a, 0x2b, 0x2d, 0x2f, 0x2e, 0x2a, 0x26, 0x2c, 0x38, 0x43, 0x41, 0x31, 0x20, 0x1c, 0x20, 0x26, 0x23, 0x23, 0x25, 0x26, 0x25, 0x24, 0x25, 0x1f, 0x1e, 0x27, 0x34, 0x3a, 0x38, 0x3b, 0x43, 0x4f, 0x52, 0x52, 0x45, 0x38, 0x41, 0x55, 0x5f, 0x59, 0x53, 0x4d, 0x3e, 0x31, 0x26, 0x23, 0x35, 0x45, 0x5a, 0x5e, 0x55, 0x3b, 0x27, 0x40, 0x62, 0x6f, 0x6a, 0x63, 0x5f, 0x5f, 0x5f, 0x5e, 0x5b, 0x51, 0x3b, 0x2e, 0x31, 0x54, 0x79, 0x78, 0x6d, 0x59, 0x54, 0x47, 0x3e, 0x3f, 0x3c, 0x36, 0x35, 0x41, 0x52, 0x61, 0x64, 0x63, 0x63, 0x5f, 0x57, 0x4c, 0x55, 0x53, 0x4e, 0x50, 0x4b, 0x48, 0x50, 0x40, 0x3b, 0x3a, 0x40, 0x41, 0x38, 0x2f, 0x2c, 0x3a, 0x40, 0x43, 0x35, 0x2e, 0x2e, 0x2d, 0x3b, 0x47, 0x55, 0x55, 0x57, 0x5b, 0x5f, 0x61, 0x53, 0x1d, 0x1b, 0x18, 0x17, 0x1e, 0x2a, 0x35, 0x39, 0x2b, 0x2b, 0x2b, 0x28, 0x27, 0x28, 0x2d, 0x31, 0x2f, 0x2c, 0x28, 0x28, 0x2f, 0x34, 0x30, 0x28, 0x1e, 0x1a, 0x18, 0x18, 0x18, 0x17, 0x18, 0x1a, 0x1b, 0x1b, 0x19, 0x19, 0x1e, 0x25, 0x29, 0x29, 0x2a, 0x29, 0x29, 0x2a, 0x2a, 0x29, 0x27, 0x25, 0x1c, 0x1c, 0x1c, 0x1f, 0x22, 0x24, 0x23, 0x22, 0x23, 0x20, 0x1d, 0x1e, 0x1d, 0x19, 0x15, 0x14, 0x18, 0x16, 0x15, 0x16, 0x15, 0x15, 0x17, 0x1b, 0x1e, 0x1d, 0x1b, 0x1a, 0x19, 0x1a, 0x1a, 0x1b, 0x1e, 0x20, 0x23, 0x23, 0x21, 0x1c, 0x17, 0x14, 0x15, 0x15, 0x18, 0x1e, 0x24, 0x29, 0x2f, 0x34, 0x36, 0x36, 0x32, 0x2a, 0x24, 0x22, 0x21, 0x20, 0x21, 0x21, 0x23, 0x29, 0x2f, 0x32, 0x31, 0x2f, 0x28, 0x2a, 0x2a, 0x28, 0x29, 0x2b, 0x2b, 0x2a, 0x2c, 0x2f, 0x33, 0x34, 0x32, 0x2d, 0x29, 0x26, 0x25, 0x21, 0x20, 0x23, 0x26, 0x26, 0x24, 0x23, 0x25, 0x22, 0x1f, 0x1f, 0x22, 0x29, 0x35, 0x3f, 0x47, 0x4f, 0x5b, 0x66, 0x6d, 0x72, 0x75, 0x78, 0x71, 0x68, 0x61, 0x5f, 0x5d, 0x55, 0x4f, 0x4d, 0x40, 0x2e, 0x23, 0x20, 0x1b, 0x1a, 0x1c, 0x1a, 0x1b, 0x1b, 0x1c, 0x1d, 0x1f, 0x20, 0x22, 0x23, 0x23, 0x25, 0x26, 0x23, 0x1e, 0x1b, 0x1b, 0x1c, 0x1a, 0x19, 0x19, 0x19, 0x1b, 0x1c, 0x1c, 0x1c, 0x1d, 0x1c, 0x1d, 0x20, 0x23, 0x25, 0x2a, 0x30, 0x2d, 0x2d, 0x2f, 0x32, 0x38, 0x3f, 0x46, 0x4a, 0x3a, 0x38, 0x3b, 0x47, 0x54, 0x5a, 0x5a, 0x59, 0x59, 0x55, 0x51, 0x52, 0x54, 0x55, 0x52, 0x4f, 0x62, 0x66, 0x5f, 0x55, 0x54, 0x57, 0x5e, 0x69, 0x6b, 0x67, 0x58, 0x43, 0x38, 0x3d, 0x47, 0x4e, 0x5c, 0x5a, 0x58, 0x54, 0x4e, 0x48, 0x47, 0x48, 0x47, 0x45, 0x46, 0x4a, 0x4e, 0x52, 0x57, 0x5b, 0x65, 0x62, 0x5b, 0x51, 0x4b, 0x49, 0x46, 0x43, 0x48, 0x5f, 0x77, 0x83, 0x87, 0x8a, 0x8b, 0x8b, 0x89, 0x87, 0x7e, 0x76, 0x6d, 0x64, 0x6b, 0x7e, 0x83, 0x81, 0x81, 0x82, 0x82, 0x81, 0x83, 0x87, 0x8c, 0x8e, 0x90, 0x92, 0x93, 0x94, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0xa0, 0x9e, 0x9d, 0x9b, 0x97, 0x90, 0x87, 0x80, 0x79, 0x74, 0x6d, 0x66, 0x62, 0x5f, 0x5d, 0x5b, 0x5d, 0x5e, 0x5f, 0x62, 0x65, 0x67, 0x67, 0x67, 0x6b, 0x6b, 0x6d, 0x71, 0x74, 0x74, 0x75, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x86, 0x8b, 0x8e, 0x8c, 0x8d, 0x8c, 0x8a, 0x8a, 0x8c, 0x8c, 0x8a, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x86, 0x87, 0x89, 0x88, 0x88, 0x88, 0x89, 0x89, 0x88, 0x87, 0x87, 0x85, 0x82, 0x80, 0x7d, 0x79, 0x75, 0x72, 0x6f, 0x6c, 0x69, 0x67, 0x66, 0x65, 0x63, 0x62, 0x6a, 0x4b, 0x2e, 0x1f, 0x19, 0x1a, 0x1a, 0x18, 0x1b, 0x1a, 0x18, 0x17, 0x16, 0x17, 0x17, 0x18, 0x1f, 0x1f, 0x1d, 0x1c, 0x22, 0x2b, 0x2e, 0x2c, 0x23, 0x22, 0x21, 0x21, 0x23, 0x27, 0x2e, 0x33, 0x38, 0x3e, 0x46, 0x4d, 0x52, 0x57, 0x5d, 0x61, 0x65, 0x6b, 0x6f, 0x6f, 0x71, 0x75, 0x75, 0x73, 0x6f, 0x6b, 0x6c, 0x6b, 0x65, 0x66, 0x6a, 0x68, 0x65, 0x5e, 0x52, 0x46, 0x38, 0x2a, 0x2f, 0x42, 0x46, 0x43, 0x3c, 0x36, 0x38, 0x3a, 0x35, 0x2b, 0x2e, 0x35, 0x3b, 0x38, 0x2e, 0x29, 0x31, 0x3d, 0x43, 0x47, 0x3e, 0x3f, 0x61, 0x85, 0x8e, 0x86, 0x72, 0x70, 0x77, 0x81, 0x82, 0x79, 0x61, 0x47, 0x46, 0x4f, 0x5c, 0x61, 0x5f, 0x5f, 0x59, 0x4b, 0x41, 0x38, 0x2f, 0x2a, 0x29, 0x2a, 0x2d, 0x32, 0x30, 0x2d, 0x22, 0x20, 0x20, 0x26, 0x30, 0x27, 0x1a, 0x1c, 0x1f, 0x20, 0x1f, 0x1f, 0x24, 0x2b, 0x28, 0x26, 0x25, 0x29, 0x2d, 0x2f, 0x2b, 0x27, 0x2b, 0x30, 0x37, 0x3a, 0x34, 0x29, 0x20, 0x1c, 0x22, 0x26, 0x29, 0x28, 0x26, 0x26, 0x25, 0x23, 0x20, 0x22, 0x2b, 0x39, 0x3f, 0x3f, 0x43, 0x4a, 0x52, 0x51, 0x4d, 0x41, 0x37, 0x42, 0x56, 0x5f, 0x58, 0x4c, 0x43, 0x36, 0x2e, 0x26, 0x20, 0x2e, 0x36, 0x50, 0x57, 0x51, 0x3d, 0x2e, 0x42, 0x5a, 0x60, 0x61, 0x64, 0x66, 0x65, 0x61, 0x5c, 0x59, 0x45, 0x38, 0x35, 0x35, 0x46, 0x5a, 0x5a, 0x59, 0x57, 0x4d, 0x42, 0x43, 0x46, 0x3f, 0x3e, 0x48, 0x61, 0x5f, 0x59, 0x53, 0x52, 0x56, 0x57, 0x57, 0x51, 0x57, 0x50, 0x43, 0x3d, 0x36, 0x2f, 0x2e, 0x36, 0x37, 0x3b, 0x40, 0x3d, 0x38, 0x37, 0x3b, 0x46, 0x45, 0x3f, 0x2d, 0x2a, 0x30, 0x31, 0x3d, 0x44, 0x4d, 0x4b, 0x50, 0x59, 0x5f, 0x60, 0x50, 0x1c, 0x1b, 0x18, 0x18, 0x1d, 0x27, 0x2f, 0x32, 0x28, 0x28, 0x28, 0x26, 0x24, 0x25, 0x2c, 0x34, 0x33, 0x30, 0x2d, 0x2e, 0x34, 0x37, 0x33, 0x2c, 0x22, 0x21, 0x20, 0x1f, 0x1c, 0x19, 0x19, 0x1b, 0x1c, 0x1f, 0x20, 0x22, 0x26, 0x2c, 0x30, 0x30, 0x33, 0x30, 0x2c, 0x29, 0x27, 0x26, 0x25, 0x24, 0x21, 0x20, 0x1d, 0x1a, 0x19, 0x1c, 0x20, 0x24, 0x25, 0x21, 0x1e, 0x20, 0x20, 0x1d, 0x19, 0x17, 0x18, 0x16, 0x15, 0x16, 0x15, 0x13, 0x16, 0x19, 0x1b, 0x1a, 0x19, 0x19, 0x1a, 0x1b, 0x1d, 0x1e, 0x1b, 0x1c, 0x1d, 0x1f, 0x1e, 0x1c, 0x18, 0x15, 0x14, 0x15, 0x19, 0x20, 0x27, 0x2e, 0x34, 0x38, 0x3a, 0x38, 0x33, 0x2b, 0x25, 0x22, 0x20, 0x1d, 0x1f, 0x20, 0x23, 0x28, 0x31, 0x37, 0x37, 0x35, 0x2e, 0x2d, 0x2b, 0x2a, 0x2a, 0x2b, 0x2c, 0x2b, 0x27, 0x2b, 0x2f, 0x30, 0x2c, 0x28, 0x26, 0x26, 0x25, 0x21, 0x1e, 0x1f, 0x23, 0x24, 0x22, 0x21, 0x21, 0x1e, 0x1d, 0x1f, 0x24, 0x2d, 0x3b, 0x46, 0x4d, 0x4f, 0x51, 0x53, 0x57, 0x5e, 0x68, 0x6e, 0x68, 0x6e, 0x6d, 0x65, 0x62, 0x64, 0x5d, 0x52, 0x3d, 0x2a, 0x1f, 0x1e, 0x19, 0x17, 0x1b, 0x1d, 0x1a, 0x1b, 0x1d, 0x1e, 0x1f, 0x20, 0x22, 0x23, 0x22, 0x24, 0x26, 0x24, 0x20, 0x1d, 0x1d, 0x1e, 0x1b, 0x1b, 0x1b, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x1f, 0x1c, 0x1c, 0x20, 0x24, 0x28, 0x2d, 0x31, 0x2d, 0x2d, 0x2e, 0x32, 0x39, 0x41, 0x47, 0x4b, 0x42, 0x43, 0x47, 0x4e, 0x52, 0x52, 0x51, 0x52, 0x5b, 0x55, 0x50, 0x51, 0x56, 0x58, 0x56, 0x52, 0x5c, 0x62, 0x62, 0x5d, 0x5b, 0x5e, 0x63, 0x68, 0x6e, 0x6b, 0x5f, 0x4d, 0x3f, 0x3e, 0x43, 0x46, 0x4e, 0x48, 0x46, 0x4b, 0x4f, 0x4f, 0x51, 0x55, 0x50, 0x4e, 0x4c, 0x4c, 0x4e, 0x55, 0x60, 0x68, 0x77, 0x70, 0x60, 0x50, 0x48, 0x48, 0x49, 0x48, 0x45, 0x56, 0x71, 0x83, 0x89, 0x8e, 0x91, 0x91, 0x87, 0x86, 0x7e, 0x74, 0x6a, 0x62, 0x6b, 0x80, 0x83, 0x81, 0x81, 0x82, 0x82, 0x81, 0x84, 0x87, 0x8c, 0x8e, 0x90, 0x92, 0x93, 0x94, 0x97, 0x98, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x9c, 0x9d, 0x9f, 0xa0, 0xa2, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0xa3, 0xa2, 0x9e, 0x97, 0x93, 0x8e, 0x89, 0x7f, 0x75, 0x6c, 0x64, 0x5d, 0x5a, 0x5b, 0x5a, 0x59, 0x59, 0x5b, 0x5d, 0x5e, 0x5e, 0x62, 0x60, 0x61, 0x63, 0x65, 0x65, 0x68, 0x6c, 0x6c, 0x71, 0x7a, 0x84, 0x8c, 0x92, 0x96, 0x97, 0x92, 0x93, 0x93, 0x90, 0x90, 0x92, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x87, 0x85, 0x82, 0x7f, 0x7b, 0x77, 0x74, 0x71, 0x6f, 0x6b, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x6d, 0x46, 0x2a, 0x22, 0x1f, 0x20, 0x21, 0x19, 0x1e, 0x1d, 0x1b, 0x19, 0x19, 0x1b, 0x1e, 0x1f, 0x1b, 0x1b, 0x1a, 0x1c, 0x24, 0x2d, 0x30, 0x2e, 0x2b, 0x29, 0x26, 0x23, 0x22, 0x23, 0x26, 0x28, 0x30, 0x37, 0x41, 0x49, 0x4d, 0x52, 0x58, 0x5d, 0x62, 0x68, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x71, 0x6e, 0x6a, 0x6a, 0x68, 0x64, 0x66, 0x68, 0x63, 0x5c, 0x54, 0x45, 0x39, 0x31, 0x2c, 0x35, 0x47, 0x46, 0x44, 0x41, 0x3e, 0x41, 0x44, 0x3e, 0x34, 0x33, 0x3c, 0x43, 0x40, 0x37, 0x33, 0x3b, 0x45, 0x41, 0x3c, 0x38, 0x42, 0x5d, 0x73, 0x76, 0x71, 0x67, 0x5f, 0x64, 0x75, 0x84, 0x88, 0x78, 0x62, 0x50, 0x53, 0x57, 0x57, 0x57, 0x5e, 0x5b, 0x4d, 0x3f, 0x34, 0x27, 0x21, 0x21, 0x24, 0x29, 0x2d, 0x2f, 0x27, 0x21, 0x2b, 0x2b, 0x25, 0x29, 0x23, 0x1d, 0x1e, 0x20, 0x21, 0x21, 0x25, 0x30, 0x3b, 0x31, 0x27, 0x1f, 0x1e, 0x23, 0x27, 0x27, 0x26, 0x21, 0x1f, 0x21, 0x27, 0x2b, 0x29, 0x24, 0x20, 0x23, 0x29, 0x2c, 0x29, 0x28, 0x29, 0x26, 0x21, 0x22, 0x21, 0x26, 0x32, 0x3c, 0x42, 0x4a, 0x53, 0x52, 0x4f, 0x4b, 0x40, 0x3a, 0x46, 0x57, 0x5c, 0x4d, 0x41, 0x3a, 0x32, 0x2f, 0x2a, 0x25, 0x35, 0x56, 0x60, 0x56, 0x4b, 0x44, 0x42, 0x52, 0x5e, 0x53, 0x5b, 0x65, 0x6c, 0x6a, 0x62, 0x5a, 0x57, 0x52, 0x53, 0x58, 0x4b, 0x3e, 0x3e, 0x46, 0x5a, 0x65, 0x5f, 0x53, 0x49, 0x3f, 0x37, 0x42, 0x5a, 0x66, 0x64, 0x64, 0x64, 0x63, 0x5f, 0x58, 0x54, 0x5c, 0x59, 0x50, 0x46, 0x3b, 0x2d, 0x1f, 0x18, 0x20, 0x2b, 0x3a, 0x42, 0x3f, 0x3b, 0x40, 0x48, 0x47, 0x45, 0x3f, 0x2e, 0x2d, 0x34, 0x33, 0x3c, 0x45, 0x4b, 0x48, 0x4f, 0x5a, 0x60, 0x60, 0x4f, 0x1c, 0x1c, 0x1a, 0x1a, 0x1e, 0x26, 0x2c, 0x2d, 0x27, 0x24, 0x22, 0x22, 0x20, 0x20, 0x26, 0x2d, 0x31, 0x31, 0x2f, 0x2e, 0x2e, 0x2e, 0x2a, 0x24, 0x1d, 0x1e, 0x1f, 0x1e, 0x19, 0x16, 0x19, 0x1f, 0x22, 0x27, 0x2b, 0x2b, 0x2a, 0x2c, 0x2e, 0x2e, 0x29, 0x25, 0x20, 0x1e, 0x1e, 0x21, 0x24, 0x25, 0x2f, 0x2f, 0x2c, 0x24, 0x1c, 0x1a, 0x1f, 0x24, 0x24, 0x20, 0x1e, 0x20, 0x22, 0x1f, 0x1b, 0x19, 0x17, 0x15, 0x15, 0x16, 0x15, 0x13, 0x15, 0x19, 0x1b, 0x1b, 0x1b, 0x1b, 0x1b, 0x1c, 0x1d, 0x1e, 0x1b, 0x1a, 0x19, 0x19, 0x18, 0x17, 0x15, 0x14, 0x12, 0x15, 0x1a, 0x1f, 0x26, 0x2c, 0x31, 0x33, 0x3a, 0x39, 0x35, 0x2e, 0x29, 0x26, 0x22, 0x1f, 0x1c, 0x1e, 0x1f, 0x23, 0x2c, 0x36, 0x3a, 0x39, 0x34, 0x30, 0x2b, 0x28, 0x26, 0x26, 0x27, 0x28, 0x28, 0x2b, 0x2e, 0x2d, 0x2a, 0x27, 0x28, 0x2a, 0x28, 0x27, 0x25, 0x24, 0x26, 0x27, 0x24, 0x20, 0x1d, 0x1d, 0x1f, 0x25, 0x2c, 0x36, 0x44, 0x50, 0x55, 0x57, 0x58, 0x56, 0x52, 0x4f, 0x4e, 0x4e, 0x52, 0x5a, 0x5d, 0x58, 0x57, 0x58, 0x51, 0x45, 0x34, 0x24, 0x1d, 0x1f, 0x1b, 0x18, 0x1d, 0x20, 0x1a, 0x1b, 0x1d, 0x1e, 0x1d, 0x1e, 0x1f, 0x21, 0x20, 0x22, 0x24, 0x25, 0x23, 0x22, 0x21, 0x21, 0x1b, 0x1b, 0x1a, 0x1a, 0x1b, 0x1c, 0x1e, 0x1f, 0x20, 0x1c, 0x1b, 0x1f, 0x24, 0x28, 0x2d, 0x31, 0x31, 0x2f, 0x2e, 0x30, 0x34, 0x3a, 0x3d, 0x3f, 0x40, 0x47, 0x50, 0x57, 0x58, 0x57, 0x5b, 0x61, 0x5a, 0x55, 0x51, 0x52, 0x56, 0x58, 0x55, 0x51, 0x57, 0x5b, 0x60, 0x60, 0x5d, 0x60, 0x64, 0x65, 0x65, 0x60, 0x5b, 0x57, 0x51, 0x4d, 0x4e, 0x52, 0x42, 0x3b, 0x3b, 0x47, 0x53, 0x54, 0x50, 0x4e, 0x4a, 0x50, 0x55, 0x56, 0x57, 0x5a, 0x61, 0x66, 0x63, 0x60, 0x55, 0x48, 0x43, 0x48, 0x4b, 0x49, 0x49, 0x52, 0x6c, 0x83, 0x8a, 0x90, 0x94, 0x91, 0x8b, 0x88, 0x7f, 0x73, 0x68, 0x60, 0x6c, 0x83, 0x81, 0x80, 0x80, 0x82, 0x82, 0x81, 0x84, 0x88, 0x89, 0x8b, 0x8d, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9d, 0x9e, 0xa0, 0xa2, 0xa4, 0xa5, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xa8, 0xa7, 0xa5, 0xa3, 0xa1, 0x9d, 0x96, 0x8d, 0x84, 0x7b, 0x72, 0x6d, 0x64, 0x60, 0x5a, 0x55, 0x54, 0x54, 0x54, 0x54, 0x58, 0x57, 0x57, 0x5a, 0x5c, 0x5f, 0x66, 0x6c, 0x74, 0x7b, 0x85, 0x90, 0x98, 0x9b, 0x9b, 0x9a, 0x99, 0x9a, 0x9a, 0x98, 0x97, 0x99, 0x9a, 0x98, 0x97, 0x96, 0x95, 0x93, 0x92, 0x90, 0x8e, 0x8d, 0x8b, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8c, 0x8b, 0x8b, 0x89, 0x87, 0x84, 0x81, 0x7d, 0x79, 0x76, 0x76, 0x74, 0x71, 0x6f, 0x6f, 0x70, 0x6f, 0x6f, 0x64, 0x46, 0x35, 0x35, 0x33, 0x33, 0x31, 0x29, 0x25, 0x23, 0x1f, 0x1d, 0x1b, 0x1b, 0x1c, 0x1d, 0x22, 0x22, 0x23, 0x26, 0x2d, 0x33, 0x35, 0x34, 0x34, 0x33, 0x31, 0x2f, 0x2d, 0x2a, 0x28, 0x27, 0x29, 0x2e, 0x35, 0x3c, 0x42, 0x4a, 0x53, 0x59, 0x5d, 0x63, 0x69, 0x6d, 0x70, 0x72, 0x72, 0x71, 0x70, 0x69, 0x66, 0x65, 0x64, 0x68, 0x66, 0x5b, 0x4f, 0x4c, 0x3e, 0x31, 0x31, 0x35, 0x3b, 0x44, 0x49, 0x4a, 0x48, 0x45, 0x45, 0x46, 0x41, 0x3a, 0x3f, 0x43, 0x45, 0x44, 0x40, 0x3f, 0x41, 0x43, 0x43, 0x3e, 0x47, 0x55, 0x53, 0x4d, 0x59, 0x6d, 0x78, 0x6a, 0x5f, 0x59, 0x57, 0x5f, 0x6a, 0x6d, 0x68, 0x61, 0x5b, 0x55, 0x52, 0x52, 0x47, 0x31, 0x39, 0x2f, 0x28, 0x28, 0x2c, 0x2d, 0x2d, 0x2c, 0x2f, 0x36, 0x3d, 0x44, 0x37, 0x27, 0x26, 0x1e, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x24, 0x32, 0x40, 0x3b, 0x2d, 0x1f, 0x1b, 0x1d, 0x1f, 0x20, 0x21, 0x1c, 0x1f, 0x22, 0x24, 0x21, 0x1f, 0x22, 0x28, 0x27, 0x2b, 0x2b, 0x28, 0x28, 0x2b, 0x29, 0x23, 0x26, 0x21, 0x21, 0x2c, 0x3a, 0x45, 0x50, 0x58, 0x52, 0x4d, 0x49, 0x43, 0x41, 0x4c, 0x56, 0x55, 0x46, 0x3d, 0x3c, 0x37, 0x33, 0x2c, 0x2a, 0x3d, 0x60, 0x66, 0x58, 0x50, 0x4e, 0x48, 0x4a, 0x47, 0x51, 0x58, 0x64, 0x69, 0x64, 0x5b, 0x58, 0x5b, 0x66, 0x66, 0x6c, 0x5e, 0x4d, 0x49, 0x51, 0x66, 0x69, 0x68, 0x59, 0x43, 0x34, 0x32, 0x42, 0x59, 0x62, 0x62, 0x62, 0x63, 0x63, 0x63, 0x65, 0x67, 0x5d, 0x50, 0x4c, 0x50, 0x4a, 0x37, 0x24, 0x1b, 0x19, 0x2b, 0x42, 0x4c, 0x47, 0x40, 0x41, 0x47, 0x41, 0x43, 0x44, 0x3a, 0x38, 0x39, 0x32, 0x3a, 0x4b, 0x52, 0x4e, 0x55, 0x5f, 0x64, 0x64, 0x56, 0x1e, 0x1d, 0x19, 0x17, 0x1b, 0x23, 0x2a, 0x2c, 0x29, 0x25, 0x22, 0x22, 0x1f, 0x1c, 0x1f, 0x25, 0x2a, 0x2b, 0x2a, 0x25, 0x21, 0x1e, 0x1b, 0x18, 0x17, 0x17, 0x18, 0x17, 0x15, 0x15, 0x1d, 0x26, 0x29, 0x2f, 0x32, 0x2f, 0x2a, 0x28, 0x28, 0x27, 0x20, 0x1c, 0x18, 0x16, 0x18, 0x1c, 0x20, 0x22, 0x30, 0x34, 0x35, 0x30, 0x26, 0x1e, 0x1c, 0x1e, 0x20, 0x1d, 0x1c, 0x1f, 0x20, 0x1d, 0x1b, 0x1a, 0x17, 0x15, 0x15, 0x16, 0x15, 0x14, 0x15, 0x19, 0x1d, 0x1d, 0x1d, 0x1d, 0x1d, 0x1c, 0x1b, 0x1a, 0x1b, 0x1a, 0x18, 0x16, 0x13, 0x12, 0x11, 0x11, 0x14, 0x18, 0x1c, 0x20, 0x25, 0x2b, 0x2e, 0x2e, 0x32, 0x34, 0x32, 0x2c, 0x27, 0x24, 0x22, 0x20, 0x1b, 0x1f, 0x20, 0x21, 0x28, 0x32, 0x37, 0x36, 0x39, 0x33, 0x2d, 0x28, 0x25, 0x24, 0x27, 0x2b, 0x2b, 0x2d, 0x2e, 0x2c, 0x29, 0x27, 0x29, 0x2b, 0x27, 0x29, 0x2a, 0x29, 0x29, 0x28, 0x24, 0x20, 0x1a, 0x1a, 0x1e, 0x24, 0x2c, 0x36, 0x43, 0x4e, 0x4f, 0x55, 0x5b, 0x60, 0x61, 0x61, 0x61, 0x62, 0x6b, 0x64, 0x5e, 0x5c, 0x55, 0x47, 0x39, 0x32, 0x2d, 0x22, 0x20, 0x21, 0x1d, 0x1c, 0x20, 0x21, 0x1c, 0x1e, 0x1e, 0x1d, 0x1b, 0x1a, 0x1c, 0x1e, 0x1d, 0x1d, 0x1f, 0x21, 0x23, 0x22, 0x20, 0x1e, 0x1a, 0x1b, 0x1a, 0x1a, 0x19, 0x1a, 0x1d, 0x1f, 0x21, 0x1d, 0x1b, 0x1e, 0x22, 0x26, 0x2c, 0x31, 0x31, 0x2f, 0x2e, 0x30, 0x36, 0x3c, 0x40, 0x41, 0x42, 0x4a, 0x54, 0x58, 0x55, 0x53, 0x58, 0x60, 0x5e, 0x5a, 0x57, 0x57, 0x5b, 0x5c, 0x59, 0x56, 0x5c, 0x5b, 0x5e, 0x5d, 0x5a, 0x5e, 0x63, 0x60, 0x4d, 0x49, 0x4a, 0x50, 0x54, 0x54, 0x56, 0x5b, 0x52, 0x50, 0x52, 0x5b, 0x60, 0x5b, 0x4e, 0x44, 0x43, 0x49, 0x4d, 0x4e, 0x4f, 0x53, 0x59, 0x5d, 0x67, 0x6d, 0x6d, 0x67, 0x64, 0x68, 0x68, 0x63, 0x4e, 0x50, 0x69, 0x82, 0x88, 0x8d, 0x93, 0x8e, 0x8e, 0x8a, 0x7e, 0x70, 0x63, 0x5c, 0x67, 0x7e, 0x81, 0x80, 0x80, 0x82, 0x82, 0x82, 0x84, 0x88, 0x8a, 0x8b, 0x8d, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9e, 0xa0, 0xa2, 0xa4, 0xa6, 0xa7, 0xa7, 0xa7, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xaa, 0xa9, 0xa7, 0xa4, 0xa1, 0x9c, 0x96, 0x90, 0x8b, 0x7f, 0x79, 0x70, 0x68, 0x63, 0x61, 0x5f, 0x5f, 0x60, 0x60, 0x62, 0x65, 0x6a, 0x6f, 0x79, 0x81, 0x8c, 0x8f, 0x94, 0x98, 0x9b, 0x9c, 0x9c, 0x9b, 0x9d, 0x9e, 0x9e, 0x9c, 0x9b, 0x9d, 0x9e, 0x9c, 0x9d, 0x9c, 0x9a, 0x99, 0x98, 0x96, 0x93, 0x91, 0x8e, 0x8e, 0x8d, 0x8e, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8b, 0x89, 0x87, 0x84, 0x81, 0x7d, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x6a, 0x5e, 0x5a, 0x5e, 0x5e, 0x5c, 0x59, 0x54, 0x4a, 0x47, 0x43, 0x3e, 0x3a, 0x37, 0x35, 0x35, 0x3d, 0x3e, 0x3f, 0x42, 0x46, 0x49, 0x4a, 0x4a, 0x4f, 0x4f, 0x50, 0x50, 0x50, 0x4d, 0x49, 0x46, 0x4a, 0x48, 0x45, 0x41, 0x40, 0x43, 0x47, 0x4b, 0x56, 0x5c, 0x63, 0x6a, 0x6f, 0x71, 0x72, 0x73, 0x71, 0x6a, 0x65, 0x63, 0x64, 0x68, 0x64, 0x55, 0x45, 0x45, 0x38, 0x2e, 0x32, 0x39, 0x3d, 0x41, 0x4f, 0x51, 0x4f, 0x4a, 0x49, 0x4d, 0x4d, 0x4a, 0x51, 0x51, 0x50, 0x4e, 0x4d, 0x4d, 0x4a, 0x46, 0x44, 0x3c, 0x49, 0x5c, 0x56, 0x4c, 0x5b, 0x72, 0x74, 0x67, 0x5f, 0x5b, 0x56, 0x55, 0x56, 0x53, 0x55, 0x50, 0x53, 0x59, 0x5a, 0x54, 0x40, 0x28, 0x23, 0x21, 0x24, 0x2d, 0x34, 0x35, 0x32, 0x2f, 0x32, 0x50, 0x5f, 0x57, 0x3e, 0x33, 0x36, 0x2a, 0x1f, 0x1d, 0x1c, 0x1b, 0x1b, 0x21, 0x2e, 0x3a, 0x33, 0x26, 0x1b, 0x1b, 0x1f, 0x20, 0x20, 0x21, 0x22, 0x21, 0x22, 0x24, 0x24, 0x23, 0x23, 0x25, 0x2b, 0x2a, 0x27, 0x24, 0x26, 0x2a, 0x2b, 0x2a, 0x30, 0x29, 0x24, 0x29, 0x33, 0x3e, 0x48, 0x4f, 0x53, 0x4c, 0x47, 0x43, 0x44, 0x4f, 0x56, 0x50, 0x49, 0x43, 0x46, 0x42, 0x3b, 0x30, 0x2c, 0x42, 0x4f, 0x57, 0x4e, 0x49, 0x47, 0x3f, 0x3f, 0x3e, 0x4d, 0x53, 0x5c, 0x60, 0x5a, 0x55, 0x5c, 0x68, 0x6a, 0x6b, 0x70, 0x63, 0x53, 0x4f, 0x51, 0x60, 0x68, 0x66, 0x54, 0x3c, 0x32, 0x34, 0x3c, 0x46, 0x59, 0x5f, 0x63, 0x62, 0x63, 0x6a, 0x72, 0x78, 0x69, 0x51, 0x47, 0x4d, 0x47, 0x38, 0x2d, 0x28, 0x2a, 0x38, 0x47, 0x4b, 0x47, 0x45, 0x4c, 0x55, 0x53, 0x4c, 0x48, 0x3d, 0x39, 0x37, 0x35, 0x44, 0x58, 0x60, 0x5e, 0x61, 0x64, 0x64, 0x66, 0x5c, 0x22, 0x1f, 0x1a, 0x16, 0x18, 0x1f, 0x25, 0x27, 0x29, 0x26, 0x25, 0x25, 0x21, 0x1b, 0x1c, 0x23, 0x28, 0x28, 0x24, 0x1d, 0x18, 0x17, 0x16, 0x14, 0x18, 0x16, 0x16, 0x18, 0x1b, 0x1d, 0x22, 0x27, 0x29, 0x2b, 0x2b, 0x27, 0x23, 0x22, 0x21, 0x20, 0x1d, 0x1b, 0x18, 0x17, 0x18, 0x19, 0x1b, 0x1c, 0x22, 0x28, 0x2f, 0x31, 0x2d, 0x26, 0x20, 0x1d, 0x1d, 0x1b, 0x1b, 0x1e, 0x1d, 0x1b, 0x1a, 0x1a, 0x18, 0x16, 0x16, 0x17, 0x16, 0x14, 0x15, 0x18, 0x1d, 0x1d, 0x1e, 0x1f, 0x1e, 0x1c, 0x1a, 0x18, 0x19, 0x19, 0x19, 0x17, 0x13, 0x11, 0x11, 0x11, 0x17, 0x1a, 0x1d, 0x1f, 0x25, 0x2c, 0x31, 0x31, 0x2e, 0x31, 0x2f, 0x28, 0x22, 0x20, 0x21, 0x21, 0x1f, 0x26, 0x29, 0x27, 0x29, 0x2e, 0x30, 0x2d, 0x38, 0x33, 0x2e, 0x2b, 0x27, 0x26, 0x2a, 0x31, 0x30, 0x31, 0x31, 0x2f, 0x2b, 0x28, 0x28, 0x28, 0x25, 0x2a, 0x2e, 0x2c, 0x2a, 0x28, 0x25, 0x21, 0x1b, 0x1a, 0x1d, 0x22, 0x29, 0x32, 0x3e, 0x48, 0x55, 0x56, 0x58, 0x59, 0x5c, 0x62, 0x69, 0x6f, 0x6e, 0x64, 0x5e, 0x5e, 0x5b, 0x4e, 0x3e, 0x34, 0x2a, 0x25, 0x25, 0x24, 0x20, 0x21, 0x25, 0x22, 0x21, 0x22, 0x21, 0x1e, 0x1a, 0x18, 0x1a, 0x1d, 0x1d, 0x1c, 0x1c, 0x20, 0x24, 0x24, 0x20, 0x1b, 0x1d, 0x1d, 0x1d, 0x1c, 0x1a, 0x1b, 0x1e, 0x20, 0x23, 0x20, 0x1e, 0x1f, 0x22, 0x26, 0x2c, 0x32, 0x30, 0x2e, 0x2f, 0x34, 0x3d, 0x45, 0x4b, 0x4d, 0x52, 0x57, 0x5c, 0x5e, 0x59, 0x54, 0x56, 0x5c, 0x62, 0x5f, 0x5c, 0x5c, 0x5d, 0x5f, 0x5e, 0x5d, 0x62, 0x5c, 0x5d, 0x5e, 0x59, 0x5e, 0x62, 0x5b, 0x56, 0x58, 0x59, 0x59, 0x59, 0x59, 0x56, 0x53, 0x63, 0x68, 0x6c, 0x6a, 0x64, 0x5b, 0x51, 0x4a, 0x50, 0x4f, 0x4b, 0x49, 0x4d, 0x57, 0x60, 0x63, 0x69, 0x6f, 0x6b, 0x5d, 0x52, 0x4f, 0x4c, 0x46, 0x41, 0x43, 0x60, 0x7e, 0x85, 0x8d, 0x9a, 0x98, 0x91, 0x8e, 0x84, 0x77, 0x69, 0x5d, 0x62, 0x74, 0x84, 0x82, 0x82, 0x83, 0x83, 0x82, 0x84, 0x88, 0x8a, 0x8c, 0x8e, 0x90, 0x91, 0x92, 0x95, 0x96, 0x98, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9f, 0xa1, 0xa2, 0xa4, 0xa6, 0xa7, 0xa7, 0xa7, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xad, 0xac, 0xab, 0xaa, 0xaa, 0xa9, 0xa8, 0xa5, 0xa2, 0x9c, 0x97, 0x90, 0x8a, 0x85, 0x82, 0x80, 0x7f, 0x7c, 0x7d, 0x80, 0x83, 0x86, 0x8a, 0x91, 0x99, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0xa0, 0xa1, 0xa1, 0xa1, 0xa2, 0xa2, 0xa0, 0x9f, 0xa1, 0xa1, 0xa0, 0xa2, 0xa0, 0x9f, 0x9e, 0x9e, 0x9c, 0x99, 0x97, 0x94, 0x93, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x90, 0x8f, 0x8d, 0x8b, 0x89, 0x86, 0x82, 0x7f, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x77, 0x76, 0x78, 0x7c, 0x7d, 0x7e, 0x80, 0x7e, 0x7a, 0x7b, 0x79, 0x78, 0x76, 0x73, 0x6f, 0x6c, 0x69, 0x67, 0x60, 0x61, 0x63, 0x65, 0x66, 0x68, 0x6c, 0x6f, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x77, 0x7c, 0x77, 0x6f, 0x67, 0x5f, 0x57, 0x50, 0x4b, 0x55, 0x5a, 0x61, 0x69, 0x6e, 0x71, 0x73, 0x74, 0x71, 0x6b, 0x67, 0x63, 0x62, 0x66, 0x61, 0x53, 0x46, 0x42, 0x37, 0x31, 0x36, 0x3d, 0x45, 0x50, 0x5e, 0x5f, 0x5b, 0x56, 0x56, 0x5c, 0x5d, 0x5b, 0x59, 0x5a, 0x59, 0x55, 0x54, 0x53, 0x4f, 0x4a, 0x4f, 0x4b, 0x5a, 0x6d, 0x70, 0x72, 0x79, 0x79, 0x61, 0x58, 0x5c, 0x6b, 0x72, 0x6e, 0x5d, 0x49, 0x43, 0x42, 0x4d, 0x5b, 0x5a, 0x50, 0x42, 0x34, 0x21, 0x22, 0x27, 0x2e, 0x31, 0x31, 0x30, 0x31, 0x35, 0x4e, 0x55, 0x49, 0x34, 0x32, 0x3b, 0x2f, 0x25, 0x23, 0x21, 0x21, 0x22, 0x25, 0x2e, 0x36, 0x2a, 0x1f, 0x18, 0x1c, 0x22, 0x23, 0x25, 0x28, 0x28, 0x21, 0x1d, 0x21, 0x27, 0x29, 0x26, 0x23, 0x2d, 0x28, 0x23, 0x21, 0x21, 0x24, 0x2b, 0x33, 0x36, 0x2e, 0x26, 0x23, 0x28, 0x35, 0x47, 0x53, 0x58, 0x4d, 0x43, 0x3f, 0x42, 0x50, 0x56, 0x4f, 0x4d, 0x4a, 0x4f, 0x4e, 0x45, 0x37, 0x31, 0x46, 0x5e, 0x5a, 0x43, 0x39, 0x3a, 0x3e, 0x4f, 0x5b, 0x4b, 0x52, 0x5c, 0x60, 0x58, 0x53, 0x5d, 0x6c, 0x6d, 0x6f, 0x74, 0x65, 0x57, 0x56, 0x56, 0x61, 0x68, 0x64, 0x51, 0x3e, 0x38, 0x38, 0x39, 0x3d, 0x4f, 0x64, 0x78, 0x7f, 0x7f, 0x7d, 0x76, 0x6e, 0x6e, 0x56, 0x4c, 0x4d, 0x45, 0x3e, 0x3c, 0x38, 0x31, 0x3a, 0x41, 0x42, 0x42, 0x47, 0x53, 0x5d, 0x57, 0x47, 0x3d, 0x36, 0x37, 0x37, 0x3b, 0x52, 0x62, 0x6c, 0x69, 0x65, 0x5c, 0x54, 0x55, 0x4f, 0x25, 0x22, 0x1d, 0x18, 0x18, 0x1d, 0x20, 0x20, 0x24, 0x23, 0x24, 0x26, 0x20, 0x18, 0x1b, 0x23, 0x2b, 0x28, 0x22, 0x1b, 0x18, 0x19, 0x19, 0x18, 0x19, 0x17, 0x18, 0x1e, 0x23, 0x24, 0x22, 0x21, 0x20, 0x20, 0x1d, 0x1a, 0x1a, 0x1c, 0x1c, 0x1a, 0x18, 0x17, 0x17, 0x18, 0x1a, 0x1b, 0x1b, 0x1b, 0x16, 0x1c, 0x24, 0x2d, 0x31, 0x2f, 0x29, 0x23, 0x1b, 0x1a, 0x1c, 0x1e, 0x1d, 0x1a, 0x1a, 0x1c, 0x19, 0x18, 0x17, 0x18, 0x16, 0x13, 0x14, 0x17, 0x19, 0x1b, 0x1d, 0x1f, 0x1f, 0x1d, 0x1b, 0x19, 0x14, 0x17, 0x1a, 0x19, 0x16, 0x13, 0x14, 0x15, 0x14, 0x18, 0x1a, 0x1c, 0x23, 0x2d, 0x34, 0x35, 0x33, 0x35, 0x32, 0x29, 0x21, 0x1f, 0x22, 0x24, 0x25, 0x2e, 0x33, 0x30, 0x2d, 0x2e, 0x2b, 0x26, 0x32, 0x2f, 0x2d, 0x2b, 0x28, 0x26, 0x2c, 0x34, 0x35, 0x36, 0x36, 0x34, 0x30, 0x2c, 0x29, 0x27, 0x26, 0x2d, 0x32, 0x30, 0x2c, 0x2b, 0x29, 0x26, 0x20, 0x1f, 0x20, 0x24, 0x2a, 0x32, 0x3f, 0x4a, 0x52, 0x51, 0x4f, 0x4c, 0x4c, 0x50, 0x58, 0x5e, 0x60, 0x62, 0x60, 0x5c, 0x5f, 0x5e, 0x4d, 0x36, 0x28, 0x26, 0x27, 0x25, 0x21, 0x25, 0x29, 0x25, 0x25, 0x25, 0x23, 0x1f, 0x1a, 0x18, 0x1a, 0x1c, 0x23, 0x21, 0x20, 0x24, 0x2a, 0x2a, 0x24, 0x1d, 0x20, 0x21, 0x21, 0x1f, 0x1d, 0x1e, 0x21, 0x23, 0x27, 0x24, 0x22, 0x22, 0x24, 0x27, 0x2e, 0x34, 0x32, 0x30, 0x30, 0x36, 0x3f, 0x48, 0x4d, 0x4f, 0x53, 0x55, 0x59, 0x5c, 0x5b, 0x59, 0x5a, 0x5e, 0x61, 0x5e, 0x5b, 0x5a, 0x5a, 0x5c, 0x5e, 0x5f, 0x62, 0x5b, 0x5e, 0x61, 0x5c, 0x61, 0x62, 0x57, 0x57, 0x63, 0x69, 0x64, 0x62, 0x65, 0x60, 0x56, 0x5e, 0x69, 0x6d, 0x63, 0x56, 0x51, 0x52, 0x52, 0x55, 0x51, 0x4c, 0x4a, 0x52, 0x5e, 0x62, 0x60, 0x6a, 0x6d, 0x63, 0x4f, 0x43, 0x45, 0x49, 0x49, 0x45, 0x45, 0x62, 0x7e, 0x7e, 0x84, 0x91, 0x92, 0x94, 0x95, 0x90, 0x86, 0x78, 0x65, 0x62, 0x6e, 0x86, 0x84, 0x84, 0x84, 0x83, 0x82, 0x84, 0x88, 0x88, 0x8a, 0x8c, 0x8e, 0x8f, 0x90, 0x92, 0x94, 0x98, 0x98, 0x98, 0x99, 0x99, 0x9b, 0x9b, 0x9c, 0xa0, 0xa1, 0xa3, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xae, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa3, 0xa0, 0x9e, 0x9c, 0x99, 0x98, 0x95, 0x96, 0x99, 0x9b, 0x9a, 0x99, 0x9d, 0xa3, 0xa3, 0xa3, 0xa3, 0xa3, 0xa5, 0xa7, 0xa8, 0xa9, 0xa7, 0xa8, 0xa8, 0xa5, 0xa5, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa2, 0xa2, 0xa0, 0x9d, 0x9b, 0x99, 0x98, 0x96, 0x96, 0x95, 0x93, 0x91, 0x8f, 0x93, 0x91, 0x90, 0x8e, 0x8c, 0x89, 0x86, 0x83, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a, 0x86, 0x86, 0x82, 0x86, 0x83, 0x7e, 0x83, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x83, 0x84, 0x87, 0x89, 0x8a, 0x8d, 0x94, 0x9a, 0x97, 0x95, 0x93, 0x93, 0x95, 0x96, 0x96, 0x95, 0x91, 0x90, 0x8e, 0x8b, 0x85, 0x7a, 0x6b, 0x61, 0x59, 0x5c, 0x63, 0x6b, 0x6f, 0x70, 0x72, 0x74, 0x70, 0x6c, 0x69, 0x64, 0x61, 0x64, 0x60, 0x52, 0x4b, 0x42, 0x38, 0x37, 0x3c, 0x41, 0x4e, 0x63, 0x6f, 0x6f, 0x6a, 0x64, 0x63, 0x65, 0x63, 0x5c, 0x60, 0x65, 0x66, 0x62, 0x5e, 0x5d, 0x5b, 0x58, 0x4e, 0x5c, 0x72, 0x7a, 0x78, 0x7f, 0x80, 0x6f, 0x63, 0x5a, 0x5c, 0x68, 0x6d, 0x6d, 0x67, 0x5d, 0x57, 0x52, 0x57, 0x5a, 0x4d, 0x3e, 0x37, 0x33, 0x3b, 0x39, 0x37, 0x33, 0x2d, 0x29, 0x2c, 0x32, 0x47, 0x46, 0x3e, 0x39, 0x30, 0x2e, 0x36, 0x2f, 0x28, 0x27, 0x27, 0x28, 0x2a, 0x2c, 0x31, 0x36, 0x32, 0x26, 0x1e, 0x20, 0x24, 0x25, 0x27, 0x2c, 0x29, 0x28, 0x26, 0x24, 0x21, 0x20, 0x25, 0x2c, 0x2d, 0x26, 0x21, 0x1f, 0x1c, 0x1e, 0x2b, 0x39, 0x33, 0x2c, 0x22, 0x1d, 0x22, 0x37, 0x53, 0x69, 0x5c, 0x4d, 0x40, 0x3a, 0x3f, 0x4f, 0x56, 0x50, 0x4e, 0x4b, 0x53, 0x54, 0x4d, 0x3e, 0x38, 0x4c, 0x5c, 0x55, 0x42, 0x42, 0x48, 0x46, 0x4b, 0x4e, 0x51, 0x5a, 0x66, 0x68, 0x5c, 0x50, 0x54, 0x61, 0x6d, 0x68, 0x66, 0x5c, 0x5d, 0x67, 0x66, 0x69, 0x64, 0x5f, 0x50, 0x41, 0x3b, 0x38, 0x3b, 0x44, 0x5a, 0x6b, 0x77, 0x74, 0x72, 0x74, 0x71, 0x6a, 0x4a, 0x42, 0x48, 0x4f, 0x4a, 0x47, 0x45, 0x3a, 0x32, 0x3d, 0x49, 0x4e, 0x4f, 0x51, 0x55, 0x57, 0x3a, 0x2c, 0x2c, 0x34, 0x3e, 0x3e, 0x3e, 0x54, 0x63, 0x6e, 0x69, 0x5f, 0x4c, 0x3d, 0x3d, 0x38, 0x30, 0x26, 0x1f, 0x1e, 0x1c, 0x19, 0x1c, 0x22, 0x22, 0x1f, 0x20, 0x22, 0x21, 0x1b, 0x19, 0x1a, 0x25, 0x25, 0x23, 0x1e, 0x18, 0x16, 0x17, 0x1a, 0x22, 0x20, 0x1f, 0x20, 0x20, 0x1e, 0x1d, 0x1f, 0x1d, 0x1a, 0x17, 0x18, 0x1c, 0x1e, 0x1e, 0x1c, 0x1d, 0x1c, 0x1b, 0x1b, 0x1c, 0x1d, 0x1d, 0x1c, 0x1c, 0x19, 0x19, 0x1d, 0x23, 0x28, 0x27, 0x24, 0x1f, 0x1f, 0x20, 0x20, 0x1f, 0x1f, 0x1e, 0x1e, 0x1f, 0x1c, 0x1a, 0x1a, 0x1a, 0x1a, 0x19, 0x17, 0x17, 0x1a, 0x1c, 0x1d, 0x1e, 0x1e, 0x1a, 0x14, 0x14, 0x14, 0x14, 0x15, 0x16, 0x16, 0x16, 0x15, 0x17, 0x18, 0x1a, 0x1c, 0x1f, 0x24, 0x2b, 0x30, 0x37, 0x3a, 0x37, 0x2b, 0x23, 0x24, 0x25, 0x23, 0x2a, 0x30, 0x37, 0x3c, 0x3b, 0x36, 0x2e, 0x29, 0x2c, 0x2d, 0x2d, 0x2a, 0x26, 0x25, 0x26, 0x29, 0x2d, 0x2d, 0x2f, 0x33, 0x36, 0x36, 0x31, 0x2d, 0x2e, 0x2e, 0x2c, 0x2a, 0x2b, 0x2e, 0x2e, 0x2b, 0x21, 0x20, 0x1f, 0x21, 0x25, 0x31, 0x44, 0x54, 0x63, 0x5e, 0x57, 0x52, 0x4f, 0x52, 0x59, 0x60, 0x59, 0x55, 0x54, 0x59, 0x5c, 0x54, 0x44, 0x38, 0x25, 0x28, 0x28, 0x25, 0x25, 0x28, 0x27, 0x24, 0x22, 0x22, 0x23, 0x23, 0x22, 0x21, 0x1f, 0x1e, 0x1b, 0x1e, 0x24, 0x2a, 0x2d, 0x2b, 0x24, 0x1f, 0x1e, 0x26, 0x27, 0x20, 0x1c, 0x22, 0x2b, 0x2f, 0x2a, 0x27, 0x23, 0x20, 0x21, 0x27, 0x2f, 0x34, 0x32, 0x36, 0x39, 0x3f, 0x4a, 0x56, 0x55, 0x4d, 0x53, 0x59, 0x60, 0x61, 0x5c, 0x58, 0x58, 0x59, 0x59, 0x58, 0x5a, 0x5d, 0x61, 0x62, 0x5f, 0x5c, 0x5e, 0x60, 0x63, 0x63, 0x61, 0x60, 0x62, 0x65, 0x64, 0x61, 0x61, 0x65, 0x67, 0x64, 0x61, 0x62, 0x62, 0x61, 0x5e, 0x57, 0x50, 0x4a, 0x44, 0x3f, 0x3a, 0x38, 0x3c, 0x46, 0x50, 0x51, 0x4d, 0x4a, 0x53, 0x5d, 0x64, 0x62, 0x58, 0x49, 0x44, 0x4c, 0x4c, 0x47, 0x59, 0x7b, 0x87, 0x7d, 0x7f, 0x91, 0x99, 0xa0, 0x9e, 0x9d, 0xa1, 0x95, 0x84, 0x81, 0x89, 0x85, 0x82, 0x83, 0x86, 0x88, 0x87, 0x85, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x91, 0x93, 0x93, 0x95, 0x97, 0x99, 0x9a, 0x9a, 0x9c, 0x9d, 0xa2, 0xa1, 0xa0, 0xa0, 0xa2, 0xa3, 0xa5, 0xa5, 0xa7, 0xa8, 0xa9, 0xac, 0xae, 0xb0, 0xb1, 0xb2, 0xb1, 0xb2, 0xb4, 0xb5, 0xb5, 0xb3, 0xb1, 0xaf, 0xae, 0xad, 0xab, 0xa8, 0xa6, 0xa5, 0xa5, 0xa5, 0xa4, 0xa3, 0xa4, 0xa6, 0xa8, 0xaa, 0xaa, 0xaa, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xab, 0xab, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xaa, 0xaa, 0xaa, 0xa9, 0xa7, 0xa4, 0xa2, 0xa0, 0x9d, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x97, 0x95, 0x98, 0x96, 0x93, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x89, 0x86, 0x84, 0x84, 0x85, 0x85, 0x81, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x81, 0x7f, 0x7d, 0x87, 0x87, 0x8a, 0x8e, 0x93, 0x96, 0x96, 0x94, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x99, 0x9a, 0x9d, 0x9d, 0x9e, 0x9f, 0xa1, 0xa2, 0xa1, 0xa1, 0x9e, 0x9c, 0x99, 0x97, 0x93, 0x8c, 0x82, 0x7a, 0x72, 0x70, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x70, 0x70, 0x6d, 0x66, 0x61, 0x64, 0x67, 0x5d, 0x4f, 0x45, 0x3f, 0x36, 0x3c, 0x47, 0x47, 0x56, 0x77, 0x71, 0x6f, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6d, 0x6e, 0x70, 0x72, 0x71, 0x6d, 0x67, 0x60, 0x5c, 0x64, 0x71, 0x7f, 0x7e, 0x71, 0x61, 0x57, 0x54, 0x65, 0x65, 0x5d, 0x5b, 0x63, 0x64, 0x68, 0x76, 0x7d, 0x77, 0x5e, 0x47, 0x41, 0x3a, 0x36, 0x3e, 0x47, 0x3d, 0x33, 0x2d, 0x2b, 0x2c, 0x32, 0x39, 0x40, 0x42, 0x34, 0x36, 0x37, 0x35, 0x3e, 0x36, 0x2c, 0x22, 0x29, 0x32, 0x2e, 0x2e, 0x34, 0x32, 0x2c, 0x2a, 0x27, 0x25, 0x28, 0x2c, 0x2c, 0x29, 0x2b, 0x2b, 0x27, 0x23, 0x24, 0x29, 0x2b, 0x29, 0x2c, 0x28, 0x23, 0x1f, 0x1c, 0x1c, 0x21, 0x27, 0x25, 0x26, 0x1a, 0x14, 0x24, 0x35, 0x48, 0x5c, 0x59, 0x53, 0x48, 0x45, 0x49, 0x48, 0x47, 0x4c, 0x4e, 0x4b, 0x4a, 0x45, 0x35, 0x29, 0x36, 0x4d, 0x5c, 0x4c, 0x30, 0x27, 0x38, 0x42, 0x44, 0x4b, 0x4a, 0x53, 0x67, 0x6e, 0x5c, 0x4c, 0x51, 0x5c, 0x68, 0x64, 0x59, 0x51, 0x52, 0x52, 0x57, 0x63, 0x66, 0x58, 0x4d, 0x4b, 0x46, 0x40, 0x43, 0x4d, 0x61, 0x6d, 0x75, 0x70, 0x6e, 0x79, 0x77, 0x65, 0x4f, 0x47, 0x3f, 0x3f, 0x42, 0x43, 0x40, 0x3c, 0x3b, 0x4d, 0x56, 0x56, 0x5d, 0x5e, 0x51, 0x44, 0x34, 0x3d, 0x4e, 0x4e, 0x45, 0x3c, 0x40, 0x5d, 0x73, 0x71, 0x6f, 0x64, 0x49, 0x2c, 0x20, 0x23, 0x38, 0x2d, 0x23, 0x21, 0x20, 0x1f, 0x23, 0x2a, 0x28, 0x24, 0x21, 0x20, 0x1e, 0x1b, 0x1c, 0x1f, 0x22, 0x23, 0x24, 0x21, 0x1e, 0x1c, 0x1d, 0x20, 0x22, 0x21, 0x20, 0x21, 0x20, 0x1e, 0x1e, 0x21, 0x22, 0x20, 0x1e, 0x1e, 0x21, 0x23, 0x24, 0x24, 0x1f, 0x1e, 0x1f, 0x20, 0x22, 0x23, 0x22, 0x21, 0x21, 0x1d, 0x19, 0x18, 0x1b, 0x20, 0x25, 0x28, 0x24, 0x22, 0x20, 0x1e, 0x1e, 0x1d, 0x1b, 0x19, 0x1a, 0x1a, 0x19, 0x1a, 0x1a, 0x1b, 0x1b, 0x1a, 0x1a, 0x1c, 0x1e, 0x1f, 0x21, 0x21, 0x1c, 0x16, 0x15, 0x15, 0x15, 0x15, 0x16, 0x16, 0x16, 0x15, 0x16, 0x19, 0x1d, 0x21, 0x24, 0x27, 0x2b, 0x2e, 0x32, 0x35, 0x32, 0x28, 0x23, 0x28, 0x2d, 0x2e, 0x30, 0x32, 0x37, 0x3c, 0x3f, 0x3c, 0x36, 0x31, 0x29, 0x2b, 0x2b, 0x28, 0x24, 0x23, 0x24, 0x26, 0x28, 0x29, 0x2c, 0x2f, 0x31, 0x32, 0x31, 0x30, 0x37, 0x34, 0x2f, 0x2b, 0x2c, 0x2e, 0x2d, 0x29, 0x2c, 0x31, 0x39, 0x3c, 0x3b, 0x3c, 0x44, 0x4d, 0x49, 0x4e, 0x56, 0x5e, 0x63, 0x67, 0x6a, 0x6d, 0x66, 0x68, 0x6a, 0x68, 0x61, 0x53, 0x41, 0x34, 0x26, 0x28, 0x28, 0x25, 0x23, 0x23, 0x25, 0x27, 0x23, 0x23, 0x22, 0x21, 0x1f, 0x1e, 0x1e, 0x1e, 0x20, 0x22, 0x25, 0x2a, 0x2c, 0x2a, 0x25, 0x20, 0x22, 0x29, 0x2a, 0x22, 0x20, 0x28, 0x32, 0x37, 0x35, 0x32, 0x2d, 0x29, 0x27, 0x28, 0x2a, 0x2c, 0x30, 0x34, 0x3c, 0x46, 0x4f, 0x54, 0x56, 0x58, 0x55, 0x58, 0x5a, 0x58, 0x54, 0x51, 0x52, 0x54, 0x57, 0x57, 0x59, 0x5c, 0x60, 0x61, 0x61, 0x60, 0x60, 0x5f, 0x5d, 0x59, 0x58, 0x5c, 0x64, 0x6a, 0x6d, 0x69, 0x66, 0x67, 0x67, 0x65, 0x65, 0x67, 0x63, 0x62, 0x60, 0x5b, 0x55, 0x4e, 0x4b, 0x4b, 0x50, 0x4a, 0x45, 0x47, 0x4a, 0x4e, 0x52, 0x56, 0x63, 0x66, 0x63, 0x5e, 0x5a, 0x51, 0x4e, 0x56, 0x4b, 0x48, 0x58, 0x77, 0x84, 0x7d, 0x7c, 0x86, 0x93, 0x9f, 0xa2, 0xa5, 0xa9, 0x9d, 0x8c, 0x88, 0x88, 0x86, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87, 0x89, 0x8a, 0x8b, 0x8b, 0x8c, 0x8e, 0x91, 0x93, 0x92, 0x94, 0x97, 0x98, 0x99, 0x9a, 0x9c, 0x9d, 0x9f, 0x9f, 0x9f, 0xa0, 0xa3, 0xa5, 0xa8, 0xa9, 0xac, 0xad, 0xae, 0xb0, 0xb2, 0xb4, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb6, 0xb4, 0xb3, 0xb2, 0xb1, 0xb0, 0xae, 0xac, 0xab, 0xaa, 0xa9, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xad, 0xad, 0xac, 0xac, 0xad, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xae, 0xaf, 0xaf, 0xb0, 0xae, 0xae, 0xae, 0xad, 0xab, 0xa9, 0xa7, 0xa6, 0xa1, 0x9f, 0x9d, 0x9b, 0x9a, 0x99, 0x98, 0x96, 0x98, 0x96, 0x95, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8c, 0x8a, 0x88, 0x87, 0x88, 0x88, 0x85, 0x82, 0x81, 0x7f, 0x7c, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7d, 0x7f, 0x83, 0x85, 0x87, 0x87, 0x8d, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x95, 0x97, 0x9b, 0x9b, 0x9c, 0x9d, 0x9f, 0xa0, 0xa0, 0xa0, 0xa0, 0x9e, 0x9d, 0x9c, 0x9b, 0x96, 0x8f, 0x89, 0x81, 0x7e, 0x7a, 0x78, 0x77, 0x76, 0x73, 0x70, 0x6f, 0x6c, 0x65, 0x61, 0x64, 0x65, 0x5c, 0x4e, 0x48, 0x3b, 0x41, 0x47, 0x48, 0x61, 0x78, 0x71, 0x6f, 0x6f, 0x6f, 0x71, 0x73, 0x75, 0x75, 0x74, 0x68, 0x6c, 0x70, 0x6f, 0x6a, 0x64, 0x60, 0x5f, 0x63, 0x6f, 0x79, 0x7d, 0x7e, 0x79, 0x67, 0x55, 0x56, 0x5c, 0x66, 0x6e, 0x6b, 0x64, 0x6f, 0x87, 0x92, 0x7f, 0x61, 0x4c, 0x45, 0x3f, 0x3b, 0x3e, 0x4a, 0x40, 0x39, 0x3b, 0x40, 0x3f, 0x3b, 0x37, 0x3c, 0x42, 0x38, 0x38, 0x38, 0x37, 0x3e, 0x37, 0x37, 0x30, 0x33, 0x35, 0x2e, 0x2e, 0x33, 0x31, 0x33, 0x35, 0x36, 0x32, 0x2f, 0x2f, 0x2f, 0x2f, 0x2d, 0x2c, 0x2b, 0x2b, 0x30, 0x35, 0x35, 0x31, 0x2c, 0x28, 0x24, 0x22, 0x20, 0x1e, 0x20, 0x24, 0x21, 0x24, 0x1f, 0x1b, 0x22, 0x32, 0x48, 0x5b, 0x5c, 0x51, 0x4a, 0x49, 0x4a, 0x4b, 0x4d, 0x4f, 0x48, 0x4d, 0x53, 0x50, 0x3f, 0x31, 0x39, 0x4a, 0x4e, 0x49, 0x3b, 0x33, 0x3d, 0x4a, 0x4d, 0x4c, 0x48, 0x55, 0x66, 0x66, 0x55, 0x4f, 0x59, 0x60, 0x68, 0x66, 0x5c, 0x52, 0x4f, 0x4e, 0x55, 0x62, 0x73, 0x65, 0x59, 0x52, 0x49, 0x44, 0x4c, 0x5a, 0x75, 0x6e, 0x68, 0x66, 0x6a, 0x72, 0x6b, 0x59, 0x48, 0x48, 0x48, 0x44, 0x3e, 0x3b, 0x40, 0x46, 0x4d, 0x5b, 0x5c, 0x55, 0x55, 0x55, 0x4c, 0x44, 0x42, 0x3c, 0x47, 0x4f, 0x48, 0x36, 0x3b, 0x61, 0x6f, 0x76, 0x6d, 0x53, 0x47, 0x54, 0x66, 0x6e, 0x37, 0x2d, 0x25, 0x24, 0x24, 0x23, 0x24, 0x28, 0x27, 0x23, 0x20, 0x1f, 0x1d, 0x1b, 0x1c, 0x1e, 0x22, 0x25, 0x27, 0x27, 0x25, 0x23, 0x23, 0x24, 0x22, 0x21, 0x21, 0x21, 0x1f, 0x1d, 0x1e, 0x22, 0x24, 0x24, 0x23, 0x22, 0x22, 0x24, 0x27, 0x2a, 0x1e, 0x1d, 0x1e, 0x20, 0x22, 0x23, 0x22, 0x21, 0x22, 0x1f, 0x1a, 0x16, 0x17, 0x1b, 0x21, 0x26, 0x28, 0x25, 0x22, 0x1f, 0x1d, 0x1b, 0x17, 0x14, 0x16, 0x17, 0x19, 0x1a, 0x1a, 0x1b, 0x1c, 0x1c, 0x1b, 0x1d, 0x1e, 0x20, 0x22, 0x23, 0x1e, 0x17, 0x15, 0x15, 0x14, 0x15, 0x16, 0x17, 0x16, 0x15, 0x18, 0x1a, 0x1e, 0x22, 0x27, 0x2c, 0x30, 0x34, 0x2e, 0x30, 0x2b, 0x22, 0x1e, 0x25, 0x2c, 0x30, 0x34, 0x33, 0x34, 0x38, 0x3c, 0x3c, 0x37, 0x32, 0x2a, 0x2b, 0x2b, 0x29, 0x25, 0x23, 0x24, 0x25, 0x27, 0x2a, 0x2d, 0x2e, 0x2d, 0x2e, 0x31, 0x34, 0x39, 0x35, 0x2e, 0x29, 0x2a, 0x2d, 0x2d, 0x2b, 0x38, 0x3c, 0x42, 0x44, 0x42, 0x44, 0x50, 0x5d, 0x68, 0x65, 0x5e, 0x56, 0x4f, 0x4f, 0x52, 0x56, 0x68, 0x6e, 0x72, 0x6f, 0x69, 0x5c, 0x47, 0x34, 0x27, 0x27, 0x27, 0x27, 0x25, 0x23, 0x25, 0x28, 0x27, 0x26, 0x24, 0x22, 0x1f, 0x1f, 0x20, 0x22, 0x23, 0x23, 0x25, 0x29, 0x2b, 0x2b, 0x27, 0x23, 0x23, 0x28, 0x27, 0x21, 0x1e, 0x26, 0x31, 0x37, 0x38, 0x37, 0x35, 0x33, 0x32, 0x31, 0x2f, 0x2e, 0x30, 0x33, 0x3f, 0x4c, 0x4f, 0x4e, 0x52, 0x5c, 0x57, 0x56, 0x54, 0x51, 0x4e, 0x4e, 0x50, 0x52, 0x53, 0x54, 0x57, 0x59, 0x5a, 0x5c, 0x5d, 0x5f, 0x63, 0x60, 0x5b, 0x56, 0x55, 0x59, 0x62, 0x69, 0x60, 0x5f, 0x5f, 0x60, 0x5f, 0x5e, 0x5f, 0x62, 0x5d, 0x5d, 0x5f, 0x5f, 0x59, 0x50, 0x50, 0x55, 0x54, 0x54, 0x57, 0x5a, 0x5b, 0x58, 0x58, 0x5a, 0x62, 0x61, 0x5b, 0x58, 0x5a, 0x55, 0x50, 0x53, 0x51, 0x50, 0x5c, 0x73, 0x81, 0x7f, 0x7a, 0x7a, 0x89, 0x96, 0x9f, 0xa4, 0xa6, 0x9b, 0x8e, 0x8a, 0x87, 0x86, 0x86, 0x85, 0x86, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8b, 0x8b, 0x8d, 0x90, 0x92, 0x91, 0x93, 0x96, 0x98, 0x99, 0x9a, 0x9c, 0x9d, 0x9c, 0x9d, 0x9f, 0xa2, 0xa5, 0xa9, 0xac, 0xae, 0xb2, 0xb3, 0xb4, 0xb6, 0xb8, 0xb9, 0xbb, 0xbb, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb8, 0xb8, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb1, 0xb0, 0xaf, 0xb1, 0xb0, 0xaf, 0xb0, 0xb0, 0xb1, 0xb0, 0xaf, 0xb0, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xae, 0xad, 0xac, 0xa9, 0xa6, 0xa2, 0x9f, 0x9e, 0x9c, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x98, 0x97, 0x96, 0x95, 0x92, 0x8f, 0x8d, 0x8d, 0x8e, 0x8d, 0x8b, 0x89, 0x86, 0x82, 0x7a, 0x73, 0x70, 0x70, 0x74, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x83, 0x86, 0x88, 0x8a, 0x8c, 0x8f, 0x91, 0x96, 0x96, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0x9c, 0x9b, 0x9c, 0x9c, 0x9a, 0x96, 0x92, 0x8e, 0x8a, 0x85, 0x81, 0x7e, 0x7a, 0x75, 0x71, 0x6e, 0x6b, 0x65, 0x62, 0x64, 0x64, 0x59, 0x4c, 0x42, 0x45, 0x43, 0x48, 0x5e, 0x73, 0x76, 0x72, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x76, 0x77, 0x77, 0x6c, 0x71, 0x75, 0x74, 0x6d, 0x67, 0x66, 0x67, 0x66, 0x6a, 0x69, 0x68, 0x74, 0x84, 0x83, 0x77, 0x64, 0x5b, 0x5e, 0x68, 0x69, 0x70, 0x86, 0x9b, 0x94, 0x75, 0x5a, 0x51, 0x4e, 0x4c, 0x49, 0x45, 0x41, 0x40, 0x40, 0x3f, 0x3c, 0x3c, 0x40, 0x46, 0x40, 0x49, 0x45, 0x41, 0x3e, 0x3f, 0x46, 0x41, 0x37, 0x37, 0x3a, 0x38, 0x32, 0x36, 0x40, 0x40, 0x3b, 0x41, 0x44, 0x3e, 0x35, 0x30, 0x31, 0x32, 0x2b, 0x2a, 0x2a, 0x2d, 0x35, 0x3b, 0x39, 0x35, 0x2c, 0x29, 0x26, 0x25, 0x24, 0x22, 0x21, 0x22, 0x22, 0x24, 0x26, 0x24, 0x25, 0x36, 0x4e, 0x5b, 0x4b, 0x40, 0x44, 0x4e, 0x4c, 0x4d, 0x4e, 0x49, 0x48, 0x52, 0x59, 0x52, 0x41, 0x37, 0x3d, 0x4a, 0x52, 0x49, 0x3b, 0x2f, 0x35, 0x4c, 0x57, 0x4f, 0x51, 0x5d, 0x6a, 0x65, 0x5a, 0x5a, 0x5d, 0x59, 0x5f, 0x67, 0x68, 0x63, 0x5a, 0x4f, 0x4f, 0x59, 0x6d, 0x65, 0x5b, 0x51, 0x44, 0x40, 0x4d, 0x5e, 0x69, 0x62, 0x65, 0x6f, 0x72, 0x6c, 0x58, 0x41, 0x41, 0x41, 0x3f, 0x3a, 0x33, 0x31, 0x3a, 0x44, 0x5f, 0x71, 0x76, 0x6e, 0x6a, 0x64, 0x59, 0x51, 0x49, 0x41, 0x43, 0x40, 0x38, 0x30, 0x3d, 0x65, 0x79, 0x73, 0x5a, 0x3b, 0x3b, 0x58, 0x6a, 0x68, 0x30, 0x2a, 0x26, 0x27, 0x28, 0x24, 0x21, 0x20, 0x21, 0x21, 0x21, 0x21, 0x20, 0x1e, 0x1d, 0x1c, 0x23, 0x26, 0x29, 0x29, 0x27, 0x24, 0x22, 0x22, 0x22, 0x21, 0x20, 0x1f, 0x1c, 0x1a, 0x1c, 0x20, 0x1f, 0x21, 0x22, 0x20, 0x1e, 0x1f, 0x25, 0x29, 0x20, 0x1f, 0x1d, 0x1e, 0x1e, 0x1f, 0x1e, 0x1e, 0x1e, 0x1c, 0x1a, 0x19, 0x1a, 0x1c, 0x1d, 0x1e, 0x27, 0x27, 0x26, 0x23, 0x1f, 0x1a, 0x16, 0x14, 0x15, 0x17, 0x1a, 0x1b, 0x1a, 0x19, 0x1a, 0x1b, 0x1e, 0x1f, 0x20, 0x22, 0x24, 0x25, 0x21, 0x1b, 0x15, 0x14, 0x13, 0x14, 0x16, 0x17, 0x17, 0x16, 0x1a, 0x1a, 0x1c, 0x1f, 0x25, 0x2e, 0x36, 0x3c, 0x3b, 0x3b, 0x36, 0x2c, 0x27, 0x2b, 0x32, 0x36, 0x38, 0x37, 0x36, 0x37, 0x38, 0x38, 0x35, 0x33, 0x30, 0x30, 0x2f, 0x2d, 0x29, 0x27, 0x26, 0x27, 0x29, 0x2c, 0x2f, 0x2d, 0x29, 0x29, 0x2e, 0x34, 0x33, 0x31, 0x2c, 0x27, 0x26, 0x2b, 0x2f, 0x30, 0x37, 0x36, 0x36, 0x36, 0x38, 0x41, 0x53, 0x62, 0x67, 0x6e, 0x73, 0x71, 0x68, 0x5e, 0x54, 0x4e, 0x55, 0x5a, 0x5f, 0x62, 0x65, 0x60, 0x4c, 0x37, 0x2f, 0x29, 0x25, 0x28, 0x2a, 0x28, 0x26, 0x27, 0x29, 0x29, 0x29, 0x26, 0x24, 0x23, 0x24, 0x26, 0x22, 0x22, 0x24, 0x28, 0x2c, 0x2c, 0x29, 0x26, 0x25, 0x29, 0x28, 0x23, 0x20, 0x24, 0x2d, 0x32, 0x38, 0x39, 0x3a, 0x3c, 0x3c, 0x3a, 0x36, 0x34, 0x36, 0x3b, 0x45, 0x4d, 0x4e, 0x4c, 0x50, 0x57, 0x55, 0x52, 0x4f, 0x4d, 0x4d, 0x4e, 0x4f, 0x51, 0x52, 0x55, 0x59, 0x59, 0x58, 0x58, 0x5a, 0x5c, 0x63, 0x62, 0x61, 0x5e, 0x5c, 0x5c, 0x5e, 0x60, 0x5b, 0x5f, 0x63, 0x65, 0x64, 0x62, 0x61, 0x62, 0x60, 0x60, 0x60, 0x5c, 0x4d, 0x3d, 0x38, 0x3e, 0x41, 0x3f, 0x3e, 0x42, 0x47, 0x4d, 0x56, 0x5d, 0x64, 0x61, 0x59, 0x55, 0x59, 0x5a, 0x58, 0x5c, 0x5e, 0x5e, 0x63, 0x70, 0x7e, 0x82, 0x7c, 0x73, 0x81, 0x8c, 0x97, 0x9e, 0x9d, 0x95, 0x8c, 0x88, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x8a, 0x8b, 0x8b, 0x8d, 0x8f, 0x91, 0x91, 0x93, 0x96, 0x98, 0x99, 0x9b, 0x9d, 0x9e, 0x9e, 0xa0, 0xa3, 0xa6, 0xa9, 0xad, 0xb1, 0xb4, 0xb5, 0xb6, 0xb7, 0xb9, 0xba, 0xbc, 0xbd, 0xbd, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb5, 0xb4, 0xb3, 0xb4, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xb0, 0xb1, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb3, 0xb3, 0xb2, 0xb1, 0xb0, 0xb1, 0xae, 0xa9, 0xa6, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9d, 0x9b, 0x9a, 0x97, 0x95, 0x93, 0x93, 0x93, 0x93, 0x91, 0x90, 0x8a, 0x85, 0x7d, 0x74, 0x6c, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x73, 0x76, 0x77, 0x79, 0x7c, 0x7e, 0x81, 0x84, 0x87, 0x8a, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x98, 0x97, 0x97, 0x97, 0x98, 0x96, 0x94, 0x91, 0x8f, 0x8c, 0x87, 0x84, 0x81, 0x7d, 0x77, 0x73, 0x6e, 0x6b, 0x66, 0x63, 0x64, 0x62, 0x57, 0x4b, 0x43, 0x46, 0x45, 0x56, 0x72, 0x70, 0x68, 0x75, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x76, 0x79, 0x7b, 0x79, 0x74, 0x6f, 0x6e, 0x6e, 0x6e, 0x69, 0x5c, 0x4d, 0x4f, 0x5f, 0x6d, 0x71, 0x71, 0x5d, 0x4e, 0x47, 0x4f, 0x71, 0x95, 0xa0, 0x81, 0x62, 0x54, 0x5a, 0x5a, 0x59, 0x56, 0x4d, 0x46, 0x4b, 0x4d, 0x49, 0x40, 0x3e, 0x46, 0x50, 0x45, 0x4d, 0x4c, 0x45, 0x40, 0x43, 0x4a, 0x4a, 0x45, 0x51, 0x58, 0x4e, 0x3d, 0x33, 0x2f, 0x2a, 0x3a, 0x41, 0x44, 0x3e, 0x34, 0x30, 0x30, 0x31, 0x2c, 0x2a, 0x29, 0x2a, 0x2f, 0x35, 0x37, 0x37, 0x2f, 0x2a, 0x27, 0x27, 0x28, 0x26, 0x25, 0x26, 0x28, 0x25, 0x2a, 0x2d, 0x30, 0x45, 0x5b, 0x5d, 0x4d, 0x3f, 0x47, 0x53, 0x4e, 0x4f, 0x54, 0x4c, 0x4d, 0x55, 0x55, 0x49, 0x3a, 0x37, 0x40, 0x49, 0x52, 0x3f, 0x30, 0x2b, 0x35, 0x51, 0x5d, 0x50, 0x5a, 0x63, 0x6d, 0x6d, 0x65, 0x64, 0x5e, 0x50, 0x61, 0x63, 0x5b, 0x4c, 0x3f, 0x3a, 0x46, 0x59, 0x61, 0x5f, 0x5b, 0x51, 0x43, 0x41, 0x4f, 0x61, 0x72, 0x69, 0x63, 0x5d, 0x52, 0x4c, 0x48, 0x3f, 0x4d, 0x42, 0x39, 0x3a, 0x40, 0x44, 0x49, 0x4d, 0x53, 0x67, 0x70, 0x6c, 0x68, 0x62, 0x59, 0x55, 0x50, 0x53, 0x4a, 0x2f, 0x26, 0x34, 0x45, 0x5c, 0x72, 0x60, 0x4f, 0x53, 0x69, 0x79, 0x75, 0x6a, 0x30, 0x2b, 0x28, 0x28, 0x28, 0x25, 0x21, 0x1f, 0x20, 0x21, 0x21, 0x21, 0x22, 0x22, 0x21, 0x21, 0x24, 0x26, 0x28, 0x29, 0x28, 0x25, 0x22, 0x21, 0x22, 0x20, 0x1e, 0x1c, 0x19, 0x16, 0x18, 0x1c, 0x1c, 0x1f, 0x21, 0x1f, 0x1b, 0x1c, 0x21, 0x27, 0x28, 0x25, 0x23, 0x20, 0x1f, 0x1f, 0x1d, 0x1c, 0x1b, 0x18, 0x17, 0x1a, 0x1e, 0x1f, 0x1d, 0x19, 0x21, 0x25, 0x29, 0x28, 0x22, 0x1b, 0x18, 0x17, 0x19, 0x1b, 0x1e, 0x1e, 0x1b, 0x19, 0x19, 0x19, 0x21, 0x22, 0x23, 0x23, 0x25, 0x26, 0x24, 0x20, 0x15, 0x13, 0x12, 0x13, 0x16, 0x18, 0x18, 0x16, 0x19, 0x19, 0x19, 0x1d, 0x24, 0x2c, 0x34, 0x38, 0x3b, 0x3b, 0x37, 0x2f, 0x2a, 0x2b, 0x30, 0x34, 0x3c, 0x3d, 0x3e, 0x3d, 0x3a, 0x38, 0x39, 0x3a, 0x34, 0x34, 0x33, 0x30, 0x2d, 0x2b, 0x29, 0x29, 0x29, 0x2c, 0x2e, 0x2c, 0x28, 0x28, 0x2d, 0x32, 0x31, 0x33, 0x32, 0x2b, 0x27, 0x29, 0x2e, 0x32, 0x2e, 0x2c, 0x2b, 0x2e, 0x33, 0x39, 0x43, 0x4b, 0x59, 0x61, 0x68, 0x69, 0x69, 0x6d, 0x71, 0x72, 0x63, 0x6b, 0x72, 0x75, 0x75, 0x72, 0x66, 0x59, 0x44, 0x36, 0x28, 0x26, 0x2a, 0x2b, 0x29, 0x25, 0x26, 0x28, 0x2a, 0x2a, 0x27, 0x24, 0x25, 0x26, 0x22, 0x23, 0x25, 0x2a, 0x2d, 0x2d, 0x29, 0x26, 0x29, 0x2c, 0x2d, 0x29, 0x26, 0x28, 0x2d, 0x31, 0x38, 0x3b, 0x3f, 0x41, 0x40, 0x3e, 0x3b, 0x3a, 0x40, 0x46, 0x4b, 0x4c, 0x4e, 0x52, 0x53, 0x51, 0x52, 0x50, 0x4e, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x51, 0x56, 0x5b, 0x5c, 0x5b, 0x5a, 0x5b, 0x5e, 0x60, 0x62, 0x64, 0x64, 0x61, 0x5e, 0x5b, 0x5a, 0x5e, 0x62, 0x66, 0x66, 0x65, 0x64, 0x63, 0x63, 0x67, 0x67, 0x65, 0x5e, 0x4e, 0x40, 0x40, 0x47, 0x48, 0x46, 0x47, 0x4f, 0x58, 0x60, 0x67, 0x6b, 0x68, 0x67, 0x5b, 0x52, 0x53, 0x56, 0x5b, 0x64, 0x64, 0x64, 0x64, 0x6a, 0x78, 0x84, 0x81, 0x76, 0x7c, 0x85, 0x94, 0x9f, 0x9f, 0x99, 0x91, 0x89, 0x85, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x8a, 0x8b, 0x8b, 0x8d, 0x8f, 0x92, 0x92, 0x94, 0x97, 0x99, 0x9b, 0x9d, 0x9f, 0xa1, 0xa4, 0xa6, 0xa9, 0xab, 0xad, 0xb0, 0xb4, 0xb6, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xbb, 0xbb, 0xbc, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3, 0xb4, 0xb4, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb7, 0xb4, 0xb0, 0xad, 0xab, 0xab, 0xaa, 0xa9, 0xa7, 0xa6, 0xa5, 0xa4, 0xa3, 0xa2, 0x9f, 0x9d, 0x9c, 0x9b, 0x99, 0x98, 0x98, 0x98, 0x97, 0x96, 0x90, 0x8c, 0x85, 0x7b, 0x70, 0x67, 0x60, 0x5c, 0x5e, 0x60, 0x63, 0x65, 0x65, 0x67, 0x6a, 0x6c, 0x6e, 0x70, 0x72, 0x75, 0x77, 0x79, 0x7d, 0x7f, 0x82, 0x84, 0x85, 0x86, 0x87, 0x89, 0x8c, 0x8e, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x94, 0x92, 0x8f, 0x8c, 0x89, 0x86, 0x84, 0x80, 0x7a, 0x76, 0x70, 0x6c, 0x67, 0x64, 0x64, 0x60, 0x56, 0x4b, 0x4b, 0x40, 0x56, 0x72, 0x70, 0x6c, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x73, 0x74, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x69, 0x62, 0x59, 0x52, 0x4e, 0x4e, 0x55, 0x5d, 0x68, 0x66, 0x5c, 0x4c, 0x54, 0x81, 0x9f, 0x98, 0x6f, 0x59, 0x56, 0x62, 0x63, 0x60, 0x5c, 0x53, 0x50, 0x51, 0x52, 0x52, 0x52, 0x4f, 0x4b, 0x48, 0x4a, 0x4c, 0x4c, 0x42, 0x3d, 0x42, 0x48, 0x4e, 0x67, 0x7b, 0x86, 0x7a, 0x60, 0x46, 0x35, 0x2d, 0x33, 0x35, 0x35, 0x31, 0x2f, 0x2f, 0x31, 0x31, 0x33, 0x31, 0x2d, 0x2a, 0x28, 0x2c, 0x33, 0x3a, 0x33, 0x2d, 0x29, 0x29, 0x2a, 0x2a, 0x2a, 0x2c, 0x30, 0x28, 0x2a, 0x32, 0x3e, 0x57, 0x64, 0x5c, 0x53, 0x40, 0x43, 0x4b, 0x42, 0x43, 0x4d, 0x4b, 0x4e, 0x53, 0x51, 0x45, 0x39, 0x37, 0x3d, 0x42, 0x43, 0x35, 0x34, 0x3e, 0x49, 0x59, 0x5e, 0x54, 0x59, 0x62, 0x6f, 0x6d, 0x5f, 0x57, 0x57, 0x54, 0x62, 0x61, 0x54, 0x42, 0x36, 0x34, 0x43, 0x59, 0x65, 0x65, 0x60, 0x53, 0x47, 0x4a, 0x5c, 0x6e, 0x6c, 0x69, 0x67, 0x5f, 0x5a, 0x66, 0x75, 0x78, 0x52, 0x43, 0x39, 0x3e, 0x49, 0x4d, 0x4b, 0x4a, 0x44, 0x54, 0x59, 0x53, 0x51, 0x50, 0x4e, 0x4f, 0x52, 0x54, 0x49, 0x2c, 0x2e, 0x42, 0x42, 0x40, 0x31, 0x32, 0x41, 0x5e, 0x74, 0x75, 0x68, 0x5e, 0x33, 0x2f, 0x29, 0x24, 0x22, 0x21, 0x22, 0x22, 0x20, 0x20, 0x1e, 0x1c, 0x1d, 0x21, 0x24, 0x25, 0x28, 0x29, 0x2b, 0x2d, 0x2d, 0x2c, 0x2a, 0x29, 0x24, 0x1f, 0x1b, 0x1a, 0x18, 0x16, 0x17, 0x1a, 0x1d, 0x21, 0x23, 0x21, 0x1d, 0x1d, 0x21, 0x27, 0x2c, 0x2a, 0x28, 0x26, 0x24, 0x21, 0x1d, 0x1b, 0x1c, 0x18, 0x15, 0x18, 0x1d, 0x20, 0x1e, 0x1b, 0x1c, 0x21, 0x27, 0x28, 0x24, 0x1f, 0x1d, 0x1d, 0x1e, 0x20, 0x22, 0x22, 0x20, 0x1d, 0x1b, 0x19, 0x1d, 0x20, 0x21, 0x1f, 0x1f, 0x20, 0x22, 0x21, 0x19, 0x15, 0x13, 0x14, 0x17, 0x19, 0x18, 0x16, 0x15, 0x16, 0x1a, 0x1f, 0x25, 0x2a, 0x2d, 0x2e, 0x2d, 0x2e, 0x2c, 0x27, 0x24, 0x25, 0x2a, 0x2f, 0x3a, 0x3d, 0x41, 0x40, 0x3c, 0x39, 0x3a, 0x3c, 0x32, 0x32, 0x31, 0x30, 0x2e, 0x2c, 0x2b, 0x2a, 0x2b, 0x2d, 0x2f, 0x2e, 0x2d, 0x2d, 0x30, 0x34, 0x35, 0x39, 0x39, 0x33, 0x2c, 0x2b, 0x2d, 0x2e, 0x2a, 0x26, 0x25, 0x29, 0x31, 0x38, 0x40, 0x46, 0x4b, 0x56, 0x5f, 0x5f, 0x5c, 0x5b, 0x59, 0x56, 0x66, 0x70, 0x79, 0x77, 0x6b, 0x60, 0x5d, 0x5e, 0x59, 0x4b, 0x36, 0x28, 0x26, 0x2a, 0x2a, 0x26, 0x22, 0x26, 0x2a, 0x2a, 0x26, 0x23, 0x21, 0x22, 0x25, 0x26, 0x28, 0x2c, 0x2f, 0x2f, 0x2b, 0x28, 0x26, 0x29, 0x2a, 0x29, 0x27, 0x27, 0x2b, 0x2f, 0x34, 0x39, 0x3e, 0x41, 0x40, 0x41, 0x43, 0x46, 0x45, 0x48, 0x48, 0x46, 0x4b, 0x54, 0x53, 0x4d, 0x53, 0x54, 0x54, 0x55, 0x54, 0x51, 0x4e, 0x4b, 0x4b, 0x4f, 0x55, 0x57, 0x58, 0x59, 0x5b, 0x5e, 0x5e, 0x5f, 0x60, 0x60, 0x5f, 0x5e, 0x5c, 0x5b, 0x56, 0x59, 0x5a, 0x5a, 0x5d, 0x62, 0x67, 0x68, 0x6b, 0x6d, 0x6a, 0x5f, 0x51, 0x4b, 0x4e, 0x55, 0x53, 0x54, 0x59, 0x62, 0x68, 0x66, 0x62, 0x5f, 0x69, 0x6f, 0x6c, 0x63, 0x5f, 0x5a, 0x59, 0x5d, 0x60, 0x62, 0x61, 0x63, 0x71, 0x82, 0x85, 0x7d, 0x79, 0x7e, 0x90, 0xa0, 0xa3, 0xa1, 0x98, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8e, 0x91, 0x93, 0x94, 0x96, 0x99, 0x9c, 0x9e, 0xa0, 0xa2, 0xa4, 0xa8, 0xab, 0xae, 0xaf, 0xaf, 0xb1, 0xb3, 0xb6, 0xb4, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbc, 0xbd, 0xbe, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb8, 0xb8, 0xb5, 0xb4, 0xb3, 0xb4, 0xb5, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xbb, 0xbc, 0xb9, 0xb6, 0xb3, 0xb2, 0xb1, 0xb0, 0xaf, 0xad, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa3, 0xa1, 0xa1, 0xa0, 0x9f, 0x9d, 0x9c, 0x9c, 0x9d, 0x9d, 0x97, 0x94, 0x8f, 0x87, 0x7c, 0x6e, 0x61, 0x58, 0x56, 0x57, 0x59, 0x5a, 0x5b, 0x5e, 0x61, 0x63, 0x64, 0x65, 0x67, 0x69, 0x6b, 0x6e, 0x71, 0x73, 0x74, 0x77, 0x7a, 0x7c, 0x7d, 0x80, 0x85, 0x89, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94, 0x91, 0x8f, 0x8c, 0x8a, 0x87, 0x83, 0x7c, 0x78, 0x71, 0x6c, 0x67, 0x65, 0x64, 0x5e, 0x54, 0x4b, 0x47, 0x54, 0x67, 0x70, 0x6e, 0x70, 0x76, 0x77, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x74, 0x76, 0x77, 0x74, 0x72, 0x73, 0x76, 0x78, 0x77, 0x75, 0x64, 0x5b, 0x57, 0x5c, 0x5f, 0x5a, 0x57, 0x59, 0x5a, 0x63, 0x67, 0x6a, 0x82, 0xa2, 0x9b, 0x77, 0x5c, 0x54, 0x59, 0x66, 0x6a, 0x66, 0x60, 0x5c, 0x55, 0x57, 0x57, 0x56, 0x59, 0x5e, 0x62, 0x63, 0x59, 0x51, 0x4f, 0x46, 0x42, 0x47, 0x4a, 0x56, 0x5d, 0x6a, 0x6a, 0x5b, 0x4a, 0x3a, 0x34, 0x3a, 0x35, 0x31, 0x2b, 0x28, 0x2b, 0x32, 0x36, 0x35, 0x39, 0x36, 0x31, 0x2b, 0x25, 0x25, 0x2d, 0x37, 0x36, 0x30, 0x2b, 0x2a, 0x2a, 0x2a, 0x2d, 0x30, 0x38, 0x32, 0x31, 0x3a, 0x4e, 0x63, 0x65, 0x56, 0x3e, 0x35, 0x3f, 0x4a, 0x43, 0x3d, 0x41, 0x43, 0x4a, 0x4f, 0x50, 0x48, 0x3d, 0x38, 0x3a, 0x3d, 0x48, 0x40, 0x41, 0x49, 0x50, 0x58, 0x5e, 0x5d, 0x5c, 0x67, 0x70, 0x60, 0x43, 0x3c, 0x4c, 0x5a, 0x60, 0x60, 0x58, 0x4d, 0x46, 0x41, 0x47, 0x54, 0x69, 0x65, 0x58, 0x48, 0x41, 0x4b, 0x61, 0x72, 0x64, 0x66, 0x6a, 0x65, 0x5c, 0x5a, 0x57, 0x4d, 0x50, 0x45, 0x3c, 0x3b, 0x38, 0x30, 0x2e, 0x31, 0x49, 0x56, 0x5a, 0x55, 0x53, 0x4d, 0x46, 0x43, 0x3f, 0x37, 0x31, 0x2f, 0x3e, 0x46, 0x33, 0x2a, 0x2e, 0x4a, 0x68, 0x72, 0x6c, 0x61, 0x57, 0x51, 0x34, 0x32, 0x2c, 0x24, 0x1f, 0x1f, 0x21, 0x23, 0x22, 0x22, 0x20, 0x1d, 0x1e, 0x23, 0x27, 0x27, 0x2c, 0x2c, 0x2d, 0x2e, 0x2f, 0x2f, 0x2f, 0x2e, 0x25, 0x1f, 0x1a, 0x19, 0x1a, 0x1a, 0x1a, 0x1c, 0x20, 0x23, 0x26, 0x24, 0x20, 0x1f, 0x22, 0x26, 0x2a, 0x2b, 0x2c, 0x2c, 0x2a, 0x26, 0x1f, 0x1b, 0x1a, 0x18, 0x17, 0x19, 0x1d, 0x1f, 0x1f, 0x1d, 0x1b, 0x1d, 0x21, 0x24, 0x25, 0x24, 0x22, 0x20, 0x23, 0x24, 0x25, 0x26, 0x26, 0x24, 0x20, 0x1d, 0x1a, 0x1e, 0x1f, 0x1b, 0x18, 0x1a, 0x1f, 0x22, 0x1e, 0x1a, 0x16, 0x16, 0x19, 0x1a, 0x18, 0x15, 0x14, 0x16, 0x1a, 0x21, 0x27, 0x2c, 0x2e, 0x2e, 0x30, 0x2f, 0x2d, 0x29, 0x26, 0x26, 0x2c, 0x31, 0x35, 0x38, 0x3c, 0x3c, 0x39, 0x35, 0x32, 0x31, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2d, 0x2c, 0x2b, 0x2d, 0x2d, 0x2e, 0x2f, 0x30, 0x30, 0x30, 0x2f, 0x31, 0x35, 0x36, 0x34, 0x31, 0x30, 0x2e, 0x2b, 0x29, 0x26, 0x25, 0x2b, 0x36, 0x42, 0x50, 0x5b, 0x67, 0x69, 0x63, 0x55, 0x4d, 0x50, 0x58, 0x5b, 0x63, 0x66, 0x6c, 0x6c, 0x60, 0x52, 0x4f, 0x55, 0x5c, 0x5a, 0x4c, 0x35, 0x27, 0x27, 0x2a, 0x28, 0x24, 0x29, 0x2d, 0x2c, 0x27, 0x22, 0x21, 0x21, 0x28, 0x28, 0x2a, 0x2e, 0x32, 0x34, 0x33, 0x31, 0x2b, 0x2b, 0x2b, 0x2a, 0x27, 0x27, 0x2b, 0x2f, 0x32, 0x38, 0x3e, 0x3f, 0x3e, 0x41, 0x49, 0x50, 0x4b, 0x46, 0x42, 0x42, 0x48, 0x4d, 0x4e, 0x4b, 0x51, 0x53, 0x57, 0x58, 0x57, 0x53, 0x4e, 0x4b, 0x46, 0x48, 0x4b, 0x4d, 0x4f, 0x52, 0x57, 0x5b, 0x5e, 0x5e, 0x5c, 0x5c, 0x5b, 0x5b, 0x5a, 0x5a, 0x56, 0x58, 0x58, 0x59, 0x5f, 0x68, 0x6e, 0x6f, 0x6a, 0x71, 0x6d, 0x5c, 0x49, 0x3f, 0x3a, 0x38, 0x42, 0x40, 0x40, 0x43, 0x47, 0x4a, 0x4f, 0x53, 0x72, 0x7d, 0x7e, 0x76, 0x6f, 0x66, 0x5f, 0x5f, 0x5e, 0x61, 0x61, 0x62, 0x6e, 0x80, 0x87, 0x83, 0x7b, 0x79, 0x87, 0x97, 0x9d, 0xa0, 0x9a, 0x8a, 0x89, 0x87, 0x86, 0x87, 0x89, 0x8a, 0x89, 0x87, 0x87, 0x88, 0x8a, 0x8b, 0x8c, 0x8f, 0x92, 0x94, 0x96, 0x98, 0x9c, 0x9f, 0xa1, 0xa3, 0xa5, 0xa7, 0xaa, 0xac, 0xaf, 0xb0, 0xaf, 0xaf, 0xb1, 0xb3, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb9, 0xb9, 0xb8, 0xb8, 0xb7, 0xb7, 0xb7, 0xb7, 0xb5, 0xb4, 0xb3, 0xb3, 0xb4, 0xb4, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xaf, 0xb0, 0xb1, 0xb3, 0xb5, 0xb6, 0xb7, 0xbb, 0xbc, 0xbc, 0xbd, 0xbd, 0xbe, 0xbf, 0xc0, 0xbf, 0xbd, 0xba, 0xb8, 0xb7, 0xb5, 0xb3, 0xb2, 0xb1, 0xb0, 0xaf, 0xae, 0xad, 0xaa, 0xa7, 0xa5, 0xa5, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0xa1, 0xa2, 0x9e, 0x9b, 0x98, 0x94, 0x8d, 0x82, 0x74, 0x6a, 0x5a, 0x57, 0x52, 0x4f, 0x4f, 0x50, 0x52, 0x53, 0x58, 0x59, 0x5c, 0x5d, 0x5f, 0x62, 0x65, 0x67, 0x67, 0x6b, 0x6f, 0x73, 0x76, 0x7b, 0x82, 0x87, 0x8a, 0x8d, 0x90, 0x92, 0x93, 0x93, 0x92, 0x92, 0x91, 0x8f, 0x8d, 0x8b, 0x88, 0x83, 0x7d, 0x78, 0x72, 0x6c, 0x66, 0x64, 0x62, 0x5c, 0x52, 0x4b, 0x4f, 0x6f, 0x70, 0x62, 0x6b, 0x6f, 0x6c, 0x75, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6e, 0x70, 0x72, 0x74, 0x73, 0x71, 0x70, 0x71, 0x73, 0x73, 0x73, 0x6d, 0x65, 0x5d, 0x5b, 0x5b, 0x58, 0x54, 0x51, 0x4f, 0x51, 0x57, 0x74, 0x9c, 0xa3, 0x7e, 0x56, 0x4f, 0x58, 0x64, 0x72, 0x7b, 0x74, 0x67, 0x63, 0x5f, 0x61, 0x5f, 0x5a, 0x5d, 0x69, 0x79, 0x83, 0x67, 0x55, 0x52, 0x4c, 0x4b, 0x4d, 0x4b, 0x5b, 0x63, 0x61, 0x51, 0x41, 0x3c, 0x39, 0x3f, 0x4f, 0x4a, 0x41, 0x33, 0x2c, 0x30, 0x39, 0x3e, 0x3e, 0x3c, 0x39, 0x34, 0x30, 0x29, 0x26, 0x2a, 0x31, 0x37, 0x32, 0x2e, 0x2c, 0x2a, 0x29, 0x2c, 0x30, 0x42, 0x46, 0x45, 0x4b, 0x5e, 0x6a, 0x61, 0x53, 0x37, 0x3a, 0x49, 0x57, 0x54, 0x47, 0x44, 0x4a, 0x4d, 0x4f, 0x4e, 0x44, 0x37, 0x32, 0x3c, 0x48, 0x59, 0x4f, 0x3e, 0x39, 0x48, 0x59, 0x61, 0x64, 0x65, 0x6d, 0x69, 0x4c, 0x2f, 0x36, 0x51, 0x60, 0x64, 0x5c, 0x4a, 0x3e, 0x3c, 0x3f, 0x49, 0x57, 0x65, 0x5d, 0x4d, 0x3d, 0x3c, 0x4d, 0x63, 0x71, 0x6b, 0x67, 0x68, 0x67, 0x5e, 0x59, 0x5b, 0x5b, 0x5f, 0x53, 0x46, 0x3a, 0x2b, 0x21, 0x27, 0x35, 0x52, 0x5d, 0x61, 0x5e, 0x5b, 0x4f, 0x3f, 0x36, 0x37, 0x2c, 0x2d, 0x33, 0x3e, 0x3a, 0x2b, 0x30, 0x4e, 0x68, 0x7c, 0x79, 0x6d, 0x65, 0x5d, 0x53, 0x34, 0x34, 0x31, 0x2a, 0x24, 0x21, 0x22, 0x24, 0x24, 0x27, 0x28, 0x26, 0x26, 0x2a, 0x2a, 0x28, 0x2b, 0x2b, 0x2a, 0x2a, 0x2b, 0x2c, 0x2b, 0x2b, 0x26, 0x1f, 0x19, 0x19, 0x1c, 0x1d, 0x1e, 0x1e, 0x20, 0x23, 0x26, 0x25, 0x22, 0x20, 0x22, 0x25, 0x29, 0x2c, 0x30, 0x33, 0x32, 0x2c, 0x23, 0x1d, 0x16, 0x18, 0x1b, 0x1e, 0x1f, 0x1f, 0x1d, 0x1c, 0x1d, 0x1b, 0x1b, 0x1f, 0x25, 0x27, 0x25, 0x21, 0x25, 0x25, 0x27, 0x29, 0x2b, 0x29, 0x25, 0x22, 0x1c, 0x20, 0x22, 0x1d, 0x18, 0x1b, 0x21, 0x26, 0x23, 0x1e, 0x19, 0x18, 0x1a, 0x1a, 0x18, 0x14, 0x16, 0x17, 0x19, 0x20, 0x28, 0x30, 0x35, 0x37, 0x34, 0x31, 0x2d, 0x27, 0x22, 0x21, 0x26, 0x2c, 0x34, 0x35, 0x37, 0x38, 0x36, 0x31, 0x2a, 0x26, 0x28, 0x29, 0x2a, 0x2b, 0x2d, 0x2e, 0x2d, 0x2c, 0x2c, 0x2b, 0x2a, 0x2b, 0x2d, 0x2c, 0x28, 0x25, 0x27, 0x2a, 0x2d, 0x30, 0x34, 0x35, 0x31, 0x2b, 0x26, 0x28, 0x2e, 0x38, 0x42, 0x4e, 0x5c, 0x67, 0x68, 0x73, 0x78, 0x71, 0x68, 0x62, 0x5c, 0x56, 0x50, 0x4a, 0x4b, 0x52, 0x52, 0x47, 0x41, 0x42, 0x53, 0x5f, 0x5c, 0x43, 0x2c, 0x28, 0x2a, 0x2a, 0x2a, 0x2e, 0x31, 0x2f, 0x29, 0x24, 0x23, 0x24, 0x29, 0x28, 0x2a, 0x2e, 0x34, 0x3a, 0x3c, 0x3c, 0x39, 0x37, 0x35, 0x32, 0x2e, 0x2d, 0x31, 0x35, 0x3a, 0x3f, 0x43, 0x40, 0x3b, 0x3c, 0x45, 0x4e, 0x52, 0x47, 0x41, 0x44, 0x48, 0x48, 0x49, 0x4d, 0x48, 0x4c, 0x52, 0x54, 0x53, 0x50, 0x4c, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x4a, 0x4f, 0x54, 0x58, 0x5f, 0x5e, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x56, 0x57, 0x59, 0x5a, 0x5a, 0x5e, 0x64, 0x65, 0x62, 0x5e, 0x6c, 0x71, 0x63, 0x53, 0x48, 0x3e, 0x34, 0x3a, 0x41, 0x4e, 0x5c, 0x64, 0x69, 0x70, 0x76, 0x76, 0x7c, 0x75, 0x68, 0x61, 0x5e, 0x5d, 0x62, 0x61, 0x65, 0x65, 0x65, 0x6f, 0x7f, 0x87, 0x85, 0x84, 0x7a, 0x80, 0x8d, 0x94, 0x9c, 0x9a, 0x8b, 0x8b, 0x88, 0x87, 0x88, 0x8b, 0x8c, 0x8a, 0x88, 0x87, 0x88, 0x8a, 0x8b, 0x8d, 0x90, 0x93, 0x95, 0x98, 0x9a, 0x9d, 0xa0, 0xa3, 0xa5, 0xa8, 0xa9, 0xa9, 0xac, 0xaf, 0xaf, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xb9, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb5, 0xb4, 0xb4, 0xb4, 0xb5, 0xb5, 0xb4, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xae, 0xae, 0xad, 0xac, 0xab, 0xaa, 0xaa, 0xa9, 0xab, 0xab, 0xac, 0xae, 0xb0, 0xb3, 0xb6, 0xb8, 0xbc, 0xbd, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc1, 0xbf, 0xbc, 0xba, 0xb8, 0xb6, 0xb4, 0xb2, 0xb3, 0xb2, 0xb1, 0xb0, 0xaf, 0xad, 0xaa, 0xa7, 0xa8, 0xa7, 0xa6, 0xa4, 0xa3, 0xa3, 0xa4, 0xa5, 0xa2, 0x9f, 0x9c, 0x9c, 0x9b, 0x94, 0x88, 0x7f, 0x70, 0x68, 0x5e, 0x55, 0x52, 0x51, 0x52, 0x52, 0x4f, 0x51, 0x53, 0x55, 0x57, 0x5a, 0x5d, 0x5f, 0x5f, 0x64, 0x69, 0x6e, 0x72, 0x79, 0x81, 0x87, 0x8b, 0x8d, 0x91, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x8a, 0x89, 0x87, 0x83, 0x7c, 0x77, 0x72, 0x6b, 0x65, 0x62, 0x60, 0x5a, 0x51, 0x4b, 0x6b, 0x70, 0x76, 0x6b, 0x5d, 0x67, 0x71, 0x67, 0x6d, 0x6d, 0x6c, 0x6a, 0x67, 0x66, 0x68, 0x6a, 0x72, 0x72, 0x70, 0x6d, 0x6a, 0x69, 0x6b, 0x6d, 0x6c, 0x6e, 0x6b, 0x64, 0x62, 0x64, 0x64, 0x61, 0x55, 0x4f, 0x55, 0x7a, 0x9d, 0x91, 0x6d, 0x5d, 0x51, 0x66, 0x76, 0x84, 0x8f, 0x82, 0x6b, 0x63, 0x61, 0x5b, 0x53, 0x52, 0x5d, 0x6a, 0x6e, 0x6b, 0x68, 0x50, 0x4d, 0x4a, 0x4a, 0x4a, 0x45, 0x56, 0x5d, 0x59, 0x4b, 0x47, 0x4f, 0x50, 0x53, 0x63, 0x62, 0x55, 0x43, 0x36, 0x36, 0x3e, 0x44, 0x44, 0x3f, 0x3b, 0x38, 0x36, 0x31, 0x2c, 0x2b, 0x2e, 0x36, 0x34, 0x31, 0x2e, 0x2a, 0x27, 0x2a, 0x2e, 0x4b, 0x58, 0x58, 0x5b, 0x6b, 0x6e, 0x5f, 0x53, 0x45, 0x47, 0x4d, 0x53, 0x4f, 0x41, 0x41, 0x50, 0x55, 0x52, 0x4a, 0x3a, 0x2a, 0x2a, 0x40, 0x59, 0x59, 0x4c, 0x2f, 0x26, 0x46, 0x64, 0x67, 0x62, 0x67, 0x6b, 0x5d, 0x3d, 0x2e, 0x46, 0x63, 0x69, 0x60, 0x58, 0x4a, 0x43, 0x46, 0x47, 0x4a, 0x52, 0x64, 0x5d, 0x4d, 0x40, 0x44, 0x58, 0x6c, 0x76, 0x73, 0x6c, 0x70, 0x72, 0x65, 0x5c, 0x68, 0x77, 0x68, 0x57, 0x44, 0x33, 0x26, 0x25, 0x38, 0x4e, 0x61, 0x67, 0x63, 0x5d, 0x5a, 0x51, 0x42, 0x3b, 0x47, 0x45, 0x46, 0x3d, 0x34, 0x2e, 0x2e, 0x44, 0x5e, 0x61, 0x65, 0x6b, 0x72, 0x70, 0x61, 0x51, 0x31, 0x37, 0x39, 0x30, 0x25, 0x1f, 0x22, 0x25, 0x2b, 0x2a, 0x28, 0x28, 0x29, 0x2c, 0x2f, 0x31, 0x2d, 0x2a, 0x29, 0x2c, 0x2b, 0x26, 0x23, 0x23, 0x24, 0x20, 0x1c, 0x1a, 0x1b, 0x1d, 0x1d, 0x1d, 0x21, 0x20, 0x1f, 0x21, 0x23, 0x25, 0x24, 0x23, 0x24, 0x22, 0x25, 0x2b, 0x2d, 0x28, 0x22, 0x20, 0x1c, 0x19, 0x1a, 0x1f, 0x23, 0x22, 0x1e, 0x1c, 0x18, 0x1a, 0x1b, 0x1d, 0x23, 0x28, 0x26, 0x1f, 0x25, 0x21, 0x23, 0x2a, 0x2e, 0x2c, 0x29, 0x28, 0x23, 0x22, 0x21, 0x20, 0x1d, 0x1a, 0x1d, 0x21, 0x24, 0x21, 0x1d, 0x1a, 0x17, 0x15, 0x12, 0x10, 0x11, 0x14, 0x18, 0x1e, 0x24, 0x2a, 0x31, 0x35, 0x37, 0x38, 0x34, 0x2c, 0x24, 0x22, 0x22, 0x22, 0x2d, 0x2f, 0x32, 0x34, 0x34, 0x30, 0x2c, 0x29, 0x27, 0x2a, 0x2a, 0x29, 0x2b, 0x2f, 0x2e, 0x29, 0x29, 0x2b, 0x2c, 0x2b, 0x2a, 0x2a, 0x2c, 0x2e, 0x2c, 0x2e, 0x31, 0x34, 0x35, 0x32, 0x2d, 0x29, 0x28, 0x29, 0x2a, 0x31, 0x40, 0x50, 0x58, 0x58, 0x54, 0x59, 0x60, 0x67, 0x6c, 0x6e, 0x70, 0x70, 0x67, 0x5c, 0x54, 0x54, 0x56, 0x50, 0x46, 0x3f, 0x43, 0x48, 0x45, 0x3a, 0x33, 0x32, 0x30, 0x29, 0x28, 0x2d, 0x30, 0x2f, 0x29, 0x25, 0x26, 0x29, 0x24, 0x26, 0x2a, 0x32, 0x39, 0x3d, 0x3c, 0x39, 0x3c, 0x37, 0x38, 0x3d, 0x3a, 0x30, 0x2e, 0x34, 0x3f, 0x3f, 0x40, 0x40, 0x40, 0x40, 0x40, 0x3f, 0x42, 0x45, 0x48, 0x4a, 0x49, 0x48, 0x47, 0x47, 0x46, 0x48, 0x4a, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4c, 0x4e, 0x50, 0x52, 0x57, 0x5a, 0x5b, 0x58, 0x58, 0x5c, 0x60, 0x60, 0x5a, 0x5a, 0x5b, 0x5d, 0x60, 0x62, 0x64, 0x64, 0x5d, 0x5f, 0x5d, 0x57, 0x4c, 0x43, 0x3e, 0x3c, 0x41, 0x49, 0x52, 0x57, 0x58, 0x5a, 0x61, 0x67, 0x65, 0x6a, 0x6f, 0x6f, 0x68, 0x61, 0x5d, 0x5b, 0x62, 0x64, 0x66, 0x66, 0x6a, 0x73, 0x81, 0x8b, 0x86, 0x7e, 0x7c, 0x88, 0x8a, 0x8d, 0x93, 0x85, 0x89, 0x88, 0x88, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8a, 0x8a, 0x8c, 0x8d, 0x90, 0x92, 0x94, 0x95, 0x97, 0x9a, 0x9e, 0xa2, 0xa5, 0xa6, 0xa6, 0xa6, 0xa9, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xac, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb4, 0xb2, 0xb0, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xac, 0xaa, 0xa7, 0xa6, 0xa4, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa4, 0xa5, 0xa8, 0xab, 0xae, 0xb3, 0xb6, 0xb8, 0xbc, 0xbe, 0xc0, 0xc1, 0xc1, 0xc1, 0xc2, 0xc4, 0xc2, 0xc1, 0xbf, 0xbd, 0xbb, 0xba, 0xb9, 0xb8, 0xb6, 0xb4, 0xb2, 0xb1, 0xb0, 0xaf, 0xac, 0xab, 0xa7, 0xa7, 0xa8, 0xa7, 0xa7, 0xa5, 0xa4, 0xa3, 0xa4, 0xa5, 0xa6, 0xa5, 0xa0, 0x9b, 0x97, 0x95, 0x8a, 0x84, 0x7a, 0x6f, 0x64, 0x5d, 0x58, 0x56, 0x57, 0x56, 0x56, 0x56, 0x58, 0x5a, 0x5d, 0x5f, 0x64, 0x68, 0x6f, 0x75, 0x7a, 0x80, 0x86, 0x8a, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x8e, 0x8c, 0x8d, 0x8b, 0x88, 0x86, 0x84, 0x81, 0x7c, 0x78, 0x73, 0x6f, 0x64, 0x5f, 0x62, 0x58, 0x51, 0x5b, 0x73, 0x81, 0x80, 0x6d, 0x61, 0x66, 0x6a, 0x68, 0x65, 0x67, 0x69, 0x67, 0x62, 0x5e, 0x62, 0x69, 0x6f, 0x70, 0x6f, 0x6a, 0x65, 0x61, 0x5c, 0x58, 0x56, 0x5d, 0x60, 0x5a, 0x50, 0x4c, 0x51, 0x57, 0x52, 0x46, 0x67, 0x90, 0x8e, 0x7c, 0x6a, 0x53, 0x5b, 0x65, 0x7e, 0x95, 0x93, 0x7b, 0x68, 0x64, 0x69, 0x69, 0x5f, 0x56, 0x5a, 0x60, 0x64, 0x68, 0x59, 0x4c, 0x42, 0x4c, 0x44, 0x54, 0x54, 0x52, 0x60, 0x5c, 0x53, 0x4a, 0x4a, 0x51, 0x57, 0x58, 0x52, 0x46, 0x3e, 0x3c, 0x3b, 0x40, 0x43, 0x3f, 0x42, 0x41, 0x52, 0x54, 0x4e, 0x38, 0x36, 0x31, 0x39, 0x31, 0x31, 0x37, 0x35, 0x2a, 0x27, 0x2c, 0x3e, 0x58, 0x6f, 0x74, 0x70, 0x6b, 0x60, 0x53, 0x4d, 0x4e, 0x56, 0x4c, 0x45, 0x36, 0x3f, 0x48, 0x4f, 0x4a, 0x3e, 0x29, 0x1c, 0x2d, 0x4d, 0x60, 0x69, 0x47, 0x2c, 0x34, 0x4f, 0x62, 0x65, 0x62, 0x64, 0x65, 0x60, 0x50, 0x49, 0x57, 0x66, 0x66, 0x62, 0x60, 0x5a, 0x55, 0x4c, 0x3d, 0x3c, 0x4a, 0x46, 0x45, 0x3c, 0x31, 0x33, 0x45, 0x55, 0x5c, 0x5a, 0x53, 0x45, 0x3d, 0x4a, 0x5a, 0x56, 0x45, 0x40, 0x41, 0x3c, 0x30, 0x2d, 0x3a, 0x4e, 0x5b, 0x65, 0x71, 0x74, 0x6e, 0x64, 0x54, 0x48, 0x47, 0x4f, 0x51, 0x4b, 0x46, 0x42, 0x34, 0x32, 0x45, 0x51, 0x61, 0x5e, 0x59, 0x51, 0x48, 0x4d, 0x50, 0x3b, 0x38, 0x36, 0x33, 0x2c, 0x26, 0x29, 0x31, 0x2a, 0x2b, 0x2b, 0x2d, 0x2f, 0x31, 0x33, 0x35, 0x34, 0x33, 0x34, 0x34, 0x30, 0x28, 0x23, 0x23, 0x21, 0x1f, 0x1c, 0x1b, 0x1c, 0x1d, 0x1f, 0x1f, 0x1f, 0x20, 0x20, 0x20, 0x20, 0x21, 0x23, 0x25, 0x23, 0x20, 0x1f, 0x22, 0x22, 0x1f, 0x1b, 0x1a, 0x1c, 0x1a, 0x1b, 0x20, 0x24, 0x23, 0x1f, 0x1d, 0x18, 0x19, 0x19, 0x1a, 0x1f, 0x25, 0x27, 0x24, 0x24, 0x20, 0x21, 0x27, 0x2b, 0x2a, 0x27, 0x26, 0x25, 0x23, 0x22, 0x22, 0x1f, 0x1c, 0x1d, 0x1f, 0x23, 0x20, 0x1d, 0x1a, 0x17, 0x16, 0x15, 0x14, 0x15, 0x16, 0x17, 0x1a, 0x1f, 0x27, 0x2f, 0x35, 0x35, 0x34, 0x30, 0x29, 0x23, 0x20, 0x1c, 0x18, 0x21, 0x24, 0x28, 0x2c, 0x2e, 0x2e, 0x2d, 0x2c, 0x2b, 0x2b, 0x2a, 0x28, 0x2b, 0x31, 0x33, 0x31, 0x29, 0x2a, 0x2c, 0x2c, 0x2c, 0x2b, 0x2b, 0x2b, 0x2d, 0x2f, 0x31, 0x32, 0x32, 0x2f, 0x2c, 0x2a, 0x2c, 0x2e, 0x32, 0x37, 0x41, 0x49, 0x4a, 0x45, 0x45, 0x4f, 0x5d, 0x67, 0x6a, 0x6a, 0x6a, 0x6a, 0x70, 0x6b, 0x6c, 0x74, 0x77, 0x6b, 0x57, 0x48, 0x43, 0x43, 0x3b, 0x30, 0x2b, 0x2e, 0x2d, 0x29, 0x29, 0x2d, 0x2f, 0x2d, 0x28, 0x24, 0x26, 0x28, 0x25, 0x28, 0x2e, 0x35, 0x3b, 0x3f, 0x3f, 0x3e, 0x3c, 0x3a, 0x3b, 0x3e, 0x3b, 0x35, 0x35, 0x39, 0x3c, 0x3d, 0x3f, 0x40, 0x41, 0x40, 0x3f, 0x3e, 0x42, 0x44, 0x47, 0x48, 0x48, 0x47, 0x46, 0x46, 0x47, 0x47, 0x47, 0x46, 0x47, 0x48, 0x49, 0x4b, 0x4a, 0x49, 0x48, 0x47, 0x48, 0x4b, 0x4e, 0x51, 0x54, 0x57, 0x59, 0x57, 0x57, 0x5c, 0x5f, 0x60, 0x5a, 0x59, 0x58, 0x5b, 0x60, 0x62, 0x61, 0x5e, 0x5c, 0x5c, 0x59, 0x51, 0x45, 0x3b, 0x36, 0x34, 0x3a, 0x3d, 0x41, 0x43, 0x46, 0x4d, 0x58, 0x60, 0x6b, 0x6c, 0x6b, 0x67, 0x61, 0x60, 0x65, 0x6a, 0x69, 0x67, 0x64, 0x63, 0x65, 0x6e, 0x7f, 0x8f, 0x8b, 0x82, 0x7b, 0x81, 0x80, 0x83, 0x8e, 0x84, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8b, 0x8b, 0x8c, 0x8b, 0x8b, 0x8c, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x98, 0x9a, 0x9e, 0xa1, 0xa3, 0xa4, 0xa4, 0xa3, 0xa6, 0xa7, 0xa9, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xae, 0xb0, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb3, 0xb3, 0xaf, 0xae, 0xab, 0xaa, 0xab, 0xab, 0xaa, 0xa9, 0xab, 0xa9, 0xa7, 0xa6, 0xa6, 0xa5, 0xa3, 0xa2, 0x9e, 0x9d, 0x9c, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x9b, 0x9e, 0xa2, 0xa7, 0xab, 0xb0, 0xb6, 0xb9, 0xbd, 0xbf, 0xc2, 0xc3, 0xc3, 0xc4, 0xc4, 0xc5, 0xc4, 0xc3, 0xc1, 0xbf, 0xbd, 0xbb, 0xba, 0xb9, 0xb7, 0xb5, 0xb3, 0xb2, 0xb1, 0xb0, 0xad, 0xac, 0xa9, 0xa9, 0xa9, 0xa9, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa7, 0xa8, 0xa6, 0xa3, 0x9f, 0x9d, 0x9b, 0x9c, 0x98, 0x92, 0x8b, 0x84, 0x7d, 0x79, 0x76, 0x70, 0x6f, 0x6d, 0x6c, 0x6d, 0x6f, 0x72, 0x74, 0x79, 0x7c, 0x81, 0x85, 0x88, 0x8b, 0x8f, 0x92, 0x91, 0x91, 0x91, 0x92, 0x92, 0x91, 0x8f, 0x8d, 0x8e, 0x8b, 0x88, 0x86, 0x85, 0x82, 0x7d, 0x79, 0x74, 0x70, 0x68, 0x63, 0x60, 0x59, 0x5a, 0x64, 0x74, 0x83, 0x8a, 0x7f, 0x6b, 0x60, 0x61, 0x65, 0x5a, 0x5c, 0x5f, 0x62, 0x60, 0x5f, 0x62, 0x68, 0x6a, 0x6b, 0x6a, 0x68, 0x65, 0x60, 0x56, 0x4d, 0x48, 0x56, 0x5d, 0x5b, 0x5b, 0x5e, 0x59, 0x4e, 0x46, 0x62, 0x8d, 0x98, 0x7e, 0x6a, 0x61, 0x51, 0x63, 0x6b, 0x7d, 0x8c, 0x86, 0x72, 0x68, 0x6c, 0x71, 0x69, 0x58, 0x51, 0x5a, 0x5f, 0x59, 0x54, 0x55, 0x4e, 0x46, 0x4e, 0x48, 0x53, 0x51, 0x50, 0x5d, 0x60, 0x60, 0x5b, 0x57, 0x56, 0x55, 0x53, 0x49, 0x43, 0x42, 0x42, 0x3f, 0x41, 0x42, 0x3d, 0x3c, 0x3b, 0x54, 0x66, 0x6e, 0x57, 0x46, 0x33, 0x37, 0x2d, 0x28, 0x2a, 0x2c, 0x29, 0x2b, 0x30, 0x32, 0x52, 0x71, 0x7d, 0x79, 0x6f, 0x5f, 0x4f, 0x4d, 0x49, 0x4e, 0x47, 0x44, 0x36, 0x3e, 0x47, 0x53, 0x4e, 0x40, 0x27, 0x18, 0x2e, 0x5b, 0x78, 0x61, 0x41, 0x2b, 0x36, 0x4e, 0x5a, 0x58, 0x54, 0x6a, 0x6c, 0x5e, 0x4a, 0x47, 0x57, 0x63, 0x65, 0x64, 0x6a, 0x63, 0x50, 0x40, 0x33, 0x2e, 0x31, 0x1e, 0x23, 0x23, 0x1f, 0x24, 0x32, 0x3d, 0x3f, 0x37, 0x2c, 0x2a, 0x3a, 0x51, 0x5d, 0x5e, 0x5a, 0x4e, 0x49, 0x40, 0x38, 0x39, 0x45, 0x57, 0x65, 0x71, 0x70, 0x6b, 0x6c, 0x70, 0x64, 0x51, 0x46, 0x48, 0x57, 0x5d, 0x5a, 0x4b, 0x30, 0x2a, 0x3d, 0x64, 0x67, 0x60, 0x6a, 0x74, 0x6a, 0x5e, 0x51, 0x48, 0x42, 0x42, 0x44, 0x3d, 0x2e, 0x28, 0x2b, 0x29, 0x2a, 0x2c, 0x2e, 0x30, 0x31, 0x32, 0x33, 0x2d, 0x2f, 0x31, 0x31, 0x2d, 0x26, 0x23, 0x23, 0x21, 0x21, 0x20, 0x1f, 0x1e, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x21, 0x20, 0x21, 0x25, 0x29, 0x27, 0x22, 0x1d, 0x1d, 0x1d, 0x1b, 0x1a, 0x1a, 0x1c, 0x1a, 0x1c, 0x21, 0x24, 0x21, 0x1e, 0x1c, 0x1b, 0x1b, 0x1a, 0x18, 0x1b, 0x22, 0x27, 0x28, 0x24, 0x20, 0x1e, 0x21, 0x24, 0x25, 0x23, 0x22, 0x22, 0x1f, 0x1e, 0x1f, 0x1e, 0x1c, 0x1b, 0x1c, 0x20, 0x1f, 0x1d, 0x19, 0x16, 0x14, 0x14, 0x14, 0x16, 0x17, 0x18, 0x1a, 0x1d, 0x23, 0x29, 0x2e, 0x33, 0x33, 0x31, 0x2e, 0x2d, 0x2c, 0x28, 0x24, 0x26, 0x27, 0x28, 0x2a, 0x2b, 0x2c, 0x2c, 0x2c, 0x29, 0x29, 0x28, 0x28, 0x2a, 0x2f, 0x31, 0x30, 0x2c, 0x2d, 0x2e, 0x30, 0x31, 0x30, 0x2e, 0x2c, 0x33, 0x35, 0x36, 0x35, 0x32, 0x30, 0x2f, 0x2f, 0x32, 0x36, 0x3b, 0x43, 0x4d, 0x55, 0x58, 0x56, 0x4c, 0x51, 0x56, 0x58, 0x58, 0x5b, 0x62, 0x69, 0x61, 0x65, 0x6e, 0x76, 0x73, 0x63, 0x4e, 0x40, 0x52, 0x4a, 0x3c, 0x30, 0x2f, 0x34, 0x35, 0x32, 0x2c, 0x2f, 0x31, 0x2e, 0x29, 0x26, 0x27, 0x2a, 0x27, 0x2b, 0x31, 0x36, 0x3a, 0x3b, 0x3c, 0x3d, 0x3c, 0x3d, 0x3e, 0x3d, 0x3d, 0x3d, 0x3e, 0x3f, 0x3c, 0x3d, 0x3f, 0x41, 0x41, 0x3f, 0x3d, 0x3b, 0x41, 0x43, 0x45, 0x45, 0x45, 0x44, 0x44, 0x45, 0x44, 0x42, 0x41, 0x41, 0x42, 0x46, 0x4a, 0x4d, 0x4b, 0x4a, 0x47, 0x45, 0x46, 0x49, 0x4c, 0x4e, 0x51, 0x54, 0x55, 0x54, 0x55, 0x57, 0x5a, 0x5a, 0x57, 0x55, 0x54, 0x59, 0x5f, 0x62, 0x5f, 0x5b, 0x4f, 0x51, 0x52, 0x4f, 0x4b, 0x49, 0x4a, 0x4c, 0x49, 0x4a, 0x4b, 0x4d, 0x50, 0x58, 0x62, 0x6a, 0x5f, 0x60, 0x5f, 0x5b, 0x59, 0x5e, 0x69, 0x73, 0x6d, 0x68, 0x66, 0x66, 0x65, 0x69, 0x7a, 0x8d, 0x8f, 0x8a, 0x82, 0x82, 0x7f, 0x80, 0x8b, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8c, 0x8b, 0x8b, 0x8c, 0x8c, 0x8d, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x98, 0x9a, 0x9d, 0x9f, 0xa1, 0xa1, 0xa1, 0xa0, 0xa3, 0xa5, 0xa7, 0xa8, 0xa7, 0xa7, 0xa6, 0xa7, 0xa5, 0xa6, 0xa7, 0xa8, 0xaa, 0xab, 0xac, 0xad, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xab, 0xa9, 0xa8, 0xa7, 0xa6, 0xa4, 0xa2, 0xa5, 0xa2, 0x9f, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x93, 0x98, 0x9e, 0xa3, 0xa7, 0xac, 0xb3, 0xb8, 0xbd, 0xbf, 0xc3, 0xc5, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc4, 0xc1, 0xbf, 0xbc, 0xba, 0xb9, 0xb7, 0xb5, 0xb4, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa6, 0xa8, 0xa8, 0xa8, 0xa6, 0xa4, 0xa3, 0xa3, 0xa4, 0xa3, 0xa2, 0xa0, 0x9c, 0x98, 0x95, 0x92, 0x90, 0x8e, 0x8c, 0x8a, 0x89, 0x8a, 0x8c, 0x8d, 0x90, 0x92, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x97, 0x96, 0x96, 0x95, 0x93, 0x90, 0x8d, 0x8d, 0x8b, 0x88, 0x86, 0x85, 0x82, 0x7d, 0x7a, 0x73, 0x6c, 0x68, 0x64, 0x5b, 0x59, 0x62, 0x69, 0x6a, 0x7a, 0x8d, 0x92, 0x7f, 0x67, 0x62, 0x6a, 0x64, 0x63, 0x62, 0x60, 0x5d, 0x5b, 0x5f, 0x64, 0x6c, 0x6a, 0x66, 0x65, 0x66, 0x63, 0x59, 0x4d, 0x46, 0x5c, 0x69, 0x66, 0x6a, 0x75, 0x70, 0x5e, 0x6d, 0x90, 0xa2, 0x8b, 0x71, 0x6b, 0x64, 0x55, 0x66, 0x6a, 0x75, 0x7a, 0x71, 0x63, 0x64, 0x70, 0x72, 0x6d, 0x5d, 0x50, 0x50, 0x50, 0x4e, 0x4f, 0x4b, 0x4f, 0x4a, 0x50, 0x51, 0x55, 0x4e, 0x4f, 0x56, 0x5f, 0x66, 0x64, 0x5b, 0x53, 0x4c, 0x49, 0x44, 0x44, 0x47, 0x45, 0x3f, 0x41, 0x43, 0x3e, 0x37, 0x35, 0x54, 0x76, 0x8d, 0x75, 0x57, 0x38, 0x30, 0x2e, 0x2e, 0x31, 0x32, 0x2e, 0x29, 0x26, 0x3a, 0x53, 0x6d, 0x75, 0x71, 0x6a, 0x5f, 0x56, 0x58, 0x4b, 0x4c, 0x4a, 0x4c, 0x3e, 0x46, 0x4f, 0x59, 0x4f, 0x43, 0x36, 0x34, 0x47, 0x5e, 0x65, 0x53, 0x39, 0x2e, 0x44, 0x5f, 0x65, 0x61, 0x60, 0x6c, 0x6d, 0x55, 0x3d, 0x44, 0x56, 0x5e, 0x61, 0x61, 0x67, 0x60, 0x4f, 0x3c, 0x2d, 0x29, 0x31, 0x55, 0x5c, 0x5d, 0x57, 0x54, 0x55, 0x52, 0x4b, 0x36, 0x36, 0x41, 0x52, 0x5d, 0x5f, 0x5f, 0x62, 0x4d, 0x43, 0x3a, 0x38, 0x3a, 0x41, 0x50, 0x5e, 0x69, 0x6f, 0x74, 0x7a, 0x77, 0x62, 0x4c, 0x45, 0x4a, 0x54, 0x53, 0x4b, 0x3e, 0x2a, 0x2e, 0x48, 0x53, 0x5d, 0x61, 0x74, 0x7f, 0x70, 0x5c, 0x4a, 0x39, 0x38, 0x3a, 0x3d, 0x38, 0x2e, 0x28, 0x29, 0x2a, 0x2b, 0x2b, 0x2c, 0x2d, 0x2e, 0x2e, 0x2e, 0x2a, 0x28, 0x27, 0x25, 0x23, 0x21, 0x20, 0x20, 0x25, 0x26, 0x26, 0x24, 0x20, 0x1e, 0x1e, 0x1f, 0x22, 0x22, 0x22, 0x22, 0x22, 0x23, 0x25, 0x26, 0x28, 0x23, 0x1e, 0x1c, 0x1d, 0x1e, 0x1e, 0x1e, 0x1b, 0x1b, 0x1e, 0x22, 0x22, 0x1e, 0x1b, 0x1a, 0x1e, 0x1e, 0x1c, 0x1a, 0x1a, 0x1e, 0x24, 0x28, 0x27, 0x22, 0x1e, 0x1e, 0x21, 0x23, 0x23, 0x23, 0x22, 0x1d, 0x1a, 0x1b, 0x1d, 0x1d, 0x1d, 0x1d, 0x1f, 0x20, 0x1f, 0x1d, 0x19, 0x16, 0x14, 0x14, 0x14, 0x17, 0x1a, 0x1d, 0x1f, 0x21, 0x23, 0x24, 0x2c, 0x2f, 0x32, 0x33, 0x36, 0x39, 0x3b, 0x3a, 0x34, 0x32, 0x30, 0x2e, 0x2c, 0x2b, 0x2b, 0x2b, 0x26, 0x28, 0x2a, 0x2d, 0x2e, 0x2f, 0x2d, 0x2c, 0x2f, 0x2e, 0x2e, 0x31, 0x33, 0x34, 0x33, 0x31, 0x36, 0x39, 0x3b, 0x39, 0x35, 0x32, 0x31, 0x33, 0x38, 0x38, 0x3b, 0x43, 0x51, 0x61, 0x6e, 0x73, 0x80, 0x7a, 0x70, 0x62, 0x56, 0x52, 0x54, 0x57, 0x59, 0x61, 0x69, 0x6b, 0x63, 0x5a, 0x55, 0x55, 0x57, 0x4a, 0x3a, 0x2f, 0x2f, 0x34, 0x35, 0x33, 0x33, 0x34, 0x35, 0x32, 0x2d, 0x2a, 0x2c, 0x2e, 0x2e, 0x32, 0x37, 0x39, 0x38, 0x37, 0x37, 0x38, 0x3b, 0x3f, 0x3f, 0x3c, 0x3d, 0x41, 0x43, 0x40, 0x40, 0x41, 0x41, 0x40, 0x3f, 0x3d, 0x3b, 0x39, 0x40, 0x41, 0x43, 0x43, 0x43, 0x43, 0x43, 0x44, 0x41, 0x3f, 0x3d, 0x3e, 0x41, 0x46, 0x4a, 0x4d, 0x4c, 0x4b, 0x49, 0x47, 0x47, 0x49, 0x4a, 0x4c, 0x50, 0x51, 0x52, 0x52, 0x51, 0x51, 0x51, 0x51, 0x50, 0x50, 0x52, 0x58, 0x5e, 0x61, 0x5f, 0x5d, 0x52, 0x53, 0x51, 0x4c, 0x46, 0x43, 0x45, 0x48, 0x43, 0x45, 0x49, 0x4d, 0x51, 0x55, 0x58, 0x5a, 0x57, 0x5b, 0x5e, 0x5d, 0x5c, 0x5e, 0x65, 0x6b, 0x6a, 0x66, 0x68, 0x6c, 0x69, 0x66, 0x71, 0x83, 0x8c, 0x90, 0x8a, 0x89, 0x84, 0x82, 0x8a, 0x88, 0x88, 0x89, 0x8b, 0x8d, 0x8d, 0x8d, 0x8c, 0x8b, 0x8d, 0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x97, 0x99, 0x9b, 0x9e, 0x9f, 0xa0, 0x9f, 0x9f, 0xa2, 0xa4, 0xa6, 0xa6, 0xa4, 0xa1, 0x9f, 0x9f, 0xa1, 0xa2, 0xa3, 0xa5, 0xa7, 0xa9, 0xaa, 0xab, 0xaa, 0xaa, 0xab, 0xab, 0xab, 0xaa, 0xaa, 0xaa, 0xa9, 0xa8, 0xa6, 0xa4, 0xa2, 0xa0, 0x9d, 0x9a, 0x9d, 0x9a, 0x97, 0x95, 0x93, 0x91, 0x90, 0x8e, 0x89, 0x87, 0x85, 0x83, 0x83, 0x86, 0x88, 0x8a, 0x91, 0x97, 0x9d, 0xa1, 0xa3, 0xa7, 0xae, 0xb4, 0xb9, 0xbc, 0xc1, 0xc4, 0xc6, 0xc6, 0xc7, 0xc7, 0xc7, 0xc6, 0xc5, 0xc2, 0xc0, 0xbd, 0xbb, 0xba, 0xb6, 0xb5, 0xb3, 0xb2, 0xb0, 0xae, 0xab, 0xa8, 0xa8, 0xa8, 0xa7, 0xa7, 0xa8, 0xa8, 0xa9, 0xa9, 0xa7, 0xa8, 0xa9, 0xa8, 0xa7, 0xa6, 0xa7, 0xa8, 0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa2, 0xa0, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9e, 0x9e, 0x9e, 0xa0, 0xa0, 0xa0, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9e, 0x9d, 0x9b, 0x9a, 0x98, 0x95, 0x92, 0x8f, 0x8d, 0x8a, 0x87, 0x85, 0x84, 0x81, 0x7d, 0x79, 0x73, 0x68, 0x67, 0x66, 0x5b, 0x5d, 0x68, 0x69, 0x61, 0x6f, 0x86, 0x96, 0x90, 0x7b, 0x6d, 0x6a, 0x71, 0x6d, 0x67, 0x5f, 0x58, 0x55, 0x5b, 0x63, 0x70, 0x6b, 0x64, 0x61, 0x63, 0x65, 0x61, 0x59, 0x71, 0x80, 0x80, 0x6e, 0x64, 0x6d, 0x72, 0x6e, 0x8a, 0x9c, 0x91, 0x74, 0x6c, 0x72, 0x6b, 0x60, 0x66, 0x66, 0x6a, 0x6c, 0x63, 0x5b, 0x62, 0x71, 0x75, 0x70, 0x5e, 0x4e, 0x4a, 0x49, 0x4b, 0x52, 0x46, 0x51, 0x4f, 0x51, 0x58, 0x59, 0x51, 0x55, 0x55, 0x5f, 0x66, 0x63, 0x57, 0x4c, 0x47, 0x46, 0x48, 0x4a, 0x4c, 0x47, 0x40, 0x44, 0x49, 0x45, 0x3c, 0x38, 0x59, 0x81, 0x9a, 0x83, 0x66, 0x48, 0x45, 0x3b, 0x2f, 0x2b, 0x2f, 0x33, 0x34, 0x32, 0x4d, 0x5d, 0x6c, 0x6d, 0x66, 0x61, 0x5f, 0x5d, 0x58, 0x45, 0x43, 0x43, 0x49, 0x3b, 0x42, 0x4c, 0x55, 0x58, 0x56, 0x46, 0x36, 0x42, 0x5e, 0x6f, 0x5b, 0x43, 0x3e, 0x57, 0x6c, 0x6b, 0x63, 0x63, 0x6c, 0x69, 0x49, 0x34, 0x47, 0x5a, 0x5b, 0x5d, 0x62, 0x5c, 0x53, 0x4a, 0x39, 0x24, 0x28, 0x3f, 0x53, 0x5c, 0x60, 0x5d, 0x5b, 0x5c, 0x57, 0x4e, 0x46, 0x52, 0x5d, 0x60, 0x63, 0x63, 0x5a, 0x4e, 0x45, 0x3f, 0x3f, 0x44, 0x44, 0x45, 0x52, 0x63, 0x6d, 0x79, 0x82, 0x7f, 0x6b, 0x4d, 0x3b, 0x3e, 0x4a, 0x4d, 0x49, 0x47, 0x45, 0x37, 0x35, 0x48, 0x5b, 0x6c, 0x6f, 0x76, 0x79, 0x6e, 0x64, 0x58, 0x64, 0x62, 0x56, 0x42, 0x32, 0x2b, 0x27, 0x24, 0x2c, 0x2b, 0x2b, 0x2b, 0x2b, 0x2d, 0x2e, 0x2f, 0x34, 0x2f, 0x27, 0x21, 0x20, 0x21, 0x22, 0x21, 0x28, 0x29, 0x29, 0x27, 0x23, 0x21, 0x20, 0x21, 0x22, 0x20, 0x20, 0x23, 0x26, 0x27, 0x24, 0x20, 0x20, 0x1e, 0x1b, 0x1a, 0x1c, 0x1f, 0x1f, 0x1e, 0x1e, 0x1e, 0x21, 0x23, 0x22, 0x1d, 0x1a, 0x1a, 0x1d, 0x1d, 0x1d, 0x1c, 0x1b, 0x1c, 0x21, 0x25, 0x29, 0x26, 0x23, 0x23, 0x28, 0x2d, 0x2e, 0x2d, 0x2a, 0x23, 0x1d, 0x1d, 0x1f, 0x20, 0x20, 0x21, 0x1e, 0x20, 0x22, 0x22, 0x20, 0x1c, 0x19, 0x16, 0x15, 0x18, 0x1a, 0x1c, 0x1d, 0x1e, 0x20, 0x21, 0x26, 0x2d, 0x31, 0x31, 0x31, 0x36, 0x3c, 0x3f, 0x3c, 0x39, 0x35, 0x30, 0x2d, 0x2b, 0x2a, 0x2a, 0x28, 0x2b, 0x2f, 0x32, 0x34, 0x33, 0x32, 0x31, 0x2e, 0x2d, 0x2c, 0x2d, 0x31, 0x34, 0x35, 0x35, 0x34, 0x38, 0x3b, 0x3a, 0x36, 0x32, 0x31, 0x32, 0x38, 0x34, 0x33, 0x39, 0x46, 0x56, 0x63, 0x6b, 0x67, 0x67, 0x67, 0x67, 0x67, 0x65, 0x62, 0x60, 0x52, 0x54, 0x54, 0x52, 0x52, 0x56, 0x5c, 0x62, 0x52, 0x46, 0x38, 0x33, 0x35, 0x36, 0x36, 0x35, 0x37, 0x38, 0x39, 0x36, 0x31, 0x2f, 0x30, 0x32, 0x35, 0x39, 0x3d, 0x3d, 0x3a, 0x37, 0x37, 0x39, 0x3b, 0x3f, 0x3f, 0x3b, 0x3c, 0x42, 0x43, 0x3f, 0x43, 0x42, 0x40, 0x3e, 0x3d, 0x3c, 0x3c, 0x3c, 0x41, 0x42, 0x44, 0x45, 0x44, 0x45, 0x46, 0x47, 0x45, 0x43, 0x41, 0x41, 0x44, 0x47, 0x48, 0x49, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x50, 0x4f, 0x4e, 0x4d, 0x50, 0x54, 0x58, 0x5b, 0x5c, 0x5d, 0x5e, 0x5c, 0x5a, 0x55, 0x4d, 0x44, 0x3f, 0x3f, 0x41, 0x3d, 0x40, 0x46, 0x4c, 0x51, 0x54, 0x54, 0x54, 0x65, 0x68, 0x6b, 0x69, 0x63, 0x5f, 0x5d, 0x5e, 0x64, 0x61, 0x65, 0x6b, 0x67, 0x61, 0x69, 0x77, 0x89, 0x94, 0x90, 0x8c, 0x86, 0x81, 0x87, 0x86, 0x88, 0x89, 0x8b, 0x8d, 0x8e, 0x8d, 0x8c, 0x8b, 0x8d, 0x8e, 0x8e, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x96, 0x97, 0x99, 0x9c, 0x9e, 0x9e, 0x9f, 0x9f, 0x9e, 0xa0, 0xa2, 0xa1, 0x9f, 0x9d, 0x9b, 0x9b, 0x9b, 0x9d, 0x9e, 0xa1, 0xa3, 0xa4, 0xa5, 0xa5, 0xa7, 0xa8, 0xa8, 0xa8, 0xa7, 0xa7, 0xa6, 0xa6, 0xa2, 0xa1, 0x9e, 0x9b, 0x99, 0x96, 0x92, 0x90, 0x91, 0x8f, 0x8d, 0x8b, 0x89, 0x86, 0x83, 0x80, 0x7e, 0x7c, 0x7a, 0x7a, 0x7c, 0x82, 0x88, 0x8c, 0x92, 0x97, 0x9d, 0xa0, 0xa1, 0xa4, 0xaa, 0xaf, 0xb4, 0xb8, 0xbd, 0xc1, 0xc4, 0xc5, 0xc6, 0xc7, 0xc7, 0xc6, 0xc5, 0xc3, 0xc1, 0xbe, 0xbc, 0xbb, 0xb6, 0xb5, 0xb3, 0xb1, 0xaf, 0xac, 0xa8, 0xa6, 0xa6, 0xa5, 0xa5, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa7, 0xa8, 0xa9, 0xa9, 0xa8, 0xa9, 0xaa, 0xab, 0xaa, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xa9, 0xaa, 0xab, 0xab, 0xaa, 0xa8, 0xa6, 0xa5, 0xa9, 0xa8, 0xa8, 0xa7, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d, 0x9b, 0x97, 0x93, 0x90, 0x8c, 0x89, 0x86, 0x83, 0x82, 0x7f, 0x7b, 0x78, 0x75, 0x69, 0x68, 0x6a, 0x65, 0x68, 0x6d, 0x67, 0x65, 0x6c, 0x7b, 0x8d, 0x97, 0x8f, 0x78, 0x62, 0x66, 0x65, 0x62, 0x5c, 0x54, 0x53, 0x5c, 0x67, 0x6e, 0x69, 0x61, 0x5d, 0x60, 0x64, 0x63, 0x5f, 0x66, 0x71, 0x76, 0x71, 0x68, 0x65, 0x65, 0x64, 0x6c, 0x77, 0x71, 0x67, 0x6b, 0x6a, 0x65, 0x6b, 0x65, 0x63, 0x64, 0x66, 0x63, 0x60, 0x68, 0x74, 0x7c, 0x6d, 0x56, 0x4b, 0x4f, 0x51, 0x4d, 0x4e, 0x54, 0x5a, 0x55, 0x4e, 0x57, 0x5a, 0x5b, 0x62, 0x5b, 0x62, 0x69, 0x67, 0x5c, 0x50, 0x4c, 0x4d, 0x4f, 0x51, 0x52, 0x4b, 0x47, 0x50, 0x55, 0x4d, 0x43, 0x42, 0x65, 0x8a, 0x9c, 0x83, 0x6f, 0x5f, 0x4a, 0x3c, 0x32, 0x3e, 0x59, 0x6b, 0x6a, 0x5f, 0x55, 0x61, 0x6e, 0x70, 0x68, 0x5e, 0x58, 0x55, 0x55, 0x42, 0x3f, 0x40, 0x47, 0x39, 0x41, 0x4c, 0x56, 0x4e, 0x47, 0x43, 0x47, 0x57, 0x63, 0x62, 0x5a, 0x46, 0x43, 0x5b, 0x6d, 0x69, 0x62, 0x64, 0x6b, 0x62, 0x42, 0x35, 0x4f, 0x60, 0x5a, 0x57, 0x64, 0x5b, 0x4c, 0x3e, 0x30, 0x25, 0x2f, 0x49, 0x50, 0x56, 0x59, 0x56, 0x58, 0x5e, 0x5d, 0x57, 0x4f, 0x5a, 0x60, 0x61, 0x65, 0x67, 0x5a, 0x48, 0x3b, 0x3f, 0x49, 0x52, 0x4e, 0x49, 0x57, 0x6c, 0x72, 0x79, 0x77, 0x6a, 0x56, 0x3f, 0x38, 0x41, 0x56, 0x54, 0x4b, 0x48, 0x47, 0x3c, 0x3b, 0x4d, 0x78, 0x82, 0x70, 0x5c, 0x50, 0x46, 0x40, 0x33, 0x4a, 0x4f, 0x4a, 0x3a, 0x31, 0x32, 0x31, 0x2b, 0x27, 0x27, 0x27, 0x27, 0x29, 0x2b, 0x2d, 0x2f, 0x36, 0x32, 0x2b, 0x25, 0x25, 0x29, 0x2c, 0x2c, 0x29, 0x29, 0x29, 0x28, 0x26, 0x25, 0x25, 0x25, 0x25, 0x23, 0x23, 0x26, 0x2b, 0x2b, 0x26, 0x20, 0x1b, 0x1a, 0x19, 0x19, 0x1c, 0x20, 0x20, 0x1e, 0x20, 0x22, 0x24, 0x26, 0x23, 0x1f, 0x1e, 0x1f, 0x1c, 0x1c, 0x1d, 0x1e, 0x1e, 0x1d, 0x1f, 0x23, 0x27, 0x28, 0x2a, 0x2d, 0x34, 0x3b, 0x3b, 0x38, 0x2f, 0x27, 0x21, 0x20, 0x21, 0x20, 0x20, 0x21, 0x1b, 0x1c, 0x1e, 0x21, 0x22, 0x20, 0x1b, 0x18, 0x1a, 0x1a, 0x19, 0x18, 0x19, 0x1c, 0x21, 0x24, 0x2e, 0x34, 0x38, 0x35, 0x30, 0x32, 0x37, 0x3c, 0x44, 0x41, 0x3b, 0x35, 0x2f, 0x2a, 0x27, 0x25, 0x2b, 0x2c, 0x2e, 0x32, 0x33, 0x33, 0x35, 0x38, 0x30, 0x2f, 0x2e, 0x2f, 0x32, 0x36, 0x38, 0x3a, 0x36, 0x39, 0x3c, 0x3c, 0x39, 0x37, 0x35, 0x35, 0x34, 0x31, 0x31, 0x3a, 0x46, 0x4d, 0x51, 0x52, 0x52, 0x53, 0x56, 0x5b, 0x5f, 0x5e, 0x59, 0x55, 0x59, 0x52, 0x4a, 0x47, 0x4d, 0x53, 0x52, 0x4d, 0x48, 0x3f, 0x39, 0x3a, 0x3b, 0x39, 0x38, 0x39, 0x38, 0x3a, 0x3a, 0x38, 0x34, 0x32, 0x32, 0x33, 0x35, 0x39, 0x3c, 0x3d, 0x3a, 0x38, 0x38, 0x3a, 0x3b, 0x3d, 0x3d, 0x3b, 0x3d, 0x41, 0x41, 0x3d, 0x41, 0x40, 0x3e, 0x3c, 0x3c, 0x3e, 0x40, 0x41, 0x42, 0x44, 0x46, 0x48, 0x48, 0x48, 0x49, 0x4a, 0x4d, 0x4a, 0x47, 0x46, 0x47, 0x47, 0x47, 0x45, 0x49, 0x4a, 0x4c, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x4b, 0x4b, 0x4d, 0x52, 0x54, 0x53, 0x51, 0x51, 0x4f, 0x53, 0x57, 0x58, 0x57, 0x57, 0x59, 0x5b, 0x57, 0x57, 0x54, 0x4d, 0x47, 0x44, 0x47, 0x4a, 0x46, 0x49, 0x4c, 0x52, 0x58, 0x5f, 0x65, 0x68, 0x6c, 0x6b, 0x69, 0x65, 0x60, 0x5c, 0x5a, 0x5a, 0x60, 0x5d, 0x5e, 0x62, 0x60, 0x5d, 0x64, 0x70, 0x8d, 0x9d, 0x98, 0x91, 0x8b, 0x84, 0x87, 0x88, 0x88, 0x89, 0x8b, 0x8d, 0x8e, 0x8d, 0x8c, 0x8b, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x97, 0x99, 0x9b, 0x9c, 0x9d, 0x9d, 0x97, 0x99, 0x9b, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9a, 0x9b, 0x9d, 0x9f, 0xa1, 0xa2, 0xa2, 0xa2, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0, 0x9d, 0x9a, 0x97, 0x94, 0x91, 0x8e, 0x8a, 0x88, 0x88, 0x86, 0x85, 0x83, 0x81, 0x7d, 0x79, 0x76, 0x74, 0x73, 0x74, 0x77, 0x7d, 0x85, 0x8d, 0x92, 0x95, 0x99, 0x9f, 0xa1, 0xa3, 0xa5, 0xa9, 0xad, 0xb1, 0xb4, 0xb9, 0xbd, 0xbf, 0xc1, 0xc3, 0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xbe, 0xbc, 0xbb, 0xb7, 0xb5, 0xb3, 0xb1, 0xae, 0xaa, 0xa5, 0xa2, 0xa2, 0xa1, 0x9f, 0x9e, 0x9f, 0xa0, 0xa2, 0xa4, 0xa4, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xac, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xab, 0xac, 0xae, 0xaf, 0xae, 0xac, 0xaa, 0xa8, 0xab, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xa7, 0xa6, 0xa4, 0xa2, 0xa0, 0x9f, 0x9c, 0x98, 0x94, 0x91, 0x8d, 0x89, 0x85, 0x83, 0x81, 0x7e, 0x7a, 0x77, 0x74, 0x6b, 0x67, 0x6a, 0x6e, 0x70, 0x6d, 0x65, 0x68, 0x69, 0x6e, 0x7e, 0x94, 0x9b, 0x86, 0x69, 0x5c, 0x5d, 0x5d, 0x5b, 0x56, 0x56, 0x5e, 0x67, 0x6c, 0x68, 0x61, 0x5e, 0x62, 0x67, 0x66, 0x63, 0x4b, 0x49, 0x4c, 0x55, 0x5b, 0x5c, 0x5e, 0x62, 0x59, 0x5a, 0x58, 0x60, 0x69, 0x61, 0x5c, 0x69, 0x60, 0x5d, 0x5f, 0x63, 0x64, 0x65, 0x6c, 0x76, 0x75, 0x6a, 0x58, 0x4f, 0x52, 0x52, 0x50, 0x54, 0x69, 0x64, 0x5a, 0x49, 0x52, 0x5a, 0x68, 0x6e, 0x5b, 0x62, 0x6c, 0x6e, 0x67, 0x5b, 0x53, 0x52, 0x51, 0x53, 0x53, 0x4f, 0x53, 0x61, 0x64, 0x56, 0x41, 0x43, 0x68, 0x88, 0x8f, 0x73, 0x6b, 0x68, 0x5f, 0x4d, 0x46, 0x59, 0x74, 0x79, 0x64, 0x4c, 0x59, 0x60, 0x68, 0x6a, 0x63, 0x57, 0x4f, 0x4d, 0x4c, 0x40, 0x42, 0x42, 0x47, 0x3c, 0x47, 0x52, 0x45, 0x4d, 0x55, 0x4f, 0x44, 0x4b, 0x5c, 0x64, 0x56, 0x46, 0x46, 0x5b, 0x6a, 0x68, 0x64, 0x68, 0x62, 0x53, 0x3a, 0x38, 0x50, 0x5c, 0x55, 0x51, 0x5d, 0x5f, 0x4d, 0x35, 0x31, 0x3f, 0x51, 0x5f, 0x6d, 0x6e, 0x69, 0x5f, 0x5b, 0x5d, 0x5a, 0x53, 0x56, 0x62, 0x69, 0x61, 0x51, 0x47, 0x48, 0x4c, 0x43, 0x47, 0x50, 0x54, 0x4b, 0x44, 0x52, 0x67, 0x71, 0x79, 0x72, 0x58, 0x3b, 0x27, 0x26, 0x34, 0x4f, 0x51, 0x48, 0x40, 0x39, 0x2e, 0x36, 0x51, 0x63, 0x79, 0x74, 0x63, 0x55, 0x4c, 0x50, 0x4d, 0x3c, 0x42, 0x44, 0x41, 0x3d, 0x39, 0x31, 0x29, 0x25, 0x25, 0x26, 0x27, 0x29, 0x2a, 0x2b, 0x2c, 0x2e, 0x31, 0x31, 0x2d, 0x2b, 0x2e, 0x32, 0x34, 0x2a, 0x29, 0x28, 0x27, 0x27, 0x27, 0x26, 0x26, 0x26, 0x25, 0x25, 0x28, 0x2b, 0x2b, 0x27, 0x24, 0x1d, 0x1d, 0x1c, 0x1b, 0x1e, 0x22, 0x23, 0x1f, 0x21, 0x22, 0x25, 0x27, 0x24, 0x21, 0x22, 0x25, 0x24, 0x22, 0x22, 0x23, 0x22, 0x1f, 0x1f, 0x22, 0x22, 0x27, 0x2e, 0x36, 0x3d, 0x40, 0x3b, 0x33, 0x2c, 0x28, 0x24, 0x25, 0x25, 0x23, 0x22, 0x22, 0x1f, 0x1d, 0x1d, 0x1f, 0x21, 0x20, 0x1b, 0x17, 0x1a, 0x1a, 0x18, 0x17, 0x18, 0x1c, 0x22, 0x26, 0x32, 0x38, 0x3c, 0x3b, 0x38, 0x39, 0x3c, 0x3e, 0x45, 0x42, 0x3d, 0x37, 0x31, 0x2b, 0x27, 0x24, 0x2b, 0x2b, 0x2d, 0x31, 0x30, 0x2e, 0x2f, 0x33, 0x33, 0x34, 0x34, 0x35, 0x36, 0x38, 0x3a, 0x3c, 0x3a, 0x3a, 0x3b, 0x3c, 0x3b, 0x3b, 0x3a, 0x3a, 0x35, 0x34, 0x3b, 0x4a, 0x55, 0x55, 0x4d, 0x46, 0x45, 0x46, 0x4a, 0x50, 0x59, 0x61, 0x66, 0x69, 0x71, 0x6d, 0x67, 0x63, 0x64, 0x60, 0x53, 0x45, 0x3c, 0x37, 0x36, 0x3a, 0x39, 0x33, 0x30, 0x33, 0x39, 0x3a, 0x3b, 0x3a, 0x37, 0x35, 0x34, 0x35, 0x34, 0x37, 0x3a, 0x3b, 0x39, 0x38, 0x39, 0x39, 0x3c, 0x3c, 0x3c, 0x3d, 0x3f, 0x41, 0x40, 0x3d, 0x3e, 0x3d, 0x3c, 0x3c, 0x3c, 0x3e, 0x40, 0x41, 0x3f, 0x42, 0x46, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x4e, 0x4b, 0x47, 0x46, 0x47, 0x48, 0x47, 0x46, 0x48, 0x48, 0x49, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x49, 0x48, 0x4b, 0x52, 0x55, 0x54, 0x51, 0x51, 0x51, 0x53, 0x55, 0x55, 0x55, 0x56, 0x57, 0x57, 0x53, 0x52, 0x4f, 0x48, 0x40, 0x3d, 0x3f, 0x42, 0x46, 0x46, 0x48, 0x4b, 0x51, 0x5c, 0x67, 0x6f, 0x6a, 0x66, 0x5f, 0x5b, 0x5b, 0x5c, 0x5d, 0x5d, 0x5d, 0x5b, 0x5b, 0x5c, 0x5d, 0x5e, 0x64, 0x6b, 0x8d, 0xa3, 0xa1, 0x9d, 0x99, 0x8e, 0x8c, 0x8b, 0x88, 0x89, 0x8b, 0x8c, 0x8d, 0x8c, 0x8c, 0x8b, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x97, 0x98, 0x98, 0x99, 0x99, 0x94, 0x95, 0x97, 0x98, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9b, 0x9d, 0x9e, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x97, 0x94, 0x90, 0x8c, 0x89, 0x86, 0x83, 0x81, 0x81, 0x7f, 0x7c, 0x79, 0x77, 0x74, 0x71, 0x6f, 0x6f, 0x72, 0x77, 0x7f, 0x88, 0x91, 0x99, 0x9d, 0xa0, 0xa2, 0xa5, 0xa6, 0xa7, 0xa7, 0xa9, 0xaa, 0xad, 0xb0, 0xb3, 0xb6, 0xb8, 0xb9, 0xbb, 0xbc, 0xbc, 0xbd, 0xbd, 0xbd, 0xbc, 0xbb, 0xb9, 0xb8, 0xb5, 0xb3, 0xb1, 0xae, 0xab, 0xa6, 0xa0, 0x9d, 0x9a, 0x99, 0x97, 0x95, 0x96, 0x97, 0x99, 0x9b, 0x9d, 0x9f, 0xa2, 0xa5, 0xa7, 0xa8, 0xaa, 0xac, 0xac, 0xac, 0xac, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xad, 0xac, 0xac, 0xab, 0xaa, 0xa8, 0xa8, 0xa9, 0xa8, 0xa6, 0xa4, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d, 0x99, 0x95, 0x92, 0x8e, 0x8b, 0x86, 0x83, 0x80, 0x7d, 0x79, 0x76, 0x70, 0x6d, 0x67, 0x6a, 0x74, 0x76, 0x6d, 0x68, 0x68, 0x65, 0x66, 0x73, 0x8b, 0x9a, 0x91, 0x7f, 0x66, 0x61, 0x5c, 0x59, 0x58, 0x5a, 0x60, 0x67, 0x6e, 0x66, 0x5c, 0x5b, 0x64, 0x6e, 0x70, 0x6c, 0x6a, 0x59, 0x46, 0x3e, 0x3f, 0x46, 0x54, 0x61, 0x5a, 0x56, 0x54, 0x5d, 0x64, 0x5d, 0x57, 0x5d, 0x59, 0x58, 0x59, 0x5d, 0x60, 0x64, 0x6e, 0x77, 0x6e, 0x68, 0x59, 0x50, 0x50, 0x52, 0x5a, 0x68, 0x6d, 0x61, 0x5b, 0x4a, 0x51, 0x5b, 0x6f, 0x6f, 0x57, 0x5c, 0x66, 0x6e, 0x6b, 0x61, 0x57, 0x53, 0x50, 0x4d, 0x49, 0x48, 0x55, 0x6d, 0x71, 0x5f, 0x3c, 0x3d, 0x5d, 0x75, 0x75, 0x58, 0x58, 0x60, 0x6a, 0x5f, 0x5c, 0x6a, 0x79, 0x7d, 0x7b, 0x7a, 0x63, 0x62, 0x64, 0x64, 0x5d, 0x51, 0x4a, 0x48, 0x38, 0x35, 0x3d, 0x3c, 0x40, 0x38, 0x47, 0x54, 0x5f, 0x57, 0x4d, 0x42, 0x3f, 0x4e, 0x5e, 0x62, 0x5f, 0x53, 0x50, 0x5b, 0x63, 0x5f, 0x5a, 0x5a, 0x51, 0x3e, 0x31, 0x3a, 0x4c, 0x54, 0x53, 0x52, 0x5a, 0x5e, 0x4b, 0x32, 0x36, 0x4e, 0x61, 0x68, 0x6e, 0x70, 0x6b, 0x62, 0x5e, 0x61, 0x5d, 0x55, 0x58, 0x69, 0x6b, 0x50, 0x33, 0x2f, 0x3e, 0x4c, 0x57, 0x54, 0x51, 0x4d, 0x47, 0x48, 0x58, 0x6b, 0x76, 0x78, 0x64, 0x40, 0x25, 0x1c, 0x23, 0x31, 0x3c, 0x48, 0x4c, 0x4a, 0x41, 0x2f, 0x30, 0x49, 0x68, 0x7b, 0x79, 0x6f, 0x5d, 0x4a, 0x4d, 0x53, 0x2c, 0x2a, 0x2d, 0x34, 0x39, 0x38, 0x33, 0x30, 0x28, 0x29, 0x2b, 0x2c, 0x2d, 0x2c, 0x2b, 0x2a, 0x2b, 0x35, 0x3a, 0x35, 0x2e, 0x2d, 0x30, 0x32, 0x2e, 0x2b, 0x27, 0x26, 0x26, 0x26, 0x25, 0x23, 0x23, 0x23, 0x23, 0x24, 0x25, 0x25, 0x24, 0x23, 0x1f, 0x20, 0x1d, 0x1b, 0x1d, 0x22, 0x22, 0x1f, 0x1f, 0x21, 0x24, 0x26, 0x23, 0x21, 0x24, 0x28, 0x2f, 0x2b, 0x28, 0x28, 0x25, 0x20, 0x1e, 0x20, 0x1c, 0x25, 0x30, 0x38, 0x3e, 0x3d, 0x33, 0x27, 0x2a, 0x28, 0x28, 0x2b, 0x2b, 0x29, 0x28, 0x28, 0x2a, 0x25, 0x21, 0x21, 0x23, 0x22, 0x1d, 0x18, 0x17, 0x18, 0x19, 0x1b, 0x1c, 0x1e, 0x22, 0x24, 0x2b, 0x31, 0x37, 0x3a, 0x3d, 0x41, 0x43, 0x43, 0x39, 0x38, 0x37, 0x34, 0x31, 0x2e, 0x2b, 0x29, 0x2b, 0x2c, 0x31, 0x35, 0x33, 0x2c, 0x29, 0x2a, 0x32, 0x34, 0x36, 0x37, 0x36, 0x36, 0x38, 0x3a, 0x3a, 0x39, 0x37, 0x37, 0x39, 0x3a, 0x3b, 0x3b, 0x39, 0x3a, 0x44, 0x56, 0x61, 0x5c, 0x4e, 0x42, 0x46, 0x48, 0x4c, 0x4f, 0x53, 0x57, 0x5c, 0x60, 0x6b, 0x71, 0x75, 0x71, 0x68, 0x5b, 0x4c, 0x40, 0x41, 0x3d, 0x3f, 0x43, 0x3f, 0x35, 0x32, 0x37, 0x3a, 0x3c, 0x3d, 0x3c, 0x3a, 0x38, 0x36, 0x36, 0x37, 0x39, 0x3b, 0x3c, 0x3c, 0x3b, 0x3a, 0x3a, 0x3c, 0x3b, 0x3c, 0x3f, 0x42, 0x41, 0x40, 0x3f, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3e, 0x3c, 0x3f, 0x44, 0x47, 0x48, 0x48, 0x48, 0x48, 0x4b, 0x47, 0x42, 0x42, 0x45, 0x48, 0x49, 0x49, 0x46, 0x47, 0x47, 0x47, 0x48, 0x4a, 0x4b, 0x4b, 0x49, 0x47, 0x4a, 0x51, 0x54, 0x51, 0x4e, 0x4e, 0x51, 0x51, 0x50, 0x52, 0x55, 0x57, 0x57, 0x56, 0x50, 0x50, 0x4f, 0x4a, 0x46, 0x45, 0x48, 0x4c, 0x4f, 0x50, 0x50, 0x52, 0x58, 0x62, 0x6f, 0x78, 0x70, 0x69, 0x60, 0x5c, 0x5c, 0x5f, 0x60, 0x60, 0x5a, 0x5b, 0x5c, 0x5e, 0x60, 0x63, 0x66, 0x67, 0x86, 0xa1, 0xa6, 0xa6, 0xa4, 0x96, 0x8e, 0x8a, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8c, 0x8c, 0x8b, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x91, 0x93, 0x93, 0x94, 0x95, 0x96, 0x96, 0x95, 0x95, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x98, 0x97, 0x98, 0x9a, 0x9b, 0x9c, 0x9b, 0x9a, 0x9a, 0x9c, 0x9c, 0x9b, 0x9b, 0x9a, 0x98, 0x97, 0x97, 0x90, 0x8d, 0x88, 0x84, 0x80, 0x7e, 0x7b, 0x7a, 0x7a, 0x77, 0x73, 0x6f, 0x6d, 0x6b, 0x69, 0x68, 0x6f, 0x74, 0x7e, 0x89, 0x94, 0x9d, 0xa4, 0xa8, 0xab, 0xab, 0xac, 0xac, 0xab, 0xaa, 0xa9, 0xa8, 0xaa, 0xac, 0xae, 0xb0, 0xb1, 0xb2, 0xb4, 0xb5, 0xb6, 0xb6, 0xb7, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4, 0xb2, 0xb1, 0xae, 0xab, 0xa7, 0xa1, 0x9c, 0x98, 0x93, 0x91, 0x8f, 0x8e, 0x8e, 0x8f, 0x92, 0x93, 0x96, 0x99, 0x9d, 0xa1, 0xa4, 0xa6, 0xa8, 0xaa, 0xac, 0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xae, 0xad, 0xad, 0xae, 0xae, 0xae, 0xac, 0xaa, 0xaa, 0xaa, 0xa9, 0xa7, 0xa4, 0xa3, 0xa2, 0xa0, 0x9f, 0x9d, 0x99, 0x95, 0x92, 0x8f, 0x8c, 0x87, 0x83, 0x81, 0x7e, 0x79, 0x76, 0x70, 0x72, 0x6b, 0x6c, 0x7a, 0x7b, 0x71, 0x6f, 0x6c, 0x67, 0x66, 0x70, 0x83, 0x91, 0x93, 0x8d, 0x71, 0x65, 0x58, 0x53, 0x55, 0x5c, 0x65, 0x6c, 0x6e, 0x61, 0x53, 0x52, 0x61, 0x72, 0x78, 0x75, 0x68, 0x69, 0x68, 0x61, 0x56, 0x4c, 0x49, 0x4c, 0x4a, 0x54, 0x5f, 0x62, 0x5e, 0x57, 0x53, 0x52, 0x57, 0x56, 0x58, 0x5b, 0x5d, 0x63, 0x6f, 0x7b, 0x75, 0x64, 0x4d, 0x47, 0x52, 0x5e, 0x68, 0x74, 0x64, 0x58, 0x5a, 0x4d, 0x54, 0x5e, 0x72, 0x6a, 0x55, 0x58, 0x60, 0x6a, 0x6b, 0x62, 0x59, 0x55, 0x4f, 0x47, 0x3e, 0x3c, 0x51, 0x71, 0x79, 0x67, 0x3e, 0x39, 0x52, 0x64, 0x60, 0x43, 0x49, 0x56, 0x5e, 0x63, 0x6e, 0x70, 0x61, 0x52, 0x57, 0x68, 0x69, 0x68, 0x6b, 0x6d, 0x66, 0x55, 0x48, 0x43, 0x30, 0x34, 0x41, 0x3f, 0x43, 0x3e, 0x50, 0x5d, 0x56, 0x59, 0x5a, 0x51, 0x47, 0x4e, 0x5c, 0x60, 0x55, 0x4c, 0x4b, 0x54, 0x5c, 0x5a, 0x57, 0x57, 0x45, 0x31, 0x2d, 0x3e, 0x4a, 0x50, 0x56, 0x5b, 0x63, 0x5d, 0x46, 0x31, 0x32, 0x3f, 0x4a, 0x53, 0x61, 0x65, 0x63, 0x5e, 0x5d, 0x60, 0x5c, 0x54, 0x5d, 0x6d, 0x62, 0x3f, 0x34, 0x4d, 0x5f, 0x5c, 0x58, 0x4d, 0x41, 0x3c, 0x3f, 0x4c, 0x61, 0x73, 0x69, 0x57, 0x31, 0x16, 0x21, 0x3f, 0x58, 0x64, 0x56, 0x59, 0x53, 0x4b, 0x44, 0x38, 0x3d, 0x58, 0x6b, 0x66, 0x56, 0x5a, 0x5e, 0x59, 0x63, 0x6f, 0x33, 0x2b, 0x28, 0x2e, 0x33, 0x32, 0x33, 0x36, 0x32, 0x2b, 0x28, 0x2b, 0x2c, 0x27, 0x25, 0x28, 0x2c, 0x32, 0x3a, 0x3b, 0x37, 0x31, 0x2f, 0x2f, 0x2b, 0x2a, 0x29, 0x29, 0x26, 0x23, 0x23, 0x26, 0x27, 0x23, 0x20, 0x20, 0x24, 0x25, 0x24, 0x21, 0x1e, 0x1d, 0x1d, 0x20, 0x23, 0x25, 0x25, 0x24, 0x1f, 0x23, 0x27, 0x27, 0x25, 0x24, 0x25, 0x27, 0x29, 0x2a, 0x2d, 0x2e, 0x28, 0x20, 0x1e, 0x22, 0x1d, 0x23, 0x28, 0x2b, 0x30, 0x35, 0x31, 0x29, 0x2a, 0x29, 0x27, 0x25, 0x25, 0x25, 0x26, 0x27, 0x2a, 0x2e, 0x30, 0x2c, 0x28, 0x25, 0x22, 0x1f, 0x1e, 0x1d, 0x1d, 0x1d, 0x1f, 0x20, 0x21, 0x21, 0x24, 0x29, 0x30, 0x35, 0x36, 0x34, 0x31, 0x2f, 0x30, 0x32, 0x33, 0x31, 0x2d, 0x2b, 0x2d, 0x2f, 0x33, 0x31, 0x30, 0x31, 0x33, 0x32, 0x2e, 0x2b, 0x2c, 0x2f, 0x36, 0x3b, 0x3b, 0x39, 0x3a, 0x3d, 0x3b, 0x3a, 0x3b, 0x3c, 0x3b, 0x39, 0x3a, 0x3d, 0x3c, 0x3c, 0x40, 0x4a, 0x55, 0x5d, 0x5f, 0x5d, 0x64, 0x61, 0x5c, 0x56, 0x52, 0x50, 0x51, 0x53, 0x57, 0x61, 0x63, 0x5c, 0x58, 0x58, 0x50, 0x43, 0x47, 0x49, 0x49, 0x46, 0x45, 0x44, 0x3f, 0x38, 0x3c, 0x3c, 0x3d, 0x3d, 0x3c, 0x3a, 0x38, 0x36, 0x39, 0x38, 0x36, 0x36, 0x39, 0x3b, 0x3d, 0x3d, 0x3b, 0x3b, 0x3c, 0x3e, 0x3f, 0x40, 0x3f, 0x3e, 0x42, 0x3d, 0x3a, 0x3d, 0x3e, 0x3c, 0x3b, 0x3c, 0x3a, 0x3e, 0x44, 0x48, 0x4a, 0x48, 0x46, 0x44, 0x41, 0x40, 0x41, 0x45, 0x47, 0x47, 0x49, 0x4b, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x49, 0x49, 0x4a, 0x49, 0x48, 0x4b, 0x51, 0x55, 0x55, 0x54, 0x54, 0x55, 0x58, 0x59, 0x58, 0x59, 0x5b, 0x58, 0x53, 0x53, 0x57, 0x57, 0x50, 0x4d, 0x50, 0x55, 0x57, 0x54, 0x57, 0x59, 0x58, 0x56, 0x56, 0x59, 0x5c, 0x61, 0x60, 0x5e, 0x5c, 0x5b, 0x5c, 0x5d, 0x5e, 0x5d, 0x5d, 0x5c, 0x5c, 0x5f, 0x63, 0x62, 0x5e, 0x7b, 0x99, 0xab, 0xab, 0xa9, 0xa3, 0x92, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x8b, 0x8b, 0x8b, 0x8a, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x93, 0x91, 0x90, 0x90, 0x91, 0x92, 0x92, 0x91, 0x90, 0x92, 0x93, 0x94, 0x93, 0x93, 0x94, 0x95, 0x94, 0x96, 0x98, 0x99, 0x98, 0x98, 0x98, 0x99, 0x98, 0x98, 0x97, 0x96, 0x95, 0x91, 0x8d, 0x8a, 0x88, 0x86, 0x82, 0x7f, 0x7c, 0x79, 0x76, 0x74, 0x75, 0x70, 0x6d, 0x6b, 0x69, 0x67, 0x67, 0x6a, 0x71, 0x7a, 0x8a, 0x98, 0xa3, 0xaa, 0xad, 0xaf, 0xaf, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xab, 0xa6, 0xa4, 0xa5, 0xa7, 0xa9, 0xab, 0xac, 0xac, 0xac, 0xb1, 0xb1, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xaf, 0xae, 0xac, 0xa8, 0xa2, 0x9c, 0x97, 0x93, 0x93, 0x8f, 0x8a, 0x87, 0x85, 0x84, 0x85, 0x87, 0x8a, 0x90, 0x96, 0x9a, 0x9e, 0xa3, 0xa7, 0xa8, 0xaa, 0xac, 0xae, 0xaf, 0xae, 0xaf, 0xb3, 0xb5, 0xb2, 0xb1, 0xaf, 0xae, 0xad, 0xae, 0xaf, 0xb0, 0xad, 0xac, 0xac, 0xac, 0xac, 0xaa, 0xa8, 0xa6, 0xa6, 0xa5, 0xa3, 0xa1, 0x9e, 0x9a, 0x96, 0x92, 0x8f, 0x8c, 0x87, 0x83, 0x7f, 0x7b, 0x76, 0x74, 0x74, 0x66, 0x68, 0x77, 0x7e, 0x7b, 0x75, 0x6d, 0x6f, 0x6a, 0x66, 0x6b, 0x79, 0x8b, 0x94, 0x96, 0x7b, 0x70, 0x60, 0x56, 0x57, 0x5e, 0x68, 0x6e, 0x6d, 0x66, 0x59, 0x57, 0x62, 0x65, 0x5e, 0x59, 0x59, 0x72, 0x87, 0x80, 0x66, 0x4f, 0x46, 0x45, 0x4d, 0x56, 0x59, 0x62, 0x65, 0x60, 0x60, 0x57, 0x58, 0x5b, 0x62, 0x60, 0x56, 0x5a, 0x6c, 0x78, 0x76, 0x66, 0x4e, 0x46, 0x56, 0x64, 0x64, 0x62, 0x49, 0x4f, 0x55, 0x54, 0x56, 0x66, 0x70, 0x6a, 0x60, 0x59, 0x60, 0x6d, 0x6b, 0x5f, 0x54, 0x4b, 0x4f, 0x53, 0x4d, 0x49, 0x5b, 0x76, 0x78, 0x68, 0x43, 0x35, 0x42, 0x4f, 0x41, 0x3a, 0x46, 0x4c, 0x58, 0x6a, 0x73, 0x6a, 0x57, 0x4a, 0x51, 0x64, 0x67, 0x6b, 0x77, 0x85, 0x7d, 0x5c, 0x49, 0x50, 0x49, 0x44, 0x45, 0x49, 0x46, 0x40, 0x44, 0x4f, 0x5d, 0x52, 0x4b, 0x41, 0x38, 0x46, 0x59, 0x5a, 0x52, 0x49, 0x4c, 0x58, 0x5b, 0x5a, 0x57, 0x52, 0x49, 0x3e, 0x39, 0x41, 0x4e, 0x54, 0x55, 0x56, 0x56, 0x55, 0x48, 0x35, 0x32, 0x3f, 0x49, 0x48, 0x4e, 0x5f, 0x65, 0x67, 0x6e, 0x68, 0x5b, 0x5a, 0x5d, 0x60, 0x48, 0x31, 0x44, 0x63, 0x6a, 0x65, 0x4e, 0x42, 0x33, 0x33, 0x42, 0x53, 0x62, 0x71, 0x59, 0x31, 0x1f, 0x37, 0x5e, 0x74, 0x71, 0x62, 0x58, 0x4e, 0x43, 0x40, 0x40, 0x3f, 0x3b, 0x38, 0x39, 0x37, 0x3e, 0x3a, 0x35, 0x4e, 0x65, 0x5c, 0x31, 0x2a, 0x27, 0x2c, 0x30, 0x31, 0x33, 0x38, 0x31, 0x2b, 0x28, 0x2a, 0x29, 0x23, 0x21, 0x24, 0x29, 0x2b, 0x2f, 0x32, 0x32, 0x2f, 0x2b, 0x28, 0x2b, 0x2c, 0x2e, 0x2e, 0x2a, 0x26, 0x27, 0x2b, 0x26, 0x23, 0x21, 0x23, 0x26, 0x28, 0x27, 0x25, 0x28, 0x25, 0x23, 0x23, 0x25, 0x29, 0x2b, 0x2c, 0x2f, 0x30, 0x2f, 0x2b, 0x27, 0x25, 0x27, 0x2a, 0x2c, 0x2d, 0x2f, 0x31, 0x2e, 0x27, 0x25, 0x28, 0x24, 0x25, 0x27, 0x28, 0x2c, 0x2f, 0x2d, 0x29, 0x2b, 0x2a, 0x28, 0x26, 0x25, 0x25, 0x25, 0x25, 0x25, 0x29, 0x2c, 0x2c, 0x2b, 0x2b, 0x29, 0x26, 0x20, 0x22, 0x24, 0x24, 0x23, 0x23, 0x25, 0x27, 0x2f, 0x33, 0x3a, 0x40, 0x40, 0x3c, 0x35, 0x30, 0x2c, 0x2e, 0x2f, 0x2e, 0x2c, 0x2c, 0x2e, 0x31, 0x33, 0x31, 0x2f, 0x30, 0x31, 0x31, 0x2e, 0x2b, 0x2c, 0x2f, 0x34, 0x38, 0x38, 0x37, 0x39, 0x3c, 0x3b, 0x3a, 0x3a, 0x3b, 0x3b, 0x39, 0x3b, 0x3f, 0x40, 0x3c, 0x3a, 0x42, 0x51, 0x60, 0x69, 0x6c, 0x61, 0x64, 0x6a, 0x73, 0x78, 0x75, 0x6c, 0x63, 0x52, 0x55, 0x5a, 0x5d, 0x5b, 0x52, 0x47, 0x40, 0x3e, 0x41, 0x42, 0x42, 0x44, 0x45, 0x42, 0x3d, 0x3c, 0x3d, 0x3f, 0x3f, 0x3f, 0x3c, 0x3a, 0x38, 0x3a, 0x39, 0x38, 0x39, 0x3b, 0x3d, 0x3e, 0x3e, 0x40, 0x40, 0x41, 0x41, 0x41, 0x40, 0x40, 0x40, 0x45, 0x42, 0x42, 0x45, 0x44, 0x40, 0x3d, 0x3d, 0x3d, 0x40, 0x45, 0x49, 0x4a, 0x49, 0x47, 0x46, 0x45, 0x45, 0x47, 0x4b, 0x4d, 0x4c, 0x4d, 0x4f, 0x4b, 0x4b, 0x4c, 0x4c, 0x4d, 0x4e, 0x50, 0x51, 0x4d, 0x4b, 0x4b, 0x4e, 0x51, 0x51, 0x51, 0x52, 0x55, 0x56, 0x55, 0x54, 0x57, 0x5a, 0x58, 0x54, 0x57, 0x56, 0x50, 0x46, 0x3f, 0x3f, 0x42, 0x43, 0x42, 0x4a, 0x4e, 0x4c, 0x50, 0x5a, 0x60, 0x60, 0x67, 0x64, 0x5f, 0x5b, 0x59, 0x58, 0x5a, 0x5b, 0x5b, 0x5a, 0x59, 0x59, 0x5b, 0x5d, 0x5d, 0x5d, 0x78, 0x96, 0xa8, 0xa8, 0xa6, 0xa1, 0x92, 0x85, 0x86, 0x87, 0x89, 0x8b, 0x8c, 0x8b, 0x8b, 0x8a, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x8e, 0x8d, 0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x91, 0x8f, 0x90, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x90, 0x92, 0x94, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8d, 0x8a, 0x87, 0x83, 0x80, 0x7e, 0x7b, 0x78, 0x75, 0x72, 0x6f, 0x6e, 0x6a, 0x66, 0x64, 0x62, 0x61, 0x64, 0x68, 0x74, 0x7f, 0x8f, 0x9e, 0xa8, 0xae, 0xb2, 0xb4, 0xb3, 0xb4, 0xb4, 0xb2, 0xb1, 0xb0, 0xab, 0xa6, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa6, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xa9, 0xa9, 0xa8, 0xa7, 0xa4, 0xa0, 0x9c, 0x96, 0x92, 0x90, 0x8f, 0x8d, 0x8b, 0x88, 0x85, 0x80, 0x7c, 0x7a, 0x7e, 0x84, 0x8b, 0x91, 0x96, 0x9b, 0x9e, 0xa0, 0xa3, 0xa7, 0xab, 0xad, 0xad, 0xae, 0xb0, 0xb3, 0xb1, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae, 0xad, 0xac, 0xab, 0xab, 0xab, 0xaa, 0xa8, 0xa6, 0xa5, 0xa4, 0xa1, 0x9f, 0x9d, 0x99, 0x95, 0x92, 0x8e, 0x8b, 0x86, 0x82, 0x7d, 0x79, 0x75, 0x72, 0x71, 0x65, 0x69, 0x79, 0x80, 0x7d, 0x76, 0x6e, 0x70, 0x6b, 0x65, 0x66, 0x73, 0x85, 0x92, 0x97, 0x87, 0x78, 0x64, 0x59, 0x5b, 0x64, 0x6d, 0x73, 0x6d, 0x6c, 0x64, 0x5d, 0x5d, 0x54, 0x44, 0x3c, 0x47, 0x48, 0x49, 0x4c, 0x55, 0x5d, 0x5e, 0x5b, 0x5e, 0x5a, 0x4d, 0x4f, 0x54, 0x59, 0x65, 0x66, 0x66, 0x63, 0x62, 0x5b, 0x50, 0x54, 0x66, 0x71, 0x73, 0x6d, 0x5f, 0x59, 0x61, 0x61, 0x58, 0x52, 0x44, 0x4d, 0x57, 0x59, 0x5c, 0x69, 0x70, 0x6a, 0x62, 0x5a, 0x5f, 0x69, 0x69, 0x61, 0x56, 0x4a, 0x47, 0x4a, 0x49, 0x4c, 0x5f, 0x76, 0x75, 0x65, 0x46, 0x33, 0x37, 0x40, 0x34, 0x33, 0x43, 0x4c, 0x5c, 0x6b, 0x70, 0x67, 0x5c, 0x54, 0x58, 0x65, 0x65, 0x69, 0x6e, 0x73, 0x6e, 0x58, 0x46, 0x45, 0x45, 0x45, 0x4a, 0x4f, 0x4b, 0x45, 0x4b, 0x58, 0x5a, 0x55, 0x53, 0x47, 0x36, 0x3d, 0x54, 0x5e, 0x64, 0x58, 0x56, 0x59, 0x56, 0x54, 0x58, 0x5b, 0x47, 0x3e, 0x3a, 0x41, 0x4a, 0x4f, 0x52, 0x56, 0x53, 0x44, 0x36, 0x36, 0x3d, 0x43, 0x48, 0x4a, 0x4d, 0x60, 0x68, 0x67, 0x68, 0x61, 0x58, 0x5a, 0x6e, 0x62, 0x52, 0x54, 0x67, 0x6b, 0x65, 0x67, 0x4a, 0x32, 0x2e, 0x48, 0x5b, 0x5d, 0x65, 0x75, 0x55, 0x39, 0x38, 0x55, 0x63, 0x5a, 0x51, 0x50, 0x6d, 0x68, 0x61, 0x5a, 0x52, 0x47, 0x3c, 0x35, 0x31, 0x2d, 0x37, 0x41, 0x4b, 0x61, 0x68, 0x55, 0x2e, 0x28, 0x25, 0x28, 0x2c, 0x2e, 0x32, 0x38, 0x32, 0x2f, 0x2d, 0x2d, 0x29, 0x23, 0x21, 0x24, 0x26, 0x26, 0x27, 0x2b, 0x30, 0x31, 0x2d, 0x29, 0x2f, 0x30, 0x32, 0x32, 0x2d, 0x26, 0x25, 0x26, 0x28, 0x26, 0x25, 0x27, 0x29, 0x2a, 0x29, 0x28, 0x28, 0x26, 0x24, 0x24, 0x26, 0x29, 0x2b, 0x2d, 0x34, 0x34, 0x33, 0x30, 0x2b, 0x28, 0x27, 0x28, 0x2a, 0x2b, 0x2d, 0x31, 0x30, 0x2d, 0x2b, 0x2b, 0x27, 0x23, 0x22, 0x25, 0x2a, 0x2d, 0x2f, 0x32, 0x2d, 0x2d, 0x2b, 0x2a, 0x28, 0x27, 0x25, 0x25, 0x21, 0x24, 0x27, 0x28, 0x2c, 0x30, 0x30, 0x2e, 0x25, 0x28, 0x2b, 0x2a, 0x28, 0x28, 0x2b, 0x2e, 0x2f, 0x33, 0x39, 0x41, 0x47, 0x47, 0x43, 0x40, 0x32, 0x33, 0x32, 0x2f, 0x2c, 0x2b, 0x2d, 0x2f, 0x34, 0x32, 0x30, 0x2f, 0x31, 0x31, 0x30, 0x2e, 0x2d, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x39, 0x3d, 0x3b, 0x39, 0x39, 0x39, 0x39, 0x38, 0x3b, 0x3f, 0x40, 0x3e, 0x3f, 0x47, 0x51, 0x57, 0x58, 0x55, 0x5a, 0x5d, 0x66, 0x73, 0x7e, 0x7b, 0x6e, 0x61, 0x5f, 0x59, 0x5e, 0x6b, 0x6a, 0x58, 0x4a, 0x49, 0x40, 0x40, 0x3f, 0x3d, 0x3d, 0x3f, 0x3e, 0x3c, 0x3d, 0x3e, 0x3f, 0x40, 0x3f, 0x3d, 0x3a, 0x38, 0x3d, 0x3c, 0x3d, 0x3e, 0x40, 0x41, 0x40, 0x3f, 0x43, 0x44, 0x45, 0x43, 0x40, 0x3f, 0x3f, 0x40, 0x49, 0x48, 0x49, 0x49, 0x47, 0x43, 0x40, 0x41, 0x3f, 0x41, 0x44, 0x45, 0x45, 0x44, 0x44, 0x44, 0x44, 0x44, 0x47, 0x4c, 0x4e, 0x4c, 0x4b, 0x4c, 0x49, 0x48, 0x48, 0x48, 0x4b, 0x4d, 0x4f, 0x50, 0x4f, 0x4b, 0x4a, 0x4b, 0x4e, 0x4f, 0x51, 0x54, 0x54, 0x52, 0x50, 0x51, 0x56, 0x5a, 0x59, 0x55, 0x4f, 0x4b, 0x42, 0x38, 0x34, 0x36, 0x39, 0x3a, 0x42, 0x4e, 0x55, 0x56, 0x61, 0x74, 0x7e, 0x7b, 0x6f, 0x6a, 0x63, 0x5c, 0x57, 0x56, 0x56, 0x57, 0x59, 0x56, 0x56, 0x59, 0x59, 0x57, 0x59, 0x5e, 0x74, 0x92, 0xa5, 0xa5, 0xa3, 0x9e, 0x91, 0x87, 0x87, 0x88, 0x89, 0x8b, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x8b, 0x8a, 0x89, 0x8a, 0x8b, 0x8c, 0x8c, 0x8c, 0x8e, 0x8f, 0x8f, 0x8f, 0x8d, 0x8c, 0x8c, 0x8c, 0x8f, 0x90, 0x92, 0x92, 0x91, 0x90, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x8a, 0x87, 0x84, 0x82, 0x7d, 0x7b, 0x79, 0x76, 0x74, 0x70, 0x6c, 0x69, 0x68, 0x65, 0x61, 0x5e, 0x5c, 0x5c, 0x61, 0x68, 0x75, 0x82, 0x93, 0xa2, 0xaa, 0xb0, 0xb4, 0xb8, 0xb8, 0xb9, 0xb8, 0xb5, 0xb3, 0xb1, 0xac, 0xa7, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa3, 0xa3, 0xa4, 0xa3, 0xa3, 0xa2, 0xa2, 0xa1, 0xa3, 0xa1, 0x9f, 0x9b, 0x98, 0x95, 0x93, 0x92, 0x93, 0x93, 0x92, 0x90, 0x8b, 0x83, 0x79, 0x72, 0x72, 0x77, 0x7e, 0x86, 0x8d, 0x92, 0x97, 0x9a, 0x9d, 0xa2, 0xa8, 0xac, 0xad, 0xae, 0xb0, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xad, 0xad, 0xac, 0xab, 0xab, 0xab, 0xaa, 0xa8, 0xa6, 0xa5, 0xa3, 0xa0, 0x9d, 0x9b, 0x97, 0x94, 0x91, 0x8c, 0x89, 0x85, 0x80, 0x7c, 0x78, 0x73, 0x70, 0x6d, 0x64, 0x6a, 0x7a, 0x80, 0x7e, 0x78, 0x71, 0x6e, 0x6b, 0x65, 0x65, 0x6f, 0x7f, 0x8c, 0x92, 0x8d, 0x7d, 0x69, 0x5e, 0x60, 0x67, 0x6e, 0x71, 0x69, 0x6c, 0x64, 0x5b, 0x59, 0x55, 0x4e, 0x4d, 0x40, 0x3f, 0x3d, 0x3f, 0x47, 0x4f, 0x52, 0x50, 0x53, 0x58, 0x59, 0x66, 0x6c, 0x6d, 0x7a, 0x7f, 0x6d, 0x65, 0x61, 0x5c, 0x53, 0x55, 0x62, 0x6a, 0x70, 0x74, 0x70, 0x68, 0x62, 0x56, 0x47, 0x40, 0x3e, 0x49, 0x58, 0x5f, 0x61, 0x6a, 0x6f, 0x68, 0x60, 0x5a, 0x5e, 0x67, 0x6a, 0x68, 0x5c, 0x4b, 0x41, 0x40, 0x42, 0x4d, 0x64, 0x76, 0x72, 0x64, 0x4a, 0x37, 0x35, 0x38, 0x2f, 0x30, 0x42, 0x4e, 0x65, 0x6e, 0x6d, 0x65, 0x62, 0x61, 0x61, 0x66, 0x5e, 0x60, 0x5a, 0x57, 0x59, 0x56, 0x4d, 0x4a, 0x44, 0x47, 0x4e, 0x53, 0x4d, 0x48, 0x4f, 0x5d, 0x5a, 0x53, 0x51, 0x45, 0x2f, 0x32, 0x49, 0x56, 0x5f, 0x4a, 0x42, 0x4e, 0x59, 0x5e, 0x5e, 0x58, 0x4e, 0x47, 0x42, 0x46, 0x4a, 0x4d, 0x51, 0x57, 0x60, 0x4f, 0x40, 0x3f, 0x47, 0x4d, 0x52, 0x56, 0x57, 0x6b, 0x74, 0x70, 0x6a, 0x64, 0x60, 0x63, 0x72, 0x67, 0x59, 0x5b, 0x66, 0x5e, 0x48, 0x3c, 0x2e, 0x27, 0x37, 0x51, 0x5c, 0x62, 0x69, 0x67, 0x4b, 0x36, 0x38, 0x52, 0x5f, 0x64, 0x76, 0x8a, 0x79, 0x79, 0x76, 0x6f, 0x62, 0x52, 0x44, 0x3c, 0x2e, 0x25, 0x2a, 0x38, 0x48, 0x5e, 0x62, 0x50, 0x2b, 0x27, 0x25, 0x27, 0x29, 0x2b, 0x2f, 0x33, 0x32, 0x31, 0x31, 0x31, 0x2c, 0x26, 0x25, 0x28, 0x29, 0x28, 0x29, 0x2e, 0x35, 0x38, 0x37, 0x34, 0x32, 0x31, 0x32, 0x34, 0x32, 0x2c, 0x27, 0x26, 0x2b, 0x2b, 0x2a, 0x2a, 0x2a, 0x29, 0x28, 0x27, 0x22, 0x23, 0x25, 0x26, 0x28, 0x29, 0x28, 0x28, 0x2c, 0x30, 0x35, 0x37, 0x34, 0x2e, 0x29, 0x26, 0x29, 0x29, 0x2b, 0x2e, 0x31, 0x31, 0x2f, 0x2d, 0x2c, 0x25, 0x22, 0x27, 0x2b, 0x2d, 0x30, 0x36, 0x2f, 0x2f, 0x2f, 0x2e, 0x2c, 0x2b, 0x29, 0x28, 0x22, 0x23, 0x23, 0x24, 0x2a, 0x31, 0x34, 0x34, 0x2d, 0x2e, 0x2e, 0x2d, 0x2c, 0x2d, 0x30, 0x33, 0x3c, 0x3a, 0x39, 0x3b, 0x3e, 0x3f, 0x3c, 0x39, 0x38, 0x37, 0x35, 0x32, 0x2f, 0x2e, 0x2f, 0x31, 0x35, 0x33, 0x31, 0x30, 0x31, 0x32, 0x32, 0x31, 0x2f, 0x30, 0x33, 0x37, 0x38, 0x39, 0x3c, 0x40, 0x3b, 0x38, 0x37, 0x37, 0x36, 0x35, 0x38, 0x3c, 0x3e, 0x42, 0x48, 0x4e, 0x51, 0x4e, 0x49, 0x44, 0x45, 0x45, 0x47, 0x4d, 0x55, 0x58, 0x57, 0x54, 0x58, 0x4e, 0x4f, 0x5d, 0x5e, 0x4f, 0x45, 0x46, 0x46, 0x44, 0x40, 0x3d, 0x3c, 0x3d, 0x3e, 0x3e, 0x42, 0x42, 0x42, 0x41, 0x40, 0x3e, 0x3c, 0x3b, 0x41, 0x41, 0x42, 0x43, 0x44, 0x44, 0x42, 0x40, 0x41, 0x43, 0x44, 0x42, 0x3e, 0x3c, 0x3e, 0x40, 0x4a, 0x4a, 0x4a, 0x48, 0x44, 0x42, 0x42, 0x44, 0x43, 0x44, 0x45, 0x43, 0x40, 0x3f, 0x3f, 0x41, 0x3f, 0x3f, 0x43, 0x48, 0x49, 0x47, 0x45, 0x46, 0x47, 0x46, 0x46, 0x47, 0x49, 0x4a, 0x4b, 0x4a, 0x4c, 0x4a, 0x49, 0x4b, 0x4d, 0x4f, 0x53, 0x57, 0x53, 0x50, 0x4e, 0x51, 0x58, 0x5c, 0x5a, 0x55, 0x52, 0x4d, 0x45, 0x40, 0x3f, 0x42, 0x45, 0x46, 0x50, 0x55, 0x57, 0x56, 0x5b, 0x64, 0x67, 0x62, 0x65, 0x62, 0x5e, 0x59, 0x56, 0x56, 0x57, 0x58, 0x58, 0x55, 0x58, 0x5d, 0x5b, 0x55, 0x56, 0x5e, 0x70, 0x8d, 0xa1, 0xa3, 0xa1, 0x9c, 0x90, 0x88, 0x87, 0x88, 0x8a, 0x8b, 0x8b, 0x8b, 0x8a, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8c, 0x8b, 0x8a, 0x88, 0x87, 0x87, 0x87, 0x86, 0x85, 0x89, 0x8a, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x88, 0x8c, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x80, 0x7e, 0x7a, 0x78, 0x75, 0x73, 0x70, 0x6c, 0x68, 0x64, 0x64, 0x61, 0x5e, 0x5b, 0x59, 0x59, 0x5f, 0x66, 0x71, 0x7f, 0x92, 0xa0, 0xa8, 0xac, 0xb1, 0xb5, 0xb8, 0xb9, 0xb7, 0xb4, 0xb1, 0xae, 0xa8, 0xa3, 0x9e, 0x9d, 0x9b, 0x9a, 0x9a, 0x9c, 0x9d, 0x9f, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9a, 0x9d, 0x9b, 0x99, 0x98, 0x97, 0x97, 0x98, 0x98, 0x9a, 0x9c, 0x9c, 0x9a, 0x94, 0x8a, 0x7c, 0x72, 0x6b, 0x6c, 0x71, 0x79, 0x81, 0x88, 0x8f, 0x95, 0x98, 0x9d, 0xa3, 0xa7, 0xa9, 0xaa, 0xac, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xaf, 0xad, 0xac, 0xad, 0xac, 0xac, 0xac, 0xac, 0xaa, 0xa8, 0xa6, 0xa5, 0xa2, 0x9f, 0x9c, 0x98, 0x94, 0x91, 0x8e, 0x8a, 0x87, 0x83, 0x7f, 0x7b, 0x76, 0x72, 0x6e, 0x6b, 0x64, 0x6a, 0x78, 0x7d, 0x7e, 0x7b, 0x76, 0x6c, 0x6c, 0x6a, 0x6a, 0x70, 0x7b, 0x85, 0x89, 0x89, 0x7d, 0x6d, 0x62, 0x60, 0x64, 0x68, 0x6a, 0x72, 0x71, 0x63, 0x51, 0x4a, 0x46, 0x43, 0x43, 0x46, 0x52, 0x5f, 0x65, 0x60, 0x56, 0x4c, 0x46, 0x3f, 0x54, 0x68, 0x7c, 0x77, 0x67, 0x6a, 0x6d, 0x6e, 0x67, 0x67, 0x66, 0x5d, 0x58, 0x5b, 0x5b, 0x65, 0x6f, 0x6f, 0x65, 0x5a, 0x4c, 0x41, 0x40, 0x3e, 0x48, 0x59, 0x62, 0x63, 0x68, 0x6b, 0x65, 0x5b, 0x57, 0x5c, 0x66, 0x6f, 0x74, 0x6b, 0x58, 0x44, 0x3c, 0x3a, 0x4b, 0x66, 0x76, 0x71, 0x64, 0x4b, 0x3d, 0x3a, 0x3b, 0x30, 0x30, 0x41, 0x50, 0x6a, 0x70, 0x6a, 0x61, 0x63, 0x66, 0x64, 0x63, 0x65, 0x66, 0x5f, 0x5a, 0x59, 0x50, 0x43, 0x3f, 0x48, 0x49, 0x4d, 0x4f, 0x4b, 0x47, 0x4f, 0x5b, 0x61, 0x53, 0x4d, 0x46, 0x38, 0x3e, 0x54, 0x5e, 0x52, 0x3e, 0x3c, 0x50, 0x62, 0x66, 0x5f, 0x54, 0x5d, 0x53, 0x4c, 0x4d, 0x50, 0x51, 0x54, 0x59, 0x51, 0x4c, 0x3d, 0x2e, 0x30, 0x3f, 0x4c, 0x4f, 0x62, 0x73, 0x7c, 0x78, 0x71, 0x6e, 0x6d, 0x6d, 0x72, 0x69, 0x65, 0x6d, 0x70, 0x5d, 0x3f, 0x2c, 0x1e, 0x2b, 0x4c, 0x61, 0x5b, 0x5f, 0x67, 0x5f, 0x5b, 0x50, 0x53, 0x60, 0x68, 0x6f, 0x74, 0x74, 0x7a, 0x78, 0x71, 0x63, 0x54, 0x44, 0x37, 0x2f, 0x25, 0x21, 0x29, 0x3a, 0x4b, 0x5e, 0x66, 0x5f, 0x2a, 0x27, 0x25, 0x27, 0x29, 0x2a, 0x2a, 0x2b, 0x2c, 0x2e, 0x31, 0x32, 0x2f, 0x2b, 0x2a, 0x2b, 0x2e, 0x2f, 0x31, 0x35, 0x38, 0x3b, 0x3d, 0x3d, 0x34, 0x31, 0x31, 0x36, 0x39, 0x36, 0x30, 0x2c, 0x2b, 0x2b, 0x2b, 0x29, 0x28, 0x27, 0x26, 0x27, 0x25, 0x27, 0x29, 0x2b, 0x2b, 0x2c, 0x2b, 0x2b, 0x2a, 0x30, 0x38, 0x3c, 0x3c, 0x36, 0x30, 0x2c, 0x2b, 0x2b, 0x2c, 0x2f, 0x32, 0x34, 0x32, 0x30, 0x34, 0x2d, 0x29, 0x2c, 0x2e, 0x2c, 0x2c, 0x2f, 0x2f, 0x30, 0x30, 0x2f, 0x2f, 0x2e, 0x2d, 0x2d, 0x2a, 0x28, 0x25, 0x24, 0x28, 0x31, 0x36, 0x37, 0x33, 0x30, 0x2d, 0x2c, 0x2f, 0x32, 0x34, 0x35, 0x3b, 0x38, 0x35, 0x36, 0x38, 0x39, 0x38, 0x35, 0x32, 0x32, 0x31, 0x31, 0x31, 0x32, 0x35, 0x37, 0x34, 0x33, 0x31, 0x30, 0x30, 0x32, 0x33, 0x33, 0x30, 0x30, 0x32, 0x36, 0x39, 0x3a, 0x3d, 0x41, 0x3d, 0x3a, 0x38, 0x37, 0x35, 0x34, 0x36, 0x3a, 0x3f, 0x43, 0x47, 0x49, 0x49, 0x4c, 0x50, 0x54, 0x58, 0x57, 0x52, 0x4b, 0x45, 0x45, 0x4b, 0x51, 0x51, 0x49, 0x46, 0x4c, 0x4f, 0x49, 0x44, 0x45, 0x44, 0x45, 0x46, 0x48, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x49, 0x46, 0x43, 0x41, 0x40, 0x3f, 0x3f, 0x45, 0x45, 0x46, 0x47, 0x47, 0x46, 0x43, 0x40, 0x3f, 0x41, 0x43, 0x42, 0x3e, 0x3d, 0x3f, 0x41, 0x45, 0x48, 0x4a, 0x49, 0x46, 0x43, 0x42, 0x42, 0x49, 0x4a, 0x49, 0x46, 0x41, 0x3e, 0x3e, 0x3f, 0x3d, 0x3e, 0x41, 0x45, 0x46, 0x44, 0x42, 0x43, 0x46, 0x47, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x4a, 0x4a, 0x49, 0x4a, 0x4d, 0x4f, 0x50, 0x53, 0x56, 0x54, 0x51, 0x50, 0x55, 0x5c, 0x5d, 0x59, 0x55, 0x57, 0x51, 0x4a, 0x46, 0x44, 0x44, 0x43, 0x42, 0x43, 0x42, 0x45, 0x4a, 0x4d, 0x4c, 0x4c, 0x4d, 0x55, 0x55, 0x54, 0x54, 0x55, 0x57, 0x58, 0x5a, 0x56, 0x55, 0x5a, 0x60, 0x5d, 0x55, 0x56, 0x5d, 0x6c, 0x87, 0x9b, 0x9f, 0x9f, 0x99, 0x8e, 0x87, 0x88, 0x88, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x82, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x88, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7d, 0x7b, 0x77, 0x75, 0x72, 0x6f, 0x6c, 0x68, 0x64, 0x61, 0x5e, 0x5b, 0x59, 0x57, 0x56, 0x56, 0x5a, 0x5f, 0x6d, 0x7b, 0x8e, 0x9d, 0xa4, 0xa7, 0xab, 0xaf, 0xb2, 0xb2, 0xb1, 0xad, 0xaa, 0xa7, 0xa1, 0x9c, 0x97, 0x96, 0x94, 0x93, 0x92, 0x94, 0x95, 0x97, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x94, 0x93, 0x93, 0x93, 0x95, 0x98, 0x9c, 0x9e, 0x9f, 0xa1, 0xa0, 0x9c, 0x97, 0x8e, 0x81, 0x75, 0x66, 0x63, 0x64, 0x6a, 0x73, 0x7b, 0x85, 0x8d, 0x92, 0x96, 0x9b, 0x9e, 0xa0, 0xa3, 0xa6, 0xa9, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xae, 0xad, 0xac, 0xad, 0xac, 0xac, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa5, 0xa3, 0x9f, 0x9b, 0x97, 0x92, 0x8d, 0x8a, 0x88, 0x85, 0x82, 0x7e, 0x79, 0x75, 0x70, 0x6c, 0x6b, 0x65, 0x69, 0x73, 0x77, 0x7a, 0x7c, 0x7a, 0x71, 0x72, 0x71, 0x70, 0x73, 0x7c, 0x82, 0x85, 0x86, 0x7e, 0x71, 0x64, 0x5d, 0x5e, 0x63, 0x69, 0x7b, 0x79, 0x69, 0x55, 0x4d, 0x46, 0x3e, 0x3a, 0x44, 0x4b, 0x59, 0x68, 0x6f, 0x69, 0x59, 0x4d, 0x49, 0x58, 0x65, 0x72, 0x6d, 0x63, 0x6c, 0x73, 0x72, 0x6c, 0x6e, 0x6f, 0x63, 0x56, 0x51, 0x4d, 0x5a, 0x66, 0x68, 0x5f, 0x55, 0x4b, 0x47, 0x4b, 0x43, 0x4a, 0x59, 0x63, 0x64, 0x66, 0x68, 0x65, 0x5c, 0x56, 0x58, 0x62, 0x6f, 0x7c, 0x7c, 0x70, 0x53, 0x42, 0x3a, 0x49, 0x64, 0x73, 0x6f, 0x65, 0x4b, 0x42, 0x3e, 0x3a, 0x2f, 0x2e, 0x3f, 0x53, 0x6c, 0x6f, 0x68, 0x5f, 0x62, 0x63, 0x61, 0x60, 0x5c, 0x61, 0x68, 0x71, 0x6c, 0x54, 0x41, 0x40, 0x4e, 0x49, 0x46, 0x46, 0x47, 0x48, 0x50, 0x59, 0x4c, 0x40, 0x3c, 0x36, 0x2d, 0x39, 0x53, 0x5f, 0x57, 0x4c, 0x51, 0x5f, 0x61, 0x5b, 0x5a, 0x59, 0x61, 0x55, 0x4b, 0x4c, 0x52, 0x55, 0x57, 0x5b, 0x57, 0x50, 0x41, 0x35, 0x3a, 0x4d, 0x5c, 0x62, 0x66, 0x71, 0x7a, 0x78, 0x75, 0x77, 0x77, 0x6f, 0x6b, 0x54, 0x57, 0x70, 0x6a, 0x41, 0x24, 0x21, 0x21, 0x29, 0x50, 0x6e, 0x62, 0x53, 0x54, 0x53, 0x3f, 0x3e, 0x4d, 0x64, 0x70, 0x71, 0x69, 0x5e, 0x65, 0x60, 0x54, 0x45, 0x3a, 0x35, 0x31, 0x2c, 0x1f, 0x26, 0x36, 0x49, 0x57, 0x60, 0x5d, 0x53, 0x2d, 0x2a, 0x27, 0x28, 0x2a, 0x2b, 0x29, 0x26, 0x28, 0x2c, 0x31, 0x36, 0x36, 0x34, 0x32, 0x30, 0x32, 0x34, 0x37, 0x38, 0x38, 0x39, 0x3b, 0x3e, 0x3b, 0x36, 0x33, 0x36, 0x38, 0x34, 0x2e, 0x2a, 0x2a, 0x2b, 0x2b, 0x29, 0x27, 0x27, 0x29, 0x2b, 0x2d, 0x2d, 0x2d, 0x2c, 0x2b, 0x2c, 0x2e, 0x30, 0x2f, 0x32, 0x36, 0x39, 0x3a, 0x38, 0x35, 0x33, 0x2f, 0x30, 0x2f, 0x2e, 0x30, 0x33, 0x32, 0x30, 0x33, 0x2f, 0x2e, 0x30, 0x32, 0x31, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x31, 0x31, 0x32, 0x30, 0x2c, 0x28, 0x2a, 0x31, 0x36, 0x38, 0x35, 0x31, 0x2d, 0x2e, 0x32, 0x36, 0x36, 0x34, 0x2f, 0x2f, 0x32, 0x36, 0x3a, 0x3c, 0x3b, 0x39, 0x31, 0x30, 0x30, 0x2f, 0x30, 0x31, 0x32, 0x34, 0x32, 0x32, 0x30, 0x30, 0x30, 0x31, 0x33, 0x33, 0x31, 0x30, 0x32, 0x36, 0x39, 0x3a, 0x3b, 0x3e, 0x3f, 0x3d, 0x3b, 0x3a, 0x38, 0x36, 0x37, 0x3a, 0x3e, 0x42, 0x46, 0x46, 0x45, 0x47, 0x4c, 0x52, 0x64, 0x67, 0x67, 0x61, 0x58, 0x55, 0x5b, 0x63, 0x6a, 0x64, 0x5f, 0x5d, 0x5b, 0x56, 0x51, 0x4f, 0x46, 0x4a, 0x51, 0x57, 0x57, 0x51, 0x4d, 0x4b, 0x4a, 0x48, 0x45, 0x42, 0x40, 0x3f, 0x3f, 0x3f, 0x44, 0x45, 0x46, 0x47, 0x47, 0x46, 0x43, 0x40, 0x3f, 0x41, 0x43, 0x44, 0x42, 0x41, 0x42, 0x43, 0x43, 0x48, 0x4d, 0x4d, 0x4b, 0x48, 0x43, 0x3e, 0x47, 0x49, 0x4a, 0x46, 0x41, 0x3d, 0x3c, 0x3d, 0x3e, 0x3d, 0x3f, 0x42, 0x43, 0x41, 0x41, 0x42, 0x43, 0x46, 0x4a, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4b, 0x4e, 0x4f, 0x4e, 0x51, 0x54, 0x56, 0x53, 0x53, 0x58, 0x5d, 0x5c, 0x58, 0x55, 0x54, 0x4e, 0x49, 0x46, 0x43, 0x3e, 0x3b, 0x3b, 0x3a, 0x39, 0x40, 0x4d, 0x55, 0x56, 0x5b, 0x62, 0x59, 0x58, 0x57, 0x56, 0x55, 0x55, 0x54, 0x54, 0x56, 0x56, 0x5b, 0x5f, 0x5d, 0x57, 0x56, 0x5a, 0x65, 0x7e, 0x8f, 0x94, 0x98, 0x95, 0x8c, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x87, 0x86, 0x88, 0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x88, 0x88, 0x87, 0x86, 0x86, 0x86, 0x86, 0x84, 0x82, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x73, 0x70, 0x6d, 0x6a, 0x67, 0x64, 0x61, 0x5f, 0x57, 0x55, 0x55, 0x57, 0x57, 0x56, 0x56, 0x58, 0x68, 0x75, 0x88, 0x97, 0x9f, 0xa2, 0xa4, 0xa6, 0xa9, 0xaa, 0xa9, 0xa6, 0xa3, 0xa1, 0x9b, 0x96, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x91, 0x95, 0x9a, 0x9f, 0xa2, 0xa1, 0xa3, 0xa1, 0x9c, 0x98, 0x91, 0x85, 0x78, 0x66, 0x60, 0x5c, 0x61, 0x68, 0x70, 0x7b, 0x85, 0x8c, 0x90, 0x95, 0x98, 0x9b, 0x9e, 0xa2, 0xa6, 0xa9, 0xaa, 0xac, 0xad, 0xad, 0xad, 0xac, 0xab, 0xac, 0xab, 0xaa, 0xaa, 0xaa, 0xa9, 0xa7, 0xa5, 0xa4, 0xa2, 0x9f, 0x9b, 0x97, 0x91, 0x8b, 0x88, 0x85, 0x83, 0x7f, 0x7c, 0x77, 0x72, 0x6d, 0x6a, 0x6a, 0x64, 0x67, 0x6d, 0x6e, 0x73, 0x79, 0x79, 0x79, 0x78, 0x75, 0x72, 0x75, 0x7d, 0x84, 0x87, 0x88, 0x81, 0x75, 0x67, 0x5d, 0x5d, 0x64, 0x6c, 0x7c, 0x7b, 0x6c, 0x5c, 0x5b, 0x5e, 0x5d, 0x5c, 0x54, 0x4e, 0x4b, 0x51, 0x58, 0x59, 0x54, 0x4f, 0x4a, 0x4f, 0x4a, 0x4f, 0x53, 0x58, 0x69, 0x6e, 0x6e, 0x68, 0x6b, 0x6d, 0x61, 0x55, 0x52, 0x52, 0x5f, 0x69, 0x6a, 0x63, 0x5b, 0x51, 0x49, 0x49, 0x49, 0x4b, 0x58, 0x63, 0x65, 0x67, 0x69, 0x67, 0x62, 0x58, 0x56, 0x5e, 0x6a, 0x7a, 0x84, 0x82, 0x69, 0x57, 0x49, 0x51, 0x64, 0x70, 0x6d, 0x65, 0x51, 0x4a, 0x40, 0x38, 0x31, 0x32, 0x46, 0x5d, 0x70, 0x6f, 0x67, 0x63, 0x65, 0x64, 0x62, 0x64, 0x53, 0x56, 0x60, 0x6e, 0x6a, 0x52, 0x48, 0x55, 0x4f, 0x46, 0x3f, 0x3f, 0x44, 0x4c, 0x54, 0x5a, 0x51, 0x4d, 0x4d, 0x41, 0x30, 0x3c, 0x58, 0x64, 0x55, 0x46, 0x47, 0x54, 0x56, 0x54, 0x58, 0x5d, 0x57, 0x4b, 0x42, 0x45, 0x4d, 0x54, 0x59, 0x5d, 0x5c, 0x45, 0x33, 0x37, 0x42, 0x4b, 0x54, 0x5d, 0x6b, 0x72, 0x7a, 0x7c, 0x7c, 0x82, 0x80, 0x70, 0x51, 0x3b, 0x3a, 0x46, 0x3d, 0x27, 0x1d, 0x1f, 0x2c, 0x3d, 0x5b, 0x6c, 0x66, 0x5f, 0x54, 0x42, 0x2f, 0x29, 0x3c, 0x5c, 0x64, 0x5d, 0x5b, 0x60, 0x5d, 0x58, 0x4b, 0x3c, 0x34, 0x34, 0x34, 0x32, 0x20, 0x2d, 0x3f, 0x51, 0x62, 0x6a, 0x63, 0x58, 0x32, 0x2d, 0x28, 0x28, 0x2c, 0x2f, 0x2c, 0x27, 0x25, 0x2a, 0x32, 0x39, 0x3d, 0x3c, 0x38, 0x33, 0x33, 0x35, 0x37, 0x38, 0x38, 0x39, 0x3b, 0x3d, 0x3c, 0x38, 0x36, 0x35, 0x33, 0x2f, 0x2c, 0x2b, 0x30, 0x31, 0x31, 0x2e, 0x2b, 0x2a, 0x2e, 0x31, 0x31, 0x31, 0x30, 0x2d, 0x2b, 0x2a, 0x2c, 0x2e, 0x32, 0x32, 0x33, 0x35, 0x36, 0x37, 0x37, 0x37, 0x36, 0x36, 0x34, 0x30, 0x30, 0x33, 0x33, 0x31, 0x32, 0x33, 0x33, 0x34, 0x38, 0x3b, 0x3a, 0x37, 0x34, 0x33, 0x33, 0x32, 0x33, 0x33, 0x34, 0x35, 0x35, 0x35, 0x32, 0x2e, 0x2e, 0x31, 0x35, 0x37, 0x33, 0x32, 0x32, 0x34, 0x37, 0x38, 0x36, 0x34, 0x37, 0x38, 0x38, 0x38, 0x37, 0x34, 0x31, 0x2f, 0x36, 0x35, 0x33, 0x32, 0x31, 0x31, 0x30, 0x30, 0x33, 0x33, 0x33, 0x32, 0x32, 0x33, 0x34, 0x35, 0x35, 0x33, 0x35, 0x38, 0x3a, 0x39, 0x3a, 0x3b, 0x3f, 0x3d, 0x3c, 0x3c, 0x3a, 0x37, 0x38, 0x3b, 0x3c, 0x41, 0x49, 0x4f, 0x50, 0x4f, 0x4e, 0x4d, 0x4e, 0x54, 0x5b, 0x5e, 0x5f, 0x62, 0x67, 0x6c, 0x6f, 0x6b, 0x6a, 0x6a, 0x65, 0x5a, 0x51, 0x4e, 0x4d, 0x4e, 0x53, 0x56, 0x53, 0x4b, 0x46, 0x46, 0x46, 0x46, 0x45, 0x43, 0x42, 0x40, 0x3e, 0x3e, 0x40, 0x41, 0x42, 0x44, 0x45, 0x45, 0x42, 0x40, 0x40, 0x42, 0x45, 0x46, 0x47, 0x46, 0x45, 0x44, 0x49, 0x4c, 0x4e, 0x4c, 0x4b, 0x4a, 0x45, 0x3f, 0x41, 0x44, 0x48, 0x46, 0x42, 0x3e, 0x3e, 0x3f, 0x41, 0x3f, 0x3f, 0x41, 0x41, 0x40, 0x41, 0x44, 0x42, 0x46, 0x4a, 0x4a, 0x48, 0x46, 0x47, 0x49, 0x49, 0x48, 0x4a, 0x4c, 0x4d, 0x4d, 0x51, 0x55, 0x59, 0x55, 0x54, 0x58, 0x5a, 0x58, 0x55, 0x55, 0x58, 0x53, 0x4e, 0x4d, 0x4a, 0x45, 0x44, 0x45, 0x46, 0x47, 0x4b, 0x4f, 0x52, 0x54, 0x59, 0x5e, 0x62, 0x60, 0x5c, 0x58, 0x55, 0x53, 0x52, 0x51, 0x58, 0x5a, 0x5c, 0x5c, 0x5b, 0x59, 0x5a, 0x5b, 0x5d, 0x71, 0x7f, 0x85, 0x8c, 0x8e, 0x89, 0x86, 0x87, 0x88, 0x89, 0x89, 0x89, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x82, 0x83, 0x81, 0x82, 0x84, 0x85, 0x84, 0x83, 0x84, 0x84, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x76, 0x73, 0x6f, 0x6c, 0x69, 0x66, 0x65, 0x64, 0x62, 0x61, 0x59, 0x58, 0x5a, 0x60, 0x63, 0x61, 0x5d, 0x5b, 0x61, 0x6d, 0x7f, 0x8e, 0x96, 0x99, 0x9a, 0x9a, 0x9c, 0x9d, 0x9d, 0x9a, 0x98, 0x97, 0x92, 0x8d, 0x87, 0x87, 0x86, 0x85, 0x85, 0x85, 0x86, 0x87, 0x86, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x89, 0x8a, 0x8e, 0x93, 0x99, 0x9e, 0xa1, 0xa1, 0xa3, 0xa0, 0x9b, 0x97, 0x92, 0x85, 0x78, 0x66, 0x5d, 0x57, 0x5b, 0x61, 0x66, 0x70, 0x7a, 0x82, 0x87, 0x8e, 0x93, 0x96, 0x9a, 0x9d, 0xa0, 0xa5, 0xa6, 0xa7, 0xa9, 0xa9, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xa8, 0xa8, 0xa8, 0xa7, 0xa5, 0xa3, 0xa1, 0xa0, 0x9e, 0x9c, 0x98, 0x92, 0x8b, 0x87, 0x82, 0x80, 0x7d, 0x79, 0x75, 0x70, 0x6a, 0x67, 0x67, 0x62, 0x64, 0x67, 0x67, 0x6b, 0x73, 0x74, 0x78, 0x77, 0x75, 0x74, 0x78, 0x7f, 0x84, 0x84, 0x85, 0x81, 0x78, 0x6d, 0x64, 0x61, 0x64, 0x67, 0x7d, 0x7e, 0x70, 0x5f, 0x5d, 0x63, 0x64, 0x65, 0x65, 0x5d, 0x56, 0x51, 0x4e, 0x4d, 0x4f, 0x53, 0x5f, 0x68, 0x63, 0x5f, 0x5a, 0x5b, 0x66, 0x65, 0x66, 0x62, 0x67, 0x6b, 0x60, 0x57, 0x5a, 0x60, 0x67, 0x6e, 0x6d, 0x67, 0x63, 0x59, 0x4b, 0x45, 0x48, 0x47, 0x52, 0x61, 0x66, 0x68, 0x6a, 0x68, 0x64, 0x59, 0x59, 0x61, 0x68, 0x72, 0x7e, 0x82, 0x80, 0x74, 0x67, 0x64, 0x6a, 0x70, 0x6d, 0x67, 0x5b, 0x52, 0x45, 0x3d, 0x3c, 0x41, 0x53, 0x6a, 0x6e, 0x69, 0x61, 0x63, 0x69, 0x65, 0x62, 0x67, 0x62, 0x60, 0x60, 0x64, 0x5a, 0x43, 0x40, 0x53, 0x4e, 0x44, 0x3c, 0x3b, 0x42, 0x4c, 0x55, 0x5b, 0x56, 0x55, 0x53, 0x41, 0x2e, 0x38, 0x4d, 0x50, 0x43, 0x31, 0x33, 0x47, 0x53, 0x55, 0x58, 0x5a, 0x4e, 0x44, 0x3e, 0x42, 0x4a, 0x51, 0x5a, 0x62, 0x66, 0x4c, 0x37, 0x39, 0x43, 0x49, 0x51, 0x59, 0x6e, 0x72, 0x7b, 0x7e, 0x7e, 0x87, 0x82, 0x6d, 0x41, 0x39, 0x3d, 0x42, 0x3f, 0x43, 0x46, 0x3f, 0x49, 0x67, 0x77, 0x6d, 0x69, 0x72, 0x66, 0x4b, 0x2b, 0x2a, 0x41, 0x61, 0x68, 0x60, 0x60, 0x64, 0x66, 0x65, 0x5b, 0x47, 0x37, 0x30, 0x2b, 0x25, 0x23, 0x39, 0x4c, 0x55, 0x64, 0x72, 0x76, 0x76, 0x36, 0x2f, 0x28, 0x27, 0x2d, 0x31, 0x2f, 0x29, 0x21, 0x27, 0x2f, 0x38, 0x3d, 0x3e, 0x38, 0x32, 0x32, 0x33, 0x34, 0x37, 0x3a, 0x3c, 0x3e, 0x3e, 0x35, 0x35, 0x36, 0x36, 0x34, 0x32, 0x34, 0x38, 0x39, 0x3a, 0x38, 0x34, 0x2f, 0x2e, 0x31, 0x35, 0x31, 0x33, 0x34, 0x33, 0x2f, 0x2b, 0x29, 0x28, 0x31, 0x32, 0x33, 0x36, 0x38, 0x3a, 0x3b, 0x3a, 0x3e, 0x3f, 0x3b, 0x35, 0x33, 0x36, 0x37, 0x35, 0x38, 0x3b, 0x3b, 0x39, 0x3b, 0x40, 0x3e, 0x38, 0x38, 0x37, 0x36, 0x35, 0x36, 0x36, 0x38, 0x39, 0x33, 0x36, 0x35, 0x32, 0x30, 0x31, 0x34, 0x34, 0x30, 0x33, 0x37, 0x3a, 0x3a, 0x38, 0x36, 0x34, 0x36, 0x36, 0x35, 0x33, 0x32, 0x32, 0x33, 0x35, 0x36, 0x35, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x34, 0x35, 0x35, 0x36, 0x35, 0x36, 0x37, 0x38, 0x39, 0x37, 0x38, 0x3b, 0x3c, 0x3a, 0x39, 0x3a, 0x3d, 0x3c, 0x3c, 0x3c, 0x3a, 0x38, 0x38, 0x3b, 0x3c, 0x41, 0x4a, 0x56, 0x60, 0x66, 0x66, 0x65, 0x65, 0x63, 0x60, 0x5f, 0x5e, 0x5c, 0x5b, 0x59, 0x59, 0x58, 0x5f, 0x69, 0x67, 0x57, 0x4c, 0x4c, 0x4e, 0x4c, 0x4b, 0x4b, 0x47, 0x42, 0x42, 0x46, 0x46, 0x47, 0x48, 0x49, 0x48, 0x45, 0x42, 0x41, 0x3d, 0x3d, 0x3f, 0x41, 0x43, 0x44, 0x42, 0x41, 0x41, 0x43, 0x45, 0x48, 0x49, 0x48, 0x46, 0x44, 0x51, 0x51, 0x4c, 0x47, 0x46, 0x49, 0x48, 0x43, 0x3d, 0x43, 0x48, 0x49, 0x46, 0x43, 0x43, 0x44, 0x46, 0x43, 0x42, 0x43, 0x43, 0x43, 0x45, 0x48, 0x47, 0x4a, 0x4d, 0x4a, 0x45, 0x42, 0x45, 0x48, 0x46, 0x45, 0x47, 0x4a, 0x4c, 0x4d, 0x53, 0x59, 0x5a, 0x56, 0x54, 0x56, 0x57, 0x54, 0x53, 0x54, 0x57, 0x51, 0x4d, 0x4a, 0x47, 0x42, 0x41, 0x44, 0x44, 0x49, 0x4b, 0x47, 0x46, 0x4d, 0x53, 0x55, 0x5c, 0x5a, 0x57, 0x54, 0x53, 0x53, 0x55, 0x56, 0x5b, 0x5d, 0x5d, 0x5a, 0x59, 0x5c, 0x5d, 0x5c, 0x58, 0x68, 0x73, 0x79, 0x84, 0x89, 0x87, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x82, 0x82, 0x82, 0x83, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x78, 0x73, 0x70, 0x6d, 0x6a, 0x67, 0x65, 0x64, 0x65, 0x65, 0x64, 0x5f, 0x5f, 0x63, 0x6b, 0x70, 0x6e, 0x67, 0x63, 0x59, 0x65, 0x76, 0x85, 0x8e, 0x91, 0x91, 0x90, 0x8d, 0x8f, 0x8f, 0x8d, 0x8c, 0x8a, 0x86, 0x81, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x82, 0x84, 0x88, 0x8d, 0x93, 0x98, 0x9b, 0x9c, 0x9f, 0x9d, 0x97, 0x94, 0x8f, 0x82, 0x73, 0x61, 0x57, 0x52, 0x55, 0x5a, 0x5e, 0x66, 0x6f, 0x75, 0x7c, 0x84, 0x8c, 0x90, 0x93, 0x96, 0x98, 0xa2, 0xa3, 0xa4, 0xa5, 0xa7, 0xa7, 0xa8, 0xa8, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa5, 0xa3, 0xa1, 0x9f, 0x9e, 0x9e, 0x9c, 0x99, 0x93, 0x8c, 0x88, 0x80, 0x7e, 0x7b, 0x77, 0x73, 0x6e, 0x68, 0x64, 0x64, 0x60, 0x62, 0x65, 0x62, 0x67, 0x6e, 0x70, 0x70, 0x72, 0x74, 0x76, 0x7c, 0x81, 0x81, 0x7d, 0x7f, 0x7c, 0x78, 0x72, 0x6c, 0x65, 0x60, 0x5e, 0x76, 0x7f, 0x7a, 0x6e, 0x6a, 0x69, 0x63, 0x5f, 0x50, 0x4b, 0x4b, 0x52, 0x57, 0x57, 0x56, 0x56, 0x57, 0x6f, 0x77, 0x70, 0x62, 0x5d, 0x67, 0x67, 0x66, 0x62, 0x69, 0x6d, 0x61, 0x57, 0x5c, 0x64, 0x64, 0x68, 0x67, 0x66, 0x68, 0x61, 0x53, 0x4b, 0x44, 0x41, 0x4d, 0x5e, 0x65, 0x68, 0x6a, 0x68, 0x62, 0x59, 0x5d, 0x68, 0x6b, 0x6c, 0x73, 0x78, 0x90, 0x8a, 0x7f, 0x76, 0x72, 0x71, 0x6f, 0x6a, 0x5f, 0x56, 0x47, 0x42, 0x47, 0x4d, 0x5b, 0x6e, 0x67, 0x5e, 0x56, 0x5d, 0x66, 0x62, 0x5d, 0x64, 0x60, 0x62, 0x65, 0x68, 0x5e, 0x47, 0x42, 0x50, 0x4c, 0x44, 0x3c, 0x3a, 0x40, 0x4a, 0x53, 0x59, 0x5c, 0x58, 0x52, 0x42, 0x35, 0x43, 0x4f, 0x47, 0x38, 0x32, 0x40, 0x55, 0x58, 0x52, 0x53, 0x58, 0x4c, 0x45, 0x40, 0x43, 0x49, 0x50, 0x5c, 0x67, 0x67, 0x5a, 0x46, 0x38, 0x3b, 0x4b, 0x5a, 0x61, 0x68, 0x6c, 0x77, 0x7a, 0x78, 0x80, 0x7b, 0x63, 0x4a, 0x3e, 0x4d, 0x63, 0x5e, 0x4c, 0x40, 0x38, 0x5e, 0x75, 0x7b, 0x6d, 0x64, 0x63, 0x60, 0x5b, 0x57, 0x53, 0x59, 0x61, 0x61, 0x60, 0x5e, 0x56, 0x50, 0x57, 0x57, 0x49, 0x39, 0x31, 0x2b, 0x26, 0x2e, 0x4e, 0x60, 0x59, 0x51, 0x52, 0x56, 0x5a, 0x33, 0x33, 0x2e, 0x27, 0x24, 0x28, 0x2b, 0x2b, 0x2a, 0x29, 0x2a, 0x31, 0x39, 0x3d, 0x3a, 0x35, 0x32, 0x35, 0x36, 0x36, 0x35, 0x35, 0x39, 0x3c, 0x3b, 0x37, 0x33, 0x32, 0x35, 0x37, 0x37, 0x36, 0x36, 0x39, 0x3a, 0x35, 0x32, 0x32, 0x34, 0x35, 0x34, 0x36, 0x37, 0x34, 0x31, 0x2e, 0x2a, 0x26, 0x2d, 0x30, 0x32, 0x33, 0x33, 0x32, 0x32, 0x33, 0x37, 0x3b, 0x41, 0x42, 0x3d, 0x37, 0x38, 0x3d, 0x3d, 0x39, 0x34, 0x33, 0x39, 0x3e, 0x3e, 0x3a, 0x3e, 0x3a, 0x38, 0x3d, 0x44, 0x47, 0x42, 0x3c, 0x36, 0x35, 0x37, 0x39, 0x35, 0x2e, 0x2f, 0x36, 0x34, 0x38, 0x3b, 0x3a, 0x37, 0x35, 0x34, 0x34, 0x35, 0x34, 0x34, 0x36, 0x38, 0x38, 0x35, 0x32, 0x32, 0x32, 0x31, 0x30, 0x32, 0x36, 0x38, 0x38, 0x34, 0x36, 0x3b, 0x40, 0x3e, 0x38, 0x36, 0x39, 0x3a, 0x3a, 0x3c, 0x3e, 0x3b, 0x36, 0x37, 0x3b, 0x3c, 0x3d, 0x3d, 0x3b, 0x3a, 0x39, 0x3a, 0x3b, 0x3b, 0x3d, 0x44, 0x4f, 0x5e, 0x69, 0x6e, 0x70, 0x69, 0x64, 0x60, 0x63, 0x66, 0x66, 0x64, 0x63, 0x5b, 0x5f, 0x5d, 0x54, 0x4c, 0x4a, 0x4a, 0x4a, 0x4a, 0x48, 0x46, 0x45, 0x46, 0x46, 0x45, 0x43, 0x45, 0x46, 0x47, 0x49, 0x49, 0x48, 0x45, 0x43, 0x3e, 0x3e, 0x3e, 0x3f, 0x3f, 0x40, 0x40, 0x40, 0x42, 0x48, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d, 0x49, 0x4a, 0x4a, 0x48, 0x47, 0x46, 0x48, 0x4a, 0x47, 0x48, 0x49, 0x49, 0x46, 0x43, 0x44, 0x49, 0x48, 0x47, 0x45, 0x44, 0x44, 0x45, 0x47, 0x48, 0x45, 0x45, 0x46, 0x47, 0x47, 0x47, 0x47, 0x47, 0x45, 0x44, 0x43, 0x47, 0x4d, 0x52, 0x53, 0x53, 0x58, 0x54, 0x50, 0x4f, 0x51, 0x52, 0x50, 0x4e, 0x4e, 0x4d, 0x4b, 0x48, 0x46, 0x45, 0x46, 0x47, 0x51, 0x50, 0x4c, 0x48, 0x4b, 0x55, 0x5e, 0x62, 0x66, 0x5c, 0x52, 0x4d, 0x50, 0x56, 0x5c, 0x5e, 0x5d, 0x5a, 0x55, 0x54, 0x58, 0x5d, 0x60, 0x5f, 0x59, 0x57, 0x5f, 0x6b, 0x73, 0x7e, 0x86, 0x86, 0x88, 0x87, 0x86, 0x86, 0x87, 0x86, 0x84, 0x83, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x74, 0x73, 0x72, 0x6f, 0x6c, 0x68, 0x63, 0x5f, 0x5e, 0x5f, 0x60, 0x64, 0x66, 0x6c, 0x74, 0x7a, 0x7a, 0x76, 0x71, 0x62, 0x5f, 0x65, 0x76, 0x83, 0x85, 0x83, 0x83, 0x86, 0x82, 0x7f, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x71, 0x72, 0x73, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x7d, 0x7d, 0x7f, 0x83, 0x86, 0x89, 0x8e, 0x93, 0x94, 0x94, 0x94, 0x94, 0x90, 0x87, 0x7b, 0x73, 0x60, 0x59, 0x51, 0x4f, 0x51, 0x56, 0x5e, 0x65, 0x70, 0x76, 0x7f, 0x85, 0x89, 0x8c, 0x91, 0x94, 0x99, 0x9b, 0x9e, 0xa1, 0xa4, 0xa4, 0xa4, 0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9e, 0x9c, 0x9a, 0x98, 0x93, 0x8b, 0x85, 0x7f, 0x79, 0x74, 0x72, 0x71, 0x6d, 0x68, 0x66, 0x5b, 0x71, 0x79, 0x6c, 0x60, 0x5e, 0x65, 0x6f, 0x6d, 0x6d, 0x6d, 0x71, 0x7a, 0x83, 0x84, 0x81, 0x7c, 0x7d, 0x78, 0x75, 0x71, 0x66, 0x5b, 0x5b, 0x70, 0x7d, 0x7f, 0x77, 0x7a, 0x87, 0x8a, 0x81, 0x72, 0x65, 0x65, 0x76, 0x7d, 0x73, 0x6d, 0x72, 0x68, 0x62, 0x5d, 0x60, 0x64, 0x66, 0x66, 0x65, 0x60, 0x60, 0x65, 0x69, 0x65, 0x5d, 0x5f, 0x67, 0x67, 0x61, 0x5e, 0x63, 0x6e, 0x71, 0x63, 0x50, 0x46, 0x4a, 0x50, 0x59, 0x63, 0x6a, 0x69, 0x64, 0x61, 0x5d, 0x5c, 0x61, 0x6b, 0x71, 0x71, 0x6f, 0x7a, 0x85, 0x8f, 0x8e, 0x82, 0x75, 0x6e, 0x6c, 0x63, 0x59, 0x50, 0x4d, 0x51, 0x59, 0x66, 0x71, 0x65, 0x58, 0x50, 0x55, 0x5f, 0x61, 0x5f, 0x5d, 0x61, 0x62, 0x69, 0x6a, 0x56, 0x3e, 0x40, 0x51, 0x49, 0x3b, 0x3b, 0x46, 0x4c, 0x50, 0x59, 0x5e, 0x55, 0x52, 0x46, 0x37, 0x38, 0x44, 0x46, 0x3e, 0x2e, 0x30, 0x37, 0x43, 0x4c, 0x4d, 0x4a, 0x48, 0x45, 0x4c, 0x4c, 0x4a, 0x4f, 0x53, 0x59, 0x61, 0x5c, 0x4a, 0x3d, 0x39, 0x3d, 0x4d, 0x5e, 0x64, 0x61, 0x60, 0x6b, 0x76, 0x78, 0x7b, 0x6f, 0x55, 0x41, 0x48, 0x5b, 0x57, 0x5d, 0x5a, 0x60, 0x55, 0x57, 0x6b, 0x69, 0x62, 0x63, 0x6a, 0x67, 0x50, 0x44, 0x3e, 0x4c, 0x64, 0x6a, 0x62, 0x5b, 0x58, 0x5b, 0x59, 0x4e, 0x3b, 0x2d, 0x2b, 0x30, 0x34, 0x38, 0x54, 0x5d, 0x49, 0x39, 0x37, 0x3b, 0x3f, 0x33, 0x31, 0x2b, 0x24, 0x24, 0x2a, 0x2e, 0x30, 0x2d, 0x2c, 0x2d, 0x33, 0x39, 0x3c, 0x38, 0x34, 0x2e, 0x32, 0x38, 0x3a, 0x39, 0x37, 0x37, 0x38, 0x3a, 0x39, 0x39, 0x38, 0x37, 0x35, 0x31, 0x2d, 0x2f, 0x34, 0x38, 0x38, 0x36, 0x35, 0x35, 0x34, 0x34, 0x34, 0x33, 0x32, 0x33, 0x35, 0x33, 0x2f, 0x31, 0x33, 0x35, 0x36, 0x36, 0x35, 0x33, 0x32, 0x3b, 0x3f, 0x45, 0x46, 0x40, 0x3b, 0x3d, 0x43, 0x3e, 0x3d, 0x3a, 0x36, 0x38, 0x3c, 0x3f, 0x3f, 0x39, 0x3c, 0x40, 0x42, 0x41, 0x3d, 0x3a, 0x38, 0x3d, 0x3e, 0x3f, 0x3e, 0x3a, 0x35, 0x34, 0x36, 0x39, 0x39, 0x39, 0x39, 0x39, 0x38, 0x34, 0x31, 0x36, 0x36, 0x36, 0x35, 0x34, 0x33, 0x34, 0x34, 0x33, 0x34, 0x35, 0x36, 0x38, 0x3b, 0x3c, 0x3b, 0x3c, 0x3c, 0x40, 0x46, 0x45, 0x3f, 0x39, 0x37, 0x38, 0x38, 0x3a, 0x3e, 0x3f, 0x3e, 0x3f, 0x43, 0x3d, 0x3d, 0x3c, 0x3b, 0x3b, 0x3c, 0x40, 0x42, 0x40, 0x3f, 0x41, 0x47, 0x4f, 0x58, 0x5d, 0x5f, 0x5b, 0x5b, 0x5f, 0x68, 0x6e, 0x6d, 0x69, 0x66, 0x6d, 0x71, 0x70, 0x65, 0x57, 0x4d, 0x48, 0x45, 0x43, 0x41, 0x41, 0x45, 0x4b, 0x4d, 0x4a, 0x46, 0x42, 0x44, 0x47, 0x49, 0x4b, 0x49, 0x46, 0x43, 0x41, 0x40, 0x40, 0x40, 0x40, 0x3f, 0x3f, 0x3f, 0x40, 0x46, 0x4b, 0x4d, 0x4e, 0x4f, 0x4d, 0x4a, 0x45, 0x47, 0x49, 0x49, 0x4a, 0x4b, 0x4e, 0x50, 0x4c, 0x4a, 0x49, 0x4c, 0x4c, 0x4a, 0x49, 0x49, 0x4c, 0x4c, 0x4c, 0x4c, 0x4b, 0x49, 0x47, 0x46, 0x42, 0x45, 0x4a, 0x4d, 0x4e, 0x4b, 0x48, 0x45, 0x40, 0x40, 0x40, 0x42, 0x46, 0x4c, 0x50, 0x53, 0x59, 0x55, 0x4f, 0x4d, 0x4e, 0x50, 0x50, 0x4f, 0x4d, 0x4c, 0x4a, 0x46, 0x42, 0x42, 0x44, 0x46, 0x4f, 0x52, 0x56, 0x59, 0x5d, 0x60, 0x60, 0x5d, 0x61, 0x59, 0x51, 0x4e, 0x52, 0x58, 0x5c, 0x5d, 0x5c, 0x58, 0x54, 0x53, 0x56, 0x5b, 0x5e, 0x5d, 0x54, 0x50, 0x54, 0x5c, 0x62, 0x70, 0x7e, 0x82, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x78, 0x76, 0x75, 0x74, 0x72, 0x71, 0x6d, 0x6c, 0x6a, 0x64, 0x60, 0x5f, 0x63, 0x68, 0x6c, 0x6f, 0x74, 0x7a, 0x7e, 0x80, 0x7f, 0x7d, 0x73, 0x69, 0x61, 0x63, 0x6d, 0x75, 0x79, 0x7b, 0x6e, 0x71, 0x75, 0x77, 0x76, 0x72, 0x6d, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x69, 0x6c, 0x6f, 0x71, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x77, 0x7c, 0x7f, 0x81, 0x86, 0x8a, 0x89, 0x89, 0x8a, 0x8b, 0x89, 0x7f, 0x71, 0x66, 0x58, 0x52, 0x4d, 0x4c, 0x4e, 0x52, 0x59, 0x5f, 0x68, 0x6e, 0x77, 0x7d, 0x82, 0x86, 0x8a, 0x8e, 0x93, 0x95, 0x99, 0x9d, 0xa0, 0xa2, 0xa3, 0xa4, 0xa2, 0xa2, 0xa2, 0xa3, 0xa3, 0xa2, 0xa1, 0xa1, 0xa0, 0x9e, 0x9b, 0x98, 0x96, 0x90, 0x89, 0x83, 0x7e, 0x78, 0x73, 0x71, 0x6f, 0x6a, 0x66, 0x64, 0x5f, 0x79, 0x87, 0x7e, 0x6d, 0x60, 0x60, 0x69, 0x6f, 0x6d, 0x6a, 0x6a, 0x71, 0x7b, 0x81, 0x82, 0x7d, 0x7e, 0x79, 0x75, 0x72, 0x65, 0x59, 0x58, 0x6b, 0x78, 0x87, 0x89, 0x80, 0x7e, 0x8a, 0x9a, 0x94, 0x86, 0x78, 0x70, 0x6c, 0x69, 0x6a, 0x6d, 0x6c, 0x63, 0x5c, 0x5c, 0x62, 0x67, 0x6a, 0x6d, 0x5f, 0x65, 0x6b, 0x6c, 0x66, 0x60, 0x64, 0x6b, 0x66, 0x62, 0x60, 0x66, 0x71, 0x75, 0x6b, 0x5d, 0x57, 0x55, 0x53, 0x57, 0x60, 0x68, 0x68, 0x63, 0x61, 0x5e, 0x5d, 0x62, 0x6a, 0x6f, 0x6e, 0x6c, 0x6a, 0x75, 0x83, 0x8a, 0x87, 0x7f, 0x78, 0x74, 0x67, 0x5e, 0x56, 0x56, 0x5c, 0x63, 0x6b, 0x72, 0x66, 0x5a, 0x52, 0x56, 0x5f, 0x62, 0x63, 0x64, 0x5f, 0x61, 0x6b, 0x6f, 0x5f, 0x48, 0x42, 0x4c, 0x53, 0x45, 0x43, 0x4a, 0x4b, 0x4c, 0x52, 0x55, 0x54, 0x53, 0x4c, 0x41, 0x3b, 0x3c, 0x40, 0x41, 0x36, 0x40, 0x4e, 0x57, 0x54, 0x4a, 0x43, 0x42, 0x4a, 0x4f, 0x4b, 0x48, 0x50, 0x58, 0x5a, 0x5c, 0x56, 0x4b, 0x42, 0x3c, 0x3b, 0x49, 0x5e, 0x69, 0x6b, 0x61, 0x67, 0x77, 0x7e, 0x7a, 0x64, 0x45, 0x39, 0x42, 0x58, 0x5a, 0x61, 0x5c, 0x5f, 0x56, 0x60, 0x5f, 0x5d, 0x6e, 0x7a, 0x71, 0x5f, 0x48, 0x3d, 0x3f, 0x4f, 0x62, 0x66, 0x63, 0x5d, 0x55, 0x57, 0x51, 0x42, 0x32, 0x2d, 0x30, 0x33, 0x31, 0x44, 0x51, 0x61, 0x6d, 0x6a, 0x50, 0x38, 0x32, 0x40, 0x3b, 0x31, 0x2a, 0x29, 0x2e, 0x32, 0x33, 0x34, 0x30, 0x2c, 0x2b, 0x30, 0x34, 0x37, 0x37, 0x37, 0x3b, 0x3f, 0x3f, 0x3c, 0x38, 0x36, 0x35, 0x3c, 0x3e, 0x3f, 0x3d, 0x39, 0x34, 0x30, 0x2e, 0x32, 0x37, 0x3b, 0x3a, 0x38, 0x37, 0x36, 0x34, 0x34, 0x32, 0x2f, 0x2e, 0x33, 0x39, 0x39, 0x37, 0x35, 0x36, 0x38, 0x3a, 0x3b, 0x3a, 0x38, 0x36, 0x3e, 0x43, 0x49, 0x49, 0x43, 0x3d, 0x40, 0x47, 0x43, 0x45, 0x43, 0x3d, 0x39, 0x3b, 0x3f, 0x42, 0x3c, 0x3e, 0x41, 0x41, 0x3e, 0x3a, 0x37, 0x36, 0x3b, 0x3e, 0x41, 0x40, 0x41, 0x42, 0x40, 0x3e, 0x3c, 0x39, 0x38, 0x3a, 0x3d, 0x3d, 0x37, 0x32, 0x33, 0x36, 0x39, 0x39, 0x37, 0x36, 0x37, 0x39, 0x30, 0x33, 0x36, 0x37, 0x3a, 0x3d, 0x3e, 0x3d, 0x3c, 0x3d, 0x42, 0x4a, 0x4d, 0x49, 0x43, 0x3e, 0x40, 0x3f, 0x40, 0x42, 0x42, 0x41, 0x42, 0x44, 0x44, 0x43, 0x40, 0x3e, 0x3d, 0x3e, 0x42, 0x45, 0x48, 0x49, 0x4a, 0x4a, 0x49, 0x45, 0x41, 0x3f, 0x44, 0x4c, 0x59, 0x63, 0x66, 0x64, 0x66, 0x6a, 0x70, 0x74, 0x72, 0x64, 0x52, 0x44, 0x3c, 0x39, 0x3d, 0x3b, 0x3d, 0x44, 0x4d, 0x50, 0x4b, 0x46, 0x40, 0x43, 0x46, 0x4a, 0x4c, 0x4b, 0x47, 0x43, 0x41, 0x41, 0x41, 0x41, 0x40, 0x40, 0x40, 0x40, 0x41, 0x44, 0x46, 0x47, 0x49, 0x4b, 0x49, 0x46, 0x44, 0x47, 0x4a, 0x4c, 0x4e, 0x50, 0x52, 0x53, 0x4d, 0x49, 0x47, 0x4b, 0x50, 0x4f, 0x4b, 0x48, 0x4c, 0x4c, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x47, 0x48, 0x4b, 0x4e, 0x51, 0x50, 0x4c, 0x48, 0x44, 0x41, 0x41, 0x41, 0x40, 0x41, 0x46, 0x4d, 0x54, 0x5b, 0x55, 0x4f, 0x4b, 0x4b, 0x4d, 0x4f, 0x50, 0x4a, 0x4a, 0x47, 0x42, 0x3f, 0x3f, 0x43, 0x48, 0x49, 0x4a, 0x4a, 0x4c, 0x50, 0x56, 0x58, 0x57, 0x5a, 0x56, 0x51, 0x51, 0x55, 0x59, 0x5a, 0x5a, 0x57, 0x54, 0x52, 0x53, 0x56, 0x5a, 0x5c, 0x5c, 0x56, 0x50, 0x4f, 0x50, 0x54, 0x64, 0x7a, 0x83, 0x86, 0x85, 0x85, 0x85, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x72, 0x73, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6b, 0x6c, 0x6b, 0x66, 0x62, 0x63, 0x6b, 0x72, 0x75, 0x78, 0x7d, 0x81, 0x83, 0x86, 0x88, 0x89, 0x80, 0x73, 0x61, 0x58, 0x5c, 0x67, 0x6e, 0x6f, 0x6f, 0x6f, 0x6c, 0x67, 0x62, 0x61, 0x64, 0x67, 0x63, 0x63, 0x63, 0x63, 0x64, 0x67, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x6c, 0x6d, 0x70, 0x74, 0x76, 0x77, 0x79, 0x7d, 0x7f, 0x7f, 0x80, 0x80, 0x7d, 0x72, 0x63, 0x57, 0x51, 0x4d, 0x49, 0x49, 0x4b, 0x4e, 0x54, 0x59, 0x60, 0x66, 0x6e, 0x75, 0x7a, 0x7f, 0x84, 0x87, 0x8d, 0x8f, 0x93, 0x97, 0x9b, 0x9e, 0x9f, 0xa0, 0x9d, 0x9e, 0x9f, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0x9d, 0x99, 0x95, 0x92, 0x8c, 0x86, 0x81, 0x7c, 0x77, 0x72, 0x6f, 0x6d, 0x68, 0x63, 0x62, 0x5b, 0x74, 0x87, 0x85, 0x76, 0x64, 0x5e, 0x66, 0x70, 0x6d, 0x67, 0x62, 0x66, 0x71, 0x7c, 0x81, 0x7e, 0x7f, 0x7a, 0x76, 0x72, 0x64, 0x57, 0x54, 0x61, 0x71, 0x83, 0x83, 0x6f, 0x61, 0x6e, 0x83, 0x7a, 0x7b, 0x75, 0x6c, 0x6c, 0x77, 0x7f, 0x80, 0x6f, 0x63, 0x57, 0x54, 0x57, 0x5d, 0x62, 0x66, 0x68, 0x72, 0x78, 0x73, 0x69, 0x66, 0x6a, 0x6f, 0x66, 0x64, 0x63, 0x69, 0x73, 0x79, 0x75, 0x6c, 0x60, 0x59, 0x53, 0x54, 0x5f, 0x69, 0x6a, 0x65, 0x60, 0x60, 0x61, 0x65, 0x6a, 0x6d, 0x6c, 0x6b, 0x5d, 0x66, 0x75, 0x83, 0x8b, 0x89, 0x82, 0x7c, 0x6d, 0x64, 0x5c, 0x5e, 0x66, 0x6c, 0x6f, 0x70, 0x69, 0x5f, 0x58, 0x5c, 0x62, 0x66, 0x6b, 0x6f, 0x70, 0x6b, 0x67, 0x64, 0x56, 0x46, 0x44, 0x4d, 0x52, 0x48, 0x47, 0x4d, 0x4b, 0x4c, 0x52, 0x56, 0x52, 0x54, 0x52, 0x49, 0x3b, 0x34, 0x3a, 0x45, 0x51, 0x52, 0x54, 0x56, 0x54, 0x52, 0x54, 0x57, 0x58, 0x60, 0x5b, 0x4f, 0x50, 0x57, 0x59, 0x59, 0x5d, 0x50, 0x45, 0x3d, 0x3a, 0x47, 0x5a, 0x62, 0x62, 0x5b, 0x63, 0x75, 0x7a, 0x6f, 0x55, 0x3a, 0x40, 0x4a, 0x5a, 0x57, 0x52, 0x42, 0x3f, 0x3b, 0x59, 0x6d, 0x69, 0x64, 0x6e, 0x7b, 0x70, 0x4a, 0x33, 0x3b, 0x4b, 0x58, 0x5d, 0x61, 0x60, 0x58, 0x62, 0x5b, 0x49, 0x34, 0x2a, 0x2c, 0x2e, 0x2b, 0x3d, 0x58, 0x71, 0x7e, 0x81, 0x75, 0x66, 0x61, 0x3d, 0x36, 0x2c, 0x27, 0x27, 0x2a, 0x2c, 0x2c, 0x35, 0x33, 0x30, 0x30, 0x32, 0x35, 0x37, 0x38, 0x34, 0x36, 0x39, 0x3a, 0x3b, 0x3c, 0x3e, 0x3f, 0x3e, 0x40, 0x40, 0x3d, 0x38, 0x35, 0x35, 0x36, 0x3d, 0x40, 0x40, 0x3c, 0x38, 0x36, 0x34, 0x32, 0x34, 0x32, 0x2e, 0x2c, 0x2f, 0x35, 0x39, 0x38, 0x37, 0x37, 0x38, 0x3b, 0x3d, 0x3f, 0x3e, 0x3d, 0x3e, 0x44, 0x4a, 0x4a, 0x42, 0x3c, 0x3f, 0x46, 0x47, 0x4b, 0x4b, 0x44, 0x3e, 0x3d, 0x3f, 0x40, 0x41, 0x3c, 0x36, 0x36, 0x3a, 0x3c, 0x3a, 0x36, 0x38, 0x3c, 0x3f, 0x3f, 0x43, 0x49, 0x48, 0x43, 0x3d, 0x3b, 0x3a, 0x3e, 0x42, 0x40, 0x3c, 0x38, 0x33, 0x37, 0x3b, 0x3d, 0x3c, 0x3a, 0x39, 0x38, 0x31, 0x36, 0x38, 0x37, 0x39, 0x3e, 0x3f, 0x3e, 0x3d, 0x3f, 0x44, 0x4a, 0x4e, 0x4c, 0x48, 0x44, 0x48, 0x49, 0x49, 0x47, 0x43, 0x41, 0x41, 0x44, 0x4d, 0x4b, 0x48, 0x43, 0x40, 0x3f, 0x40, 0x41, 0x45, 0x4c, 0x54, 0x57, 0x52, 0x47, 0x3a, 0x31, 0x3c, 0x46, 0x51, 0x52, 0x4a, 0x46, 0x4e, 0x5a, 0x5e, 0x61, 0x61, 0x57, 0x4a, 0x41, 0x40, 0x42, 0x3c, 0x3b, 0x3d, 0x42, 0x49, 0x4b, 0x47, 0x43, 0x43, 0x44, 0x46, 0x49, 0x4b, 0x4a, 0x48, 0x45, 0x3e, 0x3f, 0x3f, 0x40, 0x41, 0x42, 0x42, 0x43, 0x46, 0x46, 0x44, 0x43, 0x45, 0x48, 0x48, 0x45, 0x47, 0x49, 0x4c, 0x4e, 0x4f, 0x51, 0x51, 0x52, 0x4d, 0x48, 0x47, 0x4c, 0x51, 0x50, 0x4c, 0x49, 0x4a, 0x49, 0x48, 0x47, 0x48, 0x4b, 0x4e, 0x50, 0x55, 0x53, 0x50, 0x4d, 0x4a, 0x47, 0x45, 0x45, 0x46, 0x47, 0x46, 0x42, 0x3e, 0x41, 0x4a, 0x52, 0x5a, 0x56, 0x50, 0x4c, 0x4c, 0x4d, 0x4f, 0x4f, 0x48, 0x48, 0x46, 0x41, 0x3e, 0x40, 0x46, 0x4c, 0x4e, 0x4b, 0x47, 0x46, 0x4c, 0x56, 0x5c, 0x5d, 0x58, 0x56, 0x54, 0x54, 0x57, 0x58, 0x57, 0x55, 0x51, 0x50, 0x50, 0x54, 0x57, 0x58, 0x58, 0x59, 0x58, 0x52, 0x4f, 0x4b, 0x4c, 0x5f, 0x7a, 0x87, 0x85, 0x84, 0x84, 0x85, 0x85, 0x84, 0x82, 0x80, 0x7f, 0x7e, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x77, 0x76, 0x74, 0x74, 0x75, 0x75, 0x74, 0x72, 0x70, 0x72, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x78, 0x77, 0x75, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6b, 0x6b, 0x69, 0x67, 0x66, 0x6b, 0x73, 0x7a, 0x7b, 0x7f, 0x83, 0x86, 0x86, 0x87, 0x8a, 0x8d, 0x82, 0x7b, 0x6c, 0x5c, 0x57, 0x5a, 0x5b, 0x58, 0x54, 0x4e, 0x44, 0x3b, 0x36, 0x39, 0x41, 0x47, 0x55, 0x59, 0x5e, 0x63, 0x66, 0x66, 0x64, 0x62, 0x66, 0x66, 0x66, 0x66, 0x65, 0x64, 0x63, 0x62, 0x68, 0x69, 0x6c, 0x6f, 0x70, 0x6f, 0x70, 0x72, 0x79, 0x78, 0x78, 0x75, 0x6e, 0x64, 0x59, 0x52, 0x53, 0x4f, 0x4c, 0x4a, 0x4a, 0x4b, 0x50, 0x55, 0x5c, 0x61, 0x68, 0x70, 0x76, 0x7b, 0x80, 0x83, 0x8a, 0x8c, 0x8f, 0x93, 0x96, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e, 0x9f, 0x9f, 0x9d, 0x9b, 0x96, 0x92, 0x8e, 0x89, 0x84, 0x81, 0x7b, 0x76, 0x71, 0x6e, 0x6b, 0x65, 0x61, 0x60, 0x5a, 0x6b, 0x79, 0x7f, 0x7a, 0x6a, 0x60, 0x63, 0x6b, 0x6b, 0x66, 0x61, 0x61, 0x6a, 0x76, 0x7c, 0x7d, 0x7d, 0x78, 0x75, 0x71, 0x63, 0x54, 0x50, 0x63, 0x77, 0x84, 0x7a, 0x64, 0x57, 0x59, 0x5e, 0x6f, 0x76, 0x75, 0x6b, 0x67, 0x6e, 0x72, 0x71, 0x79, 0x6d, 0x62, 0x5e, 0x61, 0x65, 0x6a, 0x6d, 0x90, 0x97, 0x94, 0x84, 0x73, 0x6e, 0x6d, 0x6b, 0x67, 0x66, 0x67, 0x6b, 0x73, 0x78, 0x79, 0x77, 0x67, 0x5f, 0x56, 0x56, 0x60, 0x6a, 0x6a, 0x64, 0x60, 0x61, 0x64, 0x68, 0x6b, 0x6d, 0x6d, 0x6c, 0x61, 0x64, 0x6d, 0x7c, 0x89, 0x8d, 0x88, 0x81, 0x76, 0x6b, 0x61, 0x61, 0x69, 0x6f, 0x6f, 0x6c, 0x67, 0x61, 0x5d, 0x60, 0x64, 0x66, 0x6b, 0x72, 0x75, 0x6c, 0x61, 0x56, 0x4a, 0x43, 0x47, 0x4f, 0x4a, 0x46, 0x4a, 0x4f, 0x49, 0x49, 0x52, 0x5a, 0x54, 0x58, 0x56, 0x48, 0x38, 0x34, 0x40, 0x4d, 0x56, 0x46, 0x38, 0x38, 0x44, 0x4f, 0x55, 0x57, 0x5a, 0x6a, 0x67, 0x52, 0x49, 0x50, 0x59, 0x5f, 0x62, 0x51, 0x43, 0x3d, 0x3f, 0x4c, 0x56, 0x54, 0x4c, 0x59, 0x6e, 0x7b, 0x76, 0x64, 0x4c, 0x3a, 0x36, 0x49, 0x5a, 0x57, 0x4c, 0x3d, 0x40, 0x4b, 0x64, 0x73, 0x78, 0x79, 0x70, 0x61, 0x58, 0x49, 0x40, 0x44, 0x51, 0x5e, 0x62, 0x68, 0x6a, 0x65, 0x6c, 0x69, 0x58, 0x3d, 0x29, 0x24, 0x28, 0x2b, 0x35, 0x46, 0x55, 0x65, 0x75, 0x71, 0x55, 0x3d, 0x35, 0x30, 0x2a, 0x2a, 0x2c, 0x2f, 0x31, 0x31, 0x31, 0x37, 0x3e, 0x42, 0x42, 0x3f, 0x3b, 0x38, 0x3c, 0x3c, 0x3c, 0x3b, 0x39, 0x37, 0x37, 0x37, 0x39, 0x3c, 0x3e, 0x3b, 0x37, 0x33, 0x33, 0x35, 0x3c, 0x3f, 0x3f, 0x3c, 0x38, 0x37, 0x34, 0x31, 0x33, 0x34, 0x32, 0x2d, 0x2c, 0x31, 0x37, 0x3a, 0x39, 0x38, 0x38, 0x38, 0x3a, 0x3c, 0x3e, 0x3e, 0x3e, 0x43, 0x49, 0x49, 0x41, 0x3a, 0x3c, 0x41, 0x44, 0x48, 0x4a, 0x47, 0x43, 0x41, 0x3f, 0x3d, 0x3f, 0x39, 0x33, 0x33, 0x37, 0x3a, 0x3b, 0x39, 0x3c, 0x3f, 0x3f, 0x3d, 0x41, 0x47, 0x47, 0x41, 0x41, 0x40, 0x42, 0x46, 0x45, 0x41, 0x3d, 0x3e, 0x3a, 0x3a, 0x3c, 0x3e, 0x40, 0x41, 0x3f, 0x3d, 0x3c, 0x40, 0x40, 0x3a, 0x39, 0x3d, 0x3f, 0x3d, 0x44, 0x47, 0x4a, 0x4a, 0x49, 0x47, 0x46, 0x45, 0x49, 0x4e, 0x50, 0x4c, 0x45, 0x42, 0x44, 0x48, 0x4c, 0x4b, 0x49, 0x46, 0x42, 0x40, 0x40, 0x40, 0x49, 0x51, 0x5d, 0x65, 0x66, 0x60, 0x58, 0x53, 0x4f, 0x4f, 0x4e, 0x48, 0x3e, 0x37, 0x39, 0x3f, 0x41, 0x46, 0x4a, 0x49, 0x43, 0x3f, 0x42, 0x47, 0x3d, 0x3e, 0x40, 0x42, 0x44, 0x45, 0x45, 0x44, 0x46, 0x46, 0x46, 0x47, 0x49, 0x49, 0x48, 0x47, 0x3e, 0x3e, 0x3f, 0x40, 0x40, 0x41, 0x42, 0x42, 0x49, 0x49, 0x47, 0x46, 0x47, 0x49, 0x47, 0x43, 0x47, 0x47, 0x49, 0x4b, 0x4d, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4c, 0x50, 0x52, 0x50, 0x4e, 0x4d, 0x4c, 0x4c, 0x4c, 0x4d, 0x50, 0x53, 0x56, 0x58, 0x56, 0x53, 0x4e, 0x48, 0x45, 0x43, 0x43, 0x43, 0x4a, 0x4b, 0x4a, 0x46, 0x42, 0x43, 0x4b, 0x53, 0x5a, 0x58, 0x54, 0x52, 0x51, 0x50, 0x50, 0x50, 0x4b, 0x4a, 0x48, 0x43, 0x40, 0x42, 0x47, 0x4c, 0x4a, 0x4c, 0x4f, 0x52, 0x58, 0x5e, 0x5f, 0x5e, 0x5c, 0x5a, 0x59, 0x59, 0x59, 0x57, 0x54, 0x51, 0x4e, 0x4d, 0x50, 0x55, 0x56, 0x53, 0x51, 0x51, 0x4f, 0x4c, 0x49, 0x44, 0x46, 0x5b, 0x79, 0x87, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x81, 0x7f, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x77, 0x78, 0x78, 0x75, 0x74, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x74, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75, 0x74, 0x73, 0x74, 0x74, 0x75, 0x74, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x69, 0x67, 0x68, 0x6c, 0x73, 0x79, 0x7d, 0x7d, 0x83, 0x88, 0x8a, 0x89, 0x87, 0x89, 0x8b, 0x81, 0x81, 0x79, 0x67, 0x59, 0x50, 0x4a, 0x43, 0x42, 0x3f, 0x3c, 0x3a, 0x3a, 0x3b, 0x3c, 0x3b, 0x41, 0x47, 0x50, 0x59, 0x5f, 0x62, 0x61, 0x61, 0x60, 0x61, 0x62, 0x62, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5e, 0x60, 0x64, 0x65, 0x65, 0x66, 0x6a, 0x6d, 0x6e, 0x6d, 0x68, 0x61, 0x5c, 0x5a, 0x5a, 0x5d, 0x58, 0x53, 0x4e, 0x4a, 0x49, 0x4d, 0x52, 0x59, 0x5d, 0x64, 0x6c, 0x73, 0x79, 0x7e, 0x81, 0x86, 0x87, 0x8a, 0x8e, 0x91, 0x94, 0x95, 0x96, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x99, 0x96, 0x93, 0x8f, 0x8b, 0x87, 0x84, 0x81, 0x7a, 0x75, 0x71, 0x6e, 0x6a, 0x64, 0x61, 0x60, 0x61, 0x67, 0x6d, 0x77, 0x7d, 0x73, 0x63, 0x5d, 0x66, 0x69, 0x69, 0x66, 0x65, 0x6b, 0x73, 0x78, 0x7a, 0x7a, 0x75, 0x72, 0x6f, 0x62, 0x52, 0x4f, 0x58, 0x6c, 0x7c, 0x7b, 0x70, 0x69, 0x6a, 0x6d, 0x65, 0x66, 0x63, 0x5b, 0x58, 0x5c, 0x65, 0x6c, 0x68, 0x60, 0x59, 0x5b, 0x60, 0x64, 0x67, 0x69, 0x69, 0x71, 0x72, 0x6a, 0x69, 0x71, 0x77, 0x77, 0x6a, 0x69, 0x69, 0x6b, 0x70, 0x74, 0x77, 0x79, 0x74, 0x6a, 0x5e, 0x58, 0x5e, 0x65, 0x66, 0x62, 0x5e, 0x60, 0x64, 0x68, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6a, 0x6b, 0x74, 0x81, 0x89, 0x89, 0x86, 0x7f, 0x74, 0x67, 0x63, 0x69, 0x6e, 0x6d, 0x69, 0x60, 0x5d, 0x5d, 0x61, 0x61, 0x60, 0x63, 0x69, 0x61, 0x61, 0x5f, 0x59, 0x51, 0x4c, 0x4b, 0x4d, 0x46, 0x48, 0x50, 0x51, 0x45, 0x42, 0x4e, 0x57, 0x56, 0x5b, 0x54, 0x3f, 0x33, 0x3a, 0x4a, 0x52, 0x46, 0x37, 0x2d, 0x34, 0x44, 0x4c, 0x49, 0x43, 0x53, 0x60, 0x5b, 0x47, 0x43, 0x4e, 0x5a, 0x61, 0x56, 0x4c, 0x46, 0x44, 0x46, 0x4f, 0x51, 0x49, 0x3a, 0x58, 0x74, 0x79, 0x6b, 0x52, 0x37, 0x26, 0x35, 0x51, 0x60, 0x59, 0x45, 0x35, 0x36, 0x49, 0x60, 0x69, 0x67, 0x68, 0x61, 0x55, 0x4f, 0x43, 0x42, 0x41, 0x4f, 0x61, 0x66, 0x65, 0x64, 0x61, 0x63, 0x5c, 0x4d, 0x39, 0x29, 0x24, 0x28, 0x2e, 0x3b, 0x49, 0x5b, 0x67, 0x5e, 0x46, 0x3e, 0x4c, 0x39, 0x35, 0x32, 0x33, 0x35, 0x34, 0x34, 0x35, 0x35, 0x3a, 0x40, 0x43, 0x41, 0x40, 0x3f, 0x40, 0x49, 0x49, 0x49, 0x47, 0x43, 0x3e, 0x39, 0x36, 0x37, 0x3b, 0x3f, 0x3f, 0x3a, 0x34, 0x31, 0x30, 0x35, 0x38, 0x3b, 0x3b, 0x3a, 0x3a, 0x37, 0x34, 0x34, 0x37, 0x37, 0x32, 0x2f, 0x32, 0x38, 0x3b, 0x3a, 0x3a, 0x39, 0x37, 0x36, 0x36, 0x38, 0x3a, 0x3e, 0x42, 0x48, 0x49, 0x42, 0x3b, 0x3a, 0x3d, 0x3c, 0x41, 0x45, 0x46, 0x46, 0x46, 0x42, 0x3e, 0x3d, 0x3f, 0x40, 0x3e, 0x3b, 0x3b, 0x3f, 0x43, 0x3e, 0x3e, 0x3c, 0x3c, 0x3f, 0x45, 0x47, 0x45, 0x46, 0x46, 0x49, 0x4c, 0x48, 0x40, 0x3d, 0x40, 0x3f, 0x3d, 0x3c, 0x40, 0x46, 0x4d, 0x50, 0x50, 0x45, 0x49, 0x47, 0x3d, 0x39, 0x3b, 0x3c, 0x39, 0x44, 0x48, 0x4a, 0x48, 0x46, 0x47, 0x49, 0x4a, 0x4e, 0x53, 0x56, 0x51, 0x49, 0x45, 0x46, 0x48, 0x44, 0x45, 0x45, 0x45, 0x43, 0x43, 0x44, 0x45, 0x42, 0x45, 0x4a, 0x4f, 0x53, 0x56, 0x58, 0x58, 0x60, 0x58, 0x51, 0x51, 0x53, 0x4f, 0x47, 0x41, 0x45, 0x49, 0x4e, 0x4e, 0x48, 0x3f, 0x3c, 0x3d, 0x3e, 0x40, 0x41, 0x41, 0x41, 0x43, 0x45, 0x47, 0x47, 0x46, 0x45, 0x45, 0x46, 0x47, 0x48, 0x47, 0x41, 0x41, 0x41, 0x40, 0x40, 0x3f, 0x3f, 0x3f, 0x42, 0x45, 0x47, 0x47, 0x48, 0x47, 0x43, 0x3e, 0x42, 0x42, 0x43, 0x46, 0x48, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x4b, 0x4e, 0x4e, 0x4b, 0x4b, 0x4d, 0x4c, 0x4f, 0x52, 0x55, 0x56, 0x56, 0x54, 0x53, 0x4d, 0x4c, 0x4a, 0x49, 0x47, 0x45, 0x44, 0x44, 0x4f, 0x51, 0x51, 0x4f, 0x4d, 0x4f, 0x54, 0x58, 0x59, 0x58, 0x57, 0x56, 0x55, 0x53, 0x52, 0x51, 0x4e, 0x4d, 0x4a, 0x46, 0x44, 0x44, 0x47, 0x49, 0x43, 0x48, 0x4c, 0x50, 0x54, 0x59, 0x5b, 0x5a, 0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x56, 0x53, 0x51, 0x4e, 0x4c, 0x4f, 0x54, 0x54, 0x4e, 0x4b, 0x4c, 0x48, 0x48, 0x47, 0x43, 0x45, 0x5c, 0x78, 0x85, 0x82, 0x82, 0x82, 0x83, 0x84, 0x82, 0x80, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x74, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x73, 0x74, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x68, 0x67, 0x6a, 0x71, 0x78, 0x7c, 0x7e, 0x80, 0x85, 0x8b, 0x8d, 0x8b, 0x89, 0x88, 0x89, 0x80, 0x81, 0x7d, 0x71, 0x62, 0x56, 0x4f, 0x4b, 0x42, 0x3f, 0x3d, 0x3d, 0x3e, 0x3d, 0x38, 0x35, 0x36, 0x39, 0x40, 0x48, 0x50, 0x58, 0x5d, 0x60, 0x5e, 0x5e, 0x5d, 0x5b, 0x58, 0x55, 0x52, 0x51, 0x48, 0x47, 0x49, 0x4d, 0x50, 0x52, 0x56, 0x5b, 0x5e, 0x60, 0x62, 0x61, 0x5f, 0x60, 0x64, 0x69, 0x69, 0x64, 0x5c, 0x55, 0x4d, 0x48, 0x4a, 0x4f, 0x56, 0x5a, 0x60, 0x67, 0x6f, 0x75, 0x7a, 0x7c, 0x7f, 0x81, 0x84, 0x88, 0x8d, 0x90, 0x93, 0x94, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x93, 0x92, 0x90, 0x8c, 0x89, 0x85, 0x82, 0x80, 0x78, 0x74, 0x71, 0x6e, 0x69, 0x63, 0x60, 0x61, 0x61, 0x62, 0x63, 0x6d, 0x7c, 0x79, 0x69, 0x5e, 0x62, 0x67, 0x6c, 0x6b, 0x6b, 0x6e, 0x73, 0x76, 0x76, 0x76, 0x70, 0x6e, 0x6e, 0x62, 0x54, 0x50, 0x5b, 0x63, 0x6d, 0x6b, 0x57, 0x42, 0x3f, 0x47, 0x4d, 0x4c, 0x4d, 0x50, 0x54, 0x5a, 0x65, 0x6f, 0x6a, 0x64, 0x61, 0x65, 0x6a, 0x6d, 0x6d, 0x6d, 0x71, 0x75, 0x73, 0x6b, 0x68, 0x6d, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x6b, 0x6c, 0x6f, 0x74, 0x79, 0x77, 0x6f, 0x63, 0x5a, 0x5b, 0x61, 0x64, 0x64, 0x5c, 0x5e, 0x62, 0x66, 0x69, 0x6b, 0x6c, 0x6c, 0x72, 0x6e, 0x6b, 0x6e, 0x77, 0x81, 0x87, 0x8a, 0x86, 0x7e, 0x73, 0x6c, 0x6d, 0x70, 0x6d, 0x68, 0x5d, 0x5c, 0x5e, 0x62, 0x61, 0x5d, 0x5e, 0x63, 0x5d, 0x61, 0x61, 0x5c, 0x57, 0x54, 0x4f, 0x4a, 0x42, 0x46, 0x50, 0x50, 0x45, 0x43, 0x4f, 0x57, 0x54, 0x57, 0x4c, 0x35, 0x2d, 0x3b, 0x4b, 0x50, 0x3e, 0x39, 0x3a, 0x43, 0x4d, 0x50, 0x4d, 0x49, 0x56, 0x56, 0x49, 0x3c, 0x45, 0x53, 0x57, 0x57, 0x4b, 0x4d, 0x51, 0x4c, 0x45, 0x46, 0x49, 0x43, 0x44, 0x5d, 0x70, 0x6f, 0x5f, 0x41, 0x25, 0x19, 0x28, 0x4b, 0x57, 0x54, 0x47, 0x43, 0x43, 0x56, 0x6b, 0x78, 0x72, 0x6f, 0x78, 0x7f, 0x6f, 0x47, 0x2e, 0x32, 0x48, 0x5f, 0x64, 0x5f, 0x5c, 0x59, 0x52, 0x41, 0x31, 0x2c, 0x2a, 0x27, 0x27, 0x2b, 0x3d, 0x43, 0x46, 0x4b, 0x51, 0x4d, 0x4a, 0x4e, 0x37, 0x33, 0x30, 0x30, 0x2e, 0x2b, 0x2b, 0x2d, 0x34, 0x38, 0x3c, 0x3c, 0x39, 0x39, 0x3d, 0x41, 0x40, 0x41, 0x44, 0x47, 0x4a, 0x4c, 0x4c, 0x4b, 0x42, 0x45, 0x48, 0x47, 0x44, 0x3f, 0x3c, 0x3b, 0x3c, 0x3d, 0x3c, 0x3a, 0x3a, 0x3e, 0x3f, 0x3e, 0x38, 0x3b, 0x3b, 0x38, 0x35, 0x36, 0x38, 0x38, 0x38, 0x3b, 0x3c, 0x3a, 0x36, 0x34, 0x35, 0x37, 0x3b, 0x3f, 0x45, 0x48, 0x44, 0x3d, 0x3a, 0x3b, 0x3a, 0x40, 0x45, 0x47, 0x47, 0x47, 0x45, 0x42, 0x43, 0x45, 0x46, 0x43, 0x40, 0x42, 0x47, 0x4d, 0x42, 0x3d, 0x3a, 0x3a, 0x3c, 0x3f, 0x44, 0x48, 0x47, 0x47, 0x4b, 0x4f, 0x4b, 0x42, 0x40, 0x44, 0x40, 0x40, 0x42, 0x45, 0x4a, 0x4e, 0x52, 0x53, 0x45, 0x4c, 0x4b, 0x41, 0x3c, 0x3f, 0x40, 0x3c, 0x40, 0x43, 0x44, 0x43, 0x45, 0x4a, 0x4d, 0x4d, 0x50, 0x55, 0x56, 0x52, 0x4f, 0x4d, 0x4b, 0x48, 0x45, 0x45, 0x45, 0x44, 0x44, 0x46, 0x48, 0x4a, 0x54, 0x53, 0x53, 0x54, 0x57, 0x58, 0x57, 0x55, 0x58, 0x55, 0x57, 0x5e, 0x65, 0x65, 0x5f, 0x5b, 0x63, 0x63, 0x63, 0x60, 0x56, 0x48, 0x3e, 0x3c, 0x3e, 0x3e, 0x3e, 0x3f, 0x41, 0x42, 0x44, 0x44, 0x43, 0x42, 0x42, 0x43, 0x45, 0x46, 0x46, 0x46, 0x43, 0x43, 0x42, 0x41, 0x40, 0x3f, 0x3f, 0x3e, 0x3e, 0x42, 0x44, 0x44, 0x43, 0x43, 0x42, 0x40, 0x42, 0x41, 0x41, 0x43, 0x46, 0x48, 0x48, 0x48, 0x47, 0x46, 0x47, 0x49, 0x49, 0x48, 0x48, 0x49, 0x4b, 0x4d, 0x50, 0x53, 0x53, 0x50, 0x4c, 0x4a, 0x48, 0x49, 0x4b, 0x4c, 0x4c, 0x4c, 0x4b, 0x4b, 0x54, 0x54, 0x55, 0x56, 0x57, 0x57, 0x57, 0x57, 0x56, 0x56, 0x55, 0x54, 0x53, 0x51, 0x50, 0x50, 0x4d, 0x4a, 0x48, 0x47, 0x47, 0x48, 0x48, 0x47, 0x49, 0x4c, 0x4d, 0x4c, 0x4e, 0x55, 0x5c, 0x60, 0x5b, 0x59, 0x57, 0x54, 0x53, 0x52, 0x51, 0x51, 0x4f, 0x4c, 0x4e, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x50, 0x50, 0x4f, 0x49, 0x49, 0x5f, 0x78, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x7f, 0x7c, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x73, 0x72, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x68, 0x68, 0x6a, 0x6e, 0x74, 0x79, 0x7c, 0x7e, 0x83, 0x86, 0x8a, 0x8c, 0x8c, 0x8a, 0x89, 0x8a, 0x85, 0x81, 0x7d, 0x77, 0x6d, 0x63, 0x5c, 0x5a, 0x52, 0x4f, 0x4a, 0x45, 0x42, 0x3f, 0x3e, 0x3d, 0x3a, 0x39, 0x39, 0x3b, 0x40, 0x46, 0x4c, 0x50, 0x50, 0x4f, 0x4d, 0x4a, 0x46, 0x42, 0x3e, 0x3c, 0x3b, 0x39, 0x39, 0x3b, 0x3e, 0x42, 0x48, 0x4f, 0x55, 0x58, 0x5d, 0x63, 0x69, 0x6e, 0x73, 0x75, 0x73, 0x6e, 0x67, 0x5f, 0x54, 0x4c, 0x4a, 0x4d, 0x54, 0x57, 0x5c, 0x64, 0x6b, 0x72, 0x76, 0x78, 0x7b, 0x7c, 0x7f, 0x83, 0x87, 0x8b, 0x8d, 0x8f, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x91, 0x8e, 0x8e, 0x8d, 0x8a, 0x86, 0x81, 0x7e, 0x7d, 0x76, 0x73, 0x70, 0x6d, 0x68, 0x62, 0x60, 0x61, 0x63, 0x65, 0x61, 0x63, 0x70, 0x76, 0x6d, 0x66, 0x5d, 0x63, 0x69, 0x69, 0x6a, 0x6e, 0x73, 0x75, 0x73, 0x72, 0x6d, 0x6c, 0x6d, 0x63, 0x57, 0x54, 0x57, 0x5e, 0x67, 0x6a, 0x65, 0x61, 0x64, 0x6b, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0x5c, 0x5c, 0x67, 0x61, 0x5d, 0x5f, 0x64, 0x66, 0x66, 0x65, 0x68, 0x6d, 0x6f, 0x6b, 0x68, 0x69, 0x6b, 0x6c, 0x6d, 0x6a, 0x69, 0x6a, 0x6c, 0x6d, 0x73, 0x79, 0x78, 0x76, 0x70, 0x69, 0x65, 0x66, 0x67, 0x67, 0x5d, 0x5e, 0x60, 0x64, 0x68, 0x6b, 0x6b, 0x6a, 0x6f, 0x6d, 0x6c, 0x6b, 0x6f, 0x77, 0x81, 0x87, 0x88, 0x86, 0x80, 0x79, 0x76, 0x74, 0x6f, 0x68, 0x5e, 0x5d, 0x5f, 0x63, 0x62, 0x5d, 0x5d, 0x62, 0x68, 0x68, 0x62, 0x5a, 0x58, 0x5a, 0x54, 0x4a, 0x3f, 0x42, 0x4b, 0x4f, 0x49, 0x4b, 0x55, 0x5a, 0x55, 0x53, 0x47, 0x36, 0x2f, 0x39, 0x46, 0x4d, 0x42, 0x3e, 0x3c, 0x41, 0x47, 0x4c, 0x4f, 0x52, 0x59, 0x52, 0x42, 0x3c, 0x4a, 0x55, 0x53, 0x4f, 0x4d, 0x4d, 0x4d, 0x44, 0x3a, 0x41, 0x4b, 0x4b, 0x5b, 0x63, 0x65, 0x5f, 0x4f, 0x32, 0x27, 0x34, 0x54, 0x6d, 0x64, 0x59, 0x50, 0x53, 0x4a, 0x52, 0x66, 0x68, 0x6e, 0x85, 0x8a, 0x6f, 0x52, 0x37, 0x33, 0x41, 0x59, 0x69, 0x68, 0x65, 0x64, 0x60, 0x45, 0x2f, 0x22, 0x29, 0x2e, 0x28, 0x28, 0x2f, 0x3a, 0x5b, 0x6b, 0x62, 0x59, 0x56, 0x4d, 0x45, 0x34, 0x31, 0x2f, 0x30, 0x2f, 0x2c, 0x2e, 0x32, 0x27, 0x32, 0x3e, 0x43, 0x40, 0x39, 0x35, 0x34, 0x41, 0x3f, 0x3d, 0x3d, 0x3e, 0x41, 0x43, 0x45, 0x51, 0x51, 0x51, 0x4f, 0x4d, 0x4c, 0x4d, 0x4d, 0x4e, 0x49, 0x41, 0x39, 0x38, 0x3f, 0x45, 0x48, 0x3e, 0x3f, 0x3e, 0x3a, 0x39, 0x38, 0x36, 0x32, 0x36, 0x3b, 0x40, 0x3f, 0x39, 0x35, 0x36, 0x38, 0x38, 0x3b, 0x42, 0x46, 0x45, 0x3e, 0x3a, 0x39, 0x3d, 0x44, 0x49, 0x49, 0x47, 0x46, 0x46, 0x45, 0x4a, 0x44, 0x3d, 0x3c, 0x41, 0x48, 0x4e, 0x50, 0x4b, 0x42, 0x3c, 0x3a, 0x38, 0x37, 0x3b, 0x43, 0x45, 0x44, 0x48, 0x4e, 0x4d, 0x46, 0x43, 0x47, 0x41, 0x45, 0x49, 0x4a, 0x46, 0x42, 0x3f, 0x3e, 0x44, 0x4d, 0x4f, 0x47, 0x44, 0x48, 0x49, 0x44, 0x41, 0x42, 0x42, 0x41, 0x44, 0x49, 0x49, 0x45, 0x4b, 0x4e, 0x50, 0x51, 0x55, 0x58, 0x55, 0x50, 0x4d, 0x4b, 0x49, 0x46, 0x45, 0x46, 0x49, 0x4c, 0x51, 0x51, 0x53, 0x56, 0x56, 0x51, 0x48, 0x40, 0x48, 0x50, 0x5b, 0x62, 0x62, 0x61, 0x64, 0x6a, 0x69, 0x64, 0x60, 0x5c, 0x52, 0x45, 0x3d, 0x3c, 0x3e, 0x3c, 0x3b, 0x3d, 0x40, 0x41, 0x40, 0x3e, 0x3e, 0x3f, 0x40, 0x43, 0x45, 0x46, 0x45, 0x44, 0x42, 0x42, 0x42, 0x42, 0x41, 0x41, 0x41, 0x41, 0x43, 0x45, 0x44, 0x40, 0x40, 0x44, 0x48, 0x4b, 0x46, 0x44, 0x43, 0x43, 0x45, 0x47, 0x47, 0x47, 0x4a, 0x47, 0x46, 0x48, 0x4a, 0x49, 0x48, 0x49, 0x4b, 0x4c, 0x4c, 0x4d, 0x4c, 0x4a, 0x48, 0x47, 0x4c, 0x4d, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x53, 0x54, 0x53, 0x53, 0x55, 0x58, 0x57, 0x52, 0x4e, 0x52, 0x52, 0x51, 0x50, 0x4e, 0x4d, 0x4d, 0x4e, 0x48, 0x46, 0x45, 0x46, 0x4a, 0x4b, 0x4a, 0x48, 0x45, 0x4a, 0x4d, 0x4c, 0x4c, 0x51, 0x57, 0x5b, 0x56, 0x54, 0x51, 0x4e, 0x4d, 0x4e, 0x4f, 0x50, 0x4f, 0x4b, 0x4d, 0x53, 0x55, 0x54, 0x57, 0x5e, 0x5c, 0x5a, 0x57, 0x4f, 0x4d, 0x60, 0x76, 0x7e, 0x80, 0x81, 0x81, 0x83, 0x83, 0x81, 0x7e, 0x7c, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x71, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6a, 0x65, 0x68, 0x6d, 0x71, 0x74, 0x78, 0x7c, 0x7e, 0x84, 0x86, 0x89, 0x8a, 0x8b, 0x8a, 0x8a, 0x8b, 0x8e, 0x85, 0x7d, 0x79, 0x72, 0x65, 0x5b, 0x58, 0x4f, 0x50, 0x50, 0x4d, 0x48, 0x44, 0x42, 0x42, 0x40, 0x3d, 0x39, 0x35, 0x33, 0x34, 0x35, 0x37, 0x38, 0x38, 0x38, 0x38, 0x37, 0x35, 0x33, 0x32, 0x3d, 0x3a, 0x38, 0x39, 0x3a, 0x3e, 0x45, 0x4b, 0x55, 0x58, 0x5f, 0x6a, 0x76, 0x7d, 0x7d, 0x7b, 0x79, 0x75, 0x6f, 0x67, 0x5a, 0x50, 0x4c, 0x4d, 0x53, 0x55, 0x5b, 0x62, 0x6a, 0x70, 0x75, 0x76, 0x7a, 0x7b, 0x7d, 0x80, 0x83, 0x85, 0x87, 0x88, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8c, 0x8c, 0x8b, 0x88, 0x84, 0x7f, 0x7b, 0x79, 0x75, 0x72, 0x6f, 0x6c, 0x67, 0x62, 0x60, 0x61, 0x71, 0x73, 0x68, 0x5e, 0x64, 0x6d, 0x6d, 0x6c, 0x5a, 0x5f, 0x64, 0x65, 0x67, 0x6c, 0x71, 0x74, 0x71, 0x70, 0x6b, 0x6b, 0x6d, 0x65, 0x59, 0x57, 0x53, 0x5d, 0x60, 0x5b, 0x63, 0x75, 0x79, 0x6f, 0x6a, 0x6b, 0x6a, 0x69, 0x6d, 0x75, 0x76, 0x73, 0x68, 0x61, 0x5d, 0x60, 0x67, 0x6b, 0x6e, 0x6f, 0x6e, 0x74, 0x78, 0x75, 0x6e, 0x69, 0x6a, 0x6c, 0x6d, 0x69, 0x68, 0x6a, 0x6c, 0x6e, 0x73, 0x7a, 0x81, 0x86, 0x86, 0x7f, 0x76, 0x6e, 0x69, 0x65, 0x60, 0x5f, 0x60, 0x64, 0x69, 0x6c, 0x6b, 0x6a, 0x6a, 0x6c, 0x6c, 0x6b, 0x6b, 0x70, 0x7a, 0x83, 0x87, 0x89, 0x89, 0x83, 0x7d, 0x78, 0x6f, 0x67, 0x5e, 0x5c, 0x5d, 0x61, 0x60, 0x5c, 0x5c, 0x60, 0x66, 0x66, 0x61, 0x5c, 0x60, 0x64, 0x59, 0x49, 0x44, 0x43, 0x4a, 0x4f, 0x4d, 0x50, 0x56, 0x57, 0x5c, 0x55, 0x4a, 0x40, 0x39, 0x3b, 0x45, 0x4f, 0x50, 0x47, 0x40, 0x41, 0x48, 0x4d, 0x4f, 0x50, 0x4f, 0x4b, 0x40, 0x3e, 0x4b, 0x53, 0x52, 0x52, 0x50, 0x47, 0x3c, 0x31, 0x32, 0x46, 0x59, 0x5c, 0x58, 0x53, 0x49, 0x3f, 0x2d, 0x15, 0x22, 0x4d, 0x66, 0x75, 0x5d, 0x50, 0x52, 0x62, 0x57, 0x5b, 0x5a, 0x6f, 0x73, 0x6f, 0x69, 0x66, 0x68, 0x5c, 0x46, 0x58, 0x6d, 0x6e, 0x63, 0x61, 0x62, 0x5c, 0x3b, 0x28, 0x23, 0x2f, 0x32, 0x29, 0x2e, 0x3e, 0x63, 0x6b, 0x6d, 0x6a, 0x66, 0x5a, 0x4d, 0x49, 0x31, 0x2e, 0x2d, 0x2d, 0x2b, 0x29, 0x2c, 0x31, 0x2a, 0x31, 0x3a, 0x3d, 0x3b, 0x36, 0x34, 0x34, 0x3c, 0x41, 0x44, 0x45, 0x43, 0x40, 0x3d, 0x3a, 0x41, 0x40, 0x41, 0x42, 0x43, 0x43, 0x47, 0x4b, 0x56, 0x5d, 0x60, 0x59, 0x50, 0x4c, 0x4e, 0x50, 0x4e, 0x4b, 0x45, 0x3d, 0x39, 0x39, 0x3a, 0x3a, 0x3b, 0x3e, 0x3d, 0x39, 0x39, 0x3c, 0x3c, 0x39, 0x3b, 0x40, 0x43, 0x41, 0x3e, 0x3d, 0x3c, 0x3b, 0x3e, 0x43, 0x45, 0x41, 0x3f, 0x40, 0x43, 0x43, 0x46, 0x4b, 0x4b, 0x46, 0x42, 0x45, 0x49, 0x4b, 0x4d, 0x49, 0x4a, 0x41, 0x3c, 0x3e, 0x3b, 0x41, 0x3a, 0x43, 0x4c, 0x4f, 0x4d, 0x4b, 0x47, 0x43, 0x43, 0x4c, 0x54, 0x53, 0x4b, 0x43, 0x3e, 0x3d, 0x48, 0x4d, 0x4c, 0x45, 0x47, 0x50, 0x53, 0x4e, 0x44, 0x44, 0x45, 0x48, 0x4b, 0x4d, 0x4d, 0x4c, 0x4b, 0x50, 0x56, 0x5c, 0x60, 0x5f, 0x56, 0x4d, 0x4b, 0x46, 0x42, 0x43, 0x46, 0x4c, 0x55, 0x5c, 0x57, 0x4f, 0x4b, 0x51, 0x5e, 0x66, 0x63, 0x5d, 0x52, 0x52, 0x51, 0x4e, 0x4f, 0x53, 0x54, 0x52, 0x46, 0x4a, 0x4f, 0x50, 0x4c, 0x45, 0x41, 0x40, 0x3d, 0x3c, 0x3c, 0x3e, 0x41, 0x42, 0x40, 0x3f, 0x40, 0x40, 0x40, 0x42, 0x44, 0x44, 0x43, 0x42, 0x41, 0x43, 0x44, 0x41, 0x3e, 0x3d, 0x3f, 0x42, 0x45, 0x44, 0x41, 0x40, 0x4a, 0x56, 0x59, 0x53, 0x48, 0x45, 0x41, 0x3f, 0x40, 0x43, 0x46, 0x47, 0x4b, 0x47, 0x45, 0x47, 0x48, 0x46, 0x47, 0x4a, 0x4a, 0x47, 0x45, 0x45, 0x48, 0x4a, 0x48, 0x45, 0x47, 0x49, 0x4d, 0x51, 0x51, 0x4e, 0x4d, 0x4e, 0x56, 0x54, 0x55, 0x57, 0x57, 0x55, 0x54, 0x56, 0x56, 0x52, 0x4e, 0x4c, 0x4d, 0x4d, 0x4c, 0x4a, 0x49, 0x49, 0x47, 0x47, 0x4d, 0x52, 0x4f, 0x48, 0x45, 0x46, 0x49, 0x4b, 0x4d, 0x51, 0x54, 0x57, 0x55, 0x55, 0x52, 0x4e, 0x4e, 0x51, 0x52, 0x4f, 0x42, 0x41, 0x47, 0x51, 0x54, 0x50, 0x50, 0x55, 0x52, 0x50, 0x50, 0x54, 0x5a, 0x63, 0x73, 0x81, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x7f, 0x7c, 0x7a, 0x7a, 0x79, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x6e, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x68, 0x63, 0x66, 0x6c, 0x70, 0x74, 0x77, 0x7a, 0x7c, 0x85, 0x87, 0x89, 0x8c, 0x8d, 0x8e, 0x90, 0x92, 0x90, 0x8d, 0x88, 0x81, 0x7a, 0x73, 0x6b, 0x67, 0x61, 0x5c, 0x56, 0x51, 0x4f, 0x4c, 0x49, 0x46, 0x46, 0x43, 0x40, 0x3e, 0x3d, 0x3c, 0x3b, 0x3a, 0x3d, 0x3d, 0x3b, 0x3a, 0x39, 0x3b, 0x3f, 0x41, 0x41, 0x42, 0x42, 0x44, 0x46, 0x4c, 0x52, 0x56, 0x5c, 0x65, 0x70, 0x76, 0x7a, 0x7f, 0x83, 0x84, 0x7e, 0x78, 0x72, 0x6c, 0x62, 0x55, 0x4b, 0x49, 0x4d, 0x55, 0x5d, 0x61, 0x67, 0x6f, 0x74, 0x75, 0x75, 0x77, 0x7a, 0x7e, 0x81, 0x83, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x88, 0x88, 0x8a, 0x8b, 0x88, 0x87, 0x86, 0x83, 0x7f, 0x7b, 0x77, 0x74, 0x73, 0x6e, 0x6c, 0x6d, 0x68, 0x60, 0x5e, 0x63, 0x7a, 0x7c, 0x72, 0x61, 0x5b, 0x65, 0x6e, 0x70, 0x5f, 0x58, 0x5e, 0x66, 0x63, 0x68, 0x72, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x69, 0x60, 0x5a, 0x59, 0x63, 0x71, 0x7b, 0x7f, 0x82, 0x87, 0x8b, 0x82, 0x7a, 0x6e, 0x66, 0x69, 0x6f, 0x6f, 0x6a, 0x55, 0x57, 0x5c, 0x62, 0x65, 0x66, 0x68, 0x6b, 0x70, 0x6d, 0x6e, 0x73, 0x70, 0x67, 0x65, 0x68, 0x6c, 0x67, 0x65, 0x67, 0x65, 0x63, 0x68, 0x72, 0x79, 0x78, 0x78, 0x77, 0x75, 0x70, 0x69, 0x65, 0x5c, 0x5e, 0x5f, 0x62, 0x67, 0x6b, 0x6a, 0x66, 0x6b, 0x6e, 0x6d, 0x67, 0x64, 0x69, 0x72, 0x78, 0x85, 0x88, 0x88, 0x85, 0x83, 0x7f, 0x75, 0x6b, 0x60, 0x62, 0x62, 0x5f, 0x5a, 0x59, 0x5c, 0x61, 0x6c, 0x63, 0x5c, 0x60, 0x66, 0x62, 0x54, 0x49, 0x44, 0x45, 0x46, 0x44, 0x44, 0x48, 0x51, 0x58, 0x5b, 0x5e, 0x53, 0x3e, 0x33, 0x3e, 0x4f, 0x59, 0x57, 0x42, 0x37, 0x43, 0x50, 0x4f, 0x48, 0x47, 0x48, 0x4d, 0x3e, 0x3c, 0x4a, 0x57, 0x5e, 0x57, 0x4c, 0x3e, 0x32, 0x34, 0x41, 0x4f, 0x59, 0x5e, 0x5e, 0x56, 0x45, 0x2d, 0x19, 0x1b, 0x34, 0x4e, 0x65, 0x56, 0x44, 0x38, 0x35, 0x39, 0x43, 0x4c, 0x6c, 0x7b, 0x79, 0x73, 0x7f, 0x81, 0x6f, 0x62, 0x59, 0x58, 0x62, 0x69, 0x6a, 0x70, 0x6a, 0x54, 0x32, 0x2a, 0x2a, 0x2a, 0x2f, 0x32, 0x37, 0x4f, 0x68, 0x67, 0x65, 0x68, 0x6a, 0x5e, 0x52, 0x52, 0x2f, 0x2e, 0x2e, 0x2f, 0x2c, 0x28, 0x2a, 0x2e, 0x32, 0x38, 0x3e, 0x3e, 0x39, 0x33, 0x31, 0x31, 0x35, 0x39, 0x3e, 0x3f, 0x3d, 0x3c, 0x3b, 0x3b, 0x3d, 0x3f, 0x44, 0x47, 0x45, 0x40, 0x3f, 0x40, 0x42, 0x48, 0x4e, 0x4f, 0x4e, 0x50, 0x51, 0x51, 0x5a, 0x55, 0x4e, 0x48, 0x46, 0x47, 0x43, 0x3e, 0x38, 0x3c, 0x3e, 0x3d, 0x3e, 0x3f, 0x3e, 0x3b, 0x3b, 0x40, 0x43, 0x43, 0x42, 0x41, 0x3e, 0x3c, 0x41, 0x43, 0x43, 0x41, 0x41, 0x42, 0x40, 0x3c, 0x43, 0x49, 0x4c, 0x4a, 0x47, 0x49, 0x4b, 0x4c, 0x56, 0x54, 0x59, 0x54, 0x50, 0x4c, 0x3f, 0x3d, 0x46, 0x4c, 0x52, 0x55, 0x52, 0x4d, 0x4a, 0x48, 0x48, 0x4d, 0x50, 0x4e, 0x4a, 0x47, 0x45, 0x44, 0x3e, 0x44, 0x46, 0x47, 0x50, 0x5d, 0x61, 0x5b, 0x4a, 0x47, 0x44, 0x47, 0x4c, 0x50, 0x50, 0x4e, 0x4d, 0x52, 0x57, 0x5b, 0x5d, 0x5a, 0x51, 0x48, 0x49, 0x45, 0x43, 0x45, 0x47, 0x4b, 0x51, 0x57, 0x4f, 0x4f, 0x4d, 0x4a, 0x48, 0x4a, 0x4f, 0x54, 0x58, 0x5d, 0x62, 0x60, 0x5b, 0x53, 0x4a, 0x42, 0x44, 0x49, 0x51, 0x54, 0x4f, 0x46, 0x42, 0x43, 0x3f, 0x3d, 0x3c, 0x3d, 0x40, 0x43, 0x43, 0x43, 0x44, 0x43, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3f, 0x40, 0x41, 0x42, 0x41, 0x3f, 0x40, 0x43, 0x46, 0x45, 0x47, 0x46, 0x47, 0x51, 0x5e, 0x63, 0x60, 0x4f, 0x4b, 0x46, 0x43, 0x42, 0x43, 0x44, 0x45, 0x4c, 0x49, 0x48, 0x49, 0x48, 0x45, 0x45, 0x47, 0x46, 0x44, 0x43, 0x45, 0x48, 0x4b, 0x4d, 0x4d, 0x48, 0x48, 0x4b, 0x4f, 0x4f, 0x4e, 0x4f, 0x52, 0x59, 0x58, 0x58, 0x58, 0x58, 0x57, 0x54, 0x52, 0x51, 0x53, 0x56, 0x56, 0x54, 0x50, 0x4d, 0x4a, 0x4b, 0x4b, 0x49, 0x49, 0x4d, 0x51, 0x50, 0x4b, 0x48, 0x48, 0x49, 0x4b, 0x4e, 0x51, 0x54, 0x56, 0x56, 0x56, 0x52, 0x4d, 0x4c, 0x50, 0x53, 0x53, 0x4d, 0x4c, 0x51, 0x5a, 0x5b, 0x52, 0x49, 0x46, 0x4c, 0x50, 0x57, 0x5f, 0x65, 0x6a, 0x73, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x80, 0x7f, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6b, 0x68, 0x66, 0x64, 0x64, 0x67, 0x6b, 0x6f, 0x72, 0x74, 0x77, 0x79, 0x80, 0x83, 0x88, 0x8c, 0x8f, 0x91, 0x93, 0x95, 0x92, 0x8f, 0x8b, 0x87, 0x81, 0x7a, 0x73, 0x6f, 0x67, 0x63, 0x5e, 0x59, 0x57, 0x54, 0x51, 0x4e, 0x4e, 0x4c, 0x49, 0x48, 0x47, 0x46, 0x45, 0x44, 0x44, 0x44, 0x43, 0x42, 0x41, 0x43, 0x46, 0x48, 0x4e, 0x4e, 0x4f, 0x50, 0x53, 0x58, 0x5d, 0x61, 0x64, 0x6c, 0x75, 0x79, 0x7c, 0x81, 0x84, 0x85, 0x80, 0x7b, 0x75, 0x70, 0x66, 0x59, 0x50, 0x4c, 0x4d, 0x55, 0x5c, 0x61, 0x66, 0x6e, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x83, 0x83, 0x82, 0x80, 0x7d, 0x79, 0x75, 0x73, 0x71, 0x6c, 0x6a, 0x6b, 0x67, 0x60, 0x5e, 0x62, 0x73, 0x78, 0x75, 0x67, 0x5d, 0x5f, 0x68, 0x6e, 0x65, 0x56, 0x56, 0x5e, 0x5f, 0x65, 0x6e, 0x70, 0x6d, 0x6e, 0x6e, 0x6c, 0x6e, 0x70, 0x6c, 0x64, 0x5e, 0x64, 0x68, 0x69, 0x68, 0x6f, 0x7c, 0x87, 0x86, 0x7e, 0x6f, 0x5e, 0x56, 0x58, 0x5d, 0x5f, 0x5c, 0x5e, 0x63, 0x67, 0x66, 0x64, 0x64, 0x67, 0x6b, 0x6a, 0x6a, 0x6b, 0x6a, 0x66, 0x67, 0x69, 0x6a, 0x68, 0x69, 0x6c, 0x6a, 0x64, 0x65, 0x6b, 0x6f, 0x70, 0x71, 0x70, 0x6d, 0x6a, 0x68, 0x67, 0x6a, 0x68, 0x64, 0x60, 0x61, 0x65, 0x68, 0x68, 0x69, 0x6b, 0x6a, 0x66, 0x64, 0x69, 0x70, 0x75, 0x7f, 0x84, 0x87, 0x84, 0x81, 0x7e, 0x7a, 0x75, 0x6a, 0x67, 0x63, 0x5f, 0x5d, 0x5d, 0x5f, 0x61, 0x6e, 0x6e, 0x63, 0x55, 0x51, 0x55, 0x4c, 0x3c, 0x35, 0x3a, 0x3f, 0x42, 0x45, 0x4a, 0x53, 0x59, 0x52, 0x50, 0x43, 0x31, 0x2e, 0x3e, 0x51, 0x5a, 0x4b, 0x3b, 0x35, 0x44, 0x53, 0x54, 0x4e, 0x4c, 0x4f, 0x52, 0x45, 0x47, 0x55, 0x59, 0x58, 0x4e, 0x4b, 0x46, 0x3c, 0x36, 0x3e, 0x4e, 0x58, 0x5a, 0x5c, 0x58, 0x47, 0x2e, 0x1d, 0x23, 0x3d, 0x53, 0x5e, 0x50, 0x4c, 0x54, 0x56, 0x51, 0x57, 0x65, 0x69, 0x68, 0x64, 0x71, 0x86, 0x81, 0x6b, 0x63, 0x54, 0x5b, 0x69, 0x6e, 0x6a, 0x6a, 0x5e, 0x45, 0x3f, 0x34, 0x30, 0x30, 0x38, 0x3b, 0x3c, 0x4f, 0x59, 0x65, 0x71, 0x79, 0x76, 0x65, 0x59, 0x5b, 0x2e, 0x2f, 0x30, 0x2f, 0x2a, 0x26, 0x26, 0x2a, 0x2b, 0x36, 0x44, 0x4a, 0x45, 0x3b, 0x33, 0x30, 0x35, 0x39, 0x3e, 0x3e, 0x3b, 0x39, 0x3b, 0x3e, 0x3a, 0x3e, 0x44, 0x47, 0x44, 0x3e, 0x3b, 0x3c, 0x44, 0x45, 0x44, 0x42, 0x42, 0x43, 0x40, 0x3c, 0x3d, 0x45, 0x52, 0x60, 0x68, 0x63, 0x50, 0x3e, 0x3b, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x42, 0x40, 0x3b, 0x3f, 0x43, 0x46, 0x48, 0x48, 0x45, 0x40, 0x45, 0x44, 0x43, 0x44, 0x47, 0x48, 0x43, 0x3b, 0x44, 0x48, 0x49, 0x45, 0x42, 0x42, 0x44, 0x46, 0x51, 0x4e, 0x57, 0x58, 0x5c, 0x5d, 0x53, 0x51, 0x4b, 0x4a, 0x4d, 0x50, 0x4b, 0x43, 0x40, 0x42, 0x47, 0x49, 0x49, 0x47, 0x46, 0x49, 0x4b, 0x4a, 0x4c, 0x50, 0x52, 0x56, 0x62, 0x6d, 0x6c, 0x63, 0x53, 0x4c, 0x47, 0x48, 0x4e, 0x53, 0x52, 0x4f, 0x51, 0x55, 0x5a, 0x5c, 0x5d, 0x5a, 0x51, 0x49, 0x45, 0x43, 0x44, 0x47, 0x49, 0x4a, 0x4c, 0x4f, 0x4f, 0x52, 0x52, 0x49, 0x3d, 0x37, 0x3b, 0x41, 0x4c, 0x50, 0x54, 0x54, 0x53, 0x52, 0x50, 0x4c, 0x4a, 0x4e, 0x58, 0x5f, 0x58, 0x49, 0x41, 0x43, 0x44, 0x40, 0x3d, 0x3d, 0x3f, 0x42, 0x44, 0x44, 0x45, 0x45, 0x45, 0x45, 0x45, 0x44, 0x41, 0x3f, 0x42, 0x41, 0x40, 0x40, 0x41, 0x42, 0x45, 0x46, 0x46, 0x49, 0x49, 0x49, 0x50, 0x5b, 0x61, 0x60, 0x55, 0x51, 0x4a, 0x45, 0x43, 0x43, 0x43, 0x43, 0x46, 0x46, 0x47, 0x48, 0x45, 0x42, 0x41, 0x44, 0x45, 0x44, 0x43, 0x44, 0x47, 0x4b, 0x50, 0x52, 0x4b, 0x4a, 0x4a, 0x4d, 0x4e, 0x4f, 0x53, 0x58, 0x58, 0x5a, 0x58, 0x56, 0x58, 0x5b, 0x57, 0x4f, 0x4f, 0x54, 0x59, 0x5b, 0x57, 0x51, 0x4d, 0x4c, 0x4a, 0x4a, 0x49, 0x48, 0x4a, 0x4d, 0x4d, 0x4b, 0x4b, 0x49, 0x47, 0x49, 0x4c, 0x50, 0x52, 0x52, 0x54, 0x54, 0x51, 0x4c, 0x4a, 0x4e, 0x54, 0x57, 0x5f, 0x56, 0x50, 0x51, 0x54, 0x52, 0x52, 0x53, 0x58, 0x59, 0x5b, 0x5e, 0x60, 0x66, 0x72, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7c, 0x7b, 0x78, 0x77, 0x75, 0x75, 0x74, 0x73, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x67, 0x64, 0x62, 0x60, 0x63, 0x66, 0x69, 0x6c, 0x6f, 0x73, 0x77, 0x79, 0x7e, 0x82, 0x88, 0x8e, 0x91, 0x94, 0x96, 0x97, 0x93, 0x92, 0x90, 0x8d, 0x89, 0x83, 0x7d, 0x79, 0x72, 0x6e, 0x6a, 0x66, 0x64, 0x60, 0x5c, 0x59, 0x57, 0x55, 0x53, 0x52, 0x51, 0x50, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x51, 0x53, 0x59, 0x5a, 0x5b, 0x5c, 0x5e, 0x62, 0x67, 0x6a, 0x6f, 0x75, 0x7b, 0x7d, 0x7f, 0x83, 0x85, 0x86, 0x83, 0x7f, 0x7a, 0x75, 0x6d, 0x61, 0x57, 0x52, 0x4e, 0x54, 0x5b, 0x60, 0x66, 0x6d, 0x71, 0x72, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80, 0x81, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x76, 0x73, 0x72, 0x6f, 0x6b, 0x69, 0x68, 0x65, 0x5f, 0x5e, 0x62, 0x69, 0x71, 0x76, 0x6e, 0x60, 0x5a, 0x60, 0x69, 0x6f, 0x5b, 0x52, 0x57, 0x5b, 0x63, 0x6d, 0x72, 0x70, 0x71, 0x6f, 0x6c, 0x6d, 0x71, 0x6f, 0x69, 0x65, 0x61, 0x5e, 0x60, 0x67, 0x6c, 0x6d, 0x6c, 0x7a, 0x7d, 0x7d, 0x7a, 0x76, 0x70, 0x68, 0x62, 0x63, 0x63, 0x64, 0x65, 0x63, 0x60, 0x61, 0x64, 0x69, 0x69, 0x66, 0x61, 0x5f, 0x61, 0x63, 0x64, 0x66, 0x65, 0x68, 0x6b, 0x69, 0x63, 0x63, 0x67, 0x6c, 0x6f, 0x70, 0x6f, 0x6b, 0x68, 0x67, 0x68, 0x7a, 0x76, 0x6e, 0x66, 0x62, 0x64, 0x66, 0x66, 0x6a, 0x6b, 0x6a, 0x66, 0x66, 0x6a, 0x6d, 0x6f, 0x77, 0x80, 0x88, 0x89, 0x86, 0x83, 0x82, 0x81, 0x75, 0x6d, 0x63, 0x5e, 0x5e, 0x60, 0x61, 0x60, 0x5c, 0x65, 0x65, 0x57, 0x4d, 0x4b, 0x42, 0x35, 0x3b, 0x3e, 0x41, 0x43, 0x46, 0x4d, 0x57, 0x5f, 0x57, 0x4d, 0x39, 0x2a, 0x2f, 0x45, 0x58, 0x5e, 0x4a, 0x3d, 0x39, 0x44, 0x51, 0x54, 0x50, 0x4d, 0x4f, 0x4d, 0x3f, 0x46, 0x54, 0x53, 0x4f, 0x46, 0x4f, 0x4f, 0x47, 0x3a, 0x3a, 0x49, 0x54, 0x56, 0x62, 0x60, 0x4f, 0x35, 0x28, 0x35, 0x4c, 0x5b, 0x56, 0x50, 0x50, 0x57, 0x55, 0x4c, 0x4b, 0x51, 0x51, 0x6f, 0x7e, 0x7d, 0x7d, 0x70, 0x59, 0x4c, 0x3d, 0x4f, 0x66, 0x6f, 0x6e, 0x6c, 0x5e, 0x45, 0x34, 0x2f, 0x34, 0x37, 0x3c, 0x3c, 0x3b, 0x4e, 0x78, 0x7a, 0x76, 0x6d, 0x5f, 0x4c, 0x43, 0x48, 0x33, 0x33, 0x31, 0x2c, 0x27, 0x25, 0x26, 0x29, 0x2b, 0x36, 0x44, 0x4a, 0x46, 0x3d, 0x36, 0x33, 0x3a, 0x3e, 0x41, 0x40, 0x3b, 0x37, 0x39, 0x3e, 0x38, 0x3a, 0x3d, 0x40, 0x3f, 0x3d, 0x3f, 0x43, 0x41, 0x41, 0x41, 0x42, 0x47, 0x4e, 0x50, 0x4f, 0x3e, 0x41, 0x45, 0x4e, 0x59, 0x5f, 0x5a, 0x52, 0x4e, 0x4d, 0x4a, 0x47, 0x44, 0x44, 0x43, 0x43, 0x3e, 0x40, 0x42, 0x45, 0x4a, 0x4d, 0x4a, 0x45, 0x45, 0x44, 0x45, 0x49, 0x4d, 0x4d, 0x47, 0x41, 0x45, 0x45, 0x42, 0x3e, 0x3b, 0x3d, 0x42, 0x46, 0x4b, 0x46, 0x4b, 0x4b, 0x52, 0x5c, 0x5c, 0x62, 0x58, 0x53, 0x53, 0x56, 0x51, 0x47, 0x43, 0x48, 0x4a, 0x4d, 0x4e, 0x4b, 0x4a, 0x4f, 0x51, 0x51, 0x58, 0x59, 0x59, 0x5d, 0x66, 0x6d, 0x65, 0x59, 0x53, 0x4e, 0x49, 0x48, 0x4c, 0x4f, 0x4f, 0x4e, 0x50, 0x54, 0x59, 0x5b, 0x5c, 0x5a, 0x54, 0x4e, 0x46, 0x46, 0x48, 0x4d, 0x4e, 0x4d, 0x4d, 0x4e, 0x54, 0x54, 0x53, 0x4c, 0x42, 0x37, 0x2f, 0x2b, 0x31, 0x31, 0x31, 0x35, 0x3e, 0x49, 0x50, 0x51, 0x46, 0x4a, 0x57, 0x65, 0x64, 0x53, 0x46, 0x43, 0x48, 0x44, 0x40, 0x3e, 0x3f, 0x41, 0x41, 0x41, 0x43, 0x43, 0x44, 0x45, 0x46, 0x46, 0x45, 0x43, 0x45, 0x43, 0x41, 0x40, 0x40, 0x42, 0x43, 0x43, 0x46, 0x49, 0x4a, 0x4a, 0x4e, 0x56, 0x5e, 0x60, 0x56, 0x52, 0x4b, 0x46, 0x43, 0x42, 0x42, 0x42, 0x40, 0x43, 0x47, 0x47, 0x44, 0x42, 0x42, 0x44, 0x48, 0x46, 0x44, 0x43, 0x44, 0x48, 0x4e, 0x52, 0x4f, 0x4c, 0x4b, 0x4b, 0x4c, 0x4f, 0x55, 0x5b, 0x59, 0x5b, 0x59, 0x55, 0x59, 0x60, 0x5d, 0x54, 0x51, 0x53, 0x54, 0x54, 0x52, 0x4f, 0x4e, 0x4e, 0x49, 0x4a, 0x4b, 0x4b, 0x4a, 0x4b, 0x4a, 0x4a, 0x4c, 0x48, 0x45, 0x46, 0x4a, 0x4d, 0x4e, 0x4d, 0x4f, 0x50, 0x50, 0x4d, 0x4a, 0x4d, 0x52, 0x57, 0x56, 0x53, 0x54, 0x58, 0x59, 0x57, 0x54, 0x54, 0x5c, 0x5b, 0x58, 0x53, 0x53, 0x5c, 0x6d, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6a, 0x68, 0x65, 0x62, 0x60, 0x5f, 0x60, 0x62, 0x66, 0x69, 0x6e, 0x73, 0x79, 0x7c, 0x7d, 0x82, 0x88, 0x8e, 0x91, 0x93, 0x94, 0x95, 0x96, 0x95, 0x94, 0x92, 0x90, 0x8b, 0x85, 0x81, 0x7d, 0x7a, 0x76, 0x73, 0x71, 0x6c, 0x67, 0x63, 0x61, 0x60, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x56, 0x55, 0x56, 0x58, 0x59, 0x5a, 0x5b, 0x5d, 0x5e, 0x61, 0x62, 0x63, 0x64, 0x66, 0x69, 0x6d, 0x70, 0x77, 0x7c, 0x80, 0x81, 0x82, 0x85, 0x87, 0x87, 0x85, 0x82, 0x7e, 0x7a, 0x73, 0x68, 0x5e, 0x57, 0x4f, 0x54, 0x5a, 0x60, 0x66, 0x6c, 0x6f, 0x71, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7e, 0x7f, 0x80, 0x7f, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x79, 0x77, 0x74, 0x71, 0x70, 0x6d, 0x6a, 0x67, 0x66, 0x63, 0x5e, 0x5f, 0x62, 0x61, 0x69, 0x72, 0x72, 0x65, 0x58, 0x59, 0x62, 0x6f, 0x63, 0x55, 0x4f, 0x53, 0x60, 0x6d, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6b, 0x67, 0x68, 0x6b, 0x6f, 0x79, 0x7f, 0x74, 0x5f, 0x51, 0x52, 0x5a, 0x6c, 0x6c, 0x71, 0x7b, 0x86, 0x87, 0x7e, 0x73, 0x66, 0x61, 0x5d, 0x5d, 0x5f, 0x5f, 0x61, 0x63, 0x66, 0x69, 0x65, 0x5c, 0x5a, 0x62, 0x67, 0x66, 0x64, 0x63, 0x64, 0x66, 0x65, 0x63, 0x66, 0x6b, 0x70, 0x71, 0x72, 0x71, 0x6d, 0x67, 0x63, 0x60, 0x54, 0x57, 0x5a, 0x5c, 0x60, 0x67, 0x6b, 0x6b, 0x6c, 0x6c, 0x6a, 0x67, 0x67, 0x6a, 0x6b, 0x69, 0x67, 0x72, 0x7e, 0x84, 0x83, 0x80, 0x7e, 0x7c, 0x7a, 0x71, 0x66, 0x5e, 0x5d, 0x5e, 0x5e, 0x5d, 0x64, 0x6a, 0x6e, 0x66, 0x52, 0x3c, 0x32, 0x30, 0x3e, 0x3c, 0x39, 0x37, 0x3b, 0x46, 0x55, 0x60, 0x60, 0x54, 0x43, 0x3b, 0x46, 0x55, 0x5a, 0x55, 0x4c, 0x43, 0x3e, 0x43, 0x4d, 0x52, 0x51, 0x4f, 0x4a, 0x43, 0x32, 0x3a, 0x48, 0x49, 0x4c, 0x4c, 0x55, 0x52, 0x48, 0x3b, 0x38, 0x42, 0x50, 0x57, 0x5f, 0x5c, 0x4a, 0x31, 0x2c, 0x3c, 0x4c, 0x51, 0x48, 0x4e, 0x4e, 0x47, 0x44, 0x48, 0x49, 0x44, 0x5e, 0x7b, 0x84, 0x7c, 0x7b, 0x6c, 0x48, 0x2b, 0x44, 0x57, 0x6a, 0x6d, 0x69, 0x62, 0x4c, 0x33, 0x31, 0x30, 0x36, 0x35, 0x33, 0x31, 0x37, 0x52, 0x7a, 0x71, 0x60, 0x55, 0x54, 0x53, 0x56, 0x60, 0x3c, 0x39, 0x33, 0x2c, 0x28, 0x29, 0x2c, 0x2f, 0x3d, 0x3f, 0x40, 0x3d, 0x37, 0x34, 0x34, 0x36, 0x3b, 0x3d, 0x40, 0x3f, 0x39, 0x33, 0x35, 0x3a, 0x35, 0x34, 0x36, 0x39, 0x3a, 0x3b, 0x3f, 0x44, 0x49, 0x4b, 0x4c, 0x4a, 0x49, 0x48, 0x47, 0x44, 0x51, 0x4c, 0x45, 0x40, 0x42, 0x4a, 0x4f, 0x50, 0x59, 0x57, 0x53, 0x4f, 0x4b, 0x45, 0x42, 0x41, 0x42, 0x42, 0x41, 0x42, 0x46, 0x4a, 0x48, 0x43, 0x42, 0x43, 0x45, 0x49, 0x4b, 0x4a, 0x46, 0x43, 0x3f, 0x3f, 0x40, 0x40, 0x41, 0x45, 0x4b, 0x50, 0x4f, 0x4a, 0x4c, 0x46, 0x46, 0x4d, 0x4f, 0x58, 0x61, 0x5c, 0x5c, 0x5f, 0x5b, 0x50, 0x4c, 0x50, 0x59, 0x60, 0x62, 0x5d, 0x5a, 0x5c, 0x5d, 0x5a, 0x4e, 0x4d, 0x4d, 0x51, 0x5b, 0x5f, 0x57, 0x4b, 0x4c, 0x4b, 0x49, 0x49, 0x4a, 0x4b, 0x4d, 0x4e, 0x4d, 0x51, 0x54, 0x55, 0x56, 0x56, 0x53, 0x4e, 0x4c, 0x4c, 0x4e, 0x52, 0x54, 0x52, 0x51, 0x52, 0x5c, 0x5d, 0x5f, 0x5f, 0x5c, 0x56, 0x4d, 0x47, 0x34, 0x32, 0x30, 0x33, 0x3a, 0x3f, 0x3c, 0x35, 0x38, 0x3b, 0x4b, 0x61, 0x6b, 0x61, 0x51, 0x49, 0x49, 0x45, 0x42, 0x40, 0x41, 0x42, 0x41, 0x40, 0x42, 0x42, 0x43, 0x45, 0x47, 0x48, 0x47, 0x46, 0x45, 0x44, 0x42, 0x41, 0x41, 0x41, 0x41, 0x41, 0x44, 0x48, 0x4b, 0x4d, 0x51, 0x59, 0x62, 0x68, 0x54, 0x4f, 0x49, 0x44, 0x42, 0x42, 0x42, 0x43, 0x41, 0x45, 0x49, 0x48, 0x45, 0x44, 0x45, 0x46, 0x48, 0x47, 0x45, 0x43, 0x43, 0x46, 0x4c, 0x4f, 0x50, 0x4c, 0x49, 0x49, 0x49, 0x4c, 0x52, 0x59, 0x5d, 0x5e, 0x5a, 0x55, 0x59, 0x62, 0x61, 0x59, 0x52, 0x50, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4c, 0x4a, 0x4c, 0x4f, 0x50, 0x4f, 0x4d, 0x4b, 0x4b, 0x4c, 0x49, 0x46, 0x46, 0x49, 0x4b, 0x4b, 0x4a, 0x4b, 0x4d, 0x4f, 0x50, 0x4e, 0x4e, 0x51, 0x55, 0x55, 0x55, 0x57, 0x57, 0x55, 0x52, 0x51, 0x53, 0x54, 0x56, 0x55, 0x50, 0x4f, 0x58, 0x6a, 0x78, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x76, 0x75, 0x73, 0x73, 0x73, 0x72, 0x70, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x66, 0x66, 0x66, 0x66, 0x67, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6a, 0x68, 0x66, 0x63, 0x61, 0x60, 0x5f, 0x61, 0x64, 0x68, 0x6d, 0x73, 0x79, 0x7d, 0x7b, 0x80, 0x87, 0x8d, 0x91, 0x93, 0x94, 0x94, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x91, 0x8d, 0x89, 0x87, 0x84, 0x81, 0x7e, 0x7b, 0x77, 0x71, 0x6d, 0x6d, 0x6b, 0x68, 0x66, 0x64, 0x62, 0x5f, 0x5d, 0x5a, 0x5c, 0x5e, 0x60, 0x61, 0x63, 0x65, 0x67, 0x6a, 0x6b, 0x6d, 0x6d, 0x6e, 0x71, 0x74, 0x76, 0x7b, 0x7f, 0x82, 0x83, 0x85, 0x88, 0x8a, 0x89, 0x87, 0x85, 0x81, 0x7c, 0x76, 0x6e, 0x63, 0x5b, 0x53, 0x55, 0x5a, 0x61, 0x67, 0x6b, 0x6e, 0x6f, 0x72, 0x72, 0x73, 0x74, 0x76, 0x79, 0x7b, 0x7d, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x78, 0x75, 0x72, 0x70, 0x6e, 0x6c, 0x69, 0x67, 0x64, 0x61, 0x5f, 0x60, 0x62, 0x5e, 0x62, 0x6a, 0x6f, 0x68, 0x5b, 0x56, 0x5a, 0x65, 0x67, 0x5b, 0x49, 0x49, 0x59, 0x68, 0x6d, 0x6e, 0x69, 0x6b, 0x71, 0x6a, 0x5d, 0x5d, 0x68, 0x78, 0x6f, 0x68, 0x6b, 0x76, 0x7e, 0x7d, 0x79, 0x61, 0x53, 0x45, 0x41, 0x49, 0x57, 0x63, 0x69, 0x65, 0x5e, 0x59, 0x5d, 0x63, 0x65, 0x61, 0x5e, 0x63, 0x68, 0x65, 0x5d, 0x5e, 0x68, 0x6e, 0x6c, 0x63, 0x63, 0x64, 0x65, 0x64, 0x63, 0x67, 0x6b, 0x6e, 0x6d, 0x6e, 0x6e, 0x6d, 0x67, 0x5d, 0x55, 0x44, 0x49, 0x50, 0x56, 0x5e, 0x66, 0x69, 0x69, 0x6a, 0x69, 0x67, 0x65, 0x66, 0x69, 0x6a, 0x68, 0x67, 0x6c, 0x76, 0x7e, 0x83, 0x82, 0x7e, 0x7c, 0x7b, 0x75, 0x6c, 0x63, 0x5d, 0x5b, 0x5b, 0x5b, 0x5c, 0x62, 0x64, 0x59, 0x43, 0x31, 0x2e, 0x34, 0x39, 0x37, 0x34, 0x34, 0x3b, 0x4b, 0x5d, 0x69, 0x61, 0x58, 0x4e, 0x4e, 0x59, 0x5e, 0x53, 0x43, 0x47, 0x45, 0x43, 0x46, 0x4e, 0x55, 0x55, 0x50, 0x48, 0x3f, 0x2e, 0x37, 0x46, 0x4a, 0x53, 0x58, 0x56, 0x4c, 0x40, 0x39, 0x37, 0x3d, 0x4e, 0x5f, 0x61, 0x5c, 0x4a, 0x35, 0x37, 0x4a, 0x55, 0x51, 0x52, 0x55, 0x51, 0x48, 0x47, 0x4d, 0x50, 0x4d, 0x6e, 0x76, 0x76, 0x78, 0x75, 0x5b, 0x43, 0x42, 0x52, 0x61, 0x69, 0x67, 0x63, 0x56, 0x3d, 0x28, 0x27, 0x20, 0x20, 0x1d, 0x21, 0x2a, 0x3b, 0x5d, 0x75, 0x6f, 0x60, 0x54, 0x4f, 0x49, 0x46, 0x4c, 0x41, 0x3d, 0x36, 0x30, 0x2f, 0x33, 0x36, 0x36, 0x3f, 0x3f, 0x3e, 0x3c, 0x39, 0x37, 0x37, 0x37, 0x37, 0x39, 0x3d, 0x3f, 0x3a, 0x33, 0x33, 0x38, 0x30, 0x2e, 0x30, 0x35, 0x3a, 0x3b, 0x3d, 0x3f, 0x37, 0x40, 0x4a, 0x4e, 0x4f, 0x4e, 0x4b, 0x48, 0x45, 0x4a, 0x4e, 0x4d, 0x4c, 0x4a, 0x46, 0x41, 0x48, 0x48, 0x4a, 0x4c, 0x4b, 0x46, 0x43, 0x42, 0x45, 0x44, 0x41, 0x3f, 0x41, 0x44, 0x42, 0x3e, 0x40, 0x40, 0x43, 0x46, 0x45, 0x41, 0x3f, 0x3f, 0x3d, 0x3f, 0x44, 0x49, 0x4a, 0x49, 0x4a, 0x4c, 0x48, 0x47, 0x4d, 0x48, 0x46, 0x49, 0x47, 0x4d, 0x5a, 0x59, 0x5b, 0x60, 0x5e, 0x56, 0x51, 0x51, 0x65, 0x6b, 0x6c, 0x67, 0x64, 0x66, 0x64, 0x5d, 0x4b, 0x4b, 0x4b, 0x4f, 0x57, 0x5b, 0x55, 0x4d, 0x4c, 0x4d, 0x4d, 0x4d, 0x4c, 0x4e, 0x51, 0x54, 0x50, 0x52, 0x53, 0x51, 0x51, 0x52, 0x52, 0x4f, 0x4e, 0x4c, 0x4d, 0x4f, 0x4f, 0x4e, 0x4e, 0x50, 0x52, 0x58, 0x61, 0x68, 0x6e, 0x74, 0x7a, 0x7e, 0x7c, 0x77, 0x70, 0x6c, 0x6b, 0x67, 0x5b, 0x4f, 0x3d, 0x3f, 0x49, 0x5c, 0x6a, 0x69, 0x5c, 0x51, 0x47, 0x44, 0x41, 0x41, 0x43, 0x45, 0x46, 0x45, 0x45, 0x44, 0x43, 0x44, 0x45, 0x46, 0x46, 0x46, 0x45, 0x45, 0x45, 0x45, 0x44, 0x43, 0x43, 0x43, 0x44, 0x46, 0x49, 0x4a, 0x4d, 0x53, 0x5b, 0x61, 0x53, 0x4f, 0x49, 0x45, 0x43, 0x43, 0x44, 0x44, 0x45, 0x48, 0x48, 0x45, 0x43, 0x43, 0x43, 0x43, 0x47, 0x46, 0x44, 0x43, 0x44, 0x48, 0x4b, 0x4e, 0x4c, 0x49, 0x47, 0x47, 0x47, 0x48, 0x4d, 0x52, 0x5a, 0x5a, 0x55, 0x51, 0x53, 0x59, 0x59, 0x54, 0x4f, 0x4e, 0x4d, 0x4e, 0x50, 0x50, 0x4d, 0x49, 0x49, 0x4a, 0x4c, 0x4f, 0x4f, 0x4b, 0x4a, 0x4b, 0x4d, 0x4b, 0x48, 0x48, 0x4a, 0x4b, 0x4a, 0x49, 0x49, 0x4b, 0x4f, 0x52, 0x52, 0x50, 0x50, 0x53, 0x55, 0x55, 0x53, 0x4f, 0x4b, 0x4d, 0x53, 0x5a, 0x5f, 0x5f, 0x59, 0x4e, 0x49, 0x54, 0x6a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6c, 0x6b, 0x6b, 0x6a, 0x68, 0x66, 0x63, 0x61, 0x5f, 0x60, 0x62, 0x65, 0x68, 0x6c, 0x71, 0x76, 0x7a, 0x7d, 0x83, 0x8a, 0x91, 0x95, 0x98, 0x9a, 0x9b, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x97, 0x93, 0x91, 0x8f, 0x8c, 0x89, 0x86, 0x84, 0x80, 0x7b, 0x77, 0x75, 0x73, 0x71, 0x6e, 0x6c, 0x69, 0x65, 0x63, 0x62, 0x63, 0x66, 0x67, 0x69, 0x6a, 0x6d, 0x6e, 0x72, 0x73, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7b, 0x7e, 0x82, 0x85, 0x86, 0x88, 0x8c, 0x8d, 0x8c, 0x89, 0x87, 0x83, 0x7d, 0x78, 0x72, 0x68, 0x5e, 0x57, 0x57, 0x5b, 0x62, 0x68, 0x6b, 0x6c, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x79, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x76, 0x77, 0x76, 0x75, 0x73, 0x70, 0x6e, 0x6c, 0x68, 0x67, 0x64, 0x61, 0x5f, 0x5f, 0x62, 0x64, 0x5f, 0x5f, 0x64, 0x69, 0x67, 0x5d, 0x55, 0x54, 0x5a, 0x67, 0x60, 0x4c, 0x47, 0x53, 0x60, 0x6b, 0x6f, 0x68, 0x6a, 0x71, 0x69, 0x55, 0x4f, 0x56, 0x65, 0x64, 0x64, 0x65, 0x6a, 0x70, 0x76, 0x7a, 0x75, 0x6b, 0x5b, 0x4c, 0x44, 0x46, 0x53, 0x60, 0x60, 0x5b, 0x5b, 0x64, 0x6b, 0x6a, 0x61, 0x59, 0x64, 0x68, 0x67, 0x60, 0x5f, 0x64, 0x66, 0x63, 0x5d, 0x60, 0x62, 0x62, 0x60, 0x5f, 0x5f, 0x61, 0x68, 0x66, 0x65, 0x68, 0x6a, 0x67, 0x5f, 0x58, 0x5e, 0x5d, 0x5a, 0x59, 0x5c, 0x62, 0x63, 0x62, 0x64, 0x64, 0x62, 0x60, 0x62, 0x66, 0x69, 0x69, 0x6e, 0x6e, 0x72, 0x7b, 0x82, 0x84, 0x82, 0x81, 0x7c, 0x7a, 0x75, 0x6d, 0x63, 0x5d, 0x59, 0x59, 0x52, 0x65, 0x6d, 0x5e, 0x4d, 0x48, 0x47, 0x43, 0x38, 0x38, 0x39, 0x3d, 0x45, 0x52, 0x5f, 0x68, 0x63, 0x55, 0x46, 0x44, 0x4e, 0x55, 0x4e, 0x42, 0x45, 0x4a, 0x4c, 0x4b, 0x4f, 0x54, 0x51, 0x4a, 0x47, 0x40, 0x31, 0x3b, 0x4c, 0x51, 0x57, 0x59, 0x50, 0x44, 0x3a, 0x36, 0x34, 0x3a, 0x50, 0x68, 0x69, 0x63, 0x51, 0x41, 0x46, 0x5a, 0x64, 0x60, 0x57, 0x4c, 0x46, 0x49, 0x4a, 0x47, 0x4b, 0x54, 0x62, 0x71, 0x77, 0x74, 0x69, 0x51, 0x48, 0x55, 0x53, 0x5e, 0x62, 0x63, 0x62, 0x55, 0x40, 0x35, 0x38, 0x2d, 0x2b, 0x2b, 0x34, 0x3b, 0x42, 0x59, 0x51, 0x59, 0x58, 0x50, 0x48, 0x41, 0x43, 0x4c, 0x3c, 0x3a, 0x36, 0x34, 0x38, 0x3d, 0x3c, 0x38, 0x2f, 0x33, 0x3a, 0x40, 0x43, 0x41, 0x3b, 0x35, 0x35, 0x35, 0x3a, 0x3f, 0x3c, 0x34, 0x31, 0x34, 0x2f, 0x2b, 0x2c, 0x33, 0x3a, 0x3e, 0x3e, 0x3e, 0x4b, 0x52, 0x57, 0x58, 0x55, 0x50, 0x49, 0x42, 0x44, 0x48, 0x4c, 0x4d, 0x4e, 0x4f, 0x4e, 0x4c, 0x3d, 0x3c, 0x3d, 0x41, 0x42, 0x41, 0x41, 0x43, 0x43, 0x43, 0x42, 0x40, 0x41, 0x43, 0x41, 0x3e, 0x40, 0x3e, 0x3f, 0x42, 0x42, 0x3f, 0x3e, 0x40, 0x42, 0x44, 0x49, 0x4e, 0x4e, 0x49, 0x46, 0x46, 0x42, 0x40, 0x46, 0x43, 0x44, 0x48, 0x44, 0x48, 0x53, 0x57, 0x5d, 0x62, 0x63, 0x5f, 0x59, 0x54, 0x60, 0x62, 0x5f, 0x5b, 0x60, 0x67, 0x65, 0x5b, 0x52, 0x52, 0x53, 0x55, 0x5a, 0x5e, 0x5d, 0x5a, 0x55, 0x53, 0x4f, 0x4d, 0x4d, 0x4f, 0x51, 0x53, 0x52, 0x53, 0x51, 0x4e, 0x4e, 0x50, 0x52, 0x51, 0x50, 0x4b, 0x48, 0x47, 0x46, 0x45, 0x47, 0x4b, 0x41, 0x45, 0x4d, 0x55, 0x5f, 0x6a, 0x75, 0x7b, 0x82, 0x7f, 0x7a, 0x75, 0x72, 0x6f, 0x67, 0x5f, 0x51, 0x4f, 0x50, 0x57, 0x63, 0x6a, 0x65, 0x5b, 0x4a, 0x46, 0x42, 0x41, 0x44, 0x48, 0x4a, 0x4a, 0x47, 0x45, 0x43, 0x42, 0x43, 0x45, 0x46, 0x46, 0x49, 0x4b, 0x4c, 0x4b, 0x48, 0x45, 0x44, 0x44, 0x46, 0x46, 0x47, 0x47, 0x48, 0x4c, 0x52, 0x58, 0x58, 0x53, 0x4d, 0x48, 0x46, 0x46, 0x46, 0x46, 0x49, 0x4a, 0x48, 0x43, 0x42, 0x45, 0x46, 0x45, 0x48, 0x46, 0x44, 0x45, 0x47, 0x4a, 0x4b, 0x4a, 0x48, 0x47, 0x46, 0x47, 0x47, 0x47, 0x4a, 0x4e, 0x51, 0x50, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4c, 0x4d, 0x4e, 0x4f, 0x4f, 0x4e, 0x4c, 0x4b, 0x49, 0x47, 0x47, 0x4a, 0x4b, 0x49, 0x48, 0x4a, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x4c, 0x51, 0x52, 0x4f, 0x4e, 0x50, 0x47, 0x4d, 0x53, 0x57, 0x56, 0x53, 0x51, 0x4f, 0x5f, 0x5e, 0x56, 0x48, 0x41, 0x4e, 0x66, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x76, 0x74, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x68, 0x67, 0x67, 0x66, 0x67, 0x69, 0x69, 0x69, 0x68, 0x69, 0x6b, 0x69, 0x6a, 0x69, 0x68, 0x65, 0x62, 0x5e, 0x5c, 0x5d, 0x5f, 0x63, 0x67, 0x6b, 0x70, 0x75, 0x78, 0x80, 0x85, 0x8c, 0x92, 0x96, 0x99, 0x9b, 0x9c, 0x9d, 0x9b, 0x9a, 0x9a, 0x9a, 0x99, 0x97, 0x96, 0x93, 0x91, 0x8e, 0x8c, 0x8b, 0x89, 0x86, 0x83, 0x80, 0x7e, 0x7c, 0x79, 0x77, 0x74, 0x71, 0x6e, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x82, 0x85, 0x88, 0x8a, 0x8d, 0x90, 0x91, 0x8f, 0x8c, 0x8a, 0x84, 0x7d, 0x79, 0x74, 0x6b, 0x61, 0x5b, 0x5a, 0x5d, 0x64, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6d, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x63, 0x63, 0x61, 0x5e, 0x5e, 0x60, 0x64, 0x67, 0x62, 0x61, 0x61, 0x63, 0x62, 0x5c, 0x55, 0x4f, 0x54, 0x62, 0x60, 0x53, 0x4d, 0x4c, 0x56, 0x69, 0x6e, 0x6b, 0x6c, 0x6e, 0x67, 0x57, 0x47, 0x40, 0x3f, 0x3f, 0x43, 0x4d, 0x58, 0x5f, 0x5f, 0x5d, 0x6a, 0x6c, 0x6e, 0x69, 0x5c, 0x4f, 0x4b, 0x4e, 0x58, 0x56, 0x5a, 0x63, 0x69, 0x67, 0x60, 0x5a, 0x63, 0x66, 0x66, 0x63, 0x5f, 0x5f, 0x5d, 0x59, 0x5a, 0x5c, 0x5d, 0x5b, 0x59, 0x5a, 0x5d, 0x5f, 0x62, 0x5f, 0x5d, 0x5e, 0x62, 0x66, 0x66, 0x65, 0x65, 0x5f, 0x57, 0x53, 0x59, 0x62, 0x67, 0x66, 0x64, 0x63, 0x60, 0x5d, 0x5d, 0x63, 0x68, 0x69, 0x6a, 0x6a, 0x6f, 0x7a, 0x81, 0x81, 0x7e, 0x7d, 0x7d, 0x7d, 0x7b, 0x75, 0x6c, 0x62, 0x5a, 0x55, 0x49, 0x5c, 0x64, 0x55, 0x43, 0x3a, 0x32, 0x28, 0x32, 0x34, 0x37, 0x3b, 0x42, 0x49, 0x51, 0x55, 0x5f, 0x4f, 0x3d, 0x38, 0x41, 0x4a, 0x49, 0x44, 0x47, 0x4e, 0x4f, 0x49, 0x49, 0x51, 0x50, 0x48, 0x45, 0x3f, 0x2f, 0x3a, 0x50, 0x57, 0x58, 0x51, 0x49, 0x44, 0x3d, 0x35, 0x2f, 0x36, 0x4f, 0x67, 0x68, 0x60, 0x4f, 0x40, 0x44, 0x56, 0x64, 0x66, 0x50, 0x3f, 0x38, 0x42, 0x49, 0x49, 0x51, 0x5f, 0x69, 0x6f, 0x6a, 0x65, 0x66, 0x58, 0x45, 0x43, 0x61, 0x6a, 0x6b, 0x6b, 0x67, 0x51, 0x3d, 0x3c, 0x3e, 0x37, 0x37, 0x32, 0x2f, 0x27, 0x23, 0x35, 0x5b, 0x63, 0x60, 0x56, 0x4e, 0x47, 0x49, 0x52, 0x34, 0x34, 0x34, 0x37, 0x3e, 0x43, 0x3e, 0x36, 0x2a, 0x2c, 0x31, 0x39, 0x3f, 0x3f, 0x3a, 0x34, 0x33, 0x33, 0x37, 0x3d, 0x3b, 0x31, 0x2c, 0x2d, 0x31, 0x2b, 0x29, 0x30, 0x3a, 0x41, 0x43, 0x44, 0x42, 0x46, 0x4a, 0x4d, 0x50, 0x53, 0x51, 0x4d, 0x4c, 0x4e, 0x4f, 0x4f, 0x4f, 0x50, 0x4e, 0x4a, 0x4b, 0x44, 0x3e, 0x3c, 0x3a, 0x38, 0x3a, 0x3f, 0x3f, 0x41, 0x43, 0x43, 0x45, 0x47, 0x46, 0x43, 0x42, 0x3e, 0x3d, 0x41, 0x44, 0x42, 0x42, 0x44, 0x46, 0x46, 0x49, 0x4f, 0x4f, 0x4c, 0x4a, 0x4c, 0x4d, 0x44, 0x41, 0x38, 0x38, 0x3e, 0x3b, 0x3f, 0x47, 0x4f, 0x58, 0x5d, 0x60, 0x5e, 0x57, 0x50, 0x56, 0x53, 0x4d, 0x4b, 0x57, 0x66, 0x65, 0x5a, 0x4d, 0x4e, 0x50, 0x53, 0x57, 0x5c, 0x60, 0x61, 0x5b, 0x55, 0x4c, 0x47, 0x47, 0x49, 0x4a, 0x4a, 0x4f, 0x4f, 0x4d, 0x49, 0x49, 0x4d, 0x51, 0x52, 0x54, 0x4e, 0x47, 0x44, 0x42, 0x42, 0x45, 0x49, 0x4c, 0x48, 0x46, 0x4a, 0x53, 0x5a, 0x5a, 0x58, 0x5b, 0x61, 0x67, 0x6a, 0x69, 0x67, 0x61, 0x5b, 0x59, 0x56, 0x51, 0x4f, 0x5a, 0x69, 0x6c, 0x66, 0x4f, 0x4a, 0x44, 0x42, 0x44, 0x48, 0x4b, 0x4c, 0x47, 0x44, 0x42, 0x41, 0x43, 0x45, 0x48, 0x49, 0x4e, 0x51, 0x53, 0x51, 0x4b, 0x46, 0x43, 0x43, 0x47, 0x47, 0x48, 0x4a, 0x4d, 0x51, 0x58, 0x5e, 0x5d, 0x58, 0x51, 0x4c, 0x49, 0x48, 0x48, 0x48, 0x4e, 0x4e, 0x4b, 0x46, 0x47, 0x4c, 0x4f, 0x4d, 0x4b, 0x48, 0x46, 0x47, 0x49, 0x4b, 0x49, 0x47, 0x47, 0x46, 0x47, 0x49, 0x49, 0x48, 0x4a, 0x4e, 0x4c, 0x4a, 0x4c, 0x50, 0x51, 0x4e, 0x4d, 0x4f, 0x4c, 0x4d, 0x4e, 0x4d, 0x4a, 0x4a, 0x4c, 0x4f, 0x4d, 0x48, 0x46, 0x48, 0x4a, 0x49, 0x4a, 0x4d, 0x49, 0x4a, 0x4b, 0x4a, 0x49, 0x48, 0x47, 0x47, 0x47, 0x45, 0x47, 0x4d, 0x4f, 0x4d, 0x4b, 0x4d, 0x50, 0x51, 0x50, 0x4f, 0x50, 0x51, 0x51, 0x50, 0x42, 0x49, 0x4b, 0x44, 0x41, 0x4c, 0x5f, 0x6d, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x68, 0x67, 0x66, 0x65, 0x63, 0x66, 0x68, 0x69, 0x68, 0x67, 0x68, 0x69, 0x68, 0x69, 0x68, 0x67, 0x64, 0x60, 0x5b, 0x59, 0x59, 0x5c, 0x60, 0x66, 0x6b, 0x70, 0x76, 0x79, 0x7f, 0x83, 0x88, 0x8d, 0x90, 0x92, 0x93, 0x94, 0x9a, 0x99, 0x98, 0x97, 0x98, 0x99, 0x98, 0x97, 0x96, 0x93, 0x90, 0x90, 0x90, 0x8f, 0x8d, 0x8a, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x81, 0x7e, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7f, 0x81, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x88, 0x8b, 0x8d, 0x90, 0x93, 0x93, 0x90, 0x8e, 0x8b, 0x85, 0x7e, 0x7a, 0x76, 0x6d, 0x62, 0x5e, 0x5b, 0x5e, 0x66, 0x6b, 0x6b, 0x6b, 0x6d, 0x6c, 0x6d, 0x6e, 0x70, 0x70, 0x71, 0x70, 0x70, 0x73, 0x74, 0x74, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6c, 0x6a, 0x69, 0x5f, 0x5f, 0x5e, 0x5c, 0x5d, 0x61, 0x66, 0x69, 0x64, 0x63, 0x61, 0x5f, 0x5e, 0x5b, 0x54, 0x4e, 0x4f, 0x59, 0x5a, 0x55, 0x4f, 0x44, 0x4b, 0x65, 0x66, 0x68, 0x69, 0x69, 0x68, 0x60, 0x4b, 0x37, 0x40, 0x4f, 0x5d, 0x59, 0x4b, 0x46, 0x51, 0x5f, 0x65, 0x68, 0x6e, 0x74, 0x71, 0x68, 0x61, 0x5f, 0x51, 0x51, 0x55, 0x5b, 0x60, 0x60, 0x5f, 0x60, 0x5c, 0x60, 0x65, 0x66, 0x65, 0x63, 0x60, 0x5e, 0x5e, 0x5e, 0x5b, 0x57, 0x56, 0x5b, 0x62, 0x67, 0x5d, 0x5a, 0x56, 0x55, 0x59, 0x60, 0x68, 0x6d, 0x74, 0x6b, 0x5f, 0x5a, 0x5f, 0x67, 0x6b, 0x69, 0x68, 0x67, 0x63, 0x5d, 0x5b, 0x60, 0x65, 0x68, 0x6c, 0x70, 0x7b, 0x89, 0x8f, 0x8b, 0x85, 0x82, 0x7e, 0x7e, 0x7d, 0x7a, 0x71, 0x65, 0x59, 0x52, 0x57, 0x5a, 0x5c, 0x56, 0x47, 0x39, 0x36, 0x38, 0x33, 0x34, 0x37, 0x3c, 0x42, 0x49, 0x50, 0x53, 0x50, 0x48, 0x41, 0x42, 0x49, 0x4b, 0x43, 0x3a, 0x45, 0x4c, 0x4a, 0x41, 0x43, 0x50, 0x57, 0x53, 0x46, 0x3e, 0x2c, 0x36, 0x51, 0x5b, 0x59, 0x4c, 0x45, 0x49, 0x45, 0x35, 0x2a, 0x33, 0x4c, 0x62, 0x6d, 0x65, 0x54, 0x43, 0x43, 0x53, 0x64, 0x6d, 0x69, 0x5b, 0x4c, 0x48, 0x4c, 0x52, 0x59, 0x5f, 0x74, 0x6d, 0x65, 0x67, 0x5c, 0x3c, 0x36, 0x51, 0x66, 0x6f, 0x72, 0x74, 0x6e, 0x54, 0x41, 0x47, 0x3c, 0x3d, 0x42, 0x3a, 0x32, 0x2e, 0x39, 0x59, 0x6a, 0x6d, 0x66, 0x5c, 0x58, 0x51, 0x4a, 0x4b, 0x32, 0x2f, 0x32, 0x3e, 0x4a, 0x49, 0x3c, 0x30, 0x29, 0x2b, 0x31, 0x38, 0x3b, 0x39, 0x37, 0x37, 0x3d, 0x3b, 0x3b, 0x3f, 0x43, 0x42, 0x3b, 0x34, 0x2d, 0x2c, 0x2e, 0x35, 0x3c, 0x3e, 0x3b, 0x39, 0x3c, 0x3f, 0x42, 0x40, 0x3f, 0x42, 0x4a, 0x51, 0x51, 0x4c, 0x48, 0x49, 0x4e, 0x51, 0x4e, 0x4a, 0x45, 0x4a, 0x4d, 0x49, 0x40, 0x39, 0x37, 0x38, 0x3e, 0x41, 0x42, 0x43, 0x47, 0x4b, 0x49, 0x43, 0x42, 0x43, 0x44, 0x42, 0x41, 0x42, 0x46, 0x49, 0x4c, 0x4b, 0x49, 0x49, 0x4a, 0x4a, 0x47, 0x45, 0x42, 0x42, 0x42, 0x41, 0x41, 0x41, 0x41, 0x42, 0x3f, 0x42, 0x4a, 0x55, 0x5d, 0x5b, 0x51, 0x48, 0x4f, 0x4f, 0x52, 0x56, 0x57, 0x58, 0x5d, 0x65, 0x62, 0x5d, 0x54, 0x4e, 0x52, 0x58, 0x58, 0x54, 0x52, 0x52, 0x51, 0x4e, 0x4a, 0x47, 0x46, 0x46, 0x4a, 0x4d, 0x4f, 0x4f, 0x50, 0x53, 0x54, 0x52, 0x4e, 0x4a, 0x46, 0x45, 0x48, 0x4a, 0x49, 0x48, 0x4c, 0x5c, 0x6d, 0x6f, 0x61, 0x4c, 0x3d, 0x36, 0x42, 0x48, 0x4f, 0x51, 0x4f, 0x4c, 0x4b, 0x4c, 0x4e, 0x4f, 0x53, 0x4f, 0x4d, 0x61, 0x75, 0x73, 0x5b, 0x4e, 0x44, 0x45, 0x4a, 0x4b, 0x4a, 0x4a, 0x44, 0x46, 0x48, 0x47, 0x44, 0x42, 0x43, 0x44, 0x4f, 0x57, 0x5c, 0x57, 0x4c, 0x45, 0x47, 0x4c, 0x4e, 0x4a, 0x47, 0x46, 0x4c, 0x55, 0x5f, 0x65, 0x60, 0x54, 0x4d, 0x4f, 0x4e, 0x4a, 0x4c, 0x54, 0x53, 0x50, 0x4f, 0x52, 0x56, 0x57, 0x54, 0x50, 0x4c, 0x4c, 0x4d, 0x4d, 0x4d, 0x4c, 0x4b, 0x4b, 0x46, 0x48, 0x4a, 0x4c, 0x4c, 0x4b, 0x4a, 0x4a, 0x46, 0x48, 0x4a, 0x4d, 0x52, 0x55, 0x52, 0x4c, 0x44, 0x47, 0x4a, 0x4c, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x4f, 0x4c, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x48, 0x45, 0x43, 0x42, 0x43, 0x44, 0x45, 0x45, 0x44, 0x45, 0x48, 0x4c, 0x4d, 0x4a, 0x47, 0x49, 0x4a, 0x4b, 0x4d, 0x4d, 0x4d, 0x4c, 0x4b, 0x49, 0x49, 0x49, 0x48, 0x44, 0x49, 0x5b, 0x6f, 0x77, 0x7c, 0x79, 0x77, 0x7a, 0x79, 0x77, 0x7a, 0x77, 0x75, 0x71, 0x6e, 0x6d, 0x6d, 0x6f, 0x70, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x64, 0x65, 0x66, 0x68, 0x68, 0x69, 0x68, 0x68, 0x67, 0x67, 0x66, 0x64, 0x61, 0x5d, 0x5a, 0x59, 0x57, 0x5c, 0x63, 0x67, 0x6b, 0x6f, 0x75, 0x7a, 0x7f, 0x82, 0x85, 0x87, 0x88, 0x89, 0x8c, 0x8e, 0x92, 0x93, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8e, 0x8c, 0x89, 0x86, 0x86, 0x84, 0x81, 0x81, 0x83, 0x84, 0x88, 0x8c, 0x8d, 0x8b, 0x89, 0x87, 0x87, 0x8a, 0x89, 0x86, 0x83, 0x80, 0x80, 0x81, 0x83, 0x83, 0x84, 0x86, 0x85, 0x85, 0x87, 0x8a, 0x8e, 0x8c, 0x8b, 0x8d, 0x92, 0x94, 0x91, 0x90, 0x92, 0x8d, 0x8a, 0x87, 0x83, 0x7c, 0x73, 0x6b, 0x69, 0x60, 0x5f, 0x62, 0x67, 0x6b, 0x6a, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6e, 0x6c, 0x6e, 0x71, 0x71, 0x6f, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6a, 0x67, 0x64, 0x5f, 0x5d, 0x5b, 0x5b, 0x5d, 0x60, 0x63, 0x64, 0x62, 0x60, 0x5e, 0x5e, 0x5e, 0x5a, 0x53, 0x4d, 0x49, 0x4e, 0x56, 0x59, 0x4e, 0x42, 0x47, 0x55, 0x61, 0x65, 0x6a, 0x6b, 0x64, 0x55, 0x41, 0x34, 0x4f, 0x5d, 0x6a, 0x6b, 0x63, 0x5d, 0x5b, 0x5b, 0x7a, 0x7a, 0x79, 0x7b, 0x80, 0x82, 0x77, 0x69, 0x56, 0x52, 0x55, 0x5f, 0x67, 0x64, 0x5d, 0x58, 0x5c, 0x60, 0x65, 0x67, 0x69, 0x69, 0x65, 0x61, 0x5b, 0x5c, 0x5a, 0x56, 0x55, 0x57, 0x5c, 0x5f, 0x59, 0x55, 0x50, 0x4f, 0x55, 0x5b, 0x5c, 0x5a, 0x5c, 0x59, 0x58, 0x5f, 0x6f, 0x83, 0x90, 0x94, 0x7e, 0x75, 0x68, 0x5e, 0x5e, 0x63, 0x64, 0x63, 0x65, 0x6a, 0x76, 0x83, 0x89, 0x87, 0x85, 0x85, 0x7f, 0x7f, 0x7d, 0x7b, 0x77, 0x6f, 0x5f, 0x51, 0x4d, 0x57, 0x59, 0x51, 0x4d, 0x4e, 0x4a, 0x42, 0x49, 0x4f, 0x46, 0x3e, 0x42, 0x41, 0x40, 0x48, 0x3f, 0x36, 0x2e, 0x3e, 0x4e, 0x51, 0x36, 0x3a, 0x3b, 0x51, 0x46, 0x40, 0x46, 0x50, 0x5e, 0x55, 0x44, 0x3b, 0x3e, 0x50, 0x5e, 0x5c, 0x56, 0x55, 0x52, 0x50, 0x42, 0x30, 0x2b, 0x3e, 0x5b, 0x6d, 0x6b, 0x5b, 0x43, 0x35, 0x41, 0x5c, 0x6d, 0x70, 0x71, 0x5d, 0x55, 0x50, 0x55, 0x49, 0x4d, 0x51, 0x66, 0x6f, 0x71, 0x71, 0x6b, 0x57, 0x53, 0x67, 0x7e, 0x7c, 0x7c, 0x77, 0x66, 0x50, 0x47, 0x49, 0x48, 0x53, 0x49, 0x3c, 0x3d, 0x3a, 0x44, 0x60, 0x78, 0x7f, 0x75, 0x63, 0x55, 0x42, 0x36, 0x3d, 0x34, 0x36, 0x39, 0x3c, 0x3e, 0x3d, 0x39, 0x34, 0x2d, 0x2f, 0x34, 0x3b, 0x3d, 0x3a, 0x38, 0x38, 0x3a, 0x3a, 0x3b, 0x3f, 0x43, 0x42, 0x3c, 0x37, 0x31, 0x31, 0x34, 0x3b, 0x42, 0x44, 0x42, 0x40, 0x3b, 0x3e, 0x3f, 0x3d, 0x3b, 0x3d, 0x44, 0x4a, 0x4a, 0x49, 0x49, 0x4b, 0x4f, 0x52, 0x53, 0x54, 0x48, 0x4a, 0x4c, 0x4b, 0x47, 0x41, 0x3c, 0x39, 0x3d, 0x41, 0x45, 0x48, 0x4a, 0x4c, 0x48, 0x42, 0x49, 0x4b, 0x4b, 0x49, 0x44, 0x43, 0x45, 0x48, 0x4a, 0x4d, 0x50, 0x50, 0x4d, 0x49, 0x45, 0x43, 0x46, 0x45, 0x43, 0x42, 0x41, 0x41, 0x41, 0x41, 0x3e, 0x41, 0x48, 0x4f, 0x52, 0x50, 0x49, 0x43, 0x42, 0x43, 0x46, 0x4a, 0x4c, 0x4e, 0x53, 0x5a, 0x63, 0x5f, 0x59, 0x54, 0x56, 0x5a, 0x59, 0x54, 0x4c, 0x4c, 0x4b, 0x49, 0x47, 0x47, 0x47, 0x47, 0x4d, 0x4f, 0x50, 0x4f, 0x50, 0x52, 0x53, 0x52, 0x51, 0x4d, 0x49, 0x49, 0x4b, 0x4c, 0x4b, 0x48, 0x5e, 0x66, 0x6f, 0x71, 0x6e, 0x6a, 0x6a, 0x6d, 0x68, 0x67, 0x65, 0x63, 0x61, 0x5e, 0x5a, 0x58, 0x51, 0x4f, 0x52, 0x54, 0x52, 0x59, 0x69, 0x72, 0x67, 0x5a, 0x4e, 0x4a, 0x4d, 0x4f, 0x4a, 0x44, 0x44, 0x45, 0x46, 0x46, 0x45, 0x46, 0x47, 0x49, 0x4d, 0x51, 0x53, 0x50, 0x4b, 0x4a, 0x4e, 0x53, 0x4f, 0x4d, 0x4a, 0x4b, 0x50, 0x58, 0x60, 0x65, 0x5f, 0x50, 0x45, 0x47, 0x4a, 0x49, 0x4c, 0x52, 0x51, 0x51, 0x51, 0x53, 0x55, 0x55, 0x52, 0x4f, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x48, 0x48, 0x49, 0x4a, 0x49, 0x47, 0x46, 0x46, 0x45, 0x48, 0x4b, 0x4d, 0x50, 0x52, 0x4f, 0x4b, 0x47, 0x49, 0x4b, 0x4d, 0x4d, 0x4e, 0x4f, 0x50, 0x52, 0x4f, 0x4b, 0x49, 0x47, 0x47, 0x46, 0x45, 0x43, 0x42, 0x42, 0x41, 0x41, 0x42, 0x43, 0x43, 0x44, 0x43, 0x44, 0x48, 0x4c, 0x4d, 0x4a, 0x47, 0x46, 0x46, 0x46, 0x46, 0x47, 0x47, 0x46, 0x45, 0x44, 0x44, 0x45, 0x45, 0x42, 0x46, 0x59, 0x6c, 0x76, 0x7c, 0x7a, 0x78, 0x7a, 0x78, 0x74, 0x75, 0x76, 0x74, 0x71, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x66, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x65, 0x66, 0x67, 0x65, 0x62, 0x5d, 0x59, 0x57, 0x5c, 0x5f, 0x65, 0x69, 0x6c, 0x70, 0x74, 0x78, 0x79, 0x7b, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x82, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x79, 0x76, 0x75, 0x76, 0x74, 0x71, 0x6f, 0x70, 0x75, 0x78, 0x7b, 0x7d, 0x7e, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7f, 0x81, 0x81, 0x84, 0x88, 0x89, 0x8a, 0x8c, 0x8f, 0x92, 0x90, 0x8f, 0x90, 0x93, 0x93, 0x90, 0x8e, 0x90, 0x8d, 0x88, 0x83, 0x7f, 0x7a, 0x72, 0x6b, 0x69, 0x61, 0x5f, 0x60, 0x65, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6d, 0x6f, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x6a, 0x69, 0x67, 0x64, 0x62, 0x5c, 0x5b, 0x59, 0x5a, 0x5c, 0x5f, 0x61, 0x61, 0x5d, 0x5f, 0x62, 0x65, 0x63, 0x5b, 0x50, 0x48, 0x44, 0x47, 0x50, 0x55, 0x4e, 0x43, 0x46, 0x51, 0x5d, 0x61, 0x66, 0x68, 0x64, 0x5a, 0x4f, 0x47, 0x5c, 0x61, 0x64, 0x62, 0x61, 0x68, 0x71, 0x78, 0x6d, 0x6f, 0x6c, 0x66, 0x63, 0x66, 0x67, 0x65, 0x55, 0x53, 0x55, 0x5e, 0x65, 0x63, 0x5d, 0x58, 0x58, 0x5e, 0x64, 0x69, 0x6e, 0x6f, 0x6d, 0x69, 0x55, 0x56, 0x55, 0x52, 0x4e, 0x4d, 0x4d, 0x4d, 0x4f, 0x4f, 0x4f, 0x51, 0x53, 0x54, 0x50, 0x4c, 0x53, 0x53, 0x53, 0x54, 0x5e, 0x70, 0x82, 0x8c, 0x94, 0x8c, 0x7e, 0x6e, 0x65, 0x67, 0x6c, 0x70, 0x77, 0x73, 0x71, 0x73, 0x75, 0x76, 0x7c, 0x82, 0x80, 0x7e, 0x7a, 0x79, 0x79, 0x73, 0x66, 0x59, 0x51, 0x56, 0x59, 0x58, 0x5a, 0x5c, 0x57, 0x4f, 0x42, 0x47, 0x42, 0x40, 0x4a, 0x4d, 0x48, 0x4a, 0x28, 0x22, 0x21, 0x3a, 0x54, 0x5c, 0x3b, 0x35, 0x42, 0x50, 0x46, 0x3e, 0x47, 0x56, 0x5d, 0x55, 0x3c, 0x39, 0x40, 0x51, 0x5b, 0x59, 0x58, 0x5c, 0x5a, 0x57, 0x48, 0x32, 0x2a, 0x37, 0x4d, 0x5a, 0x66, 0x56, 0x41, 0x3b, 0x4a, 0x5e, 0x62, 0x59, 0x40, 0x43, 0x54, 0x56, 0x53, 0x41, 0x4c, 0x5a, 0x67, 0x70, 0x72, 0x6f, 0x6c, 0x63, 0x68, 0x7b, 0x88, 0x7f, 0x77, 0x72, 0x66, 0x52, 0x42, 0x3c, 0x3c, 0x49, 0x45, 0x3d, 0x40, 0x43, 0x53, 0x72, 0x7a, 0x83, 0x78, 0x62, 0x53, 0x49, 0x48, 0x52, 0x38, 0x3f, 0x41, 0x39, 0x31, 0x32, 0x38, 0x3b, 0x36, 0x36, 0x39, 0x3d, 0x3d, 0x3a, 0x37, 0x37, 0x39, 0x3a, 0x3d, 0x40, 0x41, 0x3f, 0x3b, 0x37, 0x3c, 0x3b, 0x3a, 0x3b, 0x3d, 0x3e, 0x3d, 0x3c, 0x41, 0x42, 0x43, 0x40, 0x3d, 0x3f, 0x45, 0x4b, 0x4a, 0x4c, 0x4e, 0x4e, 0x4d, 0x4e, 0x51, 0x54, 0x4c, 0x49, 0x47, 0x48, 0x4a, 0x49, 0x44, 0x3f, 0x41, 0x45, 0x47, 0x47, 0x48, 0x48, 0x46, 0x42, 0x46, 0x49, 0x4b, 0x49, 0x45, 0x43, 0x46, 0x49, 0x49, 0x4d, 0x51, 0x4f, 0x4a, 0x46, 0x45, 0x46, 0x4b, 0x49, 0x46, 0x43, 0x41, 0x41, 0x41, 0x41, 0x46, 0x49, 0x4d, 0x50, 0x50, 0x4c, 0x49, 0x46, 0x40, 0x40, 0x43, 0x45, 0x46, 0x48, 0x4d, 0x52, 0x50, 0x50, 0x4f, 0x50, 0x54, 0x59, 0x5a, 0x58, 0x51, 0x4f, 0x4c, 0x4b, 0x4a, 0x4b, 0x4c, 0x4c, 0x4d, 0x4d, 0x4c, 0x4a, 0x4c, 0x4f, 0x50, 0x4e, 0x4d, 0x4a, 0x47, 0x48, 0x4c, 0x4e, 0x4c, 0x4a, 0x49, 0x4a, 0x4c, 0x4f, 0x57, 0x63, 0x70, 0x78, 0x7d, 0x7d, 0x7d, 0x7b, 0x77, 0x72, 0x6f, 0x6e, 0x69, 0x62, 0x59, 0x55, 0x50, 0x4b, 0x59, 0x73, 0x76, 0x6c, 0x5b, 0x4f, 0x4e, 0x51, 0x4c, 0x43, 0x43, 0x42, 0x42, 0x43, 0x46, 0x49, 0x4b, 0x4b, 0x4e, 0x4e, 0x4d, 0x4d, 0x4d, 0x4e, 0x50, 0x51, 0x4e, 0x4d, 0x4d, 0x4e, 0x51, 0x57, 0x5c, 0x60, 0x5d, 0x4e, 0x45, 0x49, 0x50, 0x51, 0x51, 0x53, 0x51, 0x52, 0x53, 0x54, 0x54, 0x52, 0x50, 0x4e, 0x47, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x4b, 0x4b, 0x4d, 0x4d, 0x4c, 0x4b, 0x49, 0x48, 0x47, 0x47, 0x47, 0x4b, 0x4d, 0x4e, 0x4f, 0x50, 0x4e, 0x4b, 0x4a, 0x4b, 0x4c, 0x4d, 0x4c, 0x4c, 0x4d, 0x4f, 0x4e, 0x4b, 0x48, 0x45, 0x45, 0x44, 0x43, 0x42, 0x3e, 0x3e, 0x3f, 0x40, 0x41, 0x42, 0x42, 0x43, 0x45, 0x46, 0x47, 0x4b, 0x4e, 0x4f, 0x4c, 0x4a, 0x47, 0x46, 0x45, 0x45, 0x46, 0x46, 0x44, 0x43, 0x44, 0x45, 0x46, 0x45, 0x42, 0x45, 0x55, 0x67, 0x71, 0x79, 0x7a, 0x78, 0x7a, 0x78, 0x73, 0x73, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x67, 0x65, 0x62, 0x5c, 0x58, 0x55, 0x54, 0x5c, 0x5e, 0x62, 0x66, 0x69, 0x6c, 0x6e, 0x6f, 0x76, 0x77, 0x79, 0x78, 0x77, 0x75, 0x75, 0x75, 0x72, 0x71, 0x6e, 0x6b, 0x67, 0x64, 0x61, 0x5f, 0x5d, 0x5c, 0x5e, 0x60, 0x60, 0x5d, 0x5c, 0x5c, 0x5f, 0x61, 0x64, 0x66, 0x68, 0x6a, 0x6d, 0x6e, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x70, 0x73, 0x7b, 0x7f, 0x85, 0x89, 0x8b, 0x8d, 0x91, 0x94, 0x94, 0x93, 0x94, 0x96, 0x95, 0x92, 0x91, 0x91, 0x8d, 0x86, 0x7f, 0x7b, 0x78, 0x71, 0x6b, 0x69, 0x63, 0x5f, 0x5e, 0x61, 0x65, 0x67, 0x68, 0x69, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x65, 0x63, 0x60, 0x5e, 0x5a, 0x59, 0x59, 0x5a, 0x5c, 0x5e, 0x5e, 0x5e, 0x58, 0x5c, 0x62, 0x64, 0x61, 0x58, 0x4d, 0x46, 0x3f, 0x40, 0x46, 0x4d, 0x4c, 0x44, 0x45, 0x4b, 0x53, 0x59, 0x5f, 0x64, 0x67, 0x6c, 0x72, 0x77, 0x73, 0x6b, 0x5b, 0x4c, 0x46, 0x4c, 0x56, 0x5c, 0x6c, 0x74, 0x77, 0x72, 0x6b, 0x66, 0x5f, 0x58, 0x54, 0x53, 0x55, 0x5c, 0x61, 0x60, 0x5c, 0x59, 0x54, 0x5b, 0x63, 0x6b, 0x72, 0x75, 0x72, 0x6e, 0x5c, 0x5a, 0x57, 0x54, 0x51, 0x4e, 0x4c, 0x4b, 0x53, 0x51, 0x4f, 0x4d, 0x4d, 0x4e, 0x50, 0x51, 0x54, 0x58, 0x5a, 0x58, 0x58, 0x60, 0x6c, 0x75, 0x8b, 0x90, 0x90, 0x87, 0x7d, 0x77, 0x76, 0x76, 0x75, 0x72, 0x70, 0x71, 0x73, 0x76, 0x7a, 0x7e, 0x83, 0x7f, 0x7b, 0x79, 0x7c, 0x7a, 0x71, 0x66, 0x5a, 0x5b, 0x5d, 0x61, 0x63, 0x5f, 0x56, 0x4f, 0x51, 0x50, 0x49, 0x47, 0x52, 0x52, 0x45, 0x3a, 0x26, 0x23, 0x20, 0x33, 0x49, 0x55, 0x39, 0x37, 0x3f, 0x45, 0x44, 0x3b, 0x49, 0x5b, 0x54, 0x4c, 0x34, 0x38, 0x44, 0x50, 0x53, 0x50, 0x54, 0x5c, 0x65, 0x61, 0x50, 0x39, 0x2f, 0x3a, 0x4a, 0x52, 0x5d, 0x4f, 0x41, 0x41, 0x52, 0x61, 0x5f, 0x54, 0x4c, 0x50, 0x62, 0x63, 0x5f, 0x4d, 0x56, 0x63, 0x66, 0x6a, 0x6a, 0x6c, 0x71, 0x72, 0x74, 0x7d, 0x85, 0x79, 0x6f, 0x6c, 0x69, 0x5d, 0x4f, 0x46, 0x3f, 0x45, 0x3e, 0x3a, 0x40, 0x44, 0x4d, 0x62, 0x6c, 0x78, 0x78, 0x6e, 0x65, 0x5a, 0x4e, 0x4b, 0x3c, 0x45, 0x46, 0x38, 0x2c, 0x2e, 0x39, 0x41, 0x3f, 0x3c, 0x3b, 0x3c, 0x3a, 0x37, 0x36, 0x37, 0x3c, 0x3e, 0x40, 0x41, 0x3f, 0x3b, 0x38, 0x35, 0x35, 0x37, 0x38, 0x3b, 0x41, 0x48, 0x4c, 0x4d, 0x41, 0x41, 0x3f, 0x3c, 0x3a, 0x3d, 0x45, 0x4b, 0x4d, 0x4f, 0x50, 0x4f, 0x4d, 0x4c, 0x4e, 0x50, 0x4e, 0x49, 0x43, 0x43, 0x47, 0x49, 0x48, 0x45, 0x49, 0x48, 0x45, 0x43, 0x42, 0x43, 0x45, 0x46, 0x45, 0x48, 0x4b, 0x49, 0x45, 0x42, 0x44, 0x46, 0x48, 0x4a, 0x4b, 0x49, 0x46, 0x45, 0x49, 0x4c, 0x4e, 0x4c, 0x48, 0x45, 0x42, 0x42, 0x43, 0x43, 0x45, 0x47, 0x4a, 0x4c, 0x4c, 0x49, 0x46, 0x44, 0x49, 0x49, 0x49, 0x49, 0x48, 0x49, 0x4b, 0x4e, 0x4a, 0x4c, 0x4e, 0x53, 0x59, 0x5f, 0x62, 0x62, 0x5a, 0x56, 0x52, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4b, 0x4a, 0x48, 0x47, 0x4b, 0x50, 0x51, 0x4f, 0x4c, 0x48, 0x45, 0x45, 0x48, 0x4a, 0x4a, 0x48, 0x43, 0x40, 0x3d, 0x3e, 0x42, 0x46, 0x48, 0x49, 0x55, 0x5f, 0x69, 0x6b, 0x66, 0x62, 0x63, 0x66, 0x6e, 0x6b, 0x5f, 0x57, 0x50, 0x45, 0x4e, 0x6a, 0x7b, 0x76, 0x65, 0x50, 0x48, 0x4c, 0x4b, 0x44, 0x43, 0x42, 0x42, 0x45, 0x4a, 0x4e, 0x4e, 0x4d, 0x4e, 0x4f, 0x50, 0x4f, 0x4e, 0x4b, 0x49, 0x47, 0x4c, 0x4c, 0x4d, 0x4e, 0x4f, 0x51, 0x53, 0x55, 0x55, 0x4d, 0x4b, 0x54, 0x5b, 0x59, 0x53, 0x51, 0x50, 0x52, 0x55, 0x55, 0x53, 0x50, 0x4e, 0x4d, 0x4b, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4c, 0x4c, 0x4f, 0x4e, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4b, 0x4d, 0x50, 0x50, 0x4e, 0x4c, 0x4d, 0x4d, 0x4b, 0x4a, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4b, 0x4d, 0x46, 0x44, 0x42, 0x42, 0x43, 0x44, 0x44, 0x43, 0x40, 0x40, 0x40, 0x40, 0x40, 0x41, 0x42, 0x43, 0x46, 0x47, 0x48, 0x4b, 0x4d, 0x4d, 0x4a, 0x48, 0x47, 0x46, 0x47, 0x48, 0x49, 0x49, 0x46, 0x43, 0x46, 0x46, 0x47, 0x46, 0x41, 0x41, 0x4e, 0x5e, 0x6a, 0x74, 0x77, 0x75, 0x78, 0x78, 0x75, 0x75, 0x72, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x66, 0x63, 0x5d, 0x58, 0x55, 0x55, 0x57, 0x5c, 0x5e, 0x63, 0x69, 0x6d, 0x6f, 0x6f, 0x6e, 0x6c, 0x6d, 0x6d, 0x6b, 0x69, 0x66, 0x64, 0x63, 0x5d, 0x5c, 0x5a, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x56, 0x54, 0x55, 0x57, 0x56, 0x54, 0x53, 0x54, 0x52, 0x52, 0x53, 0x54, 0x56, 0x58, 0x5b, 0x5d, 0x5f, 0x5f, 0x60, 0x60, 0x61, 0x63, 0x67, 0x69, 0x71, 0x75, 0x7a, 0x7f, 0x83, 0x87, 0x8c, 0x90, 0x93, 0x93, 0x94, 0x95, 0x95, 0x93, 0x92, 0x92, 0x8c, 0x85, 0x7e, 0x7b, 0x79, 0x73, 0x6c, 0x68, 0x64, 0x5e, 0x5b, 0x5e, 0x63, 0x65, 0x67, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x67, 0x65, 0x66, 0x67, 0x67, 0x67, 0x67, 0x66, 0x65, 0x65, 0x64, 0x63, 0x62, 0x62, 0x61, 0x60, 0x5d, 0x5b, 0x59, 0x59, 0x5a, 0x5c, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x59, 0x5b, 0x5a, 0x56, 0x4f, 0x49, 0x46, 0x3f, 0x3c, 0x3e, 0x45, 0x47, 0x44, 0x43, 0x46, 0x52, 0x58, 0x5f, 0x5f, 0x5b, 0x59, 0x5d, 0x63, 0x75, 0x7a, 0x7e, 0x7e, 0x7a, 0x70, 0x61, 0x55, 0x4b, 0x54, 0x60, 0x69, 0x71, 0x71, 0x66, 0x59, 0x54, 0x53, 0x55, 0x59, 0x5d, 0x5d, 0x5a, 0x58, 0x52, 0x59, 0x62, 0x6b, 0x72, 0x76, 0x72, 0x6d, 0x59, 0x53, 0x4d, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d, 0x4d, 0x50, 0x54, 0x57, 0x58, 0x57, 0x53, 0x53, 0x5a, 0x64, 0x6a, 0x7e, 0x88, 0x92, 0x94, 0x90, 0x89, 0x82, 0x7c, 0x71, 0x71, 0x72, 0x74, 0x77, 0x79, 0x7a, 0x7b, 0x80, 0x7f, 0x7c, 0x7a, 0x7b, 0x7b, 0x76, 0x70, 0x65, 0x64, 0x66, 0x67, 0x5f, 0x51, 0x47, 0x45, 0x53, 0x4c, 0x44, 0x48, 0x55, 0x57, 0x49, 0x39, 0x16, 0x28, 0x3a, 0x4f, 0x5b, 0x5b, 0x3d, 0x3d, 0x42, 0x47, 0x51, 0x49, 0x54, 0x61, 0x4a, 0x40, 0x2f, 0x38, 0x47, 0x51, 0x51, 0x50, 0x56, 0x5f, 0x55, 0x51, 0x41, 0x30, 0x32, 0x46, 0x58, 0x5f, 0x53, 0x47, 0x3c, 0x40, 0x52, 0x63, 0x67, 0x64, 0x69, 0x5e, 0x5b, 0x4f, 0x4d, 0x46, 0x59, 0x6a, 0x6c, 0x61, 0x5b, 0x63, 0x71, 0x76, 0x76, 0x77, 0x7d, 0x77, 0x6e, 0x67, 0x5f, 0x59, 0x55, 0x54, 0x51, 0x47, 0x35, 0x2f, 0x36, 0x34, 0x2e, 0x31, 0x3c, 0x42, 0x4c, 0x5d, 0x69, 0x63, 0x52, 0x45, 0x40, 0x46, 0x44, 0x37, 0x2d, 0x2f, 0x39, 0x40, 0x43, 0x3e, 0x3b, 0x39, 0x38, 0x37, 0x38, 0x3b, 0x3e, 0x40, 0x43, 0x43, 0x40, 0x3c, 0x39, 0x38, 0x3b, 0x41, 0x48, 0x4b, 0x50, 0x55, 0x56, 0x55, 0x46, 0x44, 0x42, 0x3e, 0x3e, 0x43, 0x4d, 0x54, 0x4e, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x50, 0x4d, 0x4b, 0x49, 0x48, 0x47, 0x47, 0x46, 0x45, 0x4b, 0x47, 0x44, 0x42, 0x43, 0x45, 0x49, 0x4b, 0x4e, 0x4f, 0x50, 0x4d, 0x48, 0x44, 0x42, 0x42, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4d, 0x51, 0x53, 0x50, 0x4d, 0x4a, 0x47, 0x45, 0x44, 0x45, 0x46, 0x48, 0x49, 0x4c, 0x50, 0x53, 0x51, 0x4c, 0x48, 0x4f, 0x4f, 0x4e, 0x4c, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4d, 0x4d, 0x51, 0x55, 0x57, 0x59, 0x5a, 0x59, 0x56, 0x53, 0x4f, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x49, 0x48, 0x49, 0x50, 0x56, 0x57, 0x54, 0x4f, 0x4a, 0x44, 0x43, 0x46, 0x49, 0x4a, 0x4a, 0x52, 0x49, 0x3e, 0x37, 0x37, 0x3a, 0x3d, 0x3d, 0x36, 0x3f, 0x49, 0x4f, 0x4f, 0x4d, 0x4e, 0x4f, 0x4f, 0x5b, 0x5d, 0x5a, 0x57, 0x4c, 0x4a, 0x58, 0x76, 0x7a, 0x70, 0x58, 0x48, 0x47, 0x47, 0x42, 0x45, 0x44, 0x45, 0x4a, 0x50, 0x53, 0x52, 0x4f, 0x4d, 0x4f, 0x50, 0x4d, 0x49, 0x45, 0x44, 0x45, 0x4d, 0x4f, 0x50, 0x4f, 0x4d, 0x4c, 0x4d, 0x4d, 0x4a, 0x49, 0x4e, 0x56, 0x59, 0x55, 0x50, 0x4f, 0x4e, 0x51, 0x54, 0x53, 0x50, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4c, 0x4e, 0x4f, 0x4c, 0x4b, 0x4a, 0x4a, 0x4d, 0x4f, 0x50, 0x50, 0x51, 0x51, 0x4f, 0x4a, 0x48, 0x49, 0x49, 0x49, 0x48, 0x49, 0x4a, 0x4a, 0x49, 0x49, 0x4a, 0x4a, 0x42, 0x41, 0x40, 0x40, 0x42, 0x43, 0x43, 0x43, 0x45, 0x43, 0x40, 0x3e, 0x3e, 0x3f, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x46, 0x44, 0x43, 0x43, 0x43, 0x45, 0x49, 0x4b, 0x4a, 0x45, 0x41, 0x43, 0x43, 0x45, 0x44, 0x3f, 0x3e, 0x48, 0x55, 0x67, 0x72, 0x75, 0x71, 0x75, 0x77, 0x75, 0x76, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x65, 0x63, 0x5e, 0x57, 0x53, 0x52, 0x52, 0x55, 0x59, 0x5f, 0x67, 0x6e, 0x71, 0x71, 0x70, 0x67, 0x67, 0x67, 0x65, 0x63, 0x60, 0x5d, 0x5b, 0x5b, 0x58, 0x54, 0x51, 0x50, 0x51, 0x53, 0x55, 0x56, 0x53, 0x52, 0x52, 0x52, 0x50, 0x50, 0x52, 0x50, 0x4f, 0x4e, 0x4e, 0x4e, 0x50, 0x51, 0x51, 0x53, 0x54, 0x55, 0x56, 0x57, 0x5a, 0x5d, 0x60, 0x67, 0x6a, 0x6e, 0x72, 0x76, 0x7c, 0x84, 0x89, 0x8e, 0x90, 0x91, 0x92, 0x92, 0x92, 0x90, 0x8e, 0x8a, 0x84, 0x7e, 0x7d, 0x7b, 0x74, 0x6c, 0x66, 0x63, 0x5d, 0x59, 0x5c, 0x62, 0x65, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x68, 0x66, 0x65, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x63, 0x63, 0x61, 0x60, 0x5f, 0x5f, 0x5d, 0x5a, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5a, 0x57, 0x54, 0x56, 0x56, 0x55, 0x53, 0x4e, 0x4a, 0x46, 0x45, 0x41, 0x3b, 0x39, 0x3d, 0x41, 0x41, 0x42, 0x44, 0x4c, 0x57, 0x62, 0x62, 0x59, 0x51, 0x50, 0x53, 0x5e, 0x66, 0x6f, 0x74, 0x74, 0x6e, 0x61, 0x56, 0x53, 0x55, 0x57, 0x5b, 0x64, 0x6d, 0x6e, 0x69, 0x55, 0x54, 0x54, 0x55, 0x58, 0x5a, 0x59, 0x56, 0x50, 0x56, 0x60, 0x69, 0x72, 0x75, 0x71, 0x6b, 0x55, 0x4d, 0x48, 0x49, 0x4d, 0x4d, 0x4c, 0x4c, 0x45, 0x50, 0x5f, 0x6b, 0x69, 0x5d, 0x54, 0x51, 0x5c, 0x58, 0x53, 0x53, 0x5f, 0x71, 0x7f, 0x85, 0x8d, 0x8d, 0x8c, 0x8c, 0x8f, 0x92, 0x90, 0x8c, 0x82, 0x7d, 0x75, 0x6e, 0x6d, 0x70, 0x73, 0x74, 0x75, 0x7a, 0x7d, 0x7a, 0x77, 0x75, 0x75, 0x74, 0x6e, 0x6e, 0x6d, 0x65, 0x54, 0x44, 0x44, 0x4c, 0x54, 0x46, 0x3e, 0x44, 0x4f, 0x51, 0x47, 0x39, 0x29, 0x3a, 0x48, 0x55, 0x55, 0x4c, 0x2d, 0x2f, 0x41, 0x48, 0x54, 0x4b, 0x51, 0x56, 0x3c, 0x30, 0x2f, 0x3b, 0x4b, 0x55, 0x58, 0x59, 0x5f, 0x65, 0x5a, 0x52, 0x3f, 0x2f, 0x38, 0x51, 0x63, 0x65, 0x56, 0x43, 0x35, 0x3c, 0x53, 0x66, 0x69, 0x66, 0x5a, 0x5b, 0x64, 0x5d, 0x59, 0x4e, 0x60, 0x70, 0x85, 0x74, 0x6d, 0x74, 0x78, 0x78, 0x7b, 0x80, 0x7c, 0x7c, 0x73, 0x5e, 0x48, 0x40, 0x46, 0x4e, 0x4e, 0x41, 0x31, 0x30, 0x3a, 0x40, 0x41, 0x43, 0x44, 0x33, 0x2c, 0x34, 0x39, 0x36, 0x31, 0x2f, 0x43, 0x42, 0x3d, 0x36, 0x31, 0x31, 0x37, 0x3d, 0x45, 0x40, 0x3c, 0x3b, 0x3a, 0x3a, 0x3d, 0x40, 0x3e, 0x41, 0x43, 0x44, 0x43, 0x40, 0x3e, 0x3d, 0x44, 0x4f, 0x58, 0x59, 0x57, 0x54, 0x4d, 0x45, 0x4a, 0x48, 0x46, 0x43, 0x44, 0x49, 0x52, 0x59, 0x54, 0x51, 0x4f, 0x4f, 0x51, 0x51, 0x4e, 0x4b, 0x4b, 0x4f, 0x53, 0x52, 0x4d, 0x47, 0x45, 0x44, 0x49, 0x46, 0x45, 0x48, 0x4c, 0x4d, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4a, 0x48, 0x46, 0x48, 0x4b, 0x50, 0x53, 0x56, 0x56, 0x56, 0x56, 0x51, 0x4f, 0x4c, 0x49, 0x47, 0x47, 0x47, 0x48, 0x4e, 0x4f, 0x52, 0x57, 0x5a, 0x59, 0x54, 0x4f, 0x4f, 0x50, 0x4f, 0x4c, 0x4c, 0x4e, 0x4f, 0x4f, 0x4b, 0x48, 0x47, 0x4b, 0x4f, 0x50, 0x50, 0x50, 0x53, 0x53, 0x52, 0x4f, 0x4c, 0x49, 0x48, 0x48, 0x49, 0x48, 0x47, 0x4b, 0x53, 0x59, 0x58, 0x52, 0x4a, 0x46, 0x43, 0x45, 0x4b, 0x51, 0x54, 0x55, 0x59, 0x60, 0x6b, 0x74, 0x75, 0x6a, 0x58, 0x4b, 0x4a, 0x48, 0x49, 0x4d, 0x52, 0x52, 0x4e, 0x4a, 0x45, 0x51, 0x57, 0x55, 0x52, 0x4f, 0x4e, 0x51, 0x6d, 0x79, 0x79, 0x66, 0x52, 0x4a, 0x46, 0x43, 0x45, 0x44, 0x45, 0x49, 0x4f, 0x52, 0x51, 0x4f, 0x4e, 0x4e, 0x4d, 0x47, 0x42, 0x42, 0x48, 0x4d, 0x52, 0x53, 0x54, 0x52, 0x4e, 0x4c, 0x4b, 0x4c, 0x48, 0x4a, 0x4e, 0x53, 0x52, 0x4f, 0x4f, 0x51, 0x4d, 0x4f, 0x51, 0x51, 0x4e, 0x4d, 0x4c, 0x4d, 0x4d, 0x4c, 0x4a, 0x4a, 0x4a, 0x4c, 0x4e, 0x4f, 0x4b, 0x4a, 0x4a, 0x4c, 0x51, 0x55, 0x56, 0x56, 0x50, 0x50, 0x4d, 0x48, 0x47, 0x48, 0x47, 0x45, 0x48, 0x4a, 0x4b, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x44, 0x43, 0x42, 0x41, 0x42, 0x42, 0x41, 0x40, 0x46, 0x43, 0x3f, 0x3c, 0x3b, 0x3c, 0x3f, 0x41, 0x43, 0x43, 0x44, 0x44, 0x44, 0x44, 0x43, 0x43, 0x43, 0x43, 0x45, 0x4a, 0x4d, 0x4c, 0x46, 0x41, 0x42, 0x43, 0x45, 0x46, 0x42, 0x40, 0x49, 0x55, 0x66, 0x73, 0x75, 0x70, 0x72, 0x75, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x67, 0x67, 0x66, 0x66, 0x67, 0x67, 0x67, 0x66, 0x65, 0x64, 0x64, 0x65, 0x64, 0x5d, 0x50, 0x43, 0x3a, 0x36, 0x3a, 0x3d, 0x44, 0x4a, 0x50, 0x54, 0x56, 0x58, 0x59, 0x58, 0x58, 0x58, 0x57, 0x54, 0x51, 0x4e, 0x4f, 0x4c, 0x47, 0x41, 0x3c, 0x39, 0x37, 0x37, 0x3e, 0x3c, 0x3d, 0x41, 0x44, 0x46, 0x49, 0x4d, 0x4e, 0x4d, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d, 0x4c, 0x4a, 0x4b, 0x4d, 0x4e, 0x50, 0x52, 0x56, 0x58, 0x5c, 0x5f, 0x62, 0x65, 0x69, 0x6f, 0x78, 0x7e, 0x88, 0x8c, 0x8f, 0x90, 0x91, 0x91, 0x8e, 0x8b, 0x88, 0x83, 0x7f, 0x7d, 0x7a, 0x72, 0x6a, 0x65, 0x61, 0x5b, 0x58, 0x5c, 0x62, 0x66, 0x67, 0x67, 0x66, 0x67, 0x69, 0x69, 0x69, 0x68, 0x66, 0x65, 0x64, 0x62, 0x61, 0x61, 0x62, 0x63, 0x63, 0x62, 0x62, 0x60, 0x5f, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x56, 0x58, 0x5a, 0x5a, 0x59, 0x55, 0x52, 0x54, 0x54, 0x54, 0x52, 0x4f, 0x4b, 0x46, 0x43, 0x42, 0x3c, 0x38, 0x39, 0x3c, 0x3e, 0x40, 0x43, 0x46, 0x51, 0x5d, 0x62, 0x62, 0x67, 0x73, 0x7e, 0x78, 0x73, 0x68, 0x5c, 0x58, 0x5f, 0x6b, 0x73, 0x6e, 0x6d, 0x65, 0x58, 0x51, 0x54, 0x58, 0x5a, 0x59, 0x57, 0x54, 0x53, 0x56, 0x59, 0x58, 0x54, 0x4c, 0x52, 0x5c, 0x66, 0x70, 0x75, 0x72, 0x6c, 0x57, 0x50, 0x4e, 0x54, 0x5a, 0x57, 0x50, 0x4d, 0x4a, 0x56, 0x69, 0x77, 0x74, 0x64, 0x57, 0x52, 0x57, 0x57, 0x5a, 0x64, 0x75, 0x87, 0x8f, 0x90, 0x90, 0x89, 0x81, 0x7e, 0x86, 0x90, 0x95, 0x95, 0x8e, 0x89, 0x7f, 0x75, 0x70, 0x6f, 0x6c, 0x69, 0x69, 0x74, 0x7d, 0x7d, 0x78, 0x75, 0x76, 0x78, 0x74, 0x73, 0x6f, 0x63, 0x51, 0x47, 0x50, 0x5e, 0x57, 0x43, 0x3c, 0x45, 0x49, 0x48, 0x46, 0x42, 0x56, 0x50, 0x45, 0x47, 0x45, 0x3c, 0x1e, 0x23, 0x3b, 0x45, 0x4a, 0x45, 0x4b, 0x4f, 0x3f, 0x35, 0x38, 0x45, 0x53, 0x5a, 0x5b, 0x5b, 0x5c, 0x5d, 0x5c, 0x51, 0x3d, 0x32, 0x43, 0x61, 0x6e, 0x6a, 0x63, 0x48, 0x34, 0x40, 0x5a, 0x67, 0x5e, 0x51, 0x56, 0x5b, 0x67, 0x62, 0x5f, 0x54, 0x63, 0x70, 0x7f, 0x78, 0x7a, 0x78, 0x67, 0x5b, 0x60, 0x66, 0x76, 0x75, 0x69, 0x51, 0x3c, 0x39, 0x43, 0x4b, 0x43, 0x3d, 0x37, 0x36, 0x3a, 0x45, 0x55, 0x61, 0x45, 0x30, 0x24, 0x22, 0x1f, 0x26, 0x3a, 0x49, 0x41, 0x3a, 0x35, 0x36, 0x36, 0x36, 0x3b, 0x42, 0x4b, 0x47, 0x44, 0x42, 0x40, 0x3e, 0x3e, 0x40, 0x3e, 0x3f, 0x41, 0x42, 0x42, 0x41, 0x3e, 0x3c, 0x3d, 0x4a, 0x54, 0x55, 0x53, 0x53, 0x4f, 0x48, 0x45, 0x45, 0x44, 0x43, 0x43, 0x46, 0x4b, 0x4f, 0x56, 0x53, 0x50, 0x4f, 0x4f, 0x4d, 0x49, 0x45, 0x4a, 0x50, 0x55, 0x55, 0x50, 0x4c, 0x4c, 0x4d, 0x4f, 0x49, 0x46, 0x4a, 0x4f, 0x50, 0x4f, 0x4f, 0x4a, 0x48, 0x48, 0x4a, 0x4e, 0x51, 0x4f, 0x4e, 0x4c, 0x51, 0x57, 0x59, 0x57, 0x54, 0x54, 0x55, 0x52, 0x51, 0x4e, 0x4c, 0x4a, 0x48, 0x48, 0x48, 0x47, 0x49, 0x4d, 0x50, 0x50, 0x4f, 0x4c, 0x4a, 0x4d, 0x4e, 0x4d, 0x4a, 0x4b, 0x4f, 0x51, 0x4f, 0x4d, 0x4a, 0x4b, 0x52, 0x59, 0x59, 0x56, 0x55, 0x50, 0x53, 0x55, 0x53, 0x4d, 0x48, 0x46, 0x47, 0x48, 0x47, 0x47, 0x4c, 0x54, 0x59, 0x54, 0x4c, 0x47, 0x45, 0x44, 0x47, 0x4e, 0x53, 0x55, 0x55, 0x69, 0x66, 0x61, 0x5d, 0x5c, 0x5c, 0x5e, 0x5f, 0x57, 0x56, 0x56, 0x57, 0x57, 0x55, 0x50, 0x4c, 0x53, 0x51, 0x52, 0x50, 0x4b, 0x4d, 0x53, 0x52, 0x61, 0x6e, 0x74, 0x67, 0x55, 0x4b, 0x49, 0x47, 0x46, 0x45, 0x44, 0x47, 0x4c, 0x50, 0x52, 0x52, 0x55, 0x53, 0x4f, 0x49, 0x45, 0x45, 0x4b, 0x51, 0x54, 0x55, 0x55, 0x52, 0x4e, 0x4b, 0x4b, 0x4d, 0x4e, 0x4f, 0x51, 0x52, 0x51, 0x50, 0x52, 0x55, 0x4f, 0x50, 0x51, 0x51, 0x50, 0x50, 0x50, 0x51, 0x52, 0x50, 0x4d, 0x4a, 0x49, 0x4a, 0x4b, 0x4c, 0x4c, 0x4b, 0x4b, 0x4f, 0x54, 0x58, 0x59, 0x58, 0x50, 0x50, 0x4f, 0x4e, 0x4e, 0x4f, 0x4c, 0x47, 0x4b, 0x4d, 0x4f, 0x4f, 0x4d, 0x4a, 0x49, 0x48, 0x47, 0x46, 0x44, 0x43, 0x42, 0x42, 0x40, 0x3f, 0x42, 0x41, 0x3e, 0x3c, 0x3c, 0x3d, 0x40, 0x41, 0x44, 0x44, 0x44, 0x44, 0x44, 0x45, 0x46, 0x48, 0x48, 0x46, 0x46, 0x49, 0x4c, 0x4c, 0x48, 0x43, 0x46, 0x46, 0x49, 0x4b, 0x47, 0x44, 0x4b, 0x56, 0x61, 0x71, 0x75, 0x71, 0x73, 0x76, 0x73, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x67, 0x65, 0x65, 0x66, 0x66, 0x66, 0x66, 0x65, 0x64, 0x64, 0x64, 0x61, 0x55, 0x44, 0x32, 0x27, 0x22, 0x24, 0x26, 0x27, 0x27, 0x27, 0x2a, 0x2e, 0x32, 0x34, 0x34, 0x34, 0x36, 0x36, 0x35, 0x32, 0x2f, 0x2b, 0x2c, 0x2f, 0x31, 0x31, 0x31, 0x2f, 0x2e, 0x2b, 0x2b, 0x2e, 0x34, 0x38, 0x3b, 0x3e, 0x42, 0x43, 0x44, 0x45, 0x47, 0x4a, 0x4a, 0x48, 0x46, 0x4a, 0x4b, 0x4c, 0x4d, 0x4d, 0x4f, 0x51, 0x53, 0x4f, 0x52, 0x55, 0x58, 0x5b, 0x61, 0x68, 0x6d, 0x78, 0x7e, 0x84, 0x88, 0x8b, 0x8d, 0x8b, 0x87, 0x86, 0x81, 0x7d, 0x7a, 0x75, 0x6d, 0x67, 0x65, 0x5f, 0x59, 0x58, 0x5d, 0x64, 0x67, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x68, 0x66, 0x65, 0x64, 0x63, 0x62, 0x60, 0x60, 0x61, 0x63, 0x63, 0x62, 0x60, 0x5f, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x55, 0x55, 0x56, 0x58, 0x5a, 0x5c, 0x5b, 0x58, 0x56, 0x55, 0x54, 0x52, 0x51, 0x50, 0x4d, 0x48, 0x45, 0x3f, 0x3b, 0x38, 0x39, 0x3a, 0x3c, 0x3f, 0x41, 0x48, 0x52, 0x5b, 0x5d, 0x5b, 0x5e, 0x69, 0x74, 0x75, 0x78, 0x76, 0x6c, 0x65, 0x6b, 0x7a, 0x86, 0x7d, 0x7f, 0x7b, 0x73, 0x6e, 0x6d, 0x6c, 0x68, 0x5e, 0x5a, 0x54, 0x52, 0x56, 0x5b, 0x59, 0x53, 0x49, 0x4f, 0x57, 0x62, 0x6c, 0x72, 0x6f, 0x69, 0x55, 0x4c, 0x4a, 0x53, 0x5a, 0x56, 0x4d, 0x48, 0x4a, 0x4e, 0x58, 0x61, 0x5e, 0x53, 0x4e, 0x4f, 0x4e, 0x54, 0x5d, 0x66, 0x71, 0x7a, 0x7e, 0x7e, 0x81, 0x7c, 0x75, 0x70, 0x75, 0x81, 0x8c, 0x92, 0x8e, 0x8e, 0x8b, 0x85, 0x7f, 0x78, 0x6c, 0x61, 0x5b, 0x69, 0x78, 0x7d, 0x7b, 0x78, 0x78, 0x78, 0x75, 0x74, 0x6f, 0x64, 0x57, 0x51, 0x54, 0x5b, 0x49, 0x33, 0x34, 0x44, 0x46, 0x45, 0x4f, 0x59, 0x55, 0x49, 0x40, 0x4e, 0x56, 0x4f, 0x2d, 0x31, 0x45, 0x50, 0x4b, 0x4b, 0x53, 0x55, 0x50, 0x45, 0x3d, 0x4c, 0x5a, 0x5d, 0x5b, 0x59, 0x57, 0x55, 0x48, 0x3f, 0x31, 0x31, 0x4d, 0x70, 0x7a, 0x6f, 0x65, 0x4c, 0x3b, 0x45, 0x57, 0x59, 0x4a, 0x3b, 0x4f, 0x50, 0x53, 0x40, 0x36, 0x32, 0x53, 0x6e, 0x83, 0x81, 0x7f, 0x6c, 0x56, 0x59, 0x6b, 0x71, 0x70, 0x66, 0x53, 0x42, 0x40, 0x48, 0x4d, 0x4a, 0x42, 0x3f, 0x3e, 0x3a, 0x32, 0x35, 0x43, 0x4e, 0x5c, 0x50, 0x46, 0x38, 0x29, 0x2d, 0x3d, 0x41, 0x3e, 0x33, 0x30, 0x36, 0x3b, 0x3b, 0x41, 0x4b, 0x52, 0x4f, 0x4c, 0x4a, 0x46, 0x40, 0x3d, 0x3c, 0x3e, 0x3e, 0x3f, 0x40, 0x40, 0x3e, 0x3a, 0x37, 0x49, 0x52, 0x56, 0x51, 0x4d, 0x4f, 0x4e, 0x4b, 0x4d, 0x4e, 0x4f, 0x4e, 0x4d, 0x4e, 0x50, 0x52, 0x4d, 0x4d, 0x4c, 0x4c, 0x4c, 0x4b, 0x49, 0x48, 0x49, 0x4d, 0x50, 0x50, 0x4e, 0x4f, 0x55, 0x5a, 0x59, 0x4e, 0x45, 0x47, 0x4b, 0x4d, 0x4d, 0x4d, 0x4f, 0x4b, 0x49, 0x4c, 0x51, 0x54, 0x52, 0x4f, 0x51, 0x56, 0x5a, 0x57, 0x50, 0x4d, 0x4f, 0x54, 0x53, 0x52, 0x50, 0x4d, 0x4b, 0x49, 0x48, 0x47, 0x47, 0x4a, 0x4e, 0x4f, 0x4c, 0x49, 0x49, 0x4b, 0x4a, 0x4b, 0x4a, 0x47, 0x48, 0x4d, 0x4e, 0x4b, 0x4c, 0x48, 0x4a, 0x53, 0x5a, 0x59, 0x53, 0x4f, 0x4f, 0x54, 0x58, 0x55, 0x4d, 0x46, 0x44, 0x44, 0x4c, 0x4b, 0x4b, 0x50, 0x57, 0x5a, 0x53, 0x4a, 0x4f, 0x4c, 0x49, 0x4a, 0x4c, 0x4c, 0x49, 0x45, 0x38, 0x3e, 0x46, 0x4e, 0x53, 0x57, 0x5a, 0x5c, 0x51, 0x5b, 0x65, 0x65, 0x5c, 0x54, 0x53, 0x55, 0x54, 0x4c, 0x50, 0x54, 0x4e, 0x4e, 0x53, 0x4f, 0x54, 0x5e, 0x63, 0x5b, 0x4d, 0x47, 0x48, 0x4a, 0x4b, 0x49, 0x47, 0x49, 0x4d, 0x52, 0x57, 0x5a, 0x5e, 0x5b, 0x56, 0x51, 0x4c, 0x4a, 0x4b, 0x4d, 0x52, 0x54, 0x53, 0x50, 0x4b, 0x49, 0x4a, 0x4c, 0x50, 0x51, 0x53, 0x54, 0x53, 0x52, 0x52, 0x53, 0x53, 0x53, 0x52, 0x53, 0x53, 0x54, 0x55, 0x55, 0x59, 0x56, 0x51, 0x4c, 0x49, 0x48, 0x48, 0x48, 0x4a, 0x49, 0x49, 0x4d, 0x53, 0x56, 0x56, 0x55, 0x52, 0x53, 0x54, 0x56, 0x58, 0x58, 0x53, 0x4c, 0x4f, 0x51, 0x53, 0x52, 0x50, 0x4c, 0x49, 0x47, 0x48, 0x46, 0x45, 0x44, 0x43, 0x43, 0x41, 0x40, 0x3f, 0x3e, 0x3e, 0x3e, 0x3e, 0x40, 0x42, 0x43, 0x42, 0x42, 0x42, 0x41, 0x42, 0x44, 0x47, 0x49, 0x4a, 0x47, 0x44, 0x45, 0x49, 0x49, 0x46, 0x42, 0x48, 0x48, 0x4b, 0x4c, 0x47, 0x43, 0x48, 0x52, 0x5c, 0x6d, 0x75, 0x72, 0x75, 0x78, 0x75, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x65, 0x65, 0x66, 0x67, 0x66, 0x66, 0x65, 0x65, 0x61, 0x5f, 0x59, 0x4d, 0x3d, 0x30, 0x29, 0x28, 0x27, 0x25, 0x20, 0x19, 0x14, 0x14, 0x19, 0x1e, 0x20, 0x20, 0x21, 0x23, 0x25, 0x24, 0x21, 0x1e, 0x24, 0x28, 0x2e, 0x34, 0x36, 0x35, 0x32, 0x2f, 0x34, 0x34, 0x35, 0x38, 0x39, 0x37, 0x37, 0x38, 0x36, 0x38, 0x3b, 0x3f, 0x43, 0x45, 0x43, 0x40, 0x40, 0x40, 0x40, 0x40, 0x3f, 0x3e, 0x3f, 0x41, 0x44, 0x47, 0x4c, 0x4f, 0x51, 0x55, 0x5a, 0x5e, 0x64, 0x6c, 0x75, 0x7b, 0x81, 0x86, 0x85, 0x81, 0x85, 0x80, 0x7b, 0x77, 0x71, 0x69, 0x65, 0x64, 0x5d, 0x58, 0x57, 0x5e, 0x65, 0x68, 0x67, 0x65, 0x67, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x63, 0x64, 0x61, 0x5f, 0x5f, 0x61, 0x63, 0x63, 0x62, 0x60, 0x5e, 0x5c, 0x5a, 0x59, 0x58, 0x56, 0x54, 0x55, 0x56, 0x59, 0x5c, 0x5e, 0x5e, 0x5c, 0x5a, 0x59, 0x55, 0x50, 0x4e, 0x4e, 0x4d, 0x4b, 0x48, 0x3b, 0x3a, 0x39, 0x39, 0x39, 0x3a, 0x3d, 0x40, 0x43, 0x53, 0x63, 0x67, 0x5c, 0x4e, 0x45, 0x43, 0x5c, 0x65, 0x6a, 0x62, 0x59, 0x5b, 0x69, 0x75, 0x79, 0x78, 0x76, 0x77, 0x7d, 0x80, 0x77, 0x6a, 0x61, 0x5c, 0x55, 0x52, 0x56, 0x5c, 0x5a, 0x53, 0x48, 0x4d, 0x54, 0x5e, 0x68, 0x6d, 0x6a, 0x63, 0x58, 0x4e, 0x49, 0x52, 0x5a, 0x58, 0x51, 0x4d, 0x4a, 0x4b, 0x51, 0x58, 0x56, 0x4f, 0x4d, 0x52, 0x5a, 0x5f, 0x62, 0x61, 0x64, 0x6d, 0x79, 0x81, 0x7e, 0x7a, 0x6f, 0x63, 0x61, 0x6d, 0x81, 0x8e, 0x93, 0x93, 0x8f, 0x88, 0x81, 0x79, 0x6c, 0x5f, 0x4e, 0x5d, 0x6f, 0x78, 0x79, 0x78, 0x75, 0x73, 0x74, 0x73, 0x70, 0x68, 0x5f, 0x56, 0x4e, 0x48, 0x49, 0x31, 0x33, 0x44, 0x3f, 0x38, 0x46, 0x56, 0x4f, 0x3e, 0x31, 0x3f, 0x49, 0x46, 0x2f, 0x3c, 0x4d, 0x58, 0x4a, 0x4c, 0x52, 0x4e, 0x4c, 0x3a, 0x3a, 0x4b, 0x5c, 0x60, 0x5f, 0x5e, 0x5d, 0x5b, 0x5d, 0x53, 0x43, 0x41, 0x5b, 0x77, 0x76, 0x62, 0x5a, 0x49, 0x3f, 0x44, 0x4a, 0x43, 0x37, 0x31, 0x23, 0x43, 0x66, 0x59, 0x3f, 0x2c, 0x4d, 0x70, 0x7b, 0x70, 0x59, 0x38, 0x2d, 0x52, 0x7d, 0x88, 0x77, 0x62, 0x45, 0x39, 0x44, 0x52, 0x4c, 0x3b, 0x37, 0x37, 0x3f, 0x46, 0x45, 0x4a, 0x54, 0x59, 0x63, 0x5e, 0x58, 0x47, 0x38, 0x40, 0x44, 0x36, 0x3d, 0x38, 0x36, 0x3b, 0x41, 0x43, 0x44, 0x47, 0x40, 0x44, 0x47, 0x47, 0x43, 0x40, 0x3f, 0x40, 0x45, 0x46, 0x46, 0x43, 0x40, 0x3d, 0x3d, 0x3d, 0x45, 0x42, 0x44, 0x49, 0x4c, 0x49, 0x46, 0x46, 0x46, 0x4b, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4c, 0x48, 0x4b, 0x4f, 0x50, 0x4f, 0x4c, 0x4b, 0x4a, 0x4e, 0x4d, 0x4d, 0x4d, 0x4f, 0x51, 0x54, 0x55, 0x50, 0x4e, 0x4f, 0x54, 0x56, 0x52, 0x4f, 0x4f, 0x4e, 0x4b, 0x4b, 0x4f, 0x52, 0x4f, 0x4b, 0x48, 0x49, 0x50, 0x59, 0x5b, 0x53, 0x4c, 0x50, 0x58, 0x5c, 0x53, 0x4b, 0x49, 0x4a, 0x4a, 0x4b, 0x4b, 0x4f, 0x4f, 0x4f, 0x4e, 0x4b, 0x46, 0x45, 0x46, 0x44, 0x47, 0x48, 0x46, 0x46, 0x49, 0x4c, 0x4d, 0x48, 0x46, 0x46, 0x4a, 0x4f, 0x53, 0x53, 0x51, 0x51, 0x52, 0x56, 0x58, 0x52, 0x4a, 0x47, 0x49, 0x4d, 0x4e, 0x51, 0x55, 0x56, 0x52, 0x4b, 0x46, 0x4f, 0x49, 0x49, 0x50, 0x51, 0x4c, 0x49, 0x4a, 0x40, 0x47, 0x45, 0x42, 0x4a, 0x4f, 0x4b, 0x48, 0x47, 0x48, 0x4b, 0x50, 0x57, 0x5b, 0x59, 0x54, 0x54, 0x50, 0x4a, 0x47, 0x48, 0x4c, 0x50, 0x52, 0x4a, 0x47, 0x47, 0x4b, 0x4e, 0x4c, 0x49, 0x49, 0x48, 0x48, 0x49, 0x49, 0x4a, 0x4c, 0x50, 0x53, 0x59, 0x5b, 0x59, 0x52, 0x4f, 0x51, 0x50, 0x4c, 0x51, 0x52, 0x53, 0x52, 0x50, 0x4d, 0x4b, 0x4a, 0x54, 0x51, 0x4e, 0x4d, 0x4e, 0x4f, 0x55, 0x5a, 0x57, 0x50, 0x4d, 0x52, 0x54, 0x52, 0x51, 0x53, 0x50, 0x50, 0x50, 0x51, 0x52, 0x53, 0x52, 0x52, 0x52, 0x51, 0x4f, 0x4e, 0x4d, 0x4f, 0x53, 0x56, 0x54, 0x52, 0x53, 0x56, 0x56, 0x52, 0x51, 0x52, 0x52, 0x54, 0x55, 0x51, 0x4c, 0x49, 0x49, 0x4b, 0x4e, 0x48, 0x42, 0x3f, 0x3f, 0x40, 0x3e, 0x3b, 0x42, 0x42, 0x40, 0x3d, 0x3e, 0x40, 0x40, 0x3e, 0x40, 0x41, 0x42, 0x40, 0x3f, 0x41, 0x46, 0x4b, 0x4d, 0x47, 0x45, 0x48, 0x48, 0x44, 0x44, 0x48, 0x4d, 0x4d, 0x4a, 0x46, 0x45, 0x4a, 0x4d, 0x4d, 0x58, 0x68, 0x75, 0x75, 0x73, 0x76, 0x77, 0x74, 0x72, 0x74, 0x72, 0x6f, 0x6f, 0x71, 0x6f, 0x6b, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x69, 0x67, 0x66, 0x66, 0x66, 0x66, 0x65, 0x64, 0x60, 0x5d, 0x53, 0x43, 0x38, 0x33, 0x30, 0x2c, 0x2d, 0x28, 0x26, 0x26, 0x20, 0x18, 0x17, 0x1d, 0x1a, 0x1e, 0x20, 0x21, 0x24, 0x27, 0x26, 0x22, 0x27, 0x2d, 0x37, 0x3d, 0x3f, 0x3c, 0x37, 0x34, 0x38, 0x3d, 0x41, 0x45, 0x47, 0x46, 0x40, 0x3a, 0x35, 0x36, 0x39, 0x3c, 0x3a, 0x35, 0x34, 0x35, 0x36, 0x35, 0x35, 0x36, 0x33, 0x2e, 0x2d, 0x30, 0x34, 0x3c, 0x43, 0x45, 0x48, 0x4e, 0x53, 0x54, 0x5c, 0x5e, 0x64, 0x6c, 0x75, 0x7a, 0x7b, 0x7b, 0x7f, 0x7a, 0x7a, 0x7a, 0x71, 0x63, 0x62, 0x6a, 0x65, 0x5c, 0x57, 0x5d, 0x65, 0x68, 0x67, 0x67, 0x63, 0x64, 0x65, 0x64, 0x62, 0x60, 0x61, 0x62, 0x62, 0x62, 0x62, 0x63, 0x63, 0x63, 0x60, 0x5e, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x55, 0x54, 0x53, 0x55, 0x54, 0x56, 0x5b, 0x61, 0x66, 0x6b, 0x6e, 0x69, 0x6d, 0x6e, 0x69, 0x67, 0x67, 0x61, 0x59, 0x46, 0x40, 0x3b, 0x3a, 0x3d, 0x3f, 0x3e, 0x3b, 0x49, 0x59, 0x64, 0x5f, 0x54, 0x4e, 0x4e, 0x4d, 0x4b, 0x4b, 0x47, 0x49, 0x5a, 0x70, 0x79, 0x74, 0x77, 0x7b, 0x7b, 0x7a, 0x80, 0x83, 0x78, 0x67, 0x56, 0x56, 0x55, 0x55, 0x58, 0x5b, 0x5a, 0x56, 0x49, 0x4a, 0x50, 0x5c, 0x66, 0x67, 0x64, 0x61, 0x54, 0x50, 0x4f, 0x57, 0x61, 0x62, 0x57, 0x4b, 0x4b, 0x49, 0x4b, 0x51, 0x55, 0x53, 0x4e, 0x4b, 0x4c, 0x54, 0x58, 0x57, 0x58, 0x61, 0x6c, 0x72, 0x75, 0x73, 0x6c, 0x60, 0x5b, 0x62, 0x71, 0x7d, 0x8b, 0x8e, 0x8f, 0x8d, 0x89, 0x82, 0x78, 0x6f, 0x57, 0x5b, 0x64, 0x6e, 0x75, 0x77, 0x74, 0x71, 0x70, 0x73, 0x72, 0x6a, 0x61, 0x5a, 0x56, 0x53, 0x44, 0x42, 0x3f, 0x37, 0x31, 0x3c, 0x4e, 0x55, 0x44, 0x35, 0x2e, 0x35, 0x3e, 0x3f, 0x3c, 0x3c, 0x4b, 0x4d, 0x44, 0x40, 0x4e, 0x59, 0x52, 0x47, 0x3d, 0x49, 0x55, 0x5a, 0x5a, 0x5a, 0x58, 0x54, 0x4f, 0x3e, 0x3b, 0x4a, 0x5c, 0x69, 0x6b, 0x63, 0x52, 0x3d, 0x38, 0x4d, 0x67, 0x6f, 0x5a, 0x3d, 0x32, 0x36, 0x3f, 0x34, 0x33, 0x37, 0x5c, 0x78, 0x87, 0x7c, 0x5e, 0x3c, 0x3c, 0x65, 0x84, 0x84, 0x71, 0x50, 0x3c, 0x3b, 0x4a, 0x50, 0x40, 0x38, 0x37, 0x31, 0x35, 0x3d, 0x44, 0x52, 0x62, 0x69, 0x6f, 0x67, 0x57, 0x48, 0x45, 0x49, 0x45, 0x3d, 0x41, 0x3a, 0x36, 0x38, 0x3b, 0x3c, 0x3e, 0x40, 0x3a, 0x3e, 0x42, 0x42, 0x3f, 0x3d, 0x3f, 0x42, 0x47, 0x49, 0x4b, 0x4b, 0x49, 0x48, 0x48, 0x48, 0x48, 0x46, 0x48, 0x4c, 0x4d, 0x49, 0x46, 0x46, 0x45, 0x49, 0x4b, 0x48, 0x45, 0x45, 0x45, 0x44, 0x43, 0x46, 0x49, 0x49, 0x47, 0x47, 0x4a, 0x4d, 0x48, 0x43, 0x3e, 0x3f, 0x47, 0x4f, 0x53, 0x54, 0x53, 0x50, 0x50, 0x56, 0x59, 0x57, 0x54, 0x53, 0x49, 0x45, 0x44, 0x48, 0x4d, 0x4d, 0x4b, 0x4a, 0x51, 0x56, 0x5c, 0x5b, 0x54, 0x4e, 0x54, 0x5d, 0x69, 0x5e, 0x51, 0x4b, 0x49, 0x4a, 0x4d, 0x51, 0x54, 0x54, 0x53, 0x50, 0x4c, 0x47, 0x45, 0x45, 0x4b, 0x4c, 0x4b, 0x47, 0x47, 0x4a, 0x4b, 0x4b, 0x45, 0x44, 0x44, 0x49, 0x4e, 0x51, 0x50, 0x4e, 0x4e, 0x50, 0x53, 0x56, 0x52, 0x4a, 0x47, 0x48, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4c, 0x4a, 0x49, 0x48, 0x43, 0x43, 0x4b, 0x50, 0x50, 0x51, 0x55, 0x68, 0x71, 0x70, 0x6a, 0x68, 0x62, 0x55, 0x4d, 0x3c, 0x3d, 0x3c, 0x3a, 0x3c, 0x42, 0x47, 0x49, 0x4b, 0x49, 0x48, 0x47, 0x49, 0x4c, 0x4f, 0x50, 0x45, 0x42, 0x43, 0x48, 0x4b, 0x48, 0x46, 0x45, 0x49, 0x4b, 0x4e, 0x4f, 0x50, 0x51, 0x53, 0x54, 0x53, 0x54, 0x54, 0x51, 0x51, 0x52, 0x54, 0x53, 0x4f, 0x50, 0x51, 0x51, 0x50, 0x50, 0x52, 0x54, 0x59, 0x55, 0x52, 0x50, 0x4f, 0x4f, 0x54, 0x5a, 0x5a, 0x55, 0x50, 0x50, 0x51, 0x4f, 0x4d, 0x4c, 0x4f, 0x4c, 0x4a, 0x4b, 0x4f, 0x53, 0x53, 0x52, 0x4f, 0x4f, 0x4e, 0x4d, 0x4d, 0x4d, 0x50, 0x52, 0x50, 0x4e, 0x50, 0x53, 0x53, 0x50, 0x50, 0x52, 0x54, 0x55, 0x55, 0x52, 0x4e, 0x4c, 0x4d, 0x4e, 0x4f, 0x4a, 0x43, 0x40, 0x40, 0x41, 0x40, 0x3e, 0x3d, 0x40, 0x42, 0x43, 0x44, 0x44, 0x42, 0x3f, 0x42, 0x44, 0x45, 0x44, 0x41, 0x3f, 0x40, 0x42, 0x4a, 0x47, 0x45, 0x46, 0x47, 0x48, 0x4b, 0x4f, 0x53, 0x51, 0x4e, 0x4a, 0x46, 0x45, 0x49, 0x4d, 0x55, 0x63, 0x70, 0x75, 0x76, 0x78, 0x77, 0x75, 0x73, 0x74, 0x73, 0x70, 0x70, 0x71, 0x70, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x69, 0x68, 0x67, 0x67, 0x67, 0x66, 0x65, 0x64, 0x5e, 0x5a, 0x51, 0x44, 0x3d, 0x3a, 0x38, 0x35, 0x30, 0x2c, 0x2a, 0x28, 0x21, 0x18, 0x19, 0x1e, 0x20, 0x23, 0x25, 0x25, 0x26, 0x29, 0x28, 0x25, 0x27, 0x2c, 0x35, 0x3b, 0x3e, 0x3d, 0x3c, 0x3a, 0x44, 0x4a, 0x4f, 0x51, 0x51, 0x50, 0x4c, 0x48, 0x41, 0x3d, 0x3a, 0x3a, 0x3a, 0x3a, 0x3d, 0x42, 0x40, 0x3d, 0x3a, 0x39, 0x36, 0x31, 0x2f, 0x30, 0x2e, 0x33, 0x36, 0x35, 0x37, 0x3e, 0x46, 0x4a, 0x4e, 0x53, 0x5a, 0x60, 0x66, 0x6d, 0x74, 0x79, 0x76, 0x73, 0x72, 0x71, 0x6b, 0x64, 0x65, 0x6c, 0x62, 0x5b, 0x58, 0x5e, 0x66, 0x6a, 0x69, 0x69, 0x64, 0x65, 0x65, 0x63, 0x60, 0x5f, 0x5f, 0x60, 0x60, 0x5f, 0x5f, 0x5f, 0x60, 0x60, 0x5e, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x57, 0x55, 0x54, 0x53, 0x55, 0x55, 0x57, 0x5a, 0x5d, 0x60, 0x63, 0x65, 0x71, 0x73, 0x74, 0x73, 0x74, 0x74, 0x70, 0x6c, 0x61, 0x55, 0x46, 0x3c, 0x3b, 0x3e, 0x40, 0x40, 0x43, 0x4f, 0x5a, 0x5c, 0x57, 0x52, 0x51, 0x52, 0x45, 0x45, 0x49, 0x54, 0x64, 0x71, 0x76, 0x76, 0x70, 0x71, 0x6c, 0x67, 0x6a, 0x73, 0x72, 0x6a, 0x5a, 0x5a, 0x58, 0x56, 0x57, 0x59, 0x58, 0x54, 0x45, 0x45, 0x4a, 0x55, 0x5e, 0x60, 0x5e, 0x5d, 0x55, 0x50, 0x4f, 0x56, 0x5d, 0x5b, 0x50, 0x47, 0x47, 0x49, 0x4f, 0x58, 0x5b, 0x54, 0x49, 0x42, 0x47, 0x4e, 0x52, 0x51, 0x52, 0x59, 0x64, 0x6a, 0x6e, 0x6d, 0x67, 0x5d, 0x58, 0x5d, 0x68, 0x6f, 0x7b, 0x83, 0x8b, 0x8e, 0x8c, 0x88, 0x82, 0x7c, 0x6d, 0x64, 0x5e, 0x63, 0x70, 0x79, 0x76, 0x71, 0x71, 0x72, 0x6f, 0x68, 0x61, 0x5d, 0x5a, 0x57, 0x50, 0x41, 0x36, 0x35, 0x3d, 0x4e, 0x55, 0x4f, 0x43, 0x3a, 0x39, 0x45, 0x50, 0x50, 0x4d, 0x4c, 0x4f, 0x4f, 0x48, 0x47, 0x51, 0x51, 0x42, 0x35, 0x34, 0x4f, 0x62, 0x5f, 0x59, 0x59, 0x54, 0x49, 0x50, 0x44, 0x45, 0x57, 0x65, 0x69, 0x5e, 0x4d, 0x3d, 0x34, 0x35, 0x40, 0x4f, 0x5c, 0x5c, 0x50, 0x40, 0x42, 0x4b, 0x45, 0x49, 0x4a, 0x63, 0x76, 0x7d, 0x5a, 0x41, 0x4b, 0x69, 0x82, 0x84, 0x76, 0x58, 0x3a, 0x27, 0x1f, 0x1e, 0x1c, 0x11, 0x15, 0x16, 0x27, 0x3f, 0x47, 0x41, 0x44, 0x50, 0x57, 0x60, 0x52, 0x41, 0x3d, 0x49, 0x55, 0x50, 0x42, 0x42, 0x3c, 0x35, 0x34, 0x35, 0x36, 0x39, 0x3b, 0x3a, 0x3e, 0x42, 0x42, 0x3f, 0x40, 0x46, 0x4b, 0x4f, 0x51, 0x53, 0x53, 0x51, 0x4e, 0x4b, 0x4a, 0x48, 0x48, 0x4a, 0x4d, 0x4b, 0x47, 0x45, 0x46, 0x4d, 0x51, 0x51, 0x4c, 0x47, 0x46, 0x48, 0x4a, 0x46, 0x47, 0x47, 0x45, 0x43, 0x45, 0x49, 0x4e, 0x48, 0x40, 0x39, 0x3e, 0x4b, 0x57, 0x5a, 0x58, 0x56, 0x54, 0x53, 0x57, 0x5b, 0x5a, 0x58, 0x57, 0x4f, 0x48, 0x43, 0x45, 0x4a, 0x4b, 0x4a, 0x49, 0x50, 0x52, 0x54, 0x51, 0x4a, 0x47, 0x4e, 0x57, 0x62, 0x59, 0x4f, 0x49, 0x47, 0x49, 0x4f, 0x56, 0x57, 0x57, 0x55, 0x51, 0x4c, 0x49, 0x47, 0x46, 0x4d, 0x4c, 0x49, 0x47, 0x49, 0x4d, 0x4e, 0x4c, 0x47, 0x46, 0x47, 0x4b, 0x50, 0x52, 0x50, 0x4d, 0x4c, 0x4d, 0x50, 0x52, 0x50, 0x4a, 0x47, 0x48, 0x4f, 0x4f, 0x4e, 0x4c, 0x4a, 0x49, 0x49, 0x4a, 0x4c, 0x48, 0x49, 0x4f, 0x52, 0x51, 0x4f, 0x51, 0x53, 0x5d, 0x5e, 0x5b, 0x5e, 0x60, 0x5e, 0x60, 0x71, 0x6b, 0x5e, 0x50, 0x47, 0x42, 0x3e, 0x3b, 0x48, 0x49, 0x4a, 0x4b, 0x4a, 0x4a, 0x4a, 0x4b, 0x44, 0x44, 0x45, 0x49, 0x4a, 0x48, 0x45, 0x44, 0x48, 0x4b, 0x4f, 0x52, 0x53, 0x53, 0x52, 0x53, 0x52, 0x52, 0x54, 0x56, 0x55, 0x53, 0x52, 0x54, 0x50, 0x52, 0x53, 0x52, 0x51, 0x53, 0x58, 0x5c, 0x5b, 0x58, 0x55, 0x52, 0x4e, 0x4d, 0x51, 0x57, 0x57, 0x55, 0x52, 0x4f, 0x4f, 0x51, 0x50, 0x4d, 0x4e, 0x49, 0x45, 0x46, 0x4c, 0x52, 0x52, 0x51, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4d, 0x4e, 0x4f, 0x4c, 0x4b, 0x4c, 0x4f, 0x50, 0x4f, 0x4f, 0x51, 0x56, 0x56, 0x55, 0x53, 0x52, 0x50, 0x50, 0x4f, 0x51, 0x4c, 0x45, 0x3f, 0x3d, 0x3d, 0x3c, 0x3b, 0x39, 0x40, 0x47, 0x4a, 0x4b, 0x4a, 0x46, 0x42, 0x43, 0x46, 0x4a, 0x4b, 0x48, 0x44, 0x42, 0x42, 0x45, 0x48, 0x48, 0x47, 0x46, 0x4a, 0x4d, 0x4f, 0x54, 0x51, 0x50, 0x4e, 0x48, 0x44, 0x47, 0x4f, 0x52, 0x5b, 0x67, 0x72, 0x78, 0x79, 0x77, 0x75, 0x74, 0x75, 0x73, 0x71, 0x71, 0x72, 0x70, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x65, 0x64, 0x5b, 0x57, 0x4e, 0x46, 0x43, 0x43, 0x42, 0x40, 0x37, 0x34, 0x31, 0x2e, 0x26, 0x1d, 0x1c, 0x20, 0x1f, 0x23, 0x26, 0x27, 0x29, 0x2d, 0x2e, 0x2d, 0x2c, 0x30, 0x34, 0x38, 0x3b, 0x3c, 0x3d, 0x3e, 0x4a, 0x53, 0x5a, 0x5b, 0x58, 0x56, 0x54, 0x53, 0x4e, 0x47, 0x40, 0x3f, 0x41, 0x45, 0x4a, 0x4e, 0x4a, 0x46, 0x42, 0x3e, 0x39, 0x33, 0x31, 0x31, 0x35, 0x35, 0x31, 0x2a, 0x27, 0x2a, 0x2f, 0x33, 0x3f, 0x47, 0x51, 0x56, 0x59, 0x5d, 0x65, 0x6c, 0x6a, 0x6a, 0x68, 0x65, 0x63, 0x64, 0x67, 0x6a, 0x5e, 0x5b, 0x5b, 0x61, 0x68, 0x6a, 0x69, 0x68, 0x64, 0x64, 0x64, 0x62, 0x5f, 0x5e, 0x5e, 0x5e, 0x5f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c, 0x5b, 0x59, 0x59, 0x58, 0x57, 0x56, 0x55, 0x54, 0x54, 0x55, 0x57, 0x59, 0x59, 0x58, 0x57, 0x58, 0x59, 0x53, 0x52, 0x53, 0x57, 0x58, 0x56, 0x53, 0x53, 0x60, 0x5a, 0x53, 0x4f, 0x4c, 0x46, 0x3e, 0x37, 0x44, 0x4b, 0x54, 0x59, 0x55, 0x4b, 0x45, 0x43, 0x4b, 0x4b, 0x51, 0x5a, 0x5e, 0x5b, 0x5a, 0x5c, 0x66, 0x66, 0x62, 0x5f, 0x65, 0x6d, 0x6a, 0x60, 0x5a, 0x59, 0x56, 0x54, 0x55, 0x57, 0x56, 0x53, 0x47, 0x45, 0x48, 0x51, 0x59, 0x5c, 0x5d, 0x5d, 0x5c, 0x57, 0x56, 0x5b, 0x5e, 0x59, 0x53, 0x51, 0x47, 0x48, 0x4e, 0x56, 0x57, 0x50, 0x44, 0x3d, 0x42, 0x48, 0x4c, 0x4b, 0x4b, 0x51, 0x5a, 0x61, 0x65, 0x65, 0x62, 0x5b, 0x58, 0x5b, 0x5f, 0x62, 0x6a, 0x77, 0x85, 0x8d, 0x8e, 0x8c, 0x89, 0x86, 0x80, 0x71, 0x61, 0x5e, 0x67, 0x72, 0x76, 0x74, 0x71, 0x6f, 0x6b, 0x63, 0x5e, 0x5c, 0x5b, 0x59, 0x47, 0x3a, 0x34, 0x39, 0x45, 0x54, 0x58, 0x4f, 0x4b, 0x47, 0x4c, 0x59, 0x5f, 0x57, 0x4c, 0x47, 0x42, 0x46, 0x4a, 0x55, 0x63, 0x61, 0x52, 0x48, 0x3f, 0x52, 0x5f, 0x5e, 0x5a, 0x5a, 0x58, 0x52, 0x54, 0x47, 0x45, 0x53, 0x61, 0x69, 0x64, 0x57, 0x4c, 0x3f, 0x39, 0x3e, 0x4a, 0x59, 0x5c, 0x52, 0x4d, 0x48, 0x50, 0x54, 0x5b, 0x4b, 0x42, 0x39, 0x2d, 0x2c, 0x41, 0x61, 0x6d, 0x66, 0x5d, 0x56, 0x41, 0x2a, 0x21, 0x1b, 0x16, 0x13, 0x19, 0x30, 0x4c, 0x54, 0x56, 0x46, 0x35, 0x3f, 0x59, 0x68, 0x61, 0x5c, 0x59, 0x5e, 0x68, 0x68, 0x54, 0x3e, 0x41, 0x3c, 0x37, 0x35, 0x36, 0x37, 0x39, 0x3a, 0x3e, 0x42, 0x46, 0x45, 0x42, 0x43, 0x4a, 0x50, 0x51, 0x53, 0x55, 0x55, 0x53, 0x4e, 0x49, 0x46, 0x43, 0x45, 0x48, 0x4a, 0x48, 0x46, 0x46, 0x47, 0x46, 0x4b, 0x4d, 0x48, 0x42, 0x42, 0x46, 0x49, 0x4d, 0x4a, 0x47, 0x45, 0x44, 0x46, 0x49, 0x4a, 0x49, 0x44, 0x41, 0x47, 0x53, 0x5c, 0x5c, 0x59, 0x59, 0x57, 0x55, 0x54, 0x53, 0x53, 0x54, 0x55, 0x54, 0x4b, 0x43, 0x43, 0x47, 0x49, 0x48, 0x47, 0x51, 0x53, 0x54, 0x50, 0x4a, 0x49, 0x50, 0x57, 0x53, 0x50, 0x4d, 0x4a, 0x48, 0x48, 0x4c, 0x52, 0x54, 0x55, 0x53, 0x50, 0x4d, 0x4c, 0x4b, 0x4a, 0x4f, 0x4c, 0x47, 0x45, 0x49, 0x4e, 0x4d, 0x4a, 0x4a, 0x48, 0x47, 0x4a, 0x4f, 0x51, 0x51, 0x4e, 0x4d, 0x4e, 0x4e, 0x4e, 0x4c, 0x49, 0x48, 0x48, 0x4d, 0x50, 0x51, 0x4f, 0x4c, 0x4a, 0x4a, 0x49, 0x50, 0x4e, 0x50, 0x55, 0x55, 0x4e, 0x47, 0x43, 0x38, 0x45, 0x4b, 0x4d, 0x55, 0x5d, 0x63, 0x6c, 0x64, 0x60, 0x5b, 0x5b, 0x60, 0x62, 0x5b, 0x52, 0x50, 0x51, 0x51, 0x4f, 0x4c, 0x48, 0x47, 0x46, 0x4a, 0x4a, 0x4b, 0x4b, 0x49, 0x47, 0x45, 0x44, 0x43, 0x46, 0x4a, 0x4d, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x56, 0x5d, 0x5b, 0x53, 0x4e, 0x50, 0x53, 0x55, 0x56, 0x55, 0x52, 0x52, 0x56, 0x5a, 0x5c, 0x5b, 0x59, 0x55, 0x50, 0x4d, 0x51, 0x57, 0x57, 0x59, 0x56, 0x50, 0x50, 0x54, 0x53, 0x4e, 0x4e, 0x4b, 0x47, 0x48, 0x4b, 0x4f, 0x50, 0x4f, 0x4f, 0x51, 0x52, 0x52, 0x50, 0x4f, 0x4e, 0x4e, 0x4a, 0x4a, 0x4b, 0x4d, 0x4e, 0x4f, 0x51, 0x52, 0x56, 0x55, 0x55, 0x55, 0x54, 0x52, 0x4f, 0x4d, 0x4d, 0x49, 0x43, 0x3f, 0x3d, 0x3e, 0x3f, 0x40, 0x3e, 0x45, 0x4c, 0x4f, 0x50, 0x4f, 0x4d, 0x49, 0x46, 0x49, 0x4d, 0x4e, 0x4c, 0x49, 0x45, 0x44, 0x48, 0x4f, 0x52, 0x4d, 0x4a, 0x4c, 0x4c, 0x4a, 0x50, 0x4c, 0x4c, 0x51, 0x50, 0x4a, 0x4a, 0x51, 0x50, 0x54, 0x5f, 0x6e, 0x78, 0x79, 0x76, 0x74, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x67, 0x65, 0x63, 0x5b, 0x55, 0x4e, 0x4a, 0x4a, 0x4b, 0x4b, 0x49, 0x42, 0x3d, 0x39, 0x36, 0x30, 0x27, 0x21, 0x1f, 0x1f, 0x23, 0x28, 0x2c, 0x2e, 0x31, 0x33, 0x34, 0x34, 0x34, 0x35, 0x35, 0x35, 0x36, 0x38, 0x3a, 0x4a, 0x55, 0x60, 0x62, 0x5d, 0x5a, 0x59, 0x59, 0x56, 0x4f, 0x49, 0x4a, 0x4f, 0x52, 0x53, 0x55, 0x57, 0x56, 0x54, 0x4e, 0x45, 0x3f, 0x3d, 0x3f, 0x40, 0x3b, 0x31, 0x25, 0x1d, 0x1a, 0x1b, 0x1d, 0x2b, 0x36, 0x45, 0x4e, 0x51, 0x54, 0x5a, 0x5f, 0x61, 0x63, 0x61, 0x5d, 0x5d, 0x62, 0x64, 0x62, 0x5a, 0x5b, 0x5e, 0x63, 0x68, 0x68, 0x66, 0x64, 0x64, 0x64, 0x62, 0x61, 0x5f, 0x5e, 0x5e, 0x5e, 0x5f, 0x5e, 0x5d, 0x5c, 0x5d, 0x5d, 0x5d, 0x5c, 0x59, 0x59, 0x58, 0x57, 0x56, 0x55, 0x54, 0x54, 0x56, 0x5a, 0x5b, 0x58, 0x53, 0x51, 0x51, 0x51, 0x4d, 0x4a, 0x4b, 0x50, 0x4f, 0x48, 0x43, 0x44, 0x45, 0x49, 0x50, 0x57, 0x58, 0x4f, 0x3e, 0x31, 0x43, 0x47, 0x4f, 0x55, 0x50, 0x44, 0x3e, 0x3f, 0x54, 0x5e, 0x6c, 0x72, 0x6e, 0x65, 0x60, 0x60, 0x65, 0x61, 0x5c, 0x5b, 0x63, 0x6a, 0x63, 0x56, 0x55, 0x54, 0x51, 0x4f, 0x51, 0x55, 0x55, 0x53, 0x4b, 0x48, 0x49, 0x50, 0x57, 0x5b, 0x5d, 0x5f, 0x59, 0x56, 0x56, 0x57, 0x56, 0x54, 0x58, 0x5f, 0x5d, 0x57, 0x51, 0x4f, 0x4c, 0x45, 0x3e, 0x3a, 0x3f, 0x43, 0x47, 0x47, 0x46, 0x4a, 0x53, 0x5b, 0x5d, 0x5f, 0x5f, 0x5c, 0x5b, 0x5c, 0x5b, 0x5a, 0x5f, 0x6c, 0x7c, 0x86, 0x8a, 0x8c, 0x8a, 0x87, 0x85, 0x7d, 0x71, 0x66, 0x61, 0x66, 0x70, 0x78, 0x6e, 0x6d, 0x69, 0x60, 0x59, 0x57, 0x56, 0x56, 0x49, 0x39, 0x2e, 0x2f, 0x3c, 0x50, 0x5e, 0x5d, 0x4b, 0x4b, 0x54, 0x62, 0x65, 0x58, 0x49, 0x43, 0x44, 0x49, 0x50, 0x5d, 0x67, 0x5d, 0x4e, 0x4a, 0x44, 0x42, 0x48, 0x54, 0x59, 0x53, 0x4f, 0x50, 0x4e, 0x4c, 0x55, 0x63, 0x68, 0x67, 0x5b, 0x4c, 0x46, 0x33, 0x2e, 0x3c, 0x4d, 0x58, 0x5a, 0x54, 0x4f, 0x4f, 0x59, 0x53, 0x4e, 0x3d, 0x44, 0x4c, 0x59, 0x5e, 0x6a, 0x71, 0x71, 0x6f, 0x65, 0x54, 0x2f, 0x1b, 0x18, 0x16, 0x12, 0x12, 0x22, 0x43, 0x5c, 0x5a, 0x51, 0x40, 0x3d, 0x54, 0x6c, 0x6f, 0x6b, 0x6c, 0x69, 0x64, 0x60, 0x5c, 0x53, 0x4a, 0x42, 0x41, 0x3e, 0x3c, 0x3b, 0x3b, 0x3b, 0x3a, 0x3d, 0x41, 0x45, 0x44, 0x41, 0x41, 0x45, 0x4a, 0x49, 0x4b, 0x4f, 0x52, 0x52, 0x4e, 0x49, 0x46, 0x41, 0x44, 0x47, 0x48, 0x48, 0x49, 0x4b, 0x4d, 0x41, 0x47, 0x49, 0x45, 0x40, 0x3f, 0x43, 0x46, 0x4a, 0x46, 0x42, 0x44, 0x48, 0x4b, 0x4b, 0x49, 0x4b, 0x49, 0x49, 0x4d, 0x52, 0x56, 0x58, 0x57, 0x5e, 0x5e, 0x5a, 0x52, 0x4b, 0x4a, 0x4e, 0x52, 0x4f, 0x46, 0x3e, 0x3e, 0x41, 0x43, 0x43, 0x43, 0x4d, 0x51, 0x52, 0x4f, 0x4b, 0x4b, 0x4f, 0x54, 0x52, 0x50, 0x4f, 0x4d, 0x49, 0x47, 0x4a, 0x4e, 0x54, 0x56, 0x54, 0x51, 0x50, 0x51, 0x50, 0x4d, 0x51, 0x4d, 0x48, 0x45, 0x48, 0x4c, 0x4b, 0x46, 0x48, 0x45, 0x42, 0x44, 0x49, 0x4f, 0x51, 0x51, 0x50, 0x50, 0x4e, 0x4a, 0x46, 0x46, 0x47, 0x48, 0x4d, 0x50, 0x51, 0x4c, 0x4a, 0x4b, 0x4c, 0x4b, 0x4b, 0x4b, 0x4d, 0x51, 0x52, 0x4e, 0x47, 0x43, 0x41, 0x51, 0x5c, 0x5e, 0x5b, 0x51, 0x47, 0x46, 0x4a, 0x4e, 0x54, 0x5c, 0x66, 0x6a, 0x66, 0x5f, 0x53, 0x52, 0x51, 0x4f, 0x4c, 0x4a, 0x49, 0x48, 0x4f, 0x50, 0x50, 0x4d, 0x48, 0x44, 0x43, 0x42, 0x42, 0x44, 0x46, 0x48, 0x49, 0x4a, 0x4c, 0x4d, 0x49, 0x4e, 0x58, 0x62, 0x60, 0x54, 0x4d, 0x4d, 0x51, 0x54, 0x56, 0x55, 0x52, 0x50, 0x50, 0x51, 0x5b, 0x5b, 0x5c, 0x5a, 0x53, 0x4f, 0x53, 0x59, 0x5c, 0x5e, 0x5b, 0x54, 0x51, 0x52, 0x4f, 0x4a, 0x4f, 0x4f, 0x4e, 0x4d, 0x4b, 0x4b, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x52, 0x50, 0x4f, 0x4e, 0x4e, 0x4b, 0x4c, 0x4c, 0x4d, 0x4e, 0x50, 0x52, 0x53, 0x54, 0x54, 0x54, 0x54, 0x53, 0x50, 0x4b, 0x48, 0x44, 0x43, 0x41, 0x40, 0x41, 0x44, 0x49, 0x4c, 0x47, 0x4c, 0x50, 0x51, 0x52, 0x53, 0x52, 0x50, 0x49, 0x4b, 0x4d, 0x4e, 0x4c, 0x49, 0x46, 0x45, 0x52, 0x57, 0x58, 0x52, 0x4d, 0x4e, 0x4f, 0x4c, 0x4f, 0x49, 0x4a, 0x55, 0x59, 0x54, 0x50, 0x52, 0x52, 0x53, 0x5b, 0x69, 0x75, 0x79, 0x77, 0x75, 0x76, 0x74, 0x73, 0x73, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x68, 0x68, 0x67, 0x66, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x65, 0x63, 0x5c, 0x57, 0x51, 0x50, 0x51, 0x51, 0x51, 0x50, 0x4d, 0x47, 0x41, 0x3f, 0x3c, 0x34, 0x29, 0x22, 0x23, 0x25, 0x2a, 0x2f, 0x33, 0x36, 0x38, 0x3a, 0x3a, 0x3a, 0x38, 0x36, 0x35, 0x35, 0x38, 0x3a, 0x4c, 0x59, 0x65, 0x68, 0x65, 0x61, 0x60, 0x60, 0x5a, 0x53, 0x4f, 0x52, 0x57, 0x5a, 0x5b, 0x5b, 0x5a, 0x5e, 0x5e, 0x56, 0x4a, 0x43, 0x45, 0x49, 0x45, 0x39, 0x29, 0x1b, 0x13, 0x12, 0x14, 0x16, 0x18, 0x22, 0x2f, 0x3c, 0x46, 0x4d, 0x53, 0x57, 0x59, 0x5d, 0x5c, 0x58, 0x59, 0x5e, 0x5d, 0x57, 0x55, 0x5a, 0x60, 0x65, 0x68, 0x68, 0x66, 0x64, 0x64, 0x63, 0x61, 0x60, 0x5f, 0x60, 0x60, 0x60, 0x5f, 0x5e, 0x5c, 0x5c, 0x5d, 0x5d, 0x5c, 0x5c, 0x5b, 0x5a, 0x59, 0x57, 0x56, 0x55, 0x54, 0x54, 0x56, 0x5a, 0x5b, 0x55, 0x50, 0x4e, 0x4e, 0x4d, 0x4a, 0x47, 0x49, 0x4d, 0x4a, 0x40, 0x39, 0x37, 0x39, 0x3a, 0x3f, 0x46, 0x4b, 0x4a, 0x42, 0x3b, 0x3a, 0x3e, 0x46, 0x4f, 0x51, 0x51, 0x59, 0x63, 0x69, 0x83, 0x9c, 0x9e, 0x90, 0x7c, 0x69, 0x5a, 0x68, 0x66, 0x60, 0x5a, 0x5b, 0x60, 0x61, 0x5e, 0x55, 0x53, 0x4f, 0x4d, 0x4f, 0x53, 0x54, 0x53, 0x4b, 0x48, 0x49, 0x4e, 0x53, 0x57, 0x5a, 0x5d, 0x59, 0x59, 0x58, 0x56, 0x55, 0x5a, 0x66, 0x71, 0x77, 0x69, 0x59, 0x4c, 0x43, 0x3c, 0x38, 0x37, 0x3c, 0x40, 0x43, 0x44, 0x42, 0x45, 0x4d, 0x55, 0x58, 0x5b, 0x5c, 0x5b, 0x5a, 0x59, 0x55, 0x51, 0x58, 0x61, 0x6e, 0x79, 0x83, 0x8a, 0x8b, 0x88, 0x84, 0x82, 0x7c, 0x71, 0x67, 0x65, 0x6b, 0x72, 0x6c, 0x6d, 0x69, 0x5e, 0x54, 0x50, 0x51, 0x52, 0x39, 0x29, 0x24, 0x2f, 0x3f, 0x4c, 0x4c, 0x41, 0x41, 0x40, 0x48, 0x58, 0x5f, 0x5a, 0x54, 0x54, 0x4b, 0x4f, 0x53, 0x5b, 0x5c, 0x4d, 0x3e, 0x3d, 0x42, 0x43, 0x4c, 0x58, 0x59, 0x4e, 0x45, 0x44, 0x40, 0x45, 0x55, 0x64, 0x68, 0x68, 0x61, 0x55, 0x3d, 0x2b, 0x2e, 0x44, 0x50, 0x53, 0x58, 0x5f, 0x56, 0x4f, 0x51, 0x4c, 0x4f, 0x45, 0x51, 0x5b, 0x75, 0x73, 0x6e, 0x68, 0x6c, 0x79, 0x72, 0x5b, 0x4b, 0x36, 0x2f, 0x2a, 0x22, 0x1e, 0x2a, 0x48, 0x54, 0x51, 0x4b, 0x43, 0x49, 0x61, 0x6c, 0x62, 0x5f, 0x68, 0x72, 0x72, 0x67, 0x55, 0x41, 0x33, 0x47, 0x48, 0x47, 0x44, 0x41, 0x3f, 0x3c, 0x39, 0x3c, 0x40, 0x44, 0x45, 0x42, 0x41, 0x41, 0x43, 0x47, 0x49, 0x4d, 0x51, 0x51, 0x4d, 0x47, 0x43, 0x44, 0x46, 0x47, 0x47, 0x49, 0x4d, 0x51, 0x52, 0x46, 0x4a, 0x4b, 0x47, 0x42, 0x41, 0x44, 0x46, 0x43, 0x41, 0x40, 0x45, 0x4c, 0x51, 0x50, 0x4d, 0x53, 0x54, 0x55, 0x54, 0x53, 0x55, 0x5b, 0x5f, 0x68, 0x68, 0x63, 0x58, 0x4e, 0x4c, 0x4f, 0x53, 0x4e, 0x47, 0x40, 0x3e, 0x3e, 0x3d, 0x3c, 0x3c, 0x48, 0x4d, 0x4f, 0x4d, 0x4a, 0x4a, 0x4c, 0x4d, 0x51, 0x4d, 0x4a, 0x47, 0x46, 0x46, 0x4c, 0x53, 0x58, 0x5a, 0x59, 0x55, 0x54, 0x55, 0x52, 0x4d, 0x49, 0x47, 0x44, 0x45, 0x4a, 0x50, 0x4f, 0x4c, 0x46, 0x42, 0x3e, 0x40, 0x47, 0x4e, 0x52, 0x53, 0x50, 0x52, 0x4f, 0x48, 0x42, 0x42, 0x45, 0x48, 0x4e, 0x4f, 0x4b, 0x45, 0x44, 0x4a, 0x4e, 0x4f, 0x4e, 0x4d, 0x4b, 0x4c, 0x4f, 0x4f, 0x4e, 0x4c, 0x54, 0x63, 0x6d, 0x6c, 0x64, 0x51, 0x41, 0x3d, 0x3a, 0x44, 0x4e, 0x52, 0x53, 0x54, 0x55, 0x56, 0x4e, 0x4c, 0x4a, 0x4a, 0x4b, 0x4d, 0x4e, 0x4e, 0x52, 0x56, 0x58, 0x53, 0x4c, 0x48, 0x45, 0x43, 0x44, 0x46, 0x47, 0x48, 0x49, 0x4b, 0x4d, 0x4f, 0x52, 0x58, 0x60, 0x65, 0x5f, 0x55, 0x4d, 0x4a, 0x4d, 0x4f, 0x52, 0x53, 0x52, 0x50, 0x4d, 0x4c, 0x54, 0x57, 0x5b, 0x5a, 0x53, 0x4e, 0x51, 0x57, 0x5b, 0x5c, 0x5b, 0x58, 0x55, 0x52, 0x4f, 0x4b, 0x51, 0x52, 0x52, 0x4f, 0x4c, 0x4a, 0x4b, 0x4e, 0x4f, 0x50, 0x50, 0x4f, 0x4d, 0x4c, 0x4d, 0x4e, 0x4e, 0x4f, 0x4f, 0x4d, 0x4d, 0x50, 0x52, 0x52, 0x52, 0x52, 0x52, 0x51, 0x4f, 0x4b, 0x48, 0x46, 0x44, 0x44, 0x43, 0x42, 0x41, 0x42, 0x46, 0x4a, 0x4e, 0x50, 0x51, 0x51, 0x53, 0x56, 0x55, 0x52, 0x48, 0x4a, 0x4d, 0x4f, 0x51, 0x52, 0x53, 0x53, 0x56, 0x57, 0x54, 0x4d, 0x4a, 0x4c, 0x4f, 0x50, 0x51, 0x4c, 0x4e, 0x58, 0x5f, 0x5c, 0x55, 0x51, 0x54, 0x54, 0x58, 0x62, 0x6f, 0x78, 0x79, 0x77, 0x78, 0x75, 0x73, 0x74, 0x74, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x68, 0x65, 0x63, 0x5f, 0x5a, 0x57, 0x58, 0x59, 0x58, 0x58, 0x58, 0x57, 0x51, 0x4a, 0x48, 0x48, 0x42, 0x38, 0x2e, 0x24, 0x22, 0x25, 0x2b, 0x33, 0x38, 0x3d, 0x41, 0x41, 0x41, 0x40, 0x3f, 0x3f, 0x40, 0x43, 0x45, 0x4e, 0x58, 0x62, 0x65, 0x64, 0x63, 0x61, 0x60, 0x5a, 0x53, 0x4e, 0x51, 0x57, 0x5c, 0x5f, 0x62, 0x61, 0x65, 0x64, 0x58, 0x4c, 0x47, 0x4a, 0x4f, 0x4c, 0x38, 0x21, 0x12, 0x0e, 0x10, 0x15, 0x19, 0x17, 0x1b, 0x21, 0x29, 0x32, 0x3b, 0x43, 0x47, 0x4e, 0x52, 0x54, 0x53, 0x55, 0x58, 0x56, 0x51, 0x52, 0x5a, 0x63, 0x68, 0x69, 0x6a, 0x69, 0x67, 0x64, 0x62, 0x60, 0x5f, 0x5f, 0x60, 0x60, 0x60, 0x5d, 0x5c, 0x5b, 0x5b, 0x5c, 0x5c, 0x5a, 0x59, 0x5c, 0x5b, 0x59, 0x57, 0x55, 0x55, 0x54, 0x54, 0x57, 0x5a, 0x58, 0x50, 0x4c, 0x4d, 0x4e, 0x4c, 0x4e, 0x4d, 0x4e, 0x50, 0x4e, 0x46, 0x3e, 0x3b, 0x39, 0x36, 0x35, 0x38, 0x3e, 0x41, 0x3f, 0x3c, 0x37, 0x3b, 0x42, 0x4b, 0x55, 0x63, 0x76, 0x85, 0x99, 0x99, 0x8a, 0x6d, 0x5a, 0x5b, 0x61, 0x62, 0x64, 0x6c, 0x70, 0x6c, 0x66, 0x66, 0x6a, 0x6e, 0x5c, 0x59, 0x53, 0x4e, 0x4f, 0x52, 0x53, 0x51, 0x4b, 0x49, 0x4a, 0x4e, 0x53, 0x55, 0x58, 0x5b, 0x58, 0x5a, 0x59, 0x56, 0x5a, 0x66, 0x71, 0x75, 0x6e, 0x61, 0x51, 0x46, 0x3f, 0x39, 0x36, 0x36, 0x39, 0x3b, 0x3f, 0x40, 0x3f, 0x3f, 0x47, 0x50, 0x55, 0x58, 0x59, 0x56, 0x54, 0x52, 0x4f, 0x4b, 0x52, 0x57, 0x5f, 0x69, 0x77, 0x84, 0x8b, 0x8c, 0x86, 0x83, 0x7f, 0x79, 0x74, 0x6e, 0x6a, 0x68, 0x6d, 0x6d, 0x66, 0x5a, 0x50, 0x4d, 0x4f, 0x50, 0x3d, 0x3a, 0x41, 0x4b, 0x4f, 0x4f, 0x4c, 0x44, 0x44, 0x3e, 0x3f, 0x4a, 0x52, 0x52, 0x53, 0x57, 0x54, 0x58, 0x5a, 0x5f, 0x5f, 0x52, 0x44, 0x42, 0x43, 0x55, 0x5f, 0x55, 0x49, 0x46, 0x46, 0x43, 0x3b, 0x3e, 0x4a, 0x59, 0x63, 0x6b, 0x6a, 0x5f, 0x41, 0x2d, 0x31, 0x4b, 0x5b, 0x5e, 0x62, 0x67, 0x5b, 0x50, 0x4f, 0x4a, 0x4b, 0x3e, 0x45, 0x4c, 0x69, 0x6a, 0x6e, 0x6d, 0x6d, 0x75, 0x76, 0x6b, 0x4a, 0x38, 0x35, 0x30, 0x2a, 0x27, 0x2f, 0x48, 0x65, 0x66, 0x63, 0x57, 0x53, 0x5f, 0x67, 0x5f, 0x55, 0x4f, 0x4e, 0x56, 0x64, 0x6a, 0x65, 0x5d, 0x4c, 0x4e, 0x4d, 0x48, 0x44, 0x42, 0x3e, 0x3a, 0x3b, 0x40, 0x46, 0x49, 0x49, 0x47, 0x43, 0x41, 0x47, 0x49, 0x4d, 0x50, 0x51, 0x4e, 0x48, 0x43, 0x46, 0x47, 0x45, 0x43, 0x46, 0x4c, 0x50, 0x50, 0x44, 0x45, 0x43, 0x3e, 0x3a, 0x3c, 0x3f, 0x40, 0x42, 0x43, 0x44, 0x47, 0x4a, 0x4c, 0x4c, 0x4b, 0x56, 0x5b, 0x5f, 0x5e, 0x5b, 0x5b, 0x61, 0x67, 0x6c, 0x6b, 0x66, 0x5c, 0x55, 0x52, 0x51, 0x4f, 0x4a, 0x46, 0x43, 0x42, 0x41, 0x3e, 0x3d, 0x3e, 0x4e, 0x52, 0x54, 0x51, 0x4f, 0x4f, 0x50, 0x4f, 0x4c, 0x47, 0x42, 0x40, 0x40, 0x43, 0x4b, 0x52, 0x58, 0x5c, 0x5b, 0x57, 0x56, 0x58, 0x54, 0x4c, 0x40, 0x41, 0x41, 0x43, 0x49, 0x50, 0x50, 0x4e, 0x46, 0x42, 0x3e, 0x3f, 0x45, 0x4a, 0x4d, 0x4e, 0x4c, 0x50, 0x50, 0x48, 0x40, 0x3f, 0x43, 0x46, 0x4b, 0x4c, 0x48, 0x42, 0x44, 0x4c, 0x50, 0x4e, 0x52, 0x50, 0x4d, 0x4b, 0x4d, 0x4f, 0x4f, 0x4e, 0x5c, 0x67, 0x6e, 0x71, 0x71, 0x6b, 0x68, 0x6d, 0x72, 0x75, 0x73, 0x6b, 0x61, 0x58, 0x50, 0x4a, 0x4b, 0x48, 0x45, 0x46, 0x4b, 0x4e, 0x4e, 0x4d, 0x4e, 0x57, 0x5d, 0x5a, 0x53, 0x4e, 0x49, 0x45, 0x46, 0x47, 0x49, 0x4a, 0x4b, 0x4d, 0x4f, 0x51, 0x56, 0x5c, 0x5f, 0x5c, 0x55, 0x51, 0x4f, 0x4d, 0x4d, 0x4e, 0x50, 0x53, 0x54, 0x53, 0x4f, 0x4c, 0x4f, 0x55, 0x5b, 0x5c, 0x54, 0x4e, 0x50, 0x56, 0x59, 0x59, 0x5a, 0x5c, 0x5a, 0x54, 0x51, 0x50, 0x52, 0x51, 0x4f, 0x4d, 0x4b, 0x4b, 0x4d, 0x4f, 0x4f, 0x4e, 0x4d, 0x4c, 0x4a, 0x4a, 0x4c, 0x4e, 0x51, 0x52, 0x50, 0x4c, 0x4c, 0x4f, 0x50, 0x4f, 0x51, 0x51, 0x4f, 0x4c, 0x48, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x46, 0x43, 0x42, 0x44, 0x47, 0x4d, 0x4e, 0x4f, 0x51, 0x55, 0x57, 0x53, 0x4d, 0x4a, 0x4c, 0x4f, 0x54, 0x58, 0x5b, 0x5c, 0x5d, 0x55, 0x52, 0x4f, 0x4e, 0x4c, 0x4b, 0x4c, 0x4f, 0x51, 0x50, 0x52, 0x57, 0x5c, 0x5c, 0x57, 0x51, 0x52, 0x53, 0x54, 0x59, 0x66, 0x75, 0x7a, 0x78, 0x7a, 0x76, 0x75, 0x77, 0x76, 0x74, 0x72, 0x73, 0x74, 0x74, 0x74, 0x72, 0x71, 0x6e, 0x6c, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x65, 0x63, 0x60, 0x5e, 0x5e, 0x61, 0x62, 0x60, 0x60, 0x63, 0x61, 0x5d, 0x57, 0x53, 0x52, 0x50, 0x4b, 0x46, 0x35, 0x2c, 0x26, 0x29, 0x2f, 0x34, 0x3a, 0x3f, 0x41, 0x42, 0x44, 0x45, 0x46, 0x48, 0x4a, 0x4c, 0x4c, 0x51, 0x56, 0x58, 0x59, 0x5b, 0x5a, 0x57, 0x52, 0x4d, 0x4a, 0x4e, 0x55, 0x5b, 0x60, 0x64, 0x6e, 0x6d, 0x65, 0x56, 0x4c, 0x4a, 0x4f, 0x52, 0x46, 0x30, 0x19, 0x10, 0x12, 0x17, 0x1b, 0x1d, 0x20, 0x20, 0x20, 0x21, 0x24, 0x28, 0x2e, 0x32, 0x3f, 0x43, 0x48, 0x4c, 0x50, 0x53, 0x54, 0x54, 0x57, 0x61, 0x6a, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x65, 0x62, 0x5f, 0x5e, 0x5e, 0x5f, 0x5f, 0x5e, 0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5b, 0x59, 0x58, 0x5a, 0x59, 0x57, 0x56, 0x55, 0x54, 0x55, 0x55, 0x56, 0x57, 0x53, 0x4a, 0x47, 0x4b, 0x4d, 0x4a, 0x45, 0x47, 0x47, 0x45, 0x44, 0x42, 0x3c, 0x37, 0x38, 0x36, 0x36, 0x39, 0x3d, 0x3d, 0x38, 0x33, 0x38, 0x3d, 0x43, 0x49, 0x54, 0x64, 0x72, 0x7a, 0x65, 0x63, 0x5e, 0x57, 0x56, 0x5a, 0x5b, 0x58, 0x5d, 0x64, 0x6c, 0x71, 0x74, 0x76, 0x76, 0x75, 0x62, 0x5e, 0x56, 0x50, 0x4f, 0x51, 0x52, 0x50, 0x4c, 0x4a, 0x4c, 0x50, 0x54, 0x55, 0x57, 0x5a, 0x51, 0x54, 0x52, 0x50, 0x5c, 0x6c, 0x6d, 0x62, 0x52, 0x49, 0x41, 0x3d, 0x3b, 0x38, 0x36, 0x36, 0x36, 0x38, 0x3c, 0x3e, 0x3c, 0x3c, 0x43, 0x4d, 0x52, 0x55, 0x56, 0x53, 0x50, 0x50, 0x50, 0x4e, 0x51, 0x53, 0x56, 0x5a, 0x65, 0x74, 0x81, 0x88, 0x87, 0x84, 0x81, 0x7e, 0x7b, 0x76, 0x6e, 0x67, 0x6f, 0x69, 0x5d, 0x51, 0x4c, 0x4d, 0x50, 0x50, 0x45, 0x40, 0x3f, 0x3a, 0x2f, 0x33, 0x45, 0x52, 0x4e, 0x45, 0x42, 0x49, 0x4f, 0x4c, 0x4a, 0x4c, 0x58, 0x5a, 0x59, 0x5c, 0x60, 0x54, 0x41, 0x37, 0x3b, 0x51, 0x5a, 0x4a, 0x3c, 0x41, 0x4b, 0x4e, 0x4e, 0x4b, 0x54, 0x64, 0x6f, 0x6c, 0x52, 0x32, 0x26, 0x1e, 0x2a, 0x47, 0x5e, 0x6c, 0x71, 0x6f, 0x61, 0x5c, 0x5a, 0x45, 0x33, 0x25, 0x45, 0x66, 0x7b, 0x72, 0x68, 0x61, 0x61, 0x6a, 0x68, 0x5a, 0x3c, 0x34, 0x3a, 0x38, 0x33, 0x33, 0x3b, 0x52, 0x56, 0x64, 0x71, 0x6b, 0x5e, 0x5f, 0x64, 0x60, 0x63, 0x52, 0x47, 0x52, 0x65, 0x69, 0x56, 0x41, 0x4d, 0x50, 0x4f, 0x49, 0x45, 0x44, 0x41, 0x3d, 0x3a, 0x3f, 0x46, 0x4c, 0x4e, 0x4b, 0x45, 0x41, 0x41, 0x44, 0x49, 0x4f, 0x53, 0x52, 0x4e, 0x4a, 0x46, 0x45, 0x41, 0x3e, 0x41, 0x48, 0x4c, 0x4b, 0x45, 0x44, 0x40, 0x3a, 0x39, 0x3c, 0x41, 0x43, 0x44, 0x45, 0x47, 0x45, 0x42, 0x40, 0x41, 0x42, 0x4f, 0x57, 0x5f, 0x62, 0x5f, 0x5d, 0x60, 0x63, 0x67, 0x65, 0x5f, 0x58, 0x54, 0x53, 0x4d, 0x46, 0x3b, 0x3b, 0x3e, 0x42, 0x44, 0x44, 0x46, 0x48, 0x4b, 0x4f, 0x50, 0x4c, 0x49, 0x4a, 0x4a, 0x48, 0x4e, 0x48, 0x42, 0x3f, 0x3e, 0x3f, 0x43, 0x48, 0x56, 0x5a, 0x5a, 0x57, 0x57, 0x59, 0x54, 0x4c, 0x43, 0x44, 0x43, 0x43, 0x46, 0x49, 0x48, 0x44, 0x46, 0x42, 0x3d, 0x3d, 0x40, 0x43, 0x44, 0x43, 0x47, 0x4e, 0x50, 0x48, 0x40, 0x3e, 0x42, 0x44, 0x47, 0x49, 0x48, 0x45, 0x48, 0x4f, 0x50, 0x4b, 0x4b, 0x4a, 0x49, 0x49, 0x4c, 0x4d, 0x4c, 0x49, 0x45, 0x50, 0x59, 0x61, 0x68, 0x6a, 0x6f, 0x79, 0x6f, 0x6d, 0x6c, 0x6f, 0x77, 0x78, 0x6f, 0x64, 0x4e, 0x4a, 0x45, 0x46, 0x4a, 0x4d, 0x4b, 0x47, 0x46, 0x52, 0x5c, 0x5b, 0x55, 0x4f, 0x49, 0x43, 0x44, 0x46, 0x49, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x4a, 0x50, 0x51, 0x4b, 0x49, 0x4e, 0x53, 0x55, 0x52, 0x51, 0x52, 0x54, 0x57, 0x56, 0x52, 0x4e, 0x51, 0x58, 0x60, 0x61, 0x59, 0x52, 0x53, 0x59, 0x5f, 0x5d, 0x5e, 0x61, 0x5d, 0x53, 0x4e, 0x4e, 0x53, 0x4f, 0x4b, 0x49, 0x4a, 0x4d, 0x4f, 0x50, 0x50, 0x4f, 0x4d, 0x4a, 0x49, 0x4a, 0x4d, 0x50, 0x52, 0x53, 0x50, 0x4b, 0x4a, 0x4d, 0x4e, 0x4c, 0x50, 0x50, 0x4d, 0x48, 0x44, 0x44, 0x49, 0x4d, 0x4a, 0x4c, 0x4e, 0x4d, 0x4a, 0x4a, 0x4e, 0x51, 0x49, 0x4b, 0x4d, 0x52, 0x57, 0x58, 0x51, 0x48, 0x52, 0x53, 0x54, 0x57, 0x58, 0x58, 0x57, 0x56, 0x54, 0x51, 0x52, 0x56, 0x56, 0x4f, 0x4b, 0x4c, 0x4f, 0x51, 0x52, 0x54, 0x58, 0x5a, 0x58, 0x52, 0x4e, 0x50, 0x4f, 0x50, 0x5e, 0x71, 0x79, 0x76, 0x7c, 0x78, 0x76, 0x78, 0x78, 0x75, 0x73, 0x75, 0x76, 0x75, 0x75, 0x73, 0x71, 0x6f, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x69, 0x65, 0x63, 0x60, 0x60, 0x63, 0x68, 0x69, 0x66, 0x67, 0x6b, 0x69, 0x66, 0x61, 0x5b, 0x59, 0x59, 0x5a, 0x59, 0x54, 0x44, 0x34, 0x2d, 0x2d, 0x2e, 0x31, 0x34, 0x3a, 0x3d, 0x40, 0x43, 0x44, 0x45, 0x47, 0x48, 0x4b, 0x4c, 0x4c, 0x4c, 0x4f, 0x53, 0x53, 0x50, 0x49, 0x46, 0x48, 0x4e, 0x56, 0x5b, 0x5f, 0x62, 0x67, 0x61, 0x53, 0x42, 0x39, 0x3b, 0x3f, 0x40, 0x32, 0x1f, 0x0f, 0x0f, 0x19, 0x21, 0x23, 0x22, 0x20, 0x22, 0x23, 0x23, 0x21, 0x22, 0x25, 0x28, 0x34, 0x37, 0x3e, 0x46, 0x4c, 0x50, 0x55, 0x59, 0x5e, 0x68, 0x71, 0x70, 0x6d, 0x6b, 0x69, 0x66, 0x65, 0x62, 0x5f, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c, 0x5b, 0x5b, 0x5b, 0x5c, 0x5d, 0x5c, 0x5a, 0x58, 0x58, 0x57, 0x56, 0x54, 0x54, 0x54, 0x55, 0x56, 0x56, 0x56, 0x4f, 0x45, 0x44, 0x49, 0x4b, 0x48, 0x46, 0x49, 0x48, 0x43, 0x42, 0x43, 0x40, 0x3a, 0x39, 0x37, 0x37, 0x39, 0x3d, 0x3c, 0x37, 0x31, 0x34, 0x3b, 0x42, 0x48, 0x51, 0x5c, 0x5f, 0x5b, 0x4e, 0x47, 0x47, 0x54, 0x66, 0x70, 0x73, 0x73, 0x5d, 0x55, 0x51, 0x5b, 0x6f, 0x7c, 0x7c, 0x74, 0x63, 0x5f, 0x57, 0x50, 0x4f, 0x51, 0x52, 0x50, 0x49, 0x49, 0x4b, 0x4f, 0x52, 0x53, 0x55, 0x57, 0x57, 0x5a, 0x58, 0x58, 0x6a, 0x7c, 0x72, 0x5a, 0x46, 0x3f, 0x39, 0x38, 0x38, 0x36, 0x33, 0x33, 0x35, 0x37, 0x3b, 0x3d, 0x3c, 0x3b, 0x42, 0x4c, 0x50, 0x53, 0x55, 0x52, 0x51, 0x53, 0x56, 0x57, 0x54, 0x55, 0x53, 0x51, 0x56, 0x64, 0x75, 0x7f, 0x86, 0x86, 0x85, 0x82, 0x7c, 0x75, 0x71, 0x6e, 0x70, 0x65, 0x54, 0x49, 0x48, 0x4e, 0x51, 0x50, 0x4c, 0x44, 0x43, 0x44, 0x3f, 0x42, 0x4b, 0x50, 0x4c, 0x46, 0x47, 0x53, 0x59, 0x55, 0x4e, 0x4c, 0x3b, 0x3e, 0x3e, 0x46, 0x53, 0x4d, 0x38, 0x29, 0x38, 0x47, 0x55, 0x57, 0x52, 0x54, 0x5b, 0x61, 0x6a, 0x5a, 0x53, 0x5f, 0x6d, 0x6b, 0x4a, 0x21, 0x16, 0x26, 0x40, 0x53, 0x5b, 0x66, 0x70, 0x70, 0x76, 0x5d, 0x4c, 0x3c, 0x3a, 0x2f, 0x3b, 0x46, 0x5f, 0x6c, 0x73, 0x68, 0x5f, 0x65, 0x5f, 0x4a, 0x3a, 0x39, 0x42, 0x3c, 0x30, 0x2d, 0x33, 0x48, 0x59, 0x64, 0x6f, 0x66, 0x56, 0x56, 0x61, 0x65, 0x66, 0x4e, 0x3b, 0x45, 0x60, 0x6e, 0x63, 0x52, 0x4f, 0x53, 0x56, 0x55, 0x4e, 0x47, 0x41, 0x3e, 0x42, 0x49, 0x4d, 0x4c, 0x4c, 0x4d, 0x4b, 0x47, 0x40, 0x40, 0x46, 0x50, 0x55, 0x53, 0x4f, 0x4e, 0x4b, 0x46, 0x40, 0x3f, 0x43, 0x48, 0x4a, 0x4a, 0x45, 0x41, 0x3d, 0x3b, 0x3c, 0x3f, 0x43, 0x45, 0x47, 0x49, 0x49, 0x46, 0x44, 0x44, 0x48, 0x4b, 0x55, 0x58, 0x5b, 0x5c, 0x5c, 0x5d, 0x61, 0x65, 0x5f, 0x54, 0x4a, 0x4b, 0x52, 0x56, 0x50, 0x48, 0x41, 0x42, 0x41, 0x40, 0x40, 0x42, 0x48, 0x4d, 0x55, 0x53, 0x4f, 0x4a, 0x46, 0x44, 0x44, 0x46, 0x45, 0x4a, 0x4d, 0x4a, 0x43, 0x40, 0x45, 0x4a, 0x48, 0x4f, 0x52, 0x51, 0x53, 0x57, 0x56, 0x51, 0x4c, 0x4c, 0x49, 0x46, 0x45, 0x48, 0x4b, 0x4b, 0x48, 0x43, 0x41, 0x43, 0x46, 0x44, 0x40, 0x3e, 0x44, 0x4a, 0x4e, 0x4b, 0x42, 0x3d, 0x3f, 0x43, 0x42, 0x43, 0x45, 0x47, 0x4a, 0x4c, 0x4d, 0x4d, 0x49, 0x41, 0x3d, 0x41, 0x45, 0x46, 0x47, 0x4a, 0x44, 0x43, 0x44, 0x4a, 0x53, 0x5b, 0x5e, 0x5e, 0x55, 0x5c, 0x69, 0x71, 0x6f, 0x6e, 0x67, 0x5a, 0x53, 0x4e, 0x48, 0x49, 0x4d, 0x4f, 0x4e, 0x4b, 0x51, 0x53, 0x55, 0x57, 0x55, 0x51, 0x4c, 0x49, 0x45, 0x46, 0x47, 0x4a, 0x4d, 0x4e, 0x4e, 0x4d, 0x4b, 0x4d, 0x4e, 0x4c, 0x4b, 0x4d, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x57, 0x56, 0x52, 0x56, 0x5a, 0x5c, 0x5a, 0x55, 0x51, 0x51, 0x54, 0x58, 0x56, 0x57, 0x5c, 0x5c, 0x57, 0x52, 0x52, 0x56, 0x51, 0x4d, 0x4d, 0x52, 0x56, 0x57, 0x56, 0x54, 0x58, 0x5b, 0x58, 0x51, 0x4d, 0x4d, 0x50, 0x55, 0x52, 0x50, 0x50, 0x4e, 0x4c, 0x4f, 0x55, 0x57, 0x50, 0x49, 0x48, 0x4d, 0x50, 0x4f, 0x4c, 0x47, 0x50, 0x57, 0x57, 0x53, 0x51, 0x52, 0x52, 0x56, 0x53, 0x51, 0x54, 0x5b, 0x5c, 0x51, 0x44, 0x4d, 0x57, 0x60, 0x61, 0x5c, 0x59, 0x57, 0x56, 0x56, 0x58, 0x56, 0x52, 0x52, 0x54, 0x52, 0x4e, 0x54, 0x53, 0x55, 0x59, 0x5a, 0x57, 0x54, 0x53, 0x4c, 0x52, 0x53, 0x53, 0x5d, 0x6e, 0x77, 0x74, 0x7c, 0x7b, 0x7b, 0x7a, 0x76, 0x71, 0x72, 0x76, 0x75, 0x75, 0x75, 0x75, 0x73, 0x70, 0x6d, 0x6b, 0x6a, 0x68, 0x66, 0x67, 0x69, 0x6c, 0x6c, 0x6c, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x65, 0x64, 0x64, 0x65, 0x65, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6d, 0x67, 0x62, 0x62, 0x66, 0x6c, 0x6c, 0x63, 0x54, 0x46, 0x3c, 0x37, 0x36, 0x35, 0x37, 0x37, 0x39, 0x3a, 0x3c, 0x3e, 0x41, 0x43, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4d, 0x4e, 0x4f, 0x48, 0x49, 0x4b, 0x4c, 0x4e, 0x4f, 0x4f, 0x50, 0x4e, 0x47, 0x3d, 0x35, 0x30, 0x2b, 0x26, 0x22, 0x20, 0x1a, 0x19, 0x1e, 0x22, 0x22, 0x25, 0x29, 0x2b, 0x28, 0x25, 0x23, 0x23, 0x27, 0x2b, 0x2e, 0x31, 0x36, 0x3d, 0x43, 0x4a, 0x51, 0x58, 0x5d, 0x6c, 0x6e, 0x6f, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x64, 0x62, 0x60, 0x5f, 0x5f, 0x5f, 0x5d, 0x5c, 0x5d, 0x5c, 0x5a, 0x59, 0x59, 0x58, 0x57, 0x56, 0x54, 0x53, 0x54, 0x57, 0x55, 0x52, 0x53, 0x57, 0x58, 0x56, 0x4c, 0x40, 0x41, 0x4a, 0x4a, 0x42, 0x49, 0x4c, 0x4d, 0x49, 0x44, 0x41, 0x3e, 0x3b, 0x3a, 0x36, 0x37, 0x3e, 0x3e, 0x38, 0x34, 0x37, 0x32, 0x3a, 0x41, 0x44, 0x48, 0x4c, 0x4d, 0x4b, 0x43, 0x3a, 0x39, 0x4e, 0x6c, 0x7d, 0x7a, 0x71, 0x62, 0x64, 0x5f, 0x5a, 0x64, 0x78, 0x80, 0x7c, 0x66, 0x61, 0x5b, 0x55, 0x50, 0x4d, 0x4c, 0x4c, 0x49, 0x46, 0x4b, 0x51, 0x52, 0x55, 0x55, 0x4f, 0x4e, 0x52, 0x59, 0x61, 0x6c, 0x79, 0x72, 0x5b, 0x42, 0x40, 0x41, 0x42, 0x3d, 0x34, 0x2e, 0x2e, 0x32, 0x38, 0x3b, 0x37, 0x35, 0x3b, 0x44, 0x4a, 0x53, 0x53, 0x51, 0x4e, 0x4e, 0x52, 0x58, 0x5e, 0x59, 0x54, 0x4f, 0x4c, 0x49, 0x4d, 0x60, 0x75, 0x83, 0x84, 0x85, 0x84, 0x7e, 0x76, 0x71, 0x6f, 0x6b, 0x63, 0x54, 0x48, 0x47, 0x4f, 0x53, 0x52, 0x4d, 0x49, 0x43, 0x3d, 0x3e, 0x4e, 0x58, 0x54, 0x51, 0x4e, 0x4c, 0x53, 0x58, 0x4c, 0x3e, 0x3d, 0x30, 0x40, 0x43, 0x4b, 0x3e, 0x38, 0x24, 0x25, 0x3d, 0x4c, 0x4f, 0x5b, 0x4c, 0x58, 0x63, 0x5d, 0x61, 0x43, 0x4e, 0x5f, 0x74, 0x69, 0x4a, 0x27, 0x18, 0x31, 0x53, 0x6a, 0x5f, 0x5c, 0x73, 0x7b, 0x77, 0x54, 0x4a, 0x45, 0x40, 0x30, 0x39, 0x3c, 0x52, 0x5d, 0x5f, 0x5f, 0x67, 0x69, 0x5c, 0x4f, 0x44, 0x43, 0x34, 0x2b, 0x29, 0x1e, 0x27, 0x4a, 0x68, 0x64, 0x66, 0x67, 0x5c, 0x50, 0x5a, 0x70, 0x61, 0x45, 0x36, 0x4d, 0x73, 0x81, 0x6d, 0x54, 0x45, 0x4a, 0x4f, 0x51, 0x4e, 0x49, 0x47, 0x46, 0x4c, 0x4d, 0x4d, 0x4d, 0x4f, 0x51, 0x4f, 0x4b, 0x46, 0x46, 0x4a, 0x52, 0x55, 0x53, 0x4f, 0x4f, 0x48, 0x45, 0x42, 0x41, 0x43, 0x45, 0x46, 0x46, 0x42, 0x3f, 0x3c, 0x3a, 0x3b, 0x3e, 0x42, 0x44, 0x43, 0x46, 0x49, 0x4a, 0x4a, 0x4f, 0x57, 0x5d, 0x5a, 0x59, 0x58, 0x57, 0x59, 0x5d, 0x61, 0x65, 0x5a, 0x54, 0x4f, 0x4e, 0x51, 0x53, 0x51, 0x4d, 0x45, 0x43, 0x40, 0x3f, 0x41, 0x44, 0x48, 0x4a, 0x50, 0x4e, 0x4c, 0x4a, 0x48, 0x46, 0x44, 0x44, 0x42, 0x47, 0x4b, 0x49, 0x44, 0x40, 0x42, 0x44, 0x4f, 0x51, 0x50, 0x4c, 0x4e, 0x55, 0x56, 0x52, 0x4c, 0x4c, 0x49, 0x47, 0x47, 0x4a, 0x4c, 0x4b, 0x48, 0x46, 0x47, 0x4c, 0x4d, 0x49, 0x42, 0x3e, 0x3e, 0x42, 0x46, 0x45, 0x41, 0x3e, 0x3f, 0x42, 0x44, 0x45, 0x46, 0x48, 0x49, 0x4a, 0x4b, 0x4b, 0x47, 0x40, 0x3e, 0x43, 0x48, 0x4a, 0x4e, 0x53, 0x4a, 0x4c, 0x4c, 0x4a, 0x46, 0x46, 0x4a, 0x4e, 0x57, 0x4c, 0x48, 0x46, 0x42, 0x44, 0x4d, 0x51, 0x54, 0x4e, 0x48, 0x46, 0x49, 0x4c, 0x4d, 0x4d, 0x50, 0x52, 0x54, 0x55, 0x53, 0x4f, 0x49, 0x45, 0x4c, 0x4c, 0x4c, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x52, 0x54, 0x55, 0x53, 0x51, 0x4e, 0x4a, 0x45, 0x4f, 0x50, 0x51, 0x52, 0x56, 0x59, 0x58, 0x53, 0x5a, 0x5d, 0x5f, 0x5b, 0x56, 0x53, 0x57, 0x5b, 0x51, 0x52, 0x55, 0x5b, 0x5b, 0x57, 0x54, 0x55, 0x58, 0x55, 0x53, 0x55, 0x58, 0x5a, 0x5a, 0x58, 0x5b, 0x5c, 0x5c, 0x58, 0x52, 0x50, 0x54, 0x58, 0x53, 0x50, 0x50, 0x53, 0x53, 0x51, 0x51, 0x54, 0x4d, 0x4e, 0x51, 0x57, 0x5b, 0x59, 0x50, 0x48, 0x48, 0x4d, 0x53, 0x54, 0x55, 0x57, 0x58, 0x57, 0x56, 0x57, 0x58, 0x5a, 0x5d, 0x5d, 0x55, 0x4d, 0x4f, 0x59, 0x61, 0x61, 0x5c, 0x57, 0x54, 0x52, 0x4e, 0x52, 0x57, 0x5a, 0x5e, 0x61, 0x5e, 0x58, 0x50, 0x51, 0x54, 0x5a, 0x5b, 0x58, 0x54, 0x52, 0x55, 0x53, 0x51, 0x51, 0x54, 0x5d, 0x6c, 0x78, 0x7b, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x73, 0x71, 0x6e, 0x6c, 0x6a, 0x69, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x67, 0x69, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x73, 0x73, 0x75, 0x74, 0x72, 0x6d, 0x69, 0x67, 0x69, 0x6b, 0x71, 0x6d, 0x67, 0x5f, 0x57, 0x4f, 0x47, 0x42, 0x46, 0x42, 0x3e, 0x3c, 0x3d, 0x3e, 0x3e, 0x3d, 0x43, 0x43, 0x44, 0x45, 0x46, 0x48, 0x4a, 0x4b, 0x53, 0x51, 0x4e, 0x4b, 0x46, 0x42, 0x3f, 0x3d, 0x3e, 0x3b, 0x36, 0x33, 0x30, 0x2b, 0x26, 0x22, 0x24, 0x22, 0x24, 0x29, 0x2e, 0x2f, 0x30, 0x32, 0x2c, 0x2c, 0x2d, 0x2e, 0x30, 0x33, 0x36, 0x38, 0x38, 0x3c, 0x43, 0x49, 0x50, 0x58, 0x5f, 0x64, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6c, 0x69, 0x67, 0x64, 0x62, 0x60, 0x5f, 0x5f, 0x5e, 0x5d, 0x5c, 0x5c, 0x5b, 0x5a, 0x59, 0x59, 0x58, 0x57, 0x55, 0x55, 0x53, 0x54, 0x56, 0x54, 0x52, 0x53, 0x57, 0x56, 0x52, 0x48, 0x3f, 0x3f, 0x45, 0x45, 0x41, 0x44, 0x48, 0x4b, 0x49, 0x46, 0x44, 0x41, 0x3e, 0x36, 0x33, 0x37, 0x40, 0x40, 0x38, 0x32, 0x33, 0x2f, 0x36, 0x3c, 0x3f, 0x45, 0x4f, 0x59, 0x5d, 0x4e, 0x41, 0x38, 0x3f, 0x50, 0x5d, 0x5c, 0x56, 0x71, 0x69, 0x5e, 0x5f, 0x6f, 0x80, 0x81, 0x78, 0x6b, 0x65, 0x5e, 0x5a, 0x54, 0x4e, 0x4c, 0x4e, 0x4b, 0x48, 0x4d, 0x52, 0x51, 0x53, 0x52, 0x4c, 0x47, 0x49, 0x52, 0x58, 0x58, 0x57, 0x4e, 0x3e, 0x44, 0x41, 0x3f, 0x3d, 0x38, 0x30, 0x2d, 0x2e, 0x2f, 0x33, 0x38, 0x3f, 0x4a, 0x51, 0x4b, 0x3f, 0x50, 0x51, 0x51, 0x4c, 0x49, 0x4b, 0x54, 0x5c, 0x55, 0x4e, 0x48, 0x46, 0x44, 0x47, 0x54, 0x63, 0x76, 0x83, 0x8a, 0x83, 0x77, 0x70, 0x6b, 0x67, 0x6c, 0x62, 0x54, 0x4a, 0x4d, 0x55, 0x59, 0x58, 0x45, 0x43, 0x44, 0x46, 0x49, 0x50, 0x50, 0x45, 0x53, 0x44, 0x3a, 0x42, 0x4f, 0x4a, 0x3c, 0x35, 0x31, 0x3a, 0x41, 0x53, 0x4b, 0x3b, 0x24, 0x28, 0x3b, 0x4e, 0x56, 0x50, 0x4c, 0x53, 0x64, 0x5c, 0x4d, 0x3b, 0x53, 0x67, 0x77, 0x65, 0x44, 0x25, 0x1c, 0x32, 0x4c, 0x60, 0x60, 0x63, 0x70, 0x68, 0x5c, 0x48, 0x49, 0x4b, 0x48, 0x35, 0x3c, 0x45, 0x4b, 0x62, 0x68, 0x5c, 0x5b, 0x62, 0x61, 0x5b, 0x4f, 0x4e, 0x3f, 0x37, 0x35, 0x29, 0x2c, 0x48, 0x51, 0x64, 0x75, 0x7b, 0x7d, 0x75, 0x5c, 0x42, 0x33, 0x34, 0x3b, 0x45, 0x4e, 0x51, 0x51, 0x51, 0x43, 0x46, 0x49, 0x4a, 0x48, 0x49, 0x4b, 0x4e, 0x57, 0x51, 0x4d, 0x4e, 0x51, 0x50, 0x4e, 0x4d, 0x49, 0x48, 0x4a, 0x4e, 0x50, 0x4d, 0x4b, 0x4b, 0x49, 0x47, 0x45, 0x42, 0x42, 0x43, 0x47, 0x49, 0x46, 0x44, 0x42, 0x40, 0x40, 0x43, 0x46, 0x48, 0x4b, 0x4f, 0x51, 0x50, 0x4e, 0x50, 0x58, 0x5f, 0x5b, 0x59, 0x57, 0x59, 0x5f, 0x63, 0x65, 0x65, 0x5e, 0x5d, 0x5b, 0x57, 0x54, 0x53, 0x54, 0x55, 0x51, 0x4a, 0x42, 0x3e, 0x40, 0x45, 0x48, 0x4a, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x49, 0x44, 0x41, 0x43, 0x47, 0x4b, 0x4c, 0x4a, 0x46, 0x45, 0x44, 0x4b, 0x4a, 0x47, 0x44, 0x48, 0x4f, 0x51, 0x4d, 0x4a, 0x4a, 0x4a, 0x49, 0x4b, 0x4e, 0x4d, 0x4a, 0x4a, 0x49, 0x4b, 0x4f, 0x50, 0x4b, 0x44, 0x41, 0x41, 0x41, 0x41, 0x40, 0x3f, 0x3e, 0x3e, 0x3f, 0x43, 0x44, 0x45, 0x46, 0x48, 0x48, 0x49, 0x49, 0x4e, 0x4a, 0x48, 0x4b, 0x4b, 0x49, 0x4a, 0x4f, 0x65, 0x6e, 0x74, 0x6e, 0x5e, 0x50, 0x4c, 0x4d, 0x47, 0x38, 0x33, 0x37, 0x36, 0x3a, 0x4a, 0x56, 0x56, 0x51, 0x4a, 0x45, 0x45, 0x48, 0x4c, 0x4e, 0x4f, 0x51, 0x54, 0x55, 0x54, 0x50, 0x4b, 0x47, 0x49, 0x4b, 0x4d, 0x4d, 0x4d, 0x4e, 0x50, 0x53, 0x5a, 0x56, 0x50, 0x4a, 0x49, 0x4b, 0x4b, 0x49, 0x51, 0x53, 0x54, 0x55, 0x59, 0x5c, 0x5a, 0x56, 0x5b, 0x5f, 0x62, 0x5d, 0x55, 0x51, 0x53, 0x58, 0x50, 0x52, 0x56, 0x5b, 0x5c, 0x5a, 0x59, 0x5a, 0x59, 0x58, 0x58, 0x5a, 0x5d, 0x5e, 0x5e, 0x5c, 0x57, 0x57, 0x55, 0x53, 0x51, 0x51, 0x54, 0x57, 0x57, 0x54, 0x53, 0x55, 0x58, 0x58, 0x58, 0x58, 0x54, 0x54, 0x56, 0x59, 0x5b, 0x5a, 0x56, 0x52, 0x4f, 0x52, 0x55, 0x56, 0x59, 0x5b, 0x5b, 0x58, 0x59, 0x5d, 0x61, 0x60, 0x5f, 0x5e, 0x5a, 0x56, 0x54, 0x5d, 0x64, 0x64, 0x5e, 0x59, 0x54, 0x51, 0x55, 0x56, 0x56, 0x58, 0x5a, 0x5a, 0x55, 0x4f, 0x53, 0x53, 0x56, 0x5b, 0x5b, 0x56, 0x51, 0x4e, 0x59, 0x51, 0x4f, 0x51, 0x4f, 0x4e, 0x60, 0x78, 0x7b, 0x7d, 0x7c, 0x79, 0x7a, 0x7d, 0x7b, 0x75, 0x74, 0x75, 0x75, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x69, 0x6a, 0x66, 0x68, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6c, 0x70, 0x70, 0x72, 0x74, 0x75, 0x76, 0x77, 0x77, 0x7a, 0x7a, 0x78, 0x76, 0x73, 0x70, 0x6d, 0x6c, 0x6e, 0x6f, 0x72, 0x74, 0x72, 0x6d, 0x66, 0x61, 0x58, 0x52, 0x4b, 0x47, 0x47, 0x47, 0x45, 0x42, 0x3f, 0x3e, 0x3c, 0x3c, 0x3c, 0x3d, 0x3e, 0x3f, 0x3e, 0x3e, 0x3e, 0x3f, 0x3f, 0x40, 0x40, 0x40, 0x3f, 0x3e, 0x3d, 0x3a, 0x37, 0x34, 0x31, 0x2f, 0x34, 0x37, 0x3a, 0x3c, 0x3f, 0x41, 0x3f, 0x3c, 0x37, 0x39, 0x3c, 0x40, 0x43, 0x44, 0x45, 0x44, 0x43, 0x46, 0x4b, 0x51, 0x58, 0x60, 0x68, 0x6c, 0x70, 0x70, 0x70, 0x70, 0x6d, 0x6a, 0x67, 0x65, 0x64, 0x62, 0x60, 0x5e, 0x5e, 0x5d, 0x5b, 0x5a, 0x5b, 0x5a, 0x59, 0x58, 0x58, 0x57, 0x56, 0x55, 0x55, 0x54, 0x53, 0x54, 0x53, 0x52, 0x54, 0x58, 0x57, 0x4f, 0x47, 0x42, 0x41, 0x43, 0x44, 0x43, 0x40, 0x45, 0x49, 0x48, 0x46, 0x45, 0x42, 0x3e, 0x34, 0x33, 0x3a, 0x44, 0x45, 0x3b, 0x32, 0x31, 0x32, 0x37, 0x3d, 0x41, 0x47, 0x4f, 0x55, 0x57, 0x4d, 0x49, 0x42, 0x3f, 0x42, 0x4c, 0x57, 0x5e, 0x4e, 0x4c, 0x51, 0x63, 0x78, 0x82, 0x7d, 0x73, 0x66, 0x5f, 0x5c, 0x5e, 0x59, 0x4e, 0x48, 0x49, 0x4a, 0x47, 0x4b, 0x50, 0x50, 0x51, 0x50, 0x4a, 0x4a, 0x4d, 0x58, 0x5f, 0x57, 0x4e, 0x48, 0x41, 0x44, 0x41, 0x3c, 0x39, 0x34, 0x30, 0x2f, 0x32, 0x3c, 0x3c, 0x3f, 0x4b, 0x63, 0x70, 0x5f, 0x44, 0x4a, 0x4e, 0x51, 0x4d, 0x47, 0x47, 0x50, 0x59, 0x52, 0x4a, 0x44, 0x43, 0x43, 0x44, 0x4a, 0x51, 0x67, 0x7d, 0x8a, 0x7e, 0x6f, 0x6c, 0x6c, 0x68, 0x6b, 0x60, 0x51, 0x4a, 0x4e, 0x57, 0x59, 0x57, 0x55, 0x48, 0x40, 0x40, 0x46, 0x54, 0x60, 0x60, 0x5b, 0x49, 0x3e, 0x46, 0x4f, 0x48, 0x37, 0x2b, 0x2a, 0x43, 0x4f, 0x56, 0x53, 0x4f, 0x39, 0x2c, 0x3b, 0x53, 0x5b, 0x4b, 0x56, 0x57, 0x63, 0x54, 0x41, 0x3f, 0x63, 0x76, 0x7a, 0x5c, 0x3b, 0x25, 0x1f, 0x3c, 0x54, 0x63, 0x68, 0x72, 0x78, 0x65, 0x46, 0x41, 0x4a, 0x4c, 0x4c, 0x34, 0x3b, 0x4e, 0x69, 0x76, 0x73, 0x65, 0x64, 0x66, 0x5d, 0x53, 0x4c, 0x4e, 0x46, 0x42, 0x40, 0x34, 0x34, 0x47, 0x57, 0x60, 0x5f, 0x5a, 0x65, 0x72, 0x61, 0x40, 0x1c, 0x2f, 0x45, 0x50, 0x4f, 0x4b, 0x49, 0x49, 0x4c, 0x4b, 0x49, 0x46, 0x45, 0x47, 0x4d, 0x51, 0x57, 0x50, 0x4c, 0x4e, 0x4f, 0x4b, 0x49, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4b, 0x49, 0x49, 0x4c, 0x49, 0x44, 0x3f, 0x3e, 0x41, 0x48, 0x4d, 0x44, 0x43, 0x41, 0x3f, 0x3e, 0x3f, 0x41, 0x43, 0x53, 0x56, 0x58, 0x54, 0x4e, 0x4c, 0x51, 0x56, 0x5b, 0x5b, 0x5d, 0x65, 0x6c, 0x6f, 0x6a, 0x64, 0x66, 0x65, 0x62, 0x5b, 0x55, 0x52, 0x54, 0x56, 0x5d, 0x55, 0x49, 0x40, 0x3f, 0x43, 0x49, 0x4d, 0x53, 0x50, 0x4e, 0x4e, 0x4e, 0x4b, 0x45, 0x40, 0x43, 0x45, 0x48, 0x4b, 0x4d, 0x4c, 0x4a, 0x49, 0x42, 0x42, 0x41, 0x42, 0x48, 0x4e, 0x4d, 0x48, 0x47, 0x4a, 0x4c, 0x4d, 0x50, 0x50, 0x4c, 0x46, 0x48, 0x47, 0x48, 0x4b, 0x4b, 0x48, 0x45, 0x45, 0x42, 0x3e, 0x3a, 0x39, 0x3b, 0x3e, 0x3f, 0x3e, 0x40, 0x40, 0x42, 0x44, 0x46, 0x47, 0x48, 0x48, 0x45, 0x43, 0x46, 0x4b, 0x4a, 0x47, 0x49, 0x4e, 0x4d, 0x58, 0x62, 0x62, 0x59, 0x51, 0x51, 0x53, 0x5b, 0x56, 0x5c, 0x64, 0x5f, 0x58, 0x56, 0x54, 0x56, 0x52, 0x4d, 0x47, 0x45, 0x47, 0x4b, 0x4e, 0x51, 0x52, 0x54, 0x55, 0x54, 0x52, 0x50, 0x4e, 0x46, 0x4a, 0x4e, 0x50, 0x50, 0x51, 0x55, 0x59, 0x55, 0x51, 0x4a, 0x46, 0x49, 0x50, 0x54, 0x53, 0x54, 0x55, 0x55, 0x55, 0x58, 0x5b, 0x5b, 0x59, 0x63, 0x68, 0x6c, 0x67, 0x5d, 0x55, 0x54, 0x57, 0x56, 0x55, 0x56, 0x5a, 0x5d, 0x5e, 0x5e, 0x5d, 0x59, 0x58, 0x58, 0x59, 0x5c, 0x61, 0x64, 0x66, 0x62, 0x60, 0x5f, 0x61, 0x65, 0x66, 0x64, 0x61, 0x5c, 0x58, 0x54, 0x56, 0x5a, 0x5d, 0x5e, 0x5d, 0x60, 0x5d, 0x59, 0x56, 0x56, 0x57, 0x5a, 0x5b, 0x5c, 0x5f, 0x61, 0x61, 0x60, 0x5f, 0x5c, 0x58, 0x61, 0x65, 0x67, 0x64, 0x61, 0x5f, 0x5c, 0x5a, 0x5a, 0x62, 0x68, 0x68, 0x64, 0x5f, 0x5c, 0x59, 0x57, 0x54, 0x50, 0x50, 0x55, 0x59, 0x5a, 0x59, 0x55, 0x55, 0x57, 0x5a, 0x5b, 0x57, 0x54, 0x52, 0x55, 0x4f, 0x50, 0x54, 0x51, 0x4e, 0x5b, 0x70, 0x77, 0x7e, 0x80, 0x7c, 0x7b, 0x7e, 0x7c, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x72, 0x71, 0x6f, 0x6d, 0x6e, 0x6d, 0x6a, 0x67, 0x66, 0x68, 0x6a, 0x68, 0x69, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x77, 0x71, 0x6d, 0x6b, 0x6d, 0x71, 0x76, 0x7a, 0x7c, 0x7c, 0x7b, 0x6f, 0x6a, 0x64, 0x5f, 0x5b, 0x58, 0x54, 0x52, 0x4d, 0x4b, 0x47, 0x44, 0x40, 0x3f, 0x3e, 0x3e, 0x45, 0x45, 0x45, 0x45, 0x46, 0x46, 0x47, 0x47, 0x45, 0x43, 0x41, 0x3f, 0x3d, 0x3e, 0x40, 0x42, 0x43, 0x49, 0x4b, 0x49, 0x49, 0x4b, 0x47, 0x41, 0x4a, 0x4c, 0x4f, 0x51, 0x52, 0x51, 0x4f, 0x4d, 0x4e, 0x50, 0x53, 0x58, 0x5e, 0x65, 0x6b, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x69, 0x66, 0x64, 0x63, 0x61, 0x5f, 0x5d, 0x5d, 0x5c, 0x5a, 0x59, 0x5a, 0x59, 0x58, 0x57, 0x58, 0x57, 0x56, 0x54, 0x55, 0x54, 0x53, 0x53, 0x54, 0x54, 0x56, 0x59, 0x53, 0x4b, 0x45, 0x46, 0x46, 0x43, 0x42, 0x44, 0x41, 0x44, 0x46, 0x44, 0x43, 0x42, 0x3f, 0x3b, 0x35, 0x36, 0x3e, 0x4a, 0x4b, 0x3f, 0x36, 0x34, 0x31, 0x34, 0x3b, 0x45, 0x4f, 0x51, 0x4a, 0x42, 0x40, 0x47, 0x4f, 0x56, 0x5a, 0x5b, 0x58, 0x55, 0x4a, 0x4f, 0x5f, 0x72, 0x79, 0x72, 0x6b, 0x68, 0x5c, 0x55, 0x56, 0x60, 0x61, 0x55, 0x4a, 0x47, 0x47, 0x44, 0x48, 0x4e, 0x4e, 0x51, 0x51, 0x4b, 0x49, 0x4d, 0x58, 0x5a, 0x51, 0x4d, 0x4d, 0x49, 0x41, 0x3e, 0x3a, 0x36, 0x32, 0x31, 0x33, 0x36, 0x3e, 0x3c, 0x38, 0x40, 0x59, 0x6c, 0x61, 0x4a, 0x46, 0x4c, 0x50, 0x50, 0x4b, 0x49, 0x4c, 0x51, 0x4f, 0x4a, 0x47, 0x47, 0x47, 0x46, 0x49, 0x4d, 0x5b, 0x6d, 0x79, 0x74, 0x6c, 0x6d, 0x70, 0x70, 0x68, 0x5b, 0x4b, 0x46, 0x4b, 0x51, 0x50, 0x4b, 0x39, 0x33, 0x38, 0x44, 0x4c, 0x55, 0x5d, 0x5d, 0x5f, 0x50, 0x49, 0x4b, 0x49, 0x41, 0x3a, 0x36, 0x32, 0x4e, 0x5c, 0x5a, 0x55, 0x4f, 0x3d, 0x2e, 0x40, 0x58, 0x5c, 0x54, 0x61, 0x5c, 0x59, 0x4b, 0x49, 0x53, 0x7a, 0x82, 0x76, 0x4d, 0x31, 0x2a, 0x24, 0x4b, 0x61, 0x64, 0x63, 0x6c, 0x71, 0x5e, 0x46, 0x45, 0x49, 0x46, 0x46, 0x2e, 0x39, 0x55, 0x71, 0x74, 0x70, 0x6c, 0x6d, 0x64, 0x51, 0x45, 0x47, 0x4e, 0x4e, 0x49, 0x42, 0x36, 0x3a, 0x4c, 0x50, 0x58, 0x62, 0x6d, 0x77, 0x72, 0x58, 0x3b, 0x28, 0x38, 0x4c, 0x58, 0x5c, 0x5a, 0x52, 0x4a, 0x50, 0x4e, 0x4c, 0x4b, 0x4c, 0x4e, 0x50, 0x52, 0x4e, 0x4a, 0x4a, 0x4d, 0x4c, 0x47, 0x47, 0x4b, 0x54, 0x54, 0x54, 0x53, 0x52, 0x51, 0x50, 0x4f, 0x4d, 0x4a, 0x45, 0x42, 0x41, 0x43, 0x46, 0x49, 0x48, 0x48, 0x46, 0x44, 0x41, 0x3f, 0x40, 0x42, 0x4b, 0x50, 0x55, 0x54, 0x51, 0x50, 0x54, 0x58, 0x5f, 0x60, 0x64, 0x6b, 0x72, 0x72, 0x6a, 0x63, 0x67, 0x64, 0x5d, 0x56, 0x51, 0x4f, 0x4f, 0x50, 0x58, 0x55, 0x4e, 0x47, 0x44, 0x45, 0x4b, 0x4f, 0x54, 0x51, 0x4f, 0x4e, 0x4f, 0x4d, 0x49, 0x45, 0x3f, 0x3f, 0x41, 0x45, 0x4a, 0x4c, 0x4d, 0x4c, 0x47, 0x45, 0x43, 0x45, 0x4b, 0x4f, 0x4e, 0x4a, 0x49, 0x4d, 0x51, 0x53, 0x53, 0x50, 0x48, 0x40, 0x41, 0x42, 0x46, 0x4b, 0x4c, 0x49, 0x48, 0x49, 0x41, 0x3c, 0x36, 0x34, 0x38, 0x3d, 0x40, 0x41, 0x3c, 0x3e, 0x40, 0x43, 0x46, 0x48, 0x49, 0x4a, 0x52, 0x50, 0x50, 0x52, 0x50, 0x4d, 0x51, 0x58, 0x4f, 0x4d, 0x49, 0x44, 0x42, 0x45, 0x4c, 0x51, 0x61, 0x64, 0x6c, 0x70, 0x69, 0x61, 0x57, 0x49, 0x4d, 0x4d, 0x4b, 0x49, 0x48, 0x48, 0x4b, 0x4d, 0x53, 0x52, 0x51, 0x50, 0x4f, 0x4f, 0x4f, 0x4f, 0x4c, 0x50, 0x54, 0x54, 0x52, 0x51, 0x51, 0x53, 0x4e, 0x4f, 0x50, 0x52, 0x57, 0x5a, 0x59, 0x54, 0x56, 0x56, 0x55, 0x53, 0x55, 0x5a, 0x5c, 0x5b, 0x5e, 0x63, 0x66, 0x62, 0x5a, 0x54, 0x55, 0x58, 0x58, 0x55, 0x53, 0x55, 0x5b, 0x5f, 0x5f, 0x5c, 0x5c, 0x5a, 0x58, 0x58, 0x5c, 0x64, 0x6d, 0x73, 0x74, 0x6e, 0x69, 0x6d, 0x75, 0x77, 0x70, 0x67, 0x5d, 0x5a, 0x57, 0x59, 0x5e, 0x62, 0x5f, 0x5c, 0x5d, 0x5d, 0x5d, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b, 0x65, 0x6b, 0x70, 0x70, 0x6d, 0x69, 0x65, 0x61, 0x6b, 0x6c, 0x6b, 0x67, 0x63, 0x61, 0x5e, 0x5a, 0x5f, 0x65, 0x6a, 0x6a, 0x68, 0x67, 0x67, 0x66, 0x64, 0x5e, 0x58, 0x57, 0x5a, 0x5f, 0x63, 0x65, 0x56, 0x54, 0x55, 0x59, 0x5c, 0x5c, 0x5c, 0x5e, 0x55, 0x53, 0x53, 0x54, 0x54, 0x55, 0x5c, 0x65, 0x6e, 0x7a, 0x81, 0x7d, 0x7a, 0x7b, 0x7a, 0x75, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x72, 0x71, 0x6e, 0x6e, 0x6d, 0x6a, 0x67, 0x66, 0x67, 0x69, 0x6c, 0x6b, 0x6b, 0x6a, 0x6b, 0x6d, 0x71, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7b, 0x75, 0x70, 0x71, 0x71, 0x71, 0x73, 0x77, 0x7b, 0x7d, 0x7e, 0x82, 0x82, 0x7f, 0x79, 0x72, 0x6b, 0x68, 0x66, 0x6b, 0x69, 0x66, 0x62, 0x5f, 0x5c, 0x5b, 0x5b, 0x5a, 0x59, 0x58, 0x55, 0x54, 0x52, 0x51, 0x51, 0x52, 0x52, 0x51, 0x50, 0x51, 0x53, 0x57, 0x5a, 0x57, 0x5d, 0x5f, 0x5c, 0x5c, 0x5f, 0x5d, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5b, 0x59, 0x56, 0x55, 0x56, 0x57, 0x59, 0x5c, 0x61, 0x66, 0x6a, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x67, 0x65, 0x64, 0x61, 0x60, 0x5e, 0x5c, 0x5c, 0x5b, 0x5a, 0x58, 0x5a, 0x59, 0x57, 0x57, 0x57, 0x57, 0x56, 0x55, 0x54, 0x54, 0x54, 0x54, 0x55, 0x56, 0x57, 0x57, 0x49, 0x43, 0x42, 0x47, 0x47, 0x42, 0x3f, 0x41, 0x41, 0x42, 0x41, 0x3f, 0x3e, 0x3e, 0x3d, 0x3a, 0x38, 0x39, 0x41, 0x4d, 0x4e, 0x43, 0x39, 0x37, 0x30, 0x2e, 0x34, 0x44, 0x56, 0x5c, 0x54, 0x4a, 0x4b, 0x49, 0x4a, 0x50, 0x5c, 0x65, 0x61, 0x59, 0x59, 0x5a, 0x64, 0x6f, 0x6c, 0x61, 0x5e, 0x64, 0x5a, 0x52, 0x52, 0x5d, 0x64, 0x5e, 0x54, 0x50, 0x48, 0x44, 0x48, 0x4d, 0x4d, 0x51, 0x52, 0x4d, 0x4b, 0x50, 0x53, 0x4b, 0x43, 0x48, 0x4a, 0x42, 0x3e, 0x3d, 0x39, 0x34, 0x31, 0x31, 0x33, 0x34, 0x37, 0x37, 0x33, 0x33, 0x43, 0x58, 0x5d, 0x56, 0x49, 0x4c, 0x50, 0x52, 0x50, 0x4c, 0x47, 0x43, 0x49, 0x4a, 0x4b, 0x4b, 0x4a, 0x49, 0x4c, 0x51, 0x53, 0x5b, 0x65, 0x6b, 0x6e, 0x6f, 0x70, 0x71, 0x65, 0x57, 0x49, 0x46, 0x4b, 0x4e, 0x4a, 0x44, 0x35, 0x38, 0x47, 0x55, 0x59, 0x5c, 0x60, 0x60, 0x59, 0x46, 0x3f, 0x42, 0x3f, 0x40, 0x46, 0x47, 0x46, 0x4d, 0x59, 0x5e, 0x53, 0x33, 0x26, 0x2f, 0x43, 0x5d, 0x5b, 0x5e, 0x57, 0x50, 0x49, 0x4a, 0x58, 0x66, 0x87, 0x80, 0x67, 0x39, 0x28, 0x33, 0x45, 0x67, 0x6e, 0x63, 0x5e, 0x65, 0x6a, 0x5a, 0x4b, 0x47, 0x46, 0x3f, 0x40, 0x2c, 0x3b, 0x5b, 0x71, 0x7d, 0x7d, 0x74, 0x6d, 0x60, 0x4a, 0x3b, 0x49, 0x50, 0x50, 0x43, 0x34, 0x2f, 0x3f, 0x57, 0x5e, 0x58, 0x56, 0x5e, 0x68, 0x65, 0x56, 0x47, 0x38, 0x40, 0x49, 0x4c, 0x4e, 0x51, 0x54, 0x56, 0x4c, 0x4c, 0x4f, 0x55, 0x59, 0x59, 0x55, 0x50, 0x45, 0x45, 0x48, 0x4b, 0x4b, 0x4a, 0x4b, 0x4e, 0x55, 0x59, 0x5a, 0x58, 0x57, 0x57, 0x56, 0x54, 0x51, 0x4f, 0x4e, 0x4f, 0x51, 0x50, 0x4b, 0x46, 0x49, 0x4a, 0x4a, 0x48, 0x45, 0x43, 0x44, 0x45, 0x49, 0x4d, 0x52, 0x55, 0x55, 0x56, 0x59, 0x5c, 0x65, 0x64, 0x64, 0x66, 0x69, 0x68, 0x65, 0x61, 0x63, 0x5e, 0x57, 0x52, 0x50, 0x4f, 0x4d, 0x4b, 0x47, 0x4b, 0x4e, 0x4f, 0x4d, 0x4c, 0x4e, 0x50, 0x52, 0x50, 0x4e, 0x4e, 0x4f, 0x50, 0x4e, 0x4d, 0x41, 0x40, 0x41, 0x44, 0x49, 0x4d, 0x4f, 0x4f, 0x51, 0x4c, 0x47, 0x46, 0x48, 0x4c, 0x4d, 0x4c, 0x4d, 0x52, 0x56, 0x57, 0x54, 0x4f, 0x47, 0x41, 0x3f, 0x44, 0x4d, 0x54, 0x54, 0x4f, 0x4c, 0x4c, 0x4a, 0x45, 0x3f, 0x3b, 0x3b, 0x3c, 0x3d, 0x3e, 0x3c, 0x3d, 0x40, 0x43, 0x46, 0x48, 0x4a, 0x4b, 0x4f, 0x4a, 0x48, 0x48, 0x48, 0x49, 0x50, 0x59, 0x69, 0x62, 0x57, 0x4e, 0x4a, 0x4b, 0x4c, 0x4e, 0x54, 0x50, 0x4d, 0x49, 0x47, 0x4e, 0x4f, 0x46, 0x44, 0x46, 0x48, 0x4a, 0x4b, 0x4b, 0x4c, 0x4d, 0x50, 0x4f, 0x4c, 0x4a, 0x49, 0x49, 0x49, 0x4a, 0x50, 0x52, 0x55, 0x55, 0x54, 0x52, 0x52, 0x53, 0x56, 0x56, 0x55, 0x54, 0x56, 0x58, 0x57, 0x54, 0x56, 0x56, 0x55, 0x52, 0x54, 0x58, 0x5b, 0x5b, 0x57, 0x5a, 0x5b, 0x59, 0x55, 0x55, 0x58, 0x5d, 0x59, 0x57, 0x54, 0x54, 0x5a, 0x5f, 0x5e, 0x5a, 0x5e, 0x5d, 0x5c, 0x5b, 0x5f, 0x67, 0x73, 0x7c, 0x79, 0x70, 0x69, 0x6a, 0x71, 0x74, 0x6d, 0x65, 0x5d, 0x5e, 0x60, 0x63, 0x68, 0x6a, 0x65, 0x5e, 0x5e, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x63, 0x66, 0x6f, 0x77, 0x79, 0x78, 0x76, 0x72, 0x6f, 0x71, 0x71, 0x6d, 0x69, 0x66, 0x65, 0x62, 0x5e, 0x62, 0x66, 0x67, 0x65, 0x65, 0x69, 0x6d, 0x6f, 0x6a, 0x65, 0x60, 0x5e, 0x5d, 0x5d, 0x5e, 0x60, 0x5e, 0x5b, 0x59, 0x5b, 0x5d, 0x5d, 0x5e, 0x5f, 0x5c, 0x5a, 0x55, 0x51, 0x54, 0x5a, 0x5d, 0x5d, 0x65, 0x73, 0x7f, 0x81, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x76, 0x75, 0x73, 0x73, 0x6e, 0x6d, 0x6b, 0x69, 0x67, 0x66, 0x67, 0x68, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6f, 0x73, 0x77, 0x78, 0x79, 0x7b, 0x7e, 0x7f, 0x80, 0x7f, 0x7f, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7d, 0x79, 0x75, 0x74, 0x73, 0x72, 0x73, 0x76, 0x7a, 0x7c, 0x7c, 0x82, 0x86, 0x88, 0x87, 0x81, 0x7d, 0x7c, 0x7d, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x73, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x67, 0x66, 0x66, 0x66, 0x65, 0x63, 0x62, 0x61, 0x5e, 0x63, 0x67, 0x69, 0x6b, 0x6e, 0x6f, 0x6e, 0x61, 0x61, 0x61, 0x61, 0x60, 0x5f, 0x5d, 0x5c, 0x5c, 0x5c, 0x5d, 0x60, 0x63, 0x66, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x67, 0x65, 0x63, 0x62, 0x60, 0x5e, 0x5c, 0x5b, 0x5b, 0x5a, 0x59, 0x58, 0x5a, 0x58, 0x57, 0x57, 0x58, 0x57, 0x56, 0x55, 0x53, 0x54, 0x55, 0x55, 0x55, 0x56, 0x54, 0x51, 0x44, 0x41, 0x42, 0x47, 0x47, 0x42, 0x3e, 0x3f, 0x3d, 0x3d, 0x3c, 0x3a, 0x3b, 0x3e, 0x3e, 0x3c, 0x39, 0x39, 0x42, 0x4f, 0x50, 0x45, 0x3b, 0x39, 0x3c, 0x38, 0x3a, 0x47, 0x58, 0x62, 0x64, 0x64, 0x61, 0x63, 0x5f, 0x53, 0x4b, 0x4d, 0x52, 0x55, 0x53, 0x4f, 0x54, 0x62, 0x66, 0x5e, 0x59, 0x5a, 0x5a, 0x53, 0x4e, 0x53, 0x59, 0x5b, 0x59, 0x56, 0x4b, 0x46, 0x48, 0x4c, 0x4c, 0x4f, 0x51, 0x4d, 0x4d, 0x51, 0x50, 0x45, 0x3e, 0x47, 0x4b, 0x41, 0x3f, 0x3f, 0x3a, 0x33, 0x2e, 0x2e, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x36, 0x3d, 0x4d, 0x5a, 0x60, 0x50, 0x4f, 0x4f, 0x50, 0x51, 0x4c, 0x43, 0x3b, 0x41, 0x46, 0x4a, 0x49, 0x47, 0x48, 0x4d, 0x53, 0x53, 0x55, 0x5d, 0x69, 0x71, 0x71, 0x6e, 0x6c, 0x63, 0x57, 0x4c, 0x4c, 0x51, 0x52, 0x4c, 0x47, 0x3f, 0x3d, 0x41, 0x43, 0x42, 0x4b, 0x59, 0x5e, 0x51, 0x3b, 0x39, 0x45, 0x4a, 0x4d, 0x4c, 0x41, 0x44, 0x4e, 0x5b, 0x57, 0x4b, 0x2c, 0x26, 0x30, 0x42, 0x59, 0x55, 0x57, 0x3f, 0x3c, 0x43, 0x54, 0x60, 0x6e, 0x88, 0x77, 0x58, 0x2b, 0x26, 0x40, 0x67, 0x79, 0x6d, 0x5f, 0x62, 0x6b, 0x6e, 0x62, 0x4c, 0x43, 0x43, 0x3e, 0x3d, 0x2f, 0x44, 0x62, 0x74, 0x83, 0x7f, 0x6f, 0x6d, 0x6a, 0x51, 0x35, 0x3b, 0x3e, 0x3a, 0x2b, 0x1f, 0x29, 0x48, 0x64, 0x69, 0x64, 0x60, 0x67, 0x79, 0x7f, 0x6d, 0x54, 0x41, 0x40, 0x42, 0x49, 0x50, 0x55, 0x58, 0x5a, 0x4f, 0x4f, 0x51, 0x59, 0x60, 0x5f, 0x56, 0x4d, 0x45, 0x47, 0x48, 0x48, 0x4a, 0x4d, 0x4d, 0x4b, 0x4f, 0x54, 0x58, 0x57, 0x56, 0x56, 0x55, 0x52, 0x52, 0x50, 0x51, 0x59, 0x61, 0x61, 0x57, 0x4c, 0x41, 0x44, 0x46, 0x45, 0x43, 0x42, 0x44, 0x46, 0x54, 0x55, 0x56, 0x56, 0x56, 0x57, 0x59, 0x5a, 0x62, 0x61, 0x60, 0x5e, 0x5d, 0x5d, 0x5e, 0x5f, 0x60, 0x5c, 0x58, 0x55, 0x53, 0x50, 0x4a, 0x46, 0x3e, 0x43, 0x4a, 0x50, 0x54, 0x54, 0x53, 0x52, 0x50, 0x51, 0x51, 0x52, 0x52, 0x52, 0x52, 0x51, 0x48, 0x47, 0x47, 0x49, 0x4d, 0x4f, 0x50, 0x51, 0x51, 0x4d, 0x49, 0x47, 0x48, 0x48, 0x49, 0x4a, 0x4d, 0x53, 0x57, 0x57, 0x54, 0x52, 0x4f, 0x4c, 0x4d, 0x52, 0x5a, 0x5e, 0x5b, 0x52, 0x4d, 0x4c, 0x4d, 0x4c, 0x49, 0x45, 0x40, 0x3c, 0x3b, 0x3b, 0x3d, 0x3e, 0x40, 0x42, 0x44, 0x45, 0x46, 0x47, 0x49, 0x48, 0x4b, 0x54, 0x5a, 0x5d, 0x64, 0x6c, 0x72, 0x73, 0x75, 0x76, 0x76, 0x78, 0x7b, 0x7d, 0x70, 0x5f, 0x50, 0x49, 0x44, 0x47, 0x4a, 0x45, 0x45, 0x47, 0x49, 0x4c, 0x4e, 0x4d, 0x4c, 0x4b, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x50, 0x50, 0x51, 0x52, 0x54, 0x56, 0x58, 0x59, 0x5d, 0x5b, 0x55, 0x4e, 0x4c, 0x50, 0x52, 0x53, 0x53, 0x55, 0x55, 0x54, 0x54, 0x57, 0x59, 0x58, 0x5f, 0x61, 0x63, 0x63, 0x61, 0x60, 0x60, 0x61, 0x62, 0x64, 0x64, 0x62, 0x62, 0x62, 0x60, 0x5b, 0x5c, 0x5e, 0x5e, 0x5e, 0x60, 0x66, 0x6f, 0x77, 0x73, 0x6f, 0x6b, 0x6d, 0x71, 0x72, 0x6d, 0x68, 0x61, 0x63, 0x64, 0x66, 0x6a, 0x6e, 0x6c, 0x67, 0x67, 0x64, 0x61, 0x61, 0x64, 0x68, 0x6b, 0x6d, 0x67, 0x6d, 0x74, 0x78, 0x7a, 0x7b, 0x77, 0x73, 0x6f, 0x70, 0x6d, 0x69, 0x66, 0x66, 0x65, 0x64, 0x62, 0x63, 0x60, 0x5b, 0x5c, 0x63, 0x6b, 0x70, 0x5c, 0x5a, 0x59, 0x5a, 0x59, 0x58, 0x5c, 0x61, 0x61, 0x5e, 0x5d, 0x5e, 0x5f, 0x5e, 0x5e, 0x5f, 0x5f, 0x5b, 0x55, 0x53, 0x57, 0x5b, 0x5b, 0x58, 0x5a, 0x66, 0x76, 0x80, 0x83, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x74, 0x74, 0x6f, 0x6d, 0x6b, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x72, 0x76, 0x78, 0x7a, 0x7b, 0x7e, 0x81, 0x83, 0x83, 0x83, 0x83, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x74, 0x72, 0x72, 0x73, 0x77, 0x7a, 0x7d, 0x7e, 0x7c, 0x7f, 0x83, 0x84, 0x83, 0x83, 0x84, 0x85, 0x8c, 0x8c, 0x8e, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x89, 0x87, 0x82, 0x7d, 0x78, 0x74, 0x72, 0x71, 0x6a, 0x68, 0x65, 0x63, 0x61, 0x5e, 0x5a, 0x56, 0x59, 0x5b, 0x61, 0x67, 0x69, 0x68, 0x69, 0x6c, 0x66, 0x67, 0x67, 0x67, 0x66, 0x65, 0x64, 0x64, 0x60, 0x60, 0x61, 0x63, 0x66, 0x68, 0x68, 0x67, 0x66, 0x66, 0x66, 0x65, 0x64, 0x62, 0x61, 0x60, 0x5e, 0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x59, 0x58, 0x5a, 0x59, 0x58, 0x57, 0x58, 0x58, 0x57, 0x56, 0x52, 0x55, 0x56, 0x55, 0x55, 0x54, 0x4e, 0x47, 0x44, 0x43, 0x43, 0x44, 0x43, 0x41, 0x3e, 0x3d, 0x3a, 0x3a, 0x3a, 0x39, 0x3b, 0x3f, 0x3f, 0x3c, 0x38, 0x3a, 0x44, 0x51, 0x53, 0x47, 0x3b, 0x38, 0x41, 0x43, 0x48, 0x4e, 0x50, 0x54, 0x5c, 0x65, 0x7c, 0x8f, 0x9b, 0x8f, 0x77, 0x65, 0x5d, 0x5b, 0x59, 0x54, 0x56, 0x60, 0x63, 0x5a, 0x50, 0x4b, 0x56, 0x55, 0x51, 0x4c, 0x4c, 0x4f, 0x51, 0x4f, 0x49, 0x44, 0x44, 0x47, 0x48, 0x4c, 0x50, 0x4d, 0x45, 0x46, 0x48, 0x44, 0x3f, 0x45, 0x49, 0x42, 0x43, 0x42, 0x3c, 0x33, 0x2e, 0x2f, 0x31, 0x30, 0x33, 0x33, 0x34, 0x35, 0x3a, 0x42, 0x4e, 0x57, 0x56, 0x51, 0x4d, 0x4c, 0x4e, 0x4d, 0x48, 0x43, 0x3e, 0x42, 0x46, 0x45, 0x43, 0x46, 0x4d, 0x52, 0x54, 0x59, 0x5d, 0x60, 0x65, 0x6b, 0x6d, 0x6a, 0x64, 0x59, 0x52, 0x54, 0x59, 0x57, 0x50, 0x4b, 0x3c, 0x41, 0x49, 0x4c, 0x4c, 0x57, 0x60, 0x5e, 0x4f, 0x37, 0x38, 0x4a, 0x50, 0x51, 0x49, 0x35, 0x3e, 0x55, 0x65, 0x52, 0x4b, 0x39, 0x36, 0x31, 0x3e, 0x4a, 0x48, 0x42, 0x34, 0x3a, 0x52, 0x5c, 0x65, 0x74, 0x8a, 0x75, 0x55, 0x29, 0x2b, 0x50, 0x69, 0x73, 0x63, 0x5c, 0x66, 0x6b, 0x6b, 0x62, 0x4e, 0x40, 0x43, 0x3f, 0x39, 0x2f, 0x4c, 0x67, 0x6a, 0x6d, 0x68, 0x67, 0x6e, 0x66, 0x4a, 0x33, 0x29, 0x26, 0x22, 0x1c, 0x1c, 0x33, 0x56, 0x6d, 0x67, 0x61, 0x5a, 0x5e, 0x6d, 0x75, 0x64, 0x4c, 0x3a, 0x31, 0x34, 0x49, 0x5c, 0x61, 0x5e, 0x5d, 0x5a, 0x55, 0x53, 0x57, 0x5e, 0x5e, 0x54, 0x4a, 0x4b, 0x4b, 0x48, 0x45, 0x48, 0x4d, 0x4c, 0x45, 0x49, 0x50, 0x55, 0x55, 0x54, 0x55, 0x53, 0x50, 0x4f, 0x4b, 0x4c, 0x57, 0x64, 0x68, 0x5f, 0x54, 0x46, 0x4a, 0x4e, 0x4f, 0x4e, 0x4e, 0x51, 0x54, 0x5f, 0x5c, 0x58, 0x56, 0x55, 0x56, 0x57, 0x58, 0x5a, 0x5b, 0x5c, 0x5a, 0x58, 0x58, 0x5b, 0x5e, 0x5e, 0x5c, 0x5a, 0x58, 0x54, 0x4d, 0x45, 0x3f, 0x41, 0x43, 0x47, 0x4e, 0x55, 0x58, 0x58, 0x56, 0x53, 0x54, 0x56, 0x56, 0x55, 0x54, 0x53, 0x52, 0x4c, 0x4c, 0x4c, 0x4d, 0x4e, 0x4f, 0x4f, 0x4f, 0x4c, 0x4b, 0x4b, 0x4d, 0x4c, 0x4a, 0x49, 0x49, 0x4a, 0x50, 0x55, 0x55, 0x54, 0x56, 0x58, 0x5a, 0x60, 0x62, 0x65, 0x63, 0x5a, 0x50, 0x4b, 0x4b, 0x40, 0x44, 0x47, 0x46, 0x41, 0x3d, 0x3c, 0x3c, 0x3e, 0x3e, 0x3f, 0x40, 0x41, 0x41, 0x41, 0x41, 0x43, 0x43, 0x48, 0x50, 0x51, 0x4b, 0x46, 0x46, 0x5c, 0x62, 0x69, 0x6c, 0x6e, 0x75, 0x80, 0x89, 0x85, 0x6f, 0x63, 0x62, 0x5c, 0x53, 0x4d, 0x48, 0x4c, 0x4c, 0x4d, 0x4f, 0x50, 0x4e, 0x4b, 0x48, 0x43, 0x45, 0x48, 0x4a, 0x4c, 0x4c, 0x4c, 0x4b, 0x54, 0x52, 0x50, 0x50, 0x52, 0x56, 0x59, 0x5b, 0x57, 0x59, 0x57, 0x53, 0x50, 0x50, 0x4f, 0x4e, 0x50, 0x54, 0x56, 0x56, 0x56, 0x58, 0x57, 0x56, 0x5e, 0x62, 0x66, 0x68, 0x65, 0x5e, 0x57, 0x52, 0x6e, 0x75, 0x78, 0x73, 0x6c, 0x67, 0x63, 0x5e, 0x58, 0x5b, 0x5e, 0x5f, 0x5f, 0x62, 0x68, 0x6d, 0x61, 0x63, 0x68, 0x6c, 0x6e, 0x6d, 0x68, 0x65, 0x63, 0x63, 0x60, 0x5e, 0x63, 0x6b, 0x6e, 0x6d, 0x6a, 0x68, 0x68, 0x69, 0x6c, 0x6e, 0x6d, 0x6b, 0x69, 0x6c, 0x6f, 0x73, 0x77, 0x79, 0x74, 0x6d, 0x6a, 0x6c, 0x6c, 0x67, 0x64, 0x64, 0x67, 0x68, 0x62, 0x5f, 0x59, 0x53, 0x54, 0x5c, 0x67, 0x6d, 0x66, 0x61, 0x5d, 0x58, 0x52, 0x4e, 0x51, 0x57, 0x59, 0x58, 0x5a, 0x5f, 0x63, 0x64, 0x65, 0x66, 0x5c, 0x57, 0x54, 0x58, 0x5c, 0x5b, 0x58, 0x57, 0x4e, 0x58, 0x69, 0x7a, 0x82, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x72, 0x6f, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x7c, 0x7f, 0x82, 0x84, 0x85, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x78, 0x75, 0x72, 0x71, 0x73, 0x77, 0x7b, 0x7d, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x72, 0x6f, 0x6c, 0x6a, 0x69, 0x69, 0x68, 0x63, 0x5e, 0x5c, 0x5e, 0x5f, 0x5e, 0x5d, 0x63, 0x64, 0x69, 0x70, 0x70, 0x6b, 0x6a, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x62, 0x62, 0x63, 0x66, 0x69, 0x6a, 0x69, 0x67, 0x65, 0x65, 0x64, 0x63, 0x62, 0x60, 0x5f, 0x5e, 0x5d, 0x5b, 0x5a, 0x59, 0x5a, 0x5a, 0x5a, 0x59, 0x5a, 0x59, 0x58, 0x58, 0x58, 0x58, 0x57, 0x56, 0x52, 0x56, 0x57, 0x55, 0x54, 0x51, 0x49, 0x40, 0x42, 0x42, 0x41, 0x3e, 0x3d, 0x3c, 0x3b, 0x39, 0x39, 0x3a, 0x3a, 0x3a, 0x3d, 0x3f, 0x3d, 0x3a, 0x38, 0x3a, 0x46, 0x55, 0x56, 0x49, 0x3c, 0x38, 0x33, 0x40, 0x4e, 0x50, 0x46, 0x3e, 0x46, 0x53, 0x59, 0x65, 0x6f, 0x70, 0x71, 0x72, 0x6f, 0x68, 0x58, 0x52, 0x50, 0x52, 0x52, 0x4e, 0x4c, 0x4e, 0x52, 0x59, 0x58, 0x4e, 0x47, 0x47, 0x48, 0x45, 0x43, 0x3e, 0x3f, 0x42, 0x44, 0x4a, 0x50, 0x4e, 0x48, 0x46, 0x4c, 0x4e, 0x49, 0x48, 0x4a, 0x48, 0x45, 0x44, 0x3d, 0x33, 0x2f, 0x32, 0x35, 0x36, 0x3d, 0x38, 0x35, 0x39, 0x3d, 0x41, 0x49, 0x50, 0x59, 0x52, 0x4b, 0x48, 0x4b, 0x4f, 0x51, 0x50, 0x40, 0x42, 0x43, 0x42, 0x42, 0x46, 0x4d, 0x51, 0x52, 0x5a, 0x5a, 0x51, 0x52, 0x60, 0x6a, 0x6a, 0x65, 0x5c, 0x56, 0x59, 0x5c, 0x58, 0x50, 0x4b, 0x2e, 0x36, 0x42, 0x48, 0x4f, 0x5e, 0x66, 0x60, 0x4e, 0x33, 0x30, 0x3e, 0x40, 0x46, 0x47, 0x3a, 0x49, 0x57, 0x67, 0x5b, 0x56, 0x3a, 0x34, 0x33, 0x3c, 0x3b, 0x3b, 0x30, 0x38, 0x47, 0x68, 0x5e, 0x6a, 0x79, 0x8e, 0x79, 0x5a, 0x2f, 0x33, 0x5b, 0x68, 0x75, 0x6b, 0x69, 0x71, 0x6c, 0x68, 0x64, 0x55, 0x42, 0x45, 0x3f, 0x34, 0x2c, 0x4f, 0x6a, 0x7b, 0x74, 0x73, 0x7b, 0x70, 0x48, 0x2b, 0x2a, 0x28, 0x22, 0x20, 0x21, 0x2a, 0x46, 0x63, 0x6f, 0x6a, 0x63, 0x60, 0x65, 0x69, 0x60, 0x4b, 0x39, 0x27, 0x1d, 0x22, 0x3a, 0x50, 0x58, 0x5e, 0x66, 0x5d, 0x5d, 0x5f, 0x62, 0x62, 0x60, 0x5e, 0x5e, 0x5c, 0x52, 0x4c, 0x4d, 0x4e, 0x4c, 0x4b, 0x4d, 0x51, 0x51, 0x54, 0x59, 0x5a, 0x58, 0x57, 0x57, 0x52, 0x50, 0x4f, 0x53, 0x5d, 0x64, 0x63, 0x5d, 0x57, 0x53, 0x4d, 0x4c, 0x4e, 0x50, 0x51, 0x51, 0x5c, 0x63, 0x69, 0x69, 0x67, 0x64, 0x5d, 0x56, 0x56, 0x54, 0x57, 0x59, 0x56, 0x5a, 0x61, 0x62, 0x5d, 0x5f, 0x60, 0x60, 0x5c, 0x56, 0x50, 0x4b, 0x40, 0x46, 0x4e, 0x57, 0x5c, 0x5d, 0x5a, 0x57, 0x51, 0x4e, 0x50, 0x54, 0x52, 0x4a, 0x4b, 0x52, 0x4c, 0x4a, 0x47, 0x45, 0x44, 0x46, 0x49, 0x4b, 0x4f, 0x52, 0x54, 0x52, 0x4f, 0x4d, 0x4c, 0x4a, 0x4f, 0x53, 0x5a, 0x5f, 0x5e, 0x5c, 0x62, 0x6b, 0x71, 0x75, 0x73, 0x6a, 0x60, 0x5a, 0x56, 0x52, 0x4f, 0x4d, 0x4e, 0x50, 0x4a, 0x3e, 0x38, 0x3a, 0x3e, 0x41, 0x42, 0x3f, 0x3b, 0x3b, 0x41, 0x46, 0x46, 0x49, 0x4a, 0x48, 0x49, 0x4d, 0x50, 0x4f, 0x57, 0x5a, 0x5d, 0x5d, 0x5f, 0x62, 0x64, 0x63, 0x6c, 0x6d, 0x6d, 0x6a, 0x63, 0x58, 0x4d, 0x45, 0x4a, 0x4b, 0x4e, 0x50, 0x4d, 0x49, 0x49, 0x4b, 0x46, 0x45, 0x48, 0x4e, 0x4d, 0x47, 0x46, 0x4a, 0x50, 0x51, 0x52, 0x51, 0x50, 0x52, 0x56, 0x5a, 0x5a, 0x5c, 0x5d, 0x5c, 0x58, 0x55, 0x53, 0x53, 0x58, 0x58, 0x58, 0x5a, 0x5c, 0x5d, 0x5c, 0x5a, 0x65, 0x65, 0x66, 0x66, 0x66, 0x62, 0x5e, 0x5b, 0x60, 0x65, 0x69, 0x68, 0x67, 0x67, 0x65, 0x61, 0x5d, 0x5c, 0x5d, 0x5f, 0x61, 0x61, 0x5e, 0x5c, 0x65, 0x64, 0x67, 0x6c, 0x6b, 0x63, 0x5d, 0x5b, 0x61, 0x62, 0x66, 0x69, 0x67, 0x64, 0x65, 0x67, 0x62, 0x5c, 0x5d, 0x67, 0x6f, 0x6e, 0x6d, 0x6f, 0x6d, 0x69, 0x69, 0x6f, 0x74, 0x75, 0x72, 0x70, 0x75, 0x70, 0x69, 0x65, 0x63, 0x62, 0x60, 0x5f, 0x64, 0x61, 0x5e, 0x5e, 0x5d, 0x5b, 0x5c, 0x5f, 0x5e, 0x61, 0x63, 0x62, 0x62, 0x5f, 0x57, 0x50, 0x53, 0x56, 0x57, 0x57, 0x5c, 0x64, 0x68, 0x68, 0x61, 0x5a, 0x58, 0x5d, 0x5e, 0x58, 0x53, 0x53, 0x50, 0x56, 0x61, 0x6f, 0x7b, 0x81, 0x81, 0x7f, 0x7a, 0x7c, 0x7d, 0x7b, 0x76, 0x74, 0x76, 0x79, 0x74, 0x73, 0x71, 0x70, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x70, 0x74, 0x75, 0x75, 0x78, 0x7b, 0x7e, 0x80, 0x83, 0x85, 0x87, 0x87, 0x87, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7a, 0x78, 0x76, 0x73, 0x71, 0x70, 0x70, 0x70, 0x7a, 0x7c, 0x7f, 0x81, 0x81, 0x80, 0x7f, 0x7d, 0x7b, 0x7c, 0x7c, 0x7b, 0x77, 0x74, 0x72, 0x72, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x66, 0x65, 0x64, 0x63, 0x65, 0x68, 0x6b, 0x6d, 0x6e, 0x6d, 0x6c, 0x6e, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6e, 0x6d, 0x6b, 0x67, 0x66, 0x65, 0x66, 0x67, 0x68, 0x67, 0x67, 0x63, 0x63, 0x64, 0x64, 0x63, 0x61, 0x5e, 0x5c, 0x5d, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x59, 0x56, 0x58, 0x59, 0x58, 0x56, 0x55, 0x56, 0x57, 0x58, 0x57, 0x56, 0x56, 0x52, 0x4a, 0x42, 0x3e, 0x3b, 0x3f, 0x43, 0x42, 0x3f, 0x3b, 0x3a, 0x3a, 0x39, 0x38, 0x38, 0x3a, 0x3c, 0x3d, 0x3b, 0x39, 0x34, 0x3a, 0x48, 0x55, 0x54, 0x46, 0x39, 0x35, 0x2e, 0x37, 0x47, 0x58, 0x64, 0x6b, 0x6f, 0x71, 0x6b, 0x58, 0x4b, 0x52, 0x5e, 0x64, 0x6b, 0x73, 0x7d, 0x81, 0x81, 0x77, 0x63, 0x52, 0x4c, 0x4d, 0x50, 0x4a, 0x46, 0x49, 0x49, 0x47, 0x48, 0x4d, 0x46, 0x42, 0x3d, 0x3b, 0x3e, 0x43, 0x48, 0x49, 0x49, 0x4c, 0x4d, 0x4a, 0x45, 0x43, 0x43, 0x44, 0x4a, 0x48, 0x45, 0x40, 0x3a, 0x3e, 0x52, 0x69, 0x6f, 0x63, 0x53, 0x46, 0x3f, 0x3f, 0x46, 0x4d, 0x55, 0x54, 0x4d, 0x47, 0x47, 0x48, 0x4e, 0x58, 0x45, 0x44, 0x44, 0x44, 0x44, 0x45, 0x4d, 0x55, 0x54, 0x5c, 0x5e, 0x59, 0x5c, 0x67, 0x69, 0x63, 0x63, 0x5a, 0x55, 0x5c, 0x66, 0x62, 0x4b, 0x35, 0x25, 0x3d, 0x47, 0x3b, 0x3b, 0x4f, 0x5b, 0x57, 0x47, 0x3c, 0x33, 0x37, 0x44, 0x4c, 0x4a, 0x45, 0x50, 0x58, 0x5d, 0x56, 0x44, 0x36, 0x38, 0x41, 0x41, 0x43, 0x35, 0x2f, 0x37, 0x4d, 0x68, 0x6d, 0x6d, 0x7b, 0x77, 0x63, 0x48, 0x2b, 0x34, 0x5f, 0x69, 0x65, 0x58, 0x57, 0x63, 0x64, 0x62, 0x6a, 0x4e, 0x52, 0x40, 0x25, 0x24, 0x3c, 0x57, 0x68, 0x76, 0x81, 0x81, 0x75, 0x63, 0x49, 0x32, 0x29, 0x2c, 0x28, 0x22, 0x23, 0x2f, 0x44, 0x5a, 0x68, 0x6b, 0x67, 0x64, 0x62, 0x5a, 0x49, 0x34, 0x26, 0x15, 0x19, 0x32, 0x4f, 0x56, 0x55, 0x5e, 0x68, 0x68, 0x6b, 0x71, 0x78, 0x7c, 0x7e, 0x7d, 0x7d, 0x80, 0x81, 0x7d, 0x71, 0x61, 0x57, 0x5b, 0x64, 0x69, 0x62, 0x5a, 0x57, 0x56, 0x59, 0x5f, 0x66, 0x6f, 0x6a, 0x61, 0x59, 0x5a, 0x65, 0x71, 0x77, 0x64, 0x5c, 0x50, 0x46, 0x44, 0x4c, 0x5a, 0x64, 0x63, 0x56, 0x4b, 0x52, 0x66, 0x73, 0x6b, 0x5c, 0x56, 0x53, 0x56, 0x58, 0x55, 0x59, 0x60, 0x5f, 0x5e, 0x5f, 0x5f, 0x5b, 0x57, 0x55, 0x56, 0x58, 0x62, 0x5c, 0x57, 0x56, 0x58, 0x56, 0x4f, 0x48, 0x46, 0x47, 0x4c, 0x52, 0x52, 0x4d, 0x4c, 0x50, 0x4c, 0x4a, 0x47, 0x46, 0x47, 0x49, 0x4b, 0x4c, 0x4f, 0x51, 0x53, 0x52, 0x50, 0x4f, 0x4f, 0x4f, 0x56, 0x57, 0x5b, 0x5e, 0x5c, 0x5b, 0x61, 0x69, 0x6e, 0x70, 0x6e, 0x66, 0x5f, 0x5c, 0x5b, 0x59, 0x5e, 0x5c, 0x5c, 0x5d, 0x54, 0x45, 0x3b, 0x3a, 0x3d, 0x3d, 0x3e, 0x40, 0x43, 0x43, 0x40, 0x3e, 0x47, 0x4f, 0x56, 0x55, 0x51, 0x54, 0x63, 0x70, 0x72, 0x71, 0x66, 0x52, 0x43, 0x43, 0x50, 0x5c, 0x63, 0x5f, 0x58, 0x51, 0x4c, 0x4a, 0x4a, 0x4b, 0x50, 0x4f, 0x4e, 0x4e, 0x4c, 0x48, 0x46, 0x47, 0x4b, 0x47, 0x46, 0x49, 0x48, 0x44, 0x46, 0x4c, 0x50, 0x50, 0x52, 0x54, 0x56, 0x56, 0x55, 0x53, 0x54, 0x56, 0x57, 0x58, 0x57, 0x57, 0x59, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5c, 0x5e, 0x62, 0x64, 0x63, 0x62, 0x61, 0x63, 0x65, 0x66, 0x65, 0x64, 0x62, 0x63, 0x64, 0x64, 0x64, 0x65, 0x65, 0x65, 0x62, 0x60, 0x5e, 0x5f, 0x63, 0x67, 0x6a, 0x6c, 0x60, 0x5f, 0x64, 0x70, 0x78, 0x75, 0x6c, 0x65, 0x62, 0x60, 0x61, 0x65, 0x67, 0x66, 0x67, 0x69, 0x65, 0x63, 0x67, 0x70, 0x74, 0x70, 0x6e, 0x70, 0x68, 0x63, 0x60, 0x65, 0x6c, 0x70, 0x71, 0x71, 0x71, 0x6e, 0x69, 0x64, 0x62, 0x60, 0x5f, 0x5f, 0x5e, 0x5b, 0x5b, 0x5c, 0x5b, 0x5a, 0x5a, 0x5d, 0x5f, 0x63, 0x65, 0x63, 0x61, 0x60, 0x5d, 0x5a, 0x50, 0x54, 0x57, 0x58, 0x5b, 0x61, 0x63, 0x62, 0x59, 0x58, 0x58, 0x5c, 0x5f, 0x5d, 0x5b, 0x5a, 0x5f, 0x5e, 0x5f, 0x66, 0x70, 0x79, 0x7d, 0x7e, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x70, 0x74, 0x75, 0x75, 0x78, 0x7b, 0x7e, 0x80, 0x83, 0x86, 0x88, 0x88, 0x88, 0x87, 0x84, 0x83, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7a, 0x79, 0x78, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x71, 0x72, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x79, 0x79, 0x78, 0x75, 0x72, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x67, 0x68, 0x69, 0x6a, 0x6c, 0x6f, 0x71, 0x72, 0x72, 0x71, 0x71, 0x72, 0x75, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6e, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x68, 0x67, 0x67, 0x63, 0x63, 0x63, 0x63, 0x62, 0x60, 0x5e, 0x5d, 0x5c, 0x5b, 0x59, 0x59, 0x5a, 0x5a, 0x59, 0x58, 0x57, 0x58, 0x59, 0x58, 0x56, 0x55, 0x55, 0x57, 0x59, 0x57, 0x56, 0x56, 0x4f, 0x44, 0x3e, 0x3e, 0x44, 0x45, 0x45, 0x43, 0x3f, 0x3a, 0x37, 0x34, 0x36, 0x36, 0x36, 0x38, 0x39, 0x3a, 0x3a, 0x3a, 0x37, 0x3d, 0x48, 0x4f, 0x4a, 0x3e, 0x37, 0x36, 0x34, 0x39, 0x48, 0x5e, 0x71, 0x78, 0x74, 0x6e, 0x7a, 0x6f, 0x5f, 0x50, 0x48, 0x4b, 0x58, 0x64, 0x65, 0x74, 0x7a, 0x6d, 0x5c, 0x53, 0x4b, 0x44, 0x4b, 0x49, 0x48, 0x48, 0x47, 0x46, 0x46, 0x48, 0x41, 0x41, 0x3f, 0x3d, 0x3e, 0x41, 0x43, 0x43, 0x45, 0x49, 0x4a, 0x45, 0x41, 0x40, 0x3d, 0x39, 0x42, 0x49, 0x4a, 0x45, 0x47, 0x56, 0x67, 0x70, 0x8f, 0x88, 0x7c, 0x6f, 0x61, 0x55, 0x50, 0x50, 0x4f, 0x51, 0x4b, 0x45, 0x42, 0x3e, 0x3d, 0x44, 0x42, 0x42, 0x41, 0x3f, 0x3f, 0x43, 0x4a, 0x4f, 0x54, 0x5b, 0x5d, 0x5b, 0x60, 0x6b, 0x6c, 0x66, 0x5f, 0x5d, 0x5c, 0x5c, 0x5a, 0x50, 0x40, 0x33, 0x43, 0x4d, 0x4a, 0x3c, 0x3e, 0x50, 0x5a, 0x56, 0x4c, 0x3f, 0x36, 0x3e, 0x4b, 0x50, 0x4b, 0x45, 0x4a, 0x4f, 0x52, 0x4b, 0x3c, 0x31, 0x33, 0x3b, 0x58, 0x5a, 0x4c, 0x44, 0x49, 0x58, 0x6a, 0x68, 0x73, 0x85, 0x76, 0x4c, 0x2a, 0x1c, 0x2e, 0x53, 0x66, 0x6a, 0x68, 0x68, 0x6b, 0x6c, 0x6b, 0x6d, 0x5c, 0x51, 0x3c, 0x30, 0x3a, 0x4d, 0x60, 0x70, 0x78, 0x82, 0x7c, 0x6c, 0x65, 0x5d, 0x48, 0x36, 0x34, 0x32, 0x2d, 0x2b, 0x33, 0x45, 0x57, 0x60, 0x63, 0x70, 0x75, 0x69, 0x59, 0x4c, 0x3c, 0x2e, 0x20, 0x26, 0x39, 0x47, 0x40, 0x3c, 0x49, 0x58, 0x59, 0x5c, 0x60, 0x62, 0x61, 0x5e, 0x5a, 0x56, 0x64, 0x60, 0x5b, 0x56, 0x55, 0x55, 0x50, 0x4a, 0x53, 0x50, 0x4d, 0x4d, 0x4e, 0x51, 0x55, 0x5a, 0x59, 0x57, 0x51, 0x4c, 0x4e, 0x56, 0x5d, 0x61, 0x6e, 0x67, 0x5a, 0x4a, 0x40, 0x45, 0x56, 0x64, 0x6a, 0x5c, 0x4d, 0x49, 0x54, 0x5f, 0x60, 0x5b, 0x57, 0x52, 0x53, 0x53, 0x50, 0x53, 0x56, 0x53, 0x51, 0x53, 0x55, 0x55, 0x55, 0x57, 0x5c, 0x60, 0x5a, 0x50, 0x46, 0x47, 0x4f, 0x55, 0x53, 0x4d, 0x47, 0x4b, 0x51, 0x53, 0x52, 0x4e, 0x49, 0x46, 0x4a, 0x4a, 0x4b, 0x4d, 0x50, 0x52, 0x51, 0x50, 0x4c, 0x4e, 0x4f, 0x50, 0x50, 0x50, 0x50, 0x51, 0x55, 0x55, 0x55, 0x57, 0x57, 0x58, 0x5e, 0x64, 0x60, 0x61, 0x60, 0x5b, 0x57, 0x58, 0x59, 0x5a, 0x62, 0x61, 0x63, 0x63, 0x5b, 0x4c, 0x40, 0x3d, 0x3e, 0x41, 0x46, 0x4a, 0x4a, 0x46, 0x40, 0x3c, 0x42, 0x47, 0x4e, 0x4e, 0x46, 0x42, 0x4e, 0x5e, 0x63, 0x6a, 0x75, 0x7e, 0x81, 0x78, 0x62, 0x4f, 0x53, 0x54, 0x55, 0x53, 0x4f, 0x4a, 0x45, 0x43, 0x4c, 0x49, 0x48, 0x49, 0x49, 0x47, 0x46, 0x47, 0x4a, 0x46, 0x45, 0x48, 0x47, 0x45, 0x48, 0x4e, 0x54, 0x52, 0x51, 0x55, 0x59, 0x5a, 0x56, 0x51, 0x58, 0x58, 0x58, 0x58, 0x58, 0x59, 0x5c, 0x5e, 0x5f, 0x5f, 0x5d, 0x5b, 0x5b, 0x5f, 0x66, 0x6c, 0x6a, 0x67, 0x66, 0x67, 0x6a, 0x6b, 0x69, 0x67, 0x66, 0x60, 0x5e, 0x60, 0x62, 0x61, 0x64, 0x69, 0x66, 0x63, 0x61, 0x61, 0x64, 0x6a, 0x6f, 0x71, 0x69, 0x68, 0x6b, 0x72, 0x75, 0x70, 0x67, 0x61, 0x62, 0x5e, 0x5d, 0x61, 0x66, 0x68, 0x68, 0x69, 0x6b, 0x6c, 0x72, 0x78, 0x76, 0x6f, 0x6b, 0x6c, 0x6a, 0x63, 0x5d, 0x5f, 0x65, 0x6b, 0x70, 0x73, 0x6f, 0x6e, 0x6c, 0x69, 0x65, 0x62, 0x60, 0x60, 0x5f, 0x5d, 0x5d, 0x5e, 0x5e, 0x5c, 0x5c, 0x5d, 0x5e, 0x62, 0x64, 0x60, 0x5b, 0x5a, 0x5c, 0x5d, 0x5e, 0x60, 0x63, 0x63, 0x63, 0x64, 0x63, 0x60, 0x55, 0x58, 0x59, 0x5a, 0x5b, 0x5e, 0x5d, 0x5b, 0x55, 0x52, 0x50, 0x55, 0x61, 0x70, 0x7c, 0x82, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x6e, 0x70, 0x6f, 0x71, 0x74, 0x75, 0x75, 0x78, 0x7c, 0x7f, 0x81, 0x84, 0x87, 0x88, 0x89, 0x89, 0x88, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x7f, 0x7d, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x72, 0x6f, 0x6d, 0x69, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x72, 0x72, 0x73, 0x74, 0x75, 0x75, 0x73, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6b, 0x6c, 0x6e, 0x71, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x66, 0x63, 0x63, 0x62, 0x61, 0x5f, 0x5e, 0x5d, 0x5d, 0x5c, 0x5a, 0x59, 0x59, 0x59, 0x59, 0x59, 0x58, 0x58, 0x58, 0x58, 0x57, 0x56, 0x55, 0x55, 0x55, 0x54, 0x52, 0x54, 0x57, 0x52, 0x48, 0x45, 0x49, 0x50, 0x4d, 0x4b, 0x4a, 0x48, 0x44, 0x3d, 0x38, 0x35, 0x35, 0x35, 0x35, 0x35, 0x35, 0x37, 0x38, 0x3a, 0x41, 0x49, 0x4a, 0x42, 0x39, 0x36, 0x38, 0x3a, 0x39, 0x40, 0x52, 0x65, 0x71, 0x76, 0x78, 0x7d, 0x83, 0x82, 0x73, 0x62, 0x58, 0x54, 0x52, 0x5c, 0x63, 0x66, 0x63, 0x5f, 0x59, 0x4f, 0x45, 0x48, 0x4b, 0x4d, 0x4b, 0x48, 0x48, 0x47, 0x46, 0x43, 0x45, 0x45, 0x43, 0x42, 0x42, 0x40, 0x3c, 0x3c, 0x41, 0x44, 0x43, 0x43, 0x44, 0x42, 0x3c, 0x39, 0x3c, 0x40, 0x44, 0x4a, 0x50, 0x54, 0x53, 0x55, 0x55, 0x56, 0x54, 0x4d, 0x45, 0x42, 0x43, 0x52, 0x56, 0x51, 0x49, 0x45, 0x3e, 0x3a, 0x3f, 0x4a, 0x4d, 0x4c, 0x46, 0x44, 0x49, 0x4e, 0x4f, 0x4f, 0x55, 0x58, 0x59, 0x61, 0x6a, 0x6b, 0x64, 0x62, 0x65, 0x67, 0x67, 0x62, 0x59, 0x4f, 0x49, 0x54, 0x51, 0x46, 0x3c, 0x42, 0x55, 0x61, 0x61, 0x61, 0x4b, 0x3e, 0x46, 0x51, 0x4e, 0x44, 0x3f, 0x4c, 0x4f, 0x50, 0x4d, 0x44, 0x3c, 0x3c, 0x41, 0x4d, 0x53, 0x4b, 0x49, 0x50, 0x5d, 0x68, 0x60, 0x6a, 0x6f, 0x57, 0x33, 0x22, 0x24, 0x36, 0x50, 0x63, 0x6b, 0x71, 0x6c, 0x65, 0x69, 0x6d, 0x69, 0x68, 0x5a, 0x48, 0x3e, 0x3b, 0x3a, 0x48, 0x5f, 0x7c, 0x79, 0x71, 0x67, 0x57, 0x43, 0x3b, 0x43, 0x41, 0x40, 0x3a, 0x33, 0x3a, 0x4d, 0x5e, 0x64, 0x67, 0x6b, 0x6b, 0x64, 0x5c, 0x51, 0x40, 0x31, 0x2b, 0x27, 0x2f, 0x3c, 0x45, 0x51, 0x60, 0x69, 0x56, 0x5a, 0x5d, 0x5f, 0x5f, 0x5f, 0x5d, 0x59, 0x57, 0x62, 0x67, 0x62, 0x5a, 0x54, 0x4f, 0x4a, 0x42, 0x43, 0x47, 0x4d, 0x50, 0x4f, 0x4f, 0x50, 0x51, 0x4f, 0x4d, 0x50, 0x58, 0x5c, 0x56, 0x4d, 0x5d, 0x5c, 0x58, 0x4d, 0x42, 0x3f, 0x44, 0x4b, 0x59, 0x58, 0x54, 0x4c, 0x47, 0x4c, 0x58, 0x63, 0x5b, 0x55, 0x53, 0x52, 0x4d, 0x4d, 0x4d, 0x47, 0x47, 0x48, 0x4c, 0x52, 0x59, 0x5c, 0x59, 0x55, 0x4d, 0x45, 0x3d, 0x3e, 0x46, 0x4d, 0x4e, 0x4c, 0x4f, 0x53, 0x57, 0x57, 0x55, 0x52, 0x4c, 0x46, 0x46, 0x49, 0x50, 0x57, 0x5c, 0x5b, 0x55, 0x50, 0x49, 0x49, 0x49, 0x4b, 0x4c, 0x4c, 0x4e, 0x50, 0x4f, 0x4f, 0x4f, 0x51, 0x54, 0x59, 0x5e, 0x62, 0x5e, 0x5f, 0x60, 0x5f, 0x5d, 0x5c, 0x5d, 0x5d, 0x59, 0x59, 0x5d, 0x5f, 0x59, 0x4c, 0x41, 0x3c, 0x40, 0x48, 0x51, 0x50, 0x48, 0x40, 0x3f, 0x40, 0x3e, 0x3c, 0x40, 0x47, 0x46, 0x3e, 0x3d, 0x43, 0x5b, 0x64, 0x6c, 0x6c, 0x6a, 0x6c, 0x72, 0x77, 0x6c, 0x69, 0x63, 0x5c, 0x54, 0x4d, 0x4a, 0x48, 0x43, 0x43, 0x43, 0x45, 0x44, 0x41, 0x41, 0x43, 0x43, 0x43, 0x46, 0x4a, 0x4b, 0x49, 0x49, 0x4c, 0x51, 0x4e, 0x4e, 0x52, 0x59, 0x5e, 0x5f, 0x5e, 0x5e, 0x5e, 0x5d, 0x5d, 0x5d, 0x5e, 0x5f, 0x61, 0x63, 0x5f, 0x5b, 0x57, 0x58, 0x5e, 0x66, 0x6c, 0x6a, 0x68, 0x67, 0x69, 0x6c, 0x6c, 0x68, 0x64, 0x65, 0x5c, 0x58, 0x5c, 0x5d, 0x5b, 0x5e, 0x65, 0x63, 0x61, 0x5f, 0x5f, 0x60, 0x62, 0x64, 0x66, 0x6d, 0x70, 0x70, 0x6b, 0x61, 0x5a, 0x5b, 0x5f, 0x63, 0x60, 0x61, 0x65, 0x68, 0x69, 0x6a, 0x6c, 0x70, 0x71, 0x74, 0x77, 0x73, 0x6a, 0x64, 0x63, 0x6c, 0x67, 0x61, 0x5f, 0x60, 0x63, 0x6b, 0x72, 0x70, 0x73, 0x74, 0x72, 0x6d, 0x67, 0x63, 0x62, 0x64, 0x62, 0x61, 0x61, 0x60, 0x5e, 0x5e, 0x5f, 0x61, 0x64, 0x63, 0x5d, 0x57, 0x56, 0x57, 0x57, 0x64, 0x65, 0x66, 0x66, 0x65, 0x64, 0x62, 0x61, 0x5b, 0x5f, 0x5e, 0x58, 0x56, 0x59, 0x5a, 0x57, 0x5f, 0x5c, 0x58, 0x56, 0x5b, 0x65, 0x71, 0x79, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x75, 0x72, 0x71, 0x6f, 0x6f, 0x71, 0x71, 0x72, 0x74, 0x75, 0x75, 0x78, 0x7c, 0x7f, 0x81, 0x84, 0x87, 0x89, 0x8a, 0x8a, 0x89, 0x85, 0x84, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7e, 0x7b, 0x7a, 0x79, 0x77, 0x74, 0x72, 0x71, 0x70, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x6b, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6e, 0x6f, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6c, 0x6c, 0x6e, 0x6f, 0x71, 0x73, 0x75, 0x75, 0x76, 0x75, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x72, 0x70, 0x71, 0x6f, 0x6d, 0x6b, 0x6a, 0x68, 0x67, 0x65, 0x63, 0x62, 0x61, 0x5f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5c, 0x5b, 0x59, 0x59, 0x5a, 0x5a, 0x59, 0x59, 0x58, 0x58, 0x58, 0x57, 0x56, 0x55, 0x54, 0x54, 0x54, 0x50, 0x53, 0x59, 0x57, 0x4f, 0x4c, 0x4e, 0x44, 0x42, 0x42, 0x44, 0x47, 0x44, 0x3c, 0x34, 0x36, 0x36, 0x36, 0x34, 0x32, 0x32, 0x35, 0x37, 0x3b, 0x42, 0x4a, 0x4a, 0x44, 0x3e, 0x3b, 0x3a, 0x3b, 0x3d, 0x44, 0x4e, 0x57, 0x5d, 0x67, 0x71, 0x67, 0x71, 0x7b, 0x84, 0x8b, 0x90, 0x91, 0x8e, 0x74, 0x63, 0x5c, 0x66, 0x6b, 0x5e, 0x50, 0x4b, 0x47, 0x4e, 0x4f, 0x4a, 0x46, 0x48, 0x49, 0x47, 0x49, 0x49, 0x47, 0x44, 0x44, 0x44, 0x3d, 0x35, 0x35, 0x37, 0x3c, 0x42, 0x43, 0x41, 0x42, 0x45, 0x41, 0x38, 0x3c, 0x4d, 0x53, 0x47, 0x3d, 0x3c, 0x47, 0x47, 0x48, 0x46, 0x42, 0x40, 0x44, 0x4a, 0x4f, 0x53, 0x4d, 0x43, 0x3e, 0x3a, 0x39, 0x3e, 0x46, 0x4f, 0x52, 0x48, 0x42, 0x45, 0x49, 0x48, 0x4c, 0x50, 0x54, 0x5a, 0x63, 0x6a, 0x68, 0x61, 0x60, 0x62, 0x65, 0x67, 0x66, 0x5f, 0x57, 0x50, 0x4d, 0x47, 0x3e, 0x39, 0x41, 0x51, 0x5f, 0x64, 0x5d, 0x42, 0x36, 0x46, 0x58, 0x57, 0x51, 0x4f, 0x52, 0x54, 0x57, 0x57, 0x51, 0x47, 0x41, 0x3f, 0x4e, 0x59, 0x54, 0x52, 0x56, 0x5d, 0x61, 0x54, 0x63, 0x5a, 0x44, 0x31, 0x29, 0x25, 0x30, 0x46, 0x63, 0x69, 0x6e, 0x64, 0x5a, 0x68, 0x74, 0x6a, 0x61, 0x5a, 0x50, 0x49, 0x41, 0x3c, 0x4b, 0x66, 0x7b, 0x76, 0x6c, 0x61, 0x4f, 0x3b, 0x3b, 0x4e, 0x41, 0x3e, 0x35, 0x2e, 0x3a, 0x53, 0x67, 0x6c, 0x77, 0x68, 0x61, 0x69, 0x68, 0x57, 0x48, 0x43, 0x35, 0x2d, 0x33, 0x44, 0x52, 0x56, 0x4e, 0x40, 0x52, 0x55, 0x56, 0x55, 0x57, 0x5a, 0x5a, 0x58, 0x56, 0x5e, 0x64, 0x61, 0x5d, 0x58, 0x50, 0x47, 0x4e, 0x4c, 0x4b, 0x4c, 0x4c, 0x4b, 0x4c, 0x4f, 0x53, 0x4d, 0x45, 0x42, 0x46, 0x4b, 0x49, 0x44, 0x48, 0x4a, 0x4b, 0x49, 0x45, 0x41, 0x3e, 0x3d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4b, 0x4e, 0x54, 0x5b, 0x60, 0x59, 0x57, 0x56, 0x50, 0x4e, 0x4c, 0x46, 0x4d, 0x48, 0x48, 0x51, 0x5e, 0x60, 0x56, 0x4a, 0x49, 0x49, 0x49, 0x4a, 0x4b, 0x4d, 0x4f, 0x50, 0x4e, 0x51, 0x54, 0x56, 0x59, 0x5b, 0x58, 0x53, 0x48, 0x4f, 0x59, 0x62, 0x65, 0x5f, 0x53, 0x4b, 0x49, 0x46, 0x45, 0x48, 0x49, 0x49, 0x4a, 0x4e, 0x4e, 0x4f, 0x50, 0x52, 0x57, 0x5d, 0x61, 0x63, 0x5e, 0x5f, 0x61, 0x61, 0x5f, 0x5a, 0x57, 0x55, 0x52, 0x54, 0x57, 0x5a, 0x57, 0x4e, 0x45, 0x40, 0x46, 0x4b, 0x4f, 0x4b, 0x43, 0x3e, 0x3f, 0x43, 0x40, 0x3d, 0x43, 0x50, 0x57, 0x54, 0x51, 0x53, 0x47, 0x51, 0x57, 0x53, 0x4e, 0x52, 0x5e, 0x68, 0x72, 0x70, 0x6c, 0x66, 0x5e, 0x54, 0x4b, 0x44, 0x44, 0x45, 0x47, 0x46, 0x41, 0x3b, 0x3a, 0x3d, 0x40, 0x42, 0x46, 0x49, 0x4a, 0x48, 0x47, 0x48, 0x46, 0x48, 0x4c, 0x52, 0x5a, 0x61, 0x68, 0x6b, 0x5e, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x64, 0x64, 0x60, 0x5a, 0x53, 0x52, 0x57, 0x5e, 0x64, 0x67, 0x61, 0x60, 0x5f, 0x61, 0x65, 0x66, 0x65, 0x63, 0x62, 0x5b, 0x58, 0x5c, 0x5c, 0x57, 0x58, 0x5f, 0x5e, 0x5d, 0x5a, 0x58, 0x59, 0x5b, 0x5f, 0x62, 0x67, 0x6a, 0x6a, 0x63, 0x59, 0x57, 0x5d, 0x64, 0x63, 0x64, 0x67, 0x6a, 0x6a, 0x68, 0x69, 0x6c, 0x70, 0x6e, 0x6e, 0x6e, 0x6d, 0x68, 0x63, 0x60, 0x67, 0x66, 0x64, 0x60, 0x5a, 0x5a, 0x63, 0x6d, 0x71, 0x75, 0x78, 0x78, 0x72, 0x6a, 0x64, 0x60, 0x63, 0x60, 0x5f, 0x5f, 0x5f, 0x5e, 0x5f, 0x62, 0x66, 0x68, 0x66, 0x60, 0x5c, 0x5a, 0x58, 0x56, 0x5d, 0x5c, 0x5c, 0x5d, 0x5e, 0x5e, 0x5f, 0x60, 0x62, 0x64, 0x5f, 0x56, 0x51, 0x53, 0x54, 0x51, 0x57, 0x56, 0x53, 0x4e, 0x4c, 0x53, 0x61, 0x6d, 0x7a, 0x7d, 0x7f, 0x7e, 0x7b, 0x7a, 0x7b, 0x7c, 0x7e, 0x7d, 0x7b, 0x79, 0x76, 0x73, 0x71, 0x70, 0x72, 0x71, 0x72, 0x74, 0x75, 0x75, 0x77, 0x7b, 0x7f, 0x81, 0x84, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x87, 0x85, 0x82, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7c, 0x7a, 0x77, 0x74, 0x72, 0x72, 0x72, 0x72, 0x6e, 0x6d, 0x6b, 0x69, 0x67, 0x65, 0x64, 0x64, 0x67, 0x68, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x70, 0x71, 0x73, 0x75, 0x77, 0x79, 0x79, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x74, 0x72, 0x6f, 0x6d, 0x6b, 0x69, 0x66, 0x65, 0x63, 0x62, 0x60, 0x5e, 0x5d, 0x5c, 0x5c, 0x5d, 0x5d, 0x5c, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5a, 0x59, 0x58, 0x57, 0x56, 0x56, 0x55, 0x54, 0x53, 0x59, 0x53, 0x51, 0x54, 0x54, 0x4d, 0x45, 0x40, 0x38, 0x39, 0x3c, 0x43, 0x48, 0x46, 0x3c, 0x33, 0x35, 0x35, 0x35, 0x34, 0x32, 0x34, 0x37, 0x3a, 0x3a, 0x43, 0x4a, 0x4b, 0x4a, 0x48, 0x44, 0x3e, 0x39, 0x43, 0x54, 0x64, 0x66, 0x5b, 0x52, 0x51, 0x4f, 0x52, 0x5d, 0x6e, 0x7b, 0x81, 0x84, 0x86, 0x83, 0x72, 0x6a, 0x6f, 0x6d, 0x5d, 0x4e, 0x4b, 0x46, 0x4c, 0x4c, 0x45, 0x42, 0x45, 0x48, 0x47, 0x4c, 0x49, 0x43, 0x3f, 0x42, 0x46, 0x3f, 0x34, 0x32, 0x2e, 0x33, 0x3e, 0x3c, 0x34, 0x37, 0x44, 0x48, 0x3d, 0x3f, 0x4f, 0x58, 0x50, 0x46, 0x44, 0x4d, 0x4a, 0x45, 0x3f, 0x39, 0x38, 0x3f, 0x48, 0x4f, 0x55, 0x50, 0x44, 0x3e, 0x3a, 0x39, 0x3e, 0x42, 0x51, 0x58, 0x4f, 0x44, 0x44, 0x49, 0x4b, 0x4e, 0x51, 0x57, 0x60, 0x69, 0x6d, 0x69, 0x63, 0x64, 0x68, 0x6b, 0x69, 0x61, 0x57, 0x4e, 0x4a, 0x4f, 0x4d, 0x4a, 0x47, 0x48, 0x50, 0x5c, 0x65, 0x54, 0x3b, 0x32, 0x49, 0x5f, 0x5e, 0x55, 0x52, 0x4c, 0x50, 0x57, 0x5b, 0x55, 0x47, 0x3a, 0x33, 0x3e, 0x4d, 0x4b, 0x49, 0x4b, 0x51, 0x54, 0x46, 0x36, 0x37, 0x34, 0x2e, 0x28, 0x2c, 0x46, 0x65, 0x6a, 0x6b, 0x6a, 0x5d, 0x5a, 0x6e, 0x7a, 0x6b, 0x54, 0x50, 0x45, 0x40, 0x42, 0x46, 0x52, 0x64, 0x73, 0x7d, 0x73, 0x5f, 0x5d, 0x64, 0x5d, 0x52, 0x40, 0x3b, 0x32, 0x30, 0x41, 0x5d, 0x70, 0x75, 0x70, 0x67, 0x67, 0x6c, 0x65, 0x53, 0x4b, 0x4e, 0x32, 0x21, 0x1b, 0x27, 0x3e, 0x5a, 0x6d, 0x71, 0x5a, 0x5b, 0x57, 0x50, 0x4c, 0x4e, 0x4e, 0x4b, 0x54, 0x4f, 0x4d, 0x53, 0x5e, 0x62, 0x58, 0x4b, 0x50, 0x4d, 0x4b, 0x4b, 0x4a, 0x47, 0x47, 0x49, 0x55, 0x55, 0x50, 0x47, 0x43, 0x47, 0x50, 0x56, 0x52, 0x50, 0x4e, 0x4e, 0x4f, 0x4f, 0x4b, 0x47, 0x44, 0x45, 0x48, 0x4c, 0x4f, 0x50, 0x54, 0x58, 0x5e, 0x59, 0x59, 0x57, 0x51, 0x4f, 0x4e, 0x49, 0x4f, 0x47, 0x43, 0x4c, 0x5c, 0x64, 0x5f, 0x56, 0x4d, 0x52, 0x58, 0x5a, 0x59, 0x57, 0x58, 0x5a, 0x4d, 0x4c, 0x4d, 0x52, 0x59, 0x5c, 0x5c, 0x5b, 0x55, 0x5c, 0x66, 0x6b, 0x69, 0x5f, 0x52, 0x49, 0x4b, 0x45, 0x43, 0x46, 0x48, 0x47, 0x49, 0x4d, 0x4d, 0x50, 0x51, 0x51, 0x55, 0x5b, 0x5f, 0x61, 0x5e, 0x5c, 0x5c, 0x5d, 0x59, 0x54, 0x4f, 0x4e, 0x51, 0x53, 0x57, 0x5b, 0x5d, 0x5b, 0x57, 0x54, 0x53, 0x4e, 0x48, 0x45, 0x46, 0x46, 0x45, 0x44, 0x40, 0x41, 0x45, 0x4c, 0x4e, 0x4e, 0x52, 0x59, 0x5c, 0x5b, 0x57, 0x52, 0x50, 0x51, 0x51, 0x4f, 0x4f, 0x52, 0x57, 0x5d, 0x5f, 0x58, 0x4c, 0x43, 0x45, 0x45, 0x46, 0x46, 0x42, 0x3e, 0x3d, 0x40, 0x41, 0x43, 0x46, 0x47, 0x47, 0x46, 0x45, 0x45, 0x46, 0x4b, 0x52, 0x57, 0x59, 0x5d, 0x61, 0x65, 0x63, 0x62, 0x61, 0x61, 0x61, 0x60, 0x5e, 0x5d, 0x59, 0x53, 0x4e, 0x4f, 0x57, 0x5e, 0x61, 0x61, 0x63, 0x61, 0x5e, 0x5d, 0x5e, 0x60, 0x61, 0x62, 0x65, 0x63, 0x63, 0x65, 0x63, 0x5d, 0x5c, 0x60, 0x61, 0x5e, 0x5a, 0x57, 0x58, 0x5e, 0x67, 0x6d, 0x6c, 0x6b, 0x68, 0x63, 0x5f, 0x5f, 0x5e, 0x5c, 0x5f, 0x61, 0x65, 0x67, 0x65, 0x62, 0x62, 0x65, 0x6a, 0x68, 0x67, 0x67, 0x68, 0x68, 0x67, 0x65, 0x62, 0x64, 0x66, 0x62, 0x5b, 0x59, 0x61, 0x6b, 0x6e, 0x71, 0x74, 0x73, 0x6f, 0x68, 0x61, 0x5c, 0x5d, 0x5b, 0x5c, 0x5f, 0x61, 0x61, 0x63, 0x66, 0x66, 0x68, 0x66, 0x62, 0x5f, 0x5e, 0x5c, 0x5a, 0x67, 0x64, 0x61, 0x60, 0x5e, 0x5c, 0x5d, 0x5f, 0x5e, 0x5d, 0x58, 0x51, 0x4e, 0x4e, 0x4e, 0x4d, 0x4f, 0x50, 0x4f, 0x4c, 0x4b, 0x53, 0x64, 0x71, 0x78, 0x7c, 0x7f, 0x7f, 0x7b, 0x79, 0x7b, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x75, 0x73, 0x71, 0x6f, 0x73, 0x72, 0x72, 0x74, 0x74, 0x74, 0x77, 0x7b, 0x7f, 0x81, 0x84, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x86, 0x82, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7a, 0x76, 0x72, 0x70, 0x70, 0x71, 0x72, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x67, 0x6b, 0x6b, 0x6b, 0x69, 0x67, 0x65, 0x65, 0x65, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x75, 0x78, 0x7b, 0x7d, 0x7e, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7a, 0x77, 0x76, 0x76, 0x74, 0x71, 0x6e, 0x6b, 0x69, 0x66, 0x64, 0x63, 0x61, 0x60, 0x5e, 0x5d, 0x5c, 0x5c, 0x5c, 0x5e, 0x5c, 0x5b, 0x5b, 0x5b, 0x5c, 0x5b, 0x5a, 0x58, 0x57, 0x56, 0x56, 0x56, 0x55, 0x54, 0x53, 0x54, 0x50, 0x4a, 0x48, 0x4b, 0x4a, 0x41, 0x37, 0x38, 0x3b, 0x42, 0x48, 0x4b, 0x48, 0x3f, 0x37, 0x32, 0x32, 0x33, 0x34, 0x35, 0x38, 0x3c, 0x3f, 0x3b, 0x43, 0x47, 0x46, 0x47, 0x4c, 0x4b, 0x46, 0x3e, 0x43, 0x55, 0x6a, 0x71, 0x63, 0x52, 0x49, 0x30, 0x34, 0x3f, 0x4b, 0x52, 0x55, 0x5d, 0x67, 0x67, 0x70, 0x73, 0x6c, 0x60, 0x58, 0x52, 0x4d, 0x4a, 0x4b, 0x49, 0x45, 0x43, 0x45, 0x49, 0x4a, 0x4f, 0x4b, 0x43, 0x3e, 0x44, 0x4c, 0x49, 0x3f, 0x30, 0x2a, 0x2f, 0x3c, 0x3c, 0x34, 0x39, 0x47, 0x49, 0x49, 0x47, 0x47, 0x50, 0x5b, 0x5a, 0x52, 0x4a, 0x47, 0x43, 0x40, 0x3c, 0x3d, 0x44, 0x4c, 0x51, 0x5a, 0x57, 0x4c, 0x46, 0x41, 0x3e, 0x40, 0x48, 0x56, 0x5f, 0x58, 0x4c, 0x4a, 0x50, 0x55, 0x4f, 0x52, 0x5a, 0x66, 0x6e, 0x6e, 0x69, 0x65, 0x67, 0x70, 0x76, 0x6e, 0x5d, 0x4f, 0x4b, 0x4e, 0x4b, 0x4c, 0x4b, 0x49, 0x49, 0x4f, 0x59, 0x61, 0x53, 0x3e, 0x3a, 0x51, 0x64, 0x5e, 0x4c, 0x43, 0x42, 0x4a, 0x57, 0x60, 0x5c, 0x4f, 0x42, 0x3c, 0x40, 0x4e, 0x4b, 0x49, 0x4e, 0x59, 0x5f, 0x51, 0x39, 0x39, 0x32, 0x26, 0x21, 0x2f, 0x49, 0x5d, 0x70, 0x6e, 0x65, 0x58, 0x5b, 0x6b, 0x6a, 0x56, 0x47, 0x49, 0x40, 0x35, 0x33, 0x3a, 0x48, 0x5a, 0x6f, 0x79, 0x73, 0x66, 0x65, 0x63, 0x55, 0x48, 0x39, 0x35, 0x32, 0x35, 0x44, 0x59, 0x69, 0x6f, 0x6a, 0x6d, 0x6c, 0x65, 0x5f, 0x58, 0x4d, 0x42, 0x33, 0x21, 0x20, 0x39, 0x58, 0x6f, 0x75, 0x6f, 0x56, 0x58, 0x54, 0x4c, 0x49, 0x4d, 0x4e, 0x4a, 0x49, 0x4e, 0x54, 0x56, 0x51, 0x4c, 0x4d, 0x51, 0x4d, 0x4c, 0x4e, 0x51, 0x51, 0x4d, 0x4a, 0x4a, 0x48, 0x4d, 0x4f, 0x49, 0x44, 0x46, 0x4d, 0x53, 0x5e, 0x59, 0x55, 0x56, 0x5a, 0x5b, 0x56, 0x51, 0x3d, 0x3c, 0x3f, 0x46, 0x4d, 0x53, 0x5c, 0x65, 0x5c, 0x58, 0x5a, 0x59, 0x51, 0x4f, 0x4f, 0x4a, 0x47, 0x42, 0x3e, 0x43, 0x50, 0x5b, 0x61, 0x62, 0x5f, 0x60, 0x61, 0x62, 0x60, 0x5c, 0x57, 0x53, 0x4e, 0x48, 0x47, 0x4f, 0x56, 0x58, 0x58, 0x59, 0x5f, 0x64, 0x69, 0x68, 0x62, 0x58, 0x50, 0x4b, 0x4b, 0x44, 0x41, 0x44, 0x46, 0x45, 0x48, 0x4d, 0x4b, 0x4d, 0x4e, 0x4c, 0x4e, 0x55, 0x5c, 0x5e, 0x61, 0x5d, 0x5b, 0x5b, 0x5b, 0x5a, 0x5b, 0x5e, 0x5d, 0x5d, 0x5e, 0x60, 0x63, 0x65, 0x64, 0x62, 0x5d, 0x55, 0x4c, 0x48, 0x49, 0x49, 0x47, 0x43, 0x44, 0x45, 0x45, 0x43, 0x41, 0x43, 0x4a, 0x4f, 0x59, 0x66, 0x70, 0x6a, 0x5a, 0x4c, 0x45, 0x44, 0x4a, 0x43, 0x3e, 0x41, 0x4b, 0x54, 0x58, 0x58, 0x46, 0x42, 0x3f, 0x40, 0x41, 0x40, 0x40, 0x41, 0x3f, 0x44, 0x49, 0x4c, 0x4c, 0x4a, 0x48, 0x46, 0x4b, 0x4e, 0x53, 0x55, 0x55, 0x57, 0x5b, 0x5f, 0x68, 0x65, 0x61, 0x5e, 0x5c, 0x5a, 0x57, 0x55, 0x56, 0x53, 0x51, 0x53, 0x57, 0x5b, 0x5c, 0x5b, 0x64, 0x65, 0x66, 0x66, 0x63, 0x62, 0x61, 0x61, 0x67, 0x6a, 0x6d, 0x6c, 0x68, 0x63, 0x62, 0x63, 0x63, 0x60, 0x5c, 0x59, 0x59, 0x5f, 0x67, 0x6d, 0x6d, 0x6e, 0x6b, 0x65, 0x61, 0x5f, 0x5b, 0x56, 0x5f, 0x5e, 0x5f, 0x61, 0x60, 0x5e, 0x5e, 0x5f, 0x64, 0x65, 0x65, 0x64, 0x64, 0x65, 0x68, 0x69, 0x65, 0x66, 0x67, 0x64, 0x5f, 0x5d, 0x63, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x66, 0x62, 0x5d, 0x5a, 0x58, 0x58, 0x5c, 0x62, 0x65, 0x65, 0x65, 0x67, 0x64, 0x67, 0x67, 0x62, 0x5d, 0x5c, 0x5e, 0x5e, 0x70, 0x6b, 0x67, 0x65, 0x61, 0x5d, 0x5c, 0x5e, 0x59, 0x55, 0x52, 0x53, 0x53, 0x51, 0x4f, 0x4f, 0x4e, 0x50, 0x50, 0x4f, 0x4e, 0x53, 0x5b, 0x62, 0x79, 0x7b, 0x7d, 0x7e, 0x7d, 0x7b, 0x7c, 0x7c, 0x78, 0x78, 0x77, 0x76, 0x75, 0x73, 0x72, 0x71, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x76, 0x7a, 0x7e, 0x80, 0x83, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x87, 0x83, 0x80, 0x7f, 0x7e, 0x7c, 0x7c, 0x7c, 0x7a, 0x76, 0x72, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6e, 0x6e, 0x6d, 0x6b, 0x69, 0x67, 0x67, 0x67, 0x69, 0x68, 0x66, 0x65, 0x66, 0x69, 0x6b, 0x6d, 0x71, 0x73, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x78, 0x78, 0x75, 0x71, 0x6e, 0x6c, 0x69, 0x66, 0x64, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5c, 0x5d, 0x5c, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5a, 0x58, 0x56, 0x55, 0x55, 0x56, 0x56, 0x55, 0x53, 0x4c, 0x4c, 0x46, 0x3f, 0x44, 0x4c, 0x4a, 0x3f, 0x36, 0x3b, 0x41, 0x45, 0x45, 0x40, 0x3a, 0x36, 0x33, 0x33, 0x33, 0x34, 0x37, 0x3b, 0x3d, 0x3e, 0x40, 0x45, 0x43, 0x39, 0x39, 0x45, 0x4e, 0x4f, 0x4c, 0x47, 0x4a, 0x56, 0x5e, 0x5d, 0x5d, 0x60, 0x69, 0x66, 0x5d, 0x4e, 0x43, 0x42, 0x48, 0x4e, 0x45, 0x57, 0x60, 0x59, 0x50, 0x50, 0x52, 0x50, 0x4c, 0x49, 0x47, 0x47, 0x47, 0x47, 0x4a, 0x4d, 0x52, 0x51, 0x4a, 0x43, 0x47, 0x50, 0x50, 0x49, 0x35, 0x34, 0x38, 0x40, 0x45, 0x44, 0x45, 0x49, 0x4b, 0x51, 0x4f, 0x48, 0x4e, 0x5d, 0x60, 0x57, 0x4c, 0x48, 0x43, 0x40, 0x3c, 0x39, 0x3c, 0x40, 0x4c, 0x56, 0x55, 0x4b, 0x46, 0x46, 0x46, 0x4a, 0x55, 0x5c, 0x5f, 0x59, 0x4f, 0x4a, 0x4f, 0x57, 0x4b, 0x4f, 0x5a, 0x68, 0x6f, 0x6c, 0x68, 0x66, 0x64, 0x6b, 0x6f, 0x67, 0x58, 0x4e, 0x4e, 0x53, 0x40, 0x3e, 0x39, 0x38, 0x40, 0x4d, 0x58, 0x5c, 0x4e, 0x3d, 0x3b, 0x52, 0x65, 0x61, 0x4f, 0x43, 0x3f, 0x49, 0x58, 0x61, 0x5d, 0x52, 0x49, 0x46, 0x47, 0x4e, 0x42, 0x3b, 0x42, 0x4f, 0x54, 0x43, 0x38, 0x2f, 0x2a, 0x2c, 0x31, 0x40, 0x56, 0x64, 0x6c, 0x6b, 0x5c, 0x51, 0x5b, 0x66, 0x59, 0x45, 0x3f, 0x42, 0x3c, 0x34, 0x35, 0x3e, 0x53, 0x6c, 0x74, 0x70, 0x69, 0x66, 0x5f, 0x4b, 0x3d, 0x3e, 0x32, 0x2f, 0x2f, 0x33, 0x3a, 0x46, 0x57, 0x65, 0x74, 0x77, 0x70, 0x62, 0x59, 0x56, 0x4c, 0x3f, 0x3b, 0x20, 0x1a, 0x36, 0x59, 0x6f, 0x72, 0x6b, 0x5d, 0x5f, 0x5a, 0x51, 0x4d, 0x4f, 0x4e, 0x49, 0x4c, 0x4a, 0x4e, 0x58, 0x5c, 0x58, 0x53, 0x52, 0x50, 0x4d, 0x4b, 0x4b, 0x4a, 0x47, 0x47, 0x49, 0x4d, 0x4d, 0x4b, 0x47, 0x45, 0x47, 0x48, 0x48, 0x50, 0x4f, 0x50, 0x56, 0x5c, 0x5d, 0x57, 0x50, 0x55, 0x48, 0x3d, 0x40, 0x49, 0x50, 0x54, 0x57, 0x5f, 0x5d, 0x5f, 0x5d, 0x54, 0x50, 0x50, 0x4c, 0x41, 0x40, 0x3e, 0x3e, 0x42, 0x4b, 0x56, 0x5e, 0x61, 0x5e, 0x5c, 0x60, 0x65, 0x65, 0x5e, 0x57, 0x4a, 0x42, 0x42, 0x4d, 0x56, 0x56, 0x57, 0x5a, 0x5e, 0x60, 0x61, 0x5d, 0x55, 0x4d, 0x4b, 0x4b, 0x4a, 0x42, 0x3f, 0x43, 0x45, 0x44, 0x47, 0x4c, 0x49, 0x4c, 0x4b, 0x48, 0x4a, 0x53, 0x5c, 0x60, 0x5b, 0x54, 0x50, 0x52, 0x56, 0x5a, 0x62, 0x6a, 0x6f, 0x6d, 0x69, 0x65, 0x64, 0x63, 0x61, 0x5e, 0x5d, 0x5a, 0x54, 0x4d, 0x46, 0x42, 0x41, 0x41, 0x4d, 0x4d, 0x4b, 0x4a, 0x4f, 0x57, 0x5b, 0x5b, 0x56, 0x56, 0x55, 0x58, 0x5e, 0x62, 0x61, 0x5c, 0x53, 0x4b, 0x44, 0x46, 0x50, 0x59, 0x5a, 0x57, 0x4d, 0x42, 0x3a, 0x39, 0x3c, 0x3d, 0x3b, 0x39, 0x39, 0x42, 0x4d, 0x54, 0x55, 0x52, 0x4d, 0x48, 0x48, 0x49, 0x4b, 0x4d, 0x51, 0x58, 0x60, 0x66, 0x66, 0x62, 0x5d, 0x5a, 0x5a, 0x5a, 0x59, 0x59, 0x56, 0x56, 0x57, 0x57, 0x58, 0x58, 0x57, 0x56, 0x5a, 0x61, 0x6a, 0x6e, 0x6d, 0x68, 0x65, 0x63, 0x63, 0x6a, 0x6f, 0x6b, 0x65, 0x63, 0x62, 0x62, 0x5e, 0x5d, 0x5b, 0x58, 0x56, 0x57, 0x5b, 0x5e, 0x5e, 0x65, 0x68, 0x62, 0x5b, 0x5c, 0x60, 0x63, 0x65, 0x60, 0x5e, 0x60, 0x62, 0x62, 0x61, 0x61, 0x60, 0x64, 0x66, 0x63, 0x60, 0x61, 0x66, 0x69, 0x69, 0x67, 0x65, 0x64, 0x60, 0x5f, 0x62, 0x66, 0x66, 0x64, 0x61, 0x5f, 0x5f, 0x5e, 0x5b, 0x59, 0x55, 0x56, 0x5c, 0x63, 0x65, 0x64, 0x62, 0x63, 0x66, 0x6b, 0x6b, 0x64, 0x5c, 0x5a, 0x5f, 0x63, 0x63, 0x5f, 0x5d, 0x5e, 0x5c, 0x59, 0x59, 0x5c, 0x5b, 0x56, 0x56, 0x5c, 0x5f, 0x5a, 0x56, 0x56, 0x65, 0x6a, 0x71, 0x79, 0x80, 0x84, 0x87, 0x88, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x73, 0x72, 0x71, 0x72, 0x72, 0x72, 0x75, 0x79, 0x7e, 0x80, 0x83, 0x86, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x87, 0x84, 0x82, 0x80, 0x7e, 0x7b, 0x7a, 0x7c, 0x7a, 0x77, 0x73, 0x70, 0x6d, 0x6b, 0x6a, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x69, 0x6a, 0x6a, 0x68, 0x67, 0x66, 0x67, 0x68, 0x69, 0x68, 0x66, 0x65, 0x66, 0x69, 0x6c, 0x6e, 0x73, 0x76, 0x79, 0x7c, 0x7c, 0x7b, 0x78, 0x76, 0x7c, 0x7e, 0x82, 0x83, 0x82, 0x81, 0x81, 0x82, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x75, 0x72, 0x6e, 0x6c, 0x69, 0x66, 0x64, 0x62, 0x61, 0x61, 0x60, 0x5e, 0x5d, 0x5c, 0x5b, 0x5d, 0x5c, 0x5a, 0x5a, 0x5a, 0x5b, 0x5a, 0x59, 0x57, 0x56, 0x54, 0x55, 0x56, 0x56, 0x55, 0x54, 0x4d, 0x51, 0x4a, 0x3e, 0x42, 0x50, 0x52, 0x49, 0x3c, 0x41, 0x48, 0x4a, 0x47, 0x42, 0x3f, 0x3d, 0x37, 0x35, 0x34, 0x35, 0x38, 0x3b, 0x3b, 0x3a, 0x44, 0x47, 0x3f, 0x2f, 0x2c, 0x3c, 0x4e, 0x55, 0x5a, 0x50, 0x4a, 0x4a, 0x49, 0x4e, 0x5f, 0x73, 0x7b, 0x80, 0x7b, 0x6c, 0x60, 0x5a, 0x4d, 0x3e, 0x3f, 0x42, 0x46, 0x47, 0x46, 0x45, 0x48, 0x4e, 0x4b, 0x45, 0x43, 0x46, 0x47, 0x45, 0x47, 0x4b, 0x53, 0x55, 0x50, 0x46, 0x45, 0x4d, 0x50, 0x4b, 0x41, 0x43, 0x43, 0x45, 0x4b, 0x50, 0x4b, 0x41, 0x40, 0x43, 0x45, 0x46, 0x49, 0x4e, 0x50, 0x4f, 0x4f, 0x4a, 0x45, 0x41, 0x3e, 0x3b, 0x3d, 0x40, 0x50, 0x5a, 0x58, 0x4e, 0x4e, 0x54, 0x5c, 0x64, 0x6c, 0x6b, 0x68, 0x62, 0x58, 0x52, 0x55, 0x5d, 0x4a, 0x4e, 0x5b, 0x6b, 0x71, 0x6d, 0x69, 0x69, 0x70, 0x6e, 0x6b, 0x65, 0x5e, 0x5a, 0x58, 0x58, 0x4f, 0x46, 0x3b, 0x3a, 0x48, 0x5d, 0x68, 0x67, 0x5c, 0x4a, 0x42, 0x50, 0x5f, 0x5b, 0x49, 0x3c, 0x42, 0x4b, 0x56, 0x5a, 0x51, 0x44, 0x3c, 0x3b, 0x46, 0x49, 0x3a, 0x36, 0x44, 0x59, 0x61, 0x4f, 0x3f, 0x32, 0x38, 0x47, 0x42, 0x3b, 0x4d, 0x66, 0x64, 0x65, 0x55, 0x4d, 0x61, 0x6c, 0x5d, 0x4e, 0x4c, 0x3f, 0x2f, 0x2f, 0x3b, 0x46, 0x55, 0x68, 0x7a, 0x71, 0x5f, 0x57, 0x5e, 0x5b, 0x4c, 0x3f, 0x40, 0x3d, 0x3d, 0x3f, 0x3f, 0x46, 0x5c, 0x72, 0x6e, 0x70, 0x6c, 0x5a, 0x42, 0x33, 0x37, 0x41, 0x35, 0x23, 0x27, 0x43, 0x58, 0x61, 0x65, 0x65, 0x7c, 0x64, 0x50, 0x4f, 0x51, 0x4c, 0x4c, 0x52, 0x56, 0x55, 0x55, 0x55, 0x55, 0x53, 0x51, 0x50, 0x50, 0x4f, 0x4d, 0x4b, 0x49, 0x49, 0x4a, 0x4b, 0x50, 0x51, 0x4f, 0x4b, 0x48, 0x48, 0x47, 0x45, 0x3f, 0x48, 0x4c, 0x4c, 0x52, 0x5c, 0x5d, 0x56, 0x53, 0x59, 0x61, 0x65, 0x60, 0x58, 0x57, 0x5b, 0x67, 0x6b, 0x68, 0x5e, 0x56, 0x52, 0x4e, 0x48, 0x3e, 0x38, 0x38, 0x40, 0x49, 0x4e, 0x52, 0x55, 0x55, 0x57, 0x5c, 0x61, 0x61, 0x5b, 0x57, 0x55, 0x47, 0x46, 0x48, 0x4d, 0x54, 0x59, 0x60, 0x66, 0x6b, 0x66, 0x5e, 0x56, 0x4f, 0x4b, 0x4a, 0x4a, 0x4d, 0x4b, 0x47, 0x43, 0x42, 0x45, 0x49, 0x4d, 0x4b, 0x49, 0x48, 0x4b, 0x52, 0x5a, 0x62, 0x66, 0x54, 0x52, 0x4d, 0x49, 0x4a, 0x53, 0x61, 0x6b, 0x6c, 0x69, 0x65, 0x63, 0x63, 0x60, 0x5c, 0x58, 0x55, 0x57, 0x57, 0x51, 0x48, 0x43, 0x43, 0x45, 0x46, 0x45, 0x46, 0x4d, 0x58, 0x64, 0x6f, 0x76, 0x61, 0x4b, 0x37, 0x39, 0x48, 0x58, 0x66, 0x6f, 0x6a, 0x68, 0x60, 0x56, 0x56, 0x5c, 0x57, 0x4e, 0x48, 0x44, 0x3f, 0x3e, 0x40, 0x41, 0x40, 0x3e, 0x3f, 0x46, 0x4e, 0x51, 0x4e, 0x48, 0x46, 0x48, 0x49, 0x52, 0x57, 0x56, 0x56, 0x5b, 0x5e, 0x5d, 0x61, 0x5f, 0x5c, 0x5c, 0x5c, 0x5b, 0x58, 0x55, 0x51, 0x53, 0x55, 0x59, 0x5c, 0x5e, 0x5e, 0x5e, 0x65, 0x6a, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x67, 0x6b, 0x70, 0x71, 0x6c, 0x66, 0x63, 0x63, 0x62, 0x62, 0x61, 0x5d, 0x57, 0x55, 0x57, 0x5a, 0x5b, 0x5c, 0x5d, 0x5f, 0x5e, 0x5c, 0x5b, 0x5c, 0x5e, 0x66, 0x62, 0x5f, 0x5f, 0x5f, 0x61, 0x65, 0x69, 0x62, 0x67, 0x68, 0x63, 0x61, 0x65, 0x6d, 0x72, 0x7b, 0x79, 0x70, 0x63, 0x5b, 0x5d, 0x61, 0x64, 0x65, 0x62, 0x5e, 0x5d, 0x5e, 0x5d, 0x5a, 0x57, 0x5c, 0x5e, 0x64, 0x68, 0x68, 0x65, 0x64, 0x66, 0x69, 0x72, 0x73, 0x67, 0x5f, 0x5f, 0x61, 0x5f, 0x5a, 0x5f, 0x5d, 0x5a, 0x59, 0x54, 0x53, 0x59, 0x68, 0x76, 0x88, 0x97, 0xa3, 0xac, 0xae, 0xac, 0xa8, 0xa9, 0xa1, 0x95, 0x8f, 0x8f, 0x89, 0x7f, 0x7d, 0x7b, 0x7b, 0x7d, 0x7c, 0x79, 0x78, 0x7c, 0x79, 0x7b, 0x7d, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x76, 0x78, 0x7c, 0x7f, 0x82, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x8c, 0x89, 0x85, 0x82, 0x7f, 0x7d, 0x7a, 0x79, 0x76, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x66, 0x66, 0x67, 0x68, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x73, 0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7a, 0x79, 0x80, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x78, 0x76, 0x73, 0x70, 0x6d, 0x6a, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5d, 0x5b, 0x5a, 0x5a, 0x5a, 0x5e, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x5a, 0x59, 0x57, 0x59, 0x58, 0x55, 0x55, 0x55, 0x52, 0x4d, 0x49, 0x48, 0x45, 0x41, 0x44, 0x4c, 0x54, 0x58, 0x50, 0x53, 0x51, 0x48, 0x44, 0x46, 0x45, 0x40, 0x37, 0x32, 0x2f, 0x33, 0x39, 0x3c, 0x3c, 0x3a, 0x41, 0x47, 0x3f, 0x31, 0x31, 0x39, 0x43, 0x4c, 0x54, 0x5d, 0x60, 0x5b, 0x5c, 0x63, 0x65, 0x60, 0x64, 0x73, 0x7e, 0x7c, 0x75, 0x70, 0x6c, 0x67, 0x60, 0x54, 0x49, 0x45, 0x40, 0x3b, 0x3f, 0x48, 0x4c, 0x4a, 0x49, 0x49, 0x47, 0x46, 0x49, 0x4e, 0x54, 0x53, 0x4f, 0x49, 0x48, 0x4b, 0x4e, 0x4e, 0x4e, 0x50, 0x50, 0x51, 0x53, 0x53, 0x4e, 0x48, 0x3f, 0x39, 0x3a, 0x47, 0x52, 0x52, 0x4e, 0x4c, 0x45, 0x49, 0x47, 0x43, 0x44, 0x43, 0x41, 0x45, 0x4e, 0x59, 0x5c, 0x56, 0x59, 0x68, 0x70, 0x6e, 0x70, 0x6b, 0x62, 0x59, 0x54, 0x55, 0x5a, 0x5f, 0x4e, 0x51, 0x5e, 0x6e, 0x6f, 0x66, 0x65, 0x6b, 0x69, 0x6f, 0x6c, 0x62, 0x5e, 0x61, 0x5d, 0x53, 0x4a, 0x4c, 0x4c, 0x4e, 0x58, 0x63, 0x61, 0x57, 0x46, 0x35, 0x40, 0x51, 0x61, 0x5d, 0x41, 0x39, 0x3e, 0x50, 0x4e, 0x51, 0x50, 0x52, 0x46, 0x4c, 0x50, 0x50, 0x45, 0x40, 0x4e, 0x5b, 0x5a, 0x56, 0x48, 0x55, 0x4d, 0x38, 0x37, 0x49, 0x5b, 0x65, 0x79, 0x78, 0x67, 0x53, 0x4a, 0x3f, 0x3b, 0x46, 0x43, 0x3b, 0x37, 0x39, 0x37, 0x3a, 0x4f, 0x67, 0x76, 0x60, 0x50, 0x51, 0x56, 0x51, 0x4a, 0x47, 0x3e, 0x3f, 0x3e, 0x39, 0x3d, 0x53, 0x67, 0x68, 0x69, 0x6d, 0x6d, 0x61, 0x4c, 0x3a, 0x35, 0x38, 0x22, 0x21, 0x2f, 0x42, 0x4c, 0x55, 0x62, 0x6a, 0x74, 0x57, 0x42, 0x47, 0x55, 0x59, 0x56, 0x55, 0x5d, 0x59, 0x55, 0x53, 0x53, 0x54, 0x53, 0x52, 0x4d, 0x4a, 0x47, 0x44, 0x45, 0x48, 0x4e, 0x52, 0x4e, 0x4f, 0x4e, 0x4c, 0x4b, 0x4b, 0x49, 0x46, 0x44, 0x47, 0x46, 0x41, 0x44, 0x52, 0x5f, 0x64, 0x6d, 0x69, 0x6a, 0x6e, 0x6c, 0x65, 0x62, 0x65, 0x74, 0x76, 0x76, 0x73, 0x6c, 0x63, 0x57, 0x4d, 0x47, 0x44, 0x45, 0x4d, 0x52, 0x51, 0x4e, 0x4c, 0x52, 0x4f, 0x4f, 0x53, 0x56, 0x56, 0x57, 0x59, 0x53, 0x50, 0x4e, 0x51, 0x56, 0x5d, 0x65, 0x6c, 0x6e, 0x68, 0x5f, 0x55, 0x4f, 0x4d, 0x4d, 0x4f, 0x4b, 0x4a, 0x48, 0x45, 0x44, 0x44, 0x47, 0x49, 0x49, 0x4f, 0x57, 0x5d, 0x5e, 0x5a, 0x54, 0x50, 0x52, 0x4e, 0x48, 0x43, 0x45, 0x4e, 0x5a, 0x63, 0x69, 0x67, 0x63, 0x5f, 0x5b, 0x57, 0x55, 0x54, 0x52, 0x55, 0x55, 0x50, 0x47, 0x42, 0x41, 0x43, 0x4a, 0x49, 0x47, 0x47, 0x50, 0x5d, 0x67, 0x6b, 0x6f, 0x69, 0x5f, 0x55, 0x52, 0x52, 0x52, 0x51, 0x4b, 0x50, 0x55, 0x5b, 0x60, 0x60, 0x54, 0x46, 0x3e, 0x3e, 0x41, 0x46, 0x4b, 0x4a, 0x44, 0x3e, 0x39, 0x3f, 0x48, 0x4e, 0x4c, 0x48, 0x46, 0x46, 0x49, 0x4d, 0x50, 0x4f, 0x4e, 0x50, 0x51, 0x50, 0x53, 0x53, 0x53, 0x55, 0x58, 0x59, 0x56, 0x54, 0x51, 0x53, 0x57, 0x5a, 0x5d, 0x5c, 0x5b, 0x59, 0x66, 0x69, 0x69, 0x66, 0x64, 0x65, 0x67, 0x68, 0x6f, 0x73, 0x74, 0x71, 0x6c, 0x6a, 0x69, 0x67, 0x62, 0x61, 0x5d, 0x58, 0x59, 0x5e, 0x62, 0x64, 0x60, 0x62, 0x63, 0x63, 0x60, 0x5e, 0x5d, 0x5e, 0x61, 0x5f, 0x5d, 0x5f, 0x60, 0x61, 0x63, 0x67, 0x67, 0x69, 0x69, 0x66, 0x65, 0x69, 0x6e, 0x70, 0x75, 0x75, 0x6f, 0x65, 0x5e, 0x5f, 0x62, 0x63, 0x64, 0x61, 0x5e, 0x5c, 0x5b, 0x5b, 0x5b, 0x5a, 0x61, 0x62, 0x67, 0x6b, 0x6c, 0x69, 0x68, 0x69, 0x6b, 0x6f, 0x6e, 0x65, 0x5d, 0x5f, 0x63, 0x65, 0x63, 0x62, 0x5a, 0x55, 0x5b, 0x6b, 0x89, 0xa8, 0xbc, 0xb7, 0xb0, 0xaa, 0xa1, 0x94, 0x88, 0x81, 0x7a, 0x7b, 0x77, 0x70, 0x71, 0x7b, 0x85, 0x89, 0x80, 0x7d, 0x7a, 0x7a, 0x78, 0x75, 0x76, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x75, 0x76, 0x76, 0x75, 0x74, 0x75, 0x77, 0x78, 0x7c, 0x7f, 0x82, 0x85, 0x87, 0x89, 0x8b, 0x8d, 0x8a, 0x88, 0x86, 0x83, 0x80, 0x7c, 0x77, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6c, 0x6a, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6d, 0x6f, 0x73, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x76, 0x74, 0x71, 0x6e, 0x6b, 0x68, 0x65, 0x63, 0x61, 0x60, 0x5e, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x5d, 0x5c, 0x5a, 0x5a, 0x5a, 0x5a, 0x58, 0x57, 0x56, 0x58, 0x58, 0x55, 0x54, 0x53, 0x4f, 0x49, 0x45, 0x43, 0x3f, 0x3c, 0x3e, 0x43, 0x4b, 0x50, 0x54, 0x56, 0x54, 0x4d, 0x48, 0x47, 0x45, 0x41, 0x38, 0x33, 0x2f, 0x30, 0x34, 0x38, 0x39, 0x39, 0x3f, 0x47, 0x44, 0x39, 0x39, 0x3f, 0x46, 0x4e, 0x56, 0x60, 0x6d, 0x79, 0x82, 0x81, 0x70, 0x5e, 0x67, 0x63, 0x60, 0x62, 0x68, 0x70, 0x77, 0x7c, 0x6a, 0x5f, 0x52, 0x49, 0x40, 0x3a, 0x3d, 0x44, 0x4e, 0x4f, 0x50, 0x4e, 0x4c, 0x4c, 0x4f, 0x51, 0x51, 0x51, 0x4f, 0x4b, 0x49, 0x4a, 0x4a, 0x49, 0x51, 0x52, 0x54, 0x56, 0x58, 0x59, 0x59, 0x59, 0x4d, 0x44, 0x40, 0x47, 0x4e, 0x4e, 0x4b, 0x4a, 0x49, 0x52, 0x50, 0x48, 0x46, 0x45, 0x46, 0x4c, 0x57, 0x5d, 0x5d, 0x56, 0x54, 0x5a, 0x5b, 0x57, 0x50, 0x4c, 0x4c, 0x54, 0x5e, 0x61, 0x5a, 0x51, 0x40, 0x49, 0x5b, 0x6b, 0x6e, 0x68, 0x66, 0x6a, 0x73, 0x72, 0x67, 0x58, 0x53, 0x59, 0x5c, 0x57, 0x50, 0x52, 0x4e, 0x4b, 0x50, 0x5a, 0x5d, 0x58, 0x4d, 0x38, 0x40, 0x53, 0x63, 0x5c, 0x3c, 0x32, 0x43, 0x53, 0x4e, 0x51, 0x51, 0x53, 0x46, 0x4a, 0x4f, 0x4c, 0x43, 0x46, 0x59, 0x65, 0x60, 0x59, 0x64, 0x62, 0x4f, 0x39, 0x38, 0x4a, 0x62, 0x75, 0x75, 0x6d, 0x57, 0x41, 0x38, 0x3b, 0x43, 0x4d, 0x50, 0x43, 0x37, 0x36, 0x3a, 0x42, 0x53, 0x63, 0x56, 0x4d, 0x4b, 0x52, 0x55, 0x4e, 0x4a, 0x4b, 0x3f, 0x2a, 0x24, 0x35, 0x47, 0x58, 0x6b, 0x77, 0x78, 0x73, 0x68, 0x5b, 0x4d, 0x3e, 0x2e, 0x22, 0x1d, 0x18, 0x27, 0x4b, 0x6d, 0x7e, 0x80, 0x79, 0x66, 0x5a, 0x53, 0x54, 0x55, 0x53, 0x54, 0x58, 0x58, 0x53, 0x4d, 0x4b, 0x4d, 0x50, 0x51, 0x50, 0x4f, 0x4b, 0x46, 0x42, 0x42, 0x45, 0x4a, 0x4d, 0x4a, 0x4b, 0x4a, 0x49, 0x4a, 0x4c, 0x49, 0x46, 0x44, 0x46, 0x45, 0x42, 0x40, 0x45, 0x50, 0x5b, 0x67, 0x61, 0x64, 0x70, 0x72, 0x66, 0x5a, 0x57, 0x63, 0x63, 0x67, 0x70, 0x75, 0x6e, 0x61, 0x58, 0x45, 0x44, 0x48, 0x50, 0x57, 0x57, 0x55, 0x53, 0x4b, 0x46, 0x43, 0x47, 0x4f, 0x55, 0x59, 0x5c, 0x63, 0x5f, 0x5d, 0x5e, 0x60, 0x63, 0x68, 0x6d, 0x68, 0x64, 0x5e, 0x58, 0x53, 0x52, 0x52, 0x53, 0x4d, 0x4c, 0x49, 0x46, 0x44, 0x45, 0x47, 0x4a, 0x54, 0x58, 0x5c, 0x5c, 0x57, 0x50, 0x49, 0x46, 0x49, 0x46, 0x43, 0x44, 0x4a, 0x52, 0x5a, 0x60, 0x61, 0x60, 0x5f, 0x5b, 0x57, 0x55, 0x56, 0x57, 0x57, 0x5b, 0x5d, 0x59, 0x50, 0x49, 0x47, 0x48, 0x47, 0x48, 0x42, 0x39, 0x3a, 0x43, 0x4a, 0x49, 0x4e, 0x58, 0x5f, 0x60, 0x63, 0x68, 0x66, 0x5f, 0x48, 0x45, 0x46, 0x4d, 0x56, 0x58, 0x53, 0x4c, 0x4e, 0x46, 0x3e, 0x3b, 0x3f, 0x44, 0x45, 0x43, 0x45, 0x46, 0x49, 0x4c, 0x4a, 0x45, 0x42, 0x42, 0x4d, 0x4e, 0x51, 0x55, 0x55, 0x51, 0x4e, 0x4e, 0x4b, 0x4c, 0x4f, 0x53, 0x58, 0x59, 0x57, 0x54, 0x50, 0x51, 0x53, 0x55, 0x56, 0x56, 0x55, 0x54, 0x5e, 0x61, 0x62, 0x60, 0x5e, 0x60, 0x63, 0x64, 0x6e, 0x71, 0x73, 0x72, 0x71, 0x70, 0x6d, 0x69, 0x5c, 0x5c, 0x5b, 0x5b, 0x5f, 0x65, 0x67, 0x66, 0x64, 0x65, 0x65, 0x64, 0x61, 0x5e, 0x5d, 0x5c, 0x5d, 0x5c, 0x5c, 0x5f, 0x61, 0x61, 0x62, 0x65, 0x6c, 0x6d, 0x6c, 0x6a, 0x6b, 0x6e, 0x6f, 0x6e, 0x71, 0x71, 0x6e, 0x68, 0x63, 0x62, 0x63, 0x64, 0x62, 0x61, 0x5e, 0x5b, 0x59, 0x5b, 0x5e, 0x61, 0x5f, 0x5e, 0x61, 0x67, 0x6a, 0x6a, 0x6a, 0x6b, 0x69, 0x6a, 0x68, 0x62, 0x5c, 0x5b, 0x60, 0x65, 0x6b, 0x6f, 0x77, 0x8d, 0xa9, 0xb4, 0xb1, 0xb0, 0xa3, 0x94, 0x86, 0x81, 0x7f, 0x78, 0x74, 0x73, 0x6f, 0x68, 0x64, 0x6c, 0x7c, 0x8a, 0x8f, 0x8e, 0x84, 0x7f, 0x7a, 0x77, 0x74, 0x71, 0x72, 0x74, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x75, 0x74, 0x74, 0x76, 0x78, 0x7c, 0x7e, 0x82, 0x85, 0x88, 0x8a, 0x8c, 0x8e, 0x89, 0x88, 0x86, 0x84, 0x80, 0x7b, 0x75, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x69, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6d, 0x72, 0x75, 0x76, 0x78, 0x7b, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x73, 0x70, 0x6d, 0x6b, 0x68, 0x66, 0x63, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5b, 0x5b, 0x5c, 0x5c, 0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x59, 0x57, 0x56, 0x53, 0x54, 0x54, 0x53, 0x55, 0x57, 0x56, 0x54, 0x4f, 0x48, 0x44, 0x44, 0x44, 0x46, 0x4e, 0x57, 0x53, 0x52, 0x50, 0x4d, 0x4a, 0x47, 0x45, 0x44, 0x3b, 0x36, 0x30, 0x2e, 0x30, 0x35, 0x38, 0x38, 0x40, 0x49, 0x46, 0x3d, 0x3c, 0x40, 0x47, 0x50, 0x5a, 0x5d, 0x66, 0x73, 0x7e, 0x7f, 0x77, 0x6f, 0x61, 0x58, 0x54, 0x5a, 0x60, 0x62, 0x66, 0x6c, 0x6b, 0x64, 0x59, 0x4e, 0x45, 0x41, 0x41, 0x42, 0x47, 0x4d, 0x50, 0x4d, 0x4c, 0x4e, 0x4f, 0x4c, 0x4c, 0x4e, 0x4e, 0x4c, 0x4b, 0x4c, 0x4a, 0x48, 0x46, 0x47, 0x4d, 0x53, 0x54, 0x51, 0x52, 0x58, 0x4e, 0x48, 0x46, 0x4b, 0x4f, 0x4e, 0x4e, 0x4f, 0x52, 0x5f, 0x5d, 0x4f, 0x47, 0x47, 0x4e, 0x56, 0x5b, 0x5c, 0x5a, 0x57, 0x55, 0x54, 0x50, 0x4b, 0x48, 0x47, 0x4d, 0x5b, 0x69, 0x69, 0x5c, 0x4d, 0x4a, 0x57, 0x67, 0x6f, 0x6f, 0x6b, 0x6a, 0x6b, 0x71, 0x6e, 0x62, 0x54, 0x50, 0x56, 0x58, 0x56, 0x50, 0x52, 0x4c, 0x44, 0x46, 0x53, 0x5d, 0x5e, 0x59, 0x45, 0x4a, 0x5b, 0x63, 0x56, 0x3f, 0x3d, 0x41, 0x4b, 0x43, 0x46, 0x47, 0x49, 0x3b, 0x3f, 0x57, 0x50, 0x47, 0x4e, 0x62, 0x67, 0x5d, 0x54, 0x58, 0x56, 0x4b, 0x43, 0x49, 0x55, 0x66, 0x78, 0x74, 0x68, 0x57, 0x46, 0x40, 0x4d, 0x58, 0x57, 0x45, 0x3e, 0x35, 0x32, 0x3b, 0x4d, 0x61, 0x6e, 0x61, 0x57, 0x4f, 0x4a, 0x42, 0x3a, 0x3b, 0x43, 0x44, 0x32, 0x2d, 0x3d, 0x57, 0x71, 0x7f, 0x7f, 0x78, 0x76, 0x6b, 0x5a, 0x4a, 0x3f, 0x35, 0x2c, 0x2c, 0x26, 0x2e, 0x4b, 0x6b, 0x79, 0x74, 0x6b, 0x4d, 0x53, 0x59, 0x57, 0x50, 0x4d, 0x55, 0x60, 0x5c, 0x56, 0x4e, 0x49, 0x49, 0x4a, 0x49, 0x47, 0x4f, 0x4c, 0x48, 0x45, 0x45, 0x46, 0x48, 0x49, 0x48, 0x47, 0x44, 0x42, 0x44, 0x47, 0x46, 0x42, 0x45, 0x45, 0x47, 0x48, 0x45, 0x42, 0x47, 0x50, 0x5c, 0x59, 0x62, 0x72, 0x74, 0x67, 0x5d, 0x5d, 0x63, 0x5e, 0x61, 0x6f, 0x7a, 0x76, 0x6b, 0x64, 0x58, 0x54, 0x51, 0x51, 0x53, 0x54, 0x53, 0x52, 0x54, 0x4f, 0x4e, 0x56, 0x60, 0x66, 0x69, 0x6a, 0x62, 0x60, 0x61, 0x63, 0x62, 0x5f, 0x5d, 0x5e, 0x5b, 0x5b, 0x5c, 0x5c, 0x5b, 0x59, 0x57, 0x55, 0x56, 0x53, 0x4e, 0x49, 0x47, 0x48, 0x4c, 0x4f, 0x5b, 0x5b, 0x57, 0x51, 0x4b, 0x48, 0x4a, 0x4d, 0x46, 0x45, 0x45, 0x49, 0x50, 0x55, 0x57, 0x57, 0x57, 0x57, 0x59, 0x5b, 0x5d, 0x5f, 0x60, 0x60, 0x58, 0x5c, 0x5e, 0x5a, 0x51, 0x49, 0x45, 0x44, 0x4e, 0x56, 0x53, 0x45, 0x3e, 0x42, 0x45, 0x42, 0x47, 0x4b, 0x51, 0x5c, 0x6b, 0x77, 0x79, 0x73, 0x5d, 0x50, 0x42, 0x3f, 0x44, 0x49, 0x4e, 0x51, 0x4d, 0x47, 0x42, 0x42, 0x45, 0x46, 0x42, 0x3d, 0x51, 0x4c, 0x49, 0x4a, 0x47, 0x42, 0x40, 0x42, 0x46, 0x45, 0x4b, 0x54, 0x56, 0x50, 0x4a, 0x4a, 0x50, 0x51, 0x53, 0x58, 0x5b, 0x5b, 0x58, 0x55, 0x52, 0x52, 0x51, 0x50, 0x4f, 0x50, 0x51, 0x53, 0x51, 0x58, 0x5f, 0x61, 0x61, 0x61, 0x61, 0x5f, 0x66, 0x69, 0x6b, 0x6d, 0x6f, 0x70, 0x6c, 0x67, 0x58, 0x5a, 0x5c, 0x60, 0x66, 0x6b, 0x6a, 0x65, 0x68, 0x66, 0x64, 0x61, 0x5f, 0x5e, 0x5d, 0x5d, 0x5b, 0x5a, 0x5b, 0x5e, 0x60, 0x60, 0x62, 0x64, 0x6c, 0x6e, 0x6f, 0x6d, 0x6e, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6d, 0x69, 0x65, 0x64, 0x65, 0x65, 0x63, 0x62, 0x5f, 0x5c, 0x59, 0x5c, 0x62, 0x68, 0x65, 0x61, 0x5f, 0x61, 0x64, 0x65, 0x66, 0x67, 0x67, 0x65, 0x63, 0x61, 0x5c, 0x58, 0x5a, 0x60, 0x6d, 0x98, 0xbc, 0xc5, 0xbe, 0xb2, 0xa7, 0xa3, 0x95, 0x88, 0x79, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x6f, 0x82, 0x91, 0x94, 0x8c, 0x85, 0x85, 0x81, 0x7b, 0x76, 0x72, 0x6f, 0x6d, 0x6d, 0x72, 0x74, 0x75, 0x76, 0x75, 0x76, 0x77, 0x79, 0x78, 0x78, 0x77, 0x76, 0x74, 0x74, 0x76, 0x77, 0x7c, 0x7e, 0x82, 0x86, 0x88, 0x8a, 0x8c, 0x8e, 0x8b, 0x8a, 0x88, 0x85, 0x82, 0x7d, 0x78, 0x74, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66, 0x66, 0x66, 0x6a, 0x6e, 0x73, 0x75, 0x75, 0x76, 0x79, 0x7d, 0x7e, 0x80, 0x81, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x70, 0x6e, 0x6b, 0x68, 0x66, 0x64, 0x61, 0x5f, 0x5e, 0x5d, 0x5c, 0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x59, 0x57, 0x55, 0x5d, 0x5a, 0x55, 0x51, 0x50, 0x51, 0x52, 0x52, 0x4d, 0x43, 0x3d, 0x3d, 0x3c, 0x3d, 0x46, 0x53, 0x53, 0x4d, 0x49, 0x49, 0x4b, 0x4c, 0x4c, 0x4b, 0x41, 0x3c, 0x34, 0x2f, 0x30, 0x36, 0x3a, 0x3b, 0x43, 0x49, 0x44, 0x3b, 0x39, 0x3e, 0x46, 0x51, 0x56, 0x53, 0x52, 0x53, 0x52, 0x56, 0x64, 0x72, 0x85, 0x7f, 0x76, 0x6c, 0x5e, 0x52, 0x4f, 0x51, 0x62, 0x5e, 0x55, 0x4d, 0x4a, 0x4b, 0x48, 0x44, 0x41, 0x4a, 0x4f, 0x4c, 0x4b, 0x4f, 0x4f, 0x49, 0x49, 0x4c, 0x4d, 0x4d, 0x4d, 0x4e, 0x4d, 0x4b, 0x46, 0x48, 0x51, 0x59, 0x56, 0x4e, 0x4e, 0x56, 0x4d, 0x4f, 0x53, 0x56, 0x54, 0x51, 0x52, 0x56, 0x5d, 0x6b, 0x68, 0x54, 0x47, 0x49, 0x54, 0x60, 0x5d, 0x59, 0x57, 0x58, 0x58, 0x54, 0x4f, 0x4c, 0x51, 0x55, 0x5c, 0x64, 0x68, 0x65, 0x5e, 0x58, 0x5b, 0x68, 0x72, 0x70, 0x6b, 0x6b, 0x6d, 0x6e, 0x6a, 0x6a, 0x64, 0x5d, 0x58, 0x56, 0x51, 0x4a, 0x4a, 0x4a, 0x43, 0x3c, 0x41, 0x53, 0x61, 0x64, 0x53, 0x44, 0x42, 0x49, 0x40, 0x2a, 0x22, 0x2c, 0x4b, 0x51, 0x44, 0x46, 0x48, 0x4c, 0x3f, 0x44, 0x58, 0x51, 0x49, 0x4f, 0x5c, 0x5d, 0x54, 0x50, 0x56, 0x53, 0x45, 0x39, 0x3f, 0x4e, 0x62, 0x74, 0x6d, 0x61, 0x57, 0x4b, 0x47, 0x57, 0x5c, 0x4e, 0x39, 0x3c, 0x37, 0x2f, 0x33, 0x49, 0x63, 0x72, 0x76, 0x67, 0x57, 0x4e, 0x47, 0x44, 0x47, 0x4e, 0x32, 0x2f, 0x36, 0x46, 0x58, 0x6d, 0x78, 0x74, 0x77, 0x77, 0x6c, 0x59, 0x4a, 0x45, 0x42, 0x3f, 0x2d, 0x2d, 0x32, 0x40, 0x54, 0x61, 0x68, 0x70, 0x4d, 0x54, 0x5d, 0x65, 0x6a, 0x6a, 0x63, 0x5c, 0x5c, 0x54, 0x4b, 0x45, 0x45, 0x48, 0x4b, 0x4c, 0x48, 0x46, 0x43, 0x43, 0x46, 0x4a, 0x4c, 0x4e, 0x47, 0x46, 0x41, 0x3d, 0x3e, 0x41, 0x42, 0x40, 0x48, 0x44, 0x45, 0x4a, 0x4b, 0x49, 0x4c, 0x53, 0x57, 0x56, 0x5e, 0x69, 0x6a, 0x65, 0x69, 0x75, 0x7c, 0x74, 0x72, 0x7a, 0x7d, 0x75, 0x68, 0x61, 0x66, 0x62, 0x5c, 0x59, 0x58, 0x5a, 0x5a, 0x5a, 0x5a, 0x58, 0x5a, 0x61, 0x69, 0x6d, 0x6e, 0x6e, 0x62, 0x62, 0x64, 0x67, 0x66, 0x62, 0x5e, 0x5e, 0x58, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d, 0x5b, 0x5a, 0x5b, 0x5a, 0x57, 0x53, 0x50, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x52, 0x4f, 0x4b, 0x4b, 0x4f, 0x53, 0x50, 0x4c, 0x49, 0x4a, 0x4d, 0x4e, 0x4d, 0x4a, 0x53, 0x52, 0x54, 0x5a, 0x62, 0x66, 0x65, 0x62, 0x60, 0x63, 0x64, 0x61, 0x5a, 0x51, 0x4b, 0x47, 0x4f, 0x5d, 0x62, 0x56, 0x4b, 0x4c, 0x4e, 0x4b, 0x4b, 0x41, 0x3b, 0x40, 0x4a, 0x54, 0x5e, 0x65, 0x61, 0x57, 0x4b, 0x46, 0x43, 0x42, 0x45, 0x48, 0x48, 0x44, 0x41, 0x44, 0x4a, 0x4f, 0x4f, 0x4d, 0x47, 0x43, 0x43, 0x48, 0x49, 0x45, 0x42, 0x45, 0x45, 0x43, 0x48, 0x51, 0x53, 0x4f, 0x4c, 0x4d, 0x53, 0x53, 0x55, 0x58, 0x5b, 0x5a, 0x57, 0x54, 0x57, 0x57, 0x56, 0x54, 0x51, 0x4e, 0x4e, 0x4e, 0x48, 0x51, 0x5b, 0x60, 0x62, 0x63, 0x61, 0x5f, 0x5f, 0x62, 0x65, 0x68, 0x6c, 0x6e, 0x6a, 0x65, 0x5d, 0x5f, 0x60, 0x64, 0x6a, 0x6f, 0x6e, 0x6a, 0x6b, 0x67, 0x62, 0x5d, 0x5c, 0x5d, 0x5f, 0x61, 0x5b, 0x59, 0x59, 0x5b, 0x5d, 0x5d, 0x60, 0x63, 0x69, 0x6d, 0x6f, 0x6e, 0x6c, 0x6e, 0x70, 0x70, 0x6f, 0x6d, 0x6a, 0x67, 0x64, 0x63, 0x63, 0x65, 0x64, 0x64, 0x62, 0x5e, 0x5c, 0x5f, 0x66, 0x6d, 0x74, 0x6d, 0x66, 0x63, 0x63, 0x62, 0x63, 0x64, 0x69, 0x65, 0x61, 0x60, 0x5d, 0x5c, 0x60, 0x65, 0x72, 0xae, 0xd4, 0xc6, 0xa9, 0x97, 0x8d, 0x87, 0x71, 0x6f, 0x6b, 0x65, 0x63, 0x65, 0x65, 0x62, 0x5d, 0x6f, 0x87, 0x96, 0x95, 0x8c, 0x88, 0x89, 0x84, 0x81, 0x7c, 0x77, 0x73, 0x6f, 0x6b, 0x67, 0x69, 0x6f, 0x75, 0x76, 0x74, 0x73, 0x75, 0x79, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7c, 0x7e, 0x82, 0x85, 0x88, 0x8a, 0x8c, 0x8d, 0x8d, 0x8c, 0x89, 0x87, 0x84, 0x81, 0x7d, 0x7b, 0x72, 0x71, 0x6f, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x68, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66, 0x66, 0x6b, 0x6f, 0x73, 0x75, 0x76, 0x77, 0x7b, 0x7f, 0x7f, 0x80, 0x82, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7f, 0x7e, 0x7d, 0x7b, 0x78, 0x76, 0x74, 0x73, 0x6d, 0x6b, 0x69, 0x66, 0x65, 0x62, 0x60, 0x5e, 0x5e, 0x5d, 0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x5b, 0x59, 0x59, 0x59, 0x5a, 0x5a, 0x58, 0x56, 0x53, 0x51, 0x4f, 0x4d, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x58, 0x4d, 0x46, 0x43, 0x40, 0x3e, 0x48, 0x56, 0x57, 0x4f, 0x47, 0x47, 0x4d, 0x53, 0x53, 0x50, 0x45, 0x41, 0x38, 0x31, 0x33, 0x3a, 0x3e, 0x3e, 0x40, 0x45, 0x41, 0x3b, 0x3c, 0x3f, 0x46, 0x51, 0x5a, 0x59, 0x5c, 0x5d, 0x59, 0x54, 0x5a, 0x65, 0x6d, 0x76, 0x7e, 0x7f, 0x7e, 0x7c, 0x79, 0x75, 0x67, 0x5d, 0x50, 0x49, 0x4b, 0x4f, 0x4b, 0x44, 0x43, 0x4d, 0x53, 0x50, 0x4f, 0x53, 0x52, 0x4c, 0x4b, 0x4d, 0x4e, 0x4c, 0x4d, 0x4e, 0x4e, 0x4c, 0x4c, 0x4d, 0x53, 0x59, 0x55, 0x4d, 0x4f, 0x57, 0x56, 0x5c, 0x60, 0x5c, 0x52, 0x4c, 0x50, 0x58, 0x64, 0x70, 0x6a, 0x55, 0x49, 0x4b, 0x57, 0x66, 0x62, 0x5b, 0x57, 0x57, 0x57, 0x52, 0x4c, 0x4b, 0x4b, 0x51, 0x5a, 0x61, 0x63, 0x61, 0x5d, 0x5a, 0x5c, 0x69, 0x70, 0x6c, 0x67, 0x69, 0x6d, 0x6e, 0x6d, 0x6b, 0x68, 0x64, 0x5f, 0x58, 0x4f, 0x47, 0x47, 0x44, 0x3c, 0x37, 0x41, 0x55, 0x61, 0x61, 0x4e, 0x45, 0x43, 0x4c, 0x47, 0x37, 0x3a, 0x47, 0x53, 0x55, 0x45, 0x45, 0x46, 0x4b, 0x43, 0x4d, 0x4f, 0x4d, 0x49, 0x4c, 0x55, 0x55, 0x54, 0x58, 0x58, 0x5b, 0x4e, 0x3f, 0x45, 0x58, 0x6a, 0x77, 0x6f, 0x65, 0x5c, 0x52, 0x4c, 0x54, 0x52, 0x3d, 0x39, 0x3b, 0x31, 0x24, 0x28, 0x42, 0x5f, 0x6e, 0x6a, 0x5b, 0x4f, 0x4d, 0x4e, 0x47, 0x3d, 0x36, 0x2f, 0x2d, 0x41, 0x5c, 0x5f, 0x5b, 0x67, 0x78, 0x79, 0x72, 0x63, 0x55, 0x4d, 0x48, 0x3e, 0x32, 0x2c, 0x2f, 0x30, 0x3d, 0x57, 0x68, 0x71, 0x7d, 0x5a, 0x56, 0x4d, 0x4c, 0x5e, 0x7c, 0x93, 0x9b, 0x88, 0x7c, 0x6a, 0x57, 0x4a, 0x42, 0x3f, 0x3e, 0x48, 0x44, 0x40, 0x40, 0x42, 0x45, 0x46, 0x46, 0x45, 0x44, 0x41, 0x3c, 0x3c, 0x3f, 0x41, 0x41, 0x43, 0x42, 0x47, 0x4f, 0x52, 0x4d, 0x48, 0x47, 0x48, 0x4e, 0x58, 0x60, 0x61, 0x60, 0x68, 0x73, 0x7d, 0x7a, 0x7a, 0x7d, 0x7c, 0x76, 0x6c, 0x66, 0x68, 0x69, 0x69, 0x68, 0x68, 0x68, 0x65, 0x61, 0x5d, 0x5e, 0x62, 0x67, 0x69, 0x67, 0x66, 0x68, 0x61, 0x61, 0x63, 0x67, 0x69, 0x67, 0x67, 0x68, 0x60, 0x5f, 0x5e, 0x5c, 0x5c, 0x5d, 0x5e, 0x5f, 0x5a, 0x5c, 0x5d, 0x5c, 0x58, 0x54, 0x50, 0x4e, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x4c, 0x52, 0x57, 0x57, 0x51, 0x4a, 0x47, 0x48, 0x4b, 0x4c, 0x4b, 0x51, 0x4e, 0x4e, 0x54, 0x5c, 0x60, 0x5d, 0x57, 0x66, 0x67, 0x68, 0x68, 0x65, 0x5e, 0x56, 0x50, 0x45, 0x52, 0x59, 0x51, 0x49, 0x48, 0x4a, 0x48, 0x3e, 0x32, 0x29, 0x26, 0x27, 0x2d, 0x3d, 0x4e, 0x54, 0x54, 0x52, 0x4c, 0x45, 0x41, 0x42, 0x45, 0x4a, 0x45, 0x40, 0x40, 0x47, 0x50, 0x56, 0x59, 0x3f, 0x3e, 0x44, 0x4f, 0x51, 0x49, 0x44, 0x45, 0x4d, 0x4d, 0x4f, 0x52, 0x53, 0x51, 0x51, 0x52, 0x4f, 0x4e, 0x4e, 0x51, 0x54, 0x55, 0x54, 0x52, 0x54, 0x57, 0x59, 0x57, 0x52, 0x4b, 0x47, 0x45, 0x44, 0x4c, 0x54, 0x58, 0x5b, 0x5e, 0x5f, 0x5e, 0x5e, 0x61, 0x65, 0x68, 0x6b, 0x6d, 0x69, 0x65, 0x60, 0x61, 0x60, 0x61, 0x66, 0x6d, 0x70, 0x70, 0x6b, 0x65, 0x5d, 0x58, 0x57, 0x5a, 0x5e, 0x60, 0x5c, 0x59, 0x59, 0x5b, 0x5c, 0x5c, 0x5e, 0x61, 0x67, 0x6b, 0x6c, 0x69, 0x67, 0x69, 0x6c, 0x6e, 0x6d, 0x69, 0x66, 0x64, 0x62, 0x60, 0x61, 0x63, 0x65, 0x65, 0x64, 0x60, 0x5f, 0x61, 0x67, 0x6d, 0x74, 0x6d, 0x67, 0x64, 0x63, 0x63, 0x66, 0x69, 0x6c, 0x69, 0x63, 0x60, 0x61, 0x66, 0x6d, 0x71, 0x7c, 0xa6, 0xbf, 0xbe, 0xbf, 0xb9, 0x97, 0x72, 0x70, 0x6e, 0x6a, 0x63, 0x5b, 0x57, 0x55, 0x56, 0x77, 0x86, 0x96, 0x9b, 0x96, 0x8f, 0x8e, 0x90, 0x83, 0x82, 0x7e, 0x79, 0x75, 0x71, 0x6b, 0x64, 0x62, 0x68, 0x6f, 0x72, 0x70, 0x70, 0x73, 0x76, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7c, 0x7f, 0x82, 0x85, 0x87, 0x88, 0x8a, 0x8c, 0x8e, 0x8d, 0x8a, 0x88, 0x87, 0x84, 0x81, 0x7f, 0x77, 0x75, 0x73, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x66, 0x67, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6b, 0x6e, 0x72, 0x75, 0x78, 0x7b, 0x7f, 0x82, 0x80, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x74, 0x72, 0x70, 0x6f, 0x6b, 0x69, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5d, 0x5e, 0x5d, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x57, 0x58, 0x58, 0x59, 0x5a, 0x58, 0x54, 0x52, 0x49, 0x48, 0x4b, 0x50, 0x53, 0x52, 0x50, 0x50, 0x55, 0x4e, 0x46, 0x40, 0x39, 0x37, 0x3e, 0x47, 0x57, 0x52, 0x4a, 0x45, 0x49, 0x52, 0x53, 0x4e, 0x47, 0x42, 0x39, 0x33, 0x37, 0x40, 0x43, 0x40, 0x3b, 0x41, 0x41, 0x41, 0x45, 0x48, 0x4a, 0x51, 0x5a, 0x58, 0x5e, 0x6b, 0x73, 0x6f, 0x66, 0x5f, 0x4f, 0x58, 0x60, 0x69, 0x79, 0x89, 0x8e, 0x8a, 0x76, 0x66, 0x55, 0x4c, 0x4e, 0x4f, 0x4c, 0x47, 0x45, 0x4c, 0x51, 0x4f, 0x4d, 0x4e, 0x4d, 0x49, 0x4f, 0x50, 0x50, 0x4d, 0x4d, 0x4e, 0x4e, 0x4c, 0x4e, 0x4c, 0x4d, 0x50, 0x4e, 0x4d, 0x51, 0x58, 0x59, 0x5d, 0x5d, 0x54, 0x48, 0x45, 0x4f, 0x5b, 0x64, 0x6b, 0x65, 0x56, 0x4d, 0x4d, 0x57, 0x66, 0x64, 0x5f, 0x5a, 0x58, 0x57, 0x53, 0x4f, 0x4d, 0x45, 0x49, 0x52, 0x5e, 0x67, 0x66, 0x5c, 0x52, 0x60, 0x6b, 0x73, 0x71, 0x6c, 0x6b, 0x6c, 0x6c, 0x6f, 0x69, 0x64, 0x61, 0x60, 0x5b, 0x56, 0x53, 0x4a, 0x45, 0x3b, 0x37, 0x43, 0x55, 0x5c, 0x59, 0x41, 0x39, 0x35, 0x49, 0x54, 0x4f, 0x53, 0x55, 0x51, 0x51, 0x3e, 0x39, 0x37, 0x3d, 0x3c, 0x4c, 0x54, 0x56, 0x52, 0x51, 0x58, 0x5a, 0x5a, 0x5d, 0x51, 0x57, 0x4f, 0x43, 0x49, 0x57, 0x5e, 0x62, 0x6b, 0x6c, 0x6b, 0x61, 0x54, 0x4c, 0x40, 0x2f, 0x2a, 0x27, 0x1d, 0x18, 0x2b, 0x4f, 0x6d, 0x78, 0x77, 0x6b, 0x61, 0x5f, 0x5d, 0x53, 0x42, 0x35, 0x27, 0x2e, 0x42, 0x4e, 0x47, 0x42, 0x4b, 0x56, 0x5d, 0x59, 0x54, 0x4e, 0x46, 0x3c, 0x30, 0x28, 0x2d, 0x2b, 0x28, 0x3e, 0x6a, 0x7f, 0x7b, 0x79, 0x5d, 0x6c, 0x72, 0x66, 0x5a, 0x5a, 0x5e, 0x5d, 0x73, 0x71, 0x6d, 0x67, 0x61, 0x5d, 0x5c, 0x5c, 0x53, 0x51, 0x4f, 0x4e, 0x4c, 0x46, 0x3f, 0x39, 0x3d, 0x40, 0x40, 0x3e, 0x3c, 0x3f, 0x42, 0x44, 0x40, 0x43, 0x49, 0x50, 0x52, 0x4d, 0x45, 0x3f, 0x4a, 0x51, 0x5a, 0x60, 0x63, 0x65, 0x66, 0x67, 0x69, 0x6d, 0x70, 0x71, 0x73, 0x78, 0x7c, 0x7e, 0x7a, 0x7e, 0x80, 0x7d, 0x77, 0x6f, 0x64, 0x5a, 0x62, 0x6a, 0x74, 0x79, 0x73, 0x68, 0x62, 0x61, 0x54, 0x55, 0x5a, 0x60, 0x62, 0x61, 0x60, 0x61, 0x63, 0x61, 0x5f, 0x5c, 0x5c, 0x5d, 0x60, 0x61, 0x5b, 0x5c, 0x5d, 0x5b, 0x57, 0x52, 0x4e, 0x4d, 0x4d, 0x4b, 0x49, 0x48, 0x4a, 0x4e, 0x52, 0x56, 0x54, 0x50, 0x4a, 0x47, 0x48, 0x4a, 0x4b, 0x4c, 0x4a, 0x47, 0x46, 0x49, 0x50, 0x53, 0x52, 0x50, 0x59, 0x58, 0x59, 0x5c, 0x5f, 0x5c, 0x54, 0x4d, 0x48, 0x4d, 0x50, 0x50, 0x51, 0x54, 0x58, 0x59, 0x54, 0x4c, 0x41, 0x37, 0x30, 0x2f, 0x33, 0x38, 0x46, 0x50, 0x55, 0x4c, 0x42, 0x40, 0x45, 0x49, 0x44, 0x47, 0x4d, 0x52, 0x54, 0x50, 0x49, 0x44, 0x42, 0x42, 0x49, 0x54, 0x55, 0x4c, 0x47, 0x49, 0x4d, 0x54, 0x5a, 0x5b, 0x5a, 0x57, 0x54, 0x50, 0x4c, 0x4a, 0x49, 0x4b, 0x4e, 0x51, 0x52, 0x52, 0x4f, 0x52, 0x54, 0x52, 0x4d, 0x48, 0x46, 0x46, 0x48, 0x4f, 0x55, 0x57, 0x58, 0x5b, 0x5d, 0x5d, 0x60, 0x64, 0x66, 0x67, 0x69, 0x69, 0x67, 0x62, 0x5b, 0x5d, 0x5f, 0x61, 0x66, 0x6c, 0x71, 0x71, 0x6b, 0x65, 0x5d, 0x57, 0x57, 0x5a, 0x5d, 0x5f, 0x5f, 0x5d, 0x5e, 0x60, 0x60, 0x5f, 0x5f, 0x61, 0x68, 0x68, 0x66, 0x62, 0x62, 0x66, 0x68, 0x68, 0x6a, 0x66, 0x64, 0x64, 0x64, 0x61, 0x61, 0x63, 0x65, 0x64, 0x63, 0x61, 0x60, 0x62, 0x66, 0x69, 0x68, 0x65, 0x63, 0x62, 0x61, 0x61, 0x64, 0x69, 0x69, 0x6a, 0x67, 0x64, 0x67, 0x6f, 0x73, 0x72, 0x7d, 0x9f, 0xb6, 0xbb, 0xc3, 0xc6, 0xb5, 0xa0, 0x6f, 0x5e, 0x52, 0x51, 0x50, 0x50, 0x5f, 0x73, 0x92, 0x95, 0x95, 0x93, 0x93, 0x94, 0x90, 0x89, 0x84, 0x83, 0x7f, 0x7a, 0x77, 0x74, 0x6d, 0x65, 0x60, 0x62, 0x66, 0x6a, 0x6d, 0x6f, 0x70, 0x72, 0x71, 0x74, 0x78, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x8d, 0x8c, 0x8b, 0x8b, 0x89, 0x86, 0x82, 0x7f, 0x7c, 0x7b, 0x79, 0x76, 0x73, 0x70, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x69, 0x69, 0x68, 0x67, 0x68, 0x68, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6d, 0x6f, 0x72, 0x75, 0x79, 0x7d, 0x80, 0x82, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x73, 0x70, 0x6e, 0x6c, 0x6b, 0x68, 0x67, 0x64, 0x63, 0x61, 0x60, 0x5d, 0x5c, 0x5c, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x5b, 0x5b, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x59, 0x56, 0x53, 0x59, 0x55, 0x53, 0x53, 0x50, 0x49, 0x44, 0x43, 0x5a, 0x59, 0x55, 0x4d, 0x46, 0x43, 0x46, 0x4a, 0x50, 0x55, 0x51, 0x46, 0x45, 0x4d, 0x50, 0x4a, 0x48, 0x43, 0x3a, 0x35, 0x3c, 0x46, 0x48, 0x42, 0x40, 0x43, 0x42, 0x44, 0x4b, 0x4d, 0x4d, 0x52, 0x4d, 0x45, 0x43, 0x52, 0x67, 0x70, 0x6a, 0x5f, 0x78, 0x6e, 0x5e, 0x51, 0x4e, 0x54, 0x5b, 0x5f, 0x6f, 0x61, 0x56, 0x53, 0x53, 0x4e, 0x4a, 0x48, 0x4a, 0x4c, 0x4e, 0x4d, 0x4a, 0x46, 0x45, 0x44, 0x50, 0x52, 0x53, 0x52, 0x52, 0x53, 0x53, 0x51, 0x51, 0x51, 0x51, 0x53, 0x55, 0x57, 0x59, 0x5a, 0x55, 0x56, 0x54, 0x4c, 0x46, 0x48, 0x54, 0x5e, 0x5d, 0x5f, 0x5b, 0x56, 0x54, 0x51, 0x56, 0x62, 0x62, 0x60, 0x5c, 0x58, 0x56, 0x54, 0x50, 0x4c, 0x49, 0x4a, 0x4f, 0x5b, 0x67, 0x69, 0x61, 0x58, 0x6c, 0x71, 0x76, 0x74, 0x6f, 0x6c, 0x6c, 0x6d, 0x70, 0x68, 0x62, 0x61, 0x5f, 0x57, 0x50, 0x4e, 0x4a, 0x46, 0x3d, 0x3a, 0x45, 0x56, 0x5c, 0x57, 0x50, 0x49, 0x3d, 0x4a, 0x54, 0x4f, 0x51, 0x49, 0x55, 0x54, 0x3e, 0x35, 0x2f, 0x35, 0x39, 0x51, 0x5f, 0x60, 0x5a, 0x57, 0x60, 0x63, 0x5b, 0x54, 0x5b, 0x55, 0x44, 0x3b, 0x42, 0x49, 0x4c, 0x4f, 0x61, 0x6b, 0x69, 0x58, 0x45, 0x35, 0x2f, 0x32, 0x25, 0x25, 0x22, 0x24, 0x36, 0x53, 0x67, 0x6e, 0x60, 0x5c, 0x58, 0x54, 0x4d, 0x45, 0x3d, 0x39, 0x35, 0x40, 0x4b, 0x48, 0x43, 0x48, 0x47, 0x39, 0x32, 0x31, 0x36, 0x3c, 0x3b, 0x33, 0x2e, 0x2f, 0x23, 0x26, 0x25, 0x3c, 0x6c, 0x82, 0x7e, 0x7f, 0x6b, 0x7c, 0x7e, 0x66, 0x4e, 0x49, 0x4d, 0x50, 0x53, 0x58, 0x5f, 0x60, 0x5a, 0x51, 0x4a, 0x46, 0x5f, 0x61, 0x64, 0x65, 0x61, 0x54, 0x44, 0x38, 0x35, 0x3b, 0x3f, 0x3f, 0x3d, 0x40, 0x43, 0x45, 0x46, 0x47, 0x48, 0x48, 0x4b, 0x4f, 0x51, 0x51, 0x56, 0x57, 0x55, 0x55, 0x5b, 0x63, 0x63, 0x5f, 0x54, 0x5b, 0x5d, 0x59, 0x5c, 0x69, 0x78, 0x80, 0x80, 0x87, 0x8b, 0x8a, 0x85, 0x7e, 0x71, 0x66, 0x5a, 0x68, 0x79, 0x7f, 0x75, 0x62, 0x55, 0x51, 0x52, 0x56, 0x5e, 0x66, 0x69, 0x65, 0x60, 0x5e, 0x5f, 0x5e, 0x5e, 0x5e, 0x5e, 0x5f, 0x5f, 0x60, 0x5e, 0x5c, 0x59, 0x54, 0x4f, 0x4d, 0x4e, 0x4e, 0x4f, 0x51, 0x53, 0x56, 0x57, 0x55, 0x52, 0x4f, 0x4e, 0x4d, 0x4b, 0x49, 0x47, 0x45, 0x42, 0x3f, 0x40, 0x3f, 0x3e, 0x40, 0x46, 0x4b, 0x4e, 0x50, 0x51, 0x4f, 0x50, 0x56, 0x5d, 0x5d, 0x56, 0x4e, 0x4a, 0x48, 0x4a, 0x52, 0x5d, 0x69, 0x72, 0x76, 0x6b, 0x66, 0x59, 0x4d, 0x47, 0x42, 0x35, 0x25, 0x39, 0x4d, 0x59, 0x51, 0x44, 0x41, 0x44, 0x46, 0x50, 0x52, 0x54, 0x54, 0x52, 0x4d, 0x48, 0x44, 0x45, 0x42, 0x48, 0x52, 0x53, 0x4c, 0x4c, 0x52, 0x53, 0x62, 0x6f, 0x72, 0x70, 0x6a, 0x60, 0x57, 0x4f, 0x4c, 0x49, 0x4a, 0x4d, 0x51, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4b, 0x48, 0x49, 0x4d, 0x51, 0x50, 0x57, 0x5d, 0x5f, 0x5f, 0x60, 0x5f, 0x5d, 0x61, 0x65, 0x67, 0x66, 0x65, 0x65, 0x62, 0x5f, 0x55, 0x5b, 0x63, 0x68, 0x6d, 0x71, 0x72, 0x71, 0x71, 0x6b, 0x63, 0x5e, 0x5d, 0x5f, 0x61, 0x62, 0x62, 0x62, 0x63, 0x66, 0x66, 0x63, 0x61, 0x62, 0x69, 0x66, 0x60, 0x5d, 0x5f, 0x64, 0x65, 0x63, 0x69, 0x66, 0x65, 0x67, 0x67, 0x64, 0x63, 0x64, 0x63, 0x63, 0x62, 0x60, 0x60, 0x61, 0x64, 0x66, 0x67, 0x65, 0x64, 0x63, 0x5f, 0x5c, 0x5d, 0x60, 0x62, 0x69, 0x6b, 0x69, 0x6c, 0x72, 0x70, 0x69, 0x74, 0x93, 0xaa, 0xb2, 0xba, 0xbe, 0xbd, 0xbc, 0x8d, 0x69, 0x50, 0x50, 0x52, 0x57, 0x75, 0x9c, 0x95, 0x9c, 0x9e, 0x96, 0x92, 0x94, 0x92, 0x8c, 0x85, 0x84, 0x7f, 0x79, 0x77, 0x75, 0x6f, 0x67, 0x60, 0x5e, 0x5f, 0x63, 0x6a, 0x6e, 0x6f, 0x6e, 0x6c, 0x70, 0x75, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7f, 0x82, 0x84, 0x85, 0x86, 0x88, 0x89, 0x8b, 0x8c, 0x8c, 0x8c, 0x8a, 0x86, 0x80, 0x7c, 0x80, 0x7f, 0x7d, 0x7b, 0x78, 0x75, 0x72, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x66, 0x67, 0x68, 0x65, 0x65, 0x66, 0x66, 0x68, 0x69, 0x6b, 0x6b, 0x71, 0x71, 0x72, 0x75, 0x79, 0x7c, 0x7e, 0x7f, 0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x75, 0x73, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x67, 0x65, 0x63, 0x61, 0x60, 0x5f, 0x5c, 0x5b, 0x5a, 0x5a, 0x59, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5b, 0x5b, 0x5d, 0x5e, 0x5e, 0x5c, 0x58, 0x55, 0x54, 0x4e, 0x4a, 0x4b, 0x4a, 0x49, 0x4a, 0x4d, 0x52, 0x56, 0x55, 0x4f, 0x48, 0x46, 0x47, 0x47, 0x4b, 0x58, 0x59, 0x4b, 0x45, 0x4d, 0x52, 0x4c, 0x49, 0x44, 0x3c, 0x38, 0x40, 0x4c, 0x4c, 0x44, 0x4a, 0x49, 0x43, 0x43, 0x4b, 0x4d, 0x4d, 0x52, 0x4f, 0x44, 0x3b, 0x43, 0x59, 0x6b, 0x6d, 0x68, 0x67, 0x69, 0x6d, 0x6c, 0x5e, 0x4d, 0x46, 0x4a, 0x55, 0x4f, 0x4e, 0x55, 0x55, 0x4c, 0x45, 0x45, 0x54, 0x53, 0x53, 0x52, 0x4d, 0x47, 0x45, 0x47, 0x4e, 0x52, 0x55, 0x56, 0x58, 0x5a, 0x5a, 0x58, 0x4c, 0x4e, 0x51, 0x54, 0x59, 0x5b, 0x57, 0x51, 0x57, 0x58, 0x55, 0x50, 0x4d, 0x51, 0x58, 0x5d, 0x57, 0x56, 0x53, 0x56, 0x59, 0x54, 0x54, 0x5f, 0x62, 0x62, 0x5e, 0x56, 0x50, 0x4d, 0x47, 0x40, 0x4a, 0x4a, 0x4c, 0x53, 0x5d, 0x64, 0x68, 0x68, 0x6d, 0x6e, 0x6f, 0x6d, 0x6a, 0x69, 0x6d, 0x72, 0x74, 0x6d, 0x68, 0x67, 0x5f, 0x4e, 0x3d, 0x34, 0x47, 0x44, 0x3e, 0x3b, 0x46, 0x58, 0x5f, 0x5c, 0x4e, 0x4c, 0x3f, 0x47, 0x4c, 0x49, 0x52, 0x4e, 0x54, 0x53, 0x3a, 0x2f, 0x25, 0x2b, 0x34, 0x4f, 0x5e, 0x5e, 0x56, 0x55, 0x63, 0x68, 0x58, 0x47, 0x50, 0x4d, 0x4d, 0x5c, 0x6f, 0x71, 0x68, 0x65, 0x6a, 0x71, 0x62, 0x44, 0x2e, 0x24, 0x33, 0x51, 0x3c, 0x42, 0x44, 0x3f, 0x3c, 0x3f, 0x43, 0x44, 0x47, 0x4e, 0x53, 0x4c, 0x3c, 0x2d, 0x29, 0x2c, 0x3c, 0x34, 0x39, 0x46, 0x4c, 0x47, 0x3b, 0x2c, 0x22, 0x15, 0x14, 0x26, 0x37, 0x39, 0x34, 0x32, 0x2b, 0x38, 0x37, 0x40, 0x5d, 0x6c, 0x72, 0x81, 0x68, 0x73, 0x71, 0x6a, 0x59, 0x4a, 0x4a, 0x45, 0x4e, 0x50, 0x4f, 0x4d, 0x4f, 0x55, 0x54, 0x4f, 0x4f, 0x4a, 0x4c, 0x55, 0x56, 0x4f, 0x4f, 0x57, 0x4f, 0x45, 0x40, 0x41, 0x40, 0x3e, 0x44, 0x50, 0x58, 0x56, 0x53, 0x4e, 0x49, 0x48, 0x49, 0x4c, 0x54, 0x4d, 0x48, 0x49, 0x4f, 0x54, 0x54, 0x52, 0x50, 0x59, 0x5a, 0x53, 0x52, 0x5d, 0x66, 0x66, 0x66, 0x68, 0x69, 0x6c, 0x74, 0x7c, 0x7b, 0x75, 0x70, 0x6f, 0x71, 0x72, 0x69, 0x5c, 0x55, 0x57, 0x57, 0x5e, 0x61, 0x5e, 0x5e, 0x61, 0x61, 0x5e, 0x5b, 0x63, 0x6c, 0x71, 0x6e, 0x69, 0x65, 0x64, 0x5c, 0x5c, 0x59, 0x54, 0x4f, 0x4f, 0x50, 0x52, 0x56, 0x57, 0x58, 0x57, 0x55, 0x55, 0x58, 0x5a, 0x53, 0x53, 0x4e, 0x4b, 0x4e, 0x53, 0x4e, 0x44, 0x40, 0x3b, 0x3d, 0x44, 0x48, 0x47, 0x48, 0x4d, 0x4f, 0x4f, 0x4f, 0x51, 0x55, 0x56, 0x4f, 0x47, 0x46, 0x4e, 0x51, 0x4c, 0x4d, 0x5a, 0x66, 0x6b, 0x6e, 0x6f, 0x6c, 0x64, 0x5e, 0x5b, 0x55, 0x4f, 0x4f, 0x4e, 0x52, 0x57, 0x4d, 0x3f, 0x43, 0x51, 0x57, 0x51, 0x4c, 0x4a, 0x49, 0x48, 0x4b, 0x51, 0x4b, 0x48, 0x50, 0x5b, 0x56, 0x48, 0x48, 0x55, 0x6e, 0x7d, 0x82, 0x7b, 0x7d, 0x85, 0x79, 0x62, 0x53, 0x4c, 0x48, 0x4c, 0x56, 0x5d, 0x5b, 0x57, 0x57, 0x50, 0x4e, 0x54, 0x58, 0x55, 0x57, 0x5d, 0x5e, 0x61, 0x63, 0x61, 0x61, 0x62, 0x60, 0x5b, 0x5e, 0x62, 0x66, 0x67, 0x63, 0x5f, 0x5f, 0x61, 0x62, 0x61, 0x61, 0x63, 0x67, 0x6c, 0x70, 0x72, 0x74, 0x70, 0x6b, 0x65, 0x64, 0x64, 0x63, 0x61, 0x66, 0x67, 0x67, 0x65, 0x63, 0x61, 0x61, 0x62, 0x64, 0x65, 0x65, 0x62, 0x5e, 0x5e, 0x63, 0x67, 0x64, 0x63, 0x64, 0x67, 0x6a, 0x6a, 0x66, 0x62, 0x5f, 0x5d, 0x5e, 0x60, 0x5e, 0x5a, 0x5b, 0x5f, 0x62, 0x62, 0x60, 0x5d, 0x5b, 0x5d, 0x61, 0x64, 0x65, 0x60, 0x5f, 0x69, 0x74, 0x78, 0x87, 0x9f, 0xc0, 0xbc, 0xb8, 0xb6, 0xb7, 0xb9, 0xbb, 0xbb, 0xb1, 0x8e, 0x63, 0x51, 0x66, 0x89, 0x9c, 0x9c, 0x9b, 0x9b, 0x9a, 0x98, 0x94, 0x91, 0x90, 0x8f, 0x85, 0x84, 0x81, 0x7c, 0x76, 0x71, 0x6e, 0x6d, 0x62, 0x5d, 0x5b, 0x5e, 0x63, 0x67, 0x6a, 0x6c, 0x6d, 0x6d, 0x6e, 0x71, 0x76, 0x7c, 0x80, 0x82, 0x7f, 0x80, 0x80, 0x80, 0x83, 0x87, 0x89, 0x89, 0x8b, 0x8b, 0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x86, 0x85, 0x86, 0x86, 0x84, 0x81, 0x7c, 0x78, 0x75, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6f, 0x71, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x78, 0x75, 0x72, 0x72, 0x70, 0x6d, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x64, 0x64, 0x62, 0x5d, 0x5a, 0x5b, 0x5b, 0x5b, 0x58, 0x5a, 0x5b, 0x5b, 0x5a, 0x59, 0x5a, 0x5a, 0x5a, 0x5c, 0x61, 0x66, 0x65, 0x5e, 0x57, 0x54, 0x57, 0x52, 0x4c, 0x4a, 0x4b, 0x4d, 0x4d, 0x4c, 0x50, 0x51, 0x53, 0x52, 0x4f, 0x4b, 0x4b, 0x4c, 0x4e, 0x5b, 0x5f, 0x54, 0x4c, 0x4e, 0x4f, 0x4b, 0x48, 0x46, 0x43, 0x44, 0x4c, 0x52, 0x4e, 0x45, 0x4b, 0x49, 0x48, 0x49, 0x4b, 0x4c, 0x4c, 0x4d, 0x52, 0x5e, 0x6b, 0x79, 0x7f, 0x6f, 0x57, 0x4b, 0x50, 0x51, 0x57, 0x61, 0x6c, 0x6e, 0x68, 0x60, 0x56, 0x4c, 0x46, 0x49, 0x4e, 0x4f, 0x4c, 0x4b, 0x52, 0x48, 0x47, 0x4e, 0x4b, 0x3f, 0x40, 0x4c, 0x52, 0x51, 0x56, 0x60, 0x65, 0x60, 0x59, 0x56, 0x57, 0x55, 0x54, 0x55, 0x57, 0x58, 0x57, 0x55, 0x57, 0x55, 0x54, 0x53, 0x54, 0x57, 0x5a, 0x5c, 0x59, 0x57, 0x54, 0x54, 0x56, 0x59, 0x5c, 0x5d, 0x59, 0x56, 0x54, 0x53, 0x53, 0x51, 0x4c, 0x47, 0x46, 0x46, 0x4b, 0x56, 0x61, 0x68, 0x6b, 0x6d, 0x78, 0x77, 0x72, 0x6c, 0x69, 0x6a, 0x6b, 0x6b, 0x70, 0x62, 0x5a, 0x5c, 0x55, 0x43, 0x37, 0x37, 0x44, 0x43, 0x38, 0x34, 0x46, 0x57, 0x59, 0x54, 0x50, 0x4a, 0x4a, 0x54, 0x59, 0x55, 0x51, 0x51, 0x5a, 0x45, 0x39, 0x2d, 0x2b, 0x34, 0x40, 0x56, 0x66, 0x53, 0x4a, 0x57, 0x66, 0x64, 0x54, 0x46, 0x4b, 0x4a, 0x49, 0x54, 0x68, 0x70, 0x6e, 0x6f, 0x6d, 0x69, 0x56, 0x43, 0x3d, 0x3f, 0x42, 0x48, 0x3d, 0x44, 0x40, 0x41, 0x41, 0x42, 0x4f, 0x52, 0x43, 0x4a, 0x41, 0x2b, 0x25, 0x34, 0x3f, 0x3d, 0x30, 0x3b, 0x4a, 0x56, 0x5b, 0x5b, 0x57, 0x52, 0x44, 0x3f, 0x46, 0x4d, 0x45, 0x38, 0x33, 0x32, 0x37, 0x2f, 0x34, 0x4e, 0x66, 0x71, 0x78, 0x7f, 0x4f, 0x64, 0x6e, 0x6e, 0x5f, 0x4e, 0x4d, 0x49, 0x54, 0x52, 0x4b, 0x47, 0x4c, 0x5a, 0x65, 0x6a, 0x64, 0x57, 0x4c, 0x49, 0x44, 0x3f, 0x44, 0x4f, 0x5c, 0x65, 0x6f, 0x69, 0x51, 0x3d, 0x44, 0x57, 0x5f, 0x60, 0x5e, 0x57, 0x4d, 0x45, 0x42, 0x41, 0x41, 0x48, 0x4f, 0x51, 0x4f, 0x4f, 0x53, 0x58, 0x56, 0x5a, 0x5a, 0x53, 0x50, 0x56, 0x5b, 0x5b, 0x59, 0x5b, 0x5b, 0x5a, 0x5e, 0x68, 0x72, 0x76, 0x77, 0x73, 0x76, 0x7c, 0x7a, 0x6c, 0x5e, 0x58, 0x59, 0x64, 0x6f, 0x70, 0x6a, 0x61, 0x5a, 0x55, 0x5c, 0x63, 0x6c, 0x72, 0x72, 0x6e, 0x68, 0x65, 0x5b, 0x5a, 0x57, 0x52, 0x50, 0x52, 0x55, 0x56, 0x57, 0x59, 0x5a, 0x59, 0x59, 0x5c, 0x60, 0x64, 0x5d, 0x5c, 0x55, 0x4f, 0x50, 0x53, 0x4f, 0x46, 0x38, 0x34, 0x33, 0x38, 0x3c, 0x3d, 0x43, 0x4b, 0x47, 0x49, 0x4d, 0x54, 0x5c, 0x5f, 0x58, 0x4f, 0x50, 0x4e, 0x4b, 0x45, 0x3e, 0x3d, 0x44, 0x4e, 0x54, 0x57, 0x5a, 0x5b, 0x5f, 0x66, 0x6a, 0x69, 0x5e, 0x5a, 0x5a, 0x5c, 0x56, 0x4b, 0x4a, 0x51, 0x56, 0x53, 0x53, 0x56, 0x58, 0x57, 0x57, 0x5a, 0x52, 0x4c, 0x4f, 0x5c, 0x62, 0x5d, 0x5c, 0x62, 0x6a, 0x73, 0x7c, 0x80, 0x83, 0x80, 0x73, 0x63, 0x58, 0x52, 0x4d, 0x4c, 0x51, 0x54, 0x54, 0x52, 0x5a, 0x58, 0x5b, 0x60, 0x62, 0x5e, 0x5b, 0x5c, 0x5b, 0x61, 0x67, 0x67, 0x66, 0x65, 0x61, 0x5d, 0x66, 0x63, 0x61, 0x5f, 0x5b, 0x5b, 0x62, 0x6a, 0x6d, 0x69, 0x66, 0x65, 0x69, 0x6f, 0x75, 0x78, 0x73, 0x6d, 0x64, 0x5e, 0x5d, 0x61, 0x64, 0x66, 0x66, 0x65, 0x62, 0x61, 0x61, 0x61, 0x61, 0x60, 0x5d, 0x5f, 0x60, 0x60, 0x5f, 0x5f, 0x62, 0x65, 0x63, 0x61, 0x5f, 0x5f, 0x62, 0x65, 0x65, 0x65, 0x60, 0x5f, 0x60, 0x61, 0x5f, 0x5b, 0x5a, 0x5d, 0x5f, 0x61, 0x62, 0x5f, 0x5e, 0x61, 0x64, 0x67, 0x6c, 0x67, 0x5f, 0x68, 0x8b, 0xae, 0xc4, 0xd0, 0xc9, 0xc3, 0xbc, 0xba, 0xbb, 0xba, 0xb7, 0xb3, 0xb1, 0xb0, 0xa6, 0x96, 0x8f, 0x95, 0x9d, 0xa1, 0x9e, 0x9d, 0x9b, 0x99, 0x97, 0x94, 0x92, 0x91, 0x88, 0x85, 0x81, 0x7b, 0x75, 0x71, 0x6f, 0x6e, 0x67, 0x5f, 0x58, 0x59, 0x5e, 0x63, 0x66, 0x69, 0x6b, 0x6b, 0x6b, 0x6d, 0x71, 0x77, 0x7c, 0x80, 0x80, 0x81, 0x82, 0x82, 0x85, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8a, 0x88, 0x85, 0x82, 0x80, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x71, 0x70, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x75, 0x76, 0x77, 0x76, 0x76, 0x78, 0x7a, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x76, 0x73, 0x70, 0x6f, 0x6d, 0x6a, 0x68, 0x67, 0x66, 0x64, 0x63, 0x61, 0x62, 0x62, 0x5f, 0x5d, 0x5f, 0x5f, 0x5e, 0x60, 0x5e, 0x5b, 0x59, 0x59, 0x5c, 0x5f, 0x61, 0x5d, 0x5d, 0x5f, 0x60, 0x5e, 0x59, 0x57, 0x57, 0x53, 0x50, 0x4d, 0x4c, 0x4d, 0x4d, 0x4a, 0x48, 0x47, 0x4f, 0x52, 0x4d, 0x49, 0x4b, 0x4c, 0x4b, 0x4f, 0x59, 0x5d, 0x55, 0x50, 0x52, 0x52, 0x4d, 0x47, 0x46, 0x46, 0x49, 0x50, 0x55, 0x50, 0x47, 0x4c, 0x47, 0x44, 0x49, 0x50, 0x53, 0x50, 0x4c, 0x5e, 0x62, 0x6c, 0x7c, 0x84, 0x72, 0x5a, 0x52, 0x3f, 0x3f, 0x48, 0x5b, 0x70, 0x7b, 0x77, 0x70, 0x53, 0x44, 0x3a, 0x3e, 0x49, 0x4e, 0x4b, 0x47, 0x4c, 0x4b, 0x4c, 0x4c, 0x49, 0x44, 0x43, 0x46, 0x50, 0x4e, 0x52, 0x5d, 0x62, 0x5e, 0x58, 0x56, 0x58, 0x57, 0x55, 0x56, 0x58, 0x59, 0x57, 0x55, 0x56, 0x56, 0x56, 0x57, 0x58, 0x58, 0x59, 0x5a, 0x59, 0x56, 0x53, 0x53, 0x56, 0x59, 0x59, 0x59, 0x57, 0x55, 0x53, 0x51, 0x51, 0x52, 0x53, 0x54, 0x54, 0x52, 0x55, 0x5c, 0x61, 0x62, 0x60, 0x5f, 0x75, 0x73, 0x6e, 0x6a, 0x6a, 0x6d, 0x6d, 0x6c, 0x6a, 0x5c, 0x56, 0x5c, 0x5b, 0x4b, 0x3b, 0x35, 0x3f, 0x3c, 0x33, 0x38, 0x4f, 0x5f, 0x5a, 0x50, 0x40, 0x3d, 0x45, 0x56, 0x5d, 0x57, 0x53, 0x56, 0x4a, 0x3a, 0x32, 0x2c, 0x2e, 0x3a, 0x45, 0x59, 0x66, 0x56, 0x4f, 0x59, 0x62, 0x5e, 0x58, 0x59, 0x63, 0x64, 0x5f, 0x62, 0x6e, 0x73, 0x6d, 0x6a, 0x60, 0x64, 0x5a, 0x4c, 0x4e, 0x55, 0x53, 0x4f, 0x44, 0x41, 0x3a, 0x45, 0x4e, 0x4a, 0x45, 0x38, 0x2b, 0x23, 0x21, 0x33, 0x50, 0x62, 0x5e, 0x52, 0x4a, 0x4b, 0x4d, 0x4e, 0x4e, 0x4f, 0x53, 0x57, 0x51, 0x54, 0x5f, 0x63, 0x5a, 0x4f, 0x46, 0x3c, 0x38, 0x30, 0x33, 0x49, 0x60, 0x6c, 0x70, 0x72, 0x4e, 0x65, 0x70, 0x6f, 0x5e, 0x4d, 0x50, 0x4f, 0x5b, 0x5b, 0x58, 0x53, 0x4f, 0x50, 0x51, 0x51, 0x4a, 0x47, 0x47, 0x4b, 0x49, 0x42, 0x41, 0x46, 0x45, 0x46, 0x4d, 0x52, 0x4d, 0x44, 0x42, 0x48, 0x61, 0x65, 0x67, 0x63, 0x58, 0x4d, 0x46, 0x44, 0x3d, 0x40, 0x44, 0x48, 0x4b, 0x4d, 0x4f, 0x50, 0x52, 0x51, 0x50, 0x4e, 0x4d, 0x4f, 0x53, 0x56, 0x57, 0x5c, 0x5d, 0x57, 0x52, 0x57, 0x62, 0x6b, 0x71, 0x6d, 0x6d, 0x71, 0x70, 0x68, 0x61, 0x60, 0x68, 0x6c, 0x73, 0x78, 0x72, 0x66, 0x5b, 0x55, 0x5d, 0x60, 0x65, 0x6a, 0x6c, 0x6a, 0x67, 0x64, 0x5e, 0x5b, 0x55, 0x51, 0x52, 0x58, 0x5b, 0x5a, 0x5a, 0x5a, 0x59, 0x58, 0x57, 0x5a, 0x5f, 0x64, 0x66, 0x64, 0x5d, 0x55, 0x53, 0x55, 0x51, 0x4b, 0x47, 0x41, 0x3d, 0x3c, 0x3c, 0x3c, 0x44, 0x4d, 0x51, 0x4d, 0x4a, 0x4c, 0x54, 0x5b, 0x5a, 0x55, 0x56, 0x50, 0x4f, 0x4f, 0x42, 0x2f, 0x2b, 0x33, 0x43, 0x4b, 0x54, 0x5d, 0x65, 0x6b, 0x6c, 0x6b, 0x60, 0x5c, 0x59, 0x59, 0x59, 0x56, 0x53, 0x52, 0x59, 0x53, 0x4c, 0x4b, 0x4c, 0x4e, 0x51, 0x54, 0x52, 0x4d, 0x52, 0x63, 0x72, 0x75, 0x6f, 0x6a, 0x65, 0x65, 0x6d, 0x78, 0x7b, 0x71, 0x65, 0x5f, 0x57, 0x54, 0x50, 0x4e, 0x50, 0x52, 0x53, 0x54, 0x5b, 0x5d, 0x61, 0x63, 0x62, 0x5f, 0x5c, 0x5a, 0x5e, 0x64, 0x69, 0x6a, 0x69, 0x67, 0x64, 0x62, 0x67, 0x63, 0x64, 0x67, 0x63, 0x5e, 0x61, 0x69, 0x70, 0x6d, 0x69, 0x68, 0x6c, 0x71, 0x77, 0x7a, 0x79, 0x72, 0x69, 0x63, 0x63, 0x67, 0x6c, 0x70, 0x72, 0x6c, 0x66, 0x62, 0x61, 0x61, 0x5f, 0x5d, 0x5b, 0x5b, 0x5a, 0x5a, 0x5b, 0x5d, 0x60, 0x61, 0x63, 0x62, 0x61, 0x60, 0x61, 0x62, 0x64, 0x65, 0x5f, 0x5f, 0x60, 0x61, 0x60, 0x5d, 0x5c, 0x5e, 0x5e, 0x61, 0x61, 0x5d, 0x5b, 0x5f, 0x61, 0x60, 0x58, 0x66, 0x72, 0x84, 0xa3, 0xbe, 0xcd, 0xd4, 0xce, 0xc7, 0xc0, 0xbd, 0xbd, 0xb9, 0xb1, 0xa9, 0xad, 0xb4, 0xb6, 0xaf, 0xa5, 0xa2, 0xa0, 0x9e, 0xa1, 0x9e, 0x9b, 0x99, 0x98, 0x96, 0x93, 0x90, 0x8a, 0x86, 0x81, 0x7a, 0x75, 0x71, 0x6f, 0x6e, 0x6c, 0x62, 0x58, 0x55, 0x58, 0x5b, 0x5f, 0x62, 0x67, 0x69, 0x6a, 0x6b, 0x6e, 0x73, 0x79, 0x7e, 0x80, 0x83, 0x84, 0x84, 0x86, 0x89, 0x8a, 0x88, 0x87, 0x87, 0x88, 0x8a, 0x8c, 0x8e, 0x90, 0x91, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x8c, 0x8c, 0x8b, 0x83, 0x81, 0x7f, 0x7d, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x73, 0x70, 0x6d, 0x6c, 0x6a, 0x67, 0x66, 0x65, 0x64, 0x62, 0x61, 0x5c, 0x5e, 0x5e, 0x5c, 0x5b, 0x5b, 0x5a, 0x58, 0x58, 0x5a, 0x5c, 0x5e, 0x5f, 0x5d, 0x5a, 0x57, 0x5d, 0x5c, 0x5a, 0x59, 0x56, 0x53, 0x54, 0x58, 0x57, 0x54, 0x50, 0x4e, 0x4e, 0x4e, 0x4c, 0x4a, 0x43, 0x4e, 0x54, 0x4d, 0x4a, 0x4f, 0x52, 0x4f, 0x51, 0x59, 0x5c, 0x59, 0x56, 0x57, 0x54, 0x4d, 0x48, 0x48, 0x4a, 0x4e, 0x55, 0x57, 0x51, 0x49, 0x4c, 0x47, 0x45, 0x4a, 0x50, 0x50, 0x4d, 0x4b, 0x51, 0x58, 0x66, 0x7b, 0x84, 0x78, 0x71, 0x79, 0x6b, 0x5d, 0x4c, 0x44, 0x46, 0x4d, 0x52, 0x53, 0x52, 0x48, 0x41, 0x43, 0x49, 0x4b, 0x49, 0x45, 0x49, 0x4e, 0x4f, 0x4a, 0x4a, 0x51, 0x53, 0x50, 0x50, 0x4e, 0x51, 0x5a, 0x5e, 0x5b, 0x57, 0x55, 0x59, 0x57, 0x55, 0x55, 0x57, 0x57, 0x55, 0x53, 0x4f, 0x51, 0x53, 0x55, 0x57, 0x57, 0x56, 0x55, 0x53, 0x4f, 0x4e, 0x51, 0x57, 0x5b, 0x5b, 0x59, 0x50, 0x52, 0x54, 0x54, 0x55, 0x5b, 0x66, 0x6e, 0x6c, 0x63, 0x5a, 0x56, 0x59, 0x5e, 0x65, 0x6b, 0x6f, 0x6f, 0x6d, 0x6c, 0x6d, 0x6f, 0x6e, 0x6b, 0x6b, 0x5d, 0x55, 0x5a, 0x59, 0x49, 0x38, 0x31, 0x3f, 0x3b, 0x37, 0x44, 0x60, 0x6b, 0x5f, 0x52, 0x52, 0x4b, 0x4e, 0x59, 0x5d, 0x56, 0x50, 0x51, 0x4c, 0x40, 0x3c, 0x35, 0x36, 0x3e, 0x44, 0x53, 0x59, 0x51, 0x53, 0x5f, 0x63, 0x5e, 0x60, 0x6a, 0x6a, 0x68, 0x5e, 0x5c, 0x6b, 0x74, 0x6c, 0x61, 0x5e, 0x63, 0x57, 0x49, 0x50, 0x5c, 0x57, 0x4d, 0x41, 0x3e, 0x39, 0x47, 0x50, 0x4d, 0x4b, 0x43, 0x3e, 0x25, 0x20, 0x41, 0x62, 0x65, 0x54, 0x47, 0x41, 0x41, 0x47, 0x52, 0x5a, 0x5b, 0x5a, 0x5b, 0x5a, 0x59, 0x59, 0x53, 0x4b, 0x4d, 0x4c, 0x44, 0x3c, 0x30, 0x2d, 0x42, 0x60, 0x71, 0x6e, 0x65, 0x58, 0x6d, 0x77, 0x78, 0x68, 0x57, 0x58, 0x55, 0x67, 0x60, 0x55, 0x49, 0x3f, 0x3c, 0x3e, 0x43, 0x4e, 0x4b, 0x4a, 0x49, 0x45, 0x3e, 0x3d, 0x40, 0x42, 0x41, 0x44, 0x48, 0x47, 0x45, 0x4b, 0x54, 0x52, 0x56, 0x5a, 0x59, 0x52, 0x49, 0x41, 0x3c, 0x45, 0x3f, 0x39, 0x3b, 0x43, 0x4b, 0x4e, 0x4f, 0x4f, 0x49, 0x46, 0x48, 0x4a, 0x4b, 0x50, 0x57, 0x5a, 0x62, 0x68, 0x64, 0x5b, 0x56, 0x58, 0x5c, 0x67, 0x6b, 0x72, 0x73, 0x6e, 0x68, 0x6b, 0x72, 0x74, 0x6a, 0x65, 0x69, 0x6b, 0x66, 0x60, 0x5d, 0x5f, 0x5f, 0x5d, 0x5b, 0x5b, 0x5c, 0x5f, 0x62, 0x5f, 0x5b, 0x53, 0x4e, 0x52, 0x5a, 0x5c, 0x59, 0x56, 0x56, 0x54, 0x51, 0x50, 0x53, 0x58, 0x5d, 0x68, 0x68, 0x64, 0x5e, 0x5b, 0x5b, 0x58, 0x54, 0x4f, 0x4c, 0x48, 0x44, 0x40, 0x3e, 0x44, 0x4c, 0x50, 0x4c, 0x49, 0x4b, 0x54, 0x5e, 0x60, 0x5d, 0x55, 0x51, 0x53, 0x56, 0x4b, 0x37, 0x2e, 0x32, 0x3a, 0x40, 0x49, 0x51, 0x58, 0x5c, 0x5c, 0x5b, 0x5f, 0x5c, 0x58, 0x56, 0x57, 0x58, 0x55, 0x51, 0x54, 0x4e, 0x48, 0x47, 0x4b, 0x51, 0x57, 0x5a, 0x4b, 0x4f, 0x5a, 0x6c, 0x7b, 0x7c, 0x6f, 0x63, 0x5e, 0x5a, 0x5c, 0x64, 0x66, 0x5f, 0x5a, 0x59, 0x56, 0x54, 0x53, 0x54, 0x57, 0x59, 0x5b, 0x5b, 0x58, 0x5c, 0x5d, 0x5b, 0x5a, 0x5c, 0x5e, 0x5e, 0x67, 0x67, 0x68, 0x68, 0x69, 0x69, 0x68, 0x67, 0x64, 0x62, 0x66, 0x6c, 0x6a, 0x60, 0x5e, 0x65, 0x6b, 0x6a, 0x6b, 0x6d, 0x71, 0x74, 0x76, 0x77, 0x73, 0x6e, 0x68, 0x65, 0x65, 0x66, 0x6a, 0x6d, 0x77, 0x73, 0x6c, 0x65, 0x62, 0x61, 0x60, 0x60, 0x62, 0x5e, 0x59, 0x57, 0x58, 0x5b, 0x5d, 0x5f, 0x65, 0x67, 0x69, 0x6a, 0x68, 0x65, 0x62, 0x61, 0x5d, 0x5d, 0x5f, 0x60, 0x60, 0x5f, 0x5f, 0x5f, 0x5e, 0x61, 0x61, 0x5e, 0x5e, 0x62, 0x61, 0x5e, 0x70, 0x6d, 0x75, 0x96, 0xbf, 0xd0, 0xcd, 0xcc, 0xce, 0xca, 0xc5, 0xc2, 0xbf, 0xb8, 0xae, 0xa7, 0xad, 0xad, 0xac, 0xac, 0xb0, 0xb1, 0xab, 0xa3, 0xa4, 0xa0, 0x9b, 0x99, 0x98, 0x96, 0x92, 0x8e, 0x89, 0x86, 0x81, 0x7b, 0x76, 0x72, 0x6e, 0x6b, 0x6f, 0x66, 0x5d, 0x57, 0x54, 0x54, 0x57, 0x5b, 0x5f, 0x63, 0x67, 0x69, 0x6a, 0x6e, 0x75, 0x7a, 0x7f, 0x82, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x84, 0x84, 0x85, 0x86, 0x88, 0x8b, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x89, 0x88, 0x86, 0x83, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x77, 0x75, 0x73, 0x70, 0x6d, 0x6a, 0x6a, 0x68, 0x66, 0x64, 0x64, 0x63, 0x61, 0x60, 0x59, 0x5b, 0x5d, 0x5d, 0x5f, 0x62, 0x62, 0x60, 0x5f, 0x5f, 0x5e, 0x5c, 0x5a, 0x5b, 0x5d, 0x5f, 0x5d, 0x5b, 0x5a, 0x59, 0x56, 0x53, 0x55, 0x59, 0x5d, 0x58, 0x51, 0x4c, 0x4b, 0x4c, 0x4d, 0x4e, 0x47, 0x4e, 0x55, 0x57, 0x57, 0x59, 0x57, 0x54, 0x54, 0x59, 0x5d, 0x5e, 0x5f, 0x5d, 0x55, 0x4b, 0x4a, 0x4b, 0x4d, 0x51, 0x57, 0x58, 0x54, 0x4f, 0x4e, 0x4d, 0x4e, 0x51, 0x51, 0x50, 0x52, 0x58, 0x55, 0x65, 0x72, 0x74, 0x6a, 0x5d, 0x5f, 0x70, 0x77, 0x82, 0x8f, 0x91, 0x83, 0x69, 0x4d, 0x3c, 0x3d, 0x3f, 0x41, 0x43, 0x43, 0x46, 0x4b, 0x50, 0x4f, 0x52, 0x4f, 0x49, 0x4b, 0x55, 0x5c, 0x5b, 0x55, 0x51, 0x53, 0x5a, 0x5e, 0x5b, 0x58, 0x57, 0x59, 0x57, 0x54, 0x54, 0x55, 0x55, 0x53, 0x51, 0x4a, 0x4c, 0x50, 0x53, 0x55, 0x56, 0x55, 0x55, 0x52, 0x4e, 0x4d, 0x51, 0x58, 0x5c, 0x5a, 0x57, 0x52, 0x57, 0x5a, 0x57, 0x52, 0x54, 0x5d, 0x66, 0x5f, 0x5e, 0x61, 0x66, 0x6a, 0x69, 0x68, 0x68, 0x63, 0x67, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x66, 0x6e, 0x62, 0x5b, 0x5a, 0x54, 0x46, 0x3d, 0x3b, 0x41, 0x3f, 0x3e, 0x4c, 0x65, 0x6f, 0x64, 0x5b, 0x54, 0x49, 0x3f, 0x41, 0x4d, 0x56, 0x56, 0x51, 0x51, 0x4a, 0x4a, 0x40, 0x3a, 0x3e, 0x41, 0x4d, 0x4e, 0x52, 0x5e, 0x6c, 0x70, 0x6b, 0x6a, 0x6d, 0x55, 0x53, 0x47, 0x46, 0x5d, 0x70, 0x67, 0x56, 0x50, 0x4c, 0x3b, 0x33, 0x41, 0x51, 0x52, 0x4e, 0x4a, 0x46, 0x41, 0x4f, 0x58, 0x52, 0x53, 0x4e, 0x30, 0x1c, 0x1c, 0x3a, 0x4f, 0x4b, 0x44, 0x45, 0x51, 0x46, 0x42, 0x4a, 0x55, 0x59, 0x5c, 0x5f, 0x5a, 0x56, 0x57, 0x59, 0x57, 0x54, 0x4c, 0x3e, 0x43, 0x3c, 0x3c, 0x4b, 0x63, 0x72, 0x71, 0x69, 0x56, 0x6b, 0x79, 0x83, 0x7e, 0x6f, 0x69, 0x5f, 0x57, 0x4f, 0x45, 0x3e, 0x39, 0x38, 0x3f, 0x49, 0x4d, 0x4f, 0x50, 0x4e, 0x48, 0x40, 0x3c, 0x3b, 0x3e, 0x3b, 0x3c, 0x41, 0x46, 0x47, 0x4b, 0x50, 0x5a, 0x5b, 0x5b, 0x5b, 0x57, 0x4f, 0x46, 0x3f, 0x44, 0x42, 0x3f, 0x3e, 0x42, 0x4b, 0x55, 0x5c, 0x53, 0x4b, 0x47, 0x49, 0x4a, 0x4b, 0x52, 0x5c, 0x56, 0x5e, 0x67, 0x6b, 0x66, 0x5d, 0x57, 0x54, 0x58, 0x63, 0x70, 0x76, 0x72, 0x6b, 0x6a, 0x6c, 0x6b, 0x61, 0x5b, 0x5c, 0x5d, 0x5c, 0x5e, 0x61, 0x60, 0x60, 0x5d, 0x57, 0x51, 0x51, 0x58, 0x60, 0x5c, 0x58, 0x50, 0x4b, 0x51, 0x5c, 0x5d, 0x58, 0x51, 0x52, 0x51, 0x50, 0x4f, 0x50, 0x55, 0x59, 0x66, 0x68, 0x67, 0x64, 0x61, 0x5f, 0x5d, 0x5b, 0x57, 0x56, 0x56, 0x54, 0x50, 0x4e, 0x51, 0x55, 0x59, 0x5a, 0x5b, 0x5d, 0x60, 0x5f, 0x57, 0x4e, 0x52, 0x53, 0x54, 0x53, 0x4e, 0x47, 0x41, 0x3e, 0x31, 0x33, 0x39, 0x40, 0x48, 0x4e, 0x54, 0x57, 0x62, 0x62, 0x5e, 0x58, 0x54, 0x55, 0x53, 0x4f, 0x51, 0x51, 0x52, 0x53, 0x54, 0x54, 0x51, 0x4e, 0x4c, 0x57, 0x65, 0x70, 0x74, 0x6e, 0x61, 0x55, 0x56, 0x55, 0x55, 0x56, 0x58, 0x5a, 0x5a, 0x59, 0x5a, 0x58, 0x56, 0x57, 0x5a, 0x5a, 0x58, 0x55, 0x51, 0x56, 0x59, 0x59, 0x5c, 0x62, 0x68, 0x6a, 0x6b, 0x69, 0x67, 0x6a, 0x6d, 0x6d, 0x6a, 0x66, 0x63, 0x5f, 0x60, 0x64, 0x63, 0x5e, 0x60, 0x67, 0x67, 0x67, 0x68, 0x6c, 0x71, 0x74, 0x76, 0x77, 0x70, 0x6b, 0x68, 0x67, 0x67, 0x68, 0x6c, 0x72, 0x73, 0x72, 0x6e, 0x68, 0x62, 0x60, 0x63, 0x66, 0x67, 0x63, 0x5f, 0x5e, 0x5f, 0x60, 0x5f, 0x5e, 0x64, 0x67, 0x6b, 0x6d, 0x6b, 0x67, 0x63, 0x60, 0x5e, 0x5e, 0x5f, 0x5f, 0x5f, 0x60, 0x60, 0x5f, 0x5d, 0x60, 0x64, 0x66, 0x68, 0x6a, 0x68, 0x65, 0x6f, 0x7c, 0x90, 0xac, 0xc6, 0xcc, 0xc8, 0xc8, 0xcd, 0xcc, 0xca, 0xc6, 0xbf, 0xb6, 0xad, 0xa8, 0xa6, 0xab, 0xb0, 0xb1, 0xb1, 0xaf, 0xac, 0xa8, 0xa8, 0xa3, 0x9d, 0x9a, 0x98, 0x95, 0x90, 0x8d, 0x87, 0x85, 0x82, 0x7e, 0x79, 0x74, 0x6d, 0x69, 0x6d, 0x69, 0x64, 0x5e, 0x55, 0x50, 0x51, 0x55, 0x55, 0x5a, 0x60, 0x64, 0x66, 0x69, 0x6e, 0x72, 0x7c, 0x81, 0x86, 0x86, 0x86, 0x87, 0x86, 0x84, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8c, 0x8e, 0x8f, 0x8e, 0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x83, 0x83, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x75, 0x72, 0x70, 0x6d, 0x6a, 0x68, 0x67, 0x66, 0x63, 0x62, 0x61, 0x61, 0x5f, 0x5e, 0x5f, 0x5f, 0x5d, 0x5b, 0x5a, 0x5a, 0x58, 0x54, 0x5b, 0x5f, 0x62, 0x5f, 0x5a, 0x58, 0x59, 0x5d, 0x5f, 0x5e, 0x5f, 0x5f, 0x5d, 0x59, 0x58, 0x5a, 0x5b, 0x57, 0x51, 0x4c, 0x4b, 0x4b, 0x4d, 0x4e, 0x4f, 0x4c, 0x52, 0x60, 0x65, 0x5e, 0x56, 0x55, 0x53, 0x56, 0x5b, 0x62, 0x66, 0x62, 0x57, 0x4d, 0x4d, 0x4c, 0x4e, 0x54, 0x5a, 0x5d, 0x5d, 0x5c, 0x5a, 0x54, 0x52, 0x55, 0x57, 0x57, 0x5b, 0x61, 0x73, 0x85, 0x87, 0x71, 0x57, 0x43, 0x3d, 0x41, 0x45, 0x4f, 0x5e, 0x6a, 0x6f, 0x6c, 0x66, 0x61, 0x4e, 0x4c, 0x46, 0x3f, 0x3b, 0x40, 0x4a, 0x52, 0x57, 0x53, 0x4f, 0x4e, 0x4e, 0x50, 0x53, 0x56, 0x58, 0x54, 0x55, 0x5c, 0x61, 0x5f, 0x5d, 0x5e, 0x5c, 0x5a, 0x58, 0x57, 0x58, 0x57, 0x55, 0x53, 0x50, 0x51, 0x53, 0x55, 0x57, 0x58, 0x59, 0x59, 0x57, 0x53, 0x50, 0x53, 0x58, 0x5a, 0x57, 0x53, 0x54, 0x5c, 0x63, 0x61, 0x59, 0x57, 0x5d, 0x64, 0x61, 0x5a, 0x55, 0x55, 0x58, 0x5e, 0x66, 0x6d, 0x62, 0x67, 0x6a, 0x68, 0x66, 0x68, 0x6b, 0x6c, 0x69, 0x66, 0x65, 0x61, 0x56, 0x4a, 0x48, 0x4f, 0x43, 0x42, 0x3c, 0x42, 0x57, 0x66, 0x67, 0x66, 0x5a, 0x4d, 0x39, 0x31, 0x42, 0x58, 0x59, 0x4b, 0x43, 0x42, 0x46, 0x3d, 0x39, 0x41, 0x47, 0x54, 0x54, 0x5d, 0x69, 0x73, 0x76, 0x71, 0x64, 0x58, 0x45, 0x4a, 0x43, 0x40, 0x52, 0x61, 0x58, 0x48, 0x34, 0x29, 0x1e, 0x26, 0x3e, 0x4d, 0x52, 0x58, 0x5c, 0x53, 0x4a, 0x59, 0x63, 0x59, 0x4b, 0x37, 0x30, 0x26, 0x2a, 0x40, 0x4d, 0x45, 0x3a, 0x37, 0x19, 0x24, 0x39, 0x51, 0x5d, 0x5e, 0x5e, 0x61, 0x5f, 0x50, 0x4d, 0x54, 0x54, 0x4c, 0x40, 0x34, 0x33, 0x39, 0x41, 0x49, 0x50, 0x57, 0x5d, 0x61, 0x5e, 0x6a, 0x6f, 0x79, 0x7d, 0x79, 0x77, 0x6d, 0x56, 0x4d, 0x45, 0x42, 0x3c, 0x36, 0x38, 0x3f, 0x3c, 0x44, 0x4d, 0x4f, 0x4b, 0x46, 0x41, 0x3d, 0x3d, 0x3c, 0x42, 0x4e, 0x58, 0x58, 0x53, 0x4f, 0x4c, 0x4c, 0x4c, 0x4c, 0x49, 0x44, 0x3d, 0x38, 0x40, 0x3d, 0x3d, 0x44, 0x4e, 0x57, 0x5a, 0x5a, 0x51, 0x4c, 0x4a, 0x4c, 0x4f, 0x53, 0x5d, 0x67, 0x5b, 0x5b, 0x60, 0x66, 0x66, 0x5f, 0x56, 0x50, 0x52, 0x54, 0x59, 0x5f, 0x62, 0x61, 0x5d, 0x59, 0x5a, 0x5e, 0x61, 0x60, 0x59, 0x55, 0x59, 0x60, 0x5f, 0x61, 0x61, 0x5a, 0x51, 0x50, 0x56, 0x5d, 0x5c, 0x5a, 0x54, 0x4f, 0x56, 0x61, 0x61, 0x5a, 0x58, 0x59, 0x59, 0x57, 0x53, 0x50, 0x50, 0x51, 0x5c, 0x60, 0x63, 0x63, 0x5f, 0x5d, 0x5d, 0x5d, 0x69, 0x69, 0x69, 0x66, 0x62, 0x5e, 0x5d, 0x5e, 0x65, 0x65, 0x63, 0x60, 0x5d, 0x59, 0x51, 0x4a, 0x50, 0x59, 0x5f, 0x60, 0x62, 0x60, 0x54, 0x45, 0x3f, 0x44, 0x4c, 0x55, 0x59, 0x56, 0x52, 0x51, 0x56, 0x59, 0x58, 0x52, 0x4d, 0x4d, 0x4f, 0x51, 0x55, 0x56, 0x56, 0x53, 0x51, 0x50, 0x4e, 0x4c, 0x56, 0x5e, 0x68, 0x6c, 0x67, 0x5d, 0x54, 0x50, 0x51, 0x56, 0x57, 0x57, 0x5b, 0x61, 0x62, 0x5e, 0x5c, 0x59, 0x55, 0x52, 0x51, 0x4d, 0x47, 0x43, 0x49, 0x4d, 0x55, 0x5d, 0x63, 0x68, 0x6b, 0x6d, 0x69, 0x68, 0x6a, 0x71, 0x74, 0x70, 0x6a, 0x65, 0x60, 0x60, 0x62, 0x64, 0x64, 0x63, 0x64, 0x67, 0x65, 0x64, 0x63, 0x64, 0x68, 0x6e, 0x72, 0x74, 0x70, 0x6b, 0x67, 0x68, 0x69, 0x6a, 0x72, 0x7a, 0x77, 0x78, 0x75, 0x6e, 0x64, 0x60, 0x62, 0x66, 0x66, 0x65, 0x66, 0x67, 0x68, 0x67, 0x63, 0x60, 0x62, 0x63, 0x64, 0x65, 0x66, 0x65, 0x65, 0x64, 0x61, 0x61, 0x60, 0x5e, 0x5e, 0x61, 0x61, 0x5f, 0x5e, 0x5f, 0x64, 0x69, 0x69, 0x68, 0x6e, 0x77, 0x9f, 0xc9, 0xe4, 0xde, 0xd2, 0xcd, 0xcd, 0xd0, 0xc9, 0xca, 0xc9, 0xc4, 0xbb, 0xb1, 0xaa, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xa6, 0xa0, 0x9c, 0x98, 0x95, 0x91, 0x8e, 0x88, 0x85, 0x83, 0x80, 0x7d, 0x76, 0x6f, 0x69, 0x69, 0x69, 0x67, 0x63, 0x5a, 0x51, 0x4f, 0x51, 0x51, 0x55, 0x5b, 0x5f, 0x63, 0x66, 0x6a, 0x6d, 0x76, 0x7d, 0x84, 0x86, 0x87, 0x88, 0x87, 0x85, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x87, 0x8b, 0x8d, 0x8e, 0x8d, 0x8b, 0x89, 0x88, 0x88, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85, 0x82, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x86, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x77, 0x75, 0x72, 0x6f, 0x6d, 0x6a, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5e, 0x5e, 0x5d, 0x5c, 0x5b, 0x5d, 0x5c, 0x5a, 0x59, 0x5c, 0x60, 0x61, 0x5f, 0x64, 0x66, 0x66, 0x62, 0x5c, 0x5a, 0x5d, 0x61, 0x62, 0x60, 0x60, 0x61, 0x60, 0x5b, 0x58, 0x58, 0x59, 0x58, 0x57, 0x56, 0x55, 0x54, 0x53, 0x52, 0x56, 0x4c, 0x51, 0x64, 0x6b, 0x5f, 0x53, 0x52, 0x52, 0x53, 0x58, 0x62, 0x68, 0x65, 0x5b, 0x53, 0x4f, 0x4e, 0x50, 0x57, 0x5d, 0x62, 0x65, 0x68, 0x66, 0x58, 0x4e, 0x51, 0x55, 0x53, 0x53, 0x55, 0x6f, 0x80, 0x80, 0x71, 0x6b, 0x69, 0x65, 0x61, 0x54, 0x4b, 0x44, 0x47, 0x55, 0x67, 0x75, 0x7b, 0x6b, 0x5d, 0x4a, 0x3d, 0x3e, 0x47, 0x4d, 0x4f, 0x54, 0x4f, 0x50, 0x57, 0x58, 0x52, 0x50, 0x53, 0x56, 0x52, 0x54, 0x5c, 0x62, 0x62, 0x61, 0x62, 0x61, 0x5f, 0x5c, 0x5c, 0x5c, 0x5c, 0x59, 0x57, 0x56, 0x56, 0x56, 0x57, 0x57, 0x58, 0x59, 0x59, 0x55, 0x52, 0x51, 0x54, 0x59, 0x5c, 0x5a, 0x58, 0x53, 0x5c, 0x66, 0x67, 0x61, 0x5f, 0x63, 0x68, 0x60, 0x60, 0x64, 0x68, 0x68, 0x64, 0x61, 0x60, 0x63, 0x65, 0x65, 0x60, 0x5d, 0x61, 0x68, 0x6c, 0x64, 0x66, 0x68, 0x64, 0x56, 0x48, 0x47, 0x4e, 0x48, 0x45, 0x38, 0x35, 0x49, 0x5e, 0x66, 0x67, 0x5e, 0x54, 0x41, 0x35, 0x42, 0x54, 0x4f, 0x3c, 0x3a, 0x3a, 0x3f, 0x37, 0x39, 0x48, 0x52, 0x5d, 0x5c, 0x60, 0x66, 0x6a, 0x6a, 0x5f, 0x4c, 0x3b, 0x49, 0x53, 0x4f, 0x45, 0x49, 0x4e, 0x46, 0x3c, 0x34, 0x29, 0x25, 0x35, 0x4b, 0x52, 0x52, 0x59, 0x55, 0x52, 0x4a, 0x53, 0x5a, 0x54, 0x4a, 0x38, 0x2b, 0x27, 0x2f, 0x46, 0x59, 0x57, 0x42, 0x31, 0x3a, 0x4a, 0x5a, 0x5e, 0x5a, 0x5d, 0x6d, 0x7d, 0x70, 0x58, 0x4a, 0x4b, 0x47, 0x3f, 0x38, 0x32, 0x24, 0x23, 0x28, 0x36, 0x45, 0x4d, 0x4f, 0x4f, 0x68, 0x68, 0x60, 0x64, 0x6b, 0x70, 0x77, 0x72, 0x6f, 0x5d, 0x4d, 0x45, 0x3d, 0x36, 0x39, 0x42, 0x4d, 0x50, 0x4e, 0x45, 0x3e, 0x3f, 0x41, 0x42, 0x36, 0x45, 0x54, 0x56, 0x4a, 0x3f, 0x40, 0x46, 0x48, 0x4c, 0x4f, 0x4e, 0x4a, 0x45, 0x43, 0x42, 0x40, 0x3d, 0x3e, 0x48, 0x56, 0x5b, 0x54, 0x4b, 0x48, 0x49, 0x4b, 0x4d, 0x50, 0x57, 0x62, 0x6a, 0x63, 0x5d, 0x5a, 0x5f, 0x62, 0x5d, 0x54, 0x4e, 0x56, 0x53, 0x51, 0x52, 0x57, 0x5b, 0x5c, 0x5a, 0x57, 0x5e, 0x63, 0x60, 0x5a, 0x57, 0x59, 0x5b, 0x5d, 0x5e, 0x5c, 0x56, 0x50, 0x4f, 0x55, 0x5c, 0x5d, 0x5d, 0x57, 0x52, 0x57, 0x5f, 0x5d, 0x54, 0x58, 0x5b, 0x5d, 0x5c, 0x56, 0x50, 0x4c, 0x4b, 0x54, 0x59, 0x5e, 0x60, 0x5e, 0x5e, 0x62, 0x66, 0x6d, 0x6b, 0x68, 0x62, 0x5e, 0x5b, 0x59, 0x58, 0x59, 0x59, 0x56, 0x52, 0x53, 0x58, 0x5d, 0x5e, 0x55, 0x5c, 0x63, 0x69, 0x70, 0x71, 0x63, 0x51, 0x57, 0x5c, 0x65, 0x6c, 0x6a, 0x5d, 0x51, 0x4a, 0x4a, 0x4b, 0x4d, 0x4c, 0x49, 0x49, 0x4e, 0x55, 0x56, 0x59, 0x58, 0x54, 0x53, 0x59, 0x5f, 0x62, 0x58, 0x5b, 0x61, 0x65, 0x60, 0x57, 0x53, 0x54, 0x54, 0x57, 0x5a, 0x5b, 0x5f, 0x63, 0x64, 0x63, 0x5a, 0x58, 0x54, 0x4f, 0x4a, 0x46, 0x44, 0x43, 0x4b, 0x4c, 0x54, 0x60, 0x66, 0x65, 0x64, 0x65, 0x65, 0x67, 0x6e, 0x75, 0x76, 0x71, 0x6c, 0x6b, 0x67, 0x69, 0x69, 0x65, 0x64, 0x66, 0x68, 0x66, 0x67, 0x65, 0x63, 0x64, 0x67, 0x6a, 0x6d, 0x6e, 0x68, 0x63, 0x61, 0x63, 0x63, 0x62, 0x68, 0x70, 0x79, 0x79, 0x77, 0x71, 0x6a, 0x65, 0x64, 0x66, 0x66, 0x66, 0x67, 0x67, 0x67, 0x66, 0x65, 0x63, 0x62, 0x60, 0x5e, 0x5f, 0x62, 0x64, 0x65, 0x64, 0x62, 0x62, 0x5f, 0x5d, 0x5f, 0x64, 0x65, 0x64, 0x64, 0x61, 0x63, 0x66, 0x65, 0x6d, 0x8d, 0xaf, 0xef, 0xfc, 0xf2, 0xd7, 0xca, 0xcb, 0xc8, 0xc2, 0xc5, 0xc4, 0xc3, 0xbf, 0xba, 0xb3, 0xac, 0xa8, 0xb0, 0xaa, 0xa5, 0xa6, 0xaa, 0xad, 0xaf, 0xae, 0xa8, 0xa5, 0xa1, 0x9c, 0x98, 0x94, 0x92, 0x91, 0x8a, 0x87, 0x84, 0x82, 0x7f, 0x79, 0x72, 0x6c, 0x66, 0x65, 0x65, 0x64, 0x60, 0x57, 0x51, 0x4f, 0x50, 0x51, 0x54, 0x57, 0x5b, 0x60, 0x64, 0x66, 0x6c, 0x75, 0x7e, 0x83, 0x85, 0x87, 0x87, 0x86, 0x89, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x84, 0x85, 0x87, 0x89, 0x89, 0x89, 0x88, 0x87, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x80, 0x7e, 0x7c, 0x7c, 0x7e, 0x81, 0x82, 0x82, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x79, 0x78, 0x78, 0x73, 0x71, 0x6e, 0x6b, 0x69, 0x67, 0x64, 0x62, 0x60, 0x5f, 0x5c, 0x5b, 0x5b, 0x5a, 0x59, 0x58, 0x55, 0x57, 0x5b, 0x64, 0x72, 0x83, 0x8d, 0x90, 0x74, 0x6e, 0x66, 0x5e, 0x5b, 0x5e, 0x63, 0x68, 0x6b, 0x66, 0x61, 0x60, 0x5f, 0x5c, 0x58, 0x57, 0x5a, 0x5b, 0x5d, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x5e, 0x57, 0x5a, 0x69, 0x6e, 0x63, 0x57, 0x54, 0x57, 0x54, 0x57, 0x60, 0x66, 0x62, 0x5b, 0x57, 0x52, 0x51, 0x53, 0x5a, 0x5f, 0x61, 0x65, 0x69, 0x62, 0x58, 0x51, 0x53, 0x53, 0x4f, 0x51, 0x58, 0x67, 0x6f, 0x6c, 0x67, 0x71, 0x80, 0x89, 0x8e, 0x7d, 0x6c, 0x54, 0x41, 0x3c, 0x43, 0x50, 0x59, 0x5c, 0x56, 0x4f, 0x4e, 0x55, 0x5d, 0x5a, 0x53, 0x4c, 0x4b, 0x50, 0x59, 0x5d, 0x58, 0x53, 0x54, 0x54, 0x50, 0x52, 0x5a, 0x60, 0x5f, 0x5e, 0x5f, 0x61, 0x5f, 0x5c, 0x5c, 0x5c, 0x5c, 0x5a, 0x57, 0x52, 0x53, 0x54, 0x56, 0x57, 0x58, 0x58, 0x58, 0x54, 0x52, 0x52, 0x54, 0x58, 0x5c, 0x5c, 0x5b, 0x5a, 0x61, 0x68, 0x6a, 0x67, 0x66, 0x69, 0x6e, 0x72, 0x6b, 0x64, 0x60, 0x5e, 0x60, 0x67, 0x6e, 0x75, 0x74, 0x71, 0x6d, 0x6b, 0x6b, 0x6b, 0x69, 0x65, 0x62, 0x5f, 0x5a, 0x4f, 0x44, 0x42, 0x45, 0x4a, 0x48, 0x39, 0x34, 0x4a, 0x5f, 0x5c, 0x4f, 0x35, 0x35, 0x33, 0x36, 0x42, 0x4e, 0x4d, 0x44, 0x44, 0x3f, 0x3d, 0x33, 0x3b, 0x51, 0x59, 0x61, 0x59, 0x57, 0x5d, 0x67, 0x64, 0x51, 0x40, 0x39, 0x5b, 0x58, 0x49, 0x3d, 0x44, 0x4c, 0x47, 0x41, 0x46, 0x3f, 0x38, 0x40, 0x50, 0x55, 0x54, 0x59, 0x4f, 0x53, 0x4e, 0x52, 0x58, 0x58, 0x56, 0x47, 0x3e, 0x38, 0x34, 0x37, 0x39, 0x30, 0x21, 0x15, 0x2d, 0x46, 0x5e, 0x65, 0x64, 0x68, 0x71, 0x78, 0x75, 0x68, 0x60, 0x5c, 0x51, 0x45, 0x3a, 0x30, 0x25, 0x1c, 0x1f, 0x33, 0x48, 0x4f, 0x4d, 0x4c, 0x60, 0x60, 0x56, 0x5a, 0x63, 0x69, 0x71, 0x6b, 0x64, 0x5a, 0x58, 0x5d, 0x5a, 0x4d, 0x46, 0x49, 0x48, 0x52, 0x57, 0x53, 0x4c, 0x48, 0x44, 0x3f, 0x44, 0x44, 0x46, 0x49, 0x4a, 0x47, 0x41, 0x3e, 0x47, 0x4d, 0x52, 0x50, 0x47, 0x41, 0x40, 0x42, 0x3f, 0x45, 0x4d, 0x52, 0x52, 0x4e, 0x49, 0x47, 0x45, 0x49, 0x4c, 0x4c, 0x4c, 0x52, 0x5a, 0x60, 0x61, 0x59, 0x55, 0x5a, 0x5f, 0x5c, 0x55, 0x50, 0x4c, 0x51, 0x56, 0x57, 0x57, 0x59, 0x5b, 0x5d, 0x5d, 0x5d, 0x59, 0x54, 0x56, 0x5b, 0x5b, 0x55, 0x5a, 0x58, 0x52, 0x4c, 0x49, 0x4c, 0x54, 0x5b, 0x5b, 0x5c, 0x56, 0x4f, 0x51, 0x57, 0x52, 0x48, 0x4b, 0x50, 0x57, 0x5a, 0x58, 0x54, 0x50, 0x4e, 0x52, 0x58, 0x5f, 0x62, 0x63, 0x65, 0x6d, 0x75, 0x6a, 0x67, 0x61, 0x5c, 0x5a, 0x5b, 0x5b, 0x5b, 0x59, 0x5b, 0x59, 0x54, 0x51, 0x52, 0x55, 0x56, 0x5f, 0x5a, 0x57, 0x5a, 0x66, 0x6f, 0x6c, 0x63, 0x5e, 0x5c, 0x5e, 0x60, 0x5d, 0x56, 0x50, 0x50, 0x4f, 0x4e, 0x4e, 0x4f, 0x4c, 0x4a, 0x50, 0x58, 0x5e, 0x63, 0x62, 0x5b, 0x53, 0x51, 0x50, 0x4f, 0x52, 0x51, 0x57, 0x60, 0x61, 0x5b, 0x58, 0x5a, 0x5b, 0x58, 0x58, 0x5a, 0x5d, 0x5e, 0x60, 0x63, 0x59, 0x59, 0x58, 0x54, 0x4f, 0x4e, 0x51, 0x55, 0x56, 0x52, 0x56, 0x61, 0x65, 0x5f, 0x5c, 0x5e, 0x65, 0x69, 0x70, 0x76, 0x74, 0x6f, 0x6f, 0x74, 0x78, 0x75, 0x69, 0x59, 0x56, 0x60, 0x69, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6c, 0x6b, 0x68, 0x65, 0x67, 0x6b, 0x69, 0x63, 0x63, 0x69, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x64, 0x61, 0x5f, 0x61, 0x63, 0x65, 0x63, 0x60, 0x5f, 0x61, 0x64, 0x65, 0x63, 0x61, 0x5f, 0x60, 0x5e, 0x5c, 0x60, 0x68, 0x6b, 0x6a, 0x6b, 0x64, 0x63, 0x67, 0x6a, 0x81, 0xbc, 0xf6, 0xfa, 0xfc, 0xf1, 0xe0, 0xd5, 0xcc, 0xc7, 0xc9, 0xc5, 0xc3, 0xc0, 0xbf, 0xbe, 0xbb, 0xb5, 0xb0, 0xa6, 0xa8, 0xab, 0xac, 0xaa, 0xa6, 0xa5, 0xa6, 0xa5, 0xa3, 0xa0, 0x9b, 0x96, 0x93, 0x91, 0x91, 0x8d, 0x89, 0x85, 0x82, 0x7f, 0x7b, 0x75, 0x70, 0x64, 0x61, 0x61, 0x63, 0x63, 0x5d, 0x54, 0x4f, 0x4d, 0x4b, 0x4b, 0x4d, 0x51, 0x57, 0x5b, 0x5d, 0x63, 0x6d, 0x78, 0x7f, 0x82, 0x85, 0x86, 0x85, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x7f, 0x7c, 0x7c, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x81, 0x7e, 0x7b, 0x78, 0x76, 0x75, 0x74, 0x71, 0x6e, 0x6b, 0x69, 0x67, 0x65, 0x62, 0x60, 0x5f, 0x5e, 0x5c, 0x5b, 0x5a, 0x5a, 0x59, 0x58, 0x62, 0x63, 0x64, 0x69, 0x76, 0x86, 0x90, 0x93, 0x9d, 0xa4, 0xb0, 0xb9, 0xb9, 0xac, 0x99, 0x8a, 0x77, 0x6e, 0x65, 0x62, 0x61, 0x5f, 0x5d, 0x5c, 0x5b, 0x5c, 0x5c, 0x5d, 0x5f, 0x62, 0x65, 0x68, 0x67, 0x64, 0x67, 0x6e, 0x70, 0x69, 0x5f, 0x5a, 0x5e, 0x58, 0x57, 0x5e, 0x62, 0x5e, 0x59, 0x57, 0x55, 0x54, 0x56, 0x5b, 0x5d, 0x5d, 0x5f, 0x64, 0x55, 0x56, 0x5d, 0x60, 0x5a, 0x56, 0x62, 0x75, 0x83, 0x7e, 0x6a, 0x56, 0x52, 0x58, 0x65, 0x74, 0x80, 0x83, 0x80, 0x71, 0x5c, 0x4c, 0x48, 0x4b, 0x60, 0x69, 0x73, 0x79, 0x79, 0x71, 0x60, 0x50, 0x4c, 0x4c, 0x4f, 0x54, 0x57, 0x55, 0x51, 0x4f, 0x55, 0x50, 0x50, 0x58, 0x5c, 0x5a, 0x58, 0x58, 0x5e, 0x5b, 0x59, 0x59, 0x59, 0x59, 0x57, 0x54, 0x4d, 0x4f, 0x53, 0x56, 0x59, 0x5a, 0x5b, 0x5b, 0x5b, 0x59, 0x57, 0x56, 0x56, 0x56, 0x56, 0x55, 0x5a, 0x62, 0x6d, 0x78, 0x81, 0x8b, 0x97, 0x9f, 0xa1, 0x9c, 0x97, 0x95, 0x95, 0x98, 0x9e, 0xa5, 0xa2, 0xa1, 0x9f, 0x9d, 0x9b, 0x95, 0x89, 0x7e, 0x65, 0x5c, 0x53, 0x4e, 0x4b, 0x47, 0x46, 0x47, 0x48, 0x47, 0x3a, 0x38, 0x51, 0x61, 0x4d, 0x30, 0x1d, 0x22, 0x2e, 0x3d, 0x47, 0x4c, 0x51, 0x57, 0x4f, 0x44, 0x3c, 0x31, 0x3d, 0x56, 0x5d, 0x60, 0x55, 0x51, 0x5e, 0x72, 0x6e, 0x56, 0x49, 0x4f, 0x69, 0x55, 0x36, 0x2d, 0x44, 0x59, 0x59, 0x51, 0x49, 0x44, 0x38, 0x38, 0x47, 0x55, 0x5d, 0x64, 0x5f, 0x60, 0x58, 0x60, 0x6e, 0x6e, 0x5c, 0x3b, 0x3a, 0x38, 0x32, 0x26, 0x18, 0x14, 0x22, 0x33, 0x4a, 0x59, 0x65, 0x68, 0x6d, 0x77, 0x79, 0x73, 0x6c, 0x61, 0x53, 0x42, 0x32, 0x2f, 0x2f, 0x29, 0x1a, 0x1b, 0x26, 0x35, 0x38, 0x35, 0x3b, 0x47, 0x5d, 0x56, 0x4f, 0x51, 0x5b, 0x66, 0x6a, 0x6b, 0x5e, 0x56, 0x55, 0x58, 0x58, 0x58, 0x57, 0x51, 0x51, 0x58, 0x5f, 0x5d, 0x52, 0x48, 0x42, 0x41, 0x46, 0x4b, 0x4d, 0x49, 0x47, 0x48, 0x46, 0x41, 0x48, 0x4b, 0x54, 0x5c, 0x59, 0x4d, 0x46, 0x47, 0x55, 0x55, 0x50, 0x47, 0x42, 0x43, 0x45, 0x45, 0x49, 0x48, 0x48, 0x4a, 0x4c, 0x4e, 0x52, 0x56, 0x57, 0x56, 0x58, 0x5f, 0x67, 0x66, 0x5b, 0x4f, 0x4e, 0x50, 0x53, 0x55, 0x56, 0x55, 0x53, 0x52, 0x57, 0x54, 0x51, 0x52, 0x55, 0x58, 0x57, 0x55, 0x5d, 0x5c, 0x55, 0x4c, 0x4b, 0x53, 0x56, 0x54, 0x55, 0x59, 0x57, 0x51, 0x4f, 0x52, 0x50, 0x49, 0x4e, 0x4e, 0x51, 0x58, 0x5e, 0x60, 0x5c, 0x57, 0x60, 0x64, 0x6a, 0x6c, 0x68, 0x63, 0x68, 0x70, 0x69, 0x68, 0x66, 0x67, 0x67, 0x65, 0x60, 0x5b, 0x5a, 0x5b, 0x5a, 0x55, 0x51, 0x53, 0x5b, 0x63, 0x61, 0x57, 0x50, 0x53, 0x5b, 0x64, 0x6e, 0x76, 0x77, 0x70, 0x65, 0x5b, 0x56, 0x53, 0x4d, 0x47, 0x4a, 0x4f, 0x58, 0x5e, 0x5c, 0x57, 0x56, 0x5a, 0x5d, 0x5d, 0x59, 0x51, 0x4a, 0x4e, 0x5b, 0x67, 0x5a, 0x55, 0x56, 0x5f, 0x62, 0x5b, 0x51, 0x4e, 0x52, 0x53, 0x58, 0x5e, 0x69, 0x7a, 0x7c, 0x6e, 0x51, 0x52, 0x59, 0x5e, 0x5b, 0x54, 0x55, 0x5d, 0x59, 0x5d, 0x63, 0x67, 0x67, 0x64, 0x61, 0x5f, 0x64, 0x73, 0x73, 0x6d, 0x71, 0x70, 0x6d, 0x74, 0x77, 0x67, 0x59, 0x54, 0x58, 0x65, 0x6d, 0x68, 0x66, 0x6d, 0x74, 0x78, 0x78, 0x76, 0x71, 0x6c, 0x60, 0x66, 0x6c, 0x6e, 0x6c, 0x6a, 0x69, 0x69, 0x6b, 0x70, 0x6e, 0x6c, 0x70, 0x6f, 0x6b, 0x6a, 0x6a, 0x67, 0x62, 0x5f, 0x60, 0x63, 0x67, 0x69, 0x67, 0x62, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x65, 0x56, 0x60, 0x5e, 0x5d, 0x6b, 0x71, 0x69, 0x65, 0x66, 0x70, 0x77, 0x81, 0xa0, 0xcf, 0xf3, 0xff, 0xfb, 0xff, 0xf8, 0xe5, 0xd5, 0xd0, 0xcd, 0xc8, 0xc3, 0xc7, 0xc8, 0xc5, 0xc2, 0xbf, 0xba, 0xb4, 0xac, 0xa8, 0xa7, 0xaa, 0xaa, 0xa7, 0xa5, 0xa6, 0xa3, 0x9c, 0x98, 0x97, 0x95, 0x90, 0x8d, 0x8d, 0x8d, 0x89, 0x84, 0x80, 0x7d, 0x7b, 0x78, 0x76, 0x69, 0x65, 0x61, 0x60, 0x61, 0x5f, 0x5a, 0x55, 0x4d, 0x4a, 0x47, 0x48, 0x4c, 0x50, 0x51, 0x51, 0x5f, 0x62, 0x6b, 0x77, 0x80, 0x84, 0x87, 0x8a, 0x87, 0x88, 0x88, 0x87, 0x85, 0x84, 0x85, 0x87, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x82, 0x82, 0x82, 0x83, 0x86, 0x88, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7f, 0x81, 0x82, 0x83, 0x81, 0x7e, 0x7b, 0x77, 0x74, 0x6f, 0x6c, 0x6a, 0x6a, 0x6a, 0x67, 0x64, 0x60, 0x5d, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x57, 0x58, 0x5b, 0x5d, 0x5e, 0x65, 0x66, 0x64, 0x69, 0x6d, 0x74, 0x7f, 0x90, 0x97, 0xa2, 0xb0, 0xbd, 0xc5, 0xca, 0xcb, 0xcb, 0xca, 0xbf, 0xa1, 0x7b, 0x60, 0x5a, 0x60, 0x56, 0x57, 0x59, 0x5a, 0x5e, 0x62, 0x63, 0x62, 0x5a, 0x62, 0x6d, 0x76, 0x77, 0x6e, 0x5f, 0x54, 0x5d, 0x57, 0x54, 0x58, 0x5a, 0x57, 0x56, 0x58, 0x56, 0x4e, 0x52, 0x59, 0x5d, 0x6a, 0x6f, 0x63, 0x5b, 0x5c, 0x5d, 0x58, 0x4f, 0x52, 0x6a, 0x84, 0x82, 0x7b, 0x6d, 0x5a, 0x49, 0x43, 0x4d, 0x5a, 0x6c, 0x7c, 0x87, 0x7e, 0x69, 0x60, 0x6c, 0x7c, 0x8a, 0x84, 0x85, 0x8c, 0x8d, 0x7d, 0x65, 0x54, 0x54, 0x51, 0x51, 0x55, 0x59, 0x59, 0x57, 0x55, 0x4e, 0x50, 0x53, 0x57, 0x5b, 0x5c, 0x5a, 0x57, 0x60, 0x5f, 0x5c, 0x59, 0x5a, 0x5c, 0x5c, 0x5a, 0x55, 0x59, 0x56, 0x50, 0x51, 0x58, 0x5c, 0x59, 0x5b, 0x59, 0x59, 0x5b, 0x5a, 0x56, 0x52, 0x52, 0x67, 0x83, 0xa4, 0xb5, 0xb5, 0xb1, 0xaf, 0xaf, 0xa9, 0xa4, 0xa5, 0xa4, 0x9b, 0x97, 0x99, 0x97, 0x97, 0x95, 0x94, 0x94, 0x8e, 0x81, 0x72, 0x6a, 0x60, 0x57, 0x46, 0x40, 0x4b, 0x52, 0x4d, 0x49, 0x50, 0x3e, 0x35, 0x45, 0x5c, 0x5c, 0x41, 0x25, 0x1d, 0x22, 0x2c, 0x33, 0x37, 0x45, 0x53, 0x55, 0x4a, 0x3b, 0x2f, 0x2f, 0x41, 0x5c, 0x68, 0x60, 0x5a, 0x4e, 0x6e, 0x78, 0x7f, 0x67, 0x6a, 0x57, 0x5c, 0x3d, 0x2b, 0x25, 0x58, 0x67, 0x75, 0x6d, 0x59, 0x3f, 0x2b, 0x31, 0x4a, 0x61, 0x6d, 0x72, 0x46, 0x45, 0x4c, 0x5c, 0x5e, 0x46, 0x30, 0x30, 0x44, 0x44, 0x39, 0x2a, 0x1e, 0x1d, 0x32, 0x4f, 0x5f, 0x61, 0x66, 0x6c, 0x73, 0x78, 0x7b, 0x7c, 0x72, 0x5a, 0x45, 0x43, 0x4a, 0x48, 0x3c, 0x32, 0x27, 0x2b, 0x30, 0x30, 0x29, 0x21, 0x22, 0x27, 0x55, 0x4d, 0x47, 0x4c, 0x5a, 0x66, 0x6a, 0x68, 0x60, 0x57, 0x56, 0x58, 0x57, 0x58, 0x57, 0x51, 0x58, 0x5f, 0x67, 0x69, 0x65, 0x5e, 0x57, 0x53, 0x4f, 0x48, 0x40, 0x40, 0x4d, 0x58, 0x56, 0x4c, 0x44, 0x4d, 0x5f, 0x6e, 0x6f, 0x66, 0x5f, 0x5f, 0x5e, 0x59, 0x4e, 0x44, 0x40, 0x44, 0x46, 0x46, 0x46, 0x47, 0x48, 0x4c, 0x4f, 0x51, 0x52, 0x52, 0x5c, 0x5e, 0x5d, 0x5a, 0x5a, 0x5d, 0x5f, 0x5d, 0x56, 0x55, 0x55, 0x54, 0x53, 0x52, 0x51, 0x51, 0x4e, 0x4e, 0x4e, 0x4e, 0x50, 0x53, 0x55, 0x57, 0x5a, 0x5b, 0x58, 0x53, 0x54, 0x59, 0x59, 0x53, 0x52, 0x55, 0x56, 0x55, 0x56, 0x58, 0x57, 0x54, 0x59, 0x59, 0x59, 0x5b, 0x5e, 0x60, 0x5f, 0x5d, 0x63, 0x67, 0x6d, 0x6f, 0x6b, 0x67, 0x6c, 0x73, 0x6b, 0x69, 0x65, 0x62, 0x5f, 0x5a, 0x54, 0x51, 0x57, 0x58, 0x58, 0x56, 0x54, 0x55, 0x59, 0x5c, 0x58, 0x54, 0x52, 0x56, 0x5b, 0x60, 0x66, 0x6c, 0x67, 0x66, 0x61, 0x5b, 0x57, 0x58, 0x59, 0x59, 0x61, 0x61, 0x62, 0x5f, 0x58, 0x50, 0x50, 0x55, 0x55, 0x58, 0x59, 0x54, 0x4e, 0x4e, 0x55, 0x5d, 0x5c, 0x5a, 0x5e, 0x66, 0x67, 0x60, 0x5a, 0x5a, 0x55, 0x55, 0x57, 0x58, 0x5c, 0x67, 0x68, 0x5a, 0x54, 0x51, 0x51, 0x55, 0x59, 0x5b, 0x5d, 0x60, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6b, 0x6a, 0x6e, 0x79, 0x77, 0x70, 0x73, 0x72, 0x6f, 0x72, 0x6d, 0x6a, 0x6c, 0x6c, 0x69, 0x69, 0x67, 0x5d, 0x63, 0x6b, 0x76, 0x7d, 0x7c, 0x75, 0x6b, 0x63, 0x65, 0x66, 0x66, 0x65, 0x63, 0x63, 0x66, 0x69, 0x72, 0x75, 0x6f, 0x67, 0x67, 0x65, 0x61, 0x62, 0x5d, 0x5f, 0x62, 0x65, 0x66, 0x66, 0x66, 0x66, 0x61, 0x5d, 0x5b, 0x5d, 0x60, 0x62, 0x64, 0x67, 0x6a, 0x63, 0x62, 0x67, 0x65, 0x5f, 0x73, 0x97, 0xb8, 0xc8, 0xd9, 0xe5, 0xf2, 0xfd, 0xfe, 0xf7, 0xfd, 0xfe, 0xfa, 0xed, 0xdd, 0xd2, 0xce, 0xce, 0xc7, 0xc8, 0xc6, 0xc4, 0xc4, 0xc4, 0xc1, 0xbc, 0xb3, 0xae, 0xab, 0xac, 0xab, 0xa7, 0xa6, 0xa8, 0xa2, 0x9c, 0x97, 0x96, 0x94, 0x8f, 0x8b, 0x8a, 0x8c, 0x8b, 0x88, 0x84, 0x7f, 0x7b, 0x78, 0x78, 0x6f, 0x6a, 0x64, 0x61, 0x60, 0x5f, 0x5c, 0x59, 0x53, 0x4f, 0x4a, 0x47, 0x48, 0x4a, 0x4b, 0x4b, 0x55, 0x58, 0x62, 0x70, 0x7c, 0x82, 0x84, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x83, 0x82, 0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7d, 0x7d, 0x7e, 0x80, 0x7f, 0x7f, 0x7f, 0x81, 0x83, 0x85, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x83, 0x82, 0x81, 0x80, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7b, 0x78, 0x76, 0x73, 0x70, 0x6e, 0x68, 0x67, 0x64, 0x61, 0x5e, 0x5c, 0x5c, 0x5c, 0x5c, 0x5a, 0x58, 0x56, 0x52, 0x51, 0x56, 0x5c, 0x60, 0x5e, 0x59, 0x58, 0x59, 0x55, 0x58, 0x64, 0x74, 0x82, 0x97, 0xaa, 0xb7, 0xbc, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xb5, 0x95, 0x71, 0x60, 0x60, 0x5d, 0x5b, 0x5a, 0x5a, 0x5c, 0x5e, 0x5d, 0x5a, 0x5b, 0x5c, 0x61, 0x69, 0x6f, 0x6d, 0x63, 0x5a, 0x58, 0x5b, 0x5a, 0x55, 0x55, 0x58, 0x5a, 0x58, 0x58, 0x4f, 0x50, 0x55, 0x5b, 0x67, 0x6c, 0x61, 0x5c, 0x5f, 0x62, 0x64, 0x6a, 0x74, 0x80, 0x87, 0x73, 0x6f, 0x6d, 0x6b, 0x65, 0x5e, 0x58, 0x56, 0x4e, 0x52, 0x57, 0x5d, 0x62, 0x68, 0x6d, 0x71, 0x78, 0x6e, 0x64, 0x62, 0x62, 0x5f, 0x5a, 0x57, 0x58, 0x54, 0x52, 0x55, 0x5a, 0x5d, 0x5c, 0x5a, 0x59, 0x59, 0x58, 0x58, 0x5a, 0x5c, 0x5f, 0x60, 0x5e, 0x5f, 0x5e, 0x5c, 0x5d, 0x5d, 0x59, 0x55, 0x56, 0x55, 0x51, 0x50, 0x55, 0x5c, 0x5f, 0x5d, 0x5d, 0x60, 0x60, 0x5e, 0x61, 0x73, 0x8f, 0xa5, 0xa3, 0xa5, 0xa6, 0xa5, 0xa6, 0xa7, 0xa6, 0xa3, 0xa0, 0x9a, 0x99, 0x96, 0x8c, 0x89, 0x8b, 0x8a, 0x89, 0x84, 0x7e, 0x79, 0x73, 0x6a, 0x62, 0x5e, 0x6c, 0x5e, 0x4d, 0x4a, 0x4f, 0x49, 0x40, 0x3f, 0x45, 0x3f, 0x3b, 0x39, 0x38, 0x33, 0x2e, 0x2c, 0x34, 0x34, 0x34, 0x2f, 0x2e, 0x40, 0x57, 0x61, 0x52, 0x40, 0x32, 0x33, 0x43, 0x5a, 0x63, 0x5c, 0x50, 0x3e, 0x61, 0x7a, 0x84, 0x63, 0x5e, 0x50, 0x4c, 0x35, 0x2e, 0x38, 0x68, 0x74, 0x78, 0x6c, 0x53, 0x3e, 0x36, 0x45, 0x57, 0x5e, 0x63, 0x6a, 0x69, 0x55, 0x4b, 0x55, 0x57, 0x44, 0x3a, 0x43, 0x44, 0x3b, 0x28, 0x1c, 0x1e, 0x28, 0x37, 0x4a, 0x51, 0x66, 0x77, 0x77, 0x73, 0x78, 0x83, 0x89, 0x77, 0x67, 0x56, 0x4e, 0x48, 0x40, 0x39, 0x37, 0x44, 0x3c, 0x38, 0x43, 0x5b, 0x6f, 0x75, 0x73, 0x4e, 0x46, 0x40, 0x46, 0x55, 0x63, 0x67, 0x66, 0x62, 0x5a, 0x57, 0x57, 0x55, 0x57, 0x56, 0x4f, 0x52, 0x56, 0x5d, 0x63, 0x67, 0x67, 0x64, 0x61, 0x60, 0x51, 0x40, 0x3e, 0x4d, 0x5c, 0x5a, 0x50, 0x41, 0x4d, 0x61, 0x72, 0x74, 0x6a, 0x62, 0x61, 0x58, 0x50, 0x43, 0x3b, 0x3d, 0x44, 0x49, 0x4a, 0x4b, 0x4a, 0x4a, 0x4d, 0x51, 0x53, 0x52, 0x4f, 0x56, 0x61, 0x67, 0x60, 0x5a, 0x5c, 0x5f, 0x60, 0x5a, 0x57, 0x53, 0x51, 0x51, 0x51, 0x51, 0x51, 0x52, 0x54, 0x56, 0x56, 0x56, 0x59, 0x5f, 0x63, 0x60, 0x5f, 0x5b, 0x58, 0x5a, 0x5d, 0x59, 0x51, 0x5e, 0x5e, 0x62, 0x67, 0x69, 0x68, 0x67, 0x69, 0x67, 0x65, 0x61, 0x5d, 0x5a, 0x5b, 0x5d, 0x5f, 0x5e, 0x62, 0x68, 0x6a, 0x66, 0x62, 0x64, 0x69, 0x60, 0x60, 0x5e, 0x5b, 0x58, 0x55, 0x54, 0x54, 0x5a, 0x5b, 0x5d, 0x5f, 0x60, 0x5f, 0x5d, 0x5c, 0x5a, 0x56, 0x53, 0x52, 0x53, 0x57, 0x60, 0x68, 0x64, 0x67, 0x68, 0x62, 0x5d, 0x5d, 0x62, 0x65, 0x63, 0x62, 0x61, 0x5d, 0x56, 0x51, 0x53, 0x58, 0x55, 0x5a, 0x5f, 0x5d, 0x56, 0x51, 0x52, 0x54, 0x55, 0x54, 0x55, 0x5a, 0x5c, 0x5c, 0x60, 0x66, 0x6a, 0x66, 0x62, 0x59, 0x55, 0x5b, 0x5d, 0x54, 0x5a, 0x5b, 0x5b, 0x5b, 0x5e, 0x65, 0x6b, 0x6d, 0x71, 0x70, 0x6f, 0x70, 0x73, 0x74, 0x72, 0x71, 0x76, 0x7b, 0x76, 0x6f, 0x72, 0x72, 0x6e, 0x6d, 0x6d, 0x71, 0x7a, 0x7b, 0x72, 0x6c, 0x66, 0x5d, 0x66, 0x6a, 0x71, 0x76, 0x76, 0x71, 0x6a, 0x65, 0x6b, 0x6a, 0x66, 0x62, 0x5e, 0x5e, 0x61, 0x64, 0x66, 0x6b, 0x68, 0x62, 0x62, 0x60, 0x5e, 0x61, 0x5d, 0x61, 0x67, 0x69, 0x68, 0x65, 0x63, 0x63, 0x62, 0x5f, 0x5d, 0x5e, 0x5f, 0x5e, 0x5f, 0x62, 0x5c, 0x60, 0x68, 0x69, 0x6d, 0x8c, 0xc2, 0xe9, 0xf9, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfd, 0xfc, 0xfc, 0xf7, 0xe8, 0xd7, 0xcf, 0xd0, 0xca, 0xc8, 0xc4, 0xc2, 0xc3, 0xc5, 0xc3, 0xbf, 0xbc, 0xb7, 0xb2, 0xaf, 0xad, 0xaa, 0xa9, 0xa9, 0xa4, 0x9e, 0x9a, 0x98, 0x95, 0x90, 0x8b, 0x89, 0x88, 0x8a, 0x8a, 0x86, 0x80, 0x7a, 0x78, 0x78, 0x74, 0x6f, 0x68, 0x62, 0x5f, 0x5d, 0x5c, 0x5b, 0x58, 0x54, 0x4e, 0x49, 0x46, 0x46, 0x47, 0x48, 0x4b, 0x4c, 0x54, 0x61, 0x6f, 0x79, 0x81, 0x86, 0x87, 0x85, 0x83, 0x84, 0x86, 0x86, 0x84, 0x82, 0x82, 0x81, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x84, 0x85, 0x86, 0x88, 0x88, 0x87, 0x87, 0x86, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7d, 0x7b, 0x77, 0x74, 0x72, 0x6f, 0x6d, 0x6b, 0x69, 0x66, 0x60, 0x5b, 0x58, 0x56, 0x56, 0x57, 0x5a, 0x55, 0x52, 0x51, 0x4c, 0x49, 0x52, 0x60, 0x68, 0x60, 0x58, 0x5c, 0x63, 0x5d, 0x5a, 0x63, 0x5e, 0x6a, 0x7f, 0x96, 0xaa, 0xb3, 0xb5, 0xb3, 0xb4, 0xb6, 0xc0, 0xc5, 0xb0, 0x89, 0x6c, 0x62, 0x60, 0x5d, 0x5b, 0x5c, 0x5e, 0x5e, 0x5c, 0x59, 0x60, 0x5c, 0x5a, 0x61, 0x69, 0x6a, 0x60, 0x56, 0x5f, 0x6b, 0x6b, 0x5b, 0x53, 0x5a, 0x5b, 0x55, 0x59, 0x52, 0x52, 0x59, 0x60, 0x68, 0x67, 0x5c, 0x5d, 0x5e, 0x60, 0x67, 0x78, 0x87, 0x85, 0x7a, 0x79, 0x6d, 0x63, 0x6a, 0x7b, 0x8d, 0x98, 0x9d, 0x96, 0x7f, 0x62, 0x54, 0x57, 0x64, 0x6e, 0x72, 0x73, 0x6c, 0x64, 0x5e, 0x59, 0x55, 0x54, 0x56, 0x51, 0x4c, 0x49, 0x4c, 0x54, 0x5b, 0x5d, 0x5c, 0x59, 0x5a, 0x5a, 0x5b, 0x5c, 0x5f, 0x65, 0x69, 0x63, 0x63, 0x61, 0x5f, 0x60, 0x60, 0x5c, 0x57, 0x59, 0x53, 0x50, 0x54, 0x59, 0x5c, 0x5e, 0x5f, 0x5c, 0x68, 0x7a, 0x8e, 0xa2, 0xae, 0xac, 0xa3, 0x94, 0x91, 0x8f, 0x91, 0x97, 0x9d, 0x9c, 0x97, 0x97, 0x8f, 0x8b, 0x87, 0x7d, 0x79, 0x7b, 0x7b, 0x7e, 0x77, 0x6f, 0x69, 0x62, 0x5c, 0x58, 0x58, 0x57, 0x4b, 0x43, 0x49, 0x50, 0x46, 0x3f, 0x47, 0x48, 0x3e, 0x3a, 0x42, 0x4e, 0x4f, 0x47, 0x3e, 0x39, 0x3b, 0x3e, 0x39, 0x35, 0x45, 0x5a, 0x62, 0x57, 0x40, 0x33, 0x3b, 0x4f, 0x64, 0x68, 0x5d, 0x50, 0x45, 0x65, 0x7b, 0x82, 0x63, 0x5d, 0x51, 0x43, 0x33, 0x34, 0x4d, 0x70, 0x75, 0x69, 0x59, 0x43, 0x38, 0x3d, 0x53, 0x5e, 0x5a, 0x5b, 0x66, 0x6d, 0x55, 0x4b, 0x56, 0x55, 0x42, 0x3d, 0x4b, 0x43, 0x3c, 0x2b, 0x21, 0x27, 0x2d, 0x2c, 0x2e, 0x47, 0x63, 0x7a, 0x7c, 0x7b, 0x81, 0x85, 0x83, 0x71, 0x6b, 0x63, 0x57, 0x45, 0x37, 0x35, 0x3b, 0x49, 0x3e, 0x34, 0x3a, 0x51, 0x69, 0x75, 0x75, 0x4c, 0x46, 0x41, 0x46, 0x52, 0x5d, 0x64, 0x65, 0x63, 0x5c, 0x58, 0x57, 0x55, 0x58, 0x58, 0x50, 0x4b, 0x4d, 0x50, 0x55, 0x5c, 0x62, 0x66, 0x68, 0x6b, 0x62, 0x53, 0x4c, 0x53, 0x5e, 0x61, 0x5c, 0x4d, 0x54, 0x5e, 0x64, 0x5f, 0x54, 0x4d, 0x4c, 0x52, 0x4b, 0x42, 0x3d, 0x41, 0x48, 0x4d, 0x4f, 0x54, 0x52, 0x4f, 0x4d, 0x4f, 0x52, 0x52, 0x4f, 0x56, 0x5b, 0x57, 0x4b, 0x4a, 0x56, 0x61, 0x64, 0x57, 0x54, 0x51, 0x52, 0x54, 0x55, 0x54, 0x52, 0x51, 0x53, 0x54, 0x54, 0x54, 0x57, 0x5c, 0x60, 0x63, 0x5f, 0x59, 0x57, 0x5b, 0x5f, 0x5d, 0x57, 0x5f, 0x5d, 0x62, 0x6b, 0x6c, 0x66, 0x65, 0x69, 0x6e, 0x6c, 0x65, 0x5b, 0x52, 0x50, 0x54, 0x59, 0x55, 0x5b, 0x61, 0x63, 0x5e, 0x59, 0x56, 0x57, 0x54, 0x56, 0x57, 0x56, 0x55, 0x56, 0x5a, 0x5e, 0x5c, 0x5c, 0x5e, 0x62, 0x65, 0x65, 0x60, 0x5c, 0x5b, 0x5a, 0x57, 0x54, 0x52, 0x55, 0x5e, 0x66, 0x6c, 0x71, 0x70, 0x68, 0x5e, 0x59, 0x5a, 0x5b, 0x54, 0x58, 0x5b, 0x5b, 0x59, 0x59, 0x5d, 0x63, 0x5b, 0x61, 0x66, 0x66, 0x62, 0x5d, 0x5b, 0x5c, 0x5e, 0x5b, 0x5c, 0x62, 0x68, 0x69, 0x69, 0x69, 0x6d, 0x68, 0x61, 0x55, 0x4e, 0x56, 0x5f, 0x5d, 0x68, 0x73, 0x76, 0x6c, 0x64, 0x68, 0x71, 0x75, 0x6c, 0x6c, 0x6e, 0x73, 0x78, 0x79, 0x76, 0x73, 0x7a, 0x7b, 0x76, 0x71, 0x74, 0x77, 0x75, 0x70, 0x6d, 0x72, 0x7d, 0x81, 0x7a, 0x74, 0x6c, 0x60, 0x63, 0x66, 0x6c, 0x73, 0x75, 0x72, 0x6d, 0x6a, 0x6b, 0x6b, 0x6b, 0x68, 0x65, 0x63, 0x63, 0x63, 0x59, 0x63, 0x66, 0x65, 0x68, 0x67, 0x65, 0x68, 0x6b, 0x6c, 0x6b, 0x67, 0x62, 0x5f, 0x60, 0x62, 0x63, 0x60, 0x5e, 0x5f, 0x5f, 0x5e, 0x5f, 0x61, 0x65, 0x66, 0x6e, 0x7b, 0x9c, 0xd6, 0xfe, 0xfe, 0xfa, 0xf9, 0xfa, 0xfc, 0xfd, 0xfc, 0xfc, 0xfe, 0xfa, 0xfc, 0xfd, 0xfb, 0xf2, 0xe2, 0xd4, 0xcd, 0xca, 0xc8, 0xc6, 0xc4, 0xc3, 0xc3, 0xc1, 0xbf, 0xc0, 0xbd, 0xb8, 0xb5, 0xb2, 0xaf, 0xac, 0xab, 0xa7, 0xa3, 0x9f, 0x9b, 0x98, 0x93, 0x8e, 0x8a, 0x86, 0x86, 0x86, 0x84, 0x80, 0x7b, 0x78, 0x76, 0x75, 0x71, 0x6a, 0x64, 0x5e, 0x5b, 0x5a, 0x5a, 0x58, 0x56, 0x52, 0x4d, 0x49, 0x48, 0x48, 0x49, 0x48, 0x47, 0x48, 0x4e, 0x59, 0x67, 0x77, 0x84, 0x87, 0x85, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x81, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x82, 0x83, 0x84, 0x86, 0x86, 0x85, 0x84, 0x83, 0x81, 0x82, 0x83, 0x83, 0x83, 0x81, 0x7f, 0x7e, 0x7b, 0x78, 0x74, 0x70, 0x6d, 0x6a, 0x67, 0x65, 0x63, 0x61, 0x5d, 0x59, 0x57, 0x55, 0x54, 0x53, 0x53, 0x4c, 0x4a, 0x4b, 0x47, 0x45, 0x53, 0x66, 0x74, 0x69, 0x5e, 0x65, 0x78, 0x7c, 0x72, 0x6d, 0x6e, 0x70, 0x7a, 0x90, 0xaa, 0xba, 0xbb, 0xb6, 0xb3, 0xb4, 0xbb, 0xc4, 0xbd, 0xa0, 0x7d, 0x67, 0x62, 0x61, 0x61, 0x62, 0x61, 0x5e, 0x5b, 0x5a, 0x60, 0x5b, 0x59, 0x61, 0x6a, 0x6a, 0x5d, 0x50, 0x61, 0x70, 0x73, 0x64, 0x57, 0x58, 0x59, 0x55, 0x59, 0x56, 0x58, 0x61, 0x6a, 0x6b, 0x62, 0x55, 0x5d, 0x5c, 0x5e, 0x68, 0x79, 0x84, 0x7f, 0x74, 0x63, 0x59, 0x53, 0x5b, 0x69, 0x74, 0x78, 0x78, 0x80, 0x7c, 0x78, 0x75, 0x76, 0x76, 0x76, 0x75, 0x76, 0x73, 0x6f, 0x6a, 0x63, 0x5c, 0x58, 0x56, 0x59, 0x55, 0x50, 0x52, 0x59, 0x61, 0x61, 0x5e, 0x50, 0x56, 0x5e, 0x62, 0x64, 0x66, 0x6b, 0x6f, 0x67, 0x65, 0x60, 0x5d, 0x5e, 0x62, 0x61, 0x5e, 0x5c, 0x57, 0x56, 0x5a, 0x5a, 0x57, 0x5d, 0x66, 0x72, 0x8c, 0xa6, 0xb2, 0xb3, 0xae, 0xa2, 0x96, 0x83, 0x8b, 0x93, 0x97, 0x97, 0x94, 0x8e, 0x88, 0x8a, 0x81, 0x7d, 0x79, 0x6f, 0x6b, 0x6c, 0x6b, 0x66, 0x61, 0x5c, 0x57, 0x51, 0x4a, 0x47, 0x47, 0x43, 0x41, 0x42, 0x4b, 0x52, 0x4c, 0x4c, 0x58, 0x4f, 0x4c, 0x4d, 0x53, 0x57, 0x52, 0x48, 0x41, 0x33, 0x3a, 0x43, 0x43, 0x43, 0x50, 0x5e, 0x5f, 0x47, 0x32, 0x28, 0x37, 0x4f, 0x5f, 0x5c, 0x4c, 0x49, 0x4b, 0x60, 0x60, 0x5f, 0x51, 0x50, 0x43, 0x3e, 0x33, 0x3b, 0x5b, 0x70, 0x6f, 0x59, 0x45, 0x3d, 0x3e, 0x4a, 0x5c, 0x60, 0x5b, 0x5f, 0x6b, 0x5d, 0x4e, 0x4e, 0x58, 0x52, 0x40, 0x3c, 0x44, 0x49, 0x44, 0x32, 0x25, 0x2e, 0x40, 0x4f, 0x5a, 0x53, 0x5c, 0x67, 0x70, 0x7c, 0x85, 0x7f, 0x72, 0x6f, 0x6e, 0x6c, 0x61, 0x4c, 0x38, 0x32, 0x36, 0x3f, 0x35, 0x2f, 0x36, 0x45, 0x56, 0x65, 0x70, 0x46, 0x48, 0x4b, 0x50, 0x56, 0x5c, 0x60, 0x61, 0x61, 0x5b, 0x59, 0x59, 0x5a, 0x61, 0x62, 0x5a, 0x51, 0x52, 0x54, 0x56, 0x5a, 0x5f, 0x65, 0x69, 0x68, 0x67, 0x62, 0x60, 0x67, 0x73, 0x79, 0x78, 0x73, 0x70, 0x6c, 0x66, 0x5d, 0x55, 0x53, 0x54, 0x56, 0x52, 0x4e, 0x4c, 0x4c, 0x4e, 0x51, 0x52, 0x55, 0x56, 0x55, 0x51, 0x51, 0x52, 0x52, 0x4f, 0x52, 0x56, 0x58, 0x5b, 0x65, 0x6f, 0x6c, 0x62, 0x54, 0x53, 0x54, 0x58, 0x5d, 0x5d, 0x58, 0x54, 0x55, 0x55, 0x55, 0x55, 0x56, 0x57, 0x59, 0x59, 0x5c, 0x58, 0x54, 0x55, 0x5b, 0x61, 0x60, 0x5d, 0x59, 0x58, 0x60, 0x6b, 0x6c, 0x64, 0x61, 0x66, 0x6e, 0x6d, 0x67, 0x5b, 0x4e, 0x48, 0x4c, 0x51, 0x55, 0x5b, 0x62, 0x63, 0x5f, 0x58, 0x52, 0x4e, 0x51, 0x53, 0x55, 0x54, 0x52, 0x53, 0x57, 0x5c, 0x58, 0x57, 0x57, 0x5a, 0x5e, 0x5f, 0x5d, 0x5a, 0x59, 0x5b, 0x5d, 0x5c, 0x5c, 0x5e, 0x63, 0x66, 0x6c, 0x6e, 0x6c, 0x63, 0x58, 0x50, 0x4b, 0x48, 0x4f, 0x54, 0x58, 0x59, 0x59, 0x5d, 0x64, 0x69, 0x65, 0x68, 0x6a, 0x6a, 0x67, 0x66, 0x66, 0x67, 0x65, 0x62, 0x64, 0x6e, 0x77, 0x74, 0x66, 0x59, 0x6d, 0x6b, 0x6a, 0x63, 0x5e, 0x68, 0x74, 0x76, 0x75, 0x7e, 0x7c, 0x6b, 0x5f, 0x63, 0x6b, 0x6f, 0x69, 0x68, 0x69, 0x6b, 0x6e, 0x6e, 0x6a, 0x66, 0x70, 0x6f, 0x6d, 0x6a, 0x6c, 0x72, 0x73, 0x6d, 0x69, 0x6d, 0x7a, 0x85, 0x86, 0x81, 0x73, 0x61, 0x5c, 0x62, 0x6d, 0x7a, 0x7e, 0x77, 0x6d, 0x67, 0x67, 0x68, 0x69, 0x69, 0x68, 0x66, 0x64, 0x64, 0x5e, 0x67, 0x6a, 0x68, 0x6a, 0x68, 0x66, 0x69, 0x6f, 0x6d, 0x68, 0x61, 0x5b, 0x5a, 0x5e, 0x63, 0x5d, 0x5b, 0x5b, 0x5d, 0x5f, 0x60, 0x63, 0x67, 0x6f, 0x63, 0x79, 0xaf, 0xdf, 0xfc, 0xff, 0xf1, 0xf9, 0xf8, 0xfb, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf9, 0xfe, 0xff, 0xfc, 0xf9, 0xf1, 0xdf, 0xcc, 0xc9, 0xc9, 0xc9, 0xc8, 0xc5, 0xc2, 0xc0, 0xc0, 0xc0, 0xbf, 0xbc, 0xba, 0xb7, 0xb4, 0xb0, 0xac, 0xaa, 0xa8, 0xa3, 0x9f, 0x9c, 0x97, 0x91, 0x8c, 0x87, 0x84, 0x80, 0x7f, 0x80, 0x7e, 0x7a, 0x76, 0x74, 0x71, 0x6c, 0x67, 0x61, 0x5d, 0x5a, 0x58, 0x56, 0x56, 0x55, 0x52, 0x4e, 0x4a, 0x48, 0x47, 0x48, 0x46, 0x44, 0x44, 0x46, 0x50, 0x62, 0x72, 0x7f, 0x83, 0x86, 0x85, 0x81, 0x7e, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x76, 0x74, 0x70, 0x6d, 0x6a, 0x67, 0x64, 0x62, 0x5a, 0x59, 0x58, 0x58, 0x57, 0x54, 0x50, 0x4d, 0x47, 0x42, 0x42, 0x45, 0x44, 0x45, 0x56, 0x6c, 0x7a, 0x6e, 0x59, 0x57, 0x70, 0x80, 0x75, 0x64, 0x6e, 0x70, 0x7b, 0x8f, 0xa6, 0xb5, 0xb8, 0xb5, 0xb8, 0xb9, 0xb9, 0xbc, 0xbd, 0xae, 0x8b, 0x6a, 0x66, 0x66, 0x67, 0x67, 0x62, 0x5b, 0x58, 0x5a, 0x5c, 0x58, 0x58, 0x61, 0x6a, 0x6b, 0x61, 0x55, 0x57, 0x63, 0x6b, 0x66, 0x5a, 0x55, 0x56, 0x59, 0x5b, 0x5a, 0x5a, 0x62, 0x6b, 0x68, 0x5b, 0x52, 0x5a, 0x5c, 0x65, 0x73, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x70, 0x67, 0x62, 0x5f, 0x5e, 0x5f, 0x62, 0x63, 0x6c, 0x76, 0x7b, 0x7c, 0x7c, 0x81, 0x86, 0x74, 0x6d, 0x63, 0x5b, 0x58, 0x59, 0x5c, 0x5e, 0x62, 0x5f, 0x5a, 0x58, 0x5c, 0x60, 0x5d, 0x57, 0x54, 0x5b, 0x65, 0x69, 0x69, 0x69, 0x6c, 0x6f, 0x63, 0x60, 0x5b, 0x5a, 0x5d, 0x62, 0x63, 0x60, 0x5e, 0x5a, 0x5a, 0x5b, 0x58, 0x59, 0x6a, 0x7f, 0x9a, 0xa8, 0xb0, 0xab, 0xa3, 0x9f, 0x99, 0x91, 0x8d, 0x94, 0x99, 0x98, 0x93, 0x8d, 0x87, 0x82, 0x79, 0x70, 0x6d, 0x69, 0x60, 0x5b, 0x5a, 0x57, 0x51, 0x4e, 0x4a, 0x47, 0x41, 0x3c, 0x3c, 0x3f, 0x42, 0x47, 0x49, 0x4a, 0x4a, 0x45, 0x46, 0x50, 0x5c, 0x51, 0x48, 0x47, 0x49, 0x47, 0x41, 0x3c, 0x3a, 0x3c, 0x3f, 0x3f, 0x43, 0x54, 0x5f, 0x5b, 0x43, 0x3b, 0x3e, 0x4a, 0x57, 0x5f, 0x5b, 0x4e, 0x47, 0x46, 0x4b, 0x43, 0x43, 0x3d, 0x3b, 0x30, 0x2e, 0x2b, 0x40, 0x64, 0x73, 0x6f, 0x58, 0x41, 0x34, 0x40, 0x50, 0x5a, 0x5a, 0x57, 0x5c, 0x63, 0x62, 0x53, 0x51, 0x56, 0x51, 0x4b, 0x48, 0x42, 0x39, 0x38, 0x2b, 0x22, 0x2f, 0x45, 0x58, 0x65, 0x64, 0x61, 0x63, 0x6e, 0x7a, 0x7e, 0x7a, 0x75, 0x79, 0x77, 0x76, 0x6f, 0x5e, 0x47, 0x37, 0x33, 0x40, 0x32, 0x2d, 0x3a, 0x49, 0x53, 0x64, 0x75, 0x42, 0x4a, 0x55, 0x5c, 0x5e, 0x5d, 0x5b, 0x5b, 0x5b, 0x59, 0x5a, 0x5c, 0x61, 0x6c, 0x6f, 0x68, 0x55, 0x57, 0x59, 0x5b, 0x5b, 0x5c, 0x5d, 0x5e, 0x64, 0x64, 0x64, 0x69, 0x77, 0x85, 0x89, 0x84, 0x80, 0x7a, 0x70, 0x67, 0x62, 0x61, 0x63, 0x65, 0x52, 0x50, 0x4f, 0x51, 0x52, 0x52, 0x54, 0x56, 0x53, 0x5a, 0x5d, 0x58, 0x53, 0x53, 0x53, 0x51, 0x4c, 0x57, 0x6b, 0x80, 0x8d, 0x88, 0x6f, 0x59, 0x55, 0x56, 0x5a, 0x62, 0x68, 0x66, 0x5c, 0x54, 0x5d, 0x5d, 0x5e, 0x5f, 0x5f, 0x5e, 0x5c, 0x5a, 0x58, 0x55, 0x53, 0x55, 0x5a, 0x5c, 0x5a, 0x57, 0x58, 0x5b, 0x64, 0x6f, 0x70, 0x68, 0x65, 0x69, 0x67, 0x6a, 0x6a, 0x61, 0x54, 0x4b, 0x4c, 0x4f, 0x58, 0x5f, 0x65, 0x66, 0x63, 0x5e, 0x56, 0x50, 0x50, 0x52, 0x54, 0x54, 0x52, 0x51, 0x54, 0x57, 0x57, 0x56, 0x56, 0x56, 0x59, 0x5b, 0x5e, 0x5f, 0x62, 0x61, 0x5d, 0x5b, 0x5e, 0x66, 0x6c, 0x6f, 0x63, 0x64, 0x61, 0x5a, 0x52, 0x4c, 0x47, 0x43, 0x4c, 0x50, 0x52, 0x51, 0x52, 0x5a, 0x64, 0x6b, 0x72, 0x70, 0x6c, 0x67, 0x61, 0x5e, 0x5d, 0x5e, 0x5e, 0x56, 0x53, 0x5a, 0x65, 0x68, 0x5e, 0x53, 0x59, 0x5a, 0x5e, 0x5c, 0x56, 0x5a, 0x61, 0x60, 0x6d, 0x6c, 0x64, 0x58, 0x56, 0x60, 0x67, 0x68, 0x64, 0x62, 0x60, 0x61, 0x63, 0x64, 0x64, 0x63, 0x69, 0x69, 0x6b, 0x69, 0x67, 0x6e, 0x73, 0x6d, 0x70, 0x6e, 0x75, 0x7e, 0x81, 0x83, 0x7a, 0x6b, 0x64, 0x64, 0x6a, 0x75, 0x79, 0x73, 0x6c, 0x6a, 0x69, 0x67, 0x65, 0x62, 0x5f, 0x5c, 0x5b, 0x5a, 0x5e, 0x64, 0x61, 0x5c, 0x5e, 0x5e, 0x5e, 0x63, 0x65, 0x64, 0x60, 0x5c, 0x5a, 0x5b, 0x60, 0x64, 0x61, 0x5e, 0x5d, 0x5e, 0x5e, 0x5f, 0x63, 0x67, 0x5b, 0x75, 0xae, 0xe6, 0xfd, 0xfb, 0xfa, 0xfc, 0xff, 0xfd, 0xfa, 0xfa, 0xfa, 0xfb, 0xfe, 0xff, 0xfb, 0xff, 0xff, 0xfd, 0xfe, 0xfd, 0xed, 0xd9, 0xcd, 0xca, 0xc7, 0xc6, 0xc3, 0xc0, 0xbf, 0xc1, 0xbe, 0xbf, 0xbe, 0xbb, 0xb9, 0xb7, 0xb3, 0xae, 0xac, 0xab, 0xa8, 0xa3, 0x9f, 0x9b, 0x94, 0x8e, 0x8b, 0x84, 0x7d, 0x7b, 0x7d, 0x7f, 0x7c, 0x79, 0x74, 0x72, 0x6e, 0x6a, 0x66, 0x62, 0x5d, 0x59, 0x57, 0x57, 0x56, 0x54, 0x50, 0x4b, 0x47, 0x44, 0x47, 0x46, 0x46, 0x43, 0x3f, 0x41, 0x4b, 0x55, 0x6e, 0x79, 0x85, 0x8b, 0x87, 0x80, 0x7b, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x76, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7a, 0x77, 0x76, 0x71, 0x6f, 0x6c, 0x6a, 0x67, 0x64, 0x61, 0x5e, 0x59, 0x57, 0x54, 0x51, 0x4f, 0x4a, 0x43, 0x3e, 0x3e, 0x3c, 0x3e, 0x42, 0x43, 0x47, 0x59, 0x6c, 0x78, 0x6d, 0x52, 0x44, 0x58, 0x6f, 0x6c, 0x5e, 0x4e, 0x5c, 0x72, 0x88, 0x9c, 0xaa, 0xb2, 0xb7, 0xb7, 0xb9, 0xb6, 0xb3, 0xb7, 0xb1, 0x94, 0x72, 0x68, 0x66, 0x66, 0x66, 0x62, 0x5b, 0x5b, 0x5f, 0x60, 0x5d, 0x5c, 0x5f, 0x63, 0x63, 0x5e, 0x59, 0x56, 0x5c, 0x65, 0x67, 0x5d, 0x52, 0x53, 0x5a, 0x60, 0x5e, 0x58, 0x5b, 0x63, 0x5f, 0x55, 0x53, 0x56, 0x5c, 0x6a, 0x77, 0x74, 0x68, 0x62, 0x65, 0x65, 0x6e, 0x78, 0x7a, 0x6c, 0x59, 0x4b, 0x46, 0x4a, 0x50, 0x59, 0x60, 0x66, 0x6b, 0x71, 0x75, 0x76, 0x6e, 0x62, 0x58, 0x57, 0x5c, 0x60, 0x61, 0x5c, 0x5d, 0x5b, 0x59, 0x5b, 0x5f, 0x5d, 0x57, 0x5e, 0x62, 0x66, 0x67, 0x64, 0x63, 0x65, 0x68, 0x5d, 0x5c, 0x5b, 0x5d, 0x63, 0x68, 0x66, 0x61, 0x5f, 0x5c, 0x5c, 0x5e, 0x60, 0x6b, 0x86, 0xa0, 0xa9, 0xaa, 0xa9, 0xa6, 0xa4, 0x9f, 0x90, 0x81, 0x89, 0x89, 0x8a, 0x8b, 0x8e, 0x8e, 0x88, 0x80, 0x70, 0x66, 0x62, 0x5d, 0x53, 0x4c, 0x4a, 0x45, 0x47, 0x43, 0x3f, 0x3a, 0x36, 0x36, 0x3d, 0x44, 0x43, 0x49, 0x4a, 0x4a, 0x4a, 0x45, 0x45, 0x4d, 0x58, 0x48, 0x3c, 0x3f, 0x49, 0x4d, 0x47, 0x40, 0x3a, 0x3a, 0x3c, 0x3c, 0x43, 0x52, 0x54, 0x46, 0x2c, 0x32, 0x3f, 0x46, 0x47, 0x4e, 0x50, 0x49, 0x4a, 0x40, 0x3b, 0x3c, 0x3e, 0x34, 0x29, 0x23, 0x20, 0x25, 0x47, 0x67, 0x74, 0x6d, 0x5c, 0x40, 0x2e, 0x41, 0x56, 0x60, 0x60, 0x5f, 0x60, 0x62, 0x63, 0x54, 0x54, 0x5a, 0x5a, 0x5b, 0x55, 0x42, 0x46, 0x44, 0x3c, 0x3d, 0x4c, 0x57, 0x58, 0x5a, 0x61, 0x68, 0x76, 0x83, 0x82, 0x7a, 0x7a, 0x80, 0x7a, 0x75, 0x73, 0x72, 0x69, 0x54, 0x41, 0x37, 0x3c, 0x34, 0x33, 0x3a, 0x3d, 0x43, 0x59, 0x72, 0x4a, 0x50, 0x58, 0x5c, 0x5c, 0x5a, 0x57, 0x55, 0x58, 0x57, 0x5b, 0x5e, 0x64, 0x70, 0x75, 0x6c, 0x5a, 0x59, 0x59, 0x5c, 0x5f, 0x60, 0x5e, 0x5b, 0x62, 0x64, 0x66, 0x69, 0x73, 0x7f, 0x82, 0x7e, 0x73, 0x6e, 0x67, 0x63, 0x63, 0x66, 0x67, 0x67, 0x53, 0x4e, 0x4c, 0x50, 0x55, 0x57, 0x58, 0x5a, 0x5d, 0x66, 0x68, 0x5d, 0x52, 0x52, 0x56, 0x59, 0x5a, 0x5f, 0x6b, 0x77, 0x79, 0x6f, 0x60, 0x57, 0x54, 0x56, 0x5d, 0x67, 0x6f, 0x6c, 0x60, 0x54, 0x55, 0x59, 0x5e, 0x5f, 0x5d, 0x59, 0x56, 0x55, 0x57, 0x53, 0x51, 0x52, 0x55, 0x56, 0x56, 0x56, 0x58, 0x5c, 0x65, 0x6c, 0x6a, 0x62, 0x5c, 0x5c, 0x5d, 0x65, 0x6b, 0x69, 0x5e, 0x55, 0x53, 0x54, 0x59, 0x5f, 0x64, 0x65, 0x65, 0x63, 0x5e, 0x58, 0x56, 0x58, 0x5a, 0x59, 0x57, 0x54, 0x54, 0x54, 0x56, 0x57, 0x57, 0x55, 0x55, 0x59, 0x60, 0x66, 0x6a, 0x67, 0x61, 0x5e, 0x63, 0x6a, 0x6c, 0x69, 0x5e, 0x5f, 0x5c, 0x54, 0x4c, 0x49, 0x48, 0x47, 0x46, 0x4c, 0x4f, 0x4e, 0x4f, 0x57, 0x61, 0x67, 0x71, 0x6d, 0x66, 0x5e, 0x57, 0x52, 0x4f, 0x4e, 0x58, 0x51, 0x4b, 0x4b, 0x53, 0x5b, 0x5d, 0x5b, 0x58, 0x59, 0x5d, 0x5b, 0x53, 0x53, 0x57, 0x55, 0x60, 0x5e, 0x58, 0x52, 0x54, 0x5b, 0x60, 0x61, 0x62, 0x63, 0x65, 0x67, 0x6a, 0x6c, 0x6e, 0x6f, 0x71, 0x71, 0x77, 0x74, 0x6d, 0x72, 0x79, 0x73, 0x76, 0x74, 0x76, 0x77, 0x75, 0x78, 0x78, 0x71, 0x6a, 0x63, 0x61, 0x66, 0x6a, 0x69, 0x6a, 0x6d, 0x6b, 0x69, 0x66, 0x63, 0x61, 0x5f, 0x5e, 0x5d, 0x5b, 0x5f, 0x5a, 0x56, 0x5a, 0x5c, 0x5c, 0x60, 0x63, 0x61, 0x5e, 0x5c, 0x5d, 0x60, 0x64, 0x67, 0x6a, 0x67, 0x64, 0x61, 0x5f, 0x5e, 0x62, 0x67, 0x7a, 0xb9, 0xf0, 0xfd, 0xf8, 0xf5, 0xf9, 0xfe, 0xfa, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfb, 0xff, 0xff, 0xfe, 0xfd, 0xff, 0xff, 0xf8, 0xef, 0xe0, 0xd4, 0xc8, 0xc4, 0xc2, 0xc1, 0xc0, 0xc2, 0xbe, 0xbf, 0xbd, 0xba, 0xb8, 0xb8, 0xb5, 0xb0, 0xaf, 0xaf, 0xac, 0xa7, 0xa4, 0xa0, 0x99, 0x91, 0x8d, 0x86, 0x7d, 0x78, 0x78, 0x7a, 0x7b, 0x7b, 0x75, 0x71, 0x6d, 0x6a, 0x69, 0x66, 0x60, 0x5c, 0x59, 0x57, 0x55, 0x54, 0x52, 0x4f, 0x4a, 0x46, 0x46, 0x45, 0x46, 0x45, 0x42, 0x3f, 0x41, 0x44, 0x53, 0x60, 0x73, 0x80, 0x85, 0x83, 0x80, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x75, 0x75, 0x76, 0x77, 0x76, 0x74, 0x71, 0x70, 0x6d, 0x6b, 0x69, 0x66, 0x62, 0x5e, 0x58, 0x55, 0x52, 0x4d, 0x47, 0x43, 0x41, 0x3e, 0x3b, 0x38, 0x3e, 0x40, 0x43, 0x45, 0x47, 0x4d, 0x5c, 0x6a, 0x74, 0x6f, 0x59, 0x47, 0x4e, 0x5f, 0x67, 0x67, 0x52, 0x5b, 0x6c, 0x80, 0x96, 0xa9, 0xb7, 0xbf, 0xb6, 0xb8, 0xb5, 0xb2, 0xb5, 0xb5, 0xa5, 0x92, 0x74, 0x6b, 0x64, 0x63, 0x60, 0x5c, 0x5c, 0x60, 0x61, 0x61, 0x60, 0x5e, 0x5b, 0x58, 0x57, 0x57, 0x5b, 0x5f, 0x65, 0x67, 0x5f, 0x56, 0x56, 0x5c, 0x64, 0x63, 0x5b, 0x5b, 0x62, 0x5c, 0x52, 0x55, 0x59, 0x62, 0x6d, 0x73, 0x6f, 0x62, 0x57, 0x51, 0x5a, 0x64, 0x72, 0x7c, 0x81, 0x88, 0x95, 0xa1, 0x93, 0x82, 0x68, 0x55, 0x4f, 0x57, 0x64, 0x6e, 0x76, 0x76, 0x71, 0x6a, 0x66, 0x65, 0x62, 0x5f, 0x5c, 0x60, 0x60, 0x5d, 0x5f, 0x65, 0x66, 0x61, 0x5f, 0x61, 0x63, 0x62, 0x60, 0x5f, 0x60, 0x62, 0x5e, 0x5d, 0x5c, 0x5e, 0x65, 0x6b, 0x6a, 0x65, 0x62, 0x60, 0x62, 0x6a, 0x77, 0x88, 0x9d, 0xae, 0xa6, 0xac, 0xae, 0xa4, 0x94, 0x88, 0x88, 0x8c, 0x89, 0x89, 0x89, 0x8b, 0x8e, 0x8c, 0x82, 0x77, 0x70, 0x64, 0x5c, 0x54, 0x48, 0x40, 0x3c, 0x37, 0x37, 0x34, 0x30, 0x2c, 0x29, 0x2c, 0x37, 0x42, 0x48, 0x46, 0x47, 0x52, 0x5b, 0x55, 0x52, 0x5a, 0x46, 0x45, 0x46, 0x45, 0x42, 0x3e, 0x3e, 0x41, 0x34, 0x38, 0x3f, 0x44, 0x4a, 0x54, 0x4e, 0x39, 0x30, 0x35, 0x3b, 0x3e, 0x45, 0x54, 0x56, 0x49, 0x3c, 0x40, 0x3f, 0x3c, 0x33, 0x26, 0x1a, 0x1a, 0x23, 0x2a, 0x52, 0x64, 0x71, 0x68, 0x62, 0x44, 0x3f, 0x4e, 0x63, 0x72, 0x72, 0x6b, 0x67, 0x68, 0x55, 0x4b, 0x54, 0x5c, 0x51, 0x4a, 0x45, 0x38, 0x41, 0x39, 0x2e, 0x31, 0x43, 0x50, 0x57, 0x60, 0x5a, 0x61, 0x6d, 0x77, 0x7a, 0x79, 0x7b, 0x7f, 0x74, 0x6d, 0x68, 0x67, 0x60, 0x50, 0x3e, 0x35, 0x31, 0x35, 0x3a, 0x3d, 0x41, 0x50, 0x68, 0x7c, 0x58, 0x57, 0x57, 0x56, 0x56, 0x54, 0x53, 0x53, 0x58, 0x58, 0x5b, 0x5e, 0x63, 0x6f, 0x72, 0x69, 0x66, 0x61, 0x5d, 0x61, 0x68, 0x6d, 0x6c, 0x69, 0x5f, 0x66, 0x6b, 0x69, 0x6a, 0x72, 0x78, 0x7a, 0x79, 0x77, 0x74, 0x75, 0x79, 0x7c, 0x79, 0x74, 0x63, 0x59, 0x52, 0x55, 0x5b, 0x5e, 0x5d, 0x5e, 0x6d, 0x74, 0x71, 0x5e, 0x4e, 0x4f, 0x5a, 0x62, 0x67, 0x6b, 0x74, 0x78, 0x6d, 0x5a, 0x50, 0x52, 0x50, 0x53, 0x5b, 0x68, 0x71, 0x6f, 0x62, 0x56, 0x50, 0x58, 0x60, 0x62, 0x5d, 0x57, 0x55, 0x56, 0x51, 0x4d, 0x49, 0x4a, 0x4f, 0x56, 0x5d, 0x62, 0x61, 0x66, 0x6d, 0x6f, 0x68, 0x5e, 0x55, 0x51, 0x55, 0x60, 0x6b, 0x6e, 0x67, 0x5e, 0x5a, 0x59, 0x59, 0x5e, 0x62, 0x63, 0x65, 0x67, 0x65, 0x60, 0x63, 0x64, 0x64, 0x61, 0x5c, 0x56, 0x52, 0x50, 0x4f, 0x52, 0x52, 0x50, 0x4e, 0x52, 0x5c, 0x64, 0x65, 0x67, 0x6a, 0x6e, 0x72, 0x70, 0x61, 0x52, 0x5f, 0x5f, 0x5a, 0x4f, 0x46, 0x43, 0x45, 0x46, 0x47, 0x4f, 0x54, 0x54, 0x53, 0x58, 0x5d, 0x5f, 0x61, 0x5e, 0x5a, 0x56, 0x52, 0x4f, 0x4d, 0x4c, 0x4f, 0x51, 0x51, 0x50, 0x50, 0x51, 0x51, 0x50, 0x53, 0x52, 0x55, 0x53, 0x4d, 0x50, 0x57, 0x58, 0x60, 0x63, 0x64, 0x5f, 0x58, 0x53, 0x54, 0x56, 0x5c, 0x60, 0x66, 0x6b, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6c, 0x73, 0x70, 0x64, 0x68, 0x6f, 0x6a, 0x6f, 0x74, 0x7d, 0x7d, 0x74, 0x70, 0x6e, 0x69, 0x61, 0x5b, 0x5a, 0x62, 0x66, 0x64, 0x63, 0x66, 0x69, 0x6a, 0x6c, 0x6f, 0x72, 0x74, 0x73, 0x73, 0x62, 0x66, 0x63, 0x60, 0x65, 0x65, 0x62, 0x63, 0x6a, 0x66, 0x61, 0x5e, 0x5f, 0x63, 0x67, 0x69, 0x6c, 0x69, 0x66, 0x64, 0x62, 0x63, 0x68, 0x6e, 0xbb, 0xe8, 0xfe, 0xf7, 0xf9, 0xff, 0xfe, 0xfa, 0xfe, 0xff, 0xff, 0xfb, 0xfb, 0xff, 0xff, 0xfe, 0xff, 0xfc, 0xfb, 0xfd, 0xfe, 0xfd, 0xfd, 0xff, 0xf7, 0xe3, 0xce, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xbf, 0xbf, 0xbd, 0xb8, 0xb6, 0xb8, 0xb6, 0xb1, 0xb3, 0xb3, 0xb0, 0xab, 0xa7, 0xa4, 0x9d, 0x95, 0x8e, 0x87, 0x7d, 0x75, 0x72, 0x74, 0x79, 0x7c, 0x76, 0x70, 0x6b, 0x69, 0x69, 0x67, 0x62, 0x5e, 0x5b, 0x58, 0x54, 0x54, 0x54, 0x53, 0x4f, 0x4b, 0x46, 0x44, 0x43, 0x46, 0x47, 0x45, 0x43, 0x43, 0x3b, 0x46, 0x59, 0x6c, 0x7a, 0x81, 0x83, 0x84, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x76, 0x74, 0x73, 0x71, 0x70, 0x71, 0x71, 0x72, 0x71, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6a, 0x66, 0x62, 0x5d, 0x56, 0x4e, 0x49, 0x41, 0x3c, 0x36, 0x34, 0x37, 0x3c, 0x3f, 0x40, 0x43, 0x47, 0x4a, 0x4a, 0x4b, 0x52, 0x5e, 0x68, 0x74, 0x75, 0x67, 0x55, 0x4f, 0x55, 0x61, 0x6e, 0x6e, 0x66, 0x63, 0x6f, 0x88, 0xa2, 0xb1, 0xb7, 0xbb, 0xb9, 0xb8, 0xb8, 0xba, 0xbd, 0xbb, 0xb8, 0x8a, 0x79, 0x68, 0x62, 0x5e, 0x59, 0x56, 0x58, 0x57, 0x5c, 0x60, 0x5e, 0x59, 0x55, 0x56, 0x58, 0x57, 0x5c, 0x62, 0x62, 0x5e, 0x5c, 0x5e, 0x62, 0x66, 0x67, 0x61, 0x61, 0x67, 0x5e, 0x53, 0x57, 0x63, 0x6c, 0x72, 0x74, 0x74, 0x71, 0x64, 0x55, 0x61, 0x67, 0x6f, 0x74, 0x73, 0x72, 0x77, 0x7e, 0x79, 0x76, 0x71, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6e, 0x73, 0x74, 0x6f, 0x69, 0x66, 0x62, 0x5d, 0x5d, 0x61, 0x60, 0x5a, 0x58, 0x5d, 0x5e, 0x5a, 0x5a, 0x5d, 0x62, 0x64, 0x63, 0x63, 0x63, 0x64, 0x60, 0x5d, 0x58, 0x59, 0x61, 0x69, 0x6b, 0x69, 0x65, 0x64, 0x69, 0x78, 0x8d, 0x9e, 0xa7, 0xaa, 0xab, 0xa5, 0x9f, 0x9b, 0x94, 0x8c, 0x86, 0x85, 0x83, 0x85, 0x86, 0x85, 0x83, 0x81, 0x7d, 0x78, 0x72, 0x63, 0x58, 0x4d, 0x3e, 0x36, 0x32, 0x2d, 0x2f, 0x2d, 0x2c, 0x2a, 0x29, 0x2c, 0x37, 0x41, 0x47, 0x3b, 0x3a, 0x4e, 0x5d, 0x53, 0x4b, 0x53, 0x4d, 0x3f, 0x34, 0x3b, 0x49, 0x4f, 0x49, 0x40, 0x39, 0x3d, 0x45, 0x49, 0x50, 0x5c, 0x57, 0x43, 0x40, 0x36, 0x2e, 0x2f, 0x41, 0x59, 0x53, 0x38, 0x31, 0x4f, 0x57, 0x43, 0x2a, 0x20, 0x1b, 0x1d, 0x2d, 0x32, 0x5b, 0x62, 0x6f, 0x68, 0x6e, 0x51, 0x4b, 0x52, 0x62, 0x71, 0x6e, 0x5e, 0x56, 0x59, 0x4e, 0x47, 0x52, 0x52, 0x32, 0x20, 0x27, 0x2b, 0x2e, 0x2e, 0x2d, 0x36, 0x42, 0x47, 0x4d, 0x58, 0x5f, 0x54, 0x47, 0x48, 0x5b, 0x72, 0x7b, 0x79, 0x77, 0x6d, 0x63, 0x5d, 0x52, 0x41, 0x32, 0x2b, 0x2b, 0x2d, 0x2c, 0x31, 0x45, 0x5f, 0x6b, 0x68, 0x5e, 0x5b, 0x5a, 0x5a, 0x56, 0x50, 0x4e, 0x50, 0x5a, 0x5e, 0x5f, 0x5c, 0x60, 0x6a, 0x70, 0x6f, 0x65, 0x64, 0x61, 0x5e, 0x61, 0x68, 0x6d, 0x6e, 0x78, 0x7d, 0x80, 0x7a, 0x6f, 0x6a, 0x6e, 0x75, 0x79, 0x76, 0x74, 0x75, 0x76, 0x77, 0x76, 0x76, 0x75, 0x65, 0x56, 0x53, 0x57, 0x5d, 0x65, 0x6c, 0x6d, 0x69, 0x62, 0x5e, 0x5e, 0x61, 0x63, 0x62, 0x63, 0x6a, 0x6d, 0x6b, 0x65, 0x56, 0x4c, 0x50, 0x55, 0x60, 0x6c, 0x71, 0x6c, 0x61, 0x58, 0x53, 0x5e, 0x61, 0x67, 0x6e, 0x6e, 0x67, 0x60, 0x5d, 0x60, 0x60, 0x62, 0x63, 0x5e, 0x5a, 0x61, 0x6c, 0x6f, 0x69, 0x62, 0x5c, 0x57, 0x51, 0x4c, 0x49, 0x54, 0x64, 0x73, 0x77, 0x72, 0x6a, 0x5d, 0x51, 0x56, 0x57, 0x5a, 0x5f, 0x63, 0x65, 0x64, 0x62, 0x62, 0x62, 0x61, 0x5f, 0x5b, 0x58, 0x56, 0x56, 0x5b, 0x5f, 0x63, 0x65, 0x69, 0x6d, 0x6d, 0x68, 0x67, 0x6c, 0x6c, 0x65, 0x60, 0x60, 0x61, 0x5f, 0x61, 0x62, 0x63, 0x5e, 0x52, 0x46, 0x44, 0x49, 0x50, 0x4c, 0x48, 0x49, 0x4f, 0x55, 0x5b, 0x5e, 0x5d, 0x55, 0x4d, 0x4c, 0x50, 0x53, 0x50, 0x4c, 0x49, 0x4e, 0x53, 0x52, 0x50, 0x4e, 0x4d, 0x4c, 0x4a, 0x4b, 0x4d, 0x4f, 0x4f, 0x4e, 0x51, 0x55, 0x5b, 0x57, 0x55, 0x56, 0x55, 0x53, 0x55, 0x5a, 0x5b, 0x5f, 0x63, 0x65, 0x66, 0x67, 0x67, 0x64, 0x5f, 0x65, 0x65, 0x60, 0x60, 0x66, 0x68, 0x66, 0x73, 0x75, 0x76, 0x71, 0x68, 0x61, 0x5f, 0x60, 0x5f, 0x61, 0x65, 0x69, 0x6a, 0x69, 0x65, 0x62, 0x69, 0x6c, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x71, 0x74, 0x70, 0x6a, 0x65, 0x60, 0x5d, 0x62, 0x60, 0x5c, 0x5a, 0x5c, 0x62, 0x66, 0x67, 0x67, 0x6d, 0x68, 0x64, 0x63, 0x61, 0x85, 0xc4, 0xf4, 0xf8, 0xfd, 0xfe, 0xfb, 0xfa, 0xfc, 0xff, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xff, 0xf8, 0xe9, 0xd7, 0xca, 0xc4, 0xc6, 0xca, 0xc5, 0xc1, 0xbb, 0xb7, 0xb6, 0xb7, 0xb8, 0xb8, 0xb6, 0xb3, 0xb0, 0xb0, 0xaf, 0xaa, 0xa1, 0x99, 0x92, 0x89, 0x82, 0x7e, 0x78, 0x72, 0x74, 0x7c, 0x77, 0x73, 0x6e, 0x6b, 0x6b, 0x69, 0x65, 0x62, 0x5e, 0x5a, 0x55, 0x53, 0x53, 0x52, 0x50, 0x4e, 0x4b, 0x48, 0x44, 0x41, 0x41, 0x42, 0x42, 0x43, 0x38, 0x3b, 0x43, 0x4e, 0x5d, 0x6e, 0x7d, 0x86, 0x81, 0x84, 0x82, 0x7d, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x74, 0x71, 0x6f, 0x6f, 0x6e, 0x6c, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6b, 0x69, 0x69, 0x63, 0x5c, 0x54, 0x4a, 0x3e, 0x37, 0x35, 0x35, 0x39, 0x3e, 0x41, 0x42, 0x43, 0x46, 0x48, 0x49, 0x47, 0x47, 0x4a, 0x4b, 0x4d, 0x56, 0x60, 0x6e, 0x78, 0x72, 0x65, 0x5f, 0x57, 0x56, 0x63, 0x7b, 0x6e, 0x5d, 0x5e, 0x79, 0x97, 0xad, 0xbc, 0xc1, 0xbf, 0xbd, 0xbd, 0xbc, 0xbc, 0xbe, 0xc0, 0xb0, 0x8e, 0x6d, 0x60, 0x5f, 0x5d, 0x5a, 0x5b, 0x5a, 0x60, 0x62, 0x5d, 0x58, 0x59, 0x5b, 0x5c, 0x5a, 0x58, 0x59, 0x61, 0x68, 0x68, 0x63, 0x5f, 0x63, 0x61, 0x63, 0x66, 0x64, 0x5d, 0x5a, 0x5d, 0x69, 0x73, 0x6f, 0x67, 0x75, 0x86, 0x84, 0x7a, 0x70, 0x74, 0x76, 0x70, 0x63, 0x57, 0x4f, 0x4d, 0x59, 0x61, 0x6b, 0x6c, 0x6c, 0x75, 0x7a, 0x73, 0x70, 0x6c, 0x68, 0x66, 0x65, 0x61, 0x60, 0x61, 0x64, 0x5d, 0x59, 0x59, 0x58, 0x54, 0x54, 0x59, 0x5b, 0x61, 0x65, 0x66, 0x6a, 0x6c, 0x65, 0x5b, 0x61, 0x5b, 0x55, 0x56, 0x5b, 0x60, 0x65, 0x67, 0x5d, 0x62, 0x71, 0x88, 0x9b, 0xa3, 0xa3, 0xa2, 0x9f, 0x9b, 0x95, 0x8f, 0x8c, 0x8a, 0x86, 0x83, 0x85, 0x85, 0x83, 0x82, 0x80, 0x7d, 0x79, 0x75, 0x72, 0x6a, 0x5b, 0x48, 0x37, 0x2b, 0x27, 0x27, 0x27, 0x25, 0x22, 0x21, 0x25, 0x2e, 0x36, 0x3a, 0x42, 0x40, 0x42, 0x4d, 0x55, 0x4e, 0x49, 0x50, 0x4c, 0x3c, 0x39, 0x45, 0x52, 0x59, 0x51, 0x42, 0x32, 0x3b, 0x42, 0x46, 0x4f, 0x57, 0x52, 0x46, 0x38, 0x29, 0x1d, 0x23, 0x38, 0x48, 0x48, 0x40, 0x3d, 0x53, 0x54, 0x40, 0x3c, 0x45, 0x44, 0x3d, 0x3e, 0x44, 0x56, 0x67, 0x6f, 0x6e, 0x5e, 0x48, 0x43, 0x4d, 0x60, 0x6f, 0x6b, 0x58, 0x48, 0x42, 0x46, 0x57, 0x56, 0x43, 0x33, 0x2a, 0x26, 0x26, 0x27, 0x29, 0x2e, 0x36, 0x3f, 0x49, 0x53, 0x5a, 0x5e, 0x63, 0x69, 0x73, 0x81, 0x8a, 0x84, 0x79, 0x75, 0x70, 0x6d, 0x67, 0x53, 0x39, 0x2f, 0x33, 0x38, 0x32, 0x32, 0x3d, 0x4e, 0x5f, 0x6e, 0x79, 0x5d, 0x5c, 0x5f, 0x63, 0x63, 0x5e, 0x5a, 0x59, 0x62, 0x66, 0x65, 0x60, 0x60, 0x67, 0x6b, 0x6a, 0x69, 0x6a, 0x68, 0x63, 0x61, 0x65, 0x6c, 0x70, 0x73, 0x76, 0x76, 0x70, 0x67, 0x65, 0x6b, 0x72, 0x77, 0x74, 0x70, 0x70, 0x70, 0x71, 0x73, 0x75, 0x76, 0x6c, 0x61, 0x5e, 0x60, 0x64, 0x68, 0x6c, 0x69, 0x67, 0x64, 0x64, 0x66, 0x67, 0x66, 0x63, 0x65, 0x6a, 0x69, 0x65, 0x5e, 0x52, 0x4e, 0x56, 0x5c, 0x61, 0x67, 0x6b, 0x6b, 0x66, 0x61, 0x5c, 0x61, 0x63, 0x68, 0x6e, 0x6f, 0x6d, 0x6b, 0x6c, 0x71, 0x75, 0x77, 0x73, 0x6a, 0x64, 0x67, 0x6f, 0x6e, 0x68, 0x5e, 0x52, 0x49, 0x46, 0x48, 0x4c, 0x55, 0x60, 0x6e, 0x76, 0x77, 0x70, 0x65, 0x5b, 0x4b, 0x56, 0x64, 0x6b, 0x69, 0x63, 0x5d, 0x5b, 0x5d, 0x5b, 0x59, 0x57, 0x57, 0x5c, 0x62, 0x67, 0x6d, 0x6c, 0x67, 0x63, 0x63, 0x65, 0x63, 0x5f, 0x5f, 0x5f, 0x5f, 0x5c, 0x55, 0x4f, 0x50, 0x54, 0x57, 0x55, 0x54, 0x53, 0x4b, 0x45, 0x49, 0x53, 0x60, 0x66, 0x68, 0x61, 0x57, 0x54, 0x56, 0x58, 0x58, 0x5a, 0x59, 0x54, 0x4c, 0x48, 0x49, 0x4c, 0x4f, 0x51, 0x52, 0x52, 0x4f, 0x4c, 0x4c, 0x4e, 0x4b, 0x49, 0x48, 0x4a, 0x4d, 0x4e, 0x50, 0x53, 0x56, 0x53, 0x51, 0x52, 0x50, 0x4d, 0x4d, 0x50, 0x55, 0x5c, 0x62, 0x63, 0x64, 0x67, 0x6b, 0x6d, 0x61, 0x61, 0x61, 0x5f, 0x5c, 0x5d, 0x64, 0x6c, 0x71, 0x76, 0x77, 0x70, 0x65, 0x5e, 0x5f, 0x64, 0x67, 0x69, 0x6d, 0x6f, 0x6d, 0x69, 0x64, 0x61, 0x66, 0x69, 0x6a, 0x68, 0x65, 0x64, 0x65, 0x66, 0x62, 0x66, 0x6a, 0x6c, 0x6c, 0x6a, 0x64, 0x5d, 0x5a, 0x59, 0x58, 0x59, 0x5d, 0x62, 0x64, 0x64, 0x68, 0x61, 0x6a, 0x6a, 0x5d, 0x76, 0xbb, 0xf0, 0xf8, 0xfb, 0xfd, 0xfe, 0xfc, 0xfb, 0xfd, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xf7, 0xfc, 0xfc, 0xef, 0xdb, 0xcb, 0xc5, 0xc6, 0xc0, 0xc1, 0xc1, 0xc0, 0xbd, 0xb8, 0xb4, 0xb2, 0xb7, 0xb5, 0xb2, 0xb1, 0xaf, 0xab, 0xa4, 0x9f, 0x96, 0x8d, 0x84, 0x7f, 0x78, 0x71, 0x72, 0x77, 0x77, 0x73, 0x6f, 0x6c, 0x6b, 0x69, 0x65, 0x62, 0x60, 0x5c, 0x58, 0x55, 0x54, 0x53, 0x50, 0x4d, 0x4d, 0x4b, 0x48, 0x46, 0x44, 0x42, 0x40, 0x3f, 0x43, 0x41, 0x3d, 0x3c, 0x42, 0x50, 0x63, 0x71, 0x7b, 0x80, 0x81, 0x7f, 0x7c, 0x7d, 0x7c, 0x7a, 0x76, 0x74, 0x73, 0x74, 0x76, 0x78, 0x78, 0x77, 0x72, 0x73, 0x73, 0x70, 0x6f, 0x70, 0x6f, 0x6c, 0x6f, 0x6d, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69, 0x5b, 0x52, 0x46, 0x3d, 0x38, 0x37, 0x3c, 0x42, 0x40, 0x42, 0x44, 0x45, 0x46, 0x46, 0x46, 0x46, 0x47, 0x47, 0x46, 0x47, 0x49, 0x4d, 0x53, 0x58, 0x64, 0x74, 0x78, 0x72, 0x6d, 0x63, 0x5a, 0x5d, 0x61, 0x71, 0x7c, 0x7f, 0x81, 0x89, 0xa1, 0xbd, 0xc0, 0xc0, 0xc1, 0xc3, 0xc2, 0xc2, 0xc2, 0xc3, 0xb9, 0x9f, 0x7f, 0x6a, 0x63, 0x61, 0x5e, 0x5b, 0x62, 0x67, 0x66, 0x5e, 0x56, 0x55, 0x57, 0x59, 0x55, 0x53, 0x57, 0x60, 0x67, 0x63, 0x5a, 0x52, 0x60, 0x61, 0x63, 0x65, 0x62, 0x5e, 0x5d, 0x5e, 0x54, 0x64, 0x6a, 0x62, 0x5e, 0x61, 0x6d, 0x7c, 0x78, 0x7f, 0x81, 0x7c, 0x77, 0x74, 0x6c, 0x62, 0x4f, 0x50, 0x56, 0x59, 0x58, 0x62, 0x6f, 0x74, 0x70, 0x6b, 0x68, 0x67, 0x67, 0x65, 0x65, 0x67, 0x61, 0x5e, 0x5a, 0x58, 0x55, 0x55, 0x5a, 0x60, 0x62, 0x64, 0x67, 0x6a, 0x6e, 0x6d, 0x67, 0x5f, 0x5b, 0x56, 0x50, 0x4f, 0x53, 0x59, 0x5e, 0x61, 0x5e, 0x6c, 0x81, 0x94, 0xa0, 0xa4, 0xa1, 0x9e, 0x9b, 0x97, 0x90, 0x89, 0x86, 0x85, 0x84, 0x83, 0x83, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x74, 0x6b, 0x5b, 0x47, 0x35, 0x2a, 0x27, 0x28, 0x27, 0x27, 0x26, 0x25, 0x26, 0x2b, 0x35, 0x3c, 0x30, 0x34, 0x3e, 0x4d, 0x54, 0x4e, 0x4a, 0x50, 0x48, 0x39, 0x36, 0x42, 0x4d, 0x52, 0x4a, 0x3b, 0x3d, 0x3f, 0x40, 0x46, 0x55, 0x5f, 0x55, 0x43, 0x38, 0x2b, 0x1d, 0x1f, 0x2d, 0x3a, 0x3d, 0x3a, 0x42, 0x4e, 0x49, 0x3b, 0x42, 0x4f, 0x4d, 0x43, 0x45, 0x49, 0x58, 0x67, 0x6f, 0x6f, 0x62, 0x4e, 0x43, 0x52, 0x62, 0x6a, 0x6b, 0x6b, 0x6d, 0x6f, 0x72, 0x6b, 0x55, 0x42, 0x41, 0x41, 0x3c, 0x38, 0x2f, 0x2e, 0x31, 0x3d, 0x4c, 0x58, 0x5e, 0x61, 0x62, 0x6a, 0x73, 0x77, 0x72, 0x64, 0x4e, 0x3d, 0x42, 0x48, 0x49, 0x3e, 0x2c, 0x27, 0x35, 0x47, 0x3f, 0x40, 0x45, 0x4f, 0x57, 0x5a, 0x5c, 0x5e, 0x72, 0x6b, 0x63, 0x5e, 0x5b, 0x57, 0x54, 0x54, 0x5a, 0x5e, 0x5e, 0x58, 0x56, 0x5b, 0x60, 0x62, 0x6b, 0x71, 0x74, 0x6f, 0x69, 0x69, 0x6d, 0x71, 0x76, 0x75, 0x72, 0x6b, 0x64, 0x63, 0x68, 0x6e, 0x70, 0x6c, 0x69, 0x68, 0x66, 0x66, 0x69, 0x6e, 0x6d, 0x6a, 0x63, 0x5d, 0x5d, 0x61, 0x64, 0x64, 0x5f, 0x60, 0x63, 0x6b, 0x72, 0x74, 0x71, 0x6c, 0x75, 0x75, 0x6d, 0x62, 0x5a, 0x52, 0x52, 0x5b, 0x69, 0x6a, 0x6d, 0x71, 0x73, 0x6f, 0x66, 0x5e, 0x66, 0x66, 0x69, 0x6c, 0x6c, 0x6c, 0x6f, 0x73, 0x6f, 0x76, 0x78, 0x6f, 0x63, 0x5c, 0x5b, 0x5c, 0x60, 0x65, 0x68, 0x64, 0x5a, 0x52, 0x4f, 0x4f, 0x5e, 0x60, 0x66, 0x6e, 0x73, 0x74, 0x73, 0x73, 0x6b, 0x6d, 0x6d, 0x6b, 0x67, 0x66, 0x68, 0x6b, 0x55, 0x56, 0x58, 0x5b, 0x5e, 0x62, 0x68, 0x6b, 0x72, 0x6d, 0x67, 0x63, 0x66, 0x6a, 0x6a, 0x68, 0x63, 0x5f, 0x5e, 0x5f, 0x59, 0x50, 0x50, 0x56, 0x52, 0x4a, 0x47, 0x47, 0x41, 0x3b, 0x42, 0x50, 0x55, 0x61, 0x67, 0x63, 0x60, 0x65, 0x6b, 0x6d, 0x68, 0x66, 0x61, 0x5c, 0x56, 0x52, 0x50, 0x50, 0x4a, 0x48, 0x48, 0x4b, 0x4b, 0x48, 0x48, 0x4b, 0x48, 0x43, 0x41, 0x45, 0x4b, 0x50, 0x54, 0x57, 0x5b, 0x57, 0x54, 0x54, 0x53, 0x52, 0x53, 0x56, 0x62, 0x67, 0x69, 0x64, 0x60, 0x60, 0x63, 0x66, 0x64, 0x61, 0x61, 0x60, 0x5a, 0x57, 0x61, 0x71, 0x69, 0x70, 0x73, 0x6d, 0x62, 0x5c, 0x62, 0x6a, 0x64, 0x69, 0x6f, 0x72, 0x70, 0x6c, 0x68, 0x66, 0x6d, 0x6e, 0x6c, 0x67, 0x60, 0x5c, 0x5e, 0x61, 0x67, 0x67, 0x68, 0x6c, 0x72, 0x75, 0x71, 0x6b, 0x63, 0x5f, 0x5c, 0x5c, 0x5e, 0x61, 0x64, 0x65, 0x60, 0x6b, 0x65, 0x65, 0x8a, 0xbf, 0xe8, 0xfe, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfe, 0xff, 0xfe, 0xf5, 0xe5, 0xd2, 0xc4, 0xc3, 0xc3, 0xc2, 0xbf, 0xbb, 0xb7, 0xb5, 0xb5, 0xb5, 0xb4, 0xb2, 0xb1, 0xaf, 0xac, 0xa8, 0xa4, 0x9b, 0x93, 0x8a, 0x83, 0x7a, 0x71, 0x70, 0x74, 0x76, 0x73, 0x6f, 0x6d, 0x6c, 0x69, 0x65, 0x62, 0x62, 0x5f, 0x5b, 0x58, 0x57, 0x54, 0x50, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x48, 0x45, 0x41, 0x3e, 0x3f, 0x40, 0x3f, 0x3a, 0x37, 0x3a, 0x43, 0x4b, 0x5f, 0x6a, 0x78, 0x7f, 0x81, 0x80, 0x7e, 0x7b, 0x7d, 0x79, 0x76, 0x76, 0x78, 0x79, 0x76, 0x73, 0x76, 0x78, 0x77, 0x73, 0x70, 0x6e, 0x6b, 0x67, 0x6d, 0x6d, 0x6f, 0x6f, 0x6b, 0x64, 0x5c, 0x56, 0x45, 0x41, 0x3d, 0x3c, 0x3c, 0x3e, 0x42, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x47, 0x46, 0x47, 0x49, 0x47, 0x45, 0x49, 0x50, 0x52, 0x4f, 0x5b, 0x6f, 0x7b, 0x7a, 0x77, 0x6e, 0x60, 0x59, 0x4b, 0x5d, 0x70, 0x7b, 0x7e, 0x80, 0x95, 0xb2, 0xbd, 0xc0, 0xc2, 0xc3, 0xc4, 0xc4, 0xc5, 0xc5, 0xc0, 0xb3, 0x99, 0x7d, 0x6d, 0x67, 0x62, 0x5d, 0x5e, 0x61, 0x60, 0x5a, 0x54, 0x54, 0x57, 0x5a, 0x55, 0x51, 0x51, 0x57, 0x5d, 0x5d, 0x59, 0x56, 0x5d, 0x62, 0x65, 0x62, 0x5e, 0x5d, 0x5c, 0x5b, 0x65, 0x6a, 0x6a, 0x66, 0x5a, 0x48, 0x43, 0x4d, 0x5e, 0x72, 0x86, 0x91, 0x9b, 0xa0, 0x94, 0x81, 0x73, 0x57, 0x42, 0x42, 0x4c, 0x5d, 0x6c, 0x70, 0x75, 0x70, 0x6a, 0x67, 0x65, 0x63, 0x63, 0x65, 0x6a, 0x6a, 0x64, 0x5b, 0x54, 0x56, 0x5b, 0x5f, 0x63, 0x61, 0x63, 0x69, 0x6c, 0x68, 0x62, 0x5e, 0x57, 0x55, 0x52, 0x4f, 0x4e, 0x52, 0x58, 0x5c, 0x6b, 0x7e, 0x93, 0x9d, 0xa0, 0xa0, 0x9d, 0x99, 0x94, 0x8e, 0x87, 0x83, 0x82, 0x83, 0x84, 0x85, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x74, 0x6a, 0x59, 0x44, 0x32, 0x28, 0x26, 0x27, 0x22, 0x23, 0x25, 0x26, 0x26, 0x2a, 0x35, 0x3f, 0x3c, 0x3e, 0x45, 0x4e, 0x4e, 0x48, 0x49, 0x51, 0x41, 0x36, 0x36, 0x43, 0x4d, 0x50, 0x47, 0x38, 0x3c, 0x3e, 0x42, 0x4b, 0x5c, 0x65, 0x5b, 0x49, 0x3c, 0x2f, 0x20, 0x1c, 0x22, 0x2b, 0x30, 0x30, 0x41, 0x50, 0x4e, 0x42, 0x44, 0x4f, 0x56, 0x58, 0x49, 0x4e, 0x5f, 0x6f, 0x73, 0x6c, 0x58, 0x40, 0x33, 0x4d, 0x67, 0x6f, 0x6e, 0x6f, 0x6e, 0x6b, 0x6f, 0x5f, 0x48, 0x44, 0x50, 0x52, 0x44, 0x39, 0x35, 0x31, 0x33, 0x40, 0x55, 0x63, 0x65, 0x61, 0x5c, 0x61, 0x67, 0x68, 0x5e, 0x4d, 0x40, 0x3b, 0x34, 0x35, 0x31, 0x28, 0x24, 0x25, 0x25, 0x22, 0x28, 0x2f, 0x3d, 0x4b, 0x51, 0x4f, 0x4a, 0x47, 0x64, 0x5c, 0x54, 0x50, 0x51, 0x54, 0x56, 0x57, 0x59, 0x5a, 0x57, 0x4f, 0x4b, 0x50, 0x58, 0x5d, 0x69, 0x71, 0x77, 0x77, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6c, 0x68, 0x64, 0x64, 0x66, 0x69, 0x68, 0x67, 0x67, 0x69, 0x66, 0x62, 0x63, 0x67, 0x6d, 0x6e, 0x69, 0x60, 0x5d, 0x61, 0x64, 0x62, 0x59, 0x5a, 0x60, 0x6c, 0x76, 0x77, 0x73, 0x6f, 0x65, 0x64, 0x5c, 0x57, 0x5b, 0x5f, 0x64, 0x6d, 0x67, 0x62, 0x5e, 0x5e, 0x63, 0x69, 0x6c, 0x6c, 0x67, 0x67, 0x69, 0x6b, 0x69, 0x66, 0x68, 0x6c, 0x70, 0x75, 0x75, 0x6b, 0x62, 0x5d, 0x5a, 0x55, 0x55, 0x63, 0x73, 0x78, 0x73, 0x6a, 0x62, 0x5e, 0x6c, 0x69, 0x6b, 0x71, 0x74, 0x73, 0x75, 0x7a, 0x85, 0x80, 0x7a, 0x76, 0x70, 0x65, 0x55, 0x48, 0x49, 0x4e, 0x56, 0x5f, 0x67, 0x6d, 0x72, 0x75, 0x6b, 0x68, 0x65, 0x68, 0x6f, 0x74, 0x74, 0x71, 0x65, 0x60, 0x5c, 0x5b, 0x58, 0x54, 0x50, 0x50, 0x52, 0x48, 0x43, 0x45, 0x42, 0x3b, 0x40, 0x4c, 0x5f, 0x61, 0x5d, 0x57, 0x5e, 0x6e, 0x74, 0x6e, 0x6c, 0x68, 0x61, 0x5b, 0x57, 0x55, 0x53, 0x51, 0x58, 0x51, 0x4f, 0x55, 0x57, 0x51, 0x4c, 0x4c, 0x49, 0x44, 0x41, 0x43, 0x48, 0x4d, 0x53, 0x58, 0x58, 0x53, 0x4f, 0x4d, 0x4e, 0x51, 0x56, 0x59, 0x6a, 0x6c, 0x6a, 0x63, 0x5d, 0x5c, 0x5d, 0x5e, 0x5d, 0x66, 0x73, 0x7a, 0x74, 0x68, 0x64, 0x66, 0x69, 0x6e, 0x70, 0x6b, 0x61, 0x5d, 0x61, 0x67, 0x57, 0x5f, 0x68, 0x6e, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6d, 0x6b, 0x64, 0x5d, 0x5a, 0x60, 0x68, 0x70, 0x6d, 0x68, 0x67, 0x6c, 0x73, 0x74, 0x72, 0x64, 0x5f, 0x5a, 0x59, 0x5b, 0x5e, 0x63, 0x68, 0x68, 0x6f, 0x64, 0x7a, 0xc2, 0xf5, 0xfd, 0xff, 0xfe, 0xfd, 0xfb, 0xfc, 0xfd, 0xfe, 0xfe, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xff, 0xfe, 0xfc, 0xff, 0xff, 0xf9, 0xe8, 0xd9, 0xc8, 0xc4, 0xbf, 0xbc, 0xba, 0xb9, 0xb7, 0xb6, 0xb0, 0xb0, 0xb0, 0xb0, 0xae, 0xac, 0xa9, 0xa8, 0xa0, 0x9a, 0x91, 0x89, 0x7f, 0x76, 0x73, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6a, 0x66, 0x64, 0x63, 0x61, 0x5e, 0x5c, 0x59, 0x56, 0x52, 0x4f, 0x4d, 0x4c, 0x4b, 0x4b, 0x4a, 0x47, 0x44, 0x41, 0x3a, 0x3e, 0x42, 0x42, 0x3d, 0x38, 0x36, 0x35, 0x3f, 0x4a, 0x59, 0x66, 0x6e, 0x75, 0x7a, 0x7d, 0x78, 0x77, 0x76, 0x77, 0x79, 0x7a, 0x79, 0x78, 0x6e, 0x71, 0x73, 0x72, 0x72, 0x72, 0x71, 0x6e, 0x6d, 0x6d, 0x6c, 0x68, 0x61, 0x55, 0x48, 0x40, 0x3d, 0x3e, 0x42, 0x47, 0x49, 0x47, 0x46, 0x46, 0x48, 0x47, 0x46, 0x47, 0x49, 0x4a, 0x48, 0x46, 0x48, 0x4b, 0x49, 0x46, 0x4d, 0x57, 0x56, 0x4b, 0x56, 0x68, 0x76, 0x78, 0x77, 0x74, 0x69, 0x5e, 0x4c, 0x4c, 0x4e, 0x59, 0x65, 0x70, 0x89, 0xa7, 0xba, 0xbe, 0xc0, 0xbf, 0xbf, 0xc1, 0xc4, 0xc5, 0xc2, 0xbd, 0xae, 0x95, 0x7c, 0x6a, 0x63, 0x61, 0x5c, 0x5c, 0x5c, 0x59, 0x57, 0x56, 0x58, 0x59, 0x50, 0x50, 0x53, 0x5a, 0x5d, 0x5e, 0x5e, 0x60, 0x62, 0x69, 0x6b, 0x64, 0x5e, 0x5d, 0x5b, 0x58, 0x5d, 0x5a, 0x59, 0x60, 0x63, 0x55, 0x47, 0x47, 0x4c, 0x5e, 0x72, 0x7f, 0x89, 0x8f, 0x8c, 0x83, 0x7a, 0x77, 0x78, 0x75, 0x6a, 0x69, 0x71, 0x75, 0x75, 0x6f, 0x68, 0x65, 0x63, 0x61, 0x62, 0x64, 0x72, 0x72, 0x6b, 0x5f, 0x58, 0x5b, 0x5d, 0x5d, 0x5d, 0x59, 0x5a, 0x62, 0x65, 0x5f, 0x5a, 0x58, 0x5a, 0x5d, 0x5b, 0x54, 0x4f, 0x53, 0x5e, 0x67, 0x81, 0x91, 0x9d, 0x9c, 0x99, 0x99, 0x97, 0x93, 0x90, 0x87, 0x7f, 0x7e, 0x81, 0x82, 0x81, 0x7f, 0x78, 0x77, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x70, 0x67, 0x56, 0x42, 0x30, 0x26, 0x23, 0x24, 0x23, 0x24, 0x24, 0x25, 0x27, 0x2f, 0x3b, 0x45, 0x43, 0x3c, 0x3c, 0x3e, 0x3a, 0x3b, 0x45, 0x4f, 0x48, 0x40, 0x43, 0x4f, 0x54, 0x51, 0x44, 0x35, 0x32, 0x3c, 0x48, 0x52, 0x5b, 0x5e, 0x55, 0x49, 0x41, 0x34, 0x26, 0x21, 0x25, 0x2a, 0x2d, 0x2f, 0x44, 0x53, 0x53, 0x48, 0x46, 0x4f, 0x59, 0x61, 0x57, 0x56, 0x5e, 0x68, 0x6a, 0x64, 0x55, 0x42, 0x43, 0x56, 0x68, 0x6d, 0x6a, 0x68, 0x68, 0x69, 0x68, 0x52, 0x38, 0x34, 0x42, 0x45, 0x3f, 0x3e, 0x39, 0x35, 0x35, 0x41, 0x56, 0x65, 0x67, 0x61, 0x69, 0x6a, 0x6f, 0x73, 0x71, 0x6d, 0x71, 0x79, 0x8f, 0x7a, 0x5c, 0x49, 0x43, 0x3e, 0x2f, 0x1e, 0x1b, 0x24, 0x35, 0x47, 0x54, 0x57, 0x54, 0x50, 0x5f, 0x5f, 0x5f, 0x62, 0x67, 0x6a, 0x68, 0x65, 0x69, 0x68, 0x61, 0x56, 0x50, 0x52, 0x5a, 0x60, 0x65, 0x68, 0x6c, 0x6d, 0x6f, 0x70, 0x6f, 0x6c, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x69, 0x6a, 0x6f, 0x76, 0x73, 0x6a, 0x66, 0x68, 0x6c, 0x70, 0x6f, 0x68, 0x63, 0x62, 0x5f, 0x5a, 0x5b, 0x5a, 0x5e, 0x68, 0x6f, 0x6f, 0x6b, 0x69, 0x5b, 0x59, 0x52, 0x53, 0x5f, 0x67, 0x6a, 0x6e, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x67, 0x63, 0x60, 0x5b, 0x5d, 0x61, 0x65, 0x64, 0x5f, 0x5d, 0x5e, 0x73, 0x75, 0x73, 0x6d, 0x69, 0x68, 0x63, 0x5c, 0x5f, 0x66, 0x6c, 0x6d, 0x6d, 0x6f, 0x70, 0x6e, 0x71, 0x70, 0x73, 0x78, 0x75, 0x6e, 0x6c, 0x70, 0x6f, 0x6d, 0x6e, 0x72, 0x76, 0x74, 0x6b, 0x63, 0x61, 0x65, 0x6b, 0x6f, 0x72, 0x72, 0x73, 0x73, 0x70, 0x6e, 0x6e, 0x72, 0x76, 0x73, 0x6c, 0x65, 0x62, 0x61, 0x5a, 0x55, 0x59, 0x5e, 0x58, 0x4d, 0x4f, 0x47, 0x46, 0x4d, 0x4d, 0x48, 0x49, 0x51, 0x6b, 0x67, 0x5c, 0x54, 0x5d, 0x6f, 0x73, 0x6b, 0x67, 0x6b, 0x6c, 0x65, 0x5a, 0x54, 0x56, 0x5c, 0x63, 0x5b, 0x57, 0x5b, 0x5b, 0x53, 0x48, 0x42, 0x4b, 0x48, 0x44, 0x43, 0x43, 0x45, 0x4b, 0x52, 0x58, 0x56, 0x53, 0x52, 0x55, 0x58, 0x5b, 0x5b, 0x5f, 0x5f, 0x5d, 0x5b, 0x5b, 0x5e, 0x5e, 0x5d, 0x5d, 0x65, 0x6a, 0x68, 0x65, 0x66, 0x68, 0x67, 0x6f, 0x6f, 0x6e, 0x68, 0x61, 0x5c, 0x5a, 0x5a, 0x54, 0x5a, 0x62, 0x67, 0x68, 0x68, 0x69, 0x6b, 0x65, 0x63, 0x60, 0x5c, 0x59, 0x5a, 0x65, 0x70, 0x6f, 0x6d, 0x68, 0x62, 0x60, 0x64, 0x67, 0x68, 0x62, 0x61, 0x62, 0x65, 0x65, 0x64, 0x66, 0x6a, 0x69, 0x6e, 0x99, 0xd2, 0xee, 0xf9, 0xfe, 0xfc, 0xfd, 0xfb, 0xfa, 0xfb, 0xfe, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfb, 0xf8, 0xf7, 0xd3, 0xcc, 0xc4, 0xc0, 0xbe, 0xbc, 0xb6, 0xb1, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xae, 0xac, 0xaa, 0xa3, 0x9e, 0x97, 0x8f, 0x85, 0x7c, 0x78, 0x78, 0x75, 0x73, 0x71, 0x6f, 0x6d, 0x6a, 0x68, 0x66, 0x63, 0x62, 0x60, 0x5e, 0x5c, 0x59, 0x56, 0x54, 0x51, 0x4f, 0x4d, 0x4b, 0x49, 0x48, 0x46, 0x44, 0x42, 0x41, 0x40, 0x3f, 0x3e, 0x3c, 0x3a, 0x38, 0x35, 0x36, 0x3a, 0x3f, 0x47, 0x52, 0x61, 0x6c, 0x78, 0x79, 0x7a, 0x79, 0x76, 0x75, 0x75, 0x76, 0x79, 0x7b, 0x7a, 0x77, 0x74, 0x71, 0x6d, 0x69, 0x65, 0x5f, 0x55, 0x4d, 0x46, 0x42, 0x3f, 0x3d, 0x43, 0x42, 0x42, 0x45, 0x46, 0x46, 0x47, 0x49, 0x47, 0x46, 0x45, 0x46, 0x48, 0x49, 0x47, 0x46, 0x48, 0x4b, 0x4a, 0x48, 0x51, 0x5d, 0x59, 0x4c, 0x4f, 0x5e, 0x6f, 0x76, 0x78, 0x7a, 0x76, 0x6c, 0x5d, 0x57, 0x4f, 0x4d, 0x52, 0x5e, 0x7e, 0xa4, 0xb5, 0xbb, 0xc0, 0xc0, 0xc0, 0xc1, 0xc2, 0xc1, 0xc1, 0xc0, 0xbc, 0xad, 0x8e, 0x6f, 0x62, 0x63, 0x65, 0x63, 0x61, 0x60, 0x5d, 0x59, 0x55, 0x53, 0x47, 0x51, 0x5f, 0x69, 0x68, 0x62, 0x5f, 0x60, 0x68, 0x6e, 0x6f, 0x68, 0x62, 0x60, 0x5c, 0x58, 0x57, 0x5e, 0x60, 0x60, 0x5e, 0x54, 0x4d, 0x4f, 0x49, 0x56, 0x69, 0x76, 0x78, 0x76, 0x79, 0x7e, 0x8f, 0x91, 0x90, 0x84, 0x78, 0x7e, 0x89, 0x8a, 0x6f, 0x6a, 0x65, 0x64, 0x64, 0x65, 0x68, 0x6b, 0x6b, 0x6a, 0x65, 0x5e, 0x5e, 0x63, 0x63, 0x5e, 0x5b, 0x57, 0x59, 0x60, 0x63, 0x5e, 0x58, 0x57, 0x5a, 0x5e, 0x5a, 0x4f, 0x4a, 0x56, 0x6c, 0x7d, 0x92, 0x9b, 0x9e, 0x99, 0x96, 0x97, 0x94, 0x8d, 0x8d, 0x82, 0x7a, 0x7e, 0x84, 0x84, 0x7e, 0x79, 0x76, 0x75, 0x74, 0x74, 0x75, 0x75, 0x73, 0x72, 0x6d, 0x64, 0x54, 0x41, 0x30, 0x26, 0x23, 0x24, 0x27, 0x27, 0x23, 0x1f, 0x26, 0x36, 0x45, 0x4c, 0x3a, 0x32, 0x34, 0x3a, 0x3a, 0x42, 0x4f, 0x54, 0x4f, 0x49, 0x4e, 0x57, 0x56, 0x4c, 0x3c, 0x2b, 0x31, 0x3d, 0x4a, 0x53, 0x58, 0x55, 0x4a, 0x3e, 0x3d, 0x30, 0x26, 0x27, 0x2f, 0x33, 0x34, 0x34, 0x4b, 0x51, 0x4b, 0x43, 0x4c, 0x58, 0x5a, 0x59, 0x55, 0x54, 0x5f, 0x6d, 0x6e, 0x66, 0x53, 0x3f, 0x42, 0x4d, 0x5d, 0x6a, 0x6b, 0x65, 0x64, 0x67, 0x60, 0x4c, 0x34, 0x31, 0x3b, 0x38, 0x2e, 0x2d, 0x3a, 0x38, 0x39, 0x42, 0x55, 0x66, 0x6b, 0x68, 0x5f, 0x62, 0x6a, 0x74, 0x75, 0x6e, 0x6b, 0x6c, 0x6e, 0x61, 0x52, 0x44, 0x37, 0x28, 0x1e, 0x19, 0x24, 0x2b, 0x37, 0x47, 0x56, 0x5c, 0x5a, 0x54, 0x74, 0x73, 0x70, 0x6e, 0x6f, 0x71, 0x6f, 0x6c, 0x6f, 0x6e, 0x69, 0x63, 0x5d, 0x5e, 0x63, 0x68, 0x64, 0x61, 0x5e, 0x5d, 0x62, 0x68, 0x69, 0x67, 0x69, 0x6a, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6c, 0x74, 0x7e, 0x7d, 0x71, 0x69, 0x69, 0x6f, 0x74, 0x77, 0x75, 0x70, 0x68, 0x5f, 0x58, 0x5e, 0x5b, 0x5f, 0x67, 0x6d, 0x6c, 0x6c, 0x6e, 0x6f, 0x6d, 0x66, 0x65, 0x6f, 0x73, 0x6e, 0x6c, 0x71, 0x75, 0x7a, 0x79, 0x74, 0x6c, 0x65, 0x61, 0x60, 0x63, 0x6b, 0x72, 0x74, 0x70, 0x6b, 0x69, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6a, 0x65, 0x5f, 0x69, 0x6b, 0x69, 0x65, 0x65, 0x6b, 0x6f, 0x6e, 0x6b, 0x69, 0x68, 0x69, 0x6a, 0x6b, 0x6e, 0x71, 0x84, 0x7d, 0x71, 0x65, 0x5f, 0x63, 0x6e, 0x78, 0x7c, 0x83, 0x8d, 0x92, 0x8f, 0x85, 0x79, 0x71, 0x7e, 0x7a, 0x79, 0x7b, 0x79, 0x70, 0x64, 0x5d, 0x5a, 0x5c, 0x58, 0x54, 0x5e, 0x6c, 0x69, 0x5a, 0x4b, 0x48, 0x49, 0x4f, 0x51, 0x4e, 0x4c, 0x4d, 0x56, 0x5a, 0x5a, 0x59, 0x60, 0x6d, 0x74, 0x73, 0x69, 0x68, 0x67, 0x64, 0x61, 0x5f, 0x5e, 0x5e, 0x5c, 0x59, 0x55, 0x53, 0x50, 0x4a, 0x42, 0x3c, 0x43, 0x41, 0x41, 0x41, 0x41, 0x43, 0x4a, 0x52, 0x53, 0x54, 0x55, 0x56, 0x59, 0x5a, 0x57, 0x52, 0x5b, 0x5b, 0x5a, 0x58, 0x5a, 0x5b, 0x58, 0x53, 0x5e, 0x61, 0x5b, 0x50, 0x4e, 0x5b, 0x68, 0x6d, 0x6a, 0x66, 0x62, 0x5e, 0x5c, 0x5a, 0x57, 0x54, 0x5c, 0x5e, 0x61, 0x61, 0x60, 0x5e, 0x5e, 0x5e, 0x62, 0x5e, 0x5b, 0x59, 0x57, 0x58, 0x61, 0x6d, 0x71, 0x73, 0x71, 0x6a, 0x64, 0x63, 0x64, 0x65, 0x6a, 0x6c, 0x72, 0x75, 0x6f, 0x66, 0x63, 0x66, 0x85, 0xb2, 0xe4, 0xff, 0xff, 0xfc, 0xf7, 0xf7, 0xfd, 0xfb, 0xfb, 0xfc, 0xfe, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfd, 0xff, 0xff, 0xfe, 0xfd, 0xef, 0xe2, 0xd0, 0xc3, 0xbe, 0xbc, 0xbb, 0xb9, 0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0xb1, 0xae, 0xac, 0xa4, 0xa2, 0x9c, 0x95, 0x8c, 0x84, 0x7f, 0x7e, 0x7a, 0x78, 0x75, 0x72, 0x6e, 0x6b, 0x69, 0x68, 0x64, 0x63, 0x61, 0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x58, 0x55, 0x50, 0x4c, 0x4a, 0x48, 0x46, 0x45, 0x44, 0x42, 0x40, 0x3f, 0x40, 0x40, 0x3c, 0x39, 0x38, 0x35, 0x34, 0x35, 0x36, 0x39, 0x3f, 0x45, 0x44, 0x4a, 0x53, 0x5a, 0x60, 0x66, 0x6e, 0x74, 0x6b, 0x6c, 0x69, 0x63, 0x5e, 0x5a, 0x55, 0x50, 0x4b, 0x48, 0x42, 0x3f, 0x3e, 0x40, 0x41, 0x42, 0x44, 0x43, 0x43, 0x45, 0x46, 0x45, 0x46, 0x49, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x46, 0x48, 0x4a, 0x49, 0x49, 0x54, 0x60, 0x5b, 0x4e, 0x46, 0x52, 0x68, 0x78, 0x7c, 0x80, 0x81, 0x7a, 0x6f, 0x6a, 0x5f, 0x5a, 0x5e, 0x67, 0x7f, 0x9d, 0xae, 0xb9, 0xc2, 0xc4, 0xc3, 0xc3, 0xc0, 0xbc, 0xc2, 0xc1, 0xc2, 0xbc, 0xa1, 0x7d, 0x68, 0x64, 0x66, 0x65, 0x65, 0x64, 0x60, 0x59, 0x55, 0x54, 0x53, 0x5b, 0x65, 0x6a, 0x66, 0x60, 0x60, 0x64, 0x67, 0x6b, 0x6b, 0x68, 0x63, 0x5e, 0x58, 0x54, 0x5e, 0x6c, 0x73, 0x70, 0x6a, 0x5d, 0x51, 0x4e, 0x54, 0x56, 0x5b, 0x5f, 0x5c, 0x5a, 0x65, 0x75, 0x7a, 0x7b, 0x7e, 0x81, 0x85, 0x8b, 0x7f, 0x66, 0x73, 0x6d, 0x68, 0x67, 0x68, 0x68, 0x6a, 0x6e, 0x67, 0x64, 0x60, 0x5e, 0x60, 0x63, 0x60, 0x5c, 0x60, 0x5e, 0x60, 0x65, 0x67, 0x64, 0x5d, 0x59, 0x52, 0x52, 0x4b, 0x40, 0x43, 0x5a, 0x7a, 0x8f, 0x98, 0x9b, 0x9b, 0x98, 0x97, 0x97, 0x90, 0x88, 0x83, 0x7b, 0x79, 0x82, 0x8c, 0x8d, 0x89, 0x86, 0x7d, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x72, 0x71, 0x6a, 0x61, 0x51, 0x3f, 0x2e, 0x26, 0x25, 0x26, 0x1a, 0x20, 0x1f, 0x1a, 0x23, 0x38, 0x44, 0x43, 0x3a, 0x35, 0x41, 0x4b, 0x47, 0x49, 0x4f, 0x49, 0x41, 0x3e, 0x46, 0x50, 0x4d, 0x44, 0x37, 0x29, 0x37, 0x3c, 0x45, 0x4f, 0x56, 0x55, 0x49, 0x3b, 0x2e, 0x24, 0x1e, 0x26, 0x32, 0x37, 0x37, 0x36, 0x49, 0x53, 0x4e, 0x44, 0x4c, 0x59, 0x5c, 0x59, 0x55, 0x52, 0x5c, 0x68, 0x69, 0x5f, 0x4d, 0x3a, 0x36, 0x3f, 0x52, 0x66, 0x6a, 0x61, 0x5a, 0x5a, 0x4f, 0x44, 0x3b, 0x46, 0x5a, 0x5c, 0x4f, 0x48, 0x34, 0x37, 0x3a, 0x42, 0x52, 0x65, 0x6e, 0x6e, 0x67, 0x6b, 0x74, 0x7c, 0x7c, 0x70, 0x62, 0x58, 0x4e, 0x4f, 0x53, 0x52, 0x48, 0x38, 0x31, 0x31, 0x29, 0x2f, 0x39, 0x45, 0x51, 0x57, 0x53, 0x4d, 0x68, 0x67, 0x62, 0x5d, 0x5e, 0x65, 0x6b, 0x6c, 0x6c, 0x6d, 0x70, 0x71, 0x6f, 0x6c, 0x6b, 0x6b, 0x69, 0x65, 0x5f, 0x5c, 0x60, 0x65, 0x66, 0x63, 0x5f, 0x5f, 0x5e, 0x5d, 0x5c, 0x5d, 0x60, 0x63, 0x6d, 0x6b, 0x72, 0x7d, 0x7d, 0x72, 0x6a, 0x6a, 0x74, 0x75, 0x79, 0x7d, 0x7b, 0x74, 0x6c, 0x68, 0x64, 0x61, 0x63, 0x6a, 0x6c, 0x6a, 0x6b, 0x70, 0x71, 0x75, 0x73, 0x74, 0x7d, 0x7f, 0x79, 0x75, 0x6b, 0x67, 0x61, 0x5d, 0x60, 0x6a, 0x77, 0x80, 0x77, 0x78, 0x7d, 0x85, 0x88, 0x85, 0x7f, 0x7b, 0x6f, 0x70, 0x72, 0x73, 0x70, 0x68, 0x63, 0x61, 0x67, 0x6e, 0x72, 0x71, 0x70, 0x71, 0x6e, 0x68, 0x67, 0x63, 0x5f, 0x60, 0x68, 0x71, 0x75, 0x74, 0x67, 0x68, 0x68, 0x65, 0x62, 0x65, 0x6e, 0x75, 0x74, 0x7e, 0x8d, 0x97, 0x98, 0x91, 0x86, 0x7f, 0x80, 0x7b, 0x78, 0x77, 0x75, 0x6e, 0x67, 0x65, 0x58, 0x58, 0x55, 0x53, 0x5b, 0x64, 0x62, 0x58, 0x49, 0x47, 0x46, 0x48, 0x4b, 0x4c, 0x48, 0x44, 0x48, 0x4f, 0x56, 0x59, 0x5d, 0x62, 0x66, 0x68, 0x61, 0x55, 0x49, 0x4a, 0x54, 0x5e, 0x5f, 0x5b, 0x65, 0x68, 0x63, 0x55, 0x4b, 0x49, 0x4b, 0x4a, 0x3e, 0x3c, 0x3c, 0x3f, 0x42, 0x45, 0x4b, 0x51, 0x5e, 0x60, 0x61, 0x62, 0x65, 0x67, 0x64, 0x5e, 0x5d, 0x60, 0x61, 0x60, 0x5f, 0x5c, 0x56, 0x50, 0x58, 0x60, 0x67, 0x66, 0x61, 0x5f, 0x61, 0x65, 0x69, 0x63, 0x5c, 0x58, 0x58, 0x58, 0x58, 0x57, 0x5e, 0x5d, 0x5c, 0x5a, 0x59, 0x58, 0x58, 0x58, 0x5e, 0x5a, 0x58, 0x59, 0x58, 0x57, 0x5d, 0x66, 0x72, 0x75, 0x73, 0x6e, 0x69, 0x68, 0x6a, 0x6b, 0x6d, 0x6e, 0x72, 0x75, 0x74, 0x75, 0x83, 0x92, 0xd1, 0xfd, 0xff, 0xed, 0xf8, 0xff, 0xfb, 0xff, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xff, 0xfb, 0xf9, 0xfb, 0xff, 0xff, 0xfd, 0xf8, 0xff, 0xf7, 0xe5, 0xd4, 0xc8, 0xc2, 0xc1, 0xc2, 0xba, 0xb6, 0xb2, 0xb0, 0xb1, 0xb1, 0xaf, 0xac, 0xa8, 0xa7, 0xa3, 0x9c, 0x93, 0x8c, 0x87, 0x84, 0x83, 0x80, 0x7b, 0x75, 0x6f, 0x6b, 0x69, 0x69, 0x65, 0x64, 0x62, 0x5f, 0x5d, 0x5b, 0x5a, 0x5a, 0x5b, 0x58, 0x54, 0x50, 0x4d, 0x4b, 0x48, 0x47, 0x43, 0x43, 0x43, 0x43, 0x42, 0x40, 0x3c, 0x39, 0x3b, 0x39, 0x39, 0x3b, 0x3b, 0x36, 0x32, 0x31, 0x3a, 0x3c, 0x3d, 0x3c, 0x39, 0x36, 0x36, 0x37, 0x39, 0x3c, 0x3e, 0x3e, 0x40, 0x43, 0x44, 0x42, 0x3c, 0x3d, 0x3f, 0x42, 0x45, 0x46, 0x45, 0x44, 0x43, 0x43, 0x46, 0x4a, 0x4b, 0x48, 0x47, 0x47, 0x4c, 0x4c, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x4a, 0x49, 0x49, 0x49, 0x4c, 0x57, 0x61, 0x5c, 0x51, 0x41, 0x48, 0x61, 0x77, 0x7a, 0x7c, 0x81, 0x7e, 0x7c, 0x77, 0x6c, 0x69, 0x72, 0x7a, 0x85, 0x93, 0xa9, 0xb5, 0xbe, 0xbf, 0xbe, 0xc0, 0xc0, 0xbc, 0xc1, 0xc0, 0xc2, 0xc1, 0xb2, 0x96, 0x79, 0x69, 0x60, 0x64, 0x68, 0x68, 0x5f, 0x58, 0x59, 0x5f, 0x69, 0x68, 0x66, 0x62, 0x5d, 0x5c, 0x62, 0x69, 0x68, 0x67, 0x67, 0x67, 0x63, 0x5a, 0x51, 0x4c, 0x47, 0x53, 0x5f, 0x6a, 0x75, 0x75, 0x71, 0x72, 0x74, 0x67, 0x54, 0x44, 0x3d, 0x43, 0x52, 0x60, 0x61, 0x68, 0x71, 0x70, 0x68, 0x6b, 0x73, 0x72, 0x7a, 0x74, 0x6f, 0x6d, 0x6b, 0x6a, 0x6b, 0x6d, 0x6e, 0x69, 0x65, 0x64, 0x62, 0x5f, 0x5d, 0x5c, 0x60, 0x62, 0x64, 0x65, 0x67, 0x65, 0x5d, 0x55, 0x4f, 0x4e, 0x48, 0x44, 0x51, 0x6e, 0x8a, 0x99, 0x9c, 0x99, 0x96, 0x95, 0x94, 0x91, 0x89, 0x83, 0x7a, 0x77, 0x7a, 0x85, 0x8b, 0x8c, 0x8c, 0x8f, 0x86, 0x82, 0x7b, 0x75, 0x72, 0x70, 0x6f, 0x6e, 0x68, 0x5e, 0x4c, 0x38, 0x29, 0x23, 0x25, 0x29, 0x46, 0x5c, 0x67, 0x61, 0x61, 0x6a, 0x63, 0x51, 0x39, 0x37, 0x47, 0x50, 0x44, 0x41, 0x43, 0x39, 0x36, 0x34, 0x3e, 0x49, 0x48, 0x44, 0x3d, 0x34, 0x3b, 0x3d, 0x40, 0x44, 0x47, 0x47, 0x41, 0x3b, 0x28, 0x1f, 0x1d, 0x27, 0x32, 0x36, 0x36, 0x37, 0x46, 0x55, 0x51, 0x42, 0x45, 0x54, 0x5a, 0x58, 0x5b, 0x50, 0x4e, 0x54, 0x56, 0x55, 0x50, 0x47, 0x48, 0x4f, 0x5a, 0x61, 0x62, 0x5d, 0x59, 0x58, 0x5d, 0x4f, 0x3a, 0x32, 0x37, 0x36, 0x2d, 0x29, 0x30, 0x35, 0x3a, 0x42, 0x52, 0x64, 0x6d, 0x6d, 0x6c, 0x71, 0x77, 0x7b, 0x7a, 0x72, 0x63, 0x56, 0x5c, 0x55, 0x4a, 0x3d, 0x35, 0x32, 0x30, 0x2e, 0x30, 0x39, 0x44, 0x4c, 0x54, 0x5b, 0x5d, 0x5b, 0x62, 0x65, 0x64, 0x61, 0x60, 0x64, 0x66, 0x65, 0x71, 0x75, 0x7b, 0x80, 0x7e, 0x76, 0x6e, 0x69, 0x6f, 0x6d, 0x69, 0x66, 0x67, 0x69, 0x66, 0x61, 0x5f, 0x5e, 0x5d, 0x5c, 0x5e, 0x65, 0x6d, 0x74, 0x6f, 0x6b, 0x70, 0x7a, 0x7c, 0x73, 0x6c, 0x6d, 0x69, 0x65, 0x67, 0x6e, 0x70, 0x6d, 0x6b, 0x6d, 0x6e, 0x69, 0x69, 0x6a, 0x67, 0x60, 0x60, 0x65, 0x6f, 0x76, 0x75, 0x72, 0x75, 0x72, 0x6a, 0x66, 0x60, 0x60, 0x61, 0x63, 0x67, 0x6c, 0x70, 0x72, 0x75, 0x73, 0x74, 0x79, 0x7b, 0x77, 0x70, 0x6c, 0x69, 0x6b, 0x71, 0x74, 0x6c, 0x5f, 0x59, 0x5a, 0x64, 0x70, 0x7b, 0x7c, 0x7a, 0x79, 0x73, 0x6b, 0x68, 0x69, 0x6a, 0x70, 0x7a, 0x7f, 0x75, 0x66, 0x5d, 0x60, 0x67, 0x6f, 0x75, 0x76, 0x73, 0x70, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x74, 0x6e, 0x6d, 0x6b, 0x69, 0x69, 0x6c, 0x6d, 0x68, 0x62, 0x5e, 0x5b, 0x58, 0x52, 0x4e, 0x45, 0x45, 0x43, 0x42, 0x46, 0x4c, 0x4a, 0x44, 0x43, 0x46, 0x4c, 0x54, 0x5b, 0x5e, 0x5e, 0x5e, 0x59, 0x4e, 0x40, 0x3c, 0x45, 0x55, 0x66, 0x6f, 0x75, 0x7b, 0x73, 0x59, 0x45, 0x44, 0x4b, 0x4f, 0x45, 0x40, 0x3e, 0x40, 0x44, 0x45, 0x46, 0x48, 0x47, 0x47, 0x45, 0x44, 0x49, 0x4f, 0x50, 0x4d, 0x55, 0x5d, 0x64, 0x68, 0x68, 0x67, 0x64, 0x61, 0x5e, 0x5f, 0x62, 0x60, 0x56, 0x4e, 0x56, 0x63, 0x76, 0x6e, 0x64, 0x5c, 0x58, 0x58, 0x58, 0x59, 0x58, 0x56, 0x54, 0x53, 0x55, 0x58, 0x5a, 0x5b, 0x52, 0x4f, 0x51, 0x57, 0x5a, 0x59, 0x5e, 0x66, 0x6b, 0x6b, 0x67, 0x62, 0x60, 0x64, 0x68, 0x6a, 0x70, 0x6f, 0x72, 0x7b, 0x88, 0xa3, 0xcc, 0xee, 0xfb, 0xf7, 0xfc, 0xff, 0xfd, 0xfa, 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd, 0xff, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xf8, 0xfc, 0xff, 0xff, 0xfa, 0xf8, 0xfa, 0xfe, 0xfe, 0xfe, 0xfa, 0xef, 0xdf, 0xce, 0xc2, 0xbd, 0xc1, 0xba, 0xb2, 0xae, 0xae, 0xaf, 0xae, 0xac, 0xad, 0xac, 0xa9, 0xa2, 0x9a, 0x93, 0x8e, 0x8a, 0x89, 0x86, 0x7f, 0x78, 0x70, 0x6c, 0x69, 0x69, 0x67, 0x66, 0x63, 0x5f, 0x5c, 0x5b, 0x5a, 0x5b, 0x5a, 0x58, 0x55, 0x53, 0x51, 0x4e, 0x4c, 0x4a, 0x47, 0x46, 0x44, 0x40, 0x3d, 0x3d, 0x3f, 0x41, 0x40, 0x39, 0x34, 0x36, 0x38, 0x38, 0x38, 0x3b, 0x37, 0x38, 0x39, 0x3b, 0x3d, 0x3d, 0x3d, 0x3d, 0x3b, 0x3d, 0x3e, 0x3d, 0x3e, 0x41, 0x42, 0x41, 0x43, 0x41, 0x40, 0x40, 0x42, 0x44, 0x46, 0x46, 0x49, 0x47, 0x46, 0x47, 0x48, 0x47, 0x49, 0x4c, 0x4b, 0x4c, 0x4d, 0x4c, 0x4a, 0x4a, 0x4c, 0x4e, 0x4c, 0x4a, 0x4a, 0x4f, 0x5a, 0x61, 0x5d, 0x54, 0x41, 0x44, 0x5b, 0x71, 0x72, 0x73, 0x7b, 0x7c, 0x82, 0x83, 0x7c, 0x75, 0x77, 0x7d, 0x85, 0x90, 0xa7, 0xb1, 0xb6, 0xb4, 0xb4, 0xba, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xbd, 0xab, 0x8b, 0x6e, 0x62, 0x69, 0x70, 0x6d, 0x60, 0x56, 0x5d, 0x69, 0x70, 0x6c, 0x68, 0x64, 0x61, 0x5f, 0x61, 0x66, 0x6e, 0x69, 0x68, 0x6a, 0x66, 0x59, 0x4d, 0x48, 0x4a, 0x4f, 0x51, 0x56, 0x5e, 0x64, 0x70, 0x82, 0x82, 0x80, 0x7b, 0x76, 0x75, 0x76, 0x70, 0x66, 0x54, 0x59, 0x6a, 0x76, 0x74, 0x73, 0x77, 0x79, 0x78, 0x73, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x72, 0x74, 0x6e, 0x6a, 0x6a, 0x66, 0x60, 0x60, 0x64, 0x5c, 0x60, 0x62, 0x61, 0x62, 0x61, 0x58, 0x4c, 0x56, 0x56, 0x54, 0x58, 0x6c, 0x88, 0x9b, 0xa0, 0xa1, 0x9a, 0x92, 0x90, 0x8d, 0x88, 0x82, 0x80, 0x7a, 0x79, 0x7d, 0x82, 0x81, 0x7c, 0x7e, 0x85, 0x88, 0x81, 0x77, 0x6e, 0x69, 0x68, 0x68, 0x68, 0x66, 0x5a, 0x47, 0x32, 0x24, 0x20, 0x25, 0x2a, 0x64, 0x87, 0x9d, 0x92, 0x84, 0x79, 0x5c, 0x38, 0x38, 0x37, 0x48, 0x4f, 0x42, 0x44, 0x4e, 0x49, 0x3f, 0x3d, 0x45, 0x4d, 0x4c, 0x48, 0x45, 0x3e, 0x3c, 0x40, 0x40, 0x39, 0x2f, 0x2b, 0x2e, 0x32, 0x2d, 0x26, 0x24, 0x2d, 0x35, 0x36, 0x37, 0x39, 0x4b, 0x52, 0x45, 0x35, 0x40, 0x55, 0x54, 0x48, 0x3c, 0x3d, 0x4d, 0x63, 0x6a, 0x63, 0x52, 0x41, 0x40, 0x53, 0x67, 0x6c, 0x68, 0x5d, 0x4d, 0x3f, 0x2f, 0x32, 0x30, 0x2f, 0x36, 0x39, 0x39, 0x3c, 0x32, 0x38, 0x3d, 0x45, 0x55, 0x66, 0x6d, 0x6a, 0x6b, 0x73, 0x79, 0x7a, 0x77, 0x70, 0x60, 0x50, 0x47, 0x4b, 0x46, 0x39, 0x34, 0x3a, 0x3a, 0x34, 0x34, 0x40, 0x4a, 0x4f, 0x54, 0x5d, 0x66, 0x6a, 0x6b, 0x66, 0x63, 0x68, 0x6c, 0x6c, 0x6c, 0x6d, 0x71, 0x80, 0x83, 0x81, 0x7f, 0x72, 0x66, 0x69, 0x73, 0x6e, 0x6a, 0x6a, 0x6c, 0x6c, 0x68, 0x64, 0x60, 0x5f, 0x5e, 0x5e, 0x62, 0x6b, 0x78, 0x81, 0x84, 0x7e, 0x79, 0x78, 0x78, 0x76, 0x73, 0x70, 0x6a, 0x60, 0x5b, 0x60, 0x67, 0x6c, 0x71, 0x77, 0x6c, 0x6f, 0x6f, 0x66, 0x5a, 0x55, 0x59, 0x5f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x69, 0x65, 0x61, 0x63, 0x62, 0x61, 0x64, 0x68, 0x6b, 0x69, 0x67, 0x6e, 0x70, 0x73, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x70, 0x70, 0x6c, 0x66, 0x61, 0x5f, 0x60, 0x67, 0x6f, 0x78, 0x79, 0x73, 0x6e, 0x6e, 0x70, 0x6c, 0x65, 0x5f, 0x65, 0x75, 0x82, 0x82, 0x7b, 0x7d, 0x81, 0x83, 0x81, 0x84, 0x89, 0x88, 0x83, 0x82, 0x79, 0x70, 0x6f, 0x71, 0x74, 0x78, 0x7a, 0x76, 0x74, 0x72, 0x6e, 0x6b, 0x6b, 0x6d, 0x6f, 0x7b, 0x75, 0x6b, 0x62, 0x5c, 0x5a, 0x5a, 0x5b, 0x54, 0x48, 0x3f, 0x3f, 0x46, 0x4b, 0x4e, 0x4f, 0x47, 0x43, 0x41, 0x45, 0x4f, 0x58, 0x5c, 0x5c, 0x56, 0x53, 0x49, 0x43, 0x4d, 0x63, 0x71, 0x73, 0x83, 0x8c, 0x86, 0x65, 0x41, 0x39, 0x4e, 0x65, 0x57, 0x47, 0x3d, 0x40, 0x40, 0x39, 0x3a, 0x42, 0x44, 0x47, 0x4b, 0x4c, 0x4c, 0x4b, 0x4c, 0x4d, 0x56, 0x5c, 0x62, 0x66, 0x67, 0x64, 0x5e, 0x58, 0x53, 0x5c, 0x61, 0x5c, 0x53, 0x54, 0x64, 0x74, 0x74, 0x77, 0x62, 0x54, 0x54, 0x55, 0x57, 0x4e, 0x4f, 0x50, 0x53, 0x57, 0x60, 0x67, 0x64, 0x5d, 0x5a, 0x5c, 0x5c, 0x59, 0x5a, 0x5e, 0x66, 0x6b, 0x75, 0x6c, 0x68, 0x69, 0x66, 0x61, 0x68, 0x76, 0x75, 0x6e, 0x70, 0x8c, 0xc1, 0xf1, 0xff, 0xfa, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfc, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xfd, 0xfe, 0xfd, 0xfb, 0xfa, 0xf2, 0xdb, 0xc4, 0xc4, 0xc1, 0xbf, 0xbb, 0xb2, 0xaa, 0xaa, 0xaf, 0xae, 0xab, 0xa9, 0xa7, 0xa6, 0xa1, 0x98, 0x92, 0x8b, 0x87, 0x82, 0x7e, 0x76, 0x6d, 0x69, 0x6b, 0x68, 0x66, 0x65, 0x63, 0x62, 0x60, 0x5d, 0x5b, 0x5a, 0x59, 0x58, 0x56, 0x54, 0x51, 0x4f, 0x4d, 0x4a, 0x48, 0x46, 0x45, 0x44, 0x43, 0x41, 0x3f, 0x3f, 0x3b, 0x3a, 0x3b, 0x3b, 0x39, 0x38, 0x39, 0x3d, 0x3c, 0x3b, 0x3b, 0x3c, 0x3d, 0x3f, 0x40, 0x41, 0x41, 0x40, 0x40, 0x40, 0x41, 0x41, 0x42, 0x44, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x47, 0x48, 0x49, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x4b, 0x4c, 0x4c, 0x4e, 0x4c, 0x4d, 0x52, 0x59, 0x5e, 0x5e, 0x5c, 0x47, 0x33, 0x4d, 0x6e, 0x77, 0x81, 0x7f, 0x73, 0x7b, 0x84, 0x8c, 0x8d, 0x8b, 0x8a, 0x8a, 0x8a, 0x9f, 0xb2, 0xc0, 0xbf, 0xbb, 0xbc, 0xbb, 0xb5, 0xbf, 0xc0, 0xc1, 0xc4, 0xc6, 0xb8, 0x94, 0x73, 0x7a, 0x7a, 0x73, 0x64, 0x5b, 0x5b, 0x5f, 0x60, 0x72, 0x74, 0x6b, 0x60, 0x5d, 0x5b, 0x5c, 0x63, 0x6b, 0x6e, 0x6c, 0x6b, 0x66, 0x57, 0x4a, 0x49, 0x4f, 0x5a, 0x5b, 0x52, 0x49, 0x43, 0x47, 0x54, 0x72, 0x76, 0x7b, 0x7f, 0x85, 0x8b, 0x8c, 0x89, 0x76, 0x7a, 0x7c, 0x7a, 0x78, 0x77, 0x70, 0x69, 0x6f, 0x77, 0x7b, 0x76, 0x70, 0x70, 0x72, 0x73, 0x71, 0x6e, 0x69, 0x65, 0x5d, 0x56, 0x54, 0x56, 0x5f, 0x5d, 0x59, 0x58, 0x5c, 0x5e, 0x5a, 0x54, 0x56, 0x53, 0x59, 0x6f, 0x89, 0x9b, 0xa1, 0xa2, 0x9c, 0x9c, 0x98, 0x8e, 0x87, 0x84, 0x80, 0x7b, 0x74, 0x7e, 0x89, 0x8d, 0x8a, 0x82, 0x77, 0x6e, 0x77, 0x6f, 0x69, 0x67, 0x68, 0x69, 0x6a, 0x6c, 0x62, 0x54, 0x41, 0x30, 0x24, 0x25, 0x31, 0x3f, 0x72, 0x93, 0x9f, 0x96, 0x88, 0x68, 0x4b, 0x46, 0x3d, 0x39, 0x49, 0x47, 0x44, 0x4b, 0x47, 0x4a, 0x40, 0x45, 0x4e, 0x56, 0x53, 0x47, 0x3a, 0x33, 0x36, 0x3a, 0x39, 0x30, 0x2a, 0x2c, 0x30, 0x32, 0x31, 0x22, 0x23, 0x2b, 0x2d, 0x34, 0x3e, 0x3c, 0x44, 0x4d, 0x3a, 0x2f, 0x3d, 0x50, 0x57, 0x49, 0x43, 0x46, 0x51, 0x5f, 0x69, 0x6e, 0x65, 0x52, 0x4a, 0x5a, 0x6d, 0x6e, 0x62, 0x5c, 0x57, 0x4c, 0x41, 0x39, 0x3d, 0x56, 0x6f, 0x6e, 0x53, 0x39, 0x33, 0x3d, 0x3e, 0x39, 0x3a, 0x41, 0x4e, 0x5f, 0x68, 0x72, 0x7c, 0x7e, 0x78, 0x6a, 0x57, 0x47, 0x42, 0x47, 0x49, 0x42, 0x39, 0x34, 0x36, 0x3a, 0x41, 0x50, 0x59, 0x56, 0x5a, 0x65, 0x69, 0x64, 0x6b, 0x67, 0x64, 0x66, 0x67, 0x64, 0x63, 0x64, 0x6a, 0x76, 0x79, 0x79, 0x7a, 0x6f, 0x62, 0x62, 0x5d, 0x60, 0x66, 0x6b, 0x6c, 0x69, 0x62, 0x5d, 0x5f, 0x5e, 0x5e, 0x5f, 0x64, 0x6e, 0x79, 0x80, 0x83, 0x7e, 0x78, 0x75, 0x73, 0x72, 0x6f, 0x6e, 0x6f, 0x6d, 0x6a, 0x67, 0x64, 0x66, 0x71, 0x7d, 0x80, 0x7b, 0x76, 0x72, 0x6f, 0x6c, 0x67, 0x63, 0x65, 0x64, 0x65, 0x66, 0x68, 0x67, 0x64, 0x61, 0x63, 0x63, 0x64, 0x67, 0x69, 0x66, 0x60, 0x5b, 0x60, 0x67, 0x70, 0x74, 0x74, 0x76, 0x7b, 0x7f, 0x77, 0x79, 0x7b, 0x79, 0x76, 0x73, 0x73, 0x74, 0x79, 0x7d, 0x7f, 0x7d, 0x76, 0x6e, 0x68, 0x66, 0x63, 0x63, 0x62, 0x62, 0x67, 0x6d, 0x6f, 0x6d, 0x73, 0x77, 0x75, 0x70, 0x72, 0x7c, 0x86, 0x89, 0x8c, 0x88, 0x87, 0x8b, 0x8e, 0x89, 0x81, 0x7b, 0x79, 0x7d, 0x82, 0x83, 0x80, 0x79, 0x72, 0x6e, 0x64, 0x67, 0x6b, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x57, 0x50, 0x4a, 0x4b, 0x4f, 0x50, 0x4f, 0x4e, 0x48, 0x46, 0x45, 0x4b, 0x55, 0x5e, 0x62, 0x62, 0x68, 0x6a, 0x66, 0x5c, 0x5b, 0x65, 0x73, 0x7a, 0x8b, 0x91, 0x89, 0x6a, 0x4b, 0x46, 0x5c, 0x74, 0x6f, 0x59, 0x46, 0x40, 0x40, 0x3f, 0x41, 0x46, 0x4a, 0x4b, 0x4b, 0x49, 0x46, 0x46, 0x49, 0x4d, 0x49, 0x4d, 0x54, 0x5c, 0x5f, 0x5b, 0x54, 0x4f, 0x59, 0x63, 0x68, 0x60, 0x56, 0x55, 0x5c, 0x61, 0x70, 0x76, 0x64, 0x55, 0x53, 0x54, 0x57, 0x50, 0x50, 0x56, 0x5e, 0x63, 0x67, 0x66, 0x5e, 0x55, 0x55, 0x58, 0x5c, 0x5f, 0x61, 0x64, 0x66, 0x67, 0x5b, 0x64, 0x69, 0x66, 0x69, 0x74, 0x7c, 0x7c, 0x80, 0x92, 0xb8, 0xe2, 0xfa, 0xfc, 0xfa, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xf9, 0xf8, 0xf7, 0xf6, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe, 0xfb, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xf4, 0xe7, 0xd4, 0xc8, 0xbd, 0xba, 0xb9, 0xb4, 0xad, 0xa9, 0xad, 0xac, 0xac, 0xac, 0xab, 0xa5, 0x9c, 0x95, 0x93, 0x8e, 0x89, 0x85, 0x7e, 0x73, 0x6c, 0x6b, 0x69, 0x67, 0x64, 0x62, 0x61, 0x60, 0x5d, 0x5c, 0x5a, 0x5a, 0x5a, 0x58, 0x57, 0x54, 0x52, 0x51, 0x4c, 0x4a, 0x48, 0x47, 0x46, 0x44, 0x42, 0x40, 0x43, 0x3f, 0x3e, 0x3f, 0x3f, 0x3d, 0x3c, 0x3d, 0x3e, 0x3d, 0x3d, 0x3d, 0x3e, 0x3f, 0x41, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x43, 0x43, 0x44, 0x45, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x48, 0x49, 0x4a, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d, 0x4d, 0x4c, 0x4b, 0x4b, 0x4b, 0x4c, 0x4d, 0x4b, 0x4a, 0x4c, 0x53, 0x5c, 0x63, 0x64, 0x63, 0x51, 0x37, 0x46, 0x65, 0x79, 0x87, 0x89, 0x88, 0x81, 0x86, 0x88, 0x87, 0x87, 0x89, 0x8a, 0x89, 0x99, 0xab, 0xbd, 0xc3, 0xc4, 0xc6, 0xc6, 0xc3, 0xbe, 0xbe, 0xbd, 0xbf, 0xc4, 0xc3, 0xb3, 0xa1, 0x83, 0x75, 0x6c, 0x6e, 0x6d, 0x64, 0x5e, 0x5f, 0x6e, 0x70, 0x68, 0x5c, 0x56, 0x52, 0x52, 0x59, 0x69, 0x6d, 0x6d, 0x6c, 0x69, 0x5b, 0x4e, 0x4d, 0x4a, 0x56, 0x5a, 0x57, 0x51, 0x49, 0x47, 0x4e, 0x4e, 0x60, 0x76, 0x85, 0x8b, 0x8a, 0x83, 0x7c, 0x77, 0x7b, 0x7d, 0x7a, 0x76, 0x72, 0x6b, 0x64, 0x64, 0x68, 0x6a, 0x67, 0x66, 0x6c, 0x73, 0x76, 0x73, 0x6d, 0x65, 0x5f, 0x58, 0x53, 0x53, 0x55, 0x58, 0x53, 0x50, 0x53, 0x5a, 0x5f, 0x5f, 0x5d, 0x55, 0x61, 0x74, 0x89, 0x9a, 0xa2, 0xa3, 0xa1, 0x9e, 0x9d, 0x98, 0x91, 0x8c, 0x88, 0x81, 0x7b, 0x72, 0x7c, 0x87, 0x8d, 0x8e, 0x8b, 0x85, 0x80, 0x72, 0x6b, 0x66, 0x64, 0x64, 0x62, 0x62, 0x64, 0x5d, 0x5c, 0x55, 0x47, 0x3b, 0x3f, 0x51, 0x63, 0x8b, 0xa2, 0xa9, 0x9c, 0x85, 0x62, 0x45, 0x3e, 0x3d, 0x37, 0x43, 0x41, 0x42, 0x4d, 0x4c, 0x4e, 0x4b, 0x54, 0x5e, 0x5f, 0x51, 0x3e, 0x30, 0x2b, 0x36, 0x41, 0x46, 0x40, 0x37, 0x35, 0x38, 0x3a, 0x2b, 0x20, 0x24, 0x2e, 0x30, 0x35, 0x3b, 0x39, 0x3f, 0x46, 0x3b, 0x3e, 0x50, 0x5c, 0x5b, 0x4d, 0x43, 0x46, 0x52, 0x5f, 0x65, 0x66, 0x5f, 0x52, 0x57, 0x5d, 0x63, 0x5c, 0x4f, 0x50, 0x5c, 0x62, 0x63, 0x59, 0x50, 0x52, 0x58, 0x54, 0x42, 0x31, 0x3b, 0x40, 0x41, 0x43, 0x4d, 0x57, 0x62, 0x6d, 0x78, 0x7f, 0x82, 0x7c, 0x72, 0x68, 0x5d, 0x56, 0x4b, 0x50, 0x52, 0x4e, 0x43, 0x39, 0x37, 0x39, 0x42, 0x44, 0x4c, 0x58, 0x61, 0x65, 0x67, 0x6a, 0x6b, 0x6a, 0x69, 0x6b, 0x6a, 0x67, 0x65, 0x66, 0x6f, 0x77, 0x7b, 0x7d, 0x81, 0x79, 0x6d, 0x6a, 0x61, 0x64, 0x68, 0x69, 0x67, 0x65, 0x64, 0x64, 0x62, 0x61, 0x61, 0x62, 0x67, 0x6e, 0x76, 0x7c, 0x83, 0x82, 0x80, 0x7d, 0x7a, 0x77, 0x75, 0x74, 0x69, 0x6c, 0x6b, 0x65, 0x63, 0x6a, 0x76, 0x7f, 0x75, 0x74, 0x72, 0x6f, 0x6b, 0x68, 0x66, 0x65, 0x60, 0x5f, 0x5e, 0x60, 0x65, 0x67, 0x66, 0x65, 0x64, 0x65, 0x67, 0x6a, 0x6c, 0x6a, 0x64, 0x5f, 0x62, 0x69, 0x70, 0x6e, 0x66, 0x61, 0x63, 0x68, 0x77, 0x7b, 0x81, 0x85, 0x87, 0x89, 0x8c, 0x8f, 0x8e, 0x8c, 0x88, 0x84, 0x7d, 0x75, 0x6c, 0x66, 0x67, 0x73, 0x7d, 0x7e, 0x79, 0x75, 0x73, 0x72, 0x71, 0x77, 0x78, 0x74, 0x74, 0x7f, 0x8c, 0x94, 0x91, 0x8a, 0x85, 0x87, 0x88, 0x85, 0x7f, 0x7a, 0x80, 0x81, 0x81, 0x7e, 0x7a, 0x76, 0x73, 0x72, 0x63, 0x6b, 0x74, 0x79, 0x77, 0x74, 0x73, 0x73, 0x6f, 0x69, 0x65, 0x63, 0x61, 0x5d, 0x5a, 0x59, 0x5d, 0x57, 0x51, 0x52, 0x5a, 0x66, 0x6f, 0x74, 0x67, 0x6a, 0x71, 0x7a, 0x83, 0x89, 0x8b, 0x8a, 0x89, 0x8b, 0x83, 0x6e, 0x56, 0x4a, 0x4a, 0x4e, 0x4e, 0x4c, 0x4c, 0x50, 0x52, 0x50, 0x4d, 0x4c, 0x41, 0x46, 0x4a, 0x49, 0x45, 0x42, 0x43, 0x45, 0x47, 0x47, 0x4d, 0x57, 0x5d, 0x59, 0x53, 0x50, 0x4f, 0x59, 0x60, 0x5e, 0x5d, 0x61, 0x64, 0x64, 0x6e, 0x77, 0x67, 0x57, 0x51, 0x50, 0x55, 0x52, 0x57, 0x60, 0x6a, 0x70, 0x72, 0x6f, 0x68, 0x61, 0x58, 0x5b, 0x5f, 0x64, 0x68, 0x68, 0x67, 0x65, 0x67, 0x62, 0x63, 0x6b, 0x74, 0x78, 0x7b, 0x7e, 0xb8, 0xda, 0xf9, 0xff, 0xfb, 0xfc, 0xff, 0xff, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf5, 0xf4, 0xf4, 0xf4, 0xf4, 0xf5, 0xf6, 0xf7, 0xf7, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xff, 0xff, 0xfe, 0xfd, 0xff, 0xff, 0xfc, 0xf4, 0xe0, 0xca, 0xbe, 0xbb, 0xb9, 0xb6, 0xb3, 0xaa, 0xaa, 0xab, 0xac, 0xab, 0xa9, 0xa4, 0xa0, 0x98, 0x93, 0x8e, 0x8a, 0x83, 0x79, 0x70, 0x6c, 0x6d, 0x6a, 0x66, 0x63, 0x61, 0x60, 0x5f, 0x5e, 0x59, 0x59, 0x58, 0x57, 0x56, 0x55, 0x53, 0x53, 0x4f, 0x4d, 0x4b, 0x49, 0x48, 0x46, 0x44, 0x42, 0x44, 0x41, 0x3f, 0x40, 0x40, 0x3f, 0x3e, 0x3f, 0x3f, 0x3f, 0x40, 0x40, 0x41, 0x42, 0x43, 0x43, 0x44, 0x44, 0x44, 0x44, 0x44, 0x45, 0x45, 0x45, 0x46, 0x47, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x4b, 0x4a, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x4b, 0x4c, 0x4d, 0x4e, 0x4a, 0x4a, 0x4e, 0x56, 0x60, 0x66, 0x68, 0x68, 0x5a, 0x3d, 0x39, 0x4c, 0x67, 0x7a, 0x80, 0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x89, 0x8c, 0x8e, 0x8d, 0x90, 0x9e, 0xb2, 0xc2, 0xc8, 0xc9, 0xc9, 0xc9, 0xc4, 0xc3, 0xbf, 0xbd, 0xc1, 0xc7, 0xc7, 0xc2, 0x9d, 0x79, 0x61, 0x66, 0x6c, 0x63, 0x5d, 0x62, 0x68, 0x6c, 0x67, 0x5c, 0x53, 0x4a, 0x49, 0x51, 0x67, 0x6b, 0x6c, 0x6d, 0x6b, 0x5f, 0x52, 0x50, 0x50, 0x5a, 0x5e, 0x5d, 0x5d, 0x5a, 0x59, 0x60, 0x52, 0x55, 0x53, 0x4c, 0x47, 0x4a, 0x52, 0x59, 0x67, 0x6b, 0x6f, 0x6f, 0x6d, 0x6a, 0x64, 0x5e, 0x5a, 0x5c, 0x5d, 0x5c, 0x5f, 0x66, 0x6f, 0x74, 0x73, 0x6c, 0x64, 0x5e, 0x58, 0x53, 0x53, 0x55, 0x52, 0x4f, 0x51, 0x5a, 0x5f, 0x5d, 0x58, 0x56, 0x5a, 0x73, 0x8e, 0x9d, 0xa2, 0xa3, 0xa0, 0x9d, 0x9c, 0x99, 0x94, 0x8f, 0x8d, 0x89, 0x81, 0x79, 0x7a, 0x81, 0x88, 0x8a, 0x8a, 0x89, 0x85, 0x81, 0x79, 0x73, 0x6d, 0x6a, 0x69, 0x69, 0x6c, 0x70, 0x8c, 0x9f, 0xaf, 0xaf, 0xa2, 0x93, 0x87, 0x7f, 0x84, 0x90, 0x98, 0x8e, 0x76, 0x5c, 0x4c, 0x46, 0x3e, 0x3b, 0x46, 0x48, 0x4b, 0x58, 0x5b, 0x5c, 0x49, 0x54, 0x5e, 0x5c, 0x4b, 0x3a, 0x34, 0x36, 0x39, 0x41, 0x46, 0x42, 0x3d, 0x3b, 0x38, 0x34, 0x22, 0x1d, 0x24, 0x30, 0x33, 0x35, 0x38, 0x36, 0x3e, 0x41, 0x3a, 0x48, 0x5e, 0x64, 0x60, 0x54, 0x4a, 0x47, 0x4f, 0x59, 0x5c, 0x61, 0x64, 0x62, 0x66, 0x50, 0x40, 0x3f, 0x49, 0x5b, 0x6a, 0x6d, 0x62, 0x5d, 0x55, 0x4d, 0x4e, 0x53, 0x51, 0x4b, 0x3e, 0x3f, 0x3d, 0x45, 0x57, 0x65, 0x6b, 0x71, 0x76, 0x7d, 0x83, 0x7e, 0x73, 0x68, 0x5f, 0x5a, 0x5b, 0x56, 0x50, 0x46, 0x38, 0x2c, 0x2c, 0x32, 0x3f, 0x41, 0x4c, 0x5f, 0x6e, 0x70, 0x6d, 0x6b, 0x66, 0x68, 0x6b, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6c, 0x71, 0x77, 0x7b, 0x7e, 0x7a, 0x74, 0x72, 0x76, 0x75, 0x72, 0x6d, 0x68, 0x66, 0x67, 0x69, 0x66, 0x64, 0x62, 0x61, 0x64, 0x69, 0x6e, 0x71, 0x73, 0x7d, 0x8a, 0x94, 0x9c, 0xa2, 0xa5, 0xa5, 0xac, 0xa8, 0x9d, 0x92, 0x8e, 0x8e, 0x88, 0x80, 0x84, 0x82, 0x7d, 0x77, 0x71, 0x6e, 0x6f, 0x71, 0x64, 0x60, 0x5d, 0x5e, 0x61, 0x63, 0x62, 0x60, 0x59, 0x5a, 0x5c, 0x60, 0x65, 0x68, 0x68, 0x67, 0x6b, 0x72, 0x79, 0x79, 0x74, 0x71, 0x74, 0x78, 0x77, 0x7c, 0x82, 0x88, 0x8d, 0x90, 0x94, 0x96, 0x99, 0x96, 0x92, 0x8e, 0x8a, 0x85, 0x81, 0x7d, 0x8b, 0x8c, 0x87, 0x7b, 0x73, 0x77, 0x84, 0x8e, 0x97, 0x9e, 0xa3, 0xa2, 0xa0, 0xa2, 0xa7, 0xaa, 0xad, 0xa5, 0x9d, 0x9b, 0x9c, 0x9e, 0xa2, 0xa6, 0xa3, 0x9e, 0x97, 0x8f, 0x8c, 0x8d, 0x92, 0x96, 0x93, 0x95, 0x97, 0x95, 0x91, 0x8c, 0x89, 0x88, 0x84, 0x80, 0x7c, 0x79, 0x75, 0x72, 0x71, 0x73, 0x6e, 0x72, 0x77, 0x7c, 0x7c, 0x76, 0x6d, 0x66, 0x57, 0x55, 0x5b, 0x67, 0x72, 0x72, 0x6d, 0x68, 0x66, 0x63, 0x5f, 0x5d, 0x5b, 0x54, 0x46, 0x3a, 0x35, 0x41, 0x4e, 0x52, 0x4f, 0x4c, 0x4a, 0x49, 0x54, 0x58, 0x5c, 0x5b, 0x55, 0x51, 0x51, 0x53, 0x4e, 0x4a, 0x4c, 0x57, 0x5e, 0x5b, 0x57, 0x57, 0x53, 0x53, 0x56, 0x5b, 0x5f, 0x61, 0x63, 0x65, 0x6d, 0x79, 0x6b, 0x5a, 0x53, 0x53, 0x5d, 0x5d, 0x5c, 0x60, 0x65, 0x69, 0x6b, 0x6c, 0x6b, 0x69, 0x62, 0x60, 0x62, 0x67, 0x6b, 0x6c, 0x6a, 0x69, 0x66, 0x6c, 0x76, 0x76, 0x6c, 0x73, 0x9b, 0xc7, 0xe5, 0xfe, 0xff, 0xfd, 0xf5, 0xfd, 0xff, 0xf8, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfb, 0xf9, 0xf9, 0xf7, 0xf6, 0xf4, 0xf3, 0xf2, 0xf2, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfb, 0xfc, 0xfc, 0xfd, 0xff, 0xff, 0xfb, 0xf9, 0xfb, 0xfd, 0xfd, 0xff, 0xf7, 0xe6, 0xd4, 0xc6, 0xbd, 0xba, 0xba, 0xb1, 0xaf, 0xac, 0xab, 0xaa, 0xa9, 0xa9, 0xa8, 0x9b, 0x97, 0x91, 0x8d, 0x88, 0x81, 0x78, 0x72, 0x73, 0x6f, 0x6a, 0x66, 0x63, 0x62, 0x62, 0x61, 0x5a, 0x5a, 0x59, 0x58, 0x57, 0x55, 0x54, 0x53, 0x52, 0x50, 0x4e, 0x4c, 0x4b, 0x49, 0x47, 0x45, 0x46, 0x43, 0x41, 0x42, 0x43, 0x41, 0x40, 0x41, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x45, 0x45, 0x47, 0x46, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4d, 0x4d, 0x4c, 0x4c, 0x4c, 0x4b, 0x4c, 0x4c, 0x4d, 0x4d, 0x4b, 0x4d, 0x51, 0x58, 0x61, 0x66, 0x68, 0x67, 0x63, 0x4b, 0x36, 0x31, 0x46, 0x5a, 0x63, 0x78, 0x8b, 0x8e, 0x8f, 0x8d, 0x8e, 0x90, 0x91, 0x90, 0x8c, 0x96, 0xa9, 0xbd, 0xc7, 0xc6, 0xc4, 0xc5, 0xc6, 0xc6, 0xc2, 0xc0, 0xc2, 0xc6, 0xc8, 0xc5, 0xb6, 0x8e, 0x67, 0x5b, 0x5e, 0x5f, 0x5c, 0x5c, 0x60, 0x66, 0x65, 0x5c, 0x53, 0x49, 0x48, 0x51, 0x67, 0x6c, 0x6c, 0x6c, 0x6b, 0x5f, 0x51, 0x4d, 0x58, 0x5d, 0x5c, 0x58, 0x59, 0x5a, 0x61, 0x6c, 0x63, 0x63, 0x60, 0x57, 0x50, 0x50, 0x56, 0x5c, 0x53, 0x55, 0x59, 0x5e, 0x62, 0x63, 0x5f, 0x5c, 0x58, 0x5c, 0x5e, 0x5e, 0x5d, 0x60, 0x67, 0x6d, 0x75, 0x6e, 0x68, 0x64, 0x60, 0x5c, 0x59, 0x59, 0x56, 0x52, 0x55, 0x5c, 0x5b, 0x54, 0x53, 0x58, 0x71, 0x87, 0x9c, 0xa2, 0xa1, 0xa1, 0x9f, 0x9a, 0x9c, 0x97, 0x90, 0x8d, 0x8c, 0x89, 0x83, 0x7d, 0x82, 0x86, 0x89, 0x88, 0x87, 0x84, 0x80, 0x7b, 0x84, 0x7d, 0x75, 0x71, 0x70, 0x72, 0x7a, 0x81, 0x99, 0xa5, 0xaf, 0xb4, 0xb7, 0xb5, 0xa6, 0x95, 0x88, 0x88, 0x87, 0x79, 0x60, 0x4e, 0x47, 0x43, 0x46, 0x40, 0x43, 0x48, 0x50, 0x5b, 0x56, 0x49, 0x40, 0x4a, 0x55, 0x55, 0x48, 0x3a, 0x35, 0x37, 0x3b, 0x39, 0x36, 0x35, 0x3a, 0x3e, 0x36, 0x2a, 0x1a, 0x1b, 0x24, 0x31, 0x36, 0x35, 0x36, 0x38, 0x3f, 0x41, 0x38, 0x42, 0x56, 0x5d, 0x5e, 0x56, 0x4c, 0x49, 0x51, 0x5d, 0x60, 0x62, 0x65, 0x63, 0x4b, 0x3a, 0x3e, 0x5c, 0x76, 0x7b, 0x6b, 0x55, 0x5c, 0x5b, 0x53, 0x49, 0x4a, 0x52, 0x54, 0x4f, 0x44, 0x41, 0x3c, 0x43, 0x55, 0x5f, 0x64, 0x69, 0x66, 0x6d, 0x74, 0x74, 0x6d, 0x65, 0x5e, 0x5b, 0x61, 0x5a, 0x52, 0x49, 0x3b, 0x2f, 0x2e, 0x35, 0x36, 0x42, 0x52, 0x62, 0x73, 0x7b, 0x72, 0x63, 0x64, 0x68, 0x6c, 0x6e, 0x6f, 0x70, 0x6f, 0x6e, 0x69, 0x6e, 0x76, 0x7c, 0x7b, 0x7b, 0x7c, 0x7b, 0x7d, 0x7a, 0x77, 0x74, 0x71, 0x6d, 0x67, 0x63, 0x66, 0x65, 0x63, 0x61, 0x62, 0x65, 0x69, 0x6c, 0x70, 0x80, 0x96, 0xa7, 0xb2, 0xb9, 0xba, 0xb8, 0xb1, 0xb0, 0xac, 0xac, 0xb2, 0xb7, 0xb0, 0xa5, 0x9f, 0x91, 0x81, 0x79, 0x79, 0x79, 0x74, 0x6f, 0x68, 0x65, 0x63, 0x64, 0x67, 0x69, 0x69, 0x67, 0x69, 0x6a, 0x6e, 0x72, 0x78, 0x7c, 0x7f, 0x80, 0x81, 0x85, 0x8b, 0x8f, 0x91, 0x93, 0x96, 0x98, 0x9e, 0xa0, 0xa4, 0xa7, 0xa8, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xa8, 0xa6, 0xa3, 0xa3, 0xa6, 0xa8, 0xa5, 0x9f, 0x92, 0x85, 0x80, 0x87, 0x93, 0x9b, 0x9e, 0xa2, 0xa4, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d, 0x99, 0x98, 0x97, 0x98, 0x98, 0x98, 0x9c, 0xa1, 0xa4, 0xa3, 0x9f, 0x9b, 0x98, 0x98, 0x9a, 0x9c, 0x9b, 0x98, 0x93, 0x8f, 0x8d, 0x8a, 0x87, 0x84, 0x92, 0x91, 0x91, 0x92, 0x91, 0x8f, 0x91, 0x95, 0x94, 0x95, 0x93, 0x8c, 0x7c, 0x67, 0x52, 0x45, 0x52, 0x50, 0x4d, 0x4a, 0x45, 0x43, 0x49, 0x51, 0x4a, 0x42, 0x3c, 0x40, 0x48, 0x4c, 0x47, 0x41, 0x42, 0x45, 0x45, 0x41, 0x41, 0x49, 0x52, 0x56, 0x5e, 0x5f, 0x5e, 0x58, 0x51, 0x4e, 0x50, 0x53, 0x51, 0x4e, 0x50, 0x59, 0x5f, 0x5c, 0x57, 0x55, 0x52, 0x4b, 0x4e, 0x5b, 0x64, 0x62, 0x63, 0x69, 0x6f, 0x7b, 0x6c, 0x5b, 0x55, 0x58, 0x65, 0x68, 0x63, 0x61, 0x5f, 0x61, 0x65, 0x68, 0x69, 0x69, 0x61, 0x5f, 0x61, 0x69, 0x71, 0x72, 0x71, 0x71, 0x71, 0x7b, 0x7b, 0x74, 0x81, 0xab, 0xdc, 0xf9, 0xfc, 0xfa, 0xfa, 0xfd, 0xff, 0xfd, 0xfc, 0xfc, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf7, 0xf6, 0xf5, 0xf3, 0xf2, 0xf2, 0xee, 0xee, 0xed, 0xec, 0xec, 0xec, 0xed, 0xee, 0xf1, 0xf2, 0xf3, 0xf5, 0xf7, 0xf9, 0xfb, 0xfb, 0xf9, 0xfb, 0xfc, 0xfc, 0xfd, 0xff, 0xff, 0xfe, 0xf9, 0xfc, 0xfc, 0xf3, 0xe2, 0xcf, 0xbf, 0xb6, 0xb8, 0xb5, 0xb1, 0xae, 0xac, 0xab, 0xa9, 0xa7, 0xa3, 0x9f, 0x98, 0x92, 0x8e, 0x89, 0x83, 0x7d, 0x79, 0x75, 0x6f, 0x6a, 0x67, 0x65, 0x63, 0x62, 0x61, 0x60, 0x5e, 0x5c, 0x5a, 0x58, 0x57, 0x56, 0x54, 0x53, 0x50, 0x4f, 0x4e, 0x4c, 0x4a, 0x48, 0x4b, 0x48, 0x46, 0x47, 0x48, 0x46, 0x45, 0x46, 0x43, 0x44, 0x45, 0x46, 0x47, 0x47, 0x48, 0x48, 0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x49, 0x4a, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d, 0x4c, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4e, 0x53, 0x5a, 0x61, 0x66, 0x67, 0x66, 0x68, 0x5d, 0x43, 0x28, 0x2d, 0x3f, 0x4c, 0x65, 0x7f, 0x88, 0x90, 0x92, 0x91, 0x91, 0x91, 0x90, 0x91, 0x95, 0xa5, 0xba, 0xc6, 0xc6, 0xc3, 0xc4, 0xc2, 0xc1, 0xc1, 0xc2, 0xc6, 0xc9, 0xc8, 0xc5, 0xbf, 0xa8, 0x80, 0x60, 0x59, 0x60, 0x5e, 0x53, 0x59, 0x61, 0x64, 0x60, 0x58, 0x4e, 0x4e, 0x59, 0x6a, 0x6f, 0x6e, 0x6c, 0x6a, 0x5f, 0x50, 0x4b, 0x56, 0x5b, 0x5a, 0x55, 0x53, 0x51, 0x54, 0x5e, 0x73, 0x75, 0x78, 0x76, 0x6d, 0x60, 0x55, 0x4f, 0x5a, 0x58, 0x59, 0x5e, 0x62, 0x62, 0x5d, 0x59, 0x5d, 0x5f, 0x60, 0x5c, 0x57, 0x57, 0x5f, 0x68, 0x76, 0x6e, 0x66, 0x63, 0x62, 0x60, 0x5f, 0x5f, 0x5d, 0x58, 0x55, 0x54, 0x51, 0x52, 0x62, 0x76, 0x8f, 0x9b, 0xa3, 0xa2, 0xa2, 0xa4, 0xa1, 0x9a, 0x99, 0x93, 0x8b, 0x88, 0x87, 0x85, 0x83, 0x81, 0x81, 0x85, 0x88, 0x89, 0x8a, 0x89, 0x86, 0x81, 0x78, 0x73, 0x6c, 0x67, 0x63, 0x62, 0x68, 0x6f, 0x5b, 0x66, 0x74, 0x84, 0x99, 0xa8, 0xa3, 0x96, 0x95, 0x8c, 0x7e, 0x68, 0x52, 0x4a, 0x49, 0x45, 0x42, 0x3d, 0x3c, 0x45, 0x52, 0x5e, 0x5c, 0x49, 0x49, 0x4e, 0x55, 0x56, 0x4d, 0x3e, 0x33, 0x30, 0x39, 0x38, 0x34, 0x33, 0x38, 0x3b, 0x32, 0x26, 0x17, 0x1d, 0x27, 0x33, 0x39, 0x37, 0x37, 0x3d, 0x41, 0x47, 0x3c, 0x3d, 0x4b, 0x54, 0x59, 0x51, 0x3e, 0x43, 0x57, 0x6a, 0x6c, 0x65, 0x58, 0x4a, 0x3b, 0x36, 0x45, 0x5f, 0x6c, 0x6c, 0x68, 0x62, 0x55, 0x52, 0x4a, 0x47, 0x51, 0x63, 0x69, 0x64, 0x4f, 0x4c, 0x45, 0x45, 0x4c, 0x50, 0x55, 0x5f, 0x60, 0x60, 0x60, 0x61, 0x60, 0x5f, 0x60, 0x61, 0x5e, 0x5e, 0x5f, 0x5e, 0x55, 0x48, 0x40, 0x40, 0x30, 0x39, 0x49, 0x5c, 0x6e, 0x75, 0x6e, 0x63, 0x6f, 0x72, 0x74, 0x74, 0x74, 0x74, 0x71, 0x6e, 0x6c, 0x70, 0x7b, 0x83, 0x81, 0x82, 0x86, 0x83, 0x7d, 0x77, 0x71, 0x70, 0x72, 0x72, 0x6d, 0x68, 0x64, 0x67, 0x69, 0x6a, 0x6a, 0x6b, 0x6e, 0x71, 0x85, 0x93, 0xa3, 0xac, 0xb1, 0xb4, 0xb1, 0xab, 0xaf, 0xae, 0xa8, 0x9e, 0x94, 0x8c, 0x85, 0x80, 0x80, 0x79, 0x6f, 0x68, 0x66, 0x67, 0x6a, 0x6b, 0x71, 0x73, 0x77, 0x7d, 0x84, 0x89, 0x8d, 0x8f, 0x96, 0x99, 0x9d, 0xa1, 0xa3, 0xa4, 0xa3, 0xa3, 0xab, 0xaa, 0xa8, 0xa9, 0xaa, 0xaa, 0xa8, 0xa6, 0xa2, 0xa3, 0xa5, 0xa7, 0xa6, 0xa5, 0xa3, 0xa1, 0x9f, 0xa2, 0xa5, 0xa4, 0xa2, 0xa2, 0xa6, 0xab, 0xa8, 0xa8, 0xa8, 0xa6, 0xa7, 0xaa, 0xaa, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa8, 0xa9, 0xa9, 0xa7, 0xad, 0xad, 0xaf, 0xb0, 0xad, 0xab, 0xac, 0xb0, 0xaf, 0xae, 0xac, 0xa9, 0xa8, 0xa8, 0xaa, 0xac, 0xa5, 0xa1, 0x9d, 0x9c, 0x9c, 0x9b, 0x97, 0x92, 0x8b, 0x8d, 0x90, 0x93, 0x92, 0x8d, 0x8c, 0x8d, 0x8e, 0x8c, 0x88, 0x83, 0x7f, 0x7e, 0x7f, 0x80, 0x73, 0x6e, 0x67, 0x61, 0x5d, 0x5d, 0x5e, 0x60, 0x57, 0x52, 0x4f, 0x4e, 0x4e, 0x4e, 0x50, 0x53, 0x57, 0x54, 0x52, 0x55, 0x5d, 0x64, 0x64, 0x60, 0x64, 0x68, 0x6d, 0x6e, 0x6a, 0x64, 0x60, 0x5d, 0x5b, 0x5c, 0x5f, 0x63, 0x67, 0x66, 0x60, 0x5b, 0x54, 0x4e, 0x52, 0x61, 0x6a, 0x68, 0x67, 0x6b, 0x75, 0x7e, 0x6c, 0x59, 0x52, 0x52, 0x5c, 0x5d, 0x5b, 0x58, 0x58, 0x5e, 0x64, 0x67, 0x69, 0x6a, 0x5b, 0x5a, 0x60, 0x6d, 0x77, 0x79, 0x79, 0x7a, 0x7c, 0x73, 0x74, 0x93, 0xc8, 0xf3, 0xfc, 0xf2, 0xff, 0xfe, 0xf9, 0xf7, 0xfa, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf7, 0xf5, 0xf4, 0xf3, 0xf0, 0xee, 0xeb, 0xe9, 0xe8, 0xe8, 0xe9, 0xe9, 0xec, 0xed, 0xef, 0xf1, 0xf3, 0xf4, 0xf6, 0xf6, 0xf7, 0xf8, 0xfa, 0xfc, 0xfe, 0xff, 0xfd, 0xfc, 0xfa, 0xfd, 0xff, 0xfd, 0xf7, 0xe9, 0xd6, 0xc7, 0xb8, 0xb4, 0xb1, 0xb0, 0xb1, 0xb0, 0xac, 0xa8, 0xa9, 0xa6, 0x9f, 0x98, 0x92, 0x8e, 0x89, 0x83, 0x80, 0x7c, 0x77, 0x72, 0x6e, 0x6a, 0x66, 0x64, 0x64, 0x63, 0x60, 0x5e, 0x5b, 0x59, 0x58, 0x57, 0x57, 0x55, 0x53, 0x52, 0x51, 0x50, 0x4e, 0x4c, 0x4d, 0x4a, 0x49, 0x4a, 0x4a, 0x48, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4c, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c, 0x4a, 0x4e, 0x54, 0x5c, 0x63, 0x68, 0x69, 0x69, 0x68, 0x67, 0x55, 0x33, 0x28, 0x31, 0x41, 0x5f, 0x76, 0x82, 0x8e, 0x93, 0x92, 0x92, 0x91, 0x90, 0x92, 0x94, 0x9f, 0xb3, 0xc1, 0xc6, 0xc5, 0xc5, 0xc5, 0xc3, 0xc2, 0xc4, 0xc8, 0xca, 0xc9, 0xc6, 0xc4, 0xbb, 0x98, 0x6a, 0x56, 0x5d, 0x60, 0x56, 0x5c, 0x65, 0x69, 0x69, 0x64, 0x5a, 0x5a, 0x66, 0x6e, 0x73, 0x70, 0x6c, 0x6a, 0x60, 0x51, 0x4a, 0x54, 0x5e, 0x65, 0x69, 0x6b, 0x65, 0x5f, 0x61, 0x63, 0x61, 0x61, 0x65, 0x6a, 0x6e, 0x70, 0x73, 0x6e, 0x6d, 0x6d, 0x6d, 0x6a, 0x63, 0x5b, 0x58, 0x5f, 0x5c, 0x58, 0x52, 0x4c, 0x4e, 0x5a, 0x66, 0x6f, 0x65, 0x5b, 0x57, 0x59, 0x5a, 0x5a, 0x5c, 0x5f, 0x60, 0x61, 0x60, 0x5e, 0x64, 0x79, 0x8e, 0x9f, 0xa2, 0xa4, 0xa2, 0xa2, 0xa3, 0x9f, 0x97, 0x8f, 0x89, 0x83, 0x7e, 0x7a, 0x78, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x88, 0x84, 0x84, 0x82, 0x7f, 0x7a, 0x72, 0x6d, 0x6d, 0x72, 0x7a, 0x78, 0x71, 0x6d, 0x76, 0x89, 0x9a, 0xa2, 0x93, 0x8a, 0x71, 0x54, 0x49, 0x4c, 0x4e, 0x4b, 0x37, 0x43, 0x47, 0x4a, 0x46, 0x4d, 0x5c, 0x58, 0x4d, 0x4b, 0x4a, 0x46, 0x3f, 0x37, 0x34, 0x35, 0x3c, 0x43, 0x45, 0x3d, 0x33, 0x2b, 0x23, 0x1c, 0x1a, 0x24, 0x2d, 0x37, 0x3e, 0x3a, 0x3a, 0x43, 0x49, 0x52, 0x49, 0x4a, 0x54, 0x58, 0x59, 0x4f, 0x31, 0x3d, 0x54, 0x67, 0x6a, 0x65, 0x55, 0x42, 0x2b, 0x31, 0x4a, 0x64, 0x6b, 0x67, 0x65, 0x62, 0x68, 0x5d, 0x4d, 0x46, 0x4c, 0x56, 0x57, 0x50, 0x4e, 0x4e, 0x48, 0x42, 0x3d, 0x39, 0x41, 0x51, 0x5b, 0x5a, 0x5b, 0x5f, 0x61, 0x61, 0x61, 0x62, 0x61, 0x61, 0x60, 0x5b, 0x53, 0x4a, 0x43, 0x3f, 0x35, 0x2e, 0x39, 0x57, 0x6b, 0x6c, 0x6a, 0x6e, 0x74, 0x76, 0x77, 0x76, 0x77, 0x77, 0x73, 0x6e, 0x67, 0x68, 0x76, 0x80, 0x7f, 0x80, 0x81, 0x79, 0x76, 0x71, 0x6d, 0x6e, 0x71, 0x72, 0x6e, 0x69, 0x5f, 0x67, 0x70, 0x74, 0x73, 0x71, 0x72, 0x74, 0x82, 0x8b, 0x94, 0x98, 0xa0, 0xa9, 0xad, 0xab, 0xa9, 0xa0, 0x92, 0x80, 0x6e, 0x63, 0x62, 0x66, 0x65, 0x6c, 0x72, 0x71, 0x6e, 0x71, 0x7c, 0x87, 0x89, 0x8e, 0x95, 0x9c, 0xa2, 0xa6, 0xaa, 0xad, 0xaa, 0xab, 0xac, 0xac, 0xac, 0xab, 0xaa, 0xa9, 0x9e, 0x9c, 0x9b, 0x9c, 0x9f, 0xa1, 0xa2, 0xa1, 0xa5, 0xa6, 0xa8, 0xaa, 0xaa, 0xa9, 0xa6, 0xa4, 0xab, 0xb0, 0xb4, 0xb4, 0xb1, 0xae, 0xae, 0xb0, 0xa9, 0xa9, 0xa7, 0xa3, 0xa5, 0xac, 0xb3, 0xb7, 0xac, 0xab, 0xaa, 0xab, 0xa9, 0xa3, 0x9c, 0x98, 0x96, 0x96, 0x9b, 0xa2, 0xa8, 0xaa, 0xab, 0xad, 0xb2, 0xb0, 0xad, 0xa9, 0xa8, 0xaa, 0xae, 0xb2, 0xad, 0xab, 0xa9, 0xa9, 0xaa, 0xa9, 0xa6, 0xa3, 0xa3, 0xa4, 0xa6, 0xa8, 0xa6, 0xa0, 0x9d, 0x9d, 0xa4, 0xa6, 0xa7, 0xa5, 0xa0, 0x9a, 0x97, 0x96, 0x9b, 0x98, 0x92, 0x8d, 0x8d, 0x8a, 0x7e, 0x71, 0x75, 0x74, 0x75, 0x78, 0x79, 0x75, 0x74, 0x75, 0x74, 0x76, 0x7c, 0x86, 0x8b, 0x87, 0x7c, 0x74, 0x74, 0x79, 0x80, 0x84, 0x83, 0x7c, 0x73, 0x6d, 0x6f, 0x71, 0x6e, 0x6a, 0x6b, 0x71, 0x72, 0x6e, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6b, 0x67, 0x63, 0x75, 0x7c, 0x69, 0x58, 0x52, 0x52, 0x58, 0x55, 0x4d, 0x4d, 0x52, 0x5a, 0x60, 0x63, 0x66, 0x6b, 0x64, 0x61, 0x65, 0x70, 0x77, 0x79, 0x7b, 0x7f, 0x6f, 0x81, 0xa9, 0xd8, 0xf7, 0xfe, 0xfe, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf6, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xf9, 0xf7, 0xf6, 0xf5, 0xf3, 0xf0, 0xec, 0xe9, 0xe6, 0xe6, 0xe6, 0xe7, 0xe8, 0xe8, 0xea, 0xeb, 0xed, 0xed, 0xed, 0xed, 0xf2, 0xf3, 0xf4, 0xf6, 0xf7, 0xf7, 0xf8, 0xfa, 0xff, 0xff, 0xfc, 0xfa, 0xfb, 0xfa, 0xf1, 0xe6, 0xcb, 0xc2, 0xb8, 0xb4, 0xb4, 0xb4, 0xb0, 0xab, 0xa9, 0xa9, 0xa6, 0x9e, 0x98, 0x95, 0x90, 0x8b, 0x88, 0x86, 0x82, 0x7d, 0x78, 0x72, 0x6b, 0x68, 0x65, 0x64, 0x61, 0x5e, 0x5c, 0x5a, 0x58, 0x58, 0x59, 0x58, 0x56, 0x55, 0x55, 0x54, 0x52, 0x51, 0x4f, 0x4c, 0x4a, 0x4b, 0x4b, 0x4a, 0x49, 0x49, 0x4d, 0x4d, 0x4c, 0x4b, 0x4c, 0x4c, 0x4d, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x50, 0x50, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4d, 0x4d, 0x4d, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4d, 0x4c, 0x4c, 0x4c, 0x50, 0x57, 0x5f, 0x66, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x64, 0x48, 0x30, 0x2b, 0x3b, 0x5f, 0x71, 0x7b, 0x86, 0x8c, 0x8f, 0x91, 0x90, 0x8f, 0x90, 0x91, 0x98, 0xa8, 0xb9, 0xc4, 0xc5, 0xc4, 0xc8, 0xc7, 0xc5, 0xc6, 0xc7, 0xc6, 0xc5, 0xc5, 0xc8, 0xc4, 0xab, 0x83, 0x63, 0x5b, 0x5d, 0x5d, 0x64, 0x6a, 0x6e, 0x70, 0x6c, 0x62, 0x61, 0x6c, 0x6e, 0x72, 0x6f, 0x69, 0x69, 0x61, 0x53, 0x4c, 0x55, 0x5f, 0x68, 0x74, 0x81, 0x7f, 0x75, 0x71, 0x64, 0x5f, 0x5d, 0x5e, 0x5d, 0x5a, 0x57, 0x58, 0x67, 0x6c, 0x73, 0x75, 0x6c, 0x60, 0x5a, 0x5b, 0x5d, 0x56, 0x4e, 0x4a, 0x49, 0x4d, 0x58, 0x62, 0x67, 0x5e, 0x56, 0x55, 0x58, 0x57, 0x55, 0x53, 0x58, 0x61, 0x6a, 0x6f, 0x73, 0x7c, 0x8c, 0x99, 0x9f, 0x9f, 0xa0, 0x9f, 0x9d, 0x9b, 0x98, 0x97, 0x8d, 0x8a, 0x87, 0x81, 0x79, 0x73, 0x76, 0x7d, 0x85, 0x86, 0x86, 0x85, 0x86, 0x87, 0x84, 0x80, 0x7d, 0x7c, 0x7b, 0x77, 0x70, 0x6c, 0x6f, 0x75, 0x8b, 0x8b, 0x89, 0x83, 0x7d, 0x7c, 0x81, 0x85, 0x99, 0x92, 0x6c, 0x45, 0x40, 0x47, 0x43, 0x3d, 0x3b, 0x45, 0x45, 0x48, 0x46, 0x4c, 0x5b, 0x51, 0x53, 0x57, 0x59, 0x55, 0x48, 0x3b, 0x38, 0x3b, 0x41, 0x4a, 0x4c, 0x3e, 0x2c, 0x20, 0x19, 0x16, 0x21, 0x2d, 0x36, 0x3e, 0x45, 0x3e, 0x3b, 0x47, 0x51, 0x56, 0x51, 0x5b, 0x66, 0x60, 0x5a, 0x50, 0x35, 0x44, 0x58, 0x62, 0x62, 0x63, 0x5b, 0x49, 0x45, 0x3d, 0x44, 0x55, 0x63, 0x6b, 0x6a, 0x62, 0x3e, 0x3b, 0x3a, 0x40, 0x49, 0x4d, 0x49, 0x43, 0x43, 0x48, 0x46, 0x3e, 0x33, 0x2b, 0x34, 0x49, 0x59, 0x5a, 0x5f, 0x65, 0x66, 0x64, 0x64, 0x67, 0x67, 0x65, 0x5b, 0x4d, 0x45, 0x44, 0x42, 0x3e, 0x3d, 0x31, 0x37, 0x57, 0x6f, 0x71, 0x6d, 0x70, 0x6c, 0x6d, 0x6e, 0x6e, 0x71, 0x74, 0x70, 0x6a, 0x68, 0x66, 0x75, 0x82, 0x81, 0x83, 0x80, 0x72, 0x67, 0x6a, 0x6f, 0x76, 0x77, 0x70, 0x63, 0x59, 0x58, 0x63, 0x70, 0x76, 0x74, 0x6f, 0x6e, 0x6f, 0x6c, 0x70, 0x70, 0x6f, 0x77, 0x86, 0x90, 0x92, 0x88, 0x78, 0x66, 0x59, 0x51, 0x4f, 0x58, 0x63, 0x75, 0x7a, 0x82, 0x8a, 0x92, 0x99, 0x9f, 0xa4, 0xa3, 0xa7, 0xac, 0xad, 0xaa, 0xa8, 0xa7, 0xa8, 0xa6, 0xa4, 0xa1, 0x9e, 0x9d, 0x9e, 0xa0, 0xa3, 0xa7, 0xa6, 0xa6, 0xa9, 0xae, 0xb3, 0xb7, 0xb8, 0xad, 0xae, 0xae, 0xaf, 0xae, 0xab, 0xa7, 0xa4, 0xaa, 0xaf, 0xb4, 0xb5, 0xb2, 0xac, 0xa7, 0xa4, 0xa2, 0xa7, 0xa9, 0xa5, 0xa0, 0xa1, 0xa6, 0xa9, 0xa9, 0xab, 0xae, 0xab, 0x9f, 0x8a, 0x75, 0x69, 0x66, 0x6c, 0x7c, 0x93, 0xa7, 0xaf, 0xaf, 0xac, 0xab, 0xac, 0xad, 0xad, 0xac, 0xab, 0xab, 0xac, 0xaa, 0xaa, 0xab, 0xab, 0xab, 0xac, 0xad, 0xae, 0xa8, 0xa7, 0xa7, 0xa9, 0xa9, 0xa7, 0xa8, 0xaa, 0xac, 0xac, 0xac, 0xa8, 0xa3, 0xa1, 0xa1, 0xa3, 0xa3, 0xab, 0xac, 0xa4, 0x9f, 0x9f, 0x9c, 0x95, 0x90, 0x86, 0x7f, 0x83, 0x88, 0x85, 0x7d, 0x78, 0x84, 0x89, 0x92, 0x9b, 0x9e, 0xa0, 0xa7, 0xb0, 0xaa, 0xa6, 0xa0, 0x9c, 0x99, 0x96, 0x93, 0x91, 0x7e, 0x7d, 0x73, 0x65, 0x65, 0x73, 0x7c, 0x7c, 0x7e, 0x82, 0x7b, 0x6e, 0x6d, 0x76, 0x77, 0x6f, 0x6d, 0x76, 0x66, 0x5a, 0x5a, 0x5d, 0x63, 0x5e, 0x5a, 0x5b, 0x60, 0x65, 0x67, 0x68, 0x6d, 0x75, 0x76, 0x6f, 0x6c, 0x71, 0x74, 0x74, 0x79, 0x81, 0x90, 0xbf, 0xef, 0xff, 0xfb, 0xf9, 0xfb, 0xfc, 0xff, 0xf9, 0xf8, 0xff, 0xff, 0xfa, 0xfc, 0xff, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xf9, 0xf7, 0xf6, 0xf5, 0xf2, 0xee, 0xe9, 0xe6, 0xe5, 0xe5, 0xe6, 0xe5, 0xe6, 0xe7, 0xe7, 0xe8, 0xe7, 0xe7, 0xe6, 0xe8, 0xea, 0xee, 0xf0, 0xf2, 0xf4, 0xfa, 0xff, 0xf9, 0xfc, 0xfd, 0xfb, 0xfc, 0xfd, 0xfa, 0xf5, 0xef, 0xdf, 0xca, 0xbc, 0xb7, 0xb5, 0xb1, 0xac, 0xa9, 0xac, 0xac, 0xa6, 0xa1, 0x9e, 0x99, 0x94, 0x8f, 0x8d, 0x8a, 0x86, 0x80, 0x78, 0x71, 0x6c, 0x68, 0x66, 0x64, 0x61, 0x5f, 0x5d, 0x5c, 0x5c, 0x5b, 0x5a, 0x58, 0x58, 0x58, 0x57, 0x55, 0x54, 0x53, 0x50, 0x4e, 0x4f, 0x4f, 0x4e, 0x4d, 0x4d, 0x51, 0x50, 0x4e, 0x4d, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x51, 0x51, 0x51, 0x51, 0x52, 0x52, 0x51, 0x51, 0x51, 0x50, 0x50, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4e, 0x4f, 0x50, 0x50, 0x50, 0x50, 0x51, 0x51, 0x51, 0x50, 0x4f, 0x4e, 0x4d, 0x4d, 0x50, 0x54, 0x5b, 0x62, 0x68, 0x6b, 0x6b, 0x6b, 0x71, 0x6c, 0x6e, 0x5b, 0x3b, 0x2a, 0x38, 0x60, 0x6e, 0x74, 0x7c, 0x82, 0x88, 0x8c, 0x8d, 0x8a, 0x90, 0x90, 0x95, 0xa1, 0xb4, 0xc2, 0xc5, 0xc2, 0xc3, 0xc4, 0xc6, 0xc8, 0xc6, 0xc4, 0xc4, 0xc5, 0xc7, 0xc5, 0xbd, 0xa4, 0x7f, 0x60, 0x56, 0x5b, 0x66, 0x6b, 0x6e, 0x6f, 0x6c, 0x61, 0x5f, 0x6a, 0x6b, 0x70, 0x6c, 0x67, 0x67, 0x61, 0x54, 0x4d, 0x54, 0x58, 0x5b, 0x67, 0x79, 0x7d, 0x75, 0x70, 0x78, 0x75, 0x73, 0x71, 0x6a, 0x5d, 0x53, 0x50, 0x4b, 0x59, 0x6a, 0x70, 0x67, 0x5b, 0x5a, 0x5f, 0x5a, 0x51, 0x49, 0x49, 0x4d, 0x51, 0x57, 0x5c, 0x66, 0x60, 0x5d, 0x60, 0x63, 0x5e, 0x56, 0x50, 0x50, 0x59, 0x63, 0x6b, 0x76, 0x88, 0x9a, 0xa5, 0x9c, 0x9c, 0x9d, 0x9c, 0x98, 0x93, 0x95, 0x9a, 0x99, 0x99, 0x97, 0x91, 0x85, 0x7d, 0x80, 0x89, 0x89, 0x89, 0x87, 0x84, 0x85, 0x86, 0x85, 0x81, 0x7f, 0x7d, 0x7a, 0x77, 0x74, 0x76, 0x80, 0x8a, 0x82, 0x7c, 0x78, 0x78, 0x7c, 0x84, 0x90, 0x9b, 0x98, 0x95, 0x6b, 0x40, 0x41, 0x4c, 0x45, 0x3d, 0x3e, 0x34, 0x28, 0x44, 0x6f, 0x89, 0x89, 0x63, 0x77, 0x89, 0x9b, 0x9a, 0x81, 0x60, 0x4b, 0x44, 0x41, 0x46, 0x43, 0x36, 0x2a, 0x24, 0x20, 0x1d, 0x25, 0x34, 0x3d, 0x44, 0x4a, 0x41, 0x3c, 0x48, 0x53, 0x51, 0x4d, 0x60, 0x6d, 0x61, 0x56, 0x50, 0x40, 0x53, 0x68, 0x6c, 0x65, 0x63, 0x59, 0x45, 0x3b, 0x37, 0x42, 0x56, 0x62, 0x5f, 0x4c, 0x34, 0x2c, 0x33, 0x42, 0x52, 0x58, 0x4e, 0x40, 0x37, 0x3e, 0x46, 0x48, 0x41, 0x35, 0x2c, 0x36, 0x4d, 0x5f, 0x5e, 0x5f, 0x60, 0x5f, 0x61, 0x6b, 0x76, 0x68, 0x6a, 0x63, 0x55, 0x50, 0x53, 0x50, 0x49, 0x3e, 0x39, 0x3e, 0x57, 0x72, 0x7b, 0x72, 0x66, 0x68, 0x69, 0x68, 0x69, 0x6d, 0x71, 0x72, 0x70, 0x68, 0x6e, 0x78, 0x82, 0x88, 0x85, 0x7e, 0x78, 0x6e, 0x6d, 0x70, 0x76, 0x77, 0x72, 0x6d, 0x6b, 0x69, 0x6e, 0x77, 0x7f, 0x7e, 0x77, 0x72, 0x72, 0x75, 0x6c, 0x68, 0x6a, 0x68, 0x62, 0x62, 0x69, 0x5d, 0x5d, 0x5d, 0x61, 0x68, 0x73, 0x80, 0x88, 0x8f, 0x94, 0x9b, 0x9f, 0xa2, 0xa5, 0xaa, 0xad, 0xae, 0xac, 0xa8, 0xa5, 0xa4, 0xa2, 0xa1, 0xa0, 0xa4, 0xac, 0xb1, 0xb0, 0xae, 0xb0, 0xb2, 0xb3, 0xb1, 0xb1, 0xb0, 0xaf, 0xad, 0xad, 0xaf, 0xb1, 0xb3, 0xb0, 0xac, 0xaa, 0xab, 0xac, 0xac, 0xab, 0xab, 0xab, 0xad, 0xb0, 0xb2, 0xaf, 0xa7, 0xa0, 0x9f, 0xa8, 0xaf, 0xac, 0xa3, 0xa0, 0xa8, 0xb1, 0xb6, 0xb3, 0xb0, 0xb0, 0xb1, 0xb0, 0xab, 0xa6, 0xa0, 0xa1, 0xa3, 0xa8, 0xae, 0xb2, 0xb3, 0xb3, 0xb1, 0xb4, 0xb6, 0xb5, 0xb1, 0xaf, 0xaf, 0xb1, 0xb3, 0xb1, 0xaf, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xab, 0xa9, 0xa8, 0xa8, 0xa9, 0xaa, 0xab, 0xa9, 0xa7, 0xa6, 0xa6, 0xa6, 0xa8, 0xaa, 0xac, 0xab, 0xaa, 0xa5, 0x9f, 0x9a, 0x9b, 0xa1, 0xa5, 0xa3, 0xa0, 0x99, 0x95, 0x90, 0x8e, 0x8f, 0x93, 0x96, 0x98, 0x98, 0x9b, 0xa1, 0xa7, 0xab, 0xac, 0xa9, 0xa6, 0xa5, 0xa4, 0xa1, 0x9c, 0x95, 0x8e, 0x89, 0x87, 0x8b, 0x89, 0x88, 0x88, 0x85, 0x7e, 0x78, 0x76, 0x73, 0x72, 0x6c, 0x66, 0x64, 0x65, 0x62, 0x5d, 0x58, 0x5a, 0x5a, 0x5b, 0x65, 0x71, 0x75, 0x70, 0x63, 0x6d, 0x72, 0x7b, 0x83, 0x7d, 0x7c, 0x8c, 0xca, 0xe4, 0xfa, 0xfd, 0xfc, 0xff, 0xff, 0xfb, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfd, 0xfd, 0xfa, 0xf9, 0xf7, 0xf4, 0xf0, 0xec, 0xe9, 0xe7, 0xe7, 0xe4, 0xe1, 0xdf, 0xe0, 0xe2, 0xe3, 0xe4, 0xe6, 0xe8, 0xea, 0xec, 0xed, 0xf0, 0xf4, 0xf7, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xfa, 0xfc, 0xfd, 0xf5, 0xe4, 0xce, 0xbd, 0xb5, 0xb3, 0xb2, 0xab, 0xaa, 0xaa, 0xa8, 0xa5, 0xa1, 0x9d, 0x9a, 0x97, 0x90, 0x8b, 0x8a, 0x87, 0x80, 0x79, 0x77, 0x70, 0x6c, 0x67, 0x64, 0x64, 0x63, 0x60, 0x5d, 0x5d, 0x5c, 0x5a, 0x58, 0x57, 0x56, 0x56, 0x57, 0x54, 0x54, 0x54, 0x54, 0x53, 0x53, 0x53, 0x53, 0x52, 0x51, 0x4f, 0x4e, 0x4f, 0x51, 0x53, 0x55, 0x54, 0x55, 0x56, 0x55, 0x53, 0x53, 0x54, 0x55, 0x55, 0x55, 0x55, 0x54, 0x54, 0x53, 0x53, 0x52, 0x54, 0x54, 0x54, 0x54, 0x54, 0x53, 0x53, 0x53, 0x55, 0x56, 0x56, 0x54, 0x52, 0x50, 0x50, 0x50, 0x53, 0x56, 0x5c, 0x62, 0x66, 0x6a, 0x6e, 0x70, 0x77, 0x6a, 0x70, 0x67, 0x49, 0x35, 0x40, 0x62, 0x6f, 0x7a, 0x7d, 0x7c, 0x82, 0x87, 0x89, 0x8d, 0x90, 0x8e, 0x8d, 0x94, 0xa8, 0xbd, 0xc4, 0xc0, 0xc2, 0xc2, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc2, 0xbb, 0xb7, 0xaf, 0x96, 0x78, 0x6b, 0x6e, 0x70, 0x70, 0x6f, 0x6c, 0x67, 0x64, 0x66, 0x6b, 0x6e, 0x6b, 0x6e, 0x73, 0x70, 0x62, 0x56, 0x53, 0x55, 0x55, 0x5b, 0x69, 0x76, 0x74, 0x66, 0x59, 0x54, 0x59, 0x66, 0x72, 0x73, 0x69, 0x5e, 0x5a, 0x5d, 0x62, 0x62, 0x67, 0x60, 0x53, 0x5a, 0x5e, 0x59, 0x4f, 0x4f, 0x4b, 0x4b, 0x4e, 0x4f, 0x5a, 0x64, 0x67, 0x67, 0x60, 0x57, 0x52, 0x54, 0x58, 0x5d, 0x58, 0x58, 0x64, 0x79, 0x8c, 0x96, 0x9a, 0x9f, 0x9d, 0x9b, 0x98, 0x95, 0x93, 0x92, 0x92, 0x8f, 0x91, 0x91, 0x8e, 0x8c, 0x8d, 0x8f, 0x8e, 0x8c, 0x8a, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x76, 0x7b, 0x79, 0x73, 0x76, 0x87, 0x97, 0x9f, 0x8d, 0x7d, 0x71, 0x73, 0x79, 0x7c, 0x83, 0x8c, 0x95, 0x7e, 0x60, 0x4d, 0x4a, 0x4c, 0x4b, 0x47, 0x43, 0x50, 0x5a, 0x64, 0x6c, 0x68, 0x5c, 0x56, 0x60, 0x61, 0x75, 0x93, 0x9e, 0x92, 0x89, 0x8b, 0x7f, 0x75, 0x69, 0x4e, 0x2d, 0x23, 0x24, 0x1d, 0x26, 0x31, 0x3c, 0x44, 0x42, 0x38, 0x3d, 0x4f, 0x58, 0x4f, 0x56, 0x5f, 0x71, 0x66, 0x57, 0x43, 0x47, 0x54, 0x63, 0x6a, 0x6a, 0x64, 0x5c, 0x55, 0x41, 0x3f, 0x48, 0x58, 0x5c, 0x54, 0x53, 0x5a, 0x57, 0x69, 0x70, 0x67, 0x5c, 0x4f, 0x43, 0x3f, 0x4d, 0x52, 0x51, 0x43, 0x33, 0x32, 0x45, 0x59, 0x67, 0x6f, 0x6e, 0x60, 0x55, 0x59, 0x60, 0x62, 0x5f, 0x60, 0x55, 0x52, 0x4e, 0x48, 0x49, 0x42, 0x42, 0x35, 0x40, 0x64, 0x78, 0x6e, 0x62, 0x62, 0x6b, 0x66, 0x61, 0x64, 0x6e, 0x77, 0x77, 0x72, 0x67, 0x6e, 0x79, 0x84, 0x89, 0x87, 0x7f, 0x79, 0x69, 0x6e, 0x74, 0x77, 0x77, 0x76, 0x75, 0x74, 0x7a, 0x80, 0x89, 0x8d, 0x88, 0x7d, 0x78, 0x79, 0x75, 0x6d, 0x66, 0x63, 0x61, 0x62, 0x69, 0x71, 0x8c, 0x8e, 0x90, 0x92, 0x94, 0x97, 0x9a, 0x9c, 0xa9, 0xaa, 0xaa, 0xa6, 0xa0, 0x9c, 0x9a, 0x9b, 0x9e, 0xa2, 0xa9, 0xb1, 0xb6, 0xb6, 0xb3, 0xb0, 0xb2, 0xb6, 0xb8, 0xb5, 0xb2, 0xb2, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xae, 0xab, 0xaa, 0xa9, 0xaa, 0xb1, 0xaf, 0xad, 0xad, 0xaf, 0xb0, 0xb1, 0xb0, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xab, 0xa4, 0x9f, 0x9f, 0xa6, 0xac, 0xa8, 0xa1, 0x9e, 0xa4, 0xab, 0xac, 0xaa, 0xaa, 0xab, 0xad, 0xad, 0xab, 0xa8, 0xa8, 0xa9, 0xaa, 0xac, 0xaf, 0xb1, 0xb1, 0xb0, 0xab, 0xad, 0xaf, 0xb0, 0xae, 0xad, 0xae, 0xaf, 0xb1, 0xb0, 0xaf, 0xad, 0xac, 0xab, 0xab, 0xab, 0xa8, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa8, 0xa8, 0xaa, 0xac, 0xaf, 0xaf, 0xad, 0xaa, 0xb0, 0xaf, 0xac, 0xa7, 0xa1, 0x9b, 0x98, 0x96, 0xa5, 0xa3, 0xa1, 0xa2, 0xa5, 0xa8, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xad, 0xaf, 0xae, 0xad, 0xab, 0xa0, 0x9b, 0x93, 0x8e, 0x8d, 0x8f, 0x93, 0x95, 0x9f, 0xa3, 0xa8, 0xac, 0xad, 0xa9, 0xa3, 0x9e, 0x9b, 0x98, 0x96, 0x93, 0x8b, 0x7f, 0x73, 0x6e, 0x67, 0x66, 0x64, 0x62, 0x65, 0x69, 0x68, 0x64, 0x6a, 0x6e, 0x6d, 0x69, 0x68, 0x6b, 0x69, 0x63, 0x5f, 0x66, 0x70, 0x77, 0x73, 0x76, 0x9c, 0xce, 0xef, 0xfb, 0xff, 0xfe, 0xfb, 0xfe, 0xfe, 0xfa, 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf8, 0xf5, 0xf2, 0xef, 0xee, 0xe8, 0xe5, 0xe1, 0xde, 0xdd, 0xde, 0xdf, 0xdf, 0xdf, 0xe1, 0xe3, 0xe4, 0xe6, 0xe8, 0xec, 0xef, 0xf5, 0xf7, 0xf9, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xed, 0xfc, 0xff, 0xf5, 0xd6, 0xbc, 0xaf, 0xad, 0xba, 0xa6, 0x9f, 0xab, 0xad, 0x9f, 0x9c, 0xa6, 0x9d, 0x98, 0x93, 0x91, 0x8d, 0x86, 0x80, 0x7f, 0x7c, 0x76, 0x6f, 0x69, 0x66, 0x63, 0x61, 0x5f, 0x61, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x56, 0x56, 0x56, 0x54, 0x53, 0x52, 0x51, 0x51, 0x53, 0x54, 0x55, 0x57, 0x58, 0x59, 0x58, 0x56, 0x56, 0x56, 0x58, 0x57, 0x57, 0x57, 0x57, 0x56, 0x56, 0x56, 0x55, 0x56, 0x56, 0x56, 0x56, 0x56, 0x55, 0x55, 0x55, 0x57, 0x57, 0x57, 0x55, 0x53, 0x52, 0x52, 0x53, 0x56, 0x5a, 0x5f, 0x65, 0x69, 0x6c, 0x6f, 0x71, 0x73, 0x6d, 0x76, 0x73, 0x5c, 0x44, 0x46, 0x66, 0x72, 0x7a, 0x7d, 0x7e, 0x84, 0x87, 0x88, 0x8e, 0x8e, 0x8e, 0x8f, 0x95, 0xa6, 0xb9, 0xc1, 0xbf, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xc0, 0xbf, 0xbe, 0xba, 0xb7, 0xb7, 0xb5, 0xa5, 0x89, 0x6f, 0x63, 0x6d, 0x6e, 0x6e, 0x69, 0x64, 0x64, 0x67, 0x6a, 0x6e, 0x6c, 0x6d, 0x70, 0x6b, 0x5f, 0x56, 0x54, 0x53, 0x5a, 0x5d, 0x5d, 0x69, 0x74, 0x6d, 0x5b, 0x48, 0x46, 0x48, 0x4e, 0x53, 0x57, 0x60, 0x6a, 0x71, 0x77, 0x75, 0x71, 0x5f, 0x4f, 0x5a, 0x66, 0x58, 0x4b, 0x4b, 0x4c, 0x4f, 0x51, 0x4d, 0x55, 0x63, 0x64, 0x63, 0x5c, 0x53, 0x4f, 0x52, 0x56, 0x5c, 0x59, 0x5f, 0x71, 0x85, 0x91, 0x96, 0x98, 0x99, 0x9b, 0x9f, 0xa2, 0xa1, 0x9c, 0x97, 0x93, 0x92, 0x8f, 0x89, 0x83, 0x84, 0x88, 0x8b, 0x8b, 0x8e, 0x8c, 0x89, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x81, 0x79, 0x6f, 0x6c, 0x73, 0x86, 0x9d, 0xad, 0xbc, 0xb6, 0xad, 0xa0, 0x8d, 0x7a, 0x73, 0x75, 0x7d, 0x6d, 0x55, 0x43, 0x3e, 0x4d, 0x6b, 0x85, 0x8a, 0x87, 0x7b, 0x6e, 0x6b, 0x6d, 0x78, 0x88, 0x8d, 0x95, 0x9b, 0x9a, 0x97, 0x9c, 0xa6, 0xae, 0xb5, 0xb8, 0xb3, 0x8e, 0x52, 0x25, 0x18, 0x19, 0x26, 0x2e, 0x2f, 0x2c, 0x2d, 0x31, 0x40, 0x53, 0x5a, 0x58, 0x5e, 0x5c, 0x68, 0x63, 0x5d, 0x4f, 0x52, 0x59, 0x61, 0x65, 0x62, 0x58, 0x46, 0x38, 0x38, 0x47, 0x58, 0x60, 0x61, 0x61, 0x61, 0x62, 0x64, 0x70, 0x74, 0x6e, 0x63, 0x55, 0x50, 0x56, 0x51, 0x4e, 0x47, 0x3b, 0x2f, 0x32, 0x48, 0x5f, 0x7a, 0x76, 0x7a, 0x7c, 0x6f, 0x5a, 0x54, 0x5d, 0x65, 0x64, 0x60, 0x65, 0x5e, 0x4d, 0x4c, 0x4b, 0x40, 0x44, 0x52, 0x64, 0x69, 0x62, 0x5f, 0x63, 0x75, 0x6c, 0x62, 0x64, 0x72, 0x7e, 0x7d, 0x76, 0x6b, 0x71, 0x7b, 0x83, 0x86, 0x82, 0x79, 0x73, 0x75, 0x81, 0x8a, 0x88, 0x84, 0x85, 0x88, 0x89, 0x87, 0x86, 0x82, 0x79, 0x6e, 0x67, 0x69, 0x70, 0x74, 0x74, 0x75, 0x78, 0x7d, 0x86, 0x91, 0x99, 0x9e, 0xa2, 0xa7, 0xac, 0xae, 0xaf, 0xaf, 0xb0, 0xa3, 0xa5, 0xa7, 0xa8, 0xa9, 0xaa, 0xad, 0xb0, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb5, 0xb3, 0xb0, 0xb3, 0xb4, 0xb3, 0xb0, 0xad, 0xad, 0xab, 0xa9, 0xac, 0xad, 0xae, 0xae, 0xac, 0xab, 0xab, 0xac, 0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa6, 0xa4, 0xa3, 0xa2, 0xa3, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa3, 0xa4, 0xa7, 0xa8, 0xa3, 0x9b, 0x98, 0x9a, 0x9e, 0xa1, 0xa1, 0xa2, 0xa3, 0xa4, 0xa3, 0xa2, 0xa1, 0x9e, 0x9f, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa4, 0xa5, 0xa7, 0xa8, 0xa8, 0xa8, 0xa8, 0xa7, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xab, 0xaa, 0xaa, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa6, 0xa6, 0xa5, 0xa9, 0xaa, 0xad, 0xb0, 0xb2, 0xb2, 0xb0, 0xad, 0xaa, 0xad, 0xb0, 0xb0, 0xaf, 0xaf, 0xb1, 0xb3, 0xb1, 0xb2, 0xb2, 0xaf, 0xac, 0xab, 0xad, 0xb0, 0xb0, 0xae, 0xac, 0xab, 0xac, 0xad, 0xae, 0xae, 0xad, 0xac, 0xac, 0xab, 0xaa, 0xa7, 0xa4, 0xa1, 0xa8, 0xa2, 0x9a, 0x97, 0x9a, 0xa1, 0xa7, 0xab, 0xac, 0xa4, 0x9b, 0x96, 0x93, 0x92, 0x94, 0x97, 0x94, 0x8e, 0x84, 0x7d, 0x7e, 0x82, 0x83, 0x81, 0x78, 0x7e, 0x81, 0x7d, 0x79, 0x77, 0x73, 0x6e, 0x76, 0x7c, 0x7e, 0x77, 0x7a, 0x9f, 0xd5, 0xf8, 0xff, 0xff, 0xfe, 0xfb, 0xfa, 0xfd, 0xfe, 0xfe, 0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xf8, 0xf6, 0xf5, 0xef, 0xec, 0xe7, 0xe3, 0xe1, 0xe0, 0xde, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xe1, 0xe3, 0xe6, 0xe8, 0xed, 0xf1, 0xf6, 0xfa, 0xfa, 0xf9, 0xf7, 0xf7, 0xfc, 0xf8, 0xf6, 0xf7, 0xf7, 0xea, 0xce, 0xb6, 0xaa, 0xb0, 0xaf, 0xa7, 0xa5, 0xaa, 0xa8, 0xa0, 0xa2, 0x9e, 0x99, 0x96, 0x90, 0x89, 0x85, 0x84, 0x86, 0x83, 0x7d, 0x76, 0x70, 0x6a, 0x65, 0x62, 0x62, 0x62, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x5b, 0x5b, 0x5b, 0x5b, 0x5a, 0x5a, 0x59, 0x59, 0x57, 0x57, 0x56, 0x56, 0x56, 0x56, 0x56, 0x57, 0x57, 0x57, 0x58, 0x57, 0x56, 0x56, 0x56, 0x57, 0x5a, 0x5a, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x5a, 0x59, 0x58, 0x56, 0x54, 0x54, 0x55, 0x57, 0x5b, 0x5f, 0x64, 0x69, 0x6c, 0x6e, 0x70, 0x72, 0x70, 0x6f, 0x77, 0x79, 0x6d, 0x53, 0x4c, 0x6b, 0x7a, 0x7e, 0x7f, 0x82, 0x87, 0x87, 0x88, 0x8f, 0x8d, 0x8f, 0x90, 0x95, 0xa2, 0xb2, 0xba, 0xb9, 0xbb, 0xbd, 0xbf, 0xc0, 0xc1, 0xbf, 0xbd, 0xbc, 0xb5, 0xb5, 0xb6, 0xb9, 0xb5, 0x9f, 0x7c, 0x61, 0x6c, 0x6f, 0x6e, 0x68, 0x64, 0x67, 0x69, 0x69, 0x6d, 0x6b, 0x6c, 0x6c, 0x66, 0x5c, 0x57, 0x58, 0x59, 0x5e, 0x5d, 0x59, 0x62, 0x70, 0x6f, 0x64, 0x6a, 0x67, 0x64, 0x62, 0x5b, 0x53, 0x53, 0x59, 0x65, 0x6f, 0x71, 0x6f, 0x5f, 0x4d, 0x53, 0x59, 0x54, 0x4a, 0x4f, 0x51, 0x50, 0x4c, 0x49, 0x54, 0x59, 0x5a, 0x58, 0x53, 0x4e, 0x4d, 0x52, 0x57, 0x5a, 0x59, 0x63, 0x78, 0x8a, 0x90, 0x92, 0x95, 0x9b, 0x9b, 0x9c, 0x9c, 0x9b, 0x99, 0x97, 0x96, 0x90, 0x8c, 0x88, 0x87, 0x8c, 0x93, 0x95, 0x94, 0x90, 0x8e, 0x8b, 0x88, 0x86, 0x84, 0x82, 0x80, 0x79, 0x7a, 0x7d, 0x7c, 0x76, 0x76, 0x89, 0xa0, 0xab, 0xa5, 0xa1, 0xa4, 0xa8, 0xa0, 0x8d, 0x7b, 0x74, 0x62, 0x59, 0x63, 0x72, 0x76, 0x72, 0x6f, 0x77, 0x7b, 0x7d, 0x82, 0x8a, 0x8f, 0x9a, 0xac, 0xba, 0xbd, 0xb5, 0xa1, 0x90, 0x8c, 0x8c, 0x8c, 0xa1, 0xb7, 0xc2, 0xaa, 0x71, 0x35, 0x1b, 0x20, 0x1a, 0x29, 0x31, 0x30, 0x33, 0x37, 0x3b, 0x42, 0x4a, 0x4f, 0x5b, 0x5d, 0x6c, 0x69, 0x61, 0x4e, 0x43, 0x51, 0x61, 0x68, 0x63, 0x56, 0x45, 0x39, 0x2e, 0x3e, 0x4e, 0x55, 0x56, 0x59, 0x5f, 0x65, 0x6a, 0x73, 0x79, 0x77, 0x67, 0x4b, 0x3c, 0x41, 0x4c, 0x47, 0x42, 0x3e, 0x36, 0x32, 0x3c, 0x4b, 0x5f, 0x64, 0x6b, 0x6d, 0x67, 0x5f, 0x5b, 0x5b, 0x61, 0x64, 0x5b, 0x53, 0x45, 0x3b, 0x42, 0x44, 0x40, 0x48, 0x51, 0x55, 0x57, 0x58, 0x57, 0x55, 0x7c, 0x74, 0x6a, 0x67, 0x6f, 0x78, 0x7a, 0x77, 0x75, 0x79, 0x7f, 0x83, 0x82, 0x7d, 0x75, 0x70, 0x7f, 0x8e, 0x96, 0x8d, 0x83, 0x83, 0x87, 0x89, 0x80, 0x7b, 0x71, 0x65, 0x5e, 0x5e, 0x66, 0x6e, 0x7b, 0x84, 0x8e, 0x96, 0x9d, 0xa5, 0xab, 0xac, 0xae, 0xae, 0xad, 0xaa, 0xa6, 0xa3, 0xa1, 0xa1, 0xa6, 0xa8, 0xab, 0xad, 0xb0, 0xb3, 0xb8, 0xbb, 0xb7, 0xb5, 0xb3, 0xb2, 0xb3, 0xb4, 0xb4, 0xb4, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xae, 0xab, 0xa8, 0xa8, 0xa9, 0xaa, 0xab, 0xaa, 0xaa, 0xac, 0xad, 0xa9, 0xa7, 0xa4, 0xa1, 0x9f, 0x9d, 0x9c, 0x9c, 0x9e, 0xa0, 0xa2, 0xa3, 0xa3, 0xa5, 0xa8, 0xab, 0xb0, 0xb1, 0xaf, 0xab, 0xa7, 0xa5, 0xa6, 0xa8, 0xaa, 0xac, 0xad, 0xac, 0xa9, 0xa6, 0xa5, 0xa4, 0xa7, 0xa9, 0xac, 0xac, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xac, 0xaa, 0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xae, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xaf, 0xaa, 0xac, 0xae, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xab, 0xac, 0xaf, 0xb1, 0xb2, 0xb3, 0xb5, 0xb6, 0xb7, 0xb9, 0xb9, 0xb5, 0xb1, 0xae, 0xb0, 0xb2, 0xb2, 0xaf, 0xab, 0xa9, 0xaa, 0xac, 0xad, 0xae, 0xad, 0xac, 0xab, 0xac, 0xad, 0xad, 0xad, 0xac, 0xa4, 0xa4, 0xa6, 0xaa, 0xac, 0xa9, 0xa2, 0x9b, 0x93, 0x95, 0x9a, 0xa1, 0xa4, 0xa2, 0x9e, 0x9d, 0x9d, 0x97, 0x90, 0x8e, 0x91, 0x95, 0x95, 0x93, 0x9f, 0x98, 0x89, 0x7a, 0x75, 0x7c, 0x86, 0x8d, 0x94, 0x89, 0x87, 0x8f, 0xac, 0xde, 0xfc, 0xf8, 0xfc, 0xf9, 0xf8, 0xfb, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfb, 0xfa, 0xf8, 0xf7, 0xf6, 0xf3, 0xee, 0xe9, 0xe6, 0xe3, 0xe0, 0xde, 0xe0, 0xdf, 0xde, 0xdd, 0xdd, 0xdf, 0xe1, 0xe2, 0xe6, 0xea, 0xf0, 0xf5, 0xf7, 0xf7, 0xf7, 0xf7, 0xf9, 0xf6, 0xf3, 0xf3, 0xf7, 0xf7, 0xef, 0xe4, 0xc2, 0xb6, 0xae, 0xb0, 0xae, 0xa7, 0xa6, 0xab, 0xa6, 0xa4, 0xa0, 0x9b, 0x94, 0x8d, 0x89, 0x88, 0x87, 0x89, 0x89, 0x86, 0x7f, 0x76, 0x6e, 0x69, 0x65, 0x64, 0x62, 0x60, 0x5f, 0x5f, 0x5f, 0x5f, 0x5e, 0x5d, 0x5d, 0x5d, 0x5c, 0x5c, 0x5b, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x59, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x57, 0x57, 0x57, 0x57, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5b, 0x5b, 0x5b, 0x5c, 0x5b, 0x5a, 0x58, 0x56, 0x57, 0x59, 0x5b, 0x60, 0x63, 0x68, 0x6b, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x74, 0x77, 0x78, 0x76, 0x60, 0x54, 0x71, 0x82, 0x85, 0x84, 0x86, 0x89, 0x87, 0x87, 0x8f, 0x8f, 0x8f, 0x8f, 0x93, 0xa0, 0xae, 0xb3, 0xb0, 0xb8, 0xba, 0xbd, 0xbf, 0xbf, 0xbe, 0xbb, 0xba, 0xb7, 0xb7, 0xb6, 0xb8, 0xbb, 0xb0, 0x8f, 0x70, 0x6c, 0x70, 0x6f, 0x69, 0x68, 0x6c, 0x6c, 0x68, 0x6d, 0x6e, 0x70, 0x6f, 0x68, 0x5f, 0x5d, 0x5f, 0x63, 0x5d, 0x5b, 0x60, 0x65, 0x66, 0x68, 0x6a, 0x74, 0x76, 0x7b, 0x80, 0x7a, 0x6b, 0x61, 0x5e, 0x53, 0x5a, 0x5b, 0x61, 0x5d, 0x53, 0x56, 0x55, 0x57, 0x53, 0x5c, 0x5c, 0x53, 0x4c, 0x4c, 0x5d, 0x59, 0x59, 0x56, 0x51, 0x4d, 0x4e, 0x52, 0x57, 0x5e, 0x5b, 0x64, 0x79, 0x88, 0x8d, 0x91, 0x97, 0x9a, 0x99, 0x96, 0x93, 0x90, 0x8e, 0x8c, 0x8b, 0x79, 0x7d, 0x83, 0x8a, 0x92, 0x98, 0x97, 0x93, 0x91, 0x8f, 0x8b, 0x89, 0x87, 0x85, 0x83, 0x81, 0x7b, 0x79, 0x75, 0x69, 0x59, 0x54, 0x64, 0x79, 0x81, 0x85, 0x8a, 0x8c, 0x8d, 0x8c, 0x86, 0x7e, 0x58, 0x52, 0x54, 0x5b, 0x55, 0x46, 0x3d, 0x40, 0x48, 0x4d, 0x58, 0x6e, 0x86, 0x93, 0x9d, 0xaa, 0xb1, 0xbb, 0xc7, 0xc6, 0xad, 0x86, 0x65, 0x55, 0x85, 0xa3, 0xb5, 0xae, 0x8f, 0x5b, 0x33, 0x2a, 0x1e, 0x26, 0x28, 0x29, 0x2f, 0x35, 0x3c, 0x45, 0x54, 0x51, 0x59, 0x60, 0x70, 0x64, 0x51, 0x38, 0x44, 0x51, 0x5e, 0x63, 0x60, 0x58, 0x4f, 0x49, 0x55, 0x49, 0x43, 0x48, 0x49, 0x48, 0x53, 0x63, 0x6c, 0x6e, 0x6a, 0x62, 0x57, 0x49, 0x45, 0x4d, 0x49, 0x3c, 0x33, 0x33, 0x36, 0x3c, 0x4d, 0x60, 0x5f, 0x64, 0x68, 0x66, 0x65, 0x64, 0x60, 0x5b, 0x69, 0x6d, 0x57, 0x42, 0x3d, 0x43, 0x47, 0x35, 0x3b, 0x3a, 0x3a, 0x40, 0x48, 0x48, 0x39, 0x27, 0x76, 0x75, 0x6f, 0x67, 0x65, 0x69, 0x6f, 0x72, 0x7a, 0x7d, 0x81, 0x83, 0x82, 0x7f, 0x7c, 0x79, 0x84, 0x90, 0x93, 0x85, 0x78, 0x76, 0x7a, 0x7c, 0x82, 0x81, 0x81, 0x83, 0x89, 0x90, 0x95, 0x97, 0x9c, 0xa2, 0xa7, 0xa8, 0xa8, 0xaa, 0xa9, 0xa6, 0xa3, 0xa4, 0xa6, 0xa8, 0xaa, 0xae, 0xb2, 0xb5, 0xb3, 0xb3, 0xb3, 0xb2, 0xb1, 0xb1, 0xb2, 0xb3, 0xae, 0xaf, 0xb1, 0xb3, 0xb5, 0xb4, 0xb2, 0xb0, 0xb3, 0xb2, 0xb3, 0xb7, 0xb9, 0xb7, 0xb3, 0xb0, 0xac, 0xac, 0xab, 0xa9, 0xa7, 0xa6, 0xa7, 0xa8, 0xad, 0xab, 0xa9, 0xa6, 0xa5, 0xa6, 0xa8, 0xa9, 0xac, 0xad, 0xac, 0xaa, 0xa8, 0xa8, 0xaa, 0xad, 0xad, 0xac, 0xab, 0xaa, 0xaa, 0xac, 0xae, 0xb0, 0xac, 0xaf, 0xb1, 0xb0, 0xad, 0xaa, 0xa9, 0xa9, 0xa3, 0xa5, 0xa7, 0xa8, 0xa7, 0xa8, 0xab, 0xad, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xae, 0xac, 0xaf, 0xaf, 0xaf, 0xae, 0xab, 0xa8, 0xa4, 0xa2, 0xa9, 0xab, 0xad, 0xaf, 0xb0, 0xaf, 0xae, 0xae, 0xaa, 0xab, 0xad, 0xae, 0xb0, 0xb2, 0xb4, 0xb6, 0xb2, 0xaf, 0xae, 0xae, 0xb0, 0xb1, 0xae, 0xab, 0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb2, 0xb3, 0xb4, 0xaf, 0xb0, 0xb3, 0xb6, 0xb8, 0xb7, 0xb4, 0xb1, 0xb5, 0xb4, 0xb5, 0xb5, 0xb5, 0xb3, 0xb0, 0xae, 0xaf, 0xad, 0xad, 0xb0, 0xb3, 0xb5, 0xb3, 0xb1, 0xae, 0xa6, 0x9e, 0x9b, 0x9a, 0x9b, 0x9e, 0xa3, 0xa9, 0xa6, 0xa3, 0xa2, 0x9f, 0x98, 0x8e, 0x87, 0x91, 0x94, 0x96, 0x96, 0x94, 0x90, 0x89, 0x83, 0x8e, 0x80, 0x94, 0xc3, 0xe5, 0xf8, 0xfe, 0xf9, 0xfd, 0xfb, 0xfd, 0xff, 0xff, 0xfe, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xf9, 0xf8, 0xf7, 0xf4, 0xf0, 0xec, 0xe8, 0xe4, 0xe0, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xda, 0xdc, 0xdd, 0xde, 0xe2, 0xe5, 0xea, 0xef, 0xf2, 0xf5, 0xf8, 0xf9, 0xf2, 0xf9, 0xfd, 0xfa, 0xf5, 0xf3, 0xf4, 0xf6, 0xee, 0xd4, 0xba, 0xb0, 0xae, 0xac, 0xad, 0xb0, 0xae, 0xad, 0xaa, 0xa4, 0x9d, 0x97, 0x92, 0x90, 0x87, 0x8a, 0x8c, 0x8b, 0x87, 0x80, 0x7a, 0x77, 0x6f, 0x6c, 0x68, 0x65, 0x63, 0x62, 0x63, 0x64, 0x5f, 0x5f, 0x5f, 0x5e, 0x5d, 0x5d, 0x5c, 0x5c, 0x5e, 0x5e, 0x5e, 0x5e, 0x5d, 0x5c, 0x5b, 0x5a, 0x5c, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5a, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5c, 0x5c, 0x5b, 0x5b, 0x5b, 0x5c, 0x5c, 0x5c, 0x5c, 0x5d, 0x5d, 0x5d, 0x5c, 0x5a, 0x59, 0x5a, 0x5c, 0x5f, 0x64, 0x66, 0x6a, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x78, 0x79, 0x79, 0x79, 0x7d, 0x6d, 0x5c, 0x70, 0x86, 0x8a, 0x8a, 0x8a, 0x8b, 0x88, 0x87, 0x8f, 0x90, 0x8e, 0x8d, 0x92, 0xa2, 0xb2, 0xb5, 0xb0, 0xb4, 0xb6, 0xb9, 0xbb, 0xbb, 0xba, 0xb8, 0xb6, 0xb7, 0xb9, 0xb8, 0xb7, 0xbb, 0xb8, 0xa0, 0x84, 0x6d, 0x6d, 0x6b, 0x68, 0x6b, 0x70, 0x6f, 0x69, 0x6d, 0x71, 0x75, 0x74, 0x6e, 0x66, 0x64, 0x66, 0x64, 0x5f, 0x5f, 0x65, 0x67, 0x64, 0x63, 0x66, 0x5f, 0x5e, 0x61, 0x6a, 0x6f, 0x6e, 0x6f, 0x72, 0x61, 0x63, 0x5e, 0x61, 0x5f, 0x5c, 0x65, 0x67, 0x61, 0x5c, 0x63, 0x61, 0x5c, 0x59, 0x59, 0x66, 0x64, 0x61, 0x5d, 0x57, 0x53, 0x53, 0x56, 0x58, 0x61, 0x61, 0x6a, 0x7c, 0x88, 0x8c, 0x92, 0x99, 0x94, 0x95, 0x97, 0x97, 0x93, 0x8c, 0x84, 0x7f, 0x7a, 0x83, 0x8e, 0x96, 0x9a, 0x9a, 0x96, 0x92, 0x90, 0x8e, 0x8b, 0x88, 0x87, 0x85, 0x82, 0x81, 0x8b, 0x83, 0x77, 0x6d, 0x68, 0x66, 0x65, 0x63, 0x52, 0x4f, 0x4b, 0x4a, 0x54, 0x67, 0x78, 0x81, 0x88, 0x74, 0x62, 0x58, 0x4b, 0x37, 0x2b, 0x2a, 0x35, 0x48, 0x62, 0x7e, 0x8d, 0x87, 0x7a, 0x79, 0x97, 0xa8, 0xbf, 0xcb, 0xbe, 0x9e, 0x7e, 0x6e, 0x80, 0x9f, 0xb4, 0xb6, 0xae, 0x91, 0x6a, 0x56, 0x25, 0x21, 0x1b, 0x1e, 0x27, 0x2c, 0x36, 0x48, 0x5e, 0x4f, 0x52, 0x5a, 0x66, 0x53, 0x45, 0x3a, 0x52, 0x59, 0x61, 0x65, 0x68, 0x6c, 0x6c, 0x6b, 0x5b, 0x48, 0x40, 0x4c, 0x59, 0x5b, 0x5e, 0x64, 0x85, 0x90, 0x95, 0x98, 0xa3, 0xae, 0xb6, 0xbd, 0xb9, 0xa6, 0x8f, 0x7c, 0x66, 0x51, 0x47, 0x47, 0x56, 0x4c, 0x50, 0x60, 0x65, 0x5c, 0x59, 0x60, 0x4e, 0x51, 0x44, 0x43, 0x4f, 0x5a, 0x57, 0x3e, 0x36, 0x2e, 0x2a, 0x2f, 0x32, 0x2b, 0x1c, 0x10, 0x70, 0x74, 0x73, 0x69, 0x5f, 0x5f, 0x67, 0x6d, 0x70, 0x74, 0x79, 0x7e, 0x80, 0x81, 0x81, 0x82, 0x83, 0x89, 0x87, 0x7b, 0x71, 0x70, 0x75, 0x78, 0x7f, 0x80, 0x83, 0x8a, 0x96, 0xa1, 0xa6, 0xa5, 0xae, 0xab, 0xa7, 0xa4, 0xa4, 0xa5, 0xa8, 0xaa, 0xb0, 0xb1, 0xb2, 0xb1, 0xaf, 0xad, 0xac, 0xac, 0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xb1, 0xb0, 0xb2, 0xb6, 0xb8, 0xb5, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xac, 0xab, 0xac, 0xad, 0xb4, 0xb3, 0xb0, 0xad, 0xab, 0xab, 0xac, 0xae, 0xae, 0xaf, 0xae, 0xac, 0xa9, 0xa9, 0xab, 0xad, 0xa9, 0xa6, 0xa3, 0xa2, 0xa2, 0xa4, 0xa6, 0xa7, 0xa3, 0xa7, 0xab, 0xac, 0xac, 0xaa, 0xaa, 0xab, 0xae, 0xae, 0xaf, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xab, 0xab, 0xaa, 0xa9, 0xa7, 0xa5, 0xa3, 0xa2, 0xa9, 0xaa, 0xad, 0xaf, 0xaf, 0xae, 0xad, 0xab, 0xaa, 0xab, 0xad, 0xae, 0xb0, 0xb3, 0xb6, 0xb9, 0xb1, 0xae, 0xad, 0xb1, 0xb8, 0xbc, 0xba, 0xb7, 0xb1, 0xb0, 0xb0, 0xb1, 0xb3, 0xb3, 0xb2, 0xb1, 0xaf, 0xaf, 0xb0, 0xb3, 0xb6, 0xb7, 0xb7, 0xb6, 0xb0, 0xb2, 0xb6, 0xb9, 0xb9, 0xb5, 0xae, 0xa9, 0xa4, 0xa8, 0xaf, 0xb7, 0xbb, 0xba, 0xb5, 0xb0, 0xb5, 0xb4, 0xb5, 0xb6, 0xb3, 0xaa, 0xa1, 0x9d, 0x9e, 0x9c, 0x9e, 0xa5, 0xac, 0xb1, 0xb4, 0xb6, 0xa8, 0xa4, 0x9e, 0x99, 0x97, 0x96, 0x95, 0x93, 0x82, 0x9c, 0xca, 0xef, 0xfb, 0xfa, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfa, 0xf9, 0xf9, 0xf7, 0xf4, 0xf1, 0xee, 0xea, 0xe6, 0xe3, 0xde, 0xdc, 0xda, 0xd9, 0xda, 0xdd, 0xde, 0xdf, 0xe0, 0xe2, 0xe5, 0xe8, 0xec, 0xf1, 0xf6, 0xf9, 0xfc, 0xf8, 0xf4, 0xf4, 0xf8, 0xfa, 0xf5, 0xed, 0xf4, 0xf5, 0xe4, 0xc6, 0xb4, 0xb4, 0xb3, 0xac, 0xb2, 0xb2, 0xb0, 0xaa, 0xa5, 0xa1, 0x9b, 0x96, 0x8e, 0x8c, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x84, 0x79, 0x75, 0x70, 0x6a, 0x66, 0x64, 0x64, 0x64, 0x62, 0x62, 0x62, 0x61, 0x60, 0x5f, 0x5f, 0x5e, 0x61, 0x61, 0x61, 0x61, 0x60, 0x5f, 0x5f, 0x5e, 0x5e, 0x5d, 0x5d, 0x5d, 0x5d, 0x5e, 0x5d, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5d, 0x5d, 0x5d, 0x5e, 0x5e, 0x5e, 0x5e, 0x5f, 0x5f, 0x5e, 0x5d, 0x5e, 0x60, 0x62, 0x67, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x71, 0x73, 0x76, 0x77, 0x7b, 0x7a, 0x7f, 0x77, 0x62, 0x65, 0x7d, 0x89, 0x8f, 0x8e, 0x8e, 0x8b, 0x8a, 0x8e, 0x90, 0x8d, 0x8c, 0x93, 0xa6, 0xb8, 0xbc, 0xb7, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb8, 0xba, 0xb9, 0xbb, 0xbb, 0xab, 0x97, 0x76, 0x6e, 0x66, 0x67, 0x6e, 0x72, 0x70, 0x6b, 0x68, 0x6d, 0x72, 0x72, 0x6c, 0x66, 0x64, 0x64, 0x62, 0x68, 0x6a, 0x68, 0x6a, 0x6e, 0x6a, 0x62, 0x61, 0x59, 0x55, 0x56, 0x58, 0x5b, 0x62, 0x6a, 0x6d, 0x76, 0x74, 0x72, 0x68, 0x5f, 0x67, 0x69, 0x63, 0x5b, 0x5c, 0x5a, 0x5f, 0x66, 0x61, 0x62, 0x60, 0x5f, 0x5c, 0x5a, 0x5a, 0x5b, 0x5d, 0x5f, 0x5e, 0x64, 0x70, 0x7f, 0x89, 0x8d, 0x90, 0x93, 0x99, 0x99, 0x99, 0x99, 0x97, 0x93, 0x90, 0x8e, 0x99, 0x9f, 0xa4, 0xa4, 0xa2, 0x9e, 0x99, 0x94, 0x8e, 0x8c, 0x89, 0x87, 0x86, 0x84, 0x82, 0x81, 0x76, 0x78, 0x77, 0x73, 0x6f, 0x6b, 0x64, 0x5d, 0x65, 0x69, 0x75, 0x86, 0x91, 0x8b, 0x77, 0x65, 0x6c, 0x6f, 0x73, 0x6c, 0x56, 0x3f, 0x3a, 0x42, 0x5f, 0x76, 0x8c, 0x95, 0x95, 0x8e, 0x8c, 0x93, 0x87, 0x94, 0xa7, 0xba, 0xc7, 0xc1, 0xa3, 0x84, 0x76, 0x91, 0xa3, 0xa3, 0x9f, 0x94, 0x7f, 0x6d, 0x45, 0x39, 0x2a, 0x26, 0x28, 0x28, 0x31, 0x45, 0x50, 0x44, 0x4b, 0x52, 0x56, 0x3e, 0x3b, 0x40, 0x51, 0x65, 0x76, 0x73, 0x64, 0x59, 0x5a, 0x5e, 0x5e, 0x4d, 0x3b, 0x3c, 0x55, 0x75, 0x8b, 0x93, 0x86, 0x98, 0xa3, 0xa9, 0xb6, 0xbf, 0xc1, 0xc2, 0xc2, 0xc4, 0xc7, 0xc9, 0xc1, 0xb0, 0x9f, 0x94, 0x72, 0x67, 0x5e, 0x5c, 0x5d, 0x5b, 0x56, 0x52, 0x4b, 0x49, 0x44, 0x48, 0x40, 0x30, 0x33, 0x36, 0x42, 0x35, 0x29, 0x22, 0x1d, 0x1f, 0x2d, 0x3e, 0x71, 0x76, 0x75, 0x6c, 0x62, 0x5f, 0x63, 0x67, 0x65, 0x6a, 0x72, 0x79, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7c, 0x79, 0x75, 0x75, 0x79, 0x80, 0x86, 0x9b, 0x9c, 0x9c, 0x9e, 0xa4, 0xad, 0xaf, 0xad, 0xa4, 0x9d, 0x99, 0x9d, 0xa2, 0xa5, 0xaa, 0xb0, 0xaa, 0xab, 0xad, 0xaf, 0xaf, 0xb0, 0xb2, 0xb3, 0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xb5, 0xb1, 0xad, 0xab, 0xad, 0xb2, 0xb6, 0xb9, 0xaf, 0xac, 0xad, 0xb0, 0xb1, 0xad, 0xac, 0xad, 0xae, 0xb1, 0xb3, 0xb4, 0xb4, 0xb2, 0xb1, 0xb1, 0xb2, 0xb2, 0xb1, 0xaf, 0xab, 0xa8, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xaf, 0xb0, 0xb4, 0xb1, 0xad, 0xa9, 0xa8, 0xa9, 0xaa, 0xab, 0xaa, 0xad, 0xb1, 0xb3, 0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb0, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xb4, 0xb7, 0xb8, 0xb7, 0xb6, 0xb8, 0xb9, 0xb1, 0xb1, 0xb1, 0xb1, 0xb2, 0xb4, 0xb5, 0xb6, 0xb6, 0xb8, 0xba, 0xbb, 0xbb, 0xb8, 0xb6, 0xb4, 0xaf, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb3, 0xb4, 0xb1, 0xaf, 0xae, 0xb0, 0xb4, 0xb6, 0xb4, 0xb1, 0xb4, 0xb4, 0xb5, 0xb5, 0xb4, 0xb3, 0xb2, 0xb1, 0xb7, 0xb3, 0xb0, 0xae, 0xb0, 0xb3, 0xb7, 0xb9, 0xbb, 0xb7, 0xb4, 0xb2, 0xb4, 0xb9, 0xbd, 0xbf, 0xba, 0xb6, 0xb0, 0xac, 0xae, 0xb3, 0xba, 0xbe, 0xb9, 0xb3, 0xae, 0xad, 0xae, 0xae, 0xb1, 0xb4, 0xaa, 0xa4, 0xa0, 0xa1, 0xa2, 0xa5, 0xac, 0xb3, 0xb7, 0xb8, 0xb8, 0xb5, 0xad, 0xa2, 0x99, 0x95, 0xa9, 0xd8, 0xfb, 0xfe, 0xfb, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfc, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xfd, 0xfe, 0xfe, 0xff, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xf9, 0xf8, 0xf6, 0xf3, 0xef, 0xec, 0xe6, 0xe3, 0xdf, 0xdd, 0xdd, 0xde, 0xde, 0xde, 0xdd, 0xde, 0xe0, 0xe2, 0xe5, 0xe9, 0xef, 0xf2, 0xf5, 0xf7, 0xf7, 0xf3, 0xf1, 0xf3, 0xf7, 0xf8, 0xf5, 0xf2, 0xf5, 0xf5, 0xe0, 0xc1, 0xb5, 0xba, 0xb1, 0xb2, 0xb1, 0xae, 0xac, 0xa9, 0xa2, 0x9b, 0x98, 0x93, 0x8e, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x81, 0x7e, 0x7a, 0x74, 0x6f, 0x6a, 0x67, 0x66, 0x67, 0x67, 0x66, 0x66, 0x65, 0x64, 0x63, 0x63, 0x64, 0x64, 0x64, 0x63, 0x63, 0x63, 0x62, 0x62, 0x61, 0x5f, 0x5e, 0x5e, 0x60, 0x60, 0x5f, 0x5d, 0x5f, 0x5f, 0x5f, 0x5e, 0x5e, 0x5e, 0x5d, 0x5d, 0x5d, 0x5e, 0x5e, 0x5f, 0x5f, 0x60, 0x60, 0x60, 0x60, 0x61, 0x62, 0x62, 0x62, 0x62, 0x64, 0x65, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x72, 0x75, 0x75, 0x75, 0x7b, 0x79, 0x7d, 0x7d, 0x69, 0x5c, 0x6b, 0x83, 0x91, 0x92, 0x92, 0x91, 0x8d, 0x8d, 0x8f, 0x8e, 0x8e, 0x94, 0xa6, 0xb8, 0xbf, 0xbc, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb6, 0xb4, 0xb9, 0xbc, 0xbb, 0xbc, 0xbd, 0xb5, 0xa9, 0x8f, 0x7b, 0x6b, 0x6b, 0x72, 0x73, 0x70, 0x6e, 0x68, 0x6c, 0x6f, 0x6e, 0x69, 0x64, 0x62, 0x60, 0x63, 0x68, 0x6b, 0x6c, 0x6f, 0x73, 0x6f, 0x67, 0x67, 0x64, 0x63, 0x61, 0x5b, 0x55, 0x58, 0x60, 0x66, 0x73, 0x76, 0x77, 0x6c, 0x5f, 0x5f, 0x5b, 0x5a, 0x58, 0x5a, 0x54, 0x58, 0x63, 0x5e, 0x5a, 0x59, 0x58, 0x59, 0x5a, 0x5d, 0x5f, 0x61, 0x61, 0x5d, 0x68, 0x76, 0x7f, 0x87, 0x8e, 0x91, 0x91, 0x9f, 0x9d, 0x9b, 0x9a, 0x9b, 0x9e, 0xa1, 0xa4, 0xa5, 0xa6, 0xa4, 0xa0, 0x9c, 0x98, 0x93, 0x8e, 0x8d, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7c, 0x74, 0x66, 0x61, 0x6b, 0x79, 0x90, 0x94, 0x9b, 0x9e, 0x9b, 0x98, 0xa0, 0xab, 0x96, 0x8b, 0x7e, 0x71, 0x60, 0x4b, 0x37, 0x2c, 0x48, 0x68, 0x82, 0x86, 0x7f, 0x72, 0x69, 0x6a, 0x64, 0x72, 0x8c, 0xa9, 0xbb, 0xb1, 0x8f, 0x6f, 0x53, 0x64, 0x77, 0x7f, 0x81, 0x8b, 0x95, 0x94, 0x7f, 0x6e, 0x51, 0x3c, 0x36, 0x38, 0x44, 0x56, 0x50, 0x45, 0x4a, 0x4c, 0x50, 0x40, 0x47, 0x51, 0x57, 0x70, 0x89, 0x8e, 0x86, 0x83, 0x8a, 0x93, 0x91, 0x8f, 0x89, 0x7e, 0x6f, 0x5c, 0x45, 0x35, 0x2a, 0x33, 0x38, 0x3d, 0x4c, 0x5e, 0x71, 0x83, 0xa4, 0xad, 0xb8, 0xbf, 0xc2, 0xc0, 0xb9, 0xb2, 0xbe, 0xbd, 0xac, 0x93, 0x88, 0x85, 0x71, 0x55, 0x4a, 0x3e, 0x36, 0x43, 0x43, 0x39, 0x4d, 0x64, 0x5a, 0x44, 0x2d, 0x25, 0x2c, 0x3d, 0x55, 0x68, 0x75, 0x78, 0x75, 0x6d, 0x64, 0x60, 0x5f, 0x5f, 0x63, 0x6a, 0x73, 0x79, 0x7b, 0x7a, 0x79, 0x78, 0x87, 0x81, 0x7e, 0x82, 0x89, 0x92, 0x9c, 0xa4, 0xa1, 0xa7, 0xad, 0xaf, 0xaf, 0xae, 0xa9, 0xa2, 0xa8, 0xa1, 0xa2, 0xac, 0xb3, 0xb1, 0xb0, 0xb4, 0xb7, 0xb6, 0xb3, 0xaf, 0xac, 0xab, 0xad, 0xae, 0xaf, 0xaf, 0xb1, 0xb3, 0xb5, 0xb5, 0xb5, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb2, 0xaf, 0xac, 0xb5, 0xb2, 0xb1, 0xb3, 0xb3, 0xb1, 0xb2, 0xb6, 0xaf, 0xb3, 0xb6, 0xb7, 0xb4, 0xb0, 0xab, 0xa9, 0xaa, 0xad, 0xb0, 0xb0, 0xad, 0xab, 0xaa, 0xa9, 0xaf, 0xaf, 0xb1, 0xb2, 0xb4, 0xb5, 0xb6, 0xb6, 0xb3, 0xb1, 0xae, 0xac, 0xad, 0xaf, 0xb3, 0xb5, 0xb0, 0xb2, 0xb3, 0xb5, 0xb4, 0xb2, 0xaf, 0xad, 0xb0, 0xae, 0xab, 0xab, 0xac, 0xad, 0xac, 0xab, 0xab, 0xaf, 0xb2, 0xb2, 0xb0, 0xaf, 0xb1, 0xb3, 0xb1, 0xb0, 0xaf, 0xae, 0xaf, 0xb1, 0xb4, 0xb5, 0xb6, 0xb7, 0xb9, 0xb9, 0xb8, 0xb5, 0xb1, 0xae, 0xb7, 0xb8, 0xb9, 0xb7, 0xb3, 0xaf, 0xae, 0xae, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xae, 0xb1, 0xb4, 0xb5, 0xb4, 0xb3, 0xb4, 0xb5, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xab, 0xa9, 0xaa, 0xad, 0xb1, 0xb6, 0xb8, 0xb8, 0xb5, 0xb2, 0xb1, 0xb5, 0xb9, 0xbc, 0xba, 0xb6, 0xb2, 0xaf, 0xb2, 0xb0, 0xb0, 0xb3, 0xb5, 0xb5, 0xb6, 0xb8, 0xba, 0xb8, 0xb7, 0xb7, 0xb1, 0xa9, 0xa6, 0xa7, 0xaa, 0xb0, 0xb8, 0xbd, 0xbb, 0xb7, 0xb7, 0xb9, 0xe4, 0xf8, 0xff, 0xfb, 0xff, 0xff, 0xfc, 0xff, 0xfe, 0xff, 0xfe, 0xfc, 0xff, 0xff, 0xff, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfc, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xf8, 0xf4, 0xf1, 0xee, 0xe9, 0xe3, 0xde, 0xdc, 0xdb, 0xd9, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdf, 0xe2, 0xe7, 0xea, 0xf1, 0xf4, 0xf5, 0xf5, 0xf6, 0xf8, 0xf8, 0xf6, 0xf8, 0xf9, 0xf9, 0xf9, 0xfa, 0xf1, 0xd7, 0xbb, 0xb1, 0xb3, 0xb3, 0xb1, 0xb1, 0xb0, 0xa9, 0xa0, 0x9f, 0x9a, 0x94, 0x91, 0x90, 0x8e, 0x8a, 0x87, 0x87, 0x86, 0x84, 0x80, 0x7b, 0x75, 0x71, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x66, 0x65, 0x65, 0x65, 0x65, 0x65, 0x66, 0x65, 0x63, 0x62, 0x63, 0x64, 0x64, 0x63, 0x62, 0x61, 0x61, 0x61, 0x60, 0x60, 0x5f, 0x5f, 0x5e, 0x5e, 0x5f, 0x5f, 0x60, 0x60, 0x61, 0x61, 0x61, 0x62, 0x63, 0x64, 0x65, 0x65, 0x65, 0x66, 0x68, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x70, 0x73, 0x76, 0x7a, 0x78, 0x7e, 0x78, 0x7b, 0x83, 0x71, 0x5d, 0x5d, 0x7c, 0x92, 0x94, 0x95, 0x95, 0x90, 0x8c, 0x8f, 0x90, 0x90, 0x95, 0xa3, 0xb4, 0xbd, 0xbd, 0xbb, 0xba, 0xb8, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbd, 0xbd, 0xbb, 0xbc, 0xbf, 0xbd, 0xb7, 0xa8, 0x8c, 0x73, 0x71, 0x76, 0x75, 0x70, 0x6f, 0x6e, 0x71, 0x72, 0x6f, 0x6b, 0x67, 0x64, 0x63, 0x64, 0x5e, 0x61, 0x6c, 0x71, 0x6d, 0x6a, 0x6d, 0x6c, 0x6e, 0x70, 0x6c, 0x5f, 0x51, 0x50, 0x57, 0x62, 0x68, 0x65, 0x68, 0x67, 0x61, 0x61, 0x59, 0x53, 0x5b, 0x63, 0x56, 0x52, 0x5b, 0x59, 0x59, 0x5d, 0x5d, 0x5c, 0x5d, 0x5f, 0x5f, 0x5e, 0x5c, 0x62, 0x70, 0x7b, 0x80, 0x87, 0x91, 0x97, 0x96, 0x99, 0x9b, 0x9e, 0xa2, 0xa4, 0xa6, 0xa7, 0xa7, 0xa4, 0xa2, 0x9e, 0x9b, 0x9a, 0x9a, 0x94, 0x8e, 0x8c, 0x8b, 0x88, 0x87, 0x86, 0x85, 0x84, 0x82, 0x82, 0x79, 0x76, 0x74, 0x67, 0x58, 0x5b, 0x69, 0x53, 0x47, 0x42, 0x48, 0x52, 0x5c, 0x6c, 0x7b, 0x96, 0x9d, 0x9c, 0x88, 0x6a, 0x55, 0x50, 0x54, 0x68, 0x79, 0x7b, 0x6c, 0x5e, 0x54, 0x4d, 0x4a, 0x45, 0x4b, 0x5e, 0x70, 0x6d, 0x5f, 0x63, 0x74, 0x92, 0x8c, 0x8c, 0x84, 0x74, 0x74, 0x7e, 0x7f, 0x8d, 0x8b, 0x7a, 0x66, 0x5e, 0x5a, 0x57, 0x59, 0x4f, 0x41, 0x3f, 0x41, 0x57, 0x63, 0x7d, 0x8b, 0x96, 0x91, 0x89, 0x86, 0x8b, 0x91, 0x92, 0x8e, 0x8b, 0x88, 0x89, 0x83, 0x69, 0x45, 0x32, 0x33, 0x44, 0x44, 0x3c, 0x33, 0x2b, 0x24, 0x2c, 0x3f, 0x5a, 0x71, 0x8b, 0x9f, 0xad, 0xb6, 0xb2, 0xa9, 0xaf, 0xb4, 0xbc, 0xc7, 0xcc, 0xc1, 0xa6, 0x8d, 0x71, 0x4f, 0x31, 0x41, 0x5a, 0x62, 0x67, 0x65, 0x66, 0x4b, 0x33, 0x37, 0x51, 0x66, 0x66, 0x5d, 0x88, 0x89, 0x85, 0x7a, 0x6b, 0x61, 0x5f, 0x61, 0x6a, 0x77, 0x80, 0x80, 0x77, 0x6a, 0x6a, 0x78, 0x82, 0x86, 0x82, 0x82, 0x8c, 0x96, 0x9e, 0xa6, 0xa5, 0xa4, 0xa8, 0xad, 0xaa, 0xa1, 0x9d, 0x9e, 0xad, 0xb4, 0xb8, 0xb5, 0xb2, 0xb3, 0xb2, 0xb0, 0xb1, 0xb2, 0xb4, 0xb4, 0xb1, 0xad, 0xad, 0xaf, 0xb5, 0xb6, 0xb8, 0xb8, 0xb6, 0xb3, 0xaf, 0xac, 0xb6, 0xb7, 0xb7, 0xb4, 0xb0, 0xae, 0xae, 0xb0, 0xb3, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb2, 0xb1, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xac, 0xab, 0xab, 0xab, 0xad, 0xb0, 0xb1, 0xb0, 0xb0, 0xb3, 0xb4, 0xb4, 0xb3, 0xb2, 0xb2, 0xb5, 0xb7, 0xb6, 0xb2, 0xaf, 0xad, 0xa9, 0xa7, 0xab, 0xb1, 0xb4, 0xb0, 0xae, 0xb2, 0xb7, 0xb8, 0xb4, 0xb1, 0xb6, 0xb8, 0xba, 0xbb, 0xbb, 0xba, 0xb7, 0xb6, 0xb6, 0xb5, 0xb3, 0xb2, 0xb3, 0xb5, 0xb9, 0xbb, 0xbb, 0xb7, 0xb0, 0xab, 0xa9, 0xa9, 0xab, 0xac, 0xaa, 0xab, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xad, 0xad, 0xb2, 0xb8, 0xba, 0xb5, 0xae, 0xab, 0xac, 0xae, 0xb2, 0xb4, 0xb4, 0xb5, 0xb8, 0xb8, 0xb5, 0xb2, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xb0, 0xb3, 0xb4, 0xb5, 0xb7, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb3, 0xb1, 0xaf, 0xae, 0xb2, 0xb9, 0xbe, 0xba, 0xbc, 0xbe, 0xbe, 0xbb, 0xb9, 0xb9, 0xba, 0xba, 0xb6, 0xb2, 0xb0, 0xb1, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb7, 0xb8, 0xb6, 0xb2, 0xab, 0xa3, 0xa4, 0xad, 0xb4, 0xbe, 0xd5, 0xef, 0xfb, 0xfe, 0xff, 0xfc, 0xfb, 0xfc, 0xff, 0xff, 0xff, 0xfd, 0xfb, 0xfd, 0xfe, 0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfb, 0xfb, 0xfc, 0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf1, 0xf0, 0xee, 0xe8, 0xe1, 0xda, 0xd4, 0xd1, 0xd9, 0xd9, 0xdb, 0xdf, 0xe1, 0xe3, 0xe6, 0xea, 0xec, 0xf1, 0xf7, 0xfa, 0xf7, 0xf4, 0xf3, 0xf3, 0xfc, 0xf6, 0xf0, 0xed, 0xef, 0xf2, 0xf2, 0xf0, 0xcf, 0xbb, 0xad, 0xae, 0xb2, 0xb0, 0xaf, 0xb3, 0xa6, 0xa2, 0x9e, 0x9a, 0x98, 0x95, 0x91, 0x8d, 0x8c, 0x8a, 0x88, 0x88, 0x87, 0x83, 0x7c, 0x76, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65, 0x64, 0x65, 0x66, 0x67, 0x67, 0x66, 0x65, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x63, 0x61, 0x61, 0x62, 0x62, 0x62, 0x62, 0x63, 0x63, 0x63, 0x63, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66, 0x67, 0x67, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x78, 0x78, 0x7c, 0x7d, 0x7c, 0x7b, 0x72, 0x61, 0x4f, 0x6b, 0x8a, 0x8f, 0x92, 0x95, 0x8d, 0x90, 0x90, 0x8f, 0x90, 0x92, 0x9d, 0xb3, 0xbf, 0xb9, 0xbc, 0xbc, 0xbb, 0xb7, 0xb4, 0xb5, 0xb9, 0xbd, 0xbe, 0xbe, 0xc0, 0xbf, 0xbc, 0xba, 0xbc, 0xc1, 0xb9, 0xa7, 0x80, 0x6d, 0x75, 0x71, 0x69, 0x72, 0x70, 0x73, 0x75, 0x73, 0x71, 0x6f, 0x6c, 0x68, 0x62, 0x63, 0x63, 0x64, 0x69, 0x6d, 0x68, 0x60, 0x6c, 0x76, 0x7b, 0x74, 0x69, 0x63, 0x5c, 0x55, 0x5d, 0x5d, 0x5d, 0x5f, 0x62, 0x64, 0x60, 0x5a, 0x5a, 0x5f, 0x5f, 0x5a, 0x5b, 0x61, 0x5f, 0x58, 0x58, 0x57, 0x59, 0x5d, 0x5e, 0x5e, 0x63, 0x69, 0x73, 0x76, 0x7c, 0x82, 0x89, 0x8e, 0x93, 0x95, 0x97, 0x9a, 0x9d, 0x9f, 0xa0, 0xa0, 0xa1, 0xa2, 0xa0, 0xa0, 0x9f, 0x9e, 0x9c, 0x97, 0x92, 0x8e, 0x8e, 0x8c, 0x89, 0x87, 0x85, 0x85, 0x85, 0x85, 0x86, 0x7e, 0x7b, 0x74, 0x62, 0x51, 0x48, 0x40, 0x2a, 0x20, 0x23, 0x2f, 0x29, 0x14, 0x0f, 0x19, 0x41, 0x69, 0x8c, 0x8b, 0x8c, 0x6a, 0x61, 0x6b, 0x79, 0x78, 0x72, 0x6c, 0x6b, 0x6a, 0x60, 0x54, 0x50, 0x4b, 0x43, 0x3a, 0x3b, 0x4d, 0x6b, 0x82, 0x7e, 0x72, 0x72, 0x6e, 0x62, 0x6b, 0x7e, 0x7d, 0x81, 0x83, 0x85, 0x85, 0x85, 0x7e, 0x6d, 0x5d, 0x59, 0x4b, 0x41, 0x47, 0x54, 0x59, 0x56, 0x52, 0x53, 0x57, 0x63, 0x73, 0x79, 0x70, 0x62, 0x59, 0x5f, 0x97, 0xab, 0x82, 0x4f, 0x3d, 0x58, 0x81, 0xa0, 0x93, 0x7e, 0x60, 0x3d, 0x22, 0x1d, 0x26, 0x24, 0x27, 0x3c, 0x5f, 0x79, 0x85, 0x90, 0x9c, 0x9e, 0x9e, 0xa6, 0xb2, 0xb9, 0xbc, 0xc4, 0xcd, 0xae, 0x95, 0x72, 0x56, 0x45, 0x40, 0x47, 0x50, 0x53, 0x4b, 0x44, 0x45, 0x4a, 0x4e, 0x4c, 0x47, 0x76, 0x7a, 0x7c, 0x77, 0x6e, 0x67, 0x67, 0x69, 0x70, 0x7a, 0x80, 0x7f, 0x76, 0x6b, 0x6e, 0x7d, 0x86, 0x8b, 0x8a, 0x8a, 0x95, 0x9f, 0xa6, 0xad, 0xae, 0xaa, 0xa6, 0xa5, 0xa6, 0xaa, 0xb1, 0xb7, 0xb4, 0xb6, 0xb4, 0xb1, 0xaf, 0xaf, 0xac, 0xa7, 0xa9, 0xaa, 0xab, 0xae, 0xaf, 0xb0, 0xb0, 0xb1, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xb1, 0xb3, 0xb5, 0xb4, 0xb3, 0xb2, 0xb3, 0xb5, 0xb5, 0xb6, 0xb8, 0xb8, 0xb8, 0xb6, 0xb4, 0xb3, 0xad, 0xad, 0xae, 0xb0, 0xb3, 0xb5, 0xb6, 0xb6, 0xad, 0xae, 0xb0, 0xb0, 0xaf, 0xaf, 0xb0, 0xb1, 0xb9, 0xb9, 0xb7, 0xb3, 0xaf, 0xad, 0xae, 0xaf, 0xac, 0xaa, 0xab, 0xaf, 0xb1, 0xb1, 0xb1, 0xb4, 0xb2, 0xb0, 0xb1, 0xb6, 0xbb, 0xbd, 0xba, 0xb8, 0xb2, 0xb2, 0xb3, 0xb3, 0xb3, 0xb2, 0xb2, 0xb1, 0xb8, 0xb7, 0xb5, 0xb4, 0xb4, 0xb6, 0xb8, 0xba, 0xbc, 0xbb, 0xb8, 0xb5, 0xb3, 0xb3, 0xb3, 0xb4, 0xb2, 0xb2, 0xb4, 0xb6, 0xb8, 0xb9, 0xb7, 0xb6, 0xaa, 0xac, 0xae, 0xaf, 0xad, 0xab, 0xac, 0xae, 0xaf, 0xb2, 0xb3, 0xb2, 0xb3, 0xb5, 0xb4, 0xb1, 0xb2, 0xb0, 0xb0, 0xb2, 0xb2, 0xb0, 0xb0, 0xb2, 0xb7, 0xb5, 0xb3, 0xb1, 0xb1, 0xb2, 0xb4, 0xb5, 0xbb, 0xba, 0xb7, 0xb2, 0xae, 0xac, 0xad, 0xaf, 0xb5, 0xb7, 0xb8, 0xb7, 0xb6, 0xb6, 0xb8, 0xb9, 0xbb, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb2, 0xb0, 0xb8, 0xb6, 0xb2, 0xb2, 0xb4, 0xb6, 0xb5, 0xb3, 0xb3, 0xb9, 0xb0, 0xa1, 0xaf, 0xd7, 0xf1, 0xf2, 0xf9, 0xfb, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xff, 0xfd, 0xfc, 0xfe, 0xfe, 0xfc, 0xfc, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfa, 0xf9, 0xf8, 0xf6, 0xf5, 0xf2, 0xee, 0xe9, 0xe3, 0xde, 0xda, 0xda, 0xd8, 0xd9, 0xdd, 0xdf, 0xe1, 0xe4, 0xe8, 0xe9, 0xee, 0xf3, 0xf6, 0xf6, 0xf5, 0xf6, 0xf8, 0xf1, 0xf4, 0xf6, 0xf4, 0xf0, 0xec, 0xed, 0xef, 0xf4, 0xe0, 0xca, 0xbd, 0xb6, 0xaf, 0xad, 0xaf, 0xaa, 0xa9, 0xa6, 0xa2, 0x9d, 0x99, 0x98, 0x98, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x88, 0x83, 0x7f, 0x7d, 0x7a, 0x77, 0x72, 0x6f, 0x6d, 0x6d, 0x6d, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x69, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x65, 0x66, 0x66, 0x66, 0x65, 0x64, 0x63, 0x63, 0x64, 0x64, 0x64, 0x64, 0x65, 0x65, 0x65, 0x65, 0x67, 0x67, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x75, 0x79, 0x79, 0x7c, 0x7e, 0x7c, 0x7d, 0x75, 0x65, 0x4b, 0x5f, 0x83, 0x93, 0x95, 0x95, 0x8e, 0x90, 0x92, 0x91, 0x93, 0x94, 0x9d, 0xb2, 0xbf, 0xba, 0xbd, 0xbd, 0xbc, 0xb8, 0xb6, 0xb6, 0xba, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xbd, 0xb9, 0xbb, 0xc0, 0xbd, 0xb1, 0x90, 0x74, 0x73, 0x73, 0x6d, 0x6c, 0x71, 0x74, 0x76, 0x74, 0x71, 0x6f, 0x6a, 0x66, 0x62, 0x62, 0x64, 0x69, 0x70, 0x72, 0x6a, 0x5f, 0x63, 0x70, 0x7a, 0x79, 0x76, 0x75, 0x74, 0x72, 0x5b, 0x62, 0x69, 0x6b, 0x6b, 0x67, 0x5f, 0x58, 0x5e, 0x62, 0x62, 0x60, 0x63, 0x69, 0x66, 0x5f, 0x5e, 0x60, 0x64, 0x68, 0x67, 0x65, 0x68, 0x6d, 0x70, 0x74, 0x7a, 0x81, 0x86, 0x8b, 0x90, 0x93, 0x97, 0x99, 0x9b, 0x9d, 0x9d, 0x9e, 0x9f, 0xa0, 0x9e, 0x9e, 0x9c, 0x9b, 0x9a, 0x96, 0x92, 0x8f, 0x8f, 0x8d, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x83, 0x78, 0x69, 0x5c, 0x52, 0x3b, 0x1d, 0x1c, 0x2d, 0x3e, 0x43, 0x45, 0x46, 0x44, 0x3f, 0x36, 0x57, 0x73, 0x82, 0x90, 0x82, 0x79, 0x80, 0x7d, 0x79, 0x6f, 0x63, 0x5b, 0x59, 0x59, 0x59, 0x5b, 0x4f, 0x4f, 0x63, 0x78, 0x7b, 0x70, 0x67, 0x68, 0x61, 0x63, 0x63, 0x5f, 0x65, 0x6d, 0x68, 0x6f, 0x6f, 0x72, 0x7c, 0x86, 0x83, 0x6e, 0x57, 0x40, 0x3b, 0x45, 0x5e, 0x6a, 0x5d, 0x49, 0x3e, 0x3d, 0x3b, 0x3f, 0x47, 0x4c, 0x54, 0x68, 0x7d, 0x83, 0x75, 0x57, 0x49, 0x55, 0x65, 0x70, 0x7b, 0x87, 0x90, 0x92, 0x89, 0x85, 0x85, 0x7b, 0x6c, 0x61, 0x64, 0x68, 0x6d, 0x71, 0x77, 0x7e, 0x84, 0x87, 0x97, 0xa6, 0xa9, 0xa5, 0xa8, 0xb3, 0xbd, 0xc7, 0xbd, 0xa3, 0x7c, 0x5c, 0x4e, 0x50, 0x55, 0x71, 0x6a, 0x5f, 0x57, 0x53, 0x53, 0x55, 0x56, 0x70, 0x73, 0x74, 0x71, 0x6a, 0x68, 0x6b, 0x70, 0x76, 0x80, 0x86, 0x86, 0x80, 0x76, 0x79, 0x87, 0x8f, 0x93, 0x90, 0x8f, 0x96, 0x9c, 0xa0, 0xa5, 0xa2, 0xa3, 0xa2, 0xa2, 0xa7, 0xaf, 0xb5, 0xb6, 0xb7, 0xb6, 0xb3, 0xb2, 0xb3, 0xb3, 0xaf, 0xa9, 0xa4, 0xa5, 0xa9, 0xaf, 0xb5, 0xb9, 0xba, 0xba, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb2, 0xb4, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9, 0xb9, 0xb6, 0xb7, 0xb9, 0xba, 0xb8, 0xb6, 0xb2, 0xb0, 0xb3, 0xb2, 0xb3, 0xb4, 0xb6, 0xb7, 0xb6, 0xb5, 0xb2, 0xb4, 0xb5, 0xb2, 0xad, 0xa9, 0xaa, 0xac, 0xa8, 0xa9, 0xac, 0xae, 0xb0, 0xb3, 0xb7, 0xb9, 0xb1, 0xae, 0xae, 0xb2, 0xb5, 0xb4, 0xb2, 0xb1, 0xac, 0xad, 0xaf, 0xb2, 0xb6, 0xb7, 0xb7, 0xb5, 0xb2, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xaa, 0xaa, 0xa8, 0xa7, 0xa7, 0xa7, 0xa8, 0xa8, 0xb2, 0xb3, 0xb4, 0xb3, 0xb0, 0xae, 0xad, 0xae, 0xb3, 0xb3, 0xb4, 0xb5, 0xb8, 0xb9, 0xb8, 0xb8, 0xb3, 0xb3, 0xb2, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb1, 0xb3, 0xb4, 0xb2, 0xb2, 0xb2, 0xb0, 0xae, 0xaa, 0xab, 0xae, 0xb3, 0xb5, 0xb2, 0xb1, 0xb2, 0xae, 0xac, 0xab, 0xaa, 0xab, 0xae, 0xb1, 0xb3, 0xae, 0xb1, 0xb3, 0xb6, 0xb7, 0xb9, 0xbb, 0xbc, 0xb5, 0xb5, 0xb5, 0xb4, 0xb3, 0xb4, 0xb7, 0xb9, 0xb5, 0xb7, 0xb9, 0xba, 0xba, 0xb9, 0xb8, 0xb8, 0xb9, 0xb9, 0xba, 0xbd, 0xc0, 0xbf, 0xbb, 0xb7, 0xc0, 0xbf, 0xbc, 0xc0, 0xd3, 0xed, 0xfb, 0xfc, 0xff, 0xff, 0xfb, 0xfa, 0xfb, 0xfd, 0xfe, 0xff, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfa, 0xf9, 0xfb, 0xf9, 0xf6, 0xf4, 0xf1, 0xee, 0xe8, 0xe4, 0xdd, 0xda, 0xd9, 0xdb, 0xdd, 0xde, 0xe1, 0xe5, 0xe8, 0xec, 0xf0, 0xf3, 0xf4, 0xf6, 0xf9, 0xfb, 0xf0, 0xf5, 0xf8, 0xf7, 0xf4, 0xf1, 0xf1, 0xf3, 0xf1, 0xf9, 0xf9, 0xe6, 0xc8, 0xb1, 0xac, 0xaf, 0xb2, 0xb1, 0xad, 0xa6, 0xa0, 0x9c, 0x9d, 0xa0, 0x94, 0x94, 0x93, 0x91, 0x8f, 0x8c, 0x89, 0x88, 0x89, 0x86, 0x81, 0x7c, 0x77, 0x74, 0x71, 0x70, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x69, 0x6a, 0x6a, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x66, 0x65, 0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x76, 0x7a, 0x79, 0x7c, 0x7e, 0x7d, 0x7e, 0x79, 0x6b, 0x4c, 0x51, 0x77, 0x92, 0x94, 0x92, 0x8f, 0x92, 0x94, 0x94, 0x96, 0x97, 0x9e, 0xb2, 0xbf, 0xbc, 0xbf, 0xbe, 0xbd, 0xba, 0xb7, 0xb9, 0xbd, 0xc0, 0xc2, 0xc2, 0xc3, 0xc2, 0xbd, 0xb9, 0xb9, 0xbd, 0xc0, 0xbc, 0xa4, 0x82, 0x72, 0x73, 0x71, 0x69, 0x6c, 0x70, 0x72, 0x70, 0x6e, 0x6d, 0x6a, 0x67, 0x66, 0x66, 0x66, 0x6b, 0x72, 0x74, 0x6c, 0x62, 0x5d, 0x68, 0x71, 0x71, 0x70, 0x76, 0x7d, 0x81, 0x71, 0x74, 0x72, 0x6b, 0x64, 0x61, 0x60, 0x60, 0x6b, 0x6c, 0x6b, 0x69, 0x6b, 0x6d, 0x67, 0x5e, 0x5d, 0x62, 0x68, 0x6a, 0x66, 0x61, 0x64, 0x69, 0x6b, 0x71, 0x79, 0x7f, 0x83, 0x86, 0x8b, 0x8f, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9c, 0x9a, 0x99, 0x97, 0x96, 0x95, 0x94, 0x91, 0x8f, 0x8e, 0x8c, 0x8a, 0x89, 0x8a, 0x8a, 0x89, 0x89, 0x7f, 0x7e, 0x77, 0x71, 0x7d, 0x8f, 0x7a, 0x4e, 0x32, 0x42, 0x44, 0x33, 0x27, 0x27, 0x21, 0x13, 0x32, 0x4d, 0x61, 0x75, 0x81, 0x81, 0x77, 0x7e, 0x6f, 0x56, 0x38, 0x28, 0x29, 0x32, 0x3b, 0x41, 0x43, 0x55, 0x64, 0x60, 0x4d, 0x3c, 0x37, 0x3a, 0x36, 0x33, 0x39, 0x4d, 0x6b, 0x83, 0x87, 0x7f, 0x5e, 0x5b, 0x5d, 0x68, 0x7b, 0x88, 0x88, 0x81, 0x6a, 0x5c, 0x5a, 0x67, 0x68, 0x54, 0x41, 0x3c, 0x36, 0x35, 0x2b, 0x29, 0x49, 0x73, 0x7b, 0x68, 0x5c, 0x56, 0x53, 0x60, 0x6c, 0x62, 0x55, 0x54, 0x40, 0x4e, 0x65, 0x79, 0x83, 0x85, 0x87, 0x8a, 0x70, 0x7a, 0x79, 0x69, 0x5e, 0x62, 0x6a, 0x6c, 0x5d, 0x72, 0x88, 0x95, 0x9c, 0x9f, 0x9a, 0x92, 0x84, 0x9a, 0xab, 0xac, 0xa2, 0x92, 0x79, 0x62, 0x5c, 0x69, 0x79, 0x81, 0x7d, 0x72, 0x67, 0x61, 0x77, 0x75, 0x6e, 0x64, 0x5d, 0x5e, 0x66, 0x6e, 0x74, 0x7f, 0x89, 0x8d, 0x8a, 0x80, 0x81, 0x8d, 0x94, 0x97, 0x91, 0x8c, 0x90, 0x94, 0x96, 0x9a, 0x99, 0x9f, 0xa4, 0xa5, 0xaa, 0xb0, 0xaf, 0xa9, 0xac, 0xad, 0xae, 0xb0, 0xb2, 0xb1, 0xad, 0xa8, 0xab, 0xb0, 0xb4, 0xb6, 0xb6, 0xb4, 0xb0, 0xac, 0xb2, 0xb5, 0xb8, 0xbb, 0xbb, 0xb8, 0xb4, 0xb1, 0xb7, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb8, 0xb7, 0xb4, 0xb5, 0xb7, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb5, 0xb2, 0xb0, 0xb4, 0xb5, 0xb6, 0xb4, 0xaf, 0xac, 0xac, 0xae, 0xac, 0xad, 0xb0, 0xb2, 0xb3, 0xb3, 0xb3, 0xb3, 0xb8, 0xb5, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb4, 0xb5, 0xb6, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb9, 0xbb, 0xb9, 0xb5, 0xb1, 0xb1, 0xb3, 0xb1, 0xb1, 0xb0, 0xb1, 0xb2, 0xb3, 0xb3, 0xb3, 0xb6, 0xb6, 0xb6, 0xb5, 0xb7, 0xb9, 0xb7, 0xb4, 0xb3, 0xb4, 0xb5, 0xb5, 0xb4, 0xb3, 0xb1, 0xaf, 0xad, 0xae, 0xb3, 0xb9, 0xbc, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb8, 0xb5, 0xb0, 0xad, 0xaa, 0xb1, 0xb2, 0xb4, 0xb7, 0xb8, 0xb9, 0xb9, 0xba, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3, 0xb4, 0xb5, 0xb4, 0xb5, 0xb7, 0xb7, 0xb7, 0xb8, 0xbc, 0xbf, 0xb5, 0xb3, 0xb5, 0xb9, 0xbb, 0xba, 0xb7, 0xb5, 0xb5, 0xb3, 0xc3, 0xe3, 0xf6, 0xf7, 0xf8, 0xff, 0xf9, 0xf9, 0xfa, 0xfc, 0xfb, 0xf9, 0xf9, 0xf9, 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfd, 0xfb, 0xfa, 0xfd, 0xfa, 0xf7, 0xf6, 0xf6, 0xf3, 0xee, 0xea, 0xe3, 0xde, 0xdb, 0xdb, 0xdc, 0xdc, 0xdd, 0xe0, 0xe7, 0xea, 0xee, 0xf1, 0xf3, 0xf5, 0xf7, 0xf9, 0xfa, 0xf6, 0xf2, 0xf2, 0xf5, 0xf8, 0xf8, 0xf6, 0xf2, 0xf6, 0xf8, 0xf5, 0xed, 0xdd, 0xc4, 0xae, 0xae, 0xad, 0xac, 0xac, 0xaa, 0xa6, 0xa2, 0x9e, 0x98, 0x98, 0x97, 0x94, 0x90, 0x8e, 0x8c, 0x8c, 0x87, 0x88, 0x88, 0x86, 0x83, 0x7e, 0x7a, 0x77, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x76, 0x76, 0x79, 0x79, 0x7c, 0x7d, 0x7c, 0x7f, 0x7b, 0x6f, 0x52, 0x46, 0x67, 0x8a, 0x8f, 0x8f, 0x90, 0x94, 0x95, 0x95, 0x98, 0x99, 0x9f, 0xb1, 0xc0, 0xc0, 0xbf, 0xbe, 0xbd, 0xba, 0xb9, 0xba, 0xbe, 0xc1, 0xc4, 0xc4, 0xc5, 0xc3, 0xbd, 0xb7, 0xb7, 0xba, 0xbe, 0xc0, 0xb4, 0x94, 0x76, 0x70, 0x72, 0x6d, 0x71, 0x73, 0x72, 0x6d, 0x69, 0x69, 0x68, 0x67, 0x6c, 0x6b, 0x6a, 0x6b, 0x6e, 0x6f, 0x6d, 0x69, 0x69, 0x6c, 0x6b, 0x64, 0x60, 0x67, 0x73, 0x7b, 0x82, 0x7e, 0x74, 0x67, 0x60, 0x63, 0x6b, 0x70, 0x7a, 0x77, 0x72, 0x70, 0x6f, 0x6a, 0x60, 0x56, 0x5a, 0x60, 0x65, 0x64, 0x5e, 0x5a, 0x5d, 0x62, 0x69, 0x70, 0x79, 0x7f, 0x81, 0x83, 0x88, 0x8c, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x95, 0x96, 0x96, 0x94, 0x92, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8d, 0x8b, 0x89, 0x88, 0x89, 0x88, 0x87, 0x85, 0x7d, 0x78, 0x6a, 0x5e, 0x6a, 0x7f, 0x6c, 0x3e, 0x36, 0x39, 0x3c, 0x41, 0x49, 0x52, 0x57, 0x57, 0x73, 0x77, 0x62, 0x54, 0x44, 0x51, 0x5e, 0x78, 0x64, 0x46, 0x26, 0x17, 0x17, 0x1c, 0x20, 0x25, 0x29, 0x46, 0x5e, 0x66, 0x70, 0x87, 0x99, 0x9f, 0xa1, 0x9e, 0x8f, 0x7e, 0x75, 0x6f, 0x67, 0x64, 0x76, 0x74, 0x71, 0x6d, 0x6d, 0x74, 0x7f, 0x87, 0x7d, 0x72, 0x6b, 0x6a, 0x60, 0x4a, 0x34, 0x2b, 0x22, 0x29, 0x41, 0x62, 0x75, 0x73, 0x6e, 0x6f, 0x7c, 0x75, 0x72, 0x75, 0x6e, 0x5d, 0x54, 0x59, 0x5e, 0x4e, 0x4d, 0x66, 0x7f, 0x81, 0x73, 0x69, 0x65, 0x60, 0x56, 0x50, 0x55, 0x58, 0x47, 0x30, 0x36, 0x47, 0x61, 0x7a, 0x87, 0x7f, 0x64, 0x4a, 0x72, 0x84, 0x96, 0x9e, 0x9d, 0x93, 0x7f, 0x6c, 0x75, 0x82, 0x92, 0x9a, 0x97, 0x90, 0x8b, 0x8a, 0x76, 0x71, 0x67, 0x5b, 0x54, 0x58, 0x62, 0x6c, 0x70, 0x7a, 0x82, 0x87, 0x86, 0x7e, 0x7f, 0x8b, 0x96, 0x98, 0x90, 0x8a, 0x8e, 0x93, 0x96, 0x9b, 0xa5, 0xa9, 0xa9, 0xa7, 0xaa, 0xb0, 0xb2, 0xaf, 0xad, 0xb0, 0xb4, 0xb4, 0xaf, 0xa7, 0xa1, 0x9f, 0x9c, 0xa8, 0xb3, 0xb7, 0xb6, 0xb4, 0xb1, 0xae, 0xb1, 0xb4, 0xb7, 0xba, 0xba, 0xb8, 0xb5, 0xb3, 0xb8, 0xb7, 0xb6, 0xb7, 0xb8, 0xb7, 0xb5, 0xb3, 0xb4, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb8, 0xb8, 0xb7, 0xb4, 0xb2, 0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb6, 0xb8, 0xb9, 0xb8, 0xb4, 0xb0, 0xad, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xb2, 0xb4, 0xbc, 0xbc, 0xb9, 0xb3, 0xb2, 0xb7, 0xbc, 0xbd, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xbb, 0xbd, 0xbe, 0xbc, 0xb9, 0xb7, 0xb8, 0xba, 0xb5, 0xb4, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb3, 0xaf, 0xb0, 0xae, 0xae, 0xb1, 0xb6, 0xb7, 0xb4, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb4, 0xb3, 0xb3, 0xb0, 0xaf, 0xb1, 0xb4, 0xb5, 0xb3, 0xb2, 0xb3, 0xb5, 0xb7, 0xb9, 0xbb, 0xba, 0xb7, 0xb4, 0xb1, 0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4, 0xb8, 0xb9, 0xb9, 0xb8, 0xb6, 0xb7, 0xb9, 0xbb, 0xbf, 0xba, 0xb6, 0xb5, 0xb4, 0xb3, 0xb6, 0xbb, 0xb4, 0xca, 0xe3, 0xf3, 0xfa, 0xfc, 0xf7, 0xf0, 0xe5, 0xe0, 0xdc, 0xd9, 0xd9, 0xe0, 0xef, 0xfd, 0xfb, 0xfd, 0xfd, 0xfc, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfb, 0xfb, 0xfe, 0xfb, 0xf8, 0xf7, 0xf7, 0xf6, 0xf1, 0xed, 0xe9, 0xe3, 0xde, 0xdc, 0xdb, 0xd9, 0xd9, 0xda, 0xe0, 0xe3, 0xe8, 0xed, 0xf0, 0xf2, 0xf4, 0xf5, 0xfc, 0xf7, 0xf1, 0xf0, 0xf3, 0xf6, 0xf6, 0xf5, 0xfa, 0xf7, 0xf1, 0xef, 0xf4, 0xf5, 0xe6, 0xd3, 0xb5, 0xb0, 0xad, 0xaf, 0xb2, 0xb1, 0xa8, 0x9f, 0x9e, 0x9e, 0x9c, 0x98, 0x93, 0x90, 0x8e, 0x8e, 0x87, 0x88, 0x89, 0x89, 0x88, 0x85, 0x83, 0x81, 0x7c, 0x7a, 0x78, 0x75, 0x72, 0x71, 0x71, 0x71, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x75, 0x75, 0x76, 0x76, 0x78, 0x78, 0x7b, 0x7c, 0x7b, 0x7e, 0x7c, 0x70, 0x53, 0x41, 0x5f, 0x84, 0x8e, 0x91, 0x91, 0x93, 0x95, 0x95, 0x99, 0x9b, 0x9f, 0xaf, 0xbf, 0xc3, 0xc0, 0xbe, 0xbc, 0xba, 0xba, 0xbc, 0xc0, 0xc2, 0xc4, 0xc5, 0xc6, 0xc4, 0xbd, 0xb6, 0xb5, 0xb7, 0xbc, 0xbf, 0xbd, 0xa6, 0x81, 0x6c, 0x6d, 0x73, 0x7c, 0x7c, 0x76, 0x6d, 0x65, 0x64, 0x65, 0x66, 0x6a, 0x6c, 0x6e, 0x6d, 0x6b, 0x6a, 0x6d, 0x70, 0x77, 0x76, 0x6f, 0x65, 0x5f, 0x63, 0x6d, 0x75, 0x76, 0x73, 0x6e, 0x69, 0x6a, 0x70, 0x75, 0x76, 0x79, 0x73, 0x6f, 0x6e, 0x6e, 0x68, 0x5f, 0x58, 0x62, 0x66, 0x67, 0x63, 0x5d, 0x5c, 0x61, 0x66, 0x6a, 0x71, 0x7a, 0x7e, 0x80, 0x82, 0x86, 0x8a, 0x8e, 0x8f, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x92, 0x90, 0x8e, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8d, 0x8b, 0x88, 0x87, 0x87, 0x86, 0x82, 0x7f, 0x78, 0x6f, 0x61, 0x56, 0x5e, 0x6f, 0x69, 0x4e, 0x38, 0x34, 0x3c, 0x55, 0x71, 0x83, 0x8c, 0x91, 0x8c, 0x9e, 0x9f, 0x9b, 0x80, 0x71, 0x5d, 0x5b, 0x63, 0x4e, 0x35, 0x24, 0x1f, 0x29, 0x40, 0x56, 0x68, 0x85, 0xa2, 0xad, 0xac, 0xaa, 0xa8, 0xa6, 0xac, 0xb5, 0xb8, 0xba, 0xbd, 0xb3, 0x99, 0x85, 0x72, 0x7b, 0x85, 0x87, 0x81, 0x7d, 0x81, 0x86, 0x98, 0x90, 0x7f, 0x69, 0x55, 0x42, 0x2f, 0x21, 0x25, 0x43, 0x53, 0x46, 0x3b, 0x49, 0x60, 0x6c, 0x71, 0x6a, 0x67, 0x68, 0x68, 0x69, 0x71, 0x77, 0x8c, 0x8b, 0x81, 0x74, 0x72, 0x77, 0x73, 0x69, 0x51, 0x4e, 0x48, 0x40, 0x38, 0x2f, 0x26, 0x20, 0x3b, 0x39, 0x40, 0x52, 0x66, 0x75, 0x80, 0x88, 0x94, 0x9b, 0xa3, 0xa6, 0xa6, 0xab, 0xb8, 0xc6, 0xcc, 0xcd, 0xcc, 0xc6, 0xbf, 0xbb, 0xbb, 0xbe, 0x6a, 0x67, 0x62, 0x5b, 0x59, 0x5e, 0x68, 0x71, 0x72, 0x78, 0x7a, 0x7c, 0x7c, 0x78, 0x7d, 0x8a, 0x99, 0x9a, 0x92, 0x8a, 0x8d, 0x91, 0x94, 0x99, 0xa5, 0xa8, 0xaa, 0xaa, 0xaa, 0xad, 0xaf, 0xaf, 0xb2, 0xb4, 0xb5, 0xae, 0xa1, 0x93, 0x8e, 0x90, 0x95, 0xa4, 0xb3, 0xb8, 0xb9, 0xbb, 0xbd, 0xbd, 0xb7, 0xb8, 0xb8, 0xba, 0xbb, 0xbd, 0xbe, 0xbf, 0xb9, 0xb7, 0xb5, 0xb6, 0xb9, 0xba, 0xb9, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xba, 0xbc, 0xb8, 0xb8, 0xb8, 0xb9, 0xb9, 0xb7, 0xb4, 0xb1, 0xb3, 0xb2, 0xb1, 0xb2, 0xb4, 0xb5, 0xb3, 0xb2, 0xaf, 0xb0, 0xb3, 0xb6, 0xb8, 0xb7, 0xb4, 0xb2, 0xac, 0xb1, 0xb5, 0xb4, 0xb1, 0xb1, 0xb1, 0xb0, 0xb6, 0xb6, 0xb1, 0xa9, 0xa9, 0xb0, 0xb8, 0xb9, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb5, 0xb5, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb2, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb5, 0xb7, 0xb9, 0xb7, 0xb6, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb4, 0xae, 0xa8, 0xaa, 0xb0, 0xb3, 0xb1, 0xb3, 0xb2, 0xb4, 0xb7, 0xb7, 0xb5, 0xb4, 0xb5, 0xb5, 0xb2, 0xb0, 0xaf, 0xac, 0xa8, 0xa7, 0xa7, 0xaf, 0xb0, 0xb2, 0xb5, 0xb8, 0xba, 0xbc, 0xbd, 0xb5, 0xb3, 0xb1, 0xb1, 0xb3, 0xb6, 0xb8, 0xb9, 0xb7, 0xb8, 0xb9, 0xbb, 0xbd, 0xbd, 0xbc, 0xba, 0xb6, 0xb8, 0xba, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb, 0xc4, 0xc2, 0xc2, 0xc2, 0xbd, 0xb9, 0xbb, 0xc1, 0xd7, 0xef, 0xff, 0xf8, 0xe9, 0xdd, 0xcf, 0xc0, 0xb9, 0xb3, 0xad, 0xaa, 0xac, 0xb9, 0xd1, 0xe7, 0xf9, 0xfb, 0xfb, 0xf7, 0xf3, 0xf3, 0xf5, 0xf5, 0xfa, 0xfb, 0xfc, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfb, 0xfb, 0xfe, 0xfc, 0xfa, 0xf9, 0xf9, 0xf8, 0xf5, 0xf2, 0xee, 0xe8, 0xe2, 0xdf, 0xdd, 0xda, 0xd7, 0xd7, 0xd8, 0xdb, 0xe0, 0xe6, 0xeb, 0xee, 0xf0, 0xf1, 0xf5, 0xf8, 0xfa, 0xf8, 0xf4, 0xf1, 0xf2, 0xf4, 0xf4, 0xf9, 0xf8, 0xef, 0xe9, 0xec, 0xf2, 0xf6, 0xdf, 0xd0, 0xbc, 0xb0, 0xad, 0xae, 0xae, 0xac, 0xa7, 0xa5, 0xa2, 0x9e, 0x9a, 0x96, 0x93, 0x91, 0x8b, 0x89, 0x86, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x83, 0x7f, 0x7b, 0x78, 0x76, 0x75, 0x75, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x78, 0x78, 0x7c, 0x7c, 0x7a, 0x7d, 0x7b, 0x70, 0x51, 0x48, 0x65, 0x85, 0x91, 0x94, 0x90, 0x92, 0x94, 0x95, 0x9a, 0x9b, 0x9d, 0xab, 0xbd, 0xc3, 0xc0, 0xbf, 0xbc, 0xbb, 0xbb, 0xbe, 0xc1, 0xc4, 0xc5, 0xc6, 0xc7, 0xc5, 0xbe, 0xb7, 0xb5, 0xb7, 0xbb, 0xbf, 0xc0, 0xb2, 0x90, 0x6f, 0x69, 0x75, 0x78, 0x77, 0x72, 0x68, 0x62, 0x62, 0x66, 0x68, 0x65, 0x6b, 0x72, 0x73, 0x6e, 0x6a, 0x6d, 0x74, 0x73, 0x71, 0x6d, 0x68, 0x66, 0x68, 0x6d, 0x71, 0x6c, 0x69, 0x64, 0x63, 0x68, 0x70, 0x72, 0x70, 0x6d, 0x67, 0x64, 0x69, 0x6c, 0x69, 0x66, 0x65, 0x6d, 0x6d, 0x69, 0x63, 0x61, 0x65, 0x6a, 0x6d, 0x6d, 0x72, 0x79, 0x7d, 0x7e, 0x80, 0x83, 0x86, 0x8a, 0x8b, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x8d, 0x8b, 0x8b, 0x8c, 0x8e, 0x8e, 0x8e, 0x8d, 0x8a, 0x86, 0x85, 0x85, 0x83, 0x7e, 0x79, 0x78, 0x6b, 0x5e, 0x53, 0x4f, 0x54, 0x55, 0x4b, 0x4d, 0x42, 0x36, 0x37, 0x46, 0x58, 0x5f, 0x5f, 0x66, 0x79, 0x8e, 0xa1, 0xa3, 0xa3, 0x95, 0x89, 0x6f, 0x5e, 0x49, 0x3d, 0x41, 0x53, 0x6c, 0x7f, 0x6f, 0x5d, 0x4e, 0x4b, 0x4a, 0x4a, 0x54, 0x61, 0x6b, 0x74, 0x82, 0x92, 0xa1, 0xa5, 0x92, 0x7b, 0x65, 0x6f, 0x81, 0x91, 0x98, 0x95, 0x91, 0x8f, 0x94, 0x8b, 0x72, 0x53, 0x42, 0x42, 0x43, 0x3e, 0x3c, 0x44, 0x5a, 0x6d, 0x64, 0x4c, 0x47, 0x54, 0x51, 0x51, 0x56, 0x56, 0x4d, 0x4b, 0x4b, 0x47, 0x35, 0x3f, 0x54, 0x6f, 0x82, 0x7c, 0x5e, 0x41, 0x4b, 0x49, 0x44, 0x37, 0x29, 0x2e, 0x4c, 0x6b, 0x7c, 0x66, 0x51, 0x51, 0x5f, 0x76, 0x91, 0xa6, 0xa0, 0xa1, 0xa6, 0xac, 0xae, 0xae, 0xb2, 0xba, 0xaf, 0xae, 0xad, 0xa9, 0xa5, 0xa1, 0xa0, 0x9f, 0x5f, 0x5e, 0x5c, 0x59, 0x59, 0x5f, 0x68, 0x6f, 0x6e, 0x73, 0x74, 0x77, 0x79, 0x77, 0x7d, 0x8c, 0x98, 0x9a, 0x92, 0x8a, 0x8d, 0x90, 0x92, 0x96, 0x9b, 0x9f, 0xa7, 0xac, 0xab, 0xa7, 0xa6, 0xa8, 0xaa, 0xa9, 0xa6, 0x9e, 0x92, 0x8a, 0x8d, 0x95, 0xaf, 0xb8, 0xbc, 0xb7, 0xb3, 0xb4, 0xb5, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb6, 0xb8, 0xba, 0xbc, 0xb9, 0xb5, 0xb2, 0xb4, 0xb9, 0xbc, 0xbc, 0xb9, 0xb7, 0xb7, 0xb8, 0xb8, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xb9, 0xb8, 0xb4, 0xaf, 0xac, 0xb4, 0xb4, 0xb4, 0xb3, 0xb1, 0xb0, 0xaf, 0xae, 0xb4, 0xb3, 0xb2, 0xb2, 0xb3, 0xb2, 0xb0, 0xae, 0xb3, 0xb6, 0xb7, 0xb5, 0xb4, 0xb5, 0xb3, 0xb0, 0xaf, 0xaf, 0xa8, 0xa0, 0xa1, 0xab, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xb0, 0xb1, 0xb3, 0xb4, 0xb3, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb8, 0xb7, 0xba, 0xba, 0xb4, 0xab, 0xab, 0xb1, 0xb4, 0xb2, 0xb3, 0xb2, 0xb3, 0xb7, 0xb8, 0xb5, 0xb4, 0xb6, 0xbf, 0xbc, 0xb9, 0xb9, 0xb6, 0xb2, 0xb1, 0xb2, 0xc3, 0xc1, 0xbe, 0xbc, 0xba, 0xba, 0xbb, 0xbb, 0xbf, 0xbb, 0xb7, 0xb5, 0xb5, 0xb7, 0xb7, 0xb8, 0xbb, 0xba, 0xba, 0xbc, 0xbe, 0xc0, 0xbf, 0xbe, 0xb6, 0xb7, 0xb8, 0xba, 0xbd, 0xbe, 0xbe, 0xbd, 0xb8, 0xba, 0xbe, 0xc2, 0xbf, 0xbd, 0xc6, 0xd2, 0xf3, 0xf3, 0xef, 0xe1, 0xcb, 0xb6, 0xad, 0xad, 0xbc, 0xbe, 0xc7, 0xd0, 0xd2, 0xd1, 0xd7, 0xe0, 0xf2, 0xf7, 0xf8, 0xf4, 0xf0, 0xf1, 0xf1, 0xf0, 0xf8, 0xf9, 0xfb, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf8, 0xf5, 0xee, 0xe8, 0xe6, 0xe3, 0xdf, 0xdc, 0xda, 0xd6, 0xd8, 0xdb, 0xe0, 0xe5, 0xea, 0xec, 0xee, 0xee, 0xf3, 0xf9, 0xfa, 0xf7, 0xf4, 0xf3, 0xf4, 0xf3, 0xef, 0xeb, 0xec, 0xf0, 0xf4, 0xf3, 0xf0, 0xf9, 0xee, 0xdc, 0xc7, 0xb7, 0xb0, 0xb1, 0xb4, 0xae, 0xab, 0xa8, 0xa5, 0xa2, 0x9e, 0x99, 0x96, 0x91, 0x8e, 0x89, 0x84, 0x81, 0x80, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7d, 0x7d, 0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x79, 0x7a, 0x7e, 0x7d, 0x7b, 0x7d, 0x7b, 0x70, 0x57, 0x5c, 0x76, 0x88, 0x90, 0x92, 0x8c, 0x92, 0x95, 0x96, 0x9b, 0x9b, 0x9a, 0xa7, 0xb9, 0xc1, 0xc2, 0xc0, 0xbd, 0xbc, 0xbd, 0xc0, 0xc3, 0xc5, 0xc5, 0xc6, 0xc8, 0xc7, 0xc1, 0xb9, 0xb7, 0xb8, 0xb8, 0xbf, 0xbe, 0xb5, 0xa0, 0x7c, 0x6c, 0x77, 0x71, 0x72, 0x6f, 0x67, 0x62, 0x63, 0x67, 0x6a, 0x6b, 0x6f, 0x75, 0x76, 0x70, 0x6b, 0x6e, 0x75, 0x6a, 0x68, 0x66, 0x66, 0x67, 0x69, 0x6b, 0x6d, 0x71, 0x6c, 0x64, 0x61, 0x65, 0x6c, 0x70, 0x6f, 0x69, 0x62, 0x60, 0x65, 0x69, 0x67, 0x67, 0x6b, 0x71, 0x6d, 0x66, 0x60, 0x62, 0x6a, 0x6f, 0x6f, 0x6f, 0x72, 0x76, 0x79, 0x7b, 0x7e, 0x80, 0x82, 0x84, 0x85, 0x88, 0x89, 0x88, 0x88, 0x89, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x88, 0x8a, 0x8a, 0x8a, 0x8a, 0x86, 0x83, 0x82, 0x82, 0x7f, 0x79, 0x74, 0x67, 0x5e, 0x58, 0x53, 0x4d, 0x4e, 0x51, 0x4e, 0x50, 0x43, 0x30, 0x25, 0x2e, 0x45, 0x5a, 0x65, 0x6f, 0x73, 0x7d, 0x7f, 0x82, 0x7d, 0x73, 0x60, 0x58, 0x4c, 0x3f, 0x3a, 0x40, 0x47, 0x45, 0x3e, 0x3b, 0x48, 0x57, 0x5e, 0x5e, 0x66, 0x7e, 0x96, 0xa1, 0x9f, 0x9a, 0x84, 0x6d, 0x75, 0x8a, 0x8f, 0x94, 0x96, 0x9d, 0xa8, 0xaf, 0xae, 0xab, 0xa9, 0xa6, 0x9f, 0x8c, 0x6f, 0x56, 0x47, 0x3d, 0x35, 0x37, 0x51, 0x64, 0x61, 0x5c, 0x5d, 0x5a, 0x51, 0x58, 0x48, 0x42, 0x41, 0x3e, 0x43, 0x49, 0x45, 0x4f, 0x56, 0x66, 0x6f, 0x62, 0x4a, 0x43, 0x4b, 0x43, 0x39, 0x31, 0x32, 0x3d, 0x50, 0x68, 0x7a, 0x8a, 0x87, 0x87, 0x8a, 0x90, 0x96, 0x9c, 0xa0, 0x92, 0x90, 0x91, 0x96, 0x9f, 0xa3, 0xa0, 0x9a, 0x99, 0x95, 0x8e, 0x8a, 0x8a, 0x90, 0x98, 0x9e, 0x5a, 0x58, 0x55, 0x51, 0x50, 0x55, 0x5e, 0x65, 0x64, 0x6a, 0x6f, 0x75, 0x7a, 0x78, 0x7d, 0x8b, 0x91, 0x94, 0x8f, 0x8c, 0x91, 0x95, 0x98, 0x9c, 0x9e, 0xa0, 0xa5, 0xaa, 0xa7, 0xa2, 0xa5, 0xac, 0xae, 0xaa, 0xa6, 0xa1, 0x9d, 0x9f, 0xac, 0xb9, 0xb2, 0xb5, 0xb2, 0xaa, 0xa8, 0xae, 0xb2, 0xb1, 0xb4, 0xb5, 0xb7, 0xb8, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb1, 0xad, 0xaf, 0xb5, 0xb9, 0xb8, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb8, 0xb6, 0xb5, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb3, 0xaf, 0xac, 0xb0, 0xb3, 0xb7, 0xb6, 0xb4, 0xb3, 0xb6, 0xb9, 0xb5, 0xb3, 0xb1, 0xb1, 0xb3, 0xb6, 0xb7, 0xb7, 0xba, 0xb9, 0xb6, 0xb3, 0xb6, 0xbb, 0xbc, 0xb9, 0xb6, 0xb6, 0xaf, 0xa7, 0xa8, 0xb1, 0xb6, 0xb4, 0xb2, 0xb0, 0xae, 0xac, 0xad, 0xaf, 0xb3, 0xb5, 0xb7, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb4, 0xb4, 0xb5, 0xb7, 0xb8, 0xb7, 0xb6, 0xb4, 0xb5, 0xb5, 0xb5, 0xb7, 0xb9, 0xba, 0xb9, 0xb8, 0xad, 0xb1, 0xb1, 0xad, 0xae, 0xb5, 0xb7, 0xb5, 0xb5, 0xb3, 0xb4, 0xb9, 0xb9, 0xb6, 0xb5, 0xb7, 0xb8, 0xb7, 0xb6, 0xb8, 0xb9, 0xb7, 0xb8, 0xba, 0xb5, 0xb5, 0xb5, 0xb6, 0xb8, 0xba, 0xbb, 0xbc, 0xb5, 0xb2, 0xb0, 0xb0, 0xb2, 0xb6, 0xb7, 0xb8, 0xbb, 0xb9, 0xb7, 0xb7, 0xb9, 0xba, 0xba, 0xba, 0xc0, 0xbc, 0xb8, 0xb6, 0xb8, 0xba, 0xbb, 0xbb, 0xbc, 0xb9, 0xb8, 0xb9, 0xbb, 0xc6, 0xdf, 0xf8, 0xfd, 0xf1, 0xda, 0xc3, 0xb8, 0xbe, 0xcd, 0xd8, 0xd2, 0xcc, 0xcb, 0xcd, 0xce, 0xcd, 0xd4, 0xdd, 0xeb, 0xf2, 0xf6, 0xf4, 0xf1, 0xf2, 0xf2, 0xf1, 0xf6, 0xf8, 0xfa, 0xfc, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfd, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xfb, 0xfa, 0xf3, 0xee, 0xec, 0xea, 0xe5, 0xe1, 0xdf, 0xdb, 0xda, 0xdb, 0xde, 0xe2, 0xe7, 0xea, 0xec, 0xeb, 0xea, 0xeb, 0xf1, 0xf6, 0xf9, 0xf6, 0xf3, 0xe6, 0xea, 0xef, 0xf1, 0xef, 0xee, 0xf2, 0xf8, 0xe8, 0xf1, 0xf7, 0xec, 0xd5, 0xbf, 0xb3, 0xb0, 0xb2, 0xae, 0xaa, 0xa8, 0xa7, 0xa3, 0x9d, 0x98, 0x96, 0x94, 0x91, 0x8c, 0x88, 0x85, 0x82, 0x81, 0x7a, 0x7d, 0x80, 0x84, 0x86, 0x86, 0x85, 0x84, 0x7e, 0x7d, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x74, 0x76, 0x77, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7f, 0x7f, 0x7b, 0x7d, 0x7a, 0x6f, 0x63, 0x70, 0x84, 0x88, 0x8c, 0x8d, 0x89, 0x94, 0x96, 0x97, 0x9b, 0x9b, 0x98, 0xa3, 0xb6, 0xbe, 0xc3, 0xc1, 0xbe, 0xbd, 0xbf, 0xc2, 0xc5, 0xc7, 0xc6, 0xc7, 0xc9, 0xc9, 0xc2, 0xbb, 0xb8, 0xba, 0xb3, 0xbe, 0xbb, 0xb4, 0xaa, 0x8a, 0x72, 0x78, 0x78, 0x79, 0x76, 0x6d, 0x65, 0x63, 0x65, 0x67, 0x77, 0x77, 0x76, 0x75, 0x6f, 0x6a, 0x6e, 0x76, 0x6e, 0x69, 0x64, 0x65, 0x67, 0x6a, 0x6c, 0x6d, 0x71, 0x70, 0x6d, 0x6c, 0x70, 0x75, 0x76, 0x74, 0x6e, 0x66, 0x62, 0x65, 0x66, 0x62, 0x63, 0x69, 0x71, 0x6b, 0x62, 0x5d, 0x62, 0x6c, 0x6f, 0x6d, 0x70, 0x71, 0x74, 0x76, 0x79, 0x7c, 0x7d, 0x7e, 0x7e, 0x80, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x86, 0x82, 0x7f, 0x7e, 0x7f, 0x7c, 0x76, 0x70, 0x67, 0x61, 0x5e, 0x59, 0x51, 0x4f, 0x4d, 0x47, 0x54, 0x46, 0x37, 0x2e, 0x2d, 0x37, 0x4e, 0x64, 0x7f, 0x82, 0x91, 0x8b, 0x8d, 0x82, 0x7d, 0x69, 0x5a, 0x51, 0x40, 0x32, 0x32, 0x3e, 0x47, 0x48, 0x51, 0x55, 0x53, 0x56, 0x73, 0x94, 0x93, 0x7c, 0x68, 0x58, 0x52, 0x50, 0x54, 0x70, 0x84, 0x79, 0x6a, 0x6e, 0x7a, 0x8a, 0x98, 0xa2, 0xac, 0xb4, 0xc0, 0xbe, 0xb9, 0xae, 0x9f, 0x91, 0x89, 0x86, 0x7e, 0x7a, 0x6e, 0x62, 0x63, 0x6c, 0x6b, 0x63, 0x68, 0x6a, 0x78, 0x73, 0x4f, 0x31, 0x2a, 0x27, 0x2d, 0x45, 0x57, 0x54, 0x45, 0x3b, 0x37, 0x36, 0x5b, 0x71, 0x88, 0x8d, 0x83, 0x7a, 0x7d, 0x83, 0x75, 0x87, 0x90, 0x82, 0x6e, 0x69, 0x72, 0x7b, 0x8d, 0x95, 0x96, 0x8f, 0x8c, 0x90, 0x8f, 0x88, 0x7d, 0x79, 0x71, 0x6a, 0x66, 0x68, 0x6e, 0x73, 0x4e, 0x54, 0x59, 0x57, 0x56, 0x58, 0x5a, 0x5a, 0x65, 0x67, 0x6c, 0x71, 0x73, 0x77, 0x80, 0x89, 0x94, 0x94, 0x96, 0x99, 0x9a, 0x9b, 0x9c, 0x9f, 0xa4, 0xa9, 0xae, 0xad, 0xa9, 0xa7, 0xa9, 0xad, 0xae, 0xae, 0xaa, 0xa7, 0xa8, 0xae, 0xb3, 0xb5, 0xb7, 0xb7, 0xb4, 0xb0, 0xae, 0xb2, 0xb5, 0xb7, 0xbe, 0xbb, 0xb9, 0xb8, 0xb9, 0xba, 0xba, 0xb9, 0xad, 0xa6, 0xa8, 0xb3, 0xbc, 0xbb, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb8, 0xbb, 0xba, 0xb6, 0xb2, 0xb4, 0xb4, 0xb6, 0xb7, 0xb7, 0xb6, 0xb5, 0xb5, 0xb2, 0xb3, 0xb6, 0xb8, 0xb6, 0xb4, 0xb6, 0xbb, 0xb9, 0xb7, 0xb5, 0xb3, 0xb3, 0xb5, 0xb6, 0xb8, 0xb9, 0xb8, 0xb5, 0xb4, 0xb7, 0xba, 0xb9, 0xb5, 0xb2, 0xb0, 0xac, 0xab, 0xaf, 0xb5, 0xb6, 0xb4, 0xb5, 0xb4, 0xb1, 0xb0, 0xaf, 0xad, 0xab, 0xa9, 0xad, 0xaf, 0xb3, 0xb5, 0xb6, 0xb6, 0xb4, 0xb2, 0xaf, 0xb2, 0xb6, 0xb8, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb6, 0xb7, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4, 0xb2, 0xb1, 0xaf, 0xac, 0xae, 0xb4, 0xb9, 0xba, 0xb9, 0xb5, 0xb2, 0xb1, 0xb3, 0xb7, 0xb9, 0xb9, 0xbc, 0xb6, 0xb2, 0xb5, 0xbb, 0xbf, 0xbb, 0xb6, 0xa9, 0xaf, 0xb7, 0xba, 0xb9, 0xb6, 0xb4, 0xb4, 0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xbc, 0xbf, 0xbf, 0xbb, 0xba, 0xbd, 0xbf, 0xbe, 0xc2, 0xc0, 0xbd, 0xba, 0xb8, 0xba, 0xbd, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xcb, 0xe8, 0xf9, 0xf4, 0xde, 0xd3, 0xc8, 0xc6, 0xcb, 0xcb, 0xc2, 0xb9, 0xb9, 0xbd, 0xc1, 0xc3, 0xc3, 0xc4, 0xc5, 0xc6, 0xcd, 0xd7, 0xe5, 0xf4, 0xfd, 0xff, 0xff, 0xfd, 0xf9, 0xfc, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfd, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa, 0xf8, 0xf7, 0xf5, 0xf3, 0xf1, 0xed, 0xe8, 0xe4, 0xe0, 0xde, 0xdc, 0xdc, 0xde, 0xe0, 0xe1, 0xe2, 0xe4, 0xe9, 0xed, 0xee, 0xed, 0xef, 0xf6, 0xfc, 0xf5, 0xf2, 0xee, 0xee, 0xf0, 0xf4, 0xf6, 0xf7, 0xf2, 0xef, 0xef, 0xf1, 0xf0, 0xe6, 0xd3, 0xc4, 0xb3, 0xaf, 0xac, 0xad, 0xab, 0xa6, 0xa2, 0xa3, 0x9a, 0x98, 0x96, 0x93, 0x90, 0x8d, 0x89, 0x86, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x82, 0x85, 0x87, 0x87, 0x86, 0x84, 0x82, 0x7f, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x75, 0x77, 0x78, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x77, 0x76, 0x75, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7d, 0x7b, 0x79, 0x7b, 0x7d, 0x7b, 0x76, 0x71, 0x6d, 0x84, 0x94, 0x90, 0x87, 0x88, 0x8b, 0x8c, 0x96, 0x9a, 0x99, 0x9b, 0x96, 0x9c, 0xb5, 0xbe, 0xc5, 0xc3, 0xc0, 0xbf, 0xc1, 0xc4, 0xc7, 0xc8, 0xc8, 0xc8, 0xca, 0xc9, 0xc4, 0xbd, 0xb9, 0xba, 0xb9, 0xb0, 0xbd, 0xba, 0xae, 0x9f, 0x7d, 0x6d, 0x75, 0x6e, 0x6f, 0x71, 0x69, 0x64, 0x6a, 0x6f, 0x75, 0x78, 0x7a, 0x78, 0x73, 0x6f, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x6f, 0x6c, 0x6a, 0x6b, 0x6e, 0x71, 0x6e, 0x69, 0x66, 0x69, 0x6f, 0x72, 0x71, 0x61, 0x64, 0x67, 0x66, 0x65, 0x66, 0x69, 0x6a, 0x70, 0x65, 0x61, 0x63, 0x66, 0x6e, 0x71, 0x6d, 0x6d, 0x6e, 0x71, 0x75, 0x78, 0x7b, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x81, 0x80, 0x7e, 0x7b, 0x77, 0x72, 0x6f, 0x6c, 0x66, 0x62, 0x5c, 0x49, 0x37, 0x3b, 0x4c, 0x57, 0x49, 0x39, 0x2f, 0x2e, 0x34, 0x41, 0x4e, 0x62, 0x6a, 0x77, 0x80, 0x7d, 0x70, 0x63, 0x5b, 0x4f, 0x41, 0x33, 0x33, 0x3e, 0x47, 0x46, 0x42, 0x4e, 0x66, 0x7f, 0x84, 0x75, 0x5b, 0x3e, 0x2b, 0x33, 0x4c, 0x57, 0x5b, 0x5d, 0x4c, 0x3f, 0x4a, 0x48, 0x48, 0x4a, 0x52, 0x63, 0x7c, 0x91, 0x9d, 0xa6, 0xaf, 0xb7, 0xb9, 0xb7, 0xb2, 0xab, 0xa4, 0x99, 0x91, 0x8a, 0x8b, 0x8f, 0x85, 0x69, 0x4f, 0x4b, 0x56, 0x6a, 0x76, 0x67, 0x45, 0x28, 0x1d, 0x1d, 0x3f, 0x50, 0x58, 0x30, 0x33, 0x2d, 0x33, 0x37, 0x32, 0x29, 0x20, 0x1f, 0x28, 0x36, 0x3f, 0x4d, 0x45, 0x3d, 0x3f, 0x49, 0x4e, 0x49, 0x41, 0x40, 0x3e, 0x41, 0x4a, 0x50, 0x52, 0x55, 0x5a, 0x5c, 0x66, 0x64, 0x5e, 0x60, 0x62, 0x5d, 0x59, 0x55, 0x55, 0x57, 0x5a, 0x59, 0x56, 0x57, 0x5d, 0x67, 0x68, 0x6a, 0x70, 0x74, 0x79, 0x7f, 0x85, 0x94, 0x9a, 0xa0, 0xa3, 0xa3, 0xa4, 0xa4, 0xa5, 0xaa, 0xaf, 0xb1, 0xad, 0xa6, 0xa3, 0xa9, 0xb0, 0xb6, 0xb6, 0xb4, 0xb0, 0xaf, 0xb1, 0xb4, 0xb4, 0xb7, 0xb8, 0xb5, 0xb0, 0xae, 0xb1, 0xb6, 0xb8, 0xb9, 0xb7, 0xb5, 0xb5, 0xb7, 0xb8, 0xb9, 0xb9, 0xb5, 0xad, 0xa9, 0xae, 0xb4, 0xb5, 0xb5, 0xb8, 0xb7, 0xb5, 0xb5, 0xb6, 0xb8, 0xb7, 0xb4, 0xb0, 0xb1, 0xb3, 0xb6, 0xb8, 0xb9, 0xb8, 0xb6, 0xb5, 0xb1, 0xb2, 0xb6, 0xb7, 0xb5, 0xb1, 0xb1, 0xb4, 0xb5, 0xb5, 0xb5, 0xb4, 0xb4, 0xb3, 0xb3, 0xb3, 0xb4, 0xb5, 0xb5, 0xb4, 0xb6, 0xb9, 0xb9, 0xb7, 0xb1, 0xb0, 0xae, 0xae, 0xb2, 0xb9, 0xbc, 0xbb, 0xb5, 0xb3, 0xaf, 0xad, 0xac, 0xad, 0xae, 0xae, 0xae, 0xaf, 0xb2, 0xb4, 0xb5, 0xb5, 0xb5, 0xb4, 0xb4, 0xb6, 0xb9, 0xbb, 0xbb, 0xbc, 0xbc, 0xbd, 0xbf, 0xbd, 0xba, 0xb8, 0xb7, 0xb7, 0xb8, 0xb9, 0xbc, 0xbc, 0xba, 0xb9, 0xbb, 0xbf, 0xc0, 0xbe, 0xbb, 0xba, 0xb8, 0xb7, 0xb8, 0xba, 0xbb, 0xbc, 0xb4, 0xb5, 0xb9, 0xbe, 0xc0, 0xb8, 0xaa, 0x9e, 0xa5, 0xac, 0xb6, 0xbd, 0xbe, 0xbc, 0xbb, 0xba, 0xbf, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xc1, 0xc1, 0xbd, 0xbd, 0xc0, 0xc3, 0xc2, 0xc0, 0xbe, 0xbb, 0xb9, 0xb8, 0xb9, 0xbb, 0xbd, 0xc2, 0xb7, 0xb9, 0xce, 0xea, 0xfd, 0xf3, 0xd9, 0xcf, 0xce, 0xcc, 0xc6, 0xbf, 0xbb, 0xb9, 0xb9, 0xbf, 0xc2, 0xc6, 0xc7, 0xc4, 0xbf, 0xbb, 0xb9, 0xbf, 0xc5, 0xd1, 0xde, 0xea, 0xf3, 0xf9, 0xfc, 0xfe, 0xfe, 0xfc, 0xfa, 0xfc, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfb, 0xfc, 0xfb, 0xf9, 0xf8, 0xf5, 0xf2, 0xee, 0xeb, 0xe6, 0xe2, 0xde, 0xdb, 0xda, 0xdb, 0xdb, 0xdc, 0xe1, 0xe2, 0xe5, 0xe6, 0xe7, 0xea, 0xef, 0xf3, 0xf6, 0xf5, 0xf3, 0xf3, 0xf2, 0xf2, 0xf1, 0xef, 0xf3, 0xf0, 0xef, 0xef, 0xf1, 0xf0, 0xec, 0xe9, 0xcf, 0xbc, 0xab, 0xaa, 0xb1, 0xb3, 0xac, 0xa4, 0xa7, 0xa5, 0xa1, 0x99, 0x91, 0x8d, 0x8c, 0x8d, 0x86, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7e, 0x7f, 0x82, 0x84, 0x85, 0x87, 0x88, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x7e, 0x7d, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7b, 0x78, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7a, 0x74, 0x6f, 0x76, 0x85, 0x90, 0x8d, 0x87, 0x89, 0x8e, 0x91, 0x98, 0x9a, 0x99, 0x9c, 0x95, 0x99, 0xb3, 0xbe, 0xc5, 0xc2, 0xc0, 0xc0, 0xc2, 0xc5, 0xc7, 0xc9, 0xc9, 0xc9, 0xca, 0xc9, 0xc4, 0xbc, 0xb9, 0xb9, 0xb9, 0xb2, 0xbe, 0xbc, 0xb3, 0xa8, 0x87, 0x72, 0x74, 0x6e, 0x70, 0x74, 0x71, 0x71, 0x75, 0x76, 0x75, 0x77, 0x77, 0x75, 0x72, 0x70, 0x71, 0x73, 0x74, 0x76, 0x75, 0x71, 0x6c, 0x6a, 0x6b, 0x6c, 0x71, 0x6f, 0x6a, 0x67, 0x68, 0x6d, 0x6f, 0x6e, 0x66, 0x6a, 0x6d, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x68, 0x65, 0x64, 0x63, 0x69, 0x6e, 0x6c, 0x6d, 0x6f, 0x71, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x75, 0x70, 0x6d, 0x6e, 0x64, 0x5b, 0x52, 0x40, 0x30, 0x34, 0x44, 0x4d, 0x44, 0x3b, 0x3f, 0x51, 0x63, 0x64, 0x5d, 0x4c, 0x43, 0x42, 0x47, 0x42, 0x37, 0x39, 0x44, 0x41, 0x3d, 0x39, 0x38, 0x3e, 0x4a, 0x57, 0x60, 0x69, 0x63, 0x56, 0x44, 0x33, 0x2a, 0x29, 0x2b, 0x3d, 0x61, 0x71, 0x68, 0x5d, 0x48, 0x36, 0x38, 0x51, 0x59, 0x5c, 0x51, 0x3e, 0x34, 0x35, 0x3b, 0x5f, 0x79, 0x8e, 0x96, 0xa6, 0xc1, 0xce, 0xcb, 0xbe, 0xb7, 0xa6, 0x91, 0x81, 0x7a, 0x79, 0x7a, 0x69, 0x73, 0x78, 0x75, 0x74, 0x71, 0x61, 0x4c, 0x22, 0x4f, 0x65, 0x63, 0x33, 0x33, 0x31, 0x38, 0x29, 0x26, 0x25, 0x2d, 0x3b, 0x44, 0x41, 0x3a, 0x3f, 0x45, 0x4a, 0x47, 0x40, 0x3c, 0x3d, 0x40, 0x4b, 0x51, 0x5b, 0x69, 0x7a, 0x8b, 0x96, 0x9a, 0x81, 0x7f, 0x74, 0x64, 0x55, 0x47, 0x44, 0x4f, 0x57, 0x53, 0x57, 0x5f, 0x5f, 0x58, 0x5c, 0x66, 0x6d, 0x6b, 0x6e, 0x75, 0x7e, 0x85, 0x8b, 0x90, 0x90, 0x97, 0x9d, 0x9c, 0x9c, 0xa0, 0xa2, 0xa2, 0xaa, 0xb0, 0xb3, 0xaf, 0xa7, 0xa5, 0xab, 0xb2, 0xb4, 0xb7, 0xb8, 0xb5, 0xb4, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9, 0xb7, 0xb2, 0xaf, 0xb2, 0xb7, 0xbb, 0xbb, 0xb9, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xba, 0xb2, 0xad, 0xaf, 0xb2, 0xb3, 0xb6, 0xba, 0xba, 0xb9, 0xb8, 0xb9, 0xbb, 0xbb, 0xb8, 0xb6, 0xb0, 0xb3, 0xb6, 0xb9, 0xbb, 0xb9, 0xb7, 0xb6, 0xb3, 0xb4, 0xb8, 0xbb, 0xb9, 0xb4, 0xb3, 0xb5, 0xb8, 0xb9, 0xba, 0xba, 0xba, 0xb8, 0xb6, 0xb4, 0xb7, 0xba, 0xbb, 0xb9, 0xb7, 0xb8, 0xb8, 0xb7, 0xb4, 0xb5, 0xb3, 0xb1, 0xb3, 0xb7, 0xb9, 0xb9, 0xb9, 0xb6, 0xb0, 0xab, 0xa7, 0xa7, 0xa9, 0xac, 0xac, 0xac, 0xac, 0xab, 0xab, 0xaa, 0xaa, 0xa9, 0xa6, 0xa7, 0xaa, 0xac, 0xad, 0xb0, 0xb3, 0xb5, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xba, 0xbd, 0xbf, 0xbb, 0xbb, 0xba, 0xba, 0xbd, 0xbe, 0xbb, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xbc, 0xbb, 0xba, 0xbc, 0xbe, 0xbe, 0xbc, 0xb9, 0xa9, 0xae, 0xb5, 0xb9, 0xba, 0xbb, 0xbb, 0xbc, 0xbd, 0xbc, 0xba, 0xb9, 0xb8, 0xb8, 0xb8, 0xb8, 0xba, 0xbb, 0xba, 0xb7, 0xb6, 0xb9, 0xbb, 0xbb, 0xbe, 0xbc, 0xba, 0xb9, 0xba, 0xbb, 0xbd, 0xbd, 0xbb, 0xbc, 0xcc, 0xe2, 0xec, 0xe9, 0xdb, 0xcb, 0xc9, 0xca, 0xc9, 0xc1, 0xb8, 0xb4, 0xb7, 0xbd, 0xc0, 0xc2, 0xc5, 0xc5, 0xc3, 0xbf, 0xbb, 0xb9, 0xbb, 0xbd, 0xc2, 0xca, 0xd4, 0xdf, 0xe9, 0xef, 0xf6, 0xfb, 0xff, 0xfe, 0xfc, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xf9, 0xfa, 0xfa, 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfb, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf5, 0xf1, 0xef, 0xed, 0xe8, 0xe1, 0xdb, 0xd8, 0xd6, 0xd5, 0xd5, 0xdb, 0xda, 0xda, 0xdc, 0xdf, 0xe3, 0xe6, 0xe8, 0xf1, 0xf3, 0xf6, 0xf7, 0xf6, 0xf2, 0xef, 0xed, 0xef, 0xf0, 0xf0, 0xef, 0xef, 0xf0, 0xf3, 0xf6, 0xed, 0xdf, 0xcd, 0xbf, 0xb5, 0xaf, 0xad, 0xaf, 0xa4, 0xa2, 0xa1, 0xa3, 0xa5, 0xa3, 0x9c, 0x96, 0x92, 0x91, 0x8e, 0x8a, 0x85, 0x81, 0x80, 0x7f, 0x7d, 0x7f, 0x82, 0x85, 0x87, 0x89, 0x89, 0x89, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x79, 0x76, 0x74, 0x86, 0x89, 0x8c, 0x8c, 0x89, 0x8b, 0x91, 0x96, 0x9b, 0x9b, 0x9a, 0x9e, 0x96, 0x96, 0xb1, 0xc0, 0xc4, 0xc2, 0xc0, 0xc0, 0xc3, 0xc6, 0xc8, 0xc9, 0xca, 0xca, 0xcb, 0xc9, 0xc3, 0xbb, 0xb7, 0xb8, 0xb9, 0xb6, 0xbe, 0xbc, 0xb8, 0xb1, 0x92, 0x76, 0x6e, 0x6a, 0x6e, 0x73, 0x73, 0x75, 0x76, 0x71, 0x75, 0x75, 0x73, 0x71, 0x6f, 0x6f, 0x71, 0x73, 0x78, 0x7c, 0x7c, 0x73, 0x6c, 0x6a, 0x6b, 0x6a, 0x6f, 0x6e, 0x6b, 0x68, 0x69, 0x6c, 0x6d, 0x6c, 0x6b, 0x6e, 0x71, 0x73, 0x72, 0x72, 0x73, 0x75, 0x74, 0x6e, 0x6b, 0x67, 0x62, 0x65, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x75, 0x75, 0x75, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x75, 0x71, 0x6d, 0x69, 0x66, 0x5e, 0x58, 0x51, 0x42, 0x32, 0x33, 0x3e, 0x3f, 0x42, 0x3e, 0x37, 0x3a, 0x44, 0x45, 0x3d, 0x33, 0x35, 0x31, 0x29, 0x29, 0x30, 0x33, 0x2f, 0x26, 0x31, 0x43, 0x55, 0x61, 0x63, 0x5e, 0x58, 0x4b, 0x43, 0x3b, 0x36, 0x30, 0x2b, 0x2f, 0x36, 0x59, 0x74, 0x71, 0x58, 0x51, 0x59, 0x65, 0x72, 0x78, 0x7b, 0x78, 0x6d, 0x5d, 0x54, 0x54, 0x59, 0x56, 0x5d, 0x6d, 0x82, 0x95, 0xa2, 0xac, 0xb2, 0xbf, 0xbf, 0xb9, 0xac, 0x9c, 0x8f, 0x85, 0x7f, 0x73, 0x62, 0x4e, 0x44, 0x46, 0x4d, 0x55, 0x5a, 0x6f, 0x86, 0x82, 0x6b, 0x36, 0x2d, 0x1d, 0x13, 0x1d, 0x2b, 0x39, 0x3e, 0x3e, 0x3c, 0x3b, 0x39, 0x2d, 0x36, 0x42, 0x4a, 0x4d, 0x50, 0x55, 0x5a, 0x5f, 0x66, 0x6c, 0x71, 0x75, 0x71, 0x5e, 0x49, 0x48, 0x34, 0x1b, 0x13, 0x17, 0x1c, 0x29, 0x3e, 0x59, 0x5b, 0x62, 0x68, 0x64, 0x5e, 0x61, 0x6b, 0x6e, 0x6a, 0x68, 0x6a, 0x6e, 0x72, 0x76, 0x7a, 0x8a, 0x8e, 0x8d, 0x8a, 0x8d, 0x98, 0x9f, 0xa0, 0xa7, 0xad, 0xb4, 0xb5, 0xb2, 0xb0, 0xb2, 0xb5, 0xb3, 0xb6, 0xb8, 0xb6, 0xb5, 0xb7, 0xb9, 0xba, 0xba, 0xbc, 0xba, 0xb4, 0xb1, 0xb4, 0xba, 0xbe, 0xbe, 0xbc, 0xba, 0xb8, 0xb7, 0xb8, 0xb9, 0xb9, 0xb6, 0xb4, 0xb3, 0xb6, 0xb8, 0xb8, 0xba, 0xbd, 0xbb, 0xba, 0xba, 0xbb, 0xbd, 0xbe, 0xbd, 0xbc, 0xb3, 0xb5, 0xb7, 0xba, 0xba, 0xba, 0xb9, 0xb8, 0xb4, 0xb5, 0xb8, 0xbc, 0xbb, 0xb8, 0xb7, 0xb9, 0xb8, 0xb9, 0xba, 0xbb, 0xbb, 0xba, 0xb8, 0xb7, 0xb9, 0xbb, 0xbc, 0xba, 0xb9, 0xb9, 0xb8, 0xb6, 0xb9, 0xba, 0xb7, 0xb2, 0xaf, 0xb0, 0xb0, 0xb0, 0xb4, 0xb2, 0xaf, 0xaa, 0xa6, 0xa5, 0xa6, 0xa7, 0xa9, 0xa9, 0xa8, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xb3, 0xb3, 0xb3, 0xb3, 0xb4, 0xb6, 0xb9, 0xbb, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb5, 0xb3, 0xb2, 0xb5, 0xb4, 0xb3, 0xb3, 0xb7, 0xb9, 0xb4, 0xad, 0xae, 0xb1, 0xb5, 0xb6, 0xb5, 0xb3, 0xb3, 0xb3, 0xa9, 0xab, 0xaf, 0xb2, 0xb4, 0xb5, 0xb5, 0xb4, 0xba, 0xba, 0xb8, 0xb5, 0xb4, 0xb5, 0xb8, 0xbb, 0xbf, 0xbe, 0xbd, 0xbc, 0xbb, 0xba, 0xba, 0xbb, 0xc2, 0xc2, 0xc1, 0xbe, 0xbc, 0xbd, 0xbe, 0xbf, 0xbf, 0xbe, 0xbc, 0xbb, 0xbc, 0xbe, 0xbf, 0xc0, 0xbc, 0xcc, 0xe3, 0xe5, 0xd2, 0xc6, 0xcb, 0xd0, 0xc8, 0xc3, 0xbc, 0xb7, 0xb7, 0xba, 0xbe, 0xc1, 0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xbf, 0xc0, 0xc1, 0xc0, 0xc1, 0xc3, 0xc7, 0xcd, 0xd4, 0xd7, 0xde, 0xed, 0xfc, 0xff, 0xfe, 0xfb, 0xfb, 0xfc, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfd, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf7, 0xf4, 0xf2, 0xf1, 0xed, 0xe7, 0xe1, 0xdc, 0xd9, 0xd5, 0xd4, 0xd6, 0xd6, 0xd5, 0xd6, 0xd9, 0xdc, 0xdf, 0xe1, 0xe6, 0xec, 0xf3, 0xf7, 0xf7, 0xf5, 0xf3, 0xf3, 0xe8, 0xeb, 0xef, 0xef, 0xee, 0xeb, 0xea, 0xea, 0xee, 0xf2, 0xf1, 0xe2, 0xcb, 0xb7, 0xaf, 0xb0, 0xb4, 0xae, 0xa7, 0xa3, 0xa2, 0xa2, 0xa2, 0xa1, 0x99, 0x99, 0x97, 0x94, 0x90, 0x8c, 0x8a, 0x88, 0x82, 0x82, 0x83, 0x83, 0x85, 0x86, 0x87, 0x87, 0x88, 0x87, 0x87, 0x87, 0x87, 0x88, 0x89, 0x89, 0x88, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7c, 0x7b, 0x7d, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7e, 0x82, 0x86, 0x92, 0x8d, 0x8b, 0x8d, 0x8d, 0x8d, 0x92, 0x98, 0x9d, 0x9c, 0x9a, 0x9f, 0x96, 0x95, 0xb1, 0xc2, 0xc3, 0xc2, 0xc1, 0xc2, 0xc5, 0xc8, 0xca, 0xcb, 0xcb, 0xcb, 0xca, 0xc8, 0xc1, 0xb9, 0xb6, 0xb6, 0xba, 0xba, 0xbe, 0xbc, 0xba, 0xb7, 0x9c, 0x7a, 0x6a, 0x69, 0x6e, 0x73, 0x72, 0x73, 0x71, 0x68, 0x76, 0x75, 0x75, 0x73, 0x72, 0x72, 0x73, 0x75, 0x79, 0x80, 0x7f, 0x75, 0x6c, 0x6a, 0x6a, 0x67, 0x6c, 0x6e, 0x6d, 0x6a, 0x6a, 0x6d, 0x6e, 0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x72, 0x75, 0x78, 0x71, 0x6e, 0x6a, 0x63, 0x66, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x72, 0x6e, 0x6a, 0x67, 0x5d, 0x5c, 0x5a, 0x53, 0x41, 0x2f, 0x2b, 0x30, 0x3a, 0x44, 0x46, 0x3a, 0x2f, 0x2f, 0x33, 0x35, 0x3b, 0x40, 0x3d, 0x36, 0x39, 0x40, 0x3a, 0x2b, 0x3a, 0x47, 0x5a, 0x67, 0x69, 0x61, 0x56, 0x4f, 0x4c, 0x43, 0x40, 0x40, 0x3b, 0x34, 0x38, 0x43, 0x64, 0x6b, 0x68, 0x71, 0x99, 0xbc, 0xbe, 0xb3, 0xa9, 0xa2, 0x9d, 0x9f, 0x9f, 0x93, 0x7f, 0x6f, 0x5d, 0x50, 0x54, 0x70, 0x89, 0x96, 0xa2, 0xb0, 0xb5, 0xae, 0xa3, 0x97, 0x8f, 0x88, 0x80, 0x78, 0x78, 0x6a, 0x5c, 0x50, 0x3f, 0x2d, 0x25, 0x27, 0x49, 0x66, 0x72, 0x61, 0x2d, 0x1d, 0x16, 0x1a, 0x19, 0x1e, 0x23, 0x2a, 0x34, 0x3b, 0x3a, 0x33, 0x2c, 0x2f, 0x37, 0x45, 0x51, 0x58, 0x5c, 0x5d, 0x62, 0x5d, 0x58, 0x5a, 0x61, 0x61, 0x54, 0x46, 0x12, 0x1e, 0x2e, 0x47, 0x65, 0x71, 0x6c, 0x68, 0x5e, 0x69, 0x72, 0x70, 0x69, 0x65, 0x67, 0x6a, 0x6d, 0x6a, 0x69, 0x69, 0x6b, 0x6e, 0x75, 0x7c, 0x81, 0x82, 0x81, 0x83, 0x8d, 0x9c, 0xa5, 0xa6, 0xa7, 0xaa, 0xaf, 0xb4, 0xb8, 0xb9, 0xb8, 0xb7, 0xb9, 0xbb, 0xba, 0xb6, 0xb4, 0xb5, 0xb7, 0xb8, 0xba, 0xbb, 0xb8, 0xb3, 0xb0, 0xb4, 0xba, 0xbe, 0xbc, 0xbb, 0xba, 0xb9, 0xb7, 0xb7, 0xb8, 0xb9, 0xb5, 0xb5, 0xb7, 0xba, 0xbb, 0xbb, 0xbc, 0xbe, 0xba, 0xb9, 0xb9, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb8, 0xb8, 0xb8, 0xb8, 0xb9, 0xb9, 0xba, 0xba, 0xb5, 0xb4, 0xb5, 0xb8, 0xb7, 0xb5, 0xb5, 0xb7, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0xb4, 0xb7, 0xba, 0xb8, 0xb4, 0xb5, 0xb6, 0xb5, 0xb1, 0xaf, 0xaf, 0xb0, 0xaf, 0xa9, 0xab, 0xad, 0xae, 0xae, 0xae, 0xad, 0xad, 0xad, 0xad, 0xad, 0xae, 0xb0, 0xb3, 0xb5, 0xb7, 0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xad, 0xae, 0xb0, 0xb7, 0xb8, 0xb9, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb3, 0xb3, 0xb7, 0xbb, 0xb8, 0xb3, 0xb8, 0xbc, 0xc0, 0xc2, 0xc0, 0xbf, 0xbe, 0xbe, 0xc2, 0xc3, 0xc3, 0xc0, 0xbd, 0xbb, 0xbb, 0xbc, 0xc4, 0xc1, 0xbd, 0xb9, 0xb6, 0xb7, 0xb9, 0xbc, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc4, 0xc4, 0xc3, 0xc2, 0xc1, 0xc0, 0xc1, 0xc3, 0xc1, 0xc0, 0xbe, 0xbc, 0xbb, 0xbc, 0xbe, 0xc1, 0xd3, 0xdb, 0xe2, 0xd9, 0xc9, 0xc6, 0xca, 0xc8, 0xbc, 0xb8, 0xb4, 0xb5, 0xb9, 0xbf, 0xc2, 0xc3, 0xc9, 0xc7, 0xc5, 0xc2, 0xbf, 0xbd, 0xbb, 0xb9, 0xbc, 0xbd, 0xbf, 0xc1, 0xc4, 0xc8, 0xca, 0xcb, 0xce, 0xdb, 0xeb, 0xf7, 0xfd, 0xff, 0xfc, 0xf8, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfd, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xf8, 0xf6, 0xf3, 0xf1, 0xee, 0xea, 0xe6, 0xe1, 0xdc, 0xd9, 0xd8, 0xd9, 0xd9, 0xd7, 0xd5, 0xd4, 0xd7, 0xd9, 0xde, 0xe3, 0xeb, 0xf0, 0xf3, 0xf5, 0xf7, 0xf8, 0xea, 0xeb, 0xec, 0xed, 0xed, 0xec, 0xea, 0xe8, 0xe3, 0xe8, 0xee, 0xf1, 0xea, 0xda, 0xc5, 0xb5, 0xb0, 0xb2, 0xb1, 0xad, 0xa5, 0xa1, 0xa1, 0xa4, 0x9f, 0x9e, 0x9d, 0x9b, 0x99, 0x96, 0x94, 0x92, 0x8f, 0x8d, 0x8a, 0x88, 0x87, 0x88, 0x8a, 0x8b, 0x90, 0x8e, 0x8b, 0x88, 0x86, 0x86, 0x88, 0x89, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x88, 0x88, 0x89, 0x85, 0x83, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x84, 0x85, 0x85, 0x84, 0x83, 0x86, 0x8b, 0x8f, 0x8f, 0x88, 0x87, 0x8d, 0x91, 0x90, 0x93, 0x98, 0x9b, 0x9a, 0x98, 0x9c, 0x95, 0x97, 0xb3, 0xc3, 0xc2, 0xc1, 0xc1, 0xc3, 0xc6, 0xc9, 0xcb, 0xcc, 0xcc, 0xcb, 0xca, 0xc7, 0xc0, 0xb8, 0xb5, 0xb5, 0xb9, 0xbd, 0xbe, 0xbc, 0xbc, 0xbc, 0xa9, 0x86, 0x6f, 0x6d, 0x73, 0x79, 0x79, 0x78, 0x76, 0x6e, 0x74, 0x76, 0x79, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x78, 0x7d, 0x7d, 0x74, 0x6c, 0x69, 0x67, 0x64, 0x6a, 0x6d, 0x6f, 0x6d, 0x6c, 0x6f, 0x71, 0x71, 0x74, 0x72, 0x71, 0x71, 0x6f, 0x6e, 0x71, 0x77, 0x79, 0x71, 0x6d, 0x69, 0x65, 0x68, 0x6e, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x74, 0x73, 0x72, 0x71, 0x6f, 0x6c, 0x68, 0x65, 0x5e, 0x5e, 0x5a, 0x4d, 0x3a, 0x2c, 0x2d, 0x34, 0x3c, 0x36, 0x30, 0x2d, 0x2b, 0x28, 0x24, 0x21, 0x24, 0x24, 0x34, 0x4c, 0x4f, 0x40, 0x39, 0x41, 0x40, 0x5b, 0x78, 0x7f, 0x6f, 0x5a, 0x4f, 0x4e, 0x54, 0x48, 0x40, 0x3c, 0x32, 0x2b, 0x35, 0x46, 0x54, 0x6e, 0x85, 0x90, 0x95, 0x96, 0x93, 0x92, 0x98, 0x92, 0x93, 0x9e, 0xa8, 0xa5, 0x98, 0x8d, 0x81, 0x76, 0x68, 0x61, 0x6a, 0x7b, 0x88, 0x8c, 0x81, 0x8f, 0x9f, 0xa7, 0xa1, 0x8b, 0x6e, 0x58, 0x62, 0x6d, 0x6f, 0x69, 0x6d, 0x7c, 0x82, 0x7c, 0x89, 0x80, 0x74, 0x6b, 0x4b, 0x35, 0x20, 0x15, 0x1e, 0x20, 0x1e, 0x1d, 0x22, 0x29, 0x2a, 0x25, 0x28, 0x2b, 0x32, 0x3d, 0x46, 0x4c, 0x52, 0x59, 0x50, 0x4d, 0x50, 0x55, 0x4f, 0x3f, 0x32, 0x2e, 0x5e, 0x86, 0xa5, 0xad, 0xb3, 0xaf, 0x95, 0x7b, 0x5f, 0x6c, 0x75, 0x73, 0x6f, 0x6f, 0x71, 0x71, 0x63, 0x62, 0x62, 0x64, 0x66, 0x6a, 0x71, 0x78, 0x73, 0x75, 0x7b, 0x86, 0x92, 0x9c, 0xa2, 0xa3, 0xa3, 0xa2, 0xa3, 0xa9, 0xb0, 0xb4, 0xb4, 0xb2, 0xb4, 0xb4, 0xb2, 0xb0, 0xb1, 0xb5, 0xb7, 0xb7, 0xb8, 0xb7, 0xb3, 0xae, 0xae, 0xb2, 0xb8, 0xba, 0xb9, 0xba, 0xbc, 0xbc, 0xbb, 0xbb, 0xbc, 0xbd, 0xb8, 0xb7, 0xb6, 0xb6, 0xb7, 0xb9, 0xbb, 0xbc, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb7, 0xb6, 0xb5, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb8, 0xba, 0xbb, 0xba, 0xb8, 0xb7, 0xb7, 0xb6, 0xb3, 0xb2, 0xb3, 0xb5, 0xb5, 0xb5, 0xb5, 0xb6, 0xb8, 0xba, 0xbb, 0xbc, 0xb9, 0xb5, 0xb3, 0xb6, 0xb8, 0xb5, 0xb0, 0xac, 0xae, 0xaf, 0xaf, 0xb2, 0xb6, 0xb7, 0xb6, 0xad, 0xaf, 0xb3, 0xb7, 0xba, 0xbb, 0xb8, 0xb6, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xba, 0xbc, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbd, 0xbf, 0xc2, 0xc3, 0xba, 0xb9, 0xb6, 0xb5, 0xb8, 0xbd, 0xbd, 0xba, 0xbe, 0xc0, 0xc2, 0xc3, 0xc2, 0xc1, 0xbf, 0xbe, 0xc4, 0xc3, 0xbf, 0xbb, 0xb8, 0xb8, 0xbc, 0xc0, 0xbb, 0xbb, 0xbc, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb, 0xb7, 0xb8, 0xb9, 0xbb, 0xbc, 0xbc, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbc, 0xbc, 0xba, 0xbc, 0xbe, 0xc0, 0xc0, 0xbf, 0xbb, 0xb9, 0xbc, 0xc3, 0xc9, 0xe6, 0xe1, 0xda, 0xcf, 0xc6, 0xc7, 0xc1, 0xb2, 0xb0, 0xb5, 0xbb, 0xbf, 0xc0, 0xc1, 0xc4, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc3, 0xbe, 0xb7, 0xb3, 0xb0, 0xb2, 0xb7, 0xbd, 0xc3, 0xc9, 0xcd, 0xd0, 0xd1, 0xd2, 0xd7, 0xe4, 0xf6, 0xff, 0xff, 0xfb, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xfb, 0xfb, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfb, 0xfa, 0xf9, 0xf7, 0xf5, 0xf4, 0xf3, 0xf2, 0xf0, 0xeb, 0xe6, 0xe2, 0xe0, 0xe1, 0xe1, 0xdd, 0xd7, 0xd4, 0xd3, 0xd4, 0xda, 0xdd, 0xe2, 0xe7, 0xec, 0xf0, 0xf4, 0xf6, 0xf7, 0xf3, 0xed, 0xe9, 0xe9, 0xea, 0xeb, 0xeb, 0xeb, 0xe8, 0xe5, 0xe7, 0xed, 0xed, 0xe4, 0xd9, 0xc1, 0xb9, 0xb1, 0xaf, 0xb1, 0xb1, 0xaa, 0xa4, 0xa5, 0xa3, 0xa1, 0xa0, 0x9e, 0x9c, 0x99, 0x97, 0x98, 0x95, 0x92, 0x8e, 0x8d, 0x8e, 0x90, 0x91, 0x92, 0x91, 0x8f, 0x8c, 0x8b, 0x8b, 0x8d, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8d, 0x8c, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x86, 0x88, 0x88, 0x86, 0x85, 0x84, 0x85, 0x82, 0x80, 0x82, 0x8b, 0x91, 0x92, 0x94, 0x98, 0x96, 0x97, 0x94, 0x97, 0x93, 0x9a, 0xb7, 0xc3, 0xc1, 0xc1, 0xc2, 0xc4, 0xc8, 0xcb, 0xcd, 0xcd, 0xcd, 0xcc, 0xcb, 0xc8, 0xc1, 0xb9, 0xb5, 0xb6, 0xb8, 0xbf, 0xbd, 0xbf, 0xc0, 0xc0, 0xb8, 0x9b, 0x7b, 0x71, 0x72, 0x7b, 0x7e, 0x7e, 0x7f, 0x7b, 0x6f, 0x75, 0x7a, 0x7c, 0x7a, 0x78, 0x79, 0x7a, 0x76, 0x77, 0x77, 0x73, 0x6e, 0x69, 0x66, 0x65, 0x6b, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x71, 0x73, 0x77, 0x73, 0x72, 0x73, 0x71, 0x6f, 0x73, 0x7a, 0x75, 0x6d, 0x6b, 0x68, 0x64, 0x67, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6a, 0x66, 0x63, 0x60, 0x5e, 0x56, 0x4a, 0x41, 0x44, 0x53, 0x61, 0x5e, 0x4b, 0x36, 0x2c, 0x27, 0x22, 0x20, 0x20, 0x2f, 0x30, 0x39, 0x3f, 0x39, 0x32, 0x3f, 0x56, 0x88, 0x84, 0x76, 0x5e, 0x45, 0x39, 0x3e, 0x47, 0x43, 0x3a, 0x34, 0x31, 0x2c, 0x2b, 0x3c, 0x50, 0x6a, 0x67, 0x6a, 0x75, 0x80, 0x86, 0x87, 0x86, 0x88, 0x88, 0x89, 0x89, 0x82, 0x7d, 0x81, 0x8a, 0x8d, 0x87, 0x7f, 0x75, 0x6c, 0x69, 0x6d, 0x74, 0x76, 0x79, 0x7e, 0x86, 0x8e, 0x8d, 0x80, 0x72, 0x7c, 0x84, 0x8a, 0x8b, 0x89, 0x7f, 0x67, 0x50, 0x45, 0x4b, 0x60, 0x6f, 0x5d, 0x42, 0x33, 0x30, 0x3c, 0x44, 0x46, 0x3f, 0x3d, 0x42, 0x48, 0x48, 0x22, 0x21, 0x26, 0x31, 0x39, 0x3c, 0x40, 0x44, 0x41, 0x39, 0x34, 0x30, 0x24, 0x1e, 0x2e, 0x45, 0x6d, 0x86, 0x8a, 0x80, 0x8f, 0xac, 0xb7, 0xb1, 0x67, 0x69, 0x6e, 0x73, 0x75, 0x75, 0x76, 0x77, 0x78, 0x74, 0x73, 0x74, 0x75, 0x74, 0x74, 0x76, 0x74, 0x77, 0x81, 0x8e, 0x93, 0x91, 0x91, 0x96, 0x99, 0x99, 0x9c, 0xa2, 0xa9, 0xae, 0xae, 0xad, 0xac, 0xab, 0xaa, 0xab, 0xb0, 0xb6, 0xb8, 0xb7, 0xb6, 0xb4, 0xaf, 0xaa, 0xac, 0xb2, 0xb6, 0xb6, 0xb9, 0xbb, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xb8, 0xb6, 0xb4, 0xb3, 0xb5, 0xb8, 0xb9, 0xb9, 0xba, 0xbb, 0xbc, 0xbc, 0xbb, 0xb9, 0xb7, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xbd, 0xbb, 0xba, 0xbb, 0xb9, 0xb5, 0xb2, 0xb2, 0xb7, 0xb7, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbe, 0xbd, 0xb9, 0xb5, 0xb4, 0xb6, 0xb5, 0xb2, 0xae, 0xaf, 0xaf, 0xb0, 0xb3, 0xb7, 0xb7, 0xb4, 0xb1, 0xb0, 0xb1, 0xb5, 0xba, 0xbc, 0xba, 0xb7, 0xb6, 0xb7, 0xb8, 0xb7, 0xb6, 0xb4, 0xb1, 0xb0, 0xb3, 0xb5, 0xb8, 0xba, 0xbb, 0xbb, 0xbc, 0xbd, 0xc5, 0xc3, 0xbf, 0xbc, 0xb9, 0xb8, 0xb8, 0xb9, 0xbb, 0xba, 0xb8, 0xb7, 0xb9, 0xbd, 0xbf, 0xbe, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0xb2, 0xb0, 0xae, 0xac, 0xb2, 0xba, 0xbf, 0xc0, 0xbd, 0xb9, 0xb6, 0xb4, 0xb5, 0xb8, 0xba, 0xbc, 0xbc, 0xbb, 0xba, 0xb9, 0xbb, 0xbd, 0xc0, 0xc1, 0xc1, 0xc0, 0xbf, 0xbd, 0xbc, 0xbe, 0xc1, 0xc0, 0xbc, 0xbc, 0xbe, 0xbb, 0xbe, 0xc0, 0xbe, 0xbf, 0xc6, 0xd5, 0xe1, 0xe4, 0xd9, 0xd0, 0xc6, 0xbb, 0xb8, 0xb6, 0xaf, 0xb7, 0xbd, 0xc4, 0xc7, 0xc6, 0xc6, 0xc8, 0xca, 0xc7, 0xc7, 0xc8, 0xc8, 0xc6, 0xc1, 0xba, 0xb5, 0xab, 0xab, 0xac, 0xaf, 0xb6, 0xbe, 0xc6, 0xcb, 0xcd, 0xcc, 0xcc, 0xd2, 0xe0, 0xf0, 0xfa, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf9, 0xf8, 0xf7, 0xf6, 0xf5, 0xf1, 0xed, 0xea, 0xe8, 0xe8, 0xe7, 0xe5, 0xe2, 0xde, 0xda, 0xd8, 0xd8, 0xd8, 0xdb, 0xdf, 0xe4, 0xe9, 0xed, 0xee, 0xf9, 0xf6, 0xf1, 0xed, 0xeb, 0xe9, 0xe7, 0xe6, 0xf0, 0xee, 0xe8, 0xe2, 0xe3, 0xea, 0xf1, 0xf3, 0xf5, 0xdf, 0xc3, 0xb3, 0xb0, 0xb2, 0xaf, 0xab, 0xaa, 0xa8, 0xa5, 0xa3, 0xa3, 0xa1, 0x9f, 0x9d, 0x9c, 0x9a, 0x98, 0x96, 0x94, 0x94, 0x95, 0x95, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x94, 0x95, 0x92, 0x91, 0x8f, 0x8e, 0x8c, 0x8c, 0x8c, 0x8c, 0x8f, 0x8e, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x83, 0x84, 0x85, 0x85, 0x82, 0x7e, 0x7a, 0x78, 0x79, 0x7c, 0x83, 0x8a, 0x8f, 0x92, 0x94, 0x96, 0x92, 0x95, 0x92, 0x93, 0x93, 0xa1, 0xbd, 0xc5, 0xc0, 0xc0, 0xc2, 0xc5, 0xc9, 0xcc, 0xce, 0xce, 0xcf, 0xce, 0xcc, 0xc9, 0xc2, 0xbb, 0xb7, 0xb8, 0xba, 0xc1, 0xbe, 0xc2, 0xc1, 0xc1, 0xc1, 0xab, 0x8f, 0x77, 0x6c, 0x75, 0x7b, 0x7c, 0x7d, 0x7c, 0x72, 0x79, 0x7e, 0x7e, 0x78, 0x73, 0x74, 0x76, 0x77, 0x73, 0x73, 0x76, 0x74, 0x6d, 0x69, 0x6b, 0x70, 0x74, 0x75, 0x71, 0x6c, 0x6c, 0x6f, 0x70, 0x71, 0x6e, 0x6f, 0x72, 0x70, 0x6d, 0x6f, 0x76, 0x70, 0x6c, 0x6c, 0x6a, 0x63, 0x65, 0x6b, 0x6c, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6e, 0x6d, 0x6c, 0x6c, 0x6a, 0x68, 0x64, 0x61, 0x5d, 0x59, 0x52, 0x4a, 0x4a, 0x54, 0x63, 0x6e, 0x58, 0x50, 0x3f, 0x2b, 0x1c, 0x18, 0x1c, 0x21, 0x21, 0x2b, 0x2f, 0x2e, 0x38, 0x54, 0x74, 0x86, 0x66, 0x59, 0x49, 0x3e, 0x3c, 0x3f, 0x42, 0x42, 0x47, 0x3c, 0x32, 0x2c, 0x2a, 0x32, 0x47, 0x5b, 0x6b, 0x67, 0x69, 0x6c, 0x6e, 0x75, 0x81, 0x87, 0x83, 0x89, 0x91, 0x94, 0x8b, 0x81, 0x81, 0x89, 0x8a, 0x83, 0x83, 0x87, 0x7c, 0x68, 0x60, 0x65, 0x6a, 0x66, 0x61, 0x62, 0x6b, 0x74, 0x75, 0x72, 0x74, 0x6c, 0x6a, 0x6f, 0x74, 0x72, 0x70, 0x72, 0x6c, 0x5b, 0x5a, 0x68, 0x76, 0x80, 0x8a, 0x8d, 0x8d, 0x7b, 0x63, 0x55, 0x5a, 0x61, 0x55, 0x41, 0x37, 0x37, 0x3b, 0x3c, 0x35, 0x28, 0x23, 0x26, 0x22, 0x21, 0x24, 0x29, 0x28, 0x25, 0x2b, 0x36, 0x57, 0x5f, 0x60, 0x65, 0x80, 0xa2, 0xba, 0xc6, 0x76, 0x6c, 0x6a, 0x72, 0x77, 0x73, 0x70, 0x72, 0x6a, 0x68, 0x6a, 0x73, 0x7c, 0x7f, 0x7f, 0x7e, 0x84, 0x86, 0x8f, 0x98, 0x93, 0x87, 0x85, 0x8c, 0x92, 0x96, 0x9e, 0xa6, 0xad, 0xb0, 0xaf, 0xad, 0xaf, 0xae, 0xac, 0xad, 0xb2, 0xb7, 0xb7, 0xb3, 0xb7, 0xb3, 0xad, 0xa9, 0xac, 0xb2, 0xb6, 0xb5, 0xb7, 0xba, 0xbe, 0xbf, 0xbd, 0xbb, 0xbb, 0xbb, 0xb4, 0xb4, 0xb4, 0xb5, 0xb8, 0xbb, 0xba, 0xb7, 0xb5, 0xb7, 0xba, 0xbc, 0xbc, 0xbb, 0xba, 0xb9, 0xb3, 0xb3, 0xb5, 0xb6, 0xb7, 0xb7, 0xb8, 0xb8, 0xba, 0xb9, 0xba, 0xbc, 0xbc, 0xb7, 0xb3, 0xb2, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb3, 0xb5, 0xb5, 0xb2, 0xb2, 0xb6, 0xba, 0xbb, 0xb7, 0xb6, 0xb3, 0xb1, 0xb2, 0xb3, 0xaf, 0xaa, 0xa7, 0xa4, 0xa3, 0xa8, 0xb0, 0xb7, 0xb8, 0xb6, 0xb3, 0xb5, 0xb8, 0xbb, 0xbb, 0xba, 0xb8, 0xb6, 0xb2, 0xb4, 0xb5, 0xb4, 0xb1, 0xad, 0xaa, 0xa9, 0xaa, 0xac, 0xb0, 0xb5, 0xb9, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xbe, 0xbc, 0xbd, 0xc1, 0xc3, 0xc3, 0xc2, 0xbf, 0xbc, 0xbb, 0xba, 0xb8, 0xb5, 0xb3, 0xb5, 0xb5, 0xb4, 0xb3, 0xb2, 0xb3, 0xb4, 0xb5, 0xb8, 0xb8, 0xb8, 0xb9, 0xbb, 0xbc, 0xbc, 0xbb, 0xba, 0xbd, 0xc0, 0xc4, 0xc5, 0xc4, 0xc2, 0xc1, 0xc0, 0xbe, 0xc0, 0xc3, 0xc0, 0xba, 0xb8, 0xba, 0xb7, 0xbc, 0xc1, 0xc3, 0xc7, 0xd4, 0xe8, 0xf8, 0xdb, 0xca, 0xbf, 0xbb, 0xb3, 0xb0, 0xb7, 0xbd, 0xc5, 0xc3, 0xc3, 0xc4, 0xc7, 0xc9, 0xc9, 0xc9, 0xd0, 0xce, 0xcb, 0xc9, 0xc6, 0xc1, 0xbb, 0xb7, 0xad, 0xa9, 0xa3, 0x9f, 0xa2, 0xaa, 0xb3, 0xba, 0xbd, 0xc4, 0xc8, 0xc5, 0xc6, 0xd4, 0xea, 0xfb, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xff, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfc, 0xfb, 0xfc, 0xfa, 0xf9, 0xf7, 0xf6, 0xf3, 0xf0, 0xee, 0xed, 0xeb, 0xea, 0xeb, 0xec, 0xea, 0xe5, 0xe0, 0xd5, 0xd4, 0xd6, 0xda, 0xe0, 0xe5, 0xe8, 0xe9, 0xec, 0xf0, 0xf5, 0xf7, 0xf4, 0xee, 0xe8, 0xe4, 0xe2, 0xe7, 0xea, 0xe9, 0xea, 0xec, 0xeb, 0xe8, 0xe6, 0xeb, 0xea, 0xdc, 0xc6, 0xb5, 0xb0, 0xb2, 0xac, 0xaa, 0xa7, 0xa6, 0xa6, 0xa6, 0xa4, 0xa3, 0xa0, 0x9f, 0x9e, 0x9d, 0x9c, 0x9a, 0x99, 0x98, 0x96, 0x98, 0x9a, 0x99, 0x96, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x93, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x87, 0x88, 0x89, 0x89, 0x89, 0x88, 0x86, 0x85, 0x86, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x78, 0x77, 0x78, 0x7f, 0x86, 0x8b, 0x8e, 0x91, 0x94, 0x94, 0x91, 0x96, 0x93, 0x92, 0x94, 0xa7, 0xc3, 0xc8, 0xc0, 0xc0, 0xc2, 0xc6, 0xca, 0xcd, 0xce, 0xce, 0xd0, 0xcf, 0xce, 0xcb, 0xc4, 0xbc, 0xb9, 0xba, 0xbc, 0xc3, 0xbe, 0xc3, 0xc1, 0xbe, 0xc3, 0xb2, 0xa2, 0x7e, 0x69, 0x6f, 0x76, 0x76, 0x76, 0x76, 0x7c, 0x83, 0x87, 0x82, 0x78, 0x71, 0x71, 0x74, 0x7a, 0x73, 0x73, 0x7a, 0x7a, 0x72, 0x6e, 0x71, 0x73, 0x77, 0x78, 0x71, 0x6b, 0x69, 0x6b, 0x6d, 0x67, 0x65, 0x68, 0x6e, 0x6d, 0x68, 0x6a, 0x70, 0x6d, 0x6d, 0x70, 0x6d, 0x63, 0x63, 0x6b, 0x6e, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x66, 0x62, 0x5f, 0x5a, 0x56, 0x4e, 0x46, 0x43, 0x45, 0x45, 0x43, 0x47, 0x4e, 0x4a, 0x38, 0x26, 0x1c, 0x14, 0x0c, 0x11, 0x22, 0x41, 0x62, 0x74, 0x6f, 0x5d, 0x50, 0x49, 0x40, 0x33, 0x2a, 0x29, 0x2c, 0x30, 0x32, 0x3a, 0x38, 0x38, 0x3b, 0x3e, 0x43, 0x4d, 0x56, 0x60, 0x5c, 0x5f, 0x66, 0x6f, 0x7f, 0x8d, 0x8e, 0x7a, 0x6f, 0x66, 0x66, 0x66, 0x62, 0x60, 0x61, 0x5b, 0x5e, 0x5f, 0x60, 0x69, 0x73, 0x6e, 0x62, 0x63, 0x6f, 0x76, 0x6e, 0x5e, 0x54, 0x54, 0x57, 0x66, 0x73, 0x78, 0x76, 0x80, 0x9b, 0xb1, 0xb6, 0xb5, 0xac, 0xaa, 0xa5, 0x98, 0x86, 0x7a, 0x6d, 0x5b, 0x4e, 0x39, 0x30, 0x3e, 0x56, 0x5e, 0x58, 0x51, 0x62, 0x72, 0x69, 0x48, 0x2b, 0x2c, 0x3b, 0x3e, 0x36, 0x32, 0x39, 0x45, 0x4b, 0x45, 0x3d, 0x31, 0x42, 0x5a, 0x73, 0x83, 0x88, 0x97, 0xae, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x74, 0x71, 0x6f, 0x5e, 0x5f, 0x63, 0x68, 0x6a, 0x6b, 0x70, 0x75, 0x7a, 0x80, 0x8a, 0x92, 0x91, 0x8a, 0x89, 0x8b, 0x90, 0x97, 0xa0, 0xa7, 0xab, 0xaf, 0xb0, 0xb0, 0xaf, 0xb0, 0xad, 0xaa, 0xac, 0xb3, 0xb5, 0xb2, 0xb8, 0xb9, 0xaf, 0xa0, 0x9c, 0xa5, 0xac, 0xab, 0xb4, 0xb6, 0xb9, 0xbc, 0xbb, 0xb8, 0xb9, 0xbc, 0xba, 0xb8, 0xaf, 0xac, 0xb3, 0xb4, 0xb2, 0xb4, 0xb0, 0xb4, 0xb3, 0xb4, 0xb7, 0xb4, 0xb3, 0xba, 0xba, 0xb8, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3, 0xb5, 0xb7, 0xb7, 0xb5, 0xb3, 0xb4, 0xb7, 0xb6, 0xb3, 0xba, 0xb7, 0xb6, 0xb7, 0xb5, 0xb1, 0xb0, 0xb3, 0xaf, 0xb1, 0xb0, 0xaf, 0xb2, 0xb7, 0xb8, 0xb5, 0xb9, 0xb8, 0xb6, 0xb4, 0xb3, 0xb4, 0xb6, 0xb7, 0xb1, 0xae, 0xab, 0xab, 0xaf, 0xb5, 0xb6, 0xb5, 0xb6, 0xb4, 0xb1, 0xb0, 0xb3, 0xb7, 0xb7, 0xb5, 0xb3, 0xb3, 0xb3, 0xb6, 0xb9, 0xba, 0xb9, 0xb7, 0xbb, 0xbe, 0xc1, 0xc1, 0xbd, 0xb7, 0xb2, 0xb0, 0xb8, 0xb8, 0xb9, 0xbb, 0xbf, 0xc3, 0xc6, 0xc6, 0xbb, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xbb, 0xc1, 0xbb, 0xb5, 0xb2, 0xb3, 0xb5, 0xb4, 0xb3, 0xb5, 0xb8, 0xb8, 0xb7, 0xb7, 0xba, 0xb9, 0xb6, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb8, 0xb8, 0xb9, 0xbd, 0xb7, 0xb5, 0xb8, 0xba, 0xba, 0xbc, 0xbf, 0xbd, 0xb9, 0xb4, 0xb9, 0xcf, 0xe5, 0xe6, 0xdb, 0xc2, 0xbb, 0xb7, 0xb9, 0xbb, 0xbb, 0xbd, 0xc1, 0xc3, 0xc4, 0xc4, 0xc5, 0xc6, 0xc6, 0xc7, 0xc7, 0xcc, 0xc9, 0xc7, 0xc5, 0xc3, 0xc2, 0xc0, 0xbf, 0xba, 0xba, 0xb3, 0xa7, 0xa0, 0xa0, 0xa1, 0xa1, 0xab, 0xb3, 0xbe, 0xc0, 0xb8, 0xb7, 0xc9, 0xdf, 0xfa, 0xf5, 0xfc, 0xff, 0xf7, 0xf9, 0xff, 0xfe, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfd, 0xfe, 0xfe, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf7, 0xf7, 0xf7, 0xf8, 0xf8, 0xf6, 0xf1, 0xed, 0xee, 0xf2, 0xf3, 0xf0, 0xec, 0xe4, 0xe0, 0xdb, 0xd8, 0xd9, 0xdc, 0xe0, 0xe2, 0xe7, 0xed, 0xf2, 0xf3, 0xf4, 0xf5, 0xf2, 0xed, 0xe6, 0xe4, 0xe3, 0xe4, 0xe8, 0xec, 0xee, 0xee, 0xec, 0xe5, 0xe6, 0xee, 0xec, 0xd7, 0xbd, 0xac, 0xb1, 0xb1, 0xaf, 0xad, 0xaa, 0xa8, 0xa6, 0xa5, 0x9f, 0xa5, 0xa7, 0xa2, 0x9f, 0xa1, 0x9e, 0x98, 0x9b, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x95, 0x93, 0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8e, 0x8c, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x88, 0x87, 0x85, 0x81, 0x7e, 0x7d, 0x7e, 0x84, 0x87, 0x8b, 0x90, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x97, 0x95, 0x98, 0xb2, 0xc5, 0xc0, 0xc0, 0xc3, 0xc5, 0xc5, 0xc8, 0xcd, 0xcf, 0xce, 0xd1, 0xcf, 0xcc, 0xc7, 0xbf, 0xb8, 0xb7, 0xbb, 0xbf, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xaf, 0x8f, 0x6e, 0x6d, 0x79, 0x70, 0x6b, 0x7b, 0x7e, 0x89, 0x8f, 0x88, 0x79, 0x71, 0x73, 0x78, 0x79, 0x74, 0x74, 0x79, 0x78, 0x71, 0x6f, 0x72, 0x73, 0x79, 0x7a, 0x74, 0x6d, 0x6b, 0x6f, 0x72, 0x69, 0x67, 0x6a, 0x71, 0x72, 0x6c, 0x69, 0x6b, 0x6a, 0x6c, 0x6d, 0x6b, 0x68, 0x68, 0x6c, 0x6f, 0x70, 0x6a, 0x66, 0x66, 0x67, 0x66, 0x67, 0x68, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6b, 0x69, 0x68, 0x66, 0x64, 0x61, 0x5f, 0x58, 0x4e, 0x48, 0x47, 0x3f, 0x32, 0x2d, 0x30, 0x39, 0x43, 0x49, 0x41, 0x30, 0x21, 0x17, 0x12, 0x13, 0x1e, 0x42, 0x61, 0x65, 0x5e, 0x52, 0x43, 0x43, 0x2f, 0x1c, 0x1a, 0x22, 0x2a, 0x2f, 0x33, 0x36, 0x37, 0x40, 0x43, 0x3d, 0x3d, 0x48, 0x51, 0x65, 0x64, 0x5f, 0x59, 0x58, 0x5d, 0x62, 0x65, 0x5e, 0x63, 0x6e, 0x76, 0x6d, 0x59, 0x4d, 0x4c, 0x4e, 0x54, 0x65, 0x73, 0x67, 0x4d, 0x44, 0x4c, 0x64, 0x5d, 0x4f, 0x3f, 0x3a, 0x44, 0x51, 0x58, 0x4d, 0x56, 0x6f, 0x92, 0xad, 0xb7, 0xbc, 0xc0, 0xc1, 0xbd, 0xb3, 0xa0, 0x85, 0x71, 0x70, 0x79, 0x74, 0x60, 0x58, 0x5a, 0x5c, 0x69, 0x74, 0x71, 0x80, 0x8b, 0x8b, 0x74, 0x57, 0x4d, 0x56, 0x62, 0x57, 0x4d, 0x49, 0x38, 0x47, 0x56, 0x60, 0x4b, 0x3c, 0x34, 0x4d, 0x64, 0x77, 0x79, 0x72, 0x7e, 0x76, 0x74, 0x71, 0x6c, 0x67, 0x63, 0x61, 0x60, 0x60, 0x5f, 0x5f, 0x62, 0x66, 0x70, 0x7f, 0x8c, 0x89, 0x84, 0x7f, 0x7a, 0x74, 0x72, 0x77, 0x7e, 0x91, 0x97, 0x9e, 0xa3, 0xa5, 0xa8, 0xab, 0xac, 0xac, 0xa5, 0xa2, 0xa5, 0xad, 0xb2, 0xb5, 0xb7, 0xb0, 0xad, 0xa3, 0x99, 0x99, 0xa2, 0xa9, 0xaa, 0xb9, 0xb9, 0xba, 0xb8, 0xb3, 0xb0, 0xb4, 0xba, 0xbc, 0xbc, 0xb7, 0xb4, 0xb7, 0xb5, 0xaf, 0xaf, 0xac, 0xb0, 0xb0, 0xb1, 0xb3, 0xaf, 0xad, 0xb2, 0xb8, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb4, 0xb2, 0xb2, 0xb1, 0xb1, 0xb3, 0xb7, 0xb7, 0xb5, 0xb1, 0xb0, 0xb2, 0xb5, 0xb5, 0xb3, 0xb5, 0xb9, 0xb6, 0xb7, 0xb6, 0xb2, 0xb1, 0xb4, 0xb5, 0xb3, 0xb4, 0xb2, 0xb1, 0xb1, 0xb3, 0xb5, 0xb7, 0xb7, 0xad, 0xac, 0xac, 0xae, 0xb5, 0xbc, 0xc0, 0xc2, 0xba, 0xb8, 0xb5, 0xb4, 0xb5, 0xb8, 0xba, 0xba, 0xb1, 0xb1, 0xb1, 0xb3, 0xb6, 0xb7, 0xb7, 0xb6, 0xb5, 0xb8, 0xbc, 0xbe, 0xbc, 0xba, 0xb7, 0xb6, 0xb8, 0xb7, 0xb6, 0xb6, 0xb8, 0xb9, 0xb9, 0xb9, 0xbe, 0xbc, 0xba, 0xb8, 0xb8, 0xba, 0xbc, 0xbe, 0xbd, 0xb7, 0xb1, 0xae, 0xae, 0xaf, 0xaf, 0xad, 0xaf, 0xb5, 0xb8, 0xb7, 0xb7, 0xb9, 0xba, 0xb9, 0xb9, 0xbb, 0xbd, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xbd, 0xbb, 0xba, 0xba, 0xba, 0xb9, 0xba, 0xbc, 0xba, 0xb9, 0xbf, 0xd1, 0xe3, 0xe5, 0xd3, 0xbf, 0xb8, 0xb4, 0xb4, 0xb8, 0xbc, 0xbe, 0xc1, 0xc4, 0xc4, 0xc4, 0xc5, 0xc5, 0xc6, 0xc6, 0xc6, 0xc7, 0xc5, 0xc2, 0xc0, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbc, 0xbf, 0xc1, 0xbf, 0xbb, 0xb5, 0xab, 0xa1, 0xa1, 0xa2, 0xa9, 0xb5, 0xb9, 0xb5, 0xb1, 0xb2, 0xc2, 0xf0, 0xff, 0xf7, 0xfe, 0xff, 0xf7, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xf8, 0xf5, 0xf2, 0xf2, 0xf5, 0xf6, 0xf4, 0xf1, 0xee, 0xe9, 0xe1, 0xdb, 0xd8, 0xd8, 0xd9, 0xda, 0xe1, 0xe7, 0xec, 0xef, 0xf2, 0xf6, 0xf6, 0xf3, 0xf1, 0xed, 0xe9, 0xe7, 0xe7, 0xe8, 0xe9, 0xe9, 0xea, 0xe8, 0xe6, 0xe6, 0xe7, 0xe4, 0xdc, 0xd4, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xab, 0xa9, 0xa7, 0xb1, 0xa7, 0xa3, 0xa7, 0xa4, 0x9b, 0x9b, 0xa4, 0x9f, 0x9e, 0x9c, 0x9c, 0x9c, 0x9b, 0x99, 0x97, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x96, 0x97, 0x93, 0x94, 0x94, 0x94, 0x93, 0x92, 0x91, 0x91, 0x8e, 0x8d, 0x8b, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x86, 0x87, 0x87, 0x85, 0x83, 0x82, 0x83, 0x84, 0x89, 0x8b, 0x8f, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0xa0, 0xb7, 0xc4, 0xbf, 0xc1, 0xc3, 0xc5, 0xc6, 0xc8, 0xcd, 0xcf, 0xce, 0xd2, 0xd0, 0xcd, 0xc7, 0xbf, 0xb8, 0xb8, 0xbb, 0xbf, 0xbf, 0xc0, 0xc2, 0xc2, 0xc3, 0xc3, 0xc3, 0xbc, 0xa4, 0x84, 0x74, 0x73, 0x71, 0x71, 0x76, 0x79, 0x85, 0x8e, 0x89, 0x7a, 0x71, 0x74, 0x7b, 0x7f, 0x7c, 0x7b, 0x7a, 0x76, 0x70, 0x6e, 0x71, 0x75, 0x77, 0x77, 0x73, 0x6f, 0x6f, 0x6f, 0x6e, 0x70, 0x70, 0x73, 0x74, 0x71, 0x6b, 0x68, 0x68, 0x68, 0x6c, 0x6f, 0x6f, 0x6d, 0x6f, 0x75, 0x7a, 0x70, 0x6b, 0x67, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x62, 0x5e, 0x5c, 0x55, 0x57, 0x54, 0x4f, 0x51, 0x54, 0x4b, 0x3e, 0x4a, 0x50, 0x52, 0x4d, 0x40, 0x30, 0x1f, 0x13, 0x1f, 0x25, 0x3c, 0x53, 0x58, 0x57, 0x51, 0x44, 0x2f, 0x26, 0x22, 0x29, 0x2f, 0x2c, 0x24, 0x1f, 0x24, 0x2f, 0x3f, 0x45, 0x38, 0x2a, 0x36, 0x4f, 0x60, 0x5e, 0x58, 0x53, 0x51, 0x4f, 0x4a, 0x44, 0x4c, 0x4f, 0x57, 0x5f, 0x5e, 0x58, 0x56, 0x5a, 0x5f, 0x61, 0x5c, 0x50, 0x48, 0x45, 0x41, 0x3b, 0x4b, 0x50, 0x59, 0x5f, 0x5b, 0x59, 0x63, 0x73, 0x9d, 0xb0, 0xbb, 0xb2, 0xa4, 0xa3, 0xab, 0xb3, 0xb6, 0xb1, 0xa4, 0x8e, 0x74, 0x65, 0x69, 0x73, 0x81, 0x80, 0x75, 0x62, 0x5a, 0x69, 0x79, 0x7b, 0x86, 0x91, 0x88, 0x62, 0x40, 0x3a, 0x47, 0x54, 0x56, 0x32, 0x27, 0x33, 0x5a, 0x6e, 0x6f, 0x53, 0x4a, 0x41, 0x4c, 0x4f, 0x57, 0x67, 0x6b, 0x70, 0x77, 0x7d, 0x83, 0x84, 0x7d, 0x72, 0x69, 0x64, 0x61, 0x64, 0x69, 0x71, 0x79, 0x82, 0x8e, 0x98, 0x93, 0x8b, 0x80, 0x78, 0x74, 0x76, 0x7f, 0x87, 0x8e, 0x93, 0x9a, 0x9e, 0x9f, 0xa1, 0xa4, 0xa7, 0xa5, 0x9b, 0x96, 0x9f, 0xa9, 0xac, 0xaf, 0xb4, 0xb2, 0xa9, 0xa0, 0x9c, 0xa0, 0xa8, 0xad, 0xb0, 0xb5, 0xb7, 0xb9, 0xb8, 0xb3, 0xb0, 0xb4, 0xba, 0xba, 0xbd, 0xba, 0xb8, 0xba, 0xb8, 0xb4, 0xb7, 0xb3, 0xb6, 0xb4, 0xb3, 0xb4, 0xaf, 0xad, 0xb2, 0xb6, 0xb6, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0xb4, 0xb7, 0xb6, 0xb3, 0xaf, 0xad, 0xad, 0xac, 0xa9, 0xb3, 0xb3, 0xb5, 0xb6, 0xb5, 0xb2, 0xb3, 0xb6, 0xb4, 0xb6, 0xb5, 0xb3, 0xb0, 0xb0, 0xaf, 0xae, 0xaa, 0xa9, 0xa9, 0xac, 0xb1, 0xb5, 0xb6, 0xb6, 0xaf, 0xae, 0xae, 0xb0, 0xb2, 0xb6, 0xb9, 0xba, 0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xb2, 0xb5, 0xb8, 0xb7, 0xb6, 0xb6, 0xb7, 0xb9, 0xba, 0xbb, 0xbb, 0xb3, 0xb5, 0xb9, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbc, 0xbc, 0xbb, 0xbc, 0xbd, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbb, 0xba, 0xb9, 0xb9, 0xba, 0xba, 0xbc, 0xb7, 0xb1, 0xaf, 0xb0, 0xb2, 0xb2, 0xb1, 0xae, 0xb2, 0xb4, 0xb1, 0xaf, 0xb0, 0xb4, 0xb7, 0xba, 0xbc, 0xbc, 0xbb, 0xb9, 0xb6, 0xb4, 0xb3, 0xb5, 0xb9, 0xbc, 0xbc, 0xbe, 0xc1, 0xc5, 0xc7, 0xb6, 0xc0, 0xd3, 0xe7, 0xea, 0xd6, 0xbc, 0xac, 0xb1, 0xb1, 0xb4, 0xba, 0xc0, 0xc2, 0xc4, 0xc6, 0xc5, 0xc5, 0xc5, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xbc, 0xb9, 0xb5, 0xb2, 0xb2, 0xb3, 0xb3, 0xb3, 0xb6, 0xb7, 0xb8, 0xbb, 0xc1, 0xc2, 0xbc, 0xb5, 0xa6, 0x9a, 0x93, 0x9b, 0xa8, 0xac, 0xa9, 0xa7, 0xa3, 0xc3, 0xe5, 0xf3, 0xf5, 0xfd, 0xff, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfb, 0xfc, 0xfd, 0xfe, 0xfe, 0xfd, 0xfc, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xf9, 0xf8, 0xf7, 0xf8, 0xf8, 0xf8, 0xf7, 0xf9, 0xf3, 0xeb, 0xe3, 0xde, 0xdb, 0xd9, 0xd7, 0xdd, 0xe0, 0xe4, 0xe7, 0xec, 0xf2, 0xf6, 0xf6, 0xf7, 0xf4, 0xf1, 0xee, 0xeb, 0xe8, 0xe6, 0xe4, 0xe5, 0xe9, 0xe7, 0xe1, 0xe1, 0xe8, 0xeb, 0xe8, 0xea, 0xcb, 0xab, 0xa1, 0xac, 0xb5, 0xae, 0xa2, 0xa1, 0xa5, 0xa8, 0xaa, 0xaa, 0xaa, 0xa7, 0xa3, 0xa4, 0xa3, 0xa2, 0xa1, 0xa1, 0xa0, 0x9e, 0x9d, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x95, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8c, 0x8b, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x8a, 0x8c, 0x90, 0x91, 0x93, 0x94, 0x95, 0x96, 0x96, 0x95, 0x94, 0x97, 0x94, 0x99, 0xad, 0xbf, 0xc3, 0xc0, 0xc3, 0xc5, 0xc7, 0xc7, 0xca, 0xce, 0xd0, 0xd0, 0xcf, 0xcd, 0xca, 0xc5, 0xbe, 0xb7, 0xb8, 0xbc, 0xc0, 0xc0, 0xc1, 0xc2, 0xc3, 0xc5, 0xc6, 0xc7, 0xc4, 0xb7, 0x9d, 0x7d, 0x6b, 0x6e, 0x73, 0x6e, 0x85, 0x86, 0x88, 0x89, 0x88, 0x84, 0x7f, 0x7b, 0x6c, 0x6f, 0x73, 0x75, 0x74, 0x72, 0x72, 0x73, 0x75, 0x74, 0x71, 0x6f, 0x70, 0x71, 0x6f, 0x6b, 0x6d, 0x72, 0x74, 0x73, 0x70, 0x6f, 0x6e, 0x6c, 0x6c, 0x6f, 0x72, 0x71, 0x6e, 0x6f, 0x73, 0x78, 0x70, 0x6b, 0x69, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b, 0x68, 0x67, 0x67, 0x67, 0x69, 0x69, 0x69, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6a, 0x69, 0x67, 0x65, 0x63, 0x60, 0x5c, 0x59, 0x4d, 0x58, 0x60, 0x65, 0x72, 0x83, 0x85, 0x7c, 0x62, 0x5e, 0x56, 0x4c, 0x41, 0x35, 0x25, 0x18, 0x1a, 0x22, 0x36, 0x4a, 0x51, 0x51, 0x46, 0x34, 0x21, 0x1f, 0x23, 0x2b, 0x2e, 0x28, 0x22, 0x21, 0x26, 0x41, 0x4e, 0x43, 0x2e, 0x1d, 0x26, 0x42, 0x55, 0x5b, 0x60, 0x5f, 0x5a, 0x54, 0x4d, 0x48, 0x36, 0x3e, 0x45, 0x47, 0x45, 0x4a, 0x56, 0x62, 0x5f, 0x44, 0x31, 0x31, 0x2a, 0x20, 0x2b, 0x43, 0x47, 0x4c, 0x4a, 0x48, 0x5a, 0x7e, 0x99, 0xa2, 0x98, 0x91, 0x89, 0x8e, 0xa3, 0xb5, 0xb3, 0xa5, 0x9d, 0x95, 0x84, 0x6f, 0x5b, 0x4b, 0x3e, 0x36, 0x56, 0x64, 0x63, 0x54, 0x4e, 0x5a, 0x6e, 0x7e, 0x98, 0x93, 0x72, 0x3d, 0x1f, 0x2c, 0x4c, 0x61, 0x57, 0x34, 0x31, 0x44, 0x65, 0x7f, 0x8b, 0x76, 0x4a, 0x3c, 0x3f, 0x42, 0x44, 0x58, 0x62, 0x66, 0x71, 0x6f, 0x6c, 0x68, 0x67, 0x69, 0x6d, 0x70, 0x65, 0x65, 0x6a, 0x72, 0x78, 0x7b, 0x7c, 0x7e, 0x7c, 0x7a, 0x77, 0x76, 0x76, 0x78, 0x7b, 0x7e, 0x84, 0x8a, 0x94, 0x9b, 0x9e, 0x9e, 0x9f, 0xa1, 0x9f, 0x9a, 0x98, 0x9d, 0xa4, 0xa7, 0xa8, 0xa8, 0x9e, 0x94, 0x8d, 0x92, 0x9b, 0xa2, 0xa8, 0xad, 0xac, 0xae, 0xb2, 0xb2, 0xae, 0xa9, 0xa9, 0xac, 0xb0, 0xb3, 0xb0, 0xad, 0xaf, 0xaf, 0xb1, 0xb7, 0xb5, 0xb7, 0xb3, 0xaf, 0xad, 0xa7, 0xa4, 0xab, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb4, 0xb4, 0xb3, 0xad, 0xaf, 0xaf, 0xae, 0xaf, 0xb3, 0xb4, 0xb2, 0xb5, 0xb6, 0xb7, 0xb6, 0xb2, 0xaf, 0xae, 0xaf, 0xaa, 0xab, 0xab, 0xac, 0xae, 0xae, 0xab, 0xa8, 0xa2, 0xa2, 0xa4, 0xa8, 0xae, 0xb2, 0xb2, 0xb1, 0xae, 0xae, 0xaf, 0xb0, 0xae, 0xab, 0xab, 0xac, 0xaf, 0xae, 0xad, 0xac, 0xaa, 0xaa, 0xae, 0xb3, 0xbb, 0xba, 0xb9, 0xb8, 0xb9, 0xba, 0xbb, 0xbb, 0xb8, 0xb8, 0xb9, 0xb9, 0xb9, 0xb8, 0xb8, 0xb8, 0xb3, 0xb3, 0xb2, 0xb4, 0xb6, 0xb7, 0xb7, 0xb7, 0xb2, 0xb3, 0xb6, 0xb9, 0xba, 0xba, 0xba, 0xb9, 0xbd, 0xb8, 0xb4, 0xb3, 0xb6, 0xb9, 0xba, 0xb9, 0xba, 0xb9, 0xb5, 0xaf, 0xac, 0xae, 0xb2, 0xb5, 0xb4, 0xb6, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xba, 0xbc, 0xbb, 0xb6, 0xb3, 0xb4, 0xb5, 0xb3, 0xba, 0xd0, 0xe7, 0xe9, 0xd5, 0xbc, 0xaf, 0xae, 0xb1, 0xb4, 0xb9, 0xc0, 0xc4, 0xc6, 0xc6, 0xc6, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc5, 0xbd, 0xb9, 0xb2, 0xad, 0xaa, 0xa8, 0xa7, 0xa7, 0xaa, 0xa7, 0xa6, 0xa9, 0xb2, 0xbb, 0xc1, 0xc3, 0xb5, 0xa5, 0x93, 0x8c, 0x90, 0x9a, 0xa6, 0xaf, 0xa5, 0x9c, 0xba, 0xe6, 0xf4, 0xf9, 0xfe, 0xf9, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfd, 0xf9, 0xf4, 0xef, 0xeb, 0xe6, 0xe2, 0xdf, 0xde, 0xde, 0xdf, 0xe1, 0xe5, 0xeb, 0xf0, 0xf2, 0xf3, 0xf4, 0xf5, 0xf5, 0xf2, 0xed, 0xe8, 0xe4, 0xe0, 0xe5, 0xe6, 0xe3, 0xe2, 0xe4, 0xe5, 0xe3, 0xe0, 0xe8, 0xe8, 0xd6, 0xb9, 0xa6, 0xa5, 0xac, 0xab, 0xb0, 0xad, 0xa3, 0xa3, 0xaa, 0xab, 0xa4, 0xa7, 0xa6, 0xa5, 0xa5, 0xa5, 0xa4, 0xa3, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x96, 0x95, 0x94, 0x94, 0x94, 0x93, 0x91, 0x90, 0x8b, 0x8a, 0x8a, 0x89, 0x8a, 0x8c, 0x8f, 0x91, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x94, 0x98, 0x95, 0x9f, 0xba, 0xc7, 0xc3, 0xc2, 0xc6, 0xc8, 0xc9, 0xc9, 0xcb, 0xcf, 0xd1, 0xd1, 0xca, 0xc8, 0xc6, 0xc2, 0xbb, 0xb6, 0xb8, 0xbc, 0xc1, 0xc1, 0xc1, 0xc2, 0xc3, 0xc5, 0xc7, 0xc8, 0xca, 0xc3, 0xb3, 0x92, 0x75, 0x76, 0x7c, 0x72, 0x80, 0x7c, 0x7b, 0x7f, 0x82, 0x80, 0x7a, 0x76, 0x79, 0x78, 0x76, 0x73, 0x72, 0x72, 0x71, 0x70, 0x73, 0x71, 0x6d, 0x6b, 0x6d, 0x71, 0x71, 0x6e, 0x6f, 0x74, 0x75, 0x72, 0x73, 0x76, 0x75, 0x70, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6a, 0x69, 0x6b, 0x6e, 0x6d, 0x6b, 0x6b, 0x68, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x67, 0x68, 0x69, 0x6b, 0x6a, 0x69, 0x68, 0x69, 0x69, 0x69, 0x68, 0x66, 0x64, 0x62, 0x5f, 0x5b, 0x58, 0x5a, 0x64, 0x6f, 0x75, 0x72, 0x6d, 0x6a, 0x6b, 0x70, 0x6b, 0x61, 0x52, 0x42, 0x32, 0x22, 0x16, 0x13, 0x1c, 0x2c, 0x3c, 0x47, 0x48, 0x3b, 0x2a, 0x21, 0x24, 0x27, 0x25, 0x1c, 0x16, 0x1c, 0x27, 0x48, 0x65, 0x5b, 0x33, 0x1f, 0x19, 0x1c, 0x28, 0x40, 0x4d, 0x56, 0x53, 0x4d, 0x52, 0x62, 0x70, 0x84, 0x7f, 0x78, 0x73, 0x70, 0x66, 0x51, 0x3d, 0x34, 0x36, 0x35, 0x30, 0x2b, 0x2f, 0x3a, 0x43, 0x4a, 0x54, 0x5b, 0x61, 0x76, 0x90, 0x95, 0x88, 0x7e, 0x78, 0x7a, 0x85, 0x8d, 0x8b, 0x88, 0x88, 0x6d, 0x60, 0x48, 0x30, 0x26, 0x27, 0x27, 0x24, 0x2e, 0x45, 0x5a, 0x67, 0x65, 0x50, 0x44, 0x4f, 0x58, 0x44, 0x29, 0x1f, 0x33, 0x50, 0x5c, 0x57, 0x4a, 0x3d, 0x3f, 0x41, 0x48, 0x69, 0x87, 0x81, 0x72, 0x4c, 0x37, 0x3b, 0x33, 0x3f, 0x4b, 0x56, 0x6e, 0x68, 0x61, 0x60, 0x67, 0x71, 0x7a, 0x7f, 0x84, 0x7a, 0x73, 0x73, 0x78, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x78, 0x7f, 0x8c, 0x99, 0x9f, 0x9d, 0x9c, 0x9c, 0x9c, 0xa3, 0xa6, 0xa4, 0xa5, 0xa9, 0xa7, 0xa0, 0x89, 0x82, 0x81, 0x8c, 0x99, 0xa1, 0xa7, 0xae, 0xb4, 0xb2, 0xb2, 0xb0, 0xab, 0xa4, 0xa0, 0xa1, 0xac, 0xb0, 0xae, 0xab, 0xad, 0xae, 0xaf, 0xb6, 0xb6, 0xbb, 0xba, 0xb5, 0xb0, 0xa5, 0xa0, 0xa5, 0xb2, 0xb2, 0xaf, 0xab, 0xaa, 0xae, 0xb1, 0xb0, 0xad, 0xb0, 0xb2, 0xb3, 0xb4, 0xb7, 0xb8, 0xb7, 0xb0, 0xb1, 0xb3, 0xb3, 0xb3, 0xb2, 0xb0, 0xaf, 0xa8, 0xa3, 0x9f, 0xa1, 0xa7, 0xaa, 0xaa, 0xa9, 0xa3, 0xa4, 0xa6, 0xa9, 0xad, 0xae, 0xac, 0xaa, 0xa4, 0xa5, 0xaa, 0xb0, 0xb1, 0xad, 0xac, 0xad, 0xae, 0xae, 0xae, 0xae, 0xab, 0xa9, 0xad, 0xb3, 0xb7, 0xb7, 0xb6, 0xb5, 0xb4, 0xb4, 0xb5, 0xb5, 0xbb, 0xba, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4, 0xb4, 0xae, 0xad, 0xac, 0xad, 0xad, 0xad, 0xac, 0xab, 0xaa, 0xac, 0xaf, 0xb3, 0xb6, 0xb9, 0xbb, 0xbc, 0xbd, 0xb8, 0xb4, 0xb4, 0xb8, 0xbb, 0xbc, 0xbb, 0xc4, 0xbf, 0xb9, 0xb6, 0xb5, 0xb5, 0xb4, 0xb3, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xbb, 0xbd, 0xbf, 0xc0, 0xbe, 0xb9, 0xb3, 0xb1, 0xb3, 0xb4, 0xb3, 0xcd, 0xe1, 0xeb, 0xd8, 0xbb, 0xac, 0xad, 0xb2, 0xb2, 0xb7, 0xbe, 0xc4, 0xc7, 0xc8, 0xc7, 0xc6, 0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc4, 0xbf, 0xb8, 0xb1, 0xac, 0xa8, 0xa5, 0xa3, 0xa1, 0xa2, 0xa3, 0xa6, 0xa9, 0xaf, 0xb5, 0xbb, 0xbd, 0xb2, 0xa3, 0x94, 0x8b, 0x8b, 0x93, 0x9b, 0x9f, 0xa2, 0xa4, 0xc1, 0xee, 0xf9, 0xf2, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfa, 0xfa, 0xfb, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf7, 0xf2, 0xed, 0xe9, 0xe3, 0xe1, 0xe0, 0xe1, 0xe3, 0xe7, 0xec, 0xf0, 0xf0, 0xf2, 0xf4, 0xf4, 0xf3, 0xf0, 0xed, 0xeb, 0xe5, 0xe2, 0xe3, 0xe7, 0xe7, 0xe3, 0xe3, 0xe5, 0xe7, 0xe4, 0xe3, 0xe7, 0xe7, 0xd8, 0xbe, 0xa8, 0xb2, 0xa9, 0xa7, 0xad, 0xae, 0xa7, 0xa7, 0xad, 0xa9, 0xa8, 0xa7, 0xa7, 0xa7, 0xa7, 0xa5, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x97, 0x95, 0x93, 0x91, 0x90, 0x8e, 0x8d, 0x8e, 0x90, 0x91, 0x92, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x93, 0x96, 0x97, 0xa6, 0xc1, 0xc8, 0xc1, 0xc2, 0xc6, 0xc8, 0xc8, 0xc8, 0xca, 0xce, 0xd0, 0xd0, 0xc8, 0xc6, 0xc4, 0xc0, 0xbb, 0xb7, 0xb9, 0xbe, 0xc3, 0xc2, 0xc2, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc4, 0xbe, 0xb9, 0xa5, 0x88, 0x7e, 0x7e, 0x76, 0x70, 0x76, 0x7d, 0x7c, 0x73, 0x6d, 0x72, 0x7c, 0x81, 0x7a, 0x72, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x72, 0x71, 0x6d, 0x6a, 0x6b, 0x71, 0x75, 0x76, 0x7d, 0x7d, 0x79, 0x75, 0x75, 0x78, 0x74, 0x6c, 0x67, 0x66, 0x68, 0x6e, 0x75, 0x78, 0x75, 0x72, 0x6c, 0x69, 0x68, 0x6b, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x68, 0x68, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x68, 0x67, 0x67, 0x68, 0x68, 0x67, 0x65, 0x64, 0x62, 0x5e, 0x5a, 0x57, 0x56, 0x52, 0x4d, 0x47, 0x41, 0x41, 0x48, 0x50, 0x51, 0x59, 0x5e, 0x57, 0x46, 0x32, 0x20, 0x14, 0x17, 0x19, 0x1b, 0x22, 0x2f, 0x36, 0x33, 0x2f, 0x29, 0x2e, 0x30, 0x26, 0x13, 0x0c, 0x1c, 0x33, 0x6b, 0x70, 0x4c, 0x1d, 0x13, 0x16, 0x12, 0x14, 0x1d, 0x33, 0x49, 0x52, 0x52, 0x55, 0x5e, 0x67, 0x64, 0x5f, 0x53, 0x46, 0x3d, 0x38, 0x31, 0x2b, 0x36, 0x38, 0x36, 0x33, 0x35, 0x41, 0x52, 0x5e, 0x4f, 0x49, 0x59, 0x7c, 0x91, 0x84, 0x6d, 0x60, 0x5c, 0x6e, 0x8b, 0xa0, 0x96, 0x72, 0x4e, 0x3b, 0x32, 0x2f, 0x24, 0x16, 0x14, 0x1d, 0x27, 0x2b, 0x37, 0x44, 0x55, 0x6a, 0x70, 0x57, 0x3d, 0x3d, 0x40, 0x46, 0x4e, 0x51, 0x4e, 0x4f, 0x59, 0x66, 0x59, 0x4e, 0x49, 0x45, 0x42, 0x62, 0x84, 0x8d, 0x82, 0x5c, 0x39, 0x3f, 0x35, 0x38, 0x33, 0x33, 0x64, 0x61, 0x60, 0x65, 0x6e, 0x74, 0x74, 0x73, 0x7b, 0x71, 0x6a, 0x6d, 0x74, 0x78, 0x78, 0x77, 0x7e, 0x7f, 0x7c, 0x77, 0x74, 0x74, 0x75, 0x75, 0x74, 0x78, 0x84, 0x94, 0x9d, 0x9b, 0x98, 0x97, 0x99, 0xa8, 0xae, 0xaa, 0xa8, 0xac, 0xa7, 0x9b, 0x8e, 0x8c, 0x8f, 0x99, 0xa1, 0xa4, 0xa8, 0xac, 0xb1, 0xae, 0xa9, 0xa5, 0x9f, 0x9b, 0x9c, 0xa0, 0xa1, 0xa8, 0xa9, 0xaa, 0xae, 0xad, 0xad, 0xb2, 0xb2, 0xbb, 0xbe, 0xba, 0xb1, 0xa2, 0x9b, 0xa1, 0xad, 0xad, 0xa9, 0xa3, 0xa2, 0xa8, 0xab, 0xaa, 0xb0, 0xb4, 0xb6, 0xb5, 0xb4, 0xb3, 0xb2, 0xb0, 0xb3, 0xb4, 0xb5, 0xb5, 0xb7, 0xb7, 0xb3, 0xae, 0xab, 0xa1, 0x98, 0x98, 0x9e, 0xa4, 0xa8, 0xab, 0xa6, 0xa8, 0xab, 0xad, 0xad, 0xab, 0xa8, 0xa6, 0x9e, 0x9f, 0xa5, 0xaf, 0xb4, 0xb2, 0xb1, 0xb3, 0xb3, 0xb1, 0xb2, 0xb3, 0xb0, 0xab, 0xad, 0xb3, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb7, 0xb8, 0xba, 0xb8, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb2, 0xb2, 0xb2, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5, 0xb6, 0xb4, 0xb2, 0xb0, 0xb0, 0xb3, 0xb6, 0xb8, 0xbe, 0xba, 0xb5, 0xb4, 0xb7, 0xb9, 0xb8, 0xb7, 0xb8, 0xb4, 0xb3, 0xb7, 0xb9, 0xb5, 0xaf, 0xab, 0xbb, 0xbb, 0xba, 0xb8, 0xb6, 0xb5, 0xb5, 0xb6, 0xbc, 0xb7, 0xb3, 0xb3, 0xb5, 0xba, 0xc2, 0xca, 0xe1, 0xe5, 0xdb, 0xc2, 0xae, 0xab, 0xae, 0xad, 0xb1, 0xb8, 0xc0, 0xc4, 0xc7, 0xc9, 0xc8, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc1, 0xbc, 0xb6, 0xb1, 0xac, 0xa8, 0xa5, 0xa1, 0xa2, 0xa4, 0xa4, 0xa2, 0xa4, 0xad, 0xb7, 0xbe, 0xb7, 0xad, 0xa1, 0x96, 0x8f, 0x8b, 0x8a, 0x96, 0xa4, 0xa3, 0xa1, 0xbf, 0xeb, 0xff, 0xff, 0xf9, 0xfa, 0xfb, 0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfe, 0xfd, 0xfb, 0xfa, 0xfa, 0xfb, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfd, 0xfb, 0xfb, 0xfc, 0xfd, 0xfb, 0xf8, 0xf3, 0xef, 0xeb, 0xe7, 0xe5, 0xe5, 0xe6, 0xe8, 0xec, 0xf0, 0xf2, 0xf2, 0xf1, 0xef, 0xee, 0xee, 0xef, 0xf0, 0xf2, 0xe9, 0xe4, 0xe6, 0xe5, 0xe1, 0xe2, 0xe8, 0xe8, 0xe3, 0xdf, 0xe1, 0xe5, 0xe5, 0xde, 0xd7, 0xc0, 0xb9, 0xb2, 0xaf, 0xad, 0xac, 0xab, 0xac, 0xaa, 0xa9, 0xa8, 0xa8, 0xa9, 0xa8, 0xa7, 0xa5, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x99, 0x97, 0x95, 0x97, 0x95, 0x93, 0x92, 0x93, 0x94, 0x94, 0x94, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x94, 0x95, 0x9d, 0xb1, 0xc3, 0xc4, 0xbf, 0xc1, 0xc5, 0xc6, 0xc6, 0xc5, 0xc7, 0xcb, 0xcd, 0xcd, 0xc9, 0xc7, 0xc5, 0xc2, 0xbc, 0xb9, 0xbb, 0xc1, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0xce, 0xc9, 0xc9, 0xc4, 0xb0, 0x99, 0x8c, 0x85, 0x6e, 0x72, 0x79, 0x7a, 0x73, 0x6d, 0x71, 0x7b, 0x72, 0x70, 0x74, 0x7e, 0x80, 0x79, 0x6f, 0x6a, 0x71, 0x71, 0x6e, 0x6b, 0x6c, 0x72, 0x78, 0x7b, 0x7e, 0x7b, 0x76, 0x73, 0x73, 0x73, 0x70, 0x6a, 0x6d, 0x6b, 0x6b, 0x71, 0x79, 0x7d, 0x7a, 0x75, 0x6d, 0x6a, 0x68, 0x6b, 0x6d, 0x6c, 0x6b, 0x6b, 0x6d, 0x6c, 0x69, 0x68, 0x68, 0x69, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x66, 0x64, 0x62, 0x5f, 0x5b, 0x56, 0x52, 0x46, 0x45, 0x40, 0x3e, 0x45, 0x4e, 0x4a, 0x40, 0x59, 0x61, 0x65, 0x5b, 0x47, 0x32, 0x20, 0x16, 0x16, 0x16, 0x13, 0x17, 0x22, 0x25, 0x25, 0x2b, 0x31, 0x32, 0x2f, 0x24, 0x19, 0x1f, 0x3d, 0x5b, 0x6d, 0x54, 0x2b, 0x12, 0x13, 0x12, 0x0f, 0x15, 0x11, 0x23, 0x3b, 0x4b, 0x51, 0x4e, 0x44, 0x3b, 0x31, 0x2e, 0x28, 0x21, 0x21, 0x31, 0x4c, 0x61, 0x47, 0x31, 0x28, 0x34, 0x3f, 0x46, 0x57, 0x6c, 0x69, 0x6b, 0x71, 0x6f, 0x5e, 0x50, 0x5c, 0x73, 0x7e, 0x85, 0x7c, 0x5e, 0x3d, 0x2d, 0x29, 0x29, 0x19, 0x19, 0x1c, 0x29, 0x3a, 0x44, 0x40, 0x37, 0x40, 0x44, 0x4a, 0x58, 0x68, 0x68, 0x5a, 0x50, 0x50, 0x44, 0x3e, 0x45, 0x4b, 0x4d, 0x54, 0x5d, 0x5a, 0x50, 0x49, 0x4e, 0x46, 0x54, 0x71, 0x91, 0x8e, 0x77, 0x47, 0x47, 0x43, 0x4d, 0x3f, 0x34, 0x79, 0x72, 0x6a, 0x67, 0x6b, 0x72, 0x78, 0x7b, 0x78, 0x76, 0x78, 0x7e, 0x82, 0x81, 0x7b, 0x78, 0x83, 0x86, 0x85, 0x7f, 0x7d, 0x81, 0x87, 0x8a, 0x79, 0x78, 0x7e, 0x8c, 0x96, 0x95, 0x93, 0x93, 0x95, 0x9f, 0xa5, 0xa5, 0xa4, 0xa3, 0x9b, 0x90, 0x8a, 0x8e, 0x94, 0x99, 0x9a, 0x98, 0x98, 0x9a, 0x9e, 0x9d, 0x9c, 0x97, 0x8f, 0x8c, 0x92, 0x9b, 0x9b, 0xa0, 0xa0, 0xa0, 0xa3, 0xa1, 0x9e, 0xa1, 0xa1, 0xaa, 0xac, 0xa4, 0x98, 0x8b, 0x8a, 0x95, 0xa9, 0xab, 0xa7, 0xa0, 0x9f, 0xa5, 0xa7, 0xa5, 0xa1, 0xa8, 0xaf, 0xb3, 0xb6, 0xb9, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb4, 0xb6, 0xb7, 0xaf, 0xa6, 0xa1, 0x9b, 0x97, 0x97, 0x99, 0x9b, 0xa0, 0xa6, 0xa0, 0xa5, 0xab, 0xae, 0xae, 0xac, 0xaa, 0xaa, 0xa4, 0xa1, 0xa5, 0xaf, 0xb5, 0xb4, 0xb4, 0xb7, 0xb9, 0xb6, 0xb6, 0xb8, 0xb4, 0xad, 0xac, 0xb1, 0xba, 0xbc, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbf, 0xb9, 0xb8, 0xb6, 0xb7, 0xb9, 0xbb, 0xbb, 0xba, 0xb3, 0xb3, 0xb4, 0xb7, 0xba, 0xbc, 0xbc, 0xbc, 0xc0, 0xbe, 0xbb, 0xb7, 0xb4, 0xb3, 0xb3, 0xb3, 0xbc, 0xb8, 0xb3, 0xb2, 0xb4, 0xb5, 0xb5, 0xb3, 0xac, 0xaa, 0xac, 0xb2, 0xb4, 0xb1, 0xac, 0xab, 0xb2, 0xb6, 0xba, 0xbe, 0xc0, 0xc1, 0xc2, 0xc3, 0xbb, 0xb4, 0xb0, 0xaf, 0xad, 0xb0, 0xbf, 0xd2, 0xe6, 0xd9, 0xc3, 0xb0, 0xa9, 0xac, 0xad, 0xaa, 0xb4, 0xbb, 0xc2, 0xc4, 0xc6, 0xc8, 0xc8, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0xc4, 0xc2, 0xbf, 0xbb, 0xb7, 0xb2, 0xac, 0xa8, 0xa6, 0xa4, 0xa3, 0xa1, 0x9e, 0xa1, 0xac, 0xb8, 0xb9, 0xb8, 0xb4, 0xad, 0xa3, 0x9a, 0x93, 0x8e, 0x91, 0x94, 0xa1, 0xa0, 0x9e, 0xc8, 0xf5, 0xf9, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xff, 0xfe, 0xfd, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xf9, 0xf6, 0xf4, 0xf3, 0xef, 0xeb, 0xeb, 0xea, 0xe8, 0xea, 0xee, 0xf0, 0xf0, 0xf1, 0xef, 0xed, 0xec, 0xed, 0xef, 0xf3, 0xf0, 0xed, 0xea, 0xe7, 0xe4, 0xe4, 0xe5, 0xdf, 0xe4, 0xe8, 0xe7, 0xe4, 0xe2, 0xe5, 0xe9, 0xed, 0xe7, 0xd3, 0xb9, 0xaf, 0xb4, 0xb4, 0xab, 0xac, 0xab, 0xaa, 0xaa, 0xab, 0xab, 0xa9, 0xa8, 0xa9, 0xa9, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9d, 0x9d, 0x9b, 0x99, 0x97, 0x9a, 0x98, 0x97, 0x97, 0x99, 0x9a, 0x99, 0x98, 0x9b, 0x9b, 0x9b, 0x9c, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x98, 0xa8, 0xbd, 0xc3, 0xbf, 0xbf, 0xc1, 0xc5, 0xc6, 0xc6, 0xc4, 0xc6, 0xca, 0xcc, 0xcc, 0xcb, 0xc9, 0xc6, 0xc2, 0xbc, 0xb8, 0xbb, 0xc0, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xc0, 0xc2, 0xb7, 0x99, 0x7c, 0x73, 0x6c, 0x68, 0x6a, 0x72, 0x75, 0x71, 0x6e, 0x6f, 0x7a, 0x79, 0x83, 0x8f, 0x8b, 0x77, 0x69, 0x66, 0x6f, 0x6f, 0x6d, 0x6b, 0x6c, 0x72, 0x76, 0x77, 0x77, 0x74, 0x72, 0x72, 0x70, 0x6e, 0x6f, 0x71, 0x76, 0x73, 0x70, 0x71, 0x73, 0x75, 0x74, 0x73, 0x70, 0x6c, 0x6a, 0x6c, 0x6e, 0x6d, 0x6d, 0x6d, 0x70, 0x6e, 0x6b, 0x69, 0x69, 0x69, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x67, 0x66, 0x65, 0x62, 0x5f, 0x5b, 0x55, 0x4f, 0x4a, 0x49, 0x3d, 0x33, 0x3c, 0x57, 0x75, 0x87, 0x8d, 0x82, 0x80, 0x77, 0x66, 0x52, 0x3e, 0x2b, 0x1f, 0x1c, 0x1f, 0x20, 0x26, 0x2c, 0x22, 0x1b, 0x25, 0x33, 0x2b, 0x22, 0x1d, 0x1e, 0x2b, 0x46, 0x5e, 0x48, 0x2d, 0x16, 0x12, 0x14, 0x11, 0x11, 0x18, 0x1d, 0x1e, 0x1f, 0x21, 0x27, 0x2c, 0x2c, 0x28, 0x29, 0x1e, 0x18, 0x20, 0x2e, 0x3a, 0x44, 0x4a, 0x5e, 0x68, 0x6c, 0x6c, 0x75, 0x82, 0x80, 0x73, 0x71, 0x63, 0x55, 0x58, 0x6f, 0x82, 0x7e, 0x6f, 0x6f, 0x57, 0x36, 0x23, 0x28, 0x33, 0x2d, 0x1f, 0x1e, 0x1d, 0x26, 0x3e, 0x59, 0x68, 0x69, 0x65, 0x4f, 0x4a, 0x50, 0x5d, 0x63, 0x61, 0x56, 0x48, 0x54, 0x4d, 0x48, 0x44, 0x3d, 0x37, 0x39, 0x40, 0x52, 0x59, 0x57, 0x5e, 0x52, 0x51, 0x5e, 0x84, 0x9b, 0x84, 0x3f, 0x38, 0x3c, 0x4e, 0x48, 0x4b, 0x79, 0x77, 0x74, 0x72, 0x71, 0x71, 0x70, 0x70, 0x81, 0x80, 0x81, 0x82, 0x7d, 0x74, 0x6d, 0x69, 0x71, 0x78, 0x7c, 0x7a, 0x79, 0x7d, 0x82, 0x84, 0x81, 0x7a, 0x7a, 0x85, 0x8f, 0x90, 0x8e, 0x8f, 0x90, 0x92, 0x97, 0x9b, 0x9c, 0x96, 0x8c, 0x83, 0x7c, 0x86, 0x90, 0x93, 0x92, 0x90, 0x90, 0x90, 0xa0, 0xa4, 0xa7, 0xa1, 0x94, 0x8d, 0x93, 0x9d, 0xb4, 0xb4, 0xac, 0xa5, 0xa3, 0x9f, 0x9a, 0x9c, 0x9b, 0xa2, 0x9e, 0x91, 0x84, 0x7c, 0x84, 0x96, 0xa8, 0xab, 0xa8, 0xa1, 0xa0, 0xa6, 0xa7, 0xa3, 0xa5, 0xac, 0xb3, 0xb7, 0xb9, 0xba, 0xba, 0xb8, 0xb1, 0xb0, 0xad, 0xad, 0xb1, 0xb2, 0xaa, 0x9f, 0x92, 0x93, 0x96, 0x9a, 0x98, 0x95, 0x98, 0x9d, 0x96, 0x9d, 0xa7, 0xad, 0xae, 0xad, 0xaf, 0xb1, 0xaa, 0xa5, 0xa6, 0xb0, 0xb8, 0xba, 0xbc, 0xc0, 0xbf, 0xbb, 0xba, 0xbc, 0xb8, 0xaf, 0xac, 0xb0, 0xb6, 0xb8, 0xbb, 0xbd, 0xbc, 0xbc, 0xbe, 0xbf, 0xbb, 0xba, 0xb9, 0xba, 0xbd, 0xc0, 0xc0, 0xbf, 0xbb, 0xbb, 0xbb, 0xbc, 0xbe, 0xbe, 0xbd, 0xbb, 0xb9, 0xbb, 0xbe, 0xc0, 0xbf, 0xbd, 0xb9, 0xb7, 0xb5, 0xb1, 0xad, 0xad, 0xaf, 0xb1, 0xb1, 0xaf, 0xaf, 0xad, 0xaf, 0xb2, 0xb3, 0xb1, 0xb2, 0xb6, 0xad, 0xb1, 0xb7, 0xbc, 0xbd, 0xbd, 0xbc, 0xbb, 0xb7, 0xb2, 0xb1, 0xb5, 0xb4, 0xb8, 0xd0, 0xed, 0xe0, 0xcb, 0xb3, 0xa7, 0xa5, 0xa7, 0xab, 0xae, 0xb8, 0xbf, 0xc5, 0xc5, 0xc6, 0xc7, 0xc7, 0xc5, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc7, 0xc8, 0xc6, 0xc5, 0xc2, 0xbe, 0xb8, 0xb1, 0xac, 0xa9, 0xa8, 0xa9, 0xa9, 0xa5, 0xa3, 0xa8, 0xb0, 0xaf, 0xb8, 0xbf, 0xbb, 0xae, 0x9f, 0x95, 0x90, 0x89, 0x91, 0x9b, 0xac, 0xb2, 0xa9, 0xbd, 0xe8, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf8, 0xf7, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfe, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xff, 0xfe, 0xfd, 0xfc, 0xfc, 0xfd, 0xff, 0xff, 0xff, 0xfe, 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xfe, 0xfc, 0xfb, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf4, 0xf0, 0xee, 0xeb, 0xe6, 0xe6, 0xe9, 0xe9, 0xed, 0xf1, 0xf3, 0xf1, 0xed, 0xeb, 0xea, 0xe6, 0xf0, 0xf7, 0xf4, 0xf0, 0xef, 0xeb, 0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe4, 0xe4, 0xe5, 0xe6, 0xea, 0xe8, 0xeb, 0xf0, 0xe8, 0xd2, 0xbd, 0xb2, 0xad, 0xac, 0xac, 0xac, 0xad, 0xac, 0xab, 0xa9, 0xaa, 0xaa, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa4, 0xa5, 0xa4, 0xa2, 0xa1, 0xa0, 0x9f, 0x9f, 0x9f, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9b, 0x99, 0x9a, 0x99, 0x99, 0x9a, 0x9d, 0x9e, 0x9d, 0x9c, 0x9e, 0x9e, 0x9f, 0x9f, 0x9e, 0x9d, 0x9b, 0x9a, 0xa0, 0x9d, 0xb1, 0xc7, 0xc4, 0xbd, 0xc0, 0xc2, 0xc7, 0xc8, 0xc7, 0xc6, 0xc7, 0xcb, 0xcd, 0xcd, 0xcd, 0xca, 0xc7, 0xc2, 0xbb, 0xb6, 0xb9, 0xbe, 0xc2, 0xc3, 0xc4, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc9, 0xca, 0xc8, 0xca, 0xc6, 0xa4, 0x7d, 0x6f, 0x6b, 0x6b, 0x72, 0x7b, 0x7b, 0x75, 0x73, 0x76, 0x76, 0x70, 0x73, 0x7b, 0x76, 0x68, 0x69, 0x75, 0x6d, 0x6c, 0x6a, 0x69, 0x6c, 0x71, 0x72, 0x70, 0x78, 0x76, 0x76, 0x77, 0x71, 0x6c, 0x6f, 0x77, 0x75, 0x73, 0x6f, 0x6c, 0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x6e, 0x6c, 0x6d, 0x6f, 0x6f, 0x6e, 0x6f, 0x72, 0x6f, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x67, 0x66, 0x64, 0x61, 0x5c, 0x57, 0x50, 0x49, 0x44, 0x3c, 0x3a, 0x4e, 0x73, 0x87, 0x80, 0x75, 0x76, 0x65, 0x64, 0x62, 0x60, 0x5d, 0x55, 0x45, 0x37, 0x2e, 0x32, 0x32, 0x38, 0x3a, 0x28, 0x1f, 0x2d, 0x30, 0x24, 0x1a, 0x19, 0x1c, 0x1e, 0x22, 0x27, 0x20, 0x15, 0x11, 0x12, 0x10, 0x11, 0x14, 0x14, 0x16, 0x1a, 0x1d, 0x1d, 0x1e, 0x20, 0x20, 0x1f, 0x11, 0x17, 0x1e, 0x1f, 0x1a, 0x23, 0x47, 0x6c, 0x70, 0x6d, 0x6f, 0x73, 0x70, 0x69, 0x6a, 0x70, 0x67, 0x6a, 0x73, 0x7b, 0x76, 0x60, 0x47, 0x37, 0x26, 0x26, 0x2d, 0x36, 0x33, 0x27, 0x1e, 0x1e, 0x1f, 0x33, 0x50, 0x66, 0x6a, 0x66, 0x6a, 0x73, 0x6a, 0x4c, 0x42, 0x48, 0x41, 0x3c, 0x44, 0x4c, 0x49, 0x43, 0x3c, 0x3a, 0x3e, 0x44, 0x46, 0x46, 0x3a, 0x4f, 0x49, 0x4c, 0x45, 0x44, 0x3b, 0x4e, 0x52, 0x45, 0x0f, 0x24, 0x34, 0x3a, 0x2d, 0x3a, 0x74, 0x75, 0x76, 0x76, 0x77, 0x76, 0x74, 0x71, 0x6a, 0x6d, 0x6e, 0x6c, 0x68, 0x66, 0x66, 0x67, 0x71, 0x77, 0x7d, 0x7f, 0x7d, 0x7b, 0x80, 0x86, 0x7a, 0x74, 0x74, 0x7f, 0x8e, 0x94, 0x8c, 0x81, 0x76, 0x82, 0x8c, 0x8d, 0x89, 0x84, 0x7c, 0x74, 0x7a, 0x81, 0x92, 0xa6, 0xa9, 0x99, 0x89, 0x82, 0x93, 0xa0, 0xa8, 0xa5, 0x96, 0x85, 0x86, 0x98, 0xa7, 0xaa, 0xaa, 0xa7, 0xa7, 0xa4, 0x98, 0x89, 0x8a, 0x8b, 0x87, 0x7d, 0x78, 0x7f, 0x8e, 0x9a, 0xa1, 0xa9, 0xaa, 0x9f, 0x98, 0x9b, 0xa0, 0xa1, 0xa3, 0xa8, 0xaa, 0xa6, 0xa4, 0xa9, 0xae, 0xb1, 0xb2, 0xa9, 0xa7, 0xac, 0xaf, 0xaf, 0xa5, 0x93, 0x83, 0x8e, 0x92, 0x95, 0x8f, 0x8c, 0x91, 0x85, 0x8c, 0x97, 0xa5, 0xa8, 0xa8, 0xaf, 0xb2, 0xaa, 0xac, 0xa9, 0xb1, 0xb5, 0xba, 0xbe, 0xb9, 0xbd, 0xbe, 0xbd, 0xbe, 0xbf, 0xbc, 0xb5, 0xae, 0xaa, 0xb0, 0xb6, 0xb9, 0xb8, 0xb8, 0xbb, 0xba, 0xb5, 0xb1, 0xb0, 0xaf, 0xb0, 0xb6, 0xbd, 0xc0, 0xbe, 0xb9, 0xb6, 0xb6, 0xbb, 0xbf, 0xbe, 0xbe, 0xc1, 0xbd, 0xc0, 0xbf, 0xba, 0xb9, 0xbb, 0xbc, 0xb9, 0xba, 0xb7, 0xac, 0xa8, 0xb2, 0xb5, 0xae, 0xa9, 0xa9, 0xb2, 0xb9, 0xb8, 0xb4, 0xb0, 0xab, 0xa6, 0xab, 0xaf, 0xb5, 0xbb, 0xbe, 0xbc, 0xb5, 0xaf, 0xb0, 0xb2, 0xc4, 0xc1, 0xb0, 0xc7, 0xe5, 0xdd, 0xcc, 0xb7, 0xa8, 0xa7, 0xa9, 0xa7, 0xa9, 0xb1, 0xbc, 0xbf, 0xc4, 0xc7, 0xc8, 0xc8, 0xc8, 0xc8, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc7, 0xc6, 0xc4, 0xc2, 0xbf, 0xbb, 0xb5, 0xb1, 0xaf, 0xa8, 0xa4, 0xa6, 0xa6, 0xa4, 0xa8, 0xaf, 0xb5, 0xb4, 0xb4, 0xb7, 0xbb, 0xb8, 0xab, 0x9e, 0x91, 0x8a, 0x8f, 0x9f, 0xa7, 0xa6, 0xaf, 0xbe, 0xf5, 0xfa, 0xf8, 0xfc, 0xff, 0xfa, 0xf2, 0xfe, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xf8, 0xf9, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xf8, 0xf3, 0xee, 0xea, 0xe7, 0xe5, 0xe5, 0xe6, 0xe8, 0xeb, 0xf0, 0xf5, 0xf6, 0xf3, 0xf0, 0xec, 0xec, 0xec, 0xed, 0xee, 0xf0, 0xf1, 0xf2, 0xf1, 0xe9, 0xe2, 0xe3, 0xe9, 0xed, 0xec, 0xe8, 0xec, 0xe8, 0xe4, 0xe4, 0xe8, 0xea, 0xe9, 0xe7, 0xd7, 0xc5, 0xaf, 0xa6, 0xa9, 0xaf, 0xae, 0xab, 0xaa, 0xa8, 0xa7, 0xa7, 0xa8, 0xa8, 0xa8, 0xa7, 0xa3, 0xa4, 0xa6, 0xa6, 0xa5, 0xa3, 0xa2, 0xa1, 0x9f, 0xa0, 0xa1, 0xa2, 0xa2, 0xa1, 0x9f, 0x9e, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0xa2, 0x9f, 0xa1, 0xa1, 0xa0, 0x9d, 0x9b, 0x9b, 0x9c, 0x9c, 0xb2, 0xc5, 0xc4, 0xbc, 0xbb, 0xc1, 0xc5, 0xc7, 0xc7, 0xc8, 0xc9, 0xca, 0xcd, 0xcf, 0xd0, 0xca, 0xc5, 0xbf, 0xba, 0xb3, 0xb0, 0xb5, 0xbd, 0xc3, 0xc6, 0xc8, 0xc7, 0xc4, 0xc3, 0xc4, 0xc6, 0xc5, 0xc7, 0xca, 0xc9, 0xc2, 0xb7, 0x9a, 0x78, 0x6d, 0x71, 0x74, 0x7a, 0x7e, 0x78, 0x75, 0x7b, 0x77, 0x72, 0x73, 0x75, 0x70, 0x69, 0x6d, 0x78, 0x73, 0x70, 0x6c, 0x69, 0x6d, 0x71, 0x6e, 0x68, 0x66, 0x6a, 0x72, 0x77, 0x72, 0x6b, 0x6c, 0x73, 0x77, 0x6c, 0x6b, 0x6f, 0x6c, 0x6b, 0x6e, 0x6e, 0x71, 0x70, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x69, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x67, 0x64, 0x62, 0x5f, 0x5b, 0x56, 0x50, 0x4a, 0x45, 0x40, 0x42, 0x54, 0x6e, 0x79, 0x6f, 0x65, 0x64, 0x73, 0x82, 0x84, 0x7c, 0x76, 0x66, 0x52, 0x4c, 0x3f, 0x38, 0x35, 0x39, 0x3a, 0x35, 0x2f, 0x2d, 0x30, 0x2d, 0x2a, 0x28, 0x27, 0x28, 0x28, 0x28, 0x21, 0x1e, 0x1c, 0x1c, 0x1d, 0x1b, 0x16, 0x12, 0x15, 0x12, 0x14, 0x1e, 0x27, 0x29, 0x24, 0x1f, 0x1c, 0x1a, 0x19, 0x18, 0x17, 0x18, 0x18, 0x18, 0x35, 0x47, 0x5a, 0x62, 0x64, 0x64, 0x60, 0x5b, 0x5d, 0x5e, 0x5a, 0x4b, 0x35, 0x25, 0x23, 0x28, 0x31, 0x37, 0x3a, 0x33, 0x28, 0x21, 0x24, 0x28, 0x2a, 0x39, 0x51, 0x6d, 0x79, 0x69, 0x53, 0x4d, 0x54, 0x5b, 0x5e, 0x58, 0x4a, 0x3d, 0x32, 0x2c, 0x3b, 0x37, 0x37, 0x3d, 0x3f, 0x3c, 0x3c, 0x3f, 0x51, 0x44, 0x42, 0x39, 0x2a, 0x21, 0x23, 0x39, 0x50, 0x52, 0x40, 0x28, 0x27, 0x32, 0x33, 0x2f, 0x7b, 0x77, 0x75, 0x7b, 0x84, 0x83, 0x75, 0x67, 0x5e, 0x5c, 0x5c, 0x61, 0x69, 0x6f, 0x70, 0x6f, 0x73, 0x75, 0x76, 0x76, 0x73, 0x73, 0x76, 0x7b, 0x7d, 0x73, 0x6a, 0x6d, 0x7c, 0x88, 0x86, 0x7e, 0x6e, 0x74, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x6b, 0x6b, 0x73, 0x80, 0x84, 0x81, 0x80, 0x84, 0x98, 0xa0, 0xa4, 0xa1, 0x98, 0x8b, 0x8c, 0x9b, 0xa2, 0xa4, 0xa2, 0x9f, 0x9e, 0x98, 0x88, 0x78, 0x83, 0x8a, 0x90, 0x90, 0x8d, 0x8d, 0x93, 0x98, 0x99, 0x99, 0x95, 0x92, 0x94, 0x9a, 0x9d, 0x9c, 0xa7, 0xb0, 0xb4, 0xad, 0xa3, 0xa3, 0xab, 0xb1, 0xaf, 0xaf, 0xaf, 0xab, 0xa9, 0xae, 0xaa, 0x9b, 0x88, 0x90, 0x93, 0x97, 0x93, 0x93, 0x99, 0x8d, 0x8f, 0x94, 0x9e, 0xa3, 0xa5, 0xac, 0xae, 0xa7, 0xa7, 0xaa, 0xb4, 0xb1, 0xb4, 0xbe, 0xbd, 0xc0, 0xb7, 0xba, 0xbe, 0xc0, 0xbd, 0xb6, 0xaf, 0xab, 0xac, 0xaf, 0xaf, 0xaa, 0xa9, 0xb0, 0xb6, 0xb8, 0xb2, 0xb2, 0xb1, 0xaf, 0xb0, 0xb3, 0xb3, 0xb1, 0xb5, 0xb3, 0xb4, 0xb7, 0xb7, 0xb5, 0xb4, 0xb7, 0xba, 0xbb, 0xb8, 0xb4, 0xb3, 0xb5, 0xb5, 0xb2, 0xbe, 0xb7, 0xaa, 0xa5, 0xae, 0xb0, 0xa8, 0xa3, 0xa6, 0xaf, 0xb3, 0xad, 0xa7, 0xa6, 0xa5, 0xa3, 0xa6, 0xab, 0xb3, 0xba, 0xbd, 0xb9, 0xb1, 0xab, 0xab, 0xba, 0xbf, 0xb7, 0xbe, 0xdb, 0xe4, 0xd2, 0xb5, 0xab, 0xa7, 0xad, 0xb0, 0xac, 0xad, 0xb4, 0xc0, 0xc2, 0xc5, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc3, 0xc2, 0xbf, 0xbb, 0xb9, 0xb4, 0xae, 0xaa, 0xaa, 0xa9, 0xa6, 0xa8, 0xae, 0xb3, 0xb5, 0xb8, 0xb9, 0xb9, 0xb6, 0xac, 0xa3, 0x93, 0x8f, 0x8b, 0x8d, 0x97, 0xa3, 0xaa, 0xac, 0xc6, 0xe7, 0xff, 0xfd, 0xf3, 0xf9, 0xfc, 0xf5, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfa, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xf9, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf7, 0xf3, 0xee, 0xe8, 0xe5, 0xe4, 0xe5, 0xe9, 0xee, 0xf3, 0xf5, 0xf4, 0xf2, 0xf0, 0xf0, 0xee, 0xed, 0xed, 0xed, 0xee, 0xee, 0xec, 0xec, 0xec, 0xea, 0xe7, 0xe6, 0xe7, 0xe8, 0xed, 0xec, 0xeb, 0xeb, 0xea, 0xe7, 0xe3, 0xe0, 0xe7, 0xe5, 0xde, 0xd2, 0xc2, 0xb5, 0xae, 0xab, 0xae, 0xad, 0xac, 0xab, 0xaa, 0xa7, 0xa3, 0xa0, 0xa9, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa3, 0xa2, 0xa6, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1, 0xa2, 0xa3, 0xa3, 0x9c, 0x9d, 0x9e, 0x9f, 0x9f, 0xa0, 0xa2, 0xa4, 0xb0, 0xbc, 0xc5, 0xc1, 0xbb, 0xbd, 0xc2, 0xc4, 0xc5, 0xc5, 0xc6, 0xc7, 0xc7, 0xc8, 0xc9, 0xca, 0xc7, 0xc3, 0xbd, 0xb7, 0xb1, 0xaf, 0xb5, 0xbe, 0xc4, 0xc6, 0xc8, 0xc7, 0xc5, 0xc4, 0xc5, 0xc7, 0xc5, 0xc6, 0xc9, 0xca, 0xc6, 0xbe, 0xa5, 0x85, 0x6b, 0x6e, 0x73, 0x7a, 0x7d, 0x77, 0x73, 0x76, 0x72, 0x70, 0x72, 0x77, 0x74, 0x6d, 0x71, 0x7b, 0x73, 0x70, 0x69, 0x67, 0x6b, 0x73, 0x75, 0x73, 0x68, 0x6a, 0x71, 0x77, 0x75, 0x6d, 0x6a, 0x6c, 0x70, 0x6d, 0x70, 0x72, 0x6e, 0x6f, 0x74, 0x75, 0x74, 0x72, 0x71, 0x72, 0x74, 0x73, 0x6f, 0x6b, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x68, 0x66, 0x66, 0x66, 0x64, 0x62, 0x5e, 0x5a, 0x55, 0x4e, 0x48, 0x44, 0x3a, 0x3b, 0x44, 0x53, 0x5c, 0x5f, 0x68, 0x73, 0x7c, 0x83, 0x8c, 0x95, 0x96, 0x83, 0x67, 0x58, 0x57, 0x3a, 0x1d, 0x17, 0x21, 0x2d, 0x33, 0x34, 0x3d, 0x3e, 0x40, 0x42, 0x41, 0x3c, 0x34, 0x2d, 0x2b, 0x2c, 0x2a, 0x24, 0x1d, 0x19, 0x1b, 0x1d, 0x1d, 0x21, 0x27, 0x2a, 0x27, 0x20, 0x1d, 0x1e, 0x1f, 0x1f, 0x1e, 0x1b, 0x16, 0x13, 0x13, 0x14, 0x15, 0x25, 0x39, 0x46, 0x4d, 0x4f, 0x4e, 0x4c, 0x54, 0x42, 0x29, 0x19, 0x16, 0x1f, 0x2b, 0x34, 0x42, 0x3e, 0x35, 0x29, 0x1d, 0x17, 0x1d, 0x26, 0x2e, 0x30, 0x3c, 0x5a, 0x76, 0x74, 0x61, 0x57, 0x40, 0x47, 0x56, 0x65, 0x66, 0x58, 0x48, 0x40, 0x3b, 0x39, 0x38, 0x3d, 0x41, 0x43, 0x43, 0x44, 0x3f, 0x34, 0x37, 0x36, 0x30, 0x29, 0x27, 0x36, 0x46, 0x4c, 0x44, 0x35, 0x35, 0x3a, 0x37, 0x33, 0x6f, 0x6e, 0x6e, 0x72, 0x77, 0x79, 0x77, 0x75, 0x67, 0x61, 0x5f, 0x68, 0x78, 0x83, 0x83, 0x7f, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x65, 0x66, 0x65, 0x6a, 0x79, 0x85, 0x7f, 0x72, 0x63, 0x63, 0x64, 0x65, 0x63, 0x62, 0x65, 0x69, 0x6d, 0x6b, 0x6c, 0x6e, 0x6b, 0x67, 0x68, 0x6d, 0x81, 0x83, 0x80, 0x7b, 0x76, 0x6c, 0x6a, 0x73, 0x88, 0x8a, 0x8c, 0x8d, 0x8f, 0x8d, 0x81, 0x73, 0x7b, 0x87, 0x95, 0x9d, 0x9c, 0x98, 0x97, 0x97, 0x9c, 0x98, 0x96, 0x95, 0x94, 0x91, 0x90, 0x92, 0x9b, 0xa5, 0xae, 0xad, 0xa6, 0x9e, 0x96, 0x92, 0xa3, 0xac, 0xb3, 0xae, 0xa8, 0xae, 0xae, 0xa2, 0x98, 0x9b, 0x99, 0x9b, 0x97, 0x96, 0x9a, 0x8d, 0x84, 0x7d, 0x80, 0x8e, 0x9c, 0xa7, 0xa7, 0x9c, 0x98, 0xa0, 0xa9, 0xa0, 0x9f, 0xaa, 0xaa, 0xab, 0xb2, 0xb6, 0xbb, 0xbc, 0xba, 0xb6, 0xb4, 0xb2, 0xb5, 0xbc, 0xc0, 0xbb, 0xb5, 0xb3, 0xb1, 0xae, 0xae, 0xad, 0xa9, 0xa6, 0xaa, 0xb3, 0xbc, 0xbf, 0xad, 0xb1, 0xb8, 0xbf, 0xc1, 0xbf, 0xbc, 0xbc, 0xb6, 0xbf, 0xc6, 0xc6, 0xc2, 0xbf, 0xc0, 0xc0, 0xbd, 0xb4, 0xa4, 0x9e, 0xa4, 0xa4, 0x9e, 0x9c, 0xad, 0xb3, 0xb3, 0xaa, 0xa4, 0xa7, 0xac, 0xad, 0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xa9, 0xa3, 0x9f, 0xa6, 0xb6, 0xb7, 0xbb, 0xd7, 0xe7, 0xd6, 0xc2, 0xb2, 0xad, 0xab, 0xac, 0xab, 0xaa, 0xb1, 0xbc, 0xc2, 0xc4, 0xc5, 0xc6, 0xc5, 0xc5, 0xc5, 0xc6, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc4, 0xc4, 0xc3, 0xc2, 0xc1, 0xc0, 0xc0, 0xbf, 0xbd, 0xbb, 0xb6, 0xb0, 0xad, 0xac, 0xa9, 0xa5, 0xa5, 0xa8, 0xaa, 0xb0, 0xb7, 0xb9, 0xb8, 0xb6, 0xb3, 0xaf, 0xa2, 0x97, 0x89, 0x84, 0x8e, 0x9c, 0xa4, 0xa4, 0xa7, 0xc6, 0xf1, 0xfb, 0xed, 0xf4, 0xff, 0xf2, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xfb, 0xfc, 0xfc, 0xf9, 0xf3, 0xee, 0xea, 0xe5, 0xe6, 0xe9, 0xed, 0xf1, 0xf4, 0xf5, 0xf5, 0xf5, 0xf4, 0xf2, 0xef, 0xee, 0xee, 0xee, 0xee, 0xee, 0xf1, 0xf4, 0xf2, 0xee, 0xea, 0xea, 0xec, 0xea, 0xec, 0xee, 0xee, 0xeb, 0xe9, 0xe8, 0xe8, 0xe4, 0xe6, 0xe9, 0xe9, 0xe4, 0xdc, 0xd3, 0xcd, 0xbc, 0xb6, 0xb0, 0xab, 0xaa, 0xac, 0xaf, 0xb0, 0xa9, 0xa7, 0xa5, 0xa5, 0xa6, 0xa8, 0xa7, 0xa6, 0xaa, 0xa8, 0xa5, 0xa3, 0xa2, 0xa2, 0xa4, 0xa5, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0, 0x9f, 0x9f, 0xa0, 0xad, 0xa9, 0xa3, 0x9f, 0x9f, 0xa4, 0xab, 0xb1, 0xc2, 0xc4, 0xc1, 0xbc, 0xbb, 0xc0, 0xc4, 0xc3, 0xc3, 0xc5, 0xc6, 0xc6, 0xc4, 0xc3, 0xc2, 0xc3, 0xc2, 0xc0, 0xbb, 0xb4, 0xae, 0xad, 0xb6, 0xc0, 0xc4, 0xc5, 0xc7, 0xc6, 0xc4, 0xc4, 0xc5, 0xc7, 0xc5, 0xc4, 0xc7, 0xca, 0xca, 0xc7, 0xb3, 0x97, 0x73, 0x71, 0x73, 0x79, 0x7a, 0x76, 0x73, 0x75, 0x70, 0x6d, 0x6f, 0x72, 0x70, 0x6d, 0x74, 0x7f, 0x77, 0x71, 0x67, 0x61, 0x64, 0x6c, 0x72, 0x73, 0x71, 0x6d, 0x6f, 0x74, 0x75, 0x70, 0x6c, 0x6d, 0x76, 0x78, 0x7a, 0x75, 0x6f, 0x73, 0x79, 0x76, 0x70, 0x6f, 0x70, 0x73, 0x76, 0x76, 0x72, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6c, 0x69, 0x67, 0x66, 0x66, 0x63, 0x60, 0x5c, 0x57, 0x52, 0x4b, 0x45, 0x40, 0x3c, 0x3c, 0x41, 0x4d, 0x5b, 0x66, 0x6e, 0x73, 0x73, 0x5f, 0x50, 0x4d, 0x4c, 0x51, 0x5b, 0x62, 0x55, 0x44, 0x31, 0x29, 0x2c, 0x35, 0x3c, 0x40, 0x41, 0x3e, 0x3b, 0x3a, 0x3d, 0x40, 0x42, 0x43, 0x3f, 0x36, 0x2c, 0x27, 0x29, 0x2a, 0x27, 0x24, 0x2d, 0x2c, 0x2b, 0x27, 0x20, 0x19, 0x19, 0x1c, 0x1d, 0x1f, 0x20, 0x1d, 0x18, 0x16, 0x18, 0x1b, 0x20, 0x20, 0x27, 0x35, 0x41, 0x45, 0x42, 0x3f, 0x2e, 0x23, 0x18, 0x1b, 0x2b, 0x3c, 0x45, 0x46, 0x44, 0x36, 0x26, 0x1c, 0x14, 0x14, 0x20, 0x2f, 0x33, 0x2c, 0x2c, 0x44, 0x67, 0x78, 0x77, 0x75, 0x6e, 0x59, 0x47, 0x44, 0x46, 0x47, 0x4e, 0x58, 0x4a, 0x4a, 0x48, 0x47, 0x48, 0x45, 0x3d, 0x35, 0x37, 0x2d, 0x31, 0x31, 0x2d, 0x24, 0x1a, 0x20, 0x25, 0x28, 0x20, 0x16, 0x15, 0x17, 0x16, 0x18, 0x72, 0x72, 0x72, 0x70, 0x6d, 0x6b, 0x6f, 0x75, 0x6a, 0x65, 0x63, 0x6a, 0x75, 0x7d, 0x7c, 0x78, 0x82, 0x81, 0x80, 0x7f, 0x7d, 0x76, 0x6b, 0x61, 0x73, 0x74, 0x6e, 0x66, 0x6b, 0x77, 0x79, 0x71, 0x66, 0x64, 0x66, 0x6a, 0x68, 0x62, 0x61, 0x65, 0x6a, 0x6d, 0x71, 0x74, 0x76, 0x79, 0x7f, 0x85, 0x8c, 0x8b, 0x83, 0x7b, 0x74, 0x68, 0x62, 0x67, 0x74, 0x77, 0x7a, 0x7a, 0x7b, 0x7b, 0x77, 0x71, 0x7a, 0x83, 0x8f, 0x97, 0x96, 0x92, 0x8f, 0x90, 0x80, 0x84, 0x8c, 0x8e, 0x84, 0x7a, 0x7e, 0x8a, 0x96, 0xa1, 0xae, 0xb5, 0xb2, 0xa8, 0x9e, 0x97, 0x99, 0xa2, 0xaf, 0xb2, 0xad, 0xac, 0xa8, 0x9e, 0x8b, 0x8d, 0x8b, 0x93, 0x95, 0x98, 0x9e, 0x92, 0x91, 0x80, 0x7e, 0x92, 0xa9, 0xb6, 0xb1, 0xa2, 0xa0, 0xa3, 0xab, 0xa5, 0xa5, 0xae, 0xac, 0xaf, 0xaf, 0xb3, 0xb4, 0xb2, 0xaf, 0xb0, 0xb4, 0xb6, 0xb2, 0xb6, 0xb4, 0xa8, 0x98, 0x88, 0x77, 0x69, 0x66, 0x74, 0x88, 0x9c, 0xae, 0xb7, 0xb7, 0xb2, 0xb6, 0xb6, 0xb8, 0xbb, 0xbe, 0xbd, 0xbb, 0xb9, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb5, 0xb3, 0xb0, 0xb9, 0xb0, 0xa0, 0x99, 0x9b, 0x98, 0x96, 0x9b, 0xae, 0xb0, 0xac, 0xa3, 0xa0, 0xa7, 0xaf, 0xb2, 0xad, 0xa6, 0x9e, 0x9e, 0xa5, 0xaf, 0xb5, 0xb6, 0xa3, 0xa7, 0xb5, 0xd3, 0xe9, 0xdb, 0xc0, 0xb4, 0xb1, 0xaf, 0xad, 0xa9, 0xa5, 0xa6, 0xb2, 0xbf, 0xc2, 0xc3, 0xc4, 0xc4, 0xc4, 0xc5, 0xc7, 0xc8, 0xc6, 0xc7, 0xc7, 0xc8, 0xc8, 0xc7, 0xc5, 0xc5, 0xc6, 0xc4, 0xc1, 0xbf, 0xbe, 0xbc, 0xba, 0xb9, 0xb6, 0xb2, 0xaf, 0xae, 0xaa, 0xa5, 0xa3, 0xa4, 0xa9, 0xb0, 0xb6, 0xb9, 0xb9, 0xba, 0xba, 0xb8, 0xb3, 0x9e, 0x8d, 0x8a, 0x8c, 0x8e, 0x98, 0xa5, 0xad, 0xab, 0xc7, 0xec, 0xf7, 0xf4, 0xf7, 0xfa, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfe, 0xff, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xfd, 0xfc, 0xfb, 0xf9, 0xf7, 0xf5, 0xf4, 0xf3, 0xee, 0xec, 0xeb, 0xec, 0xee, 0xf2, 0xf6, 0xf8, 0xf8, 0xf6, 0xf4, 0xf3, 0xf2, 0xf2, 0xf2, 0xf2, 0xf3, 0xf2, 0xf2, 0xf3, 0xf6, 0xf6, 0xf2, 0xef, 0xeb, 0xeb, 0xea, 0xe9, 0xe8, 0xe9, 0xeb, 0xed, 0xe9, 0xe8, 0xe7, 0xe8, 0xea, 0xea, 0xe6, 0xe3, 0xf0, 0xe5, 0xd4, 0xc3, 0xb6, 0xad, 0xa8, 0xa6, 0xab, 0xa8, 0xa5, 0xa6, 0xa8, 0xa9, 0xa7, 0xa4, 0xa7, 0xa5, 0xa2, 0x9f, 0x9e, 0x9e, 0x9f, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa1, 0x94, 0x96, 0x9a, 0xa2, 0xae, 0xbd, 0xcb, 0xd3, 0xc4, 0xc2, 0xbd, 0xba, 0xbd, 0xc3, 0xc6, 0xc5, 0xc4, 0xc6, 0xc8, 0xc7, 0xc3, 0xc0, 0xbf, 0xbe, 0xbe, 0xbd, 0xb8, 0xb1, 0xab, 0xad, 0xb7, 0xc2, 0xc2, 0xc3, 0xc4, 0xc4, 0xc3, 0xc2, 0xc3, 0xc4, 0xc5, 0xc2, 0xc5, 0xc8, 0xca, 0xca, 0xbc, 0xa6, 0x83, 0x79, 0x76, 0x78, 0x78, 0x76, 0x76, 0x75, 0x72, 0x6d, 0x69, 0x68, 0x65, 0x65, 0x70, 0x7d, 0x76, 0x6f, 0x65, 0x5f, 0x60, 0x67, 0x6f, 0x73, 0x75, 0x6d, 0x68, 0x6a, 0x6c, 0x6d, 0x71, 0x77, 0x84, 0x83, 0x7e, 0x74, 0x72, 0x7f, 0x85, 0x7c, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x61, 0x5f, 0x5a, 0x55, 0x4f, 0x48, 0x41, 0x3d, 0x35, 0x30, 0x2f, 0x3b, 0x50, 0x5d, 0x59, 0x4e, 0x42, 0x34, 0x34, 0x3e, 0x44, 0x4f, 0x56, 0x4f, 0x51, 0x53, 0x53, 0x4c, 0x44, 0x41, 0x43, 0x47, 0x39, 0x3c, 0x3f, 0x41, 0x40, 0x40, 0x41, 0x42, 0x42, 0x37, 0x2d, 0x2f, 0x38, 0x3e, 0x39, 0x31, 0x35, 0x28, 0x1c, 0x19, 0x1d, 0x20, 0x21, 0x21, 0x22, 0x22, 0x21, 0x1f, 0x1d, 0x1d, 0x20, 0x23, 0x1e, 0x1a, 0x1a, 0x22, 0x29, 0x2d, 0x34, 0x3c, 0x32, 0x36, 0x3d, 0x44, 0x4a, 0x4b, 0x44, 0x3c, 0x35, 0x25, 0x17, 0x15, 0x14, 0x15, 0x22, 0x32, 0x29, 0x25, 0x1e, 0x25, 0x3c, 0x54, 0x67, 0x78, 0x83, 0x83, 0x88, 0x8d, 0x86, 0x70, 0x58, 0x4b, 0x4b, 0x4d, 0x4b, 0x45, 0x40, 0x36, 0x23, 0x11, 0x14, 0x0d, 0x14, 0x18, 0x1b, 0x1a, 0x14, 0x1a, 0x27, 0x28, 0x20, 0x18, 0x14, 0x10, 0x0f, 0x14, 0x68, 0x64, 0x64, 0x6a, 0x6d, 0x6a, 0x65, 0x62, 0x62, 0x63, 0x65, 0x68, 0x6c, 0x6f, 0x71, 0x71, 0x78, 0x7d, 0x83, 0x8a, 0x92, 0x95, 0x8f, 0x86, 0x78, 0x7f, 0x7c, 0x71, 0x6e, 0x77, 0x7b, 0x78, 0x65, 0x63, 0x67, 0x6d, 0x6d, 0x67, 0x64, 0x67, 0x76, 0x77, 0x76, 0x72, 0x71, 0x76, 0x7e, 0x83, 0x82, 0x83, 0x7d, 0x74, 0x6c, 0x5f, 0x56, 0x58, 0x5e, 0x64, 0x6a, 0x6a, 0x6a, 0x6e, 0x76, 0x7c, 0x7e, 0x81, 0x87, 0x8b, 0x88, 0x80, 0x7c, 0x7d, 0x7d, 0x82, 0x8b, 0x8c, 0x80, 0x75, 0x7e, 0x8f, 0x8c, 0x93, 0x9c, 0xa3, 0xa5, 0xa4, 0xa4, 0xa5, 0x91, 0x90, 0x9c, 0xaa, 0xa9, 0xa3, 0x9f, 0x9a, 0x8a, 0x88, 0x85, 0x8c, 0x8d, 0x8c, 0x8f, 0x81, 0x85, 0x79, 0x7a, 0x8a, 0x98, 0xa0, 0x9d, 0x92, 0x94, 0x8b, 0x8e, 0x90, 0x95, 0x9c, 0x9e, 0xaa, 0xb0, 0xb3, 0xb3, 0xae, 0xab, 0xac, 0xaf, 0xb1, 0xbb, 0xb7, 0xac, 0x9f, 0x97, 0x92, 0x88, 0x7e, 0x8d, 0x8e, 0x90, 0x98, 0xa7, 0xb6, 0xbf, 0xc0, 0xb6, 0xb2, 0xaf, 0xb1, 0xb8, 0xbf, 0xc0, 0xbe, 0xb4, 0xa8, 0x9d, 0xa0, 0xad, 0xb8, 0xba, 0xb8, 0xbb, 0xb2, 0xa4, 0x9c, 0x98, 0x92, 0x94, 0xa0, 0xa8, 0xa4, 0x9e, 0x9a, 0x9a, 0x9e, 0xa3, 0xa7, 0xaf, 0xa2, 0x96, 0x96, 0x9f, 0xa8, 0xa9, 0xa5, 0xa1, 0xa4, 0xc2, 0xe4, 0xe1, 0xc7, 0xb4, 0xad, 0xa3, 0xa7, 0xaa, 0xaa, 0xa8, 0xac, 0xb6, 0xbf, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc5, 0xc7, 0xc8, 0xc6, 0xc6, 0xc7, 0xc8, 0xc8, 0xc7, 0xc7, 0xc6, 0xc9, 0xc6, 0xc3, 0xc1, 0xbf, 0xbd, 0xbc, 0xba, 0xb8, 0xb6, 0xb4, 0xb3, 0xaf, 0xab, 0xa8, 0xa8, 0xad, 0xb1, 0xb5, 0xb7, 0xb9, 0xbb, 0xbb, 0xb8, 0xb8, 0xab, 0x9d, 0x93, 0x89, 0x83, 0x8b, 0x9a, 0xab, 0xa6, 0xab, 0xce, 0xf5, 0xfc, 0xf7, 0xfe, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfc, 0xfd, 0xff, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xfe, 0xfc, 0xfa, 0xf8, 0xf7, 0xf7, 0xf8, 0xf9, 0xf7, 0xf4, 0xef, 0xec, 0xeb, 0xee, 0xf3, 0xf6, 0xf8, 0xf7, 0xf6, 0xf5, 0xf4, 0xf3, 0xf3, 0xf3, 0xf2, 0xf0, 0xee, 0xf0, 0xf3, 0xf4, 0xf2, 0xef, 0xf2, 0xef, 0xeb, 0xe8, 0xe7, 0xe6, 0xe5, 0xe4, 0xe8, 0xea, 0xeb, 0xe8, 0xe2, 0xe0, 0xe3, 0xe7, 0xe9, 0xe8, 0xe8, 0xe8, 0xe6, 0xe2, 0xdc, 0xd9, 0xc9, 0xc6, 0xc4, 0xc3, 0xc3, 0xc1, 0xbc, 0xb8, 0xb4, 0xb3, 0xb1, 0xaf, 0xae, 0xac, 0xac, 0xab, 0xa8, 0xa8, 0xaa, 0xac, 0xae, 0xb1, 0xb3, 0xb4, 0xc7, 0xc9, 0xcd, 0xd1, 0xd1, 0xce, 0xca, 0xc6, 0xc0, 0xbf, 0xbe, 0xbd, 0xc0, 0xc4, 0xc5, 0xc5, 0xc4, 0xc7, 0xc9, 0xc7, 0xc2, 0xbe, 0xbc, 0xbc, 0xbd, 0xbb, 0xb7, 0xae, 0xaa, 0xae, 0xb9, 0xc2, 0xc3, 0xc4, 0xc4, 0xc4, 0xc3, 0xc1, 0xc1, 0xc1, 0xc3, 0xbf, 0xc2, 0xc5, 0xc7, 0xc9, 0xc0, 0xaf, 0x90, 0x7e, 0x77, 0x79, 0x77, 0x76, 0x74, 0x6d, 0x71, 0x6d, 0x69, 0x65, 0x60, 0x5f, 0x68, 0x72, 0x6f, 0x6a, 0x65, 0x62, 0x64, 0x6a, 0x72, 0x77, 0x6f, 0x69, 0x65, 0x65, 0x65, 0x68, 0x72, 0x7d, 0x89, 0x82, 0x77, 0x6e, 0x76, 0x8d, 0x92, 0x83, 0x6d, 0x71, 0x74, 0x75, 0x73, 0x71, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x65, 0x60, 0x5d, 0x57, 0x52, 0x4c, 0x45, 0x3f, 0x3b, 0x3c, 0x33, 0x2c, 0x32, 0x43, 0x50, 0x4a, 0x3d, 0x29, 0x21, 0x24, 0x2c, 0x37, 0x49, 0x4d, 0x3c, 0x3c, 0x42, 0x44, 0x3e, 0x3a, 0x3d, 0x42, 0x45, 0x3f, 0x41, 0x41, 0x3a, 0x32, 0x2e, 0x33, 0x39, 0x33, 0x33, 0x33, 0x35, 0x35, 0x34, 0x32, 0x30, 0x29, 0x1f, 0x1a, 0x21, 0x2e, 0x35, 0x34, 0x32, 0x2f, 0x2b, 0x26, 0x23, 0x23, 0x25, 0x26, 0x26, 0x2d, 0x2f, 0x31, 0x2c, 0x20, 0x1a, 0x26, 0x37, 0x45, 0x48, 0x48, 0x45, 0x43, 0x40, 0x3a, 0x33, 0x27, 0x1c, 0x16, 0x18, 0x17, 0x13, 0x18, 0x23, 0x2d, 0x2d, 0x22, 0x18, 0x1d, 0x2b, 0x3f, 0x52, 0x74, 0x76, 0x72, 0x68, 0x61, 0x62, 0x65, 0x65, 0x53, 0x55, 0x52, 0x4d, 0x47, 0x3e, 0x2b, 0x19, 0x16, 0x12, 0x19, 0x1a, 0x1d, 0x23, 0x23, 0x2d, 0x26, 0x2b, 0x29, 0x25, 0x21, 0x16, 0x0d, 0x0e, 0x68, 0x63, 0x61, 0x65, 0x65, 0x61, 0x5e, 0x5f, 0x5c, 0x61, 0x66, 0x6a, 0x6c, 0x70, 0x76, 0x7b, 0x7d, 0x81, 0x84, 0x85, 0x88, 0x8a, 0x86, 0x7e, 0x78, 0x82, 0x85, 0x7e, 0x77, 0x77, 0x78, 0x75, 0x63, 0x61, 0x60, 0x61, 0x60, 0x5f, 0x5f, 0x61, 0x5f, 0x66, 0x6b, 0x6d, 0x71, 0x79, 0x7f, 0x80, 0x79, 0x7e, 0x7b, 0x76, 0x70, 0x65, 0x5c, 0x5c, 0x56, 0x5f, 0x66, 0x65, 0x61, 0x64, 0x71, 0x7d, 0x7e, 0x7e, 0x82, 0x85, 0x7f, 0x73, 0x6b, 0x69, 0x6e, 0x6b, 0x6b, 0x6e, 0x6d, 0x6d, 0x78, 0x86, 0x9a, 0x92, 0x90, 0x9d, 0xad, 0xb0, 0xa4, 0x98, 0x82, 0x7a, 0x83, 0x93, 0x96, 0x94, 0x98, 0x9e, 0xa0, 0x9a, 0x91, 0x92, 0x8c, 0x84, 0x81, 0x72, 0x80, 0x82, 0x8c, 0x93, 0x92, 0x97, 0x9c, 0x9c, 0x97, 0x86, 0x84, 0x85, 0x8a, 0x90, 0x95, 0xa5, 0xb0, 0xb6, 0xb8, 0xb5, 0xb2, 0xb2, 0xb0, 0xad, 0xaf, 0xab, 0xa4, 0xa0, 0xa6, 0xb0, 0xb1, 0xac, 0xa6, 0xa3, 0xa0, 0x9f, 0xa3, 0xa8, 0xa8, 0xa5, 0x9a, 0x9d, 0xa1, 0xa7, 0xad, 0xaf, 0xa9, 0xa1, 0x94, 0x97, 0x9b, 0x9d, 0x9e, 0xa3, 0xaf, 0xba, 0xbd, 0xb4, 0xa6, 0x9e, 0x98, 0x8f, 0x93, 0xa4, 0xab, 0xa4, 0xa1, 0xa3, 0xa1, 0x9b, 0x9b, 0xa0, 0x96, 0x90, 0x90, 0x9b, 0xab, 0xb4, 0xb0, 0xa8, 0x9f, 0xb4, 0xd5, 0xde, 0xc9, 0xbb, 0xb6, 0xac, 0xaa, 0xaa, 0xa8, 0xa6, 0xa9, 0xb2, 0xbe, 0xc6, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc5, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc3, 0xc1, 0xbf, 0xbe, 0xbd, 0xbc, 0xba, 0xb8, 0xb7, 0xb6, 0xb4, 0xb2, 0xae, 0xac, 0xaa, 0xa6, 0xa8, 0xaa, 0xad, 0xb3, 0xb8, 0xb9, 0xb6, 0xb7, 0xba, 0xb2, 0x9d, 0x8b, 0x86, 0x88, 0x89, 0x92, 0xa9, 0xa9, 0xaf, 0xd9, 0xfb, 0xfd, 0xfa, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xfb, 0xfd, 0xfe, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xff, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xf9, 0xfb, 0xf8, 0xf2, 0xed, 0xea, 0xeb, 0xef, 0xf2, 0xf7, 0xf7, 0xf6, 0xf5, 0xf4, 0xf3, 0xf1, 0xf0, 0xf0, 0xf2, 0xf3, 0xf0, 0xec, 0xeb, 0xed, 0xf0, 0xf1, 0xf0, 0xef, 0xee, 0xee, 0xeb, 0xe7, 0xe4, 0xe0, 0xe2, 0xe4, 0xe7, 0xe9, 0xe9, 0xe7, 0xe6, 0xdd, 0xdd, 0xdf, 0xe1, 0xe1, 0xdf, 0xdc, 0xd9, 0xe1, 0xe0, 0xe0, 0xe1, 0xe1, 0xe0, 0xdc, 0xd9, 0xdf, 0xdf, 0xde, 0xdd, 0xdb, 0xd9, 0xd7, 0xd6, 0xd5, 0xd5, 0xd5, 0xd5, 0xd6, 0xd6, 0xd7, 0xd8, 0xcd, 0xcc, 0xcb, 0xca, 0xc9, 0xc5, 0xc2, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc6, 0xc8, 0xc6, 0xc1, 0xbd, 0xbc, 0xbc, 0xbd, 0xbc, 0xb6, 0xae, 0xab, 0xb1, 0xbb, 0xc1, 0xc5, 0xc5, 0xc6, 0xc6, 0xc4, 0xc1, 0xbf, 0xbd, 0xbe, 0xbc, 0xbe, 0xc2, 0xc2, 0xc5, 0xc1, 0xb6, 0x98, 0x7f, 0x75, 0x79, 0x77, 0x76, 0x70, 0x61, 0x6a, 0x6b, 0x6c, 0x6b, 0x65, 0x60, 0x61, 0x66, 0x6c, 0x69, 0x67, 0x67, 0x67, 0x68, 0x6d, 0x72, 0x6c, 0x6a, 0x6b, 0x6c, 0x6a, 0x6a, 0x72, 0x7c, 0x83, 0x7c, 0x74, 0x6f, 0x7a, 0x90, 0x90, 0x7b, 0x62, 0x68, 0x6e, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x67, 0x65, 0x63, 0x5e, 0x5b, 0x55, 0x50, 0x4a, 0x43, 0x3d, 0x39, 0x2e, 0x2c, 0x2b, 0x2e, 0x36, 0x3a, 0x36, 0x2f, 0x2e, 0x45, 0x59, 0x56, 0x48, 0x41, 0x38, 0x29, 0x3a, 0x4d, 0x59, 0x51, 0x41, 0x37, 0x33, 0x31, 0x38, 0x37, 0x30, 0x26, 0x1e, 0x23, 0x34, 0x42, 0x52, 0x51, 0x50, 0x4d, 0x48, 0x40, 0x37, 0x30, 0x1f, 0x24, 0x30, 0x3f, 0x48, 0x47, 0x43, 0x40, 0x34, 0x2f, 0x2a, 0x29, 0x2d, 0x2f, 0x2f, 0x2e, 0x36, 0x35, 0x32, 0x2e, 0x27, 0x20, 0x1f, 0x21, 0x33, 0x34, 0x35, 0x36, 0x3c, 0x3e, 0x36, 0x2b, 0x1e, 0x1b, 0x1d, 0x20, 0x1c, 0x14, 0x14, 0x1b, 0x35, 0x36, 0x29, 0x19, 0x15, 0x16, 0x19, 0x1e, 0x26, 0x3a, 0x4c, 0x4e, 0x4d, 0x4e, 0x49, 0x41, 0x45, 0x42, 0x3d, 0x38, 0x35, 0x30, 0x27, 0x1d, 0x1e, 0x1a, 0x1d, 0x16, 0x13, 0x17, 0x16, 0x1f, 0x2a, 0x2e, 0x2a, 0x26, 0x25, 0x20, 0x1a, 0x1c, 0x84, 0x7a, 0x71, 0x6d, 0x67, 0x5f, 0x5b, 0x5e, 0x59, 0x5b, 0x5d, 0x61, 0x66, 0x6d, 0x75, 0x7a, 0x6f, 0x77, 0x7d, 0x7f, 0x81, 0x85, 0x84, 0x7e, 0x8b, 0x88, 0x7e, 0x6f, 0x64, 0x65, 0x6c, 0x71, 0x6d, 0x6c, 0x67, 0x62, 0x62, 0x66, 0x69, 0x6a, 0x71, 0x78, 0x7a, 0x76, 0x75, 0x78, 0x75, 0x6f, 0x75, 0x7a, 0x78, 0x75, 0x74, 0x6b, 0x61, 0x5e, 0x62, 0x6a, 0x6f, 0x6a, 0x5f, 0x59, 0x5e, 0x67, 0x78, 0x78, 0x7d, 0x82, 0x7e, 0x71, 0x66, 0x63, 0x5e, 0x5a, 0x5a, 0x61, 0x6a, 0x75, 0x81, 0x8b, 0x8b, 0x80, 0x7d, 0x8d, 0xa0, 0xa0, 0x8c, 0x78, 0x82, 0x7d, 0x83, 0x89, 0x84, 0x83, 0x90, 0x9c, 0x9c, 0x96, 0x8e, 0x91, 0x8e, 0x89, 0x8b, 0x7f, 0x7d, 0x84, 0x8e, 0x8f, 0x8c, 0x93, 0x9d, 0x9c, 0x94, 0x8a, 0x89, 0x85, 0x85, 0x89, 0x8b, 0x96, 0xa8, 0xaf, 0xb3, 0xb2, 0xb3, 0xb7, 0xb5, 0xaf, 0xad, 0xab, 0xa5, 0xa0, 0xa3, 0xa9, 0xa8, 0xa2, 0xa7, 0xa2, 0x99, 0x92, 0x94, 0xa0, 0xae, 0xb6, 0xb2, 0xb6, 0xb9, 0xb8, 0xb4, 0xae, 0xa5, 0x9c, 0xa8, 0xb5, 0xbf, 0xb5, 0x9d, 0x8f, 0x9a, 0xad, 0xb4, 0xa7, 0x99, 0x94, 0x92, 0x8a, 0x8e, 0x9f, 0xa3, 0x9d, 0xa1, 0xaa, 0xa3, 0x92, 0x8e, 0x98, 0xa1, 0x9d, 0x9b, 0xa1, 0xa9, 0xaa, 0xa2, 0x99, 0x9b, 0xc7, 0xdd, 0xcd, 0xbd, 0xba, 0xb4, 0xae, 0xb5, 0xb0, 0xa7, 0xa1, 0xa8, 0xb8, 0xc4, 0xc8, 0xc3, 0xc4, 0xc5, 0xc5, 0xc4, 0xc4, 0xc5, 0xc6, 0xc7, 0xc6, 0xc4, 0xc3, 0xc2, 0xc2, 0xc3, 0xc3, 0xc2, 0xc0, 0xbf, 0xbe, 0xbd, 0xbc, 0xb9, 0xb8, 0xb5, 0xb5, 0xb4, 0xb2, 0xb0, 0xae, 0xab, 0xa9, 0xa1, 0xa3, 0xa5, 0xa7, 0xac, 0xb2, 0xb4, 0xb3, 0xb5, 0xbc, 0xba, 0xaa, 0x9b, 0x92, 0x89, 0x80, 0x85, 0x9d, 0xa4, 0xa1, 0xb8, 0xe2, 0xf9, 0xf8, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xff, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfb, 0xfd, 0xff, 0xff, 0xfd, 0xfb, 0xfa, 0xfa, 0xf9, 0xf6, 0xf2, 0xee, 0xed, 0xee, 0xf0, 0xf3, 0xf4, 0xf6, 0xf6, 0xf6, 0xf4, 0xf2, 0xf1, 0xf2, 0xf3, 0xf3, 0xf0, 0xed, 0xeb, 0xeb, 0xec, 0xe8, 0xea, 0xed, 0xee, 0xee, 0xed, 0xed, 0xed, 0xed, 0xe8, 0xe5, 0xe8, 0xed, 0xed, 0xe6, 0xdf, 0xec, 0xe9, 0xe6, 0xe3, 0xe3, 0xe5, 0xe6, 0xe6, 0xdf, 0xdf, 0xe0, 0xe1, 0xe1, 0xe1, 0xe0, 0xdf, 0xd9, 0xd9, 0xd8, 0xd6, 0xd5, 0xd3, 0xd1, 0xd1, 0xd1, 0xd0, 0xcf, 0xcd, 0xcb, 0xc9, 0xc9, 0xc8, 0xd0, 0xcc, 0xc6, 0xc3, 0xc2, 0xc4, 0xc5, 0xc5, 0xc1, 0xc0, 0xc0, 0xc2, 0xc2, 0xc2, 0xc1, 0xc2, 0xc2, 0xc5, 0xc7, 0xc5, 0xc0, 0xbd, 0xbd, 0xbe, 0xbf, 0xbd, 0xb7, 0xaf, 0xad, 0xb4, 0xbc, 0xbf, 0xc6, 0xc6, 0xc7, 0xc7, 0xc5, 0xc0, 0xbb, 0xb8, 0xb8, 0xb7, 0xbc, 0xbf, 0xbf, 0xc2, 0xc4, 0xbe, 0xa3, 0x82, 0x72, 0x75, 0x74, 0x77, 0x72, 0x5f, 0x64, 0x68, 0x6d, 0x6e, 0x69, 0x62, 0x61, 0x63, 0x6c, 0x6b, 0x6b, 0x6b, 0x69, 0x66, 0x68, 0x6d, 0x71, 0x70, 0x71, 0x73, 0x70, 0x6b, 0x6e, 0x75, 0x7b, 0x7d, 0x80, 0x83, 0x8a, 0x96, 0x8f, 0x79, 0x65, 0x65, 0x66, 0x69, 0x6d, 0x71, 0x73, 0x74, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x65, 0x63, 0x61, 0x5c, 0x59, 0x54, 0x4e, 0x48, 0x42, 0x3c, 0x39, 0x31, 0x32, 0x36, 0x3e, 0x43, 0x40, 0x37, 0x30, 0x46, 0x69, 0x81, 0x76, 0x5c, 0x44, 0x3a, 0x3c, 0x5b, 0x75, 0x86, 0x7a, 0x60, 0x48, 0x35, 0x28, 0x2a, 0x2d, 0x2e, 0x2d, 0x2c, 0x31, 0x3b, 0x44, 0x4e, 0x4a, 0x46, 0x44, 0x42, 0x3b, 0x30, 0x28, 0x31, 0x39, 0x46, 0x50, 0x50, 0x47, 0x3f, 0x3b, 0x32, 0x31, 0x30, 0x32, 0x35, 0x36, 0x35, 0x34, 0x36, 0x34, 0x33, 0x37, 0x3e, 0x41, 0x3a, 0x31, 0x29, 0x2e, 0x32, 0x35, 0x38, 0x37, 0x2a, 0x1a, 0x1f, 0x22, 0x27, 0x28, 0x22, 0x1d, 0x1f, 0x25, 0x4e, 0x53, 0x4c, 0x3f, 0x3c, 0x3a, 0x33, 0x30, 0x2d, 0x30, 0x2e, 0x29, 0x28, 0x2d, 0x30, 0x2f, 0x38, 0x32, 0x2d, 0x2b, 0x2a, 0x27, 0x24, 0x24, 0x20, 0x20, 0x27, 0x23, 0x23, 0x28, 0x26, 0x2a, 0x25, 0x28, 0x21, 0x1a, 0x1f, 0x24, 0x25, 0x28, 0x7a, 0x69, 0x5f, 0x68, 0x74, 0x70, 0x61, 0x56, 0x60, 0x5c, 0x59, 0x5b, 0x63, 0x6c, 0x72, 0x75, 0x7a, 0x85, 0x8d, 0x8d, 0x8b, 0x8b, 0x85, 0x7e, 0x70, 0x6e, 0x6a, 0x67, 0x65, 0x67, 0x6d, 0x71, 0x6c, 0x6d, 0x6a, 0x65, 0x68, 0x72, 0x77, 0x77, 0x71, 0x73, 0x6e, 0x67, 0x69, 0x74, 0x7a, 0x78, 0x71, 0x73, 0x6f, 0x6c, 0x6d, 0x66, 0x59, 0x54, 0x56, 0x5f, 0x69, 0x6b, 0x65, 0x60, 0x64, 0x6b, 0x71, 0x71, 0x77, 0x80, 0x7e, 0x73, 0x6a, 0x68, 0x5e, 0x5e, 0x5e, 0x5e, 0x5f, 0x62, 0x68, 0x6d, 0x77, 0x7a, 0x82, 0x8b, 0x8d, 0x8a, 0x88, 0x8a, 0x97, 0x98, 0x9a, 0x91, 0x7d, 0x79, 0x86, 0x91, 0x93, 0x8d, 0x84, 0x88, 0x85, 0x81, 0x86, 0x7d, 0x82, 0x82, 0x83, 0x81, 0x83, 0x8f, 0x93, 0x8a, 0x8b, 0x8c, 0x94, 0x8e, 0x8b, 0x8f, 0x8c, 0x90, 0x9a, 0xa1, 0xa4, 0xa5, 0xab, 0xb4, 0xb6, 0xb2, 0xa9, 0xa6, 0x9d, 0x94, 0x94, 0x99, 0x9b, 0x99, 0x9d, 0xa2, 0xa4, 0x9f, 0x9b, 0x9d, 0xa2, 0xa6, 0xb1, 0xb1, 0xab, 0xa2, 0x9e, 0xa4, 0xad, 0xb2, 0xb8, 0xb7, 0xb1, 0xa2, 0x8e, 0x85, 0x8f, 0x9f, 0xa5, 0x96, 0x87, 0x87, 0x8a, 0x85, 0x88, 0x99, 0x8a, 0x86, 0x90, 0x9e, 0x94, 0x7b, 0x77, 0x85, 0x91, 0x8c, 0x87, 0x87, 0x8b, 0x8e, 0x8c, 0x8a, 0x98, 0xd0, 0xdb, 0xc2, 0xc0, 0xbb, 0xad, 0xb0, 0xaa, 0xa8, 0xa3, 0xa3, 0xaf, 0xbe, 0xc3, 0xc0, 0xc0, 0xc2, 0xc4, 0xc5, 0xc6, 0xc6, 0xc7, 0xc8, 0xc8, 0xc6, 0xc3, 0xc1, 0xbf, 0xbf, 0xc0, 0xc0, 0xc4, 0xc3, 0xc1, 0xc0, 0xbe, 0xbc, 0xb9, 0xb7, 0xb5, 0xb6, 0xb5, 0xb2, 0xb0, 0xae, 0xac, 0xa9, 0xac, 0xae, 0xae, 0xab, 0xaa, 0xac, 0xae, 0xae, 0xb4, 0xb2, 0xb3, 0xb3, 0xaa, 0x97, 0x86, 0x7f, 0x8c, 0x89, 0x96, 0xa1, 0xa5, 0xc3, 0xeb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfc, 0xfc, 0xfd, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xff, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xf7, 0xf9, 0xf9, 0xf7, 0xf4, 0xf1, 0xf0, 0xf0, 0xef, 0xf1, 0xf5, 0xf7, 0xf9, 0xf8, 0xf6, 0xf5, 0xf4, 0xef, 0xeb, 0xec, 0xf1, 0xf1, 0xeb, 0xe4, 0xe1, 0xe4, 0xe6, 0xe6, 0xe4, 0xe5, 0xeb, 0xf0, 0xf0, 0xf0, 0xef, 0xea, 0xe4, 0xe3, 0xe8, 0xed, 0xe6, 0xe6, 0xe6, 0xe6, 0xe8, 0xe8, 0xe7, 0xe6, 0xe7, 0xe6, 0xe4, 0xe1, 0xde, 0xdc, 0xdb, 0xdc, 0xdc, 0xdb, 0xd9, 0xd7, 0xd6, 0xd5, 0xd4, 0xd4, 0xcf, 0xcf, 0xce, 0xce, 0xce, 0xce, 0xce, 0xce, 0xca, 0xca, 0xca, 0xca, 0xc9, 0xc6, 0xc1, 0xbd, 0xc1, 0xbf, 0xbd, 0xbe, 0xc0, 0xc1, 0xc1, 0xc2, 0xc2, 0xc6, 0xc8, 0xc6, 0xc1, 0xbe, 0xbf, 0xc1, 0xc1, 0xbe, 0xb7, 0xaf, 0xaf, 0xb7, 0xbd, 0xbe, 0xc5, 0xc6, 0xc7, 0xc6, 0xc4, 0xbe, 0xb8, 0xb4, 0xb4, 0xb4, 0xbb, 0xbf, 0xbe, 0xc2, 0xc6, 0xc3, 0xb0, 0x87, 0x71, 0x70, 0x70, 0x78, 0x78, 0x66, 0x61, 0x65, 0x6b, 0x6c, 0x68, 0x64, 0x64, 0x66, 0x6a, 0x6a, 0x6c, 0x6f, 0x6e, 0x6b, 0x6e, 0x73, 0x75, 0x72, 0x71, 0x71, 0x6d, 0x68, 0x68, 0x6d, 0x74, 0x80, 0x92, 0x9c, 0xa0, 0xa4, 0x9b, 0x86, 0x7b, 0x72, 0x68, 0x65, 0x6a, 0x71, 0x74, 0x74, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6e, 0x6c, 0x6b, 0x6c, 0x6a, 0x68, 0x67, 0x66, 0x65, 0x61, 0x5f, 0x5c, 0x58, 0x53, 0x4d, 0x48, 0x42, 0x3c, 0x39, 0x34, 0x2c, 0x2b, 0x35, 0x3e, 0x3c, 0x32, 0x29, 0x46, 0x61, 0x74, 0x7a, 0x77, 0x64, 0x54, 0x55, 0x55, 0x60, 0x66, 0x63, 0x61, 0x5f, 0x52, 0x41, 0x38, 0x33, 0x2b, 0x24, 0x24, 0x2b, 0x37, 0x40, 0x36, 0x3e, 0x44, 0x44, 0x40, 0x3e, 0x42, 0x47, 0x4e, 0x4c, 0x4c, 0x4c, 0x48, 0x3d, 0x33, 0x2e, 0x35, 0x37, 0x39, 0x3a, 0x39, 0x35, 0x32, 0x30, 0x2b, 0x36, 0x3b, 0x35, 0x2d, 0x2c, 0x2d, 0x2d, 0x2c, 0x31, 0x31, 0x2a, 0x28, 0x2a, 0x2a, 0x26, 0x28, 0x2e, 0x32, 0x2d, 0x25, 0x23, 0x29, 0x30, 0x41, 0x4d, 0x4d, 0x46, 0x45, 0x47, 0x44, 0x43, 0x45, 0x39, 0x2b, 0x23, 0x21, 0x20, 0x1f, 0x1f, 0x20, 0x1a, 0x18, 0x1c, 0x1d, 0x1b, 0x1c, 0x1f, 0x20, 0x22, 0x2d, 0x2d, 0x2f, 0x34, 0x2e, 0x2d, 0x26, 0x2d, 0x2b, 0x28, 0x30, 0x37, 0x36, 0x34, 0x7b, 0x74, 0x6d, 0x6d, 0x75, 0x7b, 0x77, 0x6f, 0x5e, 0x5f, 0x61, 0x66, 0x6e, 0x76, 0x7a, 0x7b, 0x7e, 0x83, 0x88, 0x8a, 0x86, 0x7f, 0x79, 0x76, 0x74, 0x76, 0x77, 0x76, 0x72, 0x6e, 0x6b, 0x6a, 0x68, 0x69, 0x6c, 0x6f, 0x73, 0x78, 0x7c, 0x7f, 0x72, 0x74, 0x73, 0x70, 0x71, 0x76, 0x75, 0x70, 0x70, 0x72, 0x6f, 0x67, 0x62, 0x68, 0x70, 0x75, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x66, 0x62, 0x65, 0x6c, 0x77, 0x7c, 0x78, 0x6e, 0x68, 0x67, 0x6b, 0x68, 0x67, 0x65, 0x5f, 0x5d, 0x67, 0x76, 0x75, 0x77, 0x76, 0x75, 0x79, 0x82, 0x8c, 0x90, 0x92, 0x8c, 0x86, 0x82, 0x7b, 0x76, 0x7d, 0x88, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x82, 0x81, 0x82, 0x80, 0x7e, 0x7e, 0x82, 0x86, 0x8a, 0x8c, 0x8e, 0x88, 0x86, 0x8a, 0x8f, 0x91, 0x93, 0x95, 0x9c, 0xa3, 0xa5, 0xa0, 0x9f, 0xa4, 0xa5, 0xa1, 0xa0, 0x9b, 0x94, 0x8b, 0x7e, 0x76, 0x7d, 0x8a, 0xa9, 0xa5, 0xa0, 0x9a, 0x93, 0x92, 0x9d, 0xa9, 0xa6, 0xa3, 0x9c, 0x96, 0x99, 0xa3, 0xac, 0xb0, 0xb3, 0xb8, 0xbd, 0xb8, 0xa7, 0x95, 0x8b, 0x89, 0x91, 0x8d, 0x8a, 0x81, 0x75, 0x73, 0x7a, 0x7c, 0x7f, 0x81, 0x7f, 0x86, 0x8f, 0x83, 0x73, 0x74, 0x7e, 0x79, 0x7f, 0x89, 0x88, 0x84, 0x87, 0x8c, 0xc0, 0xcb, 0xca, 0xba, 0xb4, 0xba, 0xb7, 0xab, 0xa7, 0xa2, 0x9f, 0xa4, 0xb4, 0xc2, 0xc5, 0xc0, 0xc1, 0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc6, 0xc5, 0xc5, 0xc5, 0xc7, 0xc7, 0xc7, 0xc6, 0xc4, 0xc3, 0xc3, 0xc2, 0xc0, 0xc0, 0xbe, 0xbc, 0xb9, 0xb6, 0xb3, 0xb4, 0xb3, 0xb1, 0xaf, 0xaf, 0xb1, 0xb4, 0xad, 0xb0, 0xb2, 0xb1, 0xae, 0xae, 0xb0, 0xb4, 0xb3, 0xb3, 0xb3, 0xb3, 0xb0, 0xa4, 0x95, 0x8a, 0x7d, 0x86, 0x89, 0x94, 0xa3, 0xa6, 0xbe, 0xeb, 0xfb, 0xf9, 0xfe, 0xff, 0xf9, 0xfb, 0xff, 0xfa, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xf9, 0xf8, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xf8, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xf8, 0xf6, 0xf1, 0xf1, 0xf1, 0xf3, 0xf6, 0xf7, 0xf6, 0xf4, 0xf3, 0xf2, 0xf1, 0xf0, 0xef, 0xee, 0xeb, 0xea, 0xeb, 0xea, 0xe7, 0xe6, 0xe5, 0xe6, 0xe8, 0xe9, 0xec, 0xef, 0xf2, 0xf3, 0xf2, 0xef, 0xed, 0xec, 0xe6, 0xe5, 0xe3, 0xe2, 0xe2, 0xe3, 0xe4, 0xe6, 0xe6, 0xe6, 0xe5, 0xe4, 0xe2, 0xe0, 0xdf, 0xde, 0xe0, 0xdf, 0xdd, 0xdb, 0xda, 0xd9, 0xd8, 0xd8, 0xd2, 0xd2, 0xd1, 0xd2, 0xd3, 0xd3, 0xd3, 0xd2, 0xd2, 0xcf, 0xcb, 0xc8, 0xc6, 0xc5, 0xc3, 0xc2, 0xc3, 0xc2, 0xc0, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xc4, 0xc6, 0xc7, 0xc5, 0xc0, 0xbd, 0xbc, 0xbd, 0xbc, 0xb8, 0xb4, 0xb2, 0xb1, 0xb3, 0xba, 0xc2, 0xc6, 0xc6, 0xc6, 0xc4, 0xc0, 0xba, 0xb4, 0xb0, 0xaf, 0xb1, 0xb6, 0xbc, 0xbf, 0xc1, 0xc4, 0xc7, 0xb4, 0x93, 0x74, 0x6c, 0x71, 0x71, 0x6e, 0x6e, 0x62, 0x70, 0x77, 0x6d, 0x5f, 0x5b, 0x61, 0x67, 0x6a, 0x69, 0x6c, 0x73, 0x76, 0x74, 0x73, 0x74, 0x6c, 0x6f, 0x74, 0x74, 0x6d, 0x6a, 0x72, 0x7d, 0x92, 0x98, 0x9f, 0xa3, 0xa4, 0xa4, 0xa5, 0xa6, 0x9b, 0x8f, 0x7c, 0x6a, 0x5f, 0x60, 0x67, 0x6e, 0x72, 0x6f, 0x6f, 0x6f, 0x6d, 0x6b, 0x6a, 0x6c, 0x68, 0x68, 0x68, 0x68, 0x66, 0x62, 0x5c, 0x58, 0x54, 0x52, 0x4e, 0x49, 0x45, 0x41, 0x3a, 0x34, 0x2f, 0x26, 0x24, 0x2b, 0x2f, 0x2c, 0x28, 0x28, 0x44, 0x52, 0x65, 0x73, 0x7c, 0x7e, 0x7b, 0x76, 0x62, 0x50, 0x40, 0x3f, 0x49, 0x50, 0x52, 0x52, 0x57, 0x4a, 0x37, 0x29, 0x2b, 0x34, 0x3a, 0x39, 0x35, 0x33, 0x39, 0x44, 0x4c, 0x4d, 0x4f, 0x54, 0x50, 0x4a, 0x4c, 0x52, 0x4c, 0x3a, 0x34, 0x3a, 0x41, 0x41, 0x3e, 0x37, 0x2c, 0x25, 0x29, 0x30, 0x3f, 0x3c, 0x36, 0x30, 0x2d, 0x30, 0x38, 0x3f, 0x3a, 0x3e, 0x3b, 0x37, 0x35, 0x2f, 0x2c, 0x32, 0x30, 0x35, 0x38, 0x35, 0x2f, 0x33, 0x44, 0x56, 0x5c, 0x53, 0x50, 0x50, 0x50, 0x55, 0x57, 0x52, 0x46, 0x41, 0x2e, 0x20, 0x25, 0x2b, 0x27, 0x22, 0x21, 0x21, 0x19, 0x1c, 0x1e, 0x22, 0x34, 0x3e, 0x43, 0x47, 0x49, 0x45, 0x3d, 0x35, 0x32, 0x32, 0x33, 0x36, 0x39, 0x3e, 0x42, 0x45, 0x44, 0x41, 0x64, 0x6a, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x70, 0x7a, 0x79, 0x7a, 0x7b, 0x79, 0x72, 0x6e, 0x6d, 0x71, 0x75, 0x7a, 0x7e, 0x7f, 0x7a, 0x73, 0x6d, 0x73, 0x77, 0x7a, 0x79, 0x75, 0x70, 0x6e, 0x6e, 0x75, 0x73, 0x70, 0x6c, 0x6b, 0x6c, 0x6e, 0x70, 0x79, 0x78, 0x7c, 0x84, 0x88, 0x85, 0x7d, 0x77, 0x75, 0x73, 0x6d, 0x67, 0x67, 0x6e, 0x73, 0x74, 0x6f, 0x70, 0x72, 0x75, 0x76, 0x71, 0x69, 0x62, 0x5c, 0x65, 0x74, 0x7f, 0x7f, 0x77, 0x70, 0x6d, 0x61, 0x66, 0x74, 0x84, 0x89, 0x7e, 0x70, 0x6a, 0x70, 0x75, 0x79, 0x79, 0x79, 0x7b, 0x7e, 0x7e, 0x81, 0x7d, 0x7b, 0x7b, 0x77, 0x72, 0x75, 0x7d, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x81, 0x7d, 0x77, 0x75, 0x79, 0x81, 0x8b, 0x92, 0x93, 0x8d, 0x88, 0x87, 0x87, 0x86, 0x86, 0x88, 0x91, 0x97, 0x99, 0x96, 0x97, 0x9b, 0x98, 0x90, 0x8d, 0x88, 0x82, 0x7d, 0x74, 0x6e, 0x73, 0x7e, 0x84, 0x84, 0x86, 0x88, 0x86, 0x82, 0x83, 0x86, 0x82, 0x84, 0x85, 0x87, 0x91, 0xa3, 0xb5, 0xbf, 0xb6, 0xb4, 0xb1, 0xaa, 0xa0, 0x97, 0x95, 0x98, 0x8a, 0x81, 0x7a, 0x71, 0x66, 0x67, 0x6e, 0x70, 0x6c, 0x75, 0x7b, 0x80, 0x80, 0x6f, 0x60, 0x63, 0x6c, 0x74, 0x76, 0x7d, 0x86, 0x80, 0x85, 0x9d, 0xd1, 0xcc, 0xc2, 0xb8, 0xb3, 0xb1, 0xab, 0xa3, 0x9f, 0x9f, 0xa2, 0xac, 0xb9, 0xc1, 0xc2, 0xc0, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xc8, 0xc6, 0xc5, 0xc5, 0xc6, 0xc7, 0xc7, 0xc6, 0xc4, 0xc1, 0xbf, 0xbe, 0xbd, 0xbb, 0xba, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xab, 0xad, 0xb2, 0xb5, 0xb4, 0xb1, 0xb5, 0xb2, 0xb1, 0xb1, 0xb0, 0xa9, 0x9d, 0x93, 0x80, 0x84, 0x83, 0x8d, 0x9b, 0x9a, 0xa5, 0xc6, 0xf3, 0xfa, 0xfa, 0xfc, 0xff, 0xfb, 0xf6, 0xfd, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xfa, 0xf9, 0xf7, 0xf6, 0xf4, 0xf3, 0xf3, 0xf4, 0xf5, 0xf6, 0xf5, 0xf4, 0xf5, 0xf4, 0xf4, 0xf5, 0xf6, 0xf6, 0xf4, 0xf3, 0xf2, 0xf0, 0xed, 0xea, 0xe8, 0xe7, 0xe6, 0xe7, 0xe7, 0xe7, 0xe8, 0xe9, 0xea, 0xea, 0xe9, 0xe9, 0xed, 0xed, 0xeb, 0xea, 0xe8, 0xe7, 0xe6, 0xe5, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe0, 0xdf, 0xdf, 0xe2, 0xe1, 0xde, 0xdb, 0xd8, 0xd6, 0xd5, 0xd4, 0xd1, 0xd1, 0xd0, 0xd0, 0xd0, 0xd0, 0xce, 0xcc, 0xc9, 0xc7, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc5, 0xc5, 0xc4, 0xc3, 0xc3, 0xc3, 0xc4, 0xc5, 0xc7, 0xc8, 0xc8, 0xc5, 0xbf, 0xba, 0xb9, 0xb9, 0xbb, 0xb6, 0xb1, 0xaf, 0xb0, 0xb3, 0xb9, 0xbf, 0xc3, 0xc4, 0xc4, 0xc3, 0xbf, 0xb9, 0xb3, 0xaf, 0xaf, 0xb0, 0xb5, 0xba, 0xbe, 0xc0, 0xc3, 0xc7, 0xbe, 0x9f, 0x7c, 0x6d, 0x6c, 0x6e, 0x6c, 0x6a, 0x6c, 0x6e, 0x71, 0x71, 0x68, 0x5b, 0x57, 0x59, 0x60, 0x62, 0x68, 0x6e, 0x6f, 0x6d, 0x6f, 0x73, 0x6d, 0x6c, 0x6e, 0x73, 0x78, 0x7f, 0x8a, 0x94, 0x98, 0x9c, 0xa1, 0xa3, 0xa3, 0xa3, 0xa5, 0xa8, 0xa3, 0x9b, 0x8d, 0x7d, 0x71, 0x69, 0x65, 0x63, 0x68, 0x69, 0x6c, 0x6f, 0x6d, 0x69, 0x68, 0x6a, 0x67, 0x66, 0x65, 0x65, 0x64, 0x61, 0x5e, 0x5b, 0x53, 0x51, 0x4b, 0x45, 0x40, 0x3b, 0x34, 0x2d, 0x2f, 0x27, 0x26, 0x30, 0x38, 0x35, 0x2d, 0x28, 0x2d, 0x41, 0x59, 0x6b, 0x77, 0x7c, 0x7a, 0x74, 0x70, 0x60, 0x43, 0x2c, 0x2d, 0x48, 0x6b, 0x81, 0x7f, 0x75, 0x67, 0x61, 0x69, 0x75, 0x7a, 0x77, 0x6d, 0x61, 0x4f, 0x41, 0x3c, 0x40, 0x46, 0x48, 0x4d, 0x51, 0x51, 0x45, 0x35, 0x2f, 0x3c, 0x4c, 0x4b, 0x3a, 0x27, 0x20, 0x25, 0x2f, 0x3a, 0x40, 0x3f, 0x39, 0x32, 0x2e, 0x2d, 0x2d, 0x2b, 0x29, 0x3a, 0x31, 0x2b, 0x36, 0x46, 0x43, 0x36, 0x30, 0x34, 0x3e, 0x3d, 0x34, 0x37, 0x4b, 0x5d, 0x63, 0x64, 0x60, 0x5f, 0x60, 0x5d, 0x59, 0x53, 0x4a, 0x4a, 0x3e, 0x2d, 0x26, 0x27, 0x27, 0x2f, 0x3f, 0x49, 0x4b, 0x3e, 0x3b, 0x3f, 0x43, 0x41, 0x2f, 0x24, 0x31, 0x3e, 0x42, 0x3c, 0x37, 0x39, 0x3d, 0x40, 0x46, 0x4d, 0x52, 0x53, 0x50, 0x49, 0x44, 0x80, 0x84, 0x85, 0x7f, 0x7a, 0x7b, 0x80, 0x84, 0x87, 0x7d, 0x76, 0x78, 0x78, 0x72, 0x6e, 0x6f, 0x6c, 0x68, 0x65, 0x66, 0x6a, 0x6c, 0x6b, 0x68, 0x69, 0x6f, 0x75, 0x78, 0x77, 0x75, 0x75, 0x76, 0x75, 0x73, 0x72, 0x74, 0x79, 0x80, 0x86, 0x89, 0x6b, 0x65, 0x68, 0x76, 0x80, 0x7f, 0x7c, 0x7c, 0x72, 0x6d, 0x67, 0x66, 0x6c, 0x74, 0x75, 0x72, 0x69, 0x68, 0x69, 0x6c, 0x6e, 0x6e, 0x6c, 0x69, 0x65, 0x60, 0x61, 0x6d, 0x7a, 0x7c, 0x73, 0x6b, 0x83, 0x91, 0xa2, 0xa6, 0x96, 0x81, 0x79, 0x7c, 0x6f, 0x76, 0x7b, 0x7a, 0x76, 0x74, 0x74, 0x73, 0x78, 0x76, 0x78, 0x7c, 0x7b, 0x74, 0x71, 0x71, 0x70, 0x72, 0x76, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x82, 0x88, 0x8c, 0x8e, 0x8c, 0x8c, 0x8b, 0x88, 0x82, 0x7d, 0x7b, 0x85, 0x8a, 0x8b, 0x8a, 0x8d, 0x90, 0x89, 0x7e, 0x7b, 0x77, 0x77, 0x7a, 0x7c, 0x7c, 0x81, 0x87, 0x90, 0x8d, 0x8c, 0x8e, 0x8d, 0x8a, 0x86, 0x84, 0x81, 0x82, 0x81, 0x7c, 0x7a, 0x80, 0x89, 0x90, 0x90, 0x88, 0x80, 0x7c, 0x7b, 0x7b, 0x7d, 0x81, 0x7a, 0x72, 0x6e, 0x6b, 0x67, 0x6d, 0x76, 0x78, 0x7d, 0x76, 0x6b, 0x69, 0x6e, 0x69, 0x62, 0x64, 0x64, 0x74, 0x73, 0x76, 0x83, 0x7f, 0x8c, 0xb7, 0xda, 0xc8, 0xb8, 0xb4, 0xb2, 0xa9, 0xa1, 0x9f, 0xa0, 0xa1, 0xa8, 0xb5, 0xbe, 0xc0, 0xc2, 0xc5, 0xc7, 0xc8, 0xc9, 0xc9, 0xc8, 0xc7, 0xc5, 0xc4, 0xc3, 0xc4, 0xc6, 0xc6, 0xc5, 0xc2, 0xbf, 0xbd, 0xbb, 0xb8, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb5, 0xb8, 0xb7, 0xb5, 0xb4, 0xb2, 0xae, 0xab, 0xa8, 0xaa, 0xa8, 0xa7, 0xaa, 0xb0, 0xb4, 0xb4, 0xb3, 0xb6, 0xb2, 0xaf, 0xaf, 0xb0, 0xae, 0xa6, 0x9f, 0x8c, 0x87, 0x7f, 0x86, 0x94, 0x92, 0x96, 0xaa, 0xd2, 0xf4, 0xfc, 0xf7, 0xff, 0xfa, 0xf2, 0xfe, 0xf8, 0xf9, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfc, 0xfc, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfd, 0xfc, 0xfa, 0xfa, 0xfa, 0xf9, 0xf7, 0xf5, 0xf4, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf7, 0xf5, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf7, 0xf6, 0xf2, 0xf1, 0xef, 0xee, 0xed, 0xec, 0xec, 0xec, 0xe5, 0xe3, 0xe0, 0xe0, 0xe2, 0xe4, 0xe4, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe8, 0xe8, 0xe8, 0xe5, 0xe5, 0xe5, 0xe4, 0xe2, 0xe1, 0xdf, 0xdf, 0xe1, 0xe0, 0xdd, 0xda, 0xd6, 0xd4, 0xd2, 0xd1, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcd, 0xca, 0xc8, 0xca, 0xc9, 0xc8, 0xc8, 0xc9, 0xca, 0xca, 0xc9, 0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xc5, 0xc6, 0xc6, 0xc8, 0xc9, 0xc8, 0xc4, 0xbe, 0xba, 0xb8, 0xb8, 0xbc, 0xb5, 0xaf, 0xae, 0xb1, 0xb5, 0xba, 0xbe, 0xc2, 0xc3, 0xc5, 0xc4, 0xc1, 0xba, 0xb4, 0xb0, 0xaf, 0xb0, 0xb3, 0xb9, 0xbc, 0xbe, 0xc2, 0xc7, 0xc8, 0xae, 0x8a, 0x70, 0x69, 0x6c, 0x6c, 0x67, 0x68, 0x64, 0x6b, 0x77, 0x72, 0x60, 0x59, 0x5f, 0x64, 0x68, 0x6d, 0x6f, 0x6c, 0x68, 0x6a, 0x6e, 0x6d, 0x6a, 0x6c, 0x76, 0x84, 0x8f, 0x97, 0x9b, 0x9d, 0x9f, 0xa1, 0xa0, 0xa0, 0xa1, 0xa4, 0xa7, 0xa6, 0xa3, 0x9d, 0x95, 0x8a, 0x7c, 0x6d, 0x64, 0x62, 0x64, 0x69, 0x6d, 0x6d, 0x69, 0x68, 0x6a, 0x67, 0x65, 0x63, 0x62, 0x61, 0x5f, 0x5d, 0x5c, 0x55, 0x52, 0x4c, 0x45, 0x40, 0x3c, 0x35, 0x2e, 0x2a, 0x23, 0x24, 0x31, 0x3f, 0x40, 0x3a, 0x34, 0x38, 0x38, 0x3b, 0x48, 0x61, 0x73, 0x70, 0x62, 0x62, 0x6f, 0x7a, 0x80, 0x8b, 0x93, 0x8c, 0x7e, 0x75, 0x7d, 0x85, 0x89, 0x8a, 0x87, 0x81, 0x7c, 0x7e, 0x81, 0x7a, 0x68, 0x5b, 0x5a, 0x5b, 0x5a, 0x46, 0x47, 0x3d, 0x2c, 0x29, 0x35, 0x40, 0x42, 0x28, 0x26, 0x27, 0x2e, 0x35, 0x39, 0x3c, 0x3e, 0x3c, 0x3d, 0x39, 0x2d, 0x21, 0x1b, 0x20, 0x27, 0x30, 0x3b, 0x44, 0x45, 0x3b, 0x29, 0x26, 0x34, 0x53, 0x58, 0x54, 0x48, 0x48, 0x54, 0x58, 0x52, 0x61, 0x5f, 0x5f, 0x5f, 0x5f, 0x5e, 0x5c, 0x58, 0x4e, 0x3f, 0x30, 0x34, 0x41, 0x3f, 0x35, 0x34, 0x39, 0x35, 0x30, 0x37, 0x31, 0x25, 0x34, 0x45, 0x5c, 0x55, 0x47, 0x37, 0x2c, 0x2e, 0x3b, 0x47, 0x4c, 0x51, 0x57, 0x58, 0x53, 0x49, 0x41, 0x3d, 0x71, 0x7d, 0x8a, 0x92, 0x93, 0x8f, 0x87, 0x81, 0x77, 0x69, 0x64, 0x6f, 0x78, 0x75, 0x72, 0x74, 0x70, 0x69, 0x63, 0x60, 0x62, 0x66, 0x68, 0x68, 0x61, 0x66, 0x6f, 0x76, 0x78, 0x74, 0x6e, 0x69, 0x77, 0x73, 0x70, 0x74, 0x7b, 0x80, 0x7f, 0x7d, 0x86, 0x80, 0x7d, 0x7e, 0x7f, 0x7a, 0x74, 0x70, 0x68, 0x65, 0x64, 0x69, 0x72, 0x77, 0x75, 0x70, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x59, 0x56, 0x57, 0x61, 0x71, 0x85, 0x9b, 0xab, 0xa8, 0x9d, 0x90, 0x85, 0x7c, 0x74, 0x71, 0x73, 0x73, 0x78, 0x7a, 0x74, 0x6f, 0x6f, 0x73, 0x76, 0x79, 0x79, 0x7d, 0x83, 0x83, 0x7b, 0x70, 0x6b, 0x6c, 0x70, 0x76, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x81, 0x82, 0x82, 0x82, 0x81, 0x82, 0x83, 0x85, 0x89, 0x88, 0x86, 0x84, 0x81, 0x7f, 0x7f, 0x81, 0x84, 0x89, 0x8b, 0x8a, 0x8c, 0x8f, 0x88, 0x7c, 0x72, 0x6f, 0x72, 0x7b, 0x84, 0x89, 0x8b, 0x8d, 0x8f, 0x8d, 0x8b, 0x8c, 0x8c, 0x89, 0x84, 0x80, 0x81, 0x81, 0x7e, 0x79, 0x74, 0x71, 0x72, 0x72, 0x7e, 0x77, 0x72, 0x74, 0x78, 0x7a, 0x79, 0x78, 0x70, 0x6b, 0x6b, 0x6c, 0x6a, 0x70, 0x79, 0x7a, 0x7e, 0x75, 0x6c, 0x6d, 0x71, 0x6d, 0x65, 0x61, 0x6b, 0x74, 0x76, 0x76, 0x79, 0x7e, 0x9b, 0xc7, 0xd0, 0xc1, 0xb6, 0xb4, 0xb1, 0xa7, 0xa1, 0xa3, 0xa8, 0xa6, 0xad, 0xba, 0xc2, 0xc1, 0xc3, 0xc9, 0xc6, 0xc6, 0xc7, 0xc7, 0xc6, 0xc5, 0xc3, 0xc2, 0xc2, 0xc2, 0xc3, 0xc4, 0xc4, 0xc3, 0xc2, 0xc2, 0xbf, 0xbc, 0xb9, 0xb7, 0xb6, 0xb5, 0xb3, 0xb2, 0xb5, 0xb4, 0xb3, 0xb3, 0xb2, 0xae, 0xa9, 0xa5, 0xa0, 0xa3, 0xa6, 0xa7, 0xa7, 0xaa, 0xaf, 0xb5, 0xb3, 0xb1, 0xaf, 0xaf, 0xb0, 0xaf, 0xab, 0xa8, 0x9a, 0x8e, 0x7f, 0x80, 0x8b, 0x8f, 0x97, 0xa8, 0xaa, 0xe0, 0xfc, 0xf6, 0xf7, 0xf8, 0xf7, 0xfc, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xf9, 0xf7, 0xf5, 0xf3, 0xf5, 0xf6, 0xf5, 0xf4, 0xf5, 0xf7, 0xfa, 0xf6, 0xf5, 0xf5, 0xf5, 0xf6, 0xf5, 0xf4, 0xf3, 0xf1, 0xf1, 0xf1, 0xf1, 0xf0, 0xef, 0xef, 0xee, 0xe9, 0xe5, 0xe1, 0xe0, 0xe1, 0xe2, 0xe1, 0xdf, 0xd9, 0xda, 0xdc, 0xdf, 0xe1, 0xe3, 0xe5, 0xe6, 0xe7, 0xe7, 0xe6, 0xe6, 0xe5, 0xe4, 0xe3, 0xe2, 0xe3, 0xe2, 0xe0, 0xde, 0xdc, 0xda, 0xd8, 0xd8, 0xd5, 0xd4, 0xd5, 0xd5, 0xd5, 0xd4, 0xd1, 0xcf, 0xd2, 0xd1, 0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xca, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc3, 0xc4, 0xc5, 0xc7, 0xc7, 0xc6, 0xc3, 0xbf, 0xbc, 0xbb, 0xbb, 0xbe, 0xb6, 0xaf, 0xb0, 0xb4, 0xb9, 0xbd, 0xc0, 0xc3, 0xc5, 0xc7, 0xc7, 0xc3, 0xbd, 0xb6, 0xb1, 0xaf, 0xaf, 0xb2, 0xb7, 0xba, 0xbc, 0xc1, 0xc6, 0xcc, 0xba, 0x98, 0x76, 0x69, 0x6c, 0x6d, 0x67, 0x63, 0x64, 0x6e, 0x77, 0x6e, 0x5d, 0x59, 0x63, 0x56, 0x5c, 0x64, 0x69, 0x68, 0x67, 0x69, 0x6d, 0x66, 0x6b, 0x75, 0x83, 0x90, 0x97, 0x98, 0x96, 0x9d, 0x9d, 0x9e, 0x9d, 0x9d, 0x9d, 0xa0, 0xa2, 0xa0, 0xa1, 0xa1, 0xa1, 0x9d, 0x92, 0x83, 0x78, 0x69, 0x66, 0x65, 0x67, 0x68, 0x67, 0x67, 0x69, 0x66, 0x65, 0x62, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x56, 0x53, 0x4d, 0x47, 0x42, 0x3f, 0x39, 0x32, 0x2c, 0x24, 0x20, 0x25, 0x2d, 0x2e, 0x2b, 0x28, 0x2c, 0x36, 0x3b, 0x38, 0x3b, 0x4a, 0x5b, 0x63, 0x6c, 0x7e, 0x8a, 0x82, 0x76, 0x76, 0x7f, 0x86, 0x7d, 0x81, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7e, 0x79, 0x7d, 0x7c, 0x76, 0x70, 0x6d, 0x6a, 0x66, 0x52, 0x48, 0x34, 0x23, 0x29, 0x39, 0x3a, 0x30, 0x22, 0x26, 0x2d, 0x35, 0x3a, 0x3d, 0x42, 0x47, 0x41, 0x42, 0x3e, 0x31, 0x24, 0x24, 0x32, 0x40, 0x48, 0x47, 0x3e, 0x36, 0x35, 0x39, 0x43, 0x52, 0x4c, 0x4e, 0x54, 0x59, 0x5a, 0x56, 0x53, 0x53, 0x46, 0x53, 0x60, 0x6a, 0x6c, 0x61, 0x52, 0x49, 0x31, 0x46, 0x53, 0x56, 0x58, 0x53, 0x48, 0x41, 0x2f, 0x49, 0x54, 0x5b, 0x64, 0x6d, 0x6e, 0x5b, 0x3d, 0x33, 0x28, 0x27, 0x31, 0x3f, 0x4b, 0x51, 0x4e, 0x4f, 0x4e, 0x49, 0x3f, 0x35, 0x31, 0x31, 0x69, 0x76, 0x85, 0x8c, 0x89, 0x81, 0x76, 0x6e, 0x65, 0x63, 0x6c, 0x7b, 0x7e, 0x73, 0x6b, 0x6c, 0x73, 0x70, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x66, 0x6d, 0x6b, 0x6b, 0x71, 0x79, 0x81, 0x83, 0x83, 0x77, 0x71, 0x6d, 0x71, 0x78, 0x78, 0x6f, 0x65, 0x68, 0x72, 0x78, 0x77, 0x77, 0x78, 0x72, 0x68, 0x62, 0x63, 0x68, 0x6f, 0x74, 0x74, 0x70, 0x6d, 0x61, 0x64, 0x67, 0x66, 0x62, 0x5d, 0x5b, 0x5b, 0x59, 0x4f, 0x52, 0x70, 0x98, 0xab, 0xa2, 0x92, 0x8d, 0x7f, 0x6f, 0x67, 0x67, 0x6b, 0x6f, 0x71, 0x79, 0x7c, 0x7a, 0x73, 0x6d, 0x6f, 0x76, 0x7b, 0x7b, 0x7c, 0x80, 0x86, 0x87, 0x7f, 0x73, 0x6a, 0x6e, 0x72, 0x79, 0x7e, 0x81, 0x83, 0x84, 0x86, 0x8c, 0x88, 0x82, 0x7d, 0x7b, 0x7e, 0x83, 0x87, 0x8b, 0x85, 0x7c, 0x74, 0x73, 0x79, 0x83, 0x89, 0x88, 0x90, 0x93, 0x91, 0x92, 0x94, 0x8f, 0x86, 0x7e, 0x7c, 0x7d, 0x84, 0x8c, 0x8f, 0x8c, 0x8a, 0x84, 0x89, 0x90, 0x96, 0x99, 0x97, 0x90, 0x8a, 0x7d, 0x7a, 0x79, 0x7b, 0x7f, 0x81, 0x83, 0x83, 0x80, 0x7b, 0x7a, 0x7e, 0x82, 0x81, 0x7c, 0x79, 0x71, 0x6c, 0x6a, 0x68, 0x63, 0x67, 0x6f, 0x70, 0x76, 0x75, 0x75, 0x70, 0x67, 0x62, 0x66, 0x6a, 0x70, 0x6b, 0x72, 0x73, 0x6a, 0x7d, 0xa9, 0xc7, 0xc4, 0xc2, 0xbe, 0xb8, 0xaf, 0xa7, 0xa5, 0xa7, 0xa7, 0xa5, 0xad, 0xbd, 0xc5, 0xc4, 0xc4, 0xc8, 0xc4, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc2, 0xc4, 0xc3, 0xc2, 0xc2, 0xc2, 0xc3, 0xc4, 0xc5, 0xc4, 0xc2, 0xc0, 0xbf, 0xbd, 0xba, 0xb7, 0xb4, 0xb2, 0xb2, 0xb2, 0xb3, 0xb3, 0xb1, 0xad, 0xa9, 0x9e, 0xa1, 0xa3, 0xa3, 0xa2, 0xa4, 0xaa, 0xaf, 0xae, 0xb0, 0xb2, 0xb1, 0xae, 0xac, 0xab, 0xab, 0xa1, 0x94, 0x84, 0x7f, 0x83, 0x8a, 0x96, 0xa5, 0x9e, 0xc2, 0xea, 0xf9, 0xf7, 0xfa, 0xfd, 0xf9, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfc, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xf8, 0xf6, 0xf7, 0xf7, 0xf5, 0xf3, 0xf3, 0xf5, 0xf7, 0xf8, 0xf7, 0xf6, 0xf6, 0xf7, 0xf6, 0xf5, 0xf3, 0xf6, 0xf5, 0xf4, 0xf3, 0xf1, 0xee, 0xec, 0xeb, 0xec, 0xe9, 0xe5, 0xe4, 0xe5, 0xe5, 0xe2, 0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xdf, 0xe0, 0xe3, 0xe5, 0xe7, 0xe8, 0xe8, 0xe9, 0xe8, 0xe7, 0xe6, 0xe5, 0xe3, 0xe2, 0xe1, 0xe1, 0xe0, 0xdf, 0xdf, 0xde, 0xdc, 0xd9, 0xd7, 0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xcd, 0xca, 0xc7, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc4, 0xc5, 0xc5, 0xc7, 0xc7, 0xc6, 0xc3, 0xc1, 0xbe, 0xbe, 0xbd, 0xbf, 0xb7, 0xb1, 0xb3, 0xb8, 0xbd, 0xbf, 0xc1, 0xc4, 0xc6, 0xc8, 0xc7, 0xc4, 0xbd, 0xb6, 0xb1, 0xaf, 0xaf, 0xb2, 0xb6, 0xb9, 0xbb, 0xc0, 0xc5, 0xca, 0xc0, 0xa3, 0x7e, 0x6a, 0x6b, 0x6b, 0x64, 0x69, 0x6b, 0x6d, 0x6b, 0x63, 0x59, 0x55, 0x57, 0x5a, 0x60, 0x66, 0x69, 0x69, 0x67, 0x66, 0x65, 0x62, 0x70, 0x83, 0x91, 0x99, 0x9b, 0x9b, 0x9b, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9c, 0x9d, 0x9e, 0xa1, 0xa2, 0x9e, 0x96, 0x90, 0x7f, 0x74, 0x68, 0x64, 0x64, 0x64, 0x63, 0x63, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x5d, 0x5a, 0x57, 0x54, 0x52, 0x4c, 0x45, 0x40, 0x3c, 0x36, 0x2f, 0x28, 0x23, 0x20, 0x1f, 0x20, 0x22, 0x24, 0x26, 0x25, 0x34, 0x41, 0x44, 0x45, 0x4f, 0x60, 0x6c, 0x7a, 0x79, 0x7b, 0x82, 0x87, 0x85, 0x7e, 0x78, 0x88, 0x84, 0x80, 0x81, 0x82, 0x80, 0x7a, 0x74, 0x81, 0x7b, 0x7a, 0x80, 0x82, 0x78, 0x6a, 0x61, 0x64, 0x5e, 0x4e, 0x39, 0x2d, 0x2c, 0x2e, 0x2d, 0x30, 0x2e, 0x30, 0x38, 0x3f, 0x40, 0x3d, 0x3b, 0x37, 0x34, 0x30, 0x2f, 0x31, 0x37, 0x3e, 0x42, 0x41, 0x40, 0x36, 0x33, 0x42, 0x4f, 0x4e, 0x49, 0x49, 0x4f, 0x55, 0x56, 0x4f, 0x47, 0x46, 0x49, 0x50, 0x5c, 0x62, 0x63, 0x61, 0x52, 0x42, 0x3e, 0x61, 0x5f, 0x56, 0x55, 0x64, 0x69, 0x5a, 0x49, 0x4e, 0x4c, 0x4d, 0x59, 0x4a, 0x25, 0x15, 0x11, 0x25, 0x21, 0x1f, 0x25, 0x2f, 0x38, 0x3b, 0x3a, 0x3d, 0x3c, 0x3a, 0x35, 0x2c, 0x25, 0x26, 0x2b, 0x7b, 0x84, 0x89, 0x81, 0x73, 0x6a, 0x69, 0x6b, 0x65, 0x6c, 0x78, 0x7f, 0x76, 0x68, 0x67, 0x6f, 0x72, 0x6d, 0x66, 0x60, 0x5e, 0x60, 0x64, 0x67, 0x5e, 0x67, 0x77, 0x86, 0x8d, 0x86, 0x75, 0x67, 0x6a, 0x68, 0x69, 0x73, 0x7f, 0x83, 0x7c, 0x74, 0x78, 0x82, 0x82, 0x77, 0x70, 0x72, 0x6e, 0x63, 0x64, 0x67, 0x6b, 0x6f, 0x6d, 0x69, 0x67, 0x68, 0x73, 0x70, 0x6b, 0x66, 0x65, 0x69, 0x6f, 0x74, 0x75, 0x85, 0x98, 0xa1, 0x9a, 0x8c, 0x83, 0x81, 0x78, 0x79, 0x77, 0x72, 0x6e, 0x71, 0x7a, 0x83, 0x82, 0x85, 0x84, 0x7e, 0x79, 0x79, 0x7d, 0x80, 0x7d, 0x7e, 0x81, 0x86, 0x89, 0x84, 0x7b, 0x73, 0x72, 0x76, 0x7c, 0x81, 0x84, 0x88, 0x8c, 0x8f, 0x8b, 0x87, 0x83, 0x81, 0x82, 0x84, 0x86, 0x87, 0x89, 0x86, 0x80, 0x7a, 0x79, 0x7c, 0x7f, 0x80, 0x86, 0x8e, 0x93, 0x92, 0x94, 0x97, 0x92, 0x89, 0x87, 0x86, 0x87, 0x8b, 0x90, 0x91, 0x8d, 0x89, 0x7c, 0x7f, 0x84, 0x88, 0x8d, 0x8f, 0x8b, 0x86, 0x82, 0x7c, 0x77, 0x7a, 0x80, 0x85, 0x89, 0x8b, 0x7f, 0x7b, 0x78, 0x78, 0x77, 0x74, 0x71, 0x71, 0x72, 0x6b, 0x6a, 0x6b, 0x6c, 0x75, 0x7f, 0x81, 0x80, 0x77, 0x70, 0x6a, 0x63, 0x67, 0x6f, 0x70, 0x6f, 0x64, 0x6d, 0x6f, 0x69, 0x89, 0xb8, 0xc5, 0xc2, 0xc4, 0xc2, 0xb6, 0xaa, 0xa4, 0xa4, 0xa4, 0x9d, 0xa1, 0xaf, 0xbf, 0xc7, 0xc6, 0xc3, 0xc3, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc7, 0xc6, 0xc4, 0xc2, 0xc2, 0xc2, 0xc3, 0xc3, 0xc1, 0xc0, 0xbf, 0xbf, 0xbe, 0xbc, 0xb9, 0xb6, 0xb3, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb3, 0xb1, 0xa9, 0xa5, 0xa0, 0xa0, 0xa4, 0xa7, 0xa8, 0xa6, 0xab, 0xae, 0xb1, 0xb1, 0xae, 0xaa, 0xa9, 0xa9, 0xa5, 0x9c, 0x92, 0x89, 0x83, 0x85, 0x8f, 0x99, 0xa8, 0xaa, 0xca, 0xf0, 0xfb, 0xfb, 0xfb, 0xf8, 0xfd, 0xfd, 0xfe, 0xfd, 0xfd, 0xfc, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfc, 0xfc, 0xfb, 0xfc, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf6, 0xf4, 0xf2, 0xf2, 0xf2, 0xf5, 0xf5, 0xf5, 0xf6, 0xf7, 0xf8, 0xf7, 0xf6, 0xf5, 0xf5, 0xf4, 0xf3, 0xf2, 0xf1, 0xf0, 0xef, 0xed, 0xeb, 0xea, 0xea, 0xea, 0xe9, 0xe7, 0xe4, 0xe6, 0xe3, 0xe0, 0xdd, 0xdb, 0xda, 0xda, 0xda, 0xdd, 0xdd, 0xdf, 0xe0, 0xe2, 0xe3, 0xe3, 0xe4, 0xe6, 0xe6, 0xe5, 0xe4, 0xe3, 0xe2, 0xe1, 0xe0, 0xe3, 0xe2, 0xe0, 0xde, 0xdc, 0xda, 0xd7, 0xd5, 0xd6, 0xd5, 0xd3, 0xd2, 0xd1, 0xce, 0xca, 0xc7, 0xc4, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xc9, 0xca, 0xc9, 0xc7, 0xc4, 0xc1, 0xbe, 0xbd, 0xbc, 0xbd, 0xb7, 0xb2, 0xb5, 0xba, 0xbe, 0xc0, 0xc1, 0xc4, 0xc6, 0xc6, 0xc5, 0xc1, 0xba, 0xb3, 0xae, 0xae, 0xaf, 0xb2, 0xb6, 0xb9, 0xbb, 0xbf, 0xc3, 0xc7, 0xc2, 0xaa, 0x85, 0x6d, 0x69, 0x68, 0x64, 0x68, 0x67, 0x62, 0x60, 0x64, 0x68, 0x63, 0x5a, 0x60, 0x65, 0x69, 0x6a, 0x69, 0x69, 0x67, 0x65, 0x70, 0x7f, 0x8f, 0x96, 0x97, 0x98, 0x9a, 0x9c, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9b, 0x9b, 0x9a, 0x9d, 0x9c, 0x9b, 0x9d, 0x9e, 0x9e, 0x9c, 0x9a, 0x97, 0x89, 0x7a, 0x71, 0x6e, 0x6a, 0x66, 0x64, 0x61, 0x60, 0x5f, 0x5f, 0x5e, 0x5d, 0x5a, 0x58, 0x54, 0x51, 0x4c, 0x44, 0x3e, 0x38, 0x30, 0x29, 0x1f, 0x20, 0x20, 0x1d, 0x1a, 0x1b, 0x22, 0x27, 0x33, 0x31, 0x34, 0x3f, 0x4e, 0x5a, 0x61, 0x65, 0x67, 0x72, 0x82, 0x8b, 0x85, 0x7b, 0x7b, 0x82, 0x72, 0x75, 0x77, 0x72, 0x63, 0x54, 0x4b, 0x4b, 0x5a, 0x54, 0x51, 0x50, 0x4b, 0x47, 0x50, 0x5d, 0x5d, 0x5f, 0x5d, 0x52, 0x3f, 0x2e, 0x25, 0x22, 0x21, 0x29, 0x35, 0x3d, 0x39, 0x2e, 0x24, 0x20, 0x2d, 0x34, 0x3c, 0x3f, 0x3c, 0x38, 0x36, 0x36, 0x2b, 0x3a, 0x40, 0x3e, 0x40, 0x3e, 0x36, 0x31, 0x36, 0x44, 0x49, 0x41, 0x41, 0x50, 0x5c, 0x5d, 0x5f, 0x64, 0x59, 0x4d, 0x4c, 0x47, 0x46, 0x52, 0x5d, 0x69, 0x78, 0x84, 0x80, 0x65, 0x4b, 0x44, 0x50, 0x5d, 0x50, 0x37, 0x22, 0x1f, 0x29, 0x25, 0x1c, 0x1b, 0x19, 0x16, 0x16, 0x1d, 0x28, 0x30, 0x33, 0x31, 0x31, 0x31, 0x2d, 0x28, 0x2b, 0x33, 0x6b, 0x78, 0x82, 0x81, 0x78, 0x71, 0x6d, 0x6c, 0x67, 0x6a, 0x6e, 0x6f, 0x6c, 0x69, 0x6e, 0x75, 0x6a, 0x64, 0x5d, 0x5a, 0x5e, 0x63, 0x68, 0x69, 0x78, 0x71, 0x68, 0x60, 0x5c, 0x5b, 0x5b, 0x5c, 0x62, 0x63, 0x67, 0x70, 0x7a, 0x80, 0x80, 0x7e, 0x7c, 0x7f, 0x7b, 0x72, 0x71, 0x78, 0x7a, 0x76, 0x6f, 0x6e, 0x6d, 0x6b, 0x65, 0x62, 0x65, 0x6b, 0x75, 0x6c, 0x61, 0x60, 0x69, 0x76, 0x81, 0x86, 0x8e, 0x89, 0x80, 0x75, 0x6a, 0x67, 0x6f, 0x79, 0x83, 0x7e, 0x79, 0x7a, 0x80, 0x83, 0x80, 0x7b, 0x86, 0x8a, 0x8a, 0x87, 0x84, 0x84, 0x85, 0x85, 0x82, 0x82, 0x82, 0x85, 0x88, 0x88, 0x83, 0x7e, 0x78, 0x7b, 0x7e, 0x81, 0x83, 0x86, 0x8c, 0x91, 0x85, 0x83, 0x83, 0x86, 0x8a, 0x8b, 0x89, 0x85, 0x85, 0x87, 0x87, 0x85, 0x84, 0x83, 0x7d, 0x76, 0x7f, 0x87, 0x8d, 0x90, 0x95, 0x98, 0x91, 0x85, 0x7e, 0x80, 0x83, 0x87, 0x8a, 0x8b, 0x8a, 0x87, 0x89, 0x87, 0x83, 0x84, 0x8a, 0x8e, 0x8a, 0x83, 0x78, 0x74, 0x74, 0x79, 0x80, 0x84, 0x89, 0x8d, 0x8e, 0x8b, 0x86, 0x80, 0x77, 0x72, 0x73, 0x78, 0x71, 0x6b, 0x6d, 0x76, 0x80, 0x8d, 0x94, 0x91, 0x78, 0x6b, 0x6b, 0x72, 0x76, 0x7b, 0x75, 0x64, 0x6a, 0x66, 0x6a, 0x6c, 0x77, 0x9e, 0xc2, 0xc6, 0xc2, 0xbe, 0xb5, 0xab, 0xa2, 0x9f, 0xa0, 0xa1, 0x9c, 0xa7, 0xb7, 0xc2, 0xc6, 0xc5, 0xc4, 0xc3, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc3, 0xc2, 0xc2, 0xbe, 0xbd, 0xbb, 0xbb, 0xbb, 0xba, 0xb8, 0xb7, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb5, 0xaf, 0xa8, 0xa6, 0xa7, 0xa9, 0xa8, 0xa6, 0xac, 0xac, 0xad, 0xae, 0xad, 0xab, 0xa8, 0xa5, 0xa6, 0xa1, 0x9c, 0x93, 0x86, 0x84, 0x8b, 0x8f, 0xa4, 0xa3, 0xb2, 0xd3, 0xf0, 0xf6, 0xf6, 0xfa, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfe, 0xfd, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfd, 0xfd, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf5, 0xf3, 0xf1, 0xf3, 0xf3, 0xf3, 0xf5, 0xf7, 0xf8, 0xf7, 0xf7, 0xf4, 0xf4, 0xf4, 0xf4, 0xf5, 0xf5, 0xf6, 0xf6, 0xf1, 0xf0, 0xef, 0xee, 0xec, 0xeb, 0xea, 0xe9, 0xe6, 0xe5, 0xe3, 0xe0, 0xde, 0xdc, 0xdb, 0xdb, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xd9, 0xd8, 0xd7, 0xd7, 0xd8, 0xd9, 0xda, 0xda, 0xda, 0xd9, 0xd9, 0xdb, 0xd9, 0xd6, 0xd5, 0xd4, 0xd3, 0xd2, 0xd1, 0xd4, 0xd4, 0xd3, 0xd3, 0xd1, 0xce, 0xca, 0xc7, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcb, 0xcc, 0xca, 0xc6, 0xc3, 0xc0, 0xbe, 0xbc, 0xbb, 0xbb, 0xb7, 0xb5, 0xb8, 0xbd, 0xbf, 0xc1, 0xc2, 0xc6, 0xc6, 0xc5, 0xc3, 0xbe, 0xb6, 0xaf, 0xab, 0xad, 0xae, 0xb2, 0xb7, 0xba, 0xbb, 0xbe, 0xc2, 0xc4, 0xc2, 0xae, 0x8c, 0x71, 0x6b, 0x6c, 0x6c, 0x64, 0x62, 0x5f, 0x61, 0x6a, 0x72, 0x6f, 0x66, 0x50, 0x58, 0x60, 0x62, 0x66, 0x6d, 0x75, 0x79, 0x86, 0x8f, 0x95, 0x96, 0x94, 0x95, 0x97, 0x97, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x99, 0x99, 0x98, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9f, 0x97, 0x8e, 0x87, 0x7f, 0x75, 0x6e, 0x6a, 0x65, 0x62, 0x5f, 0x5d, 0x5b, 0x5a, 0x58, 0x56, 0x50, 0x4f, 0x4a, 0x43, 0x3d, 0x36, 0x2d, 0x24, 0x21, 0x21, 0x1e, 0x16, 0x11, 0x14, 0x1d, 0x25, 0x32, 0x2f, 0x2f, 0x30, 0x2d, 0x2f, 0x43, 0x5a, 0x73, 0x75, 0x79, 0x7d, 0x7e, 0x79, 0x6e, 0x65, 0x6a, 0x65, 0x5b, 0x4e, 0x3f, 0x38, 0x40, 0x4b, 0x2d, 0x43, 0x5c, 0x66, 0x5d, 0x4e, 0x48, 0x48, 0x55, 0x57, 0x58, 0x55, 0x4d, 0x3f, 0x2c, 0x1e, 0x1f, 0x26, 0x2d, 0x2b, 0x22, 0x1b, 0x20, 0x29, 0x37, 0x47, 0x55, 0x53, 0x44, 0x37, 0x35, 0x3a, 0x3f, 0x3a, 0x32, 0x33, 0x3c, 0x3d, 0x3a, 0x3e, 0x45, 0x4c, 0x49, 0x3f, 0x3f, 0x4c, 0x53, 0x4f, 0x4b, 0x58, 0x55, 0x4f, 0x52, 0x4a, 0x46, 0x52, 0x54, 0x49, 0x3d, 0x42, 0x4a, 0x43, 0x37, 0x34, 0x3c, 0x2c, 0x19, 0x20, 0x24, 0x1c, 0x1b, 0x17, 0x0c, 0x10, 0x14, 0x13, 0x10, 0x12, 0x1b, 0x23, 0x26, 0x22, 0x20, 0x20, 0x1c, 0x17, 0x1b, 0x23, 0x7c, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x76, 0x72, 0x62, 0x5f, 0x5e, 0x66, 0x71, 0x76, 0x73, 0x6d, 0x5f, 0x5f, 0x63, 0x6d, 0x76, 0x77, 0x70, 0x68, 0x62, 0x62, 0x61, 0x5f, 0x5d, 0x60, 0x65, 0x69, 0x5f, 0x63, 0x69, 0x70, 0x77, 0x7f, 0x86, 0x8b, 0x8c, 0x89, 0x84, 0x81, 0x7f, 0x7b, 0x75, 0x71, 0x7d, 0x77, 0x70, 0x6a, 0x65, 0x64, 0x6b, 0x75, 0x73, 0x6b, 0x66, 0x6e, 0x7e, 0x89, 0x89, 0x85, 0x86, 0x7d, 0x73, 0x71, 0x73, 0x76, 0x78, 0x7b, 0x75, 0x80, 0x8b, 0x8b, 0x85, 0x81, 0x82, 0x84, 0x84, 0x87, 0x88, 0x85, 0x85, 0x87, 0x88, 0x88, 0x86, 0x84, 0x83, 0x83, 0x85, 0x87, 0x85, 0x82, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x82, 0x88, 0x8d, 0x88, 0x82, 0x7c, 0x7d, 0x83, 0x88, 0x8a, 0x89, 0x88, 0x87, 0x82, 0x7e, 0x7f, 0x82, 0x80, 0x7b, 0x7d, 0x84, 0x8b, 0x91, 0x99, 0x9d, 0x93, 0x83, 0x83, 0x86, 0x8a, 0x8c, 0x8d, 0x8e, 0x8e, 0x8c, 0x89, 0x87, 0x86, 0x8b, 0x93, 0x95, 0x88, 0x79, 0x73, 0x73, 0x79, 0x82, 0x86, 0x86, 0x88, 0x8c, 0x93, 0x92, 0x8d, 0x83, 0x76, 0x6e, 0x71, 0x79, 0x75, 0x6d, 0x70, 0x7d, 0x89, 0x91, 0x8d, 0x80, 0x6f, 0x64, 0x65, 0x6a, 0x6c, 0x76, 0x7a, 0x70, 0x66, 0x6c, 0x68, 0x69, 0x85, 0xad, 0xc3, 0xc6, 0xc1, 0xb3, 0xa4, 0x9e, 0x9c, 0x9b, 0x9d, 0xa1, 0xa5, 0xb3, 0xc0, 0xc5, 0xc4, 0xc4, 0xc6, 0xc7, 0xc6, 0xc6, 0xc6, 0xc5, 0xc4, 0xc4, 0xc3, 0xc3, 0xbf, 0xc1, 0xc3, 0xc5, 0xc6, 0xc5, 0xc3, 0xc2, 0xc1, 0xbf, 0xbc, 0xbb, 0xba, 0xba, 0xb9, 0xb9, 0xb8, 0xb8, 0xb8, 0xb6, 0xb3, 0xb3, 0xb5, 0xb8, 0xb9, 0xb9, 0xb6, 0xaf, 0xa8, 0xa6, 0xa9, 0xad, 0xaf, 0xab, 0xa9, 0xaa, 0xad, 0xad, 0xa8, 0xa3, 0xa3, 0xa0, 0x9d, 0x94, 0x86, 0x84, 0x8a, 0x8c, 0x92, 0xa7, 0xaa, 0xb6, 0xdc, 0xf0, 0xf2, 0xfd, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfd, 0xfb, 0xf9, 0xf8, 0xf9, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xf9, 0xf8, 0xf9, 0xf8, 0xf7, 0xf8, 0xf9, 0xf9, 0xf6, 0xf4, 0xf5, 0xf5, 0xf5, 0xf6, 0xf8, 0xf9, 0xf8, 0xf7, 0xf9, 0xf9, 0xf8, 0xf6, 0xf6, 0xf5, 0xf5, 0xf5, 0xf7, 0xf6, 0xf4, 0xf0, 0xed, 0xeb, 0xea, 0xeb, 0xeb, 0xea, 0xe8, 0xe6, 0xe2, 0xde, 0xdb, 0xd9, 0xd7, 0xd6, 0xd6, 0xd5, 0xd4, 0xd2, 0xd1, 0xd0, 0xcb, 0xcd, 0xcf, 0xd2, 0xd4, 0xd5, 0xd6, 0xd7, 0xd3, 0xd1, 0xcf, 0xcf, 0xd0, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd1, 0xd0, 0xcf, 0xcb, 0xc7, 0xc3, 0xc4, 0xc4, 0xc6, 0xc7, 0xc9, 0xca, 0xca, 0xcb, 0xca, 0xc8, 0xc5, 0xc2, 0xc0, 0xbe, 0xbc, 0xbb, 0xbb, 0xb8, 0xb7, 0xbb, 0xbf, 0xc0, 0xc2, 0xc3, 0xc7, 0xc7, 0xc6, 0xc2, 0xbc, 0xb5, 0xae, 0xaa, 0xad, 0xae, 0xb3, 0xb8, 0xbb, 0xbb, 0xbe, 0xc1, 0xc2, 0xc1, 0xb0, 0x90, 0x76, 0x6f, 0x74, 0x77, 0x68, 0x68, 0x68, 0x69, 0x69, 0x68, 0x64, 0x61, 0x64, 0x6c, 0x71, 0x6e, 0x6c, 0x72, 0x7c, 0x83, 0x92, 0x96, 0x98, 0x97, 0x98, 0x9b, 0x9a, 0x96, 0x9a, 0x99, 0x97, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x97, 0x99, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x98, 0x97, 0x97, 0x94, 0x8a, 0x7c, 0x72, 0x6e, 0x6b, 0x67, 0x61, 0x5c, 0x58, 0x56, 0x54, 0x53, 0x4a, 0x49, 0x45, 0x3f, 0x3a, 0x34, 0x2a, 0x22, 0x20, 0x20, 0x1d, 0x1a, 0x1e, 0x2e, 0x42, 0x50, 0x43, 0x36, 0x2e, 0x2f, 0x2c, 0x29, 0x37, 0x4c, 0x5a, 0x6a, 0x75, 0x74, 0x71, 0x71, 0x6d, 0x66, 0x5f, 0x4c, 0x3d, 0x41, 0x50, 0x5b, 0x5d, 0x5c, 0x81, 0x7e, 0x75, 0x6c, 0x6c, 0x71, 0x70, 0x69, 0x61, 0x60, 0x58, 0x4d, 0x47, 0x45, 0x3c, 0x30, 0x2a, 0x26, 0x23, 0x24, 0x26, 0x2a, 0x2f, 0x34, 0x3c, 0x44, 0x4a, 0x47, 0x3d, 0x35, 0x35, 0x39, 0x3d, 0x36, 0x34, 0x3e, 0x43, 0x34, 0x2b, 0x33, 0x3e, 0x3b, 0x3b, 0x43, 0x4b, 0x4e, 0x4c, 0x4a, 0x49, 0x57, 0x52, 0x4a, 0x4c, 0x43, 0x3e, 0x4c, 0x5e, 0x5e, 0x50, 0x41, 0x3e, 0x3b, 0x31, 0x2a, 0x19, 0x1e, 0x19, 0x1f, 0x23, 0x21, 0x1e, 0x11, 0x0f, 0x12, 0x18, 0x22, 0x31, 0x43, 0x54, 0x5e, 0x53, 0x4a, 0x43, 0x3e, 0x38, 0x32, 0x36, 0x3e, 0x69, 0x6f, 0x74, 0x72, 0x6a, 0x65, 0x69, 0x70, 0x68, 0x59, 0x58, 0x67, 0x73, 0x76, 0x72, 0x68, 0x55, 0x54, 0x56, 0x5d, 0x68, 0x6e, 0x6d, 0x6a, 0x6e, 0x6a, 0x6f, 0x74, 0x72, 0x71, 0x73, 0x70, 0x6c, 0x6b, 0x6b, 0x6e, 0x74, 0x7c, 0x85, 0x8a, 0x8f, 0x92, 0x91, 0x88, 0x7c, 0x75, 0x76, 0x7b, 0x7b, 0x72, 0x6a, 0x69, 0x68, 0x67, 0x6d, 0x76, 0x76, 0x7a, 0x7b, 0x77, 0x77, 0x7a, 0x78, 0x73, 0x79, 0x70, 0x69, 0x6a, 0x72, 0x79, 0x7c, 0x7d, 0x86, 0x83, 0x82, 0x84, 0x84, 0x83, 0x84, 0x86, 0x91, 0x8f, 0x8a, 0x82, 0x7b, 0x78, 0x79, 0x7c, 0x81, 0x7f, 0x7b, 0x79, 0x7e, 0x85, 0x85, 0x7f, 0x7b, 0x7a, 0x78, 0x75, 0x78, 0x80, 0x87, 0x89, 0x81, 0x7e, 0x80, 0x87, 0x88, 0x84, 0x83, 0x87, 0x87, 0x84, 0x7e, 0x7b, 0x7f, 0x84, 0x82, 0x7c, 0x7a, 0x7e, 0x83, 0x89, 0x94, 0x9d, 0x97, 0x8b, 0x87, 0x89, 0x8a, 0x89, 0x83, 0x7f, 0x83, 0x89, 0x87, 0x82, 0x81, 0x89, 0x91, 0x92, 0x8d, 0x89, 0x86, 0x8c, 0x8b, 0x85, 0x86, 0x90, 0x95, 0x93, 0x9c, 0x99, 0x8f, 0x81, 0x75, 0x71, 0x73, 0x74, 0x6f, 0x6c, 0x6c, 0x74, 0x7f, 0x88, 0x8b, 0x8b, 0x6f, 0x67, 0x61, 0x63, 0x69, 0x70, 0x74, 0x75, 0x6c, 0x6a, 0x6a, 0x77, 0x97, 0xb8, 0xc1, 0xbb, 0xaf, 0xa9, 0xa3, 0xa1, 0xa0, 0x9f, 0x9f, 0xa1, 0xaa, 0xb7, 0xc2, 0xc4, 0xc4, 0xc6, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0xc5, 0xc4, 0xc4, 0xc5, 0xc7, 0xc2, 0xc1, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xbd, 0xbc, 0xba, 0xb9, 0xb8, 0xb7, 0xb6, 0xb6, 0xba, 0xba, 0xba, 0xba, 0xba, 0xb8, 0xb7, 0xb6, 0xb6, 0xb4, 0xb2, 0xb0, 0xae, 0xac, 0xa8, 0xa6, 0xaa, 0xae, 0xb0, 0xae, 0xab, 0xaa, 0xa9, 0xa7, 0xa5, 0x9f, 0x99, 0x94, 0x8c, 0x85, 0x85, 0x89, 0x9d, 0xa0, 0xa9, 0xb1, 0xc6, 0xed, 0xff, 0xf4, 0xf9, 0xff, 0xfd, 0xfb, 0xfe, 0xfe, 0xf9, 0xf9, 0xf9, 0xf9, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfe, 0xfe, 0xfd, 0xfb, 0xf9, 0xf7, 0xf6, 0xfa, 0xfb, 0xfc, 0xfe, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfd, 0xff, 0xff, 0xfd, 0xfb, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xf8, 0xf5, 0xf3, 0xf1, 0xf2, 0xf4, 0xf6, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf5, 0xf3, 0xf1, 0xf0, 0xee, 0xec, 0xeb, 0xe9, 0xe7, 0xe6, 0xe5, 0xe4, 0xe2, 0xe0, 0xde, 0xdb, 0xd7, 0xd2, 0xcd, 0xca, 0xc9, 0xca, 0xcb, 0xca, 0xc7, 0xc4, 0xc2, 0xc4, 0xc8, 0xcd, 0xd0, 0xd1, 0xd0, 0xcf, 0xd0, 0xd1, 0xd1, 0xd0, 0xcf, 0xcc, 0xcc, 0xcb, 0xca, 0xc8, 0xc6, 0xc5, 0xc4, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xca, 0xc9, 0xc9, 0xca, 0xc7, 0xc3, 0xc1, 0xc0, 0xc0, 0xc0, 0xbf, 0xbc, 0xb8, 0xb7, 0xba, 0xbc, 0xbd, 0xbf, 0xc1, 0xc7, 0xc8, 0xc7, 0xc3, 0xbe, 0xb9, 0xb1, 0xaa, 0xac, 0xaf, 0xb4, 0xb7, 0xb9, 0xba, 0xbc, 0xbd, 0xbe, 0xc6, 0xae, 0x9a, 0x7e, 0x8e, 0x9c, 0x9a, 0x88, 0x75, 0x65, 0x66, 0x6e, 0x72, 0x70, 0x6e, 0x67, 0x6c, 0x6b, 0x66, 0x69, 0x78, 0x88, 0x8f, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x91, 0x92, 0x92, 0x93, 0x94, 0x95, 0x95, 0x96, 0x92, 0x92, 0x92, 0x90, 0x8c, 0x86, 0x7e, 0x79, 0x6d, 0x68, 0x61, 0x5d, 0x5b, 0x58, 0x53, 0x4f, 0x48, 0x46, 0x42, 0x3d, 0x35, 0x2d, 0x25, 0x21, 0x1c, 0x1e, 0x1c, 0x1c, 0x2b, 0x44, 0x53, 0x54, 0x48, 0x3e, 0x36, 0x34, 0x31, 0x2e, 0x34, 0x3d, 0x58, 0x6d, 0x7c, 0x7b, 0x79, 0x7a, 0x72, 0x64, 0x4b, 0x46, 0x53, 0x6b, 0x70, 0x64, 0x68, 0x7a, 0x65, 0x5b, 0x55, 0x5b, 0x60, 0x60, 0x5f, 0x60, 0x64, 0x6d, 0x75, 0x78, 0x7d, 0x82, 0x7f, 0x77, 0x75, 0x71, 0x6c, 0x6a, 0x6a, 0x68, 0x66, 0x64, 0x5d, 0x50, 0x3e, 0x37, 0x3b, 0x39, 0x36, 0x39, 0x31, 0x2a, 0x26, 0x2a, 0x2a, 0x20, 0x20, 0x2d, 0x31, 0x35, 0x39, 0x41, 0x47, 0x43, 0x45, 0x51, 0x55, 0x4c, 0x4c, 0x4f, 0x49, 0x45, 0x47, 0x4a, 0x51, 0x60, 0x64, 0x5a, 0x57, 0x57, 0x43, 0x28, 0x14, 0x13, 0x1a, 0x25, 0x28, 0x20, 0x14, 0x0d, 0x1c, 0x56, 0x7b, 0x65, 0x3f, 0x31, 0x2e, 0x27, 0x1b, 0x20, 0x21, 0x1c, 0x1a, 0x22, 0x2f, 0x39, 0x6a, 0x6b, 0x6d, 0x6c, 0x6a, 0x69, 0x6b, 0x6e, 0x71, 0x64, 0x5c, 0x5d, 0x65, 0x74, 0x7c, 0x78, 0x67, 0x6e, 0x76, 0x7c, 0x7e, 0x7f, 0x80, 0x81, 0x76, 0x6b, 0x6a, 0x6f, 0x71, 0x70, 0x6c, 0x62, 0x6a, 0x6c, 0x6d, 0x6e, 0x70, 0x75, 0x7d, 0x83, 0x86, 0x8b, 0x8e, 0x89, 0x7f, 0x76, 0x72, 0x73, 0x6f, 0x64, 0x5c, 0x5e, 0x63, 0x6a, 0x75, 0x7f, 0x7e, 0x7c, 0x76, 0x73, 0x75, 0x79, 0x76, 0x6f, 0x74, 0x6f, 0x6b, 0x6d, 0x73, 0x78, 0x7b, 0x7c, 0x80, 0x7d, 0x7a, 0x7b, 0x80, 0x86, 0x8c, 0x8f, 0x8e, 0x8c, 0x87, 0x7f, 0x77, 0x73, 0x73, 0x75, 0x7f, 0x85, 0x86, 0x7e, 0x79, 0x7e, 0x82, 0x82, 0x7a, 0x7a, 0x77, 0x73, 0x73, 0x75, 0x77, 0x76, 0x78, 0x7c, 0x81, 0x82, 0x7a, 0x73, 0x78, 0x83, 0x85, 0x80, 0x78, 0x74, 0x78, 0x80, 0x81, 0x7e, 0x75, 0x77, 0x78, 0x7b, 0x85, 0x8f, 0x8f, 0x88, 0x87, 0x88, 0x89, 0x87, 0x80, 0x79, 0x79, 0x7c, 0x84, 0x83, 0x85, 0x8b, 0x8f, 0x8e, 0x8b, 0x8a, 0x84, 0x89, 0x89, 0x85, 0x8a, 0x98, 0xa1, 0xa0, 0x97, 0x96, 0x8f, 0x83, 0x7a, 0x77, 0x77, 0x76, 0x72, 0x6f, 0x68, 0x68, 0x7a, 0x8d, 0x86, 0x72, 0x6b, 0x65, 0x62, 0x66, 0x6d, 0x70, 0x6d, 0x68, 0x66, 0x68, 0x6b, 0x7f, 0xa6, 0xc6, 0xc4, 0xb4, 0xa7, 0xa4, 0xa1, 0xa2, 0xa2, 0xa1, 0xa3, 0xa6, 0xaf, 0xba, 0xc4, 0xc6, 0xc6, 0xc7, 0xc6, 0xc2, 0xbd, 0xbf, 0xc1, 0xc2, 0xc2, 0xc1, 0xc2, 0xc3, 0xc5, 0xc4, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xbf, 0xc1, 0xc0, 0xbe, 0xbc, 0xba, 0xb8, 0xb7, 0xb7, 0xbb, 0xba, 0xb8, 0xb7, 0xb5, 0xb5, 0xb4, 0xb4, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb3, 0xb0, 0xae, 0xaa, 0xad, 0xae, 0xac, 0xaa, 0xab, 0xab, 0xaa, 0xa6, 0xa1, 0x9c, 0x98, 0x92, 0x8b, 0x88, 0x89, 0x9a, 0xa2, 0xac, 0xb1, 0xbe, 0xdb, 0xf4, 0xfa, 0xfa, 0xff, 0xfe, 0xfd, 0xff, 0xfc, 0xf8, 0xfa, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfe, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfc, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xfa, 0xfb, 0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf4, 0xf4, 0xf5, 0xf5, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf6, 0xf3, 0xf2, 0xf2, 0xf1, 0xf0, 0xef, 0xec, 0xea, 0xe8, 0xe6, 0xe5, 0xe2, 0xdf, 0xdd, 0xd9, 0xd7, 0xd2, 0xcf, 0xcc, 0xcc, 0xcd, 0xcd, 0xcf, 0xcd, 0xca, 0xc8, 0xc8, 0xc9, 0xcc, 0xce, 0xce, 0xcd, 0xcc, 0xcd, 0xcd, 0xce, 0xcd, 0xcc, 0xca, 0xc8, 0xc6, 0xc4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc9, 0xc7, 0xc4, 0xc2, 0xc1, 0xc1, 0xc1, 0xc0, 0xbe, 0xba, 0xb9, 0xbb, 0xbd, 0xbd, 0xbf, 0xc1, 0xc6, 0xc7, 0xc7, 0xc3, 0xc0, 0xbb, 0xb4, 0xad, 0xae, 0xb1, 0xb4, 0xb7, 0xb9, 0xbb, 0xbd, 0xbe, 0xbc, 0xc5, 0xb5, 0xa0, 0x76, 0x72, 0x84, 0x91, 0x95, 0x84, 0x71, 0x68, 0x68, 0x6a, 0x6d, 0x6f, 0x6c, 0x68, 0x67, 0x71, 0x80, 0x8d, 0x93, 0x96, 0x96, 0x96, 0x96, 0x97, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x8e, 0x8d, 0x8d, 0x8c, 0x89, 0x84, 0x7e, 0x79, 0x73, 0x6d, 0x66, 0x60, 0x5b, 0x56, 0x50, 0x4b, 0x46, 0x43, 0x3e, 0x38, 0x32, 0x2a, 0x23, 0x1f, 0x25, 0x21, 0x1b, 0x1e, 0x33, 0x4c, 0x55, 0x50, 0x47, 0x45, 0x43, 0x3d, 0x34, 0x2c, 0x2d, 0x32, 0x4d, 0x61, 0x71, 0x73, 0x6e, 0x67, 0x5a, 0x4c, 0x51, 0x5c, 0x5b, 0x4b, 0x43, 0x4c, 0x59, 0x5e, 0x4c, 0x43, 0x3a, 0x37, 0x39, 0x41, 0x54, 0x67, 0x87, 0x88, 0x8c, 0x92, 0x97, 0x97, 0x93, 0x90, 0x8f, 0x91, 0x8f, 0x8c, 0x8b, 0x8b, 0x89, 0x84, 0x7c, 0x6e, 0x57, 0x49, 0x49, 0x48, 0x47, 0x4b, 0x46, 0x3d, 0x33, 0x29, 0x19, 0x0d, 0x11, 0x1e, 0x1f, 0x24, 0x2f, 0x43, 0x52, 0x51, 0x50, 0x59, 0x51, 0x50, 0x56, 0x59, 0x55, 0x55, 0x5b, 0x5d, 0x5d, 0x50, 0x4b, 0x58, 0x64, 0x5e, 0x4b, 0x3b, 0x37, 0x20, 0x11, 0x13, 0x15, 0x11, 0x18, 0x26, 0x6f, 0x50, 0x2b, 0x15, 0x10, 0x13, 0x15, 0x15, 0x16, 0x1c, 0x22, 0x26, 0x29, 0x27, 0x21, 0x1a, 0x6f, 0x6d, 0x6d, 0x70, 0x77, 0x7b, 0x7c, 0x7b, 0x69, 0x61, 0x5a, 0x56, 0x61, 0x7d, 0x94, 0x96, 0x93, 0x95, 0x95, 0x8e, 0x83, 0x78, 0x71, 0x6f, 0x6c, 0x63, 0x62, 0x6a, 0x6e, 0x70, 0x6f, 0x68, 0x63, 0x6c, 0x76, 0x7b, 0x7c, 0x7d, 0x81, 0x84, 0x7e, 0x83, 0x88, 0x87, 0x81, 0x7b, 0x77, 0x75, 0x6d, 0x66, 0x64, 0x6d, 0x79, 0x80, 0x86, 0x8a, 0x7f, 0x78, 0x72, 0x72, 0x79, 0x7d, 0x77, 0x6e, 0x6e, 0x6e, 0x6d, 0x6f, 0x72, 0x75, 0x76, 0x77, 0x75, 0x75, 0x73, 0x72, 0x7a, 0x86, 0x8b, 0x8a, 0x88, 0x87, 0x83, 0x7c, 0x75, 0x71, 0x70, 0x71, 0x7f, 0x84, 0x84, 0x82, 0x87, 0x8f, 0x8d, 0x83, 0x84, 0x85, 0x84, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x76, 0x7a, 0x7e, 0x7e, 0x76, 0x70, 0x76, 0x81, 0x81, 0x7c, 0x74, 0x71, 0x75, 0x7c, 0x7e, 0x7d, 0x76, 0x78, 0x79, 0x79, 0x7f, 0x86, 0x88, 0x84, 0x7d, 0x7f, 0x82, 0x83, 0x7f, 0x7a, 0x78, 0x79, 0x7d, 0x80, 0x86, 0x8b, 0x8c, 0x8a, 0x8b, 0x8e, 0x91, 0x97, 0x98, 0x96, 0x99, 0xa1, 0xa2, 0x9d, 0x92, 0x91, 0x8c, 0x85, 0x80, 0x7f, 0x7e, 0x7c, 0x71, 0x6c, 0x64, 0x66, 0x7b, 0x8e, 0x85, 0x70, 0x66, 0x67, 0x68, 0x6b, 0x6e, 0x70, 0x6f, 0x6e, 0x6a, 0x76, 0x7e, 0x8a, 0xa5, 0xb8, 0xb4, 0xa7, 0xa5, 0xa3, 0xa1, 0xa0, 0x9d, 0x9c, 0x9e, 0xa3, 0xb5, 0xbe, 0xc4, 0xc5, 0xc5, 0xc6, 0xc3, 0xbe, 0xbd, 0xbf, 0xc2, 0xc4, 0xc3, 0xc3, 0xc2, 0xc2, 0xc6, 0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc0, 0xbd, 0xc0, 0xbf, 0xbd, 0xbb, 0xb9, 0xb8, 0xb8, 0xb8, 0xb7, 0xb5, 0xb2, 0xb0, 0xad, 0xac, 0xac, 0xac, 0xaf, 0xb0, 0xb1, 0xb4, 0xb7, 0xb7, 0xb6, 0xb4, 0xaf, 0xaf, 0xae, 0xac, 0xad, 0xae, 0xad, 0xab, 0xaa, 0xa6, 0xa2, 0x9f, 0x9a, 0x91, 0x89, 0x85, 0x90, 0x9e, 0xa9, 0xae, 0xb5, 0xc3, 0xe0, 0xfe, 0xf9, 0xfd, 0xfc, 0xfc, 0xfe, 0xfa, 0xf7, 0xfb, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xf9, 0xf8, 0xf8, 0xf9, 0xfa, 0xfb, 0xf7, 0xf8, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xff, 0xff, 0xfe, 0xfd, 0xfd, 0xfc, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf7, 0xf7, 0xf6, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf5, 0xf5, 0xf4, 0xf2, 0xf2, 0xf2, 0xf2, 0xf1, 0xf1, 0xef, 0xed, 0xea, 0xe8, 0xe6, 0xe3, 0xdf, 0xdd, 0xdd, 0xdb, 0xd9, 0xd7, 0xd6, 0xd6, 0xd6, 0xd7, 0xd6, 0xd5, 0xd3, 0xd0, 0xcf, 0xce, 0xcd, 0xce, 0xce, 0xcd, 0xcc, 0xcc, 0xcd, 0xcd, 0xcc, 0xcb, 0xc8, 0xc6, 0xc3, 0xc0, 0xbf, 0xc1, 0xc3, 0xc5, 0xca, 0xca, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xca, 0xc9, 0xc7, 0xc5, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xbf, 0xbc, 0xba, 0xbc, 0xbd, 0xbe, 0xbe, 0xc0, 0xc4, 0xc5, 0xc5, 0xc2, 0xc0, 0xbc, 0xb6, 0xb0, 0xb0, 0xb2, 0xb5, 0xb7, 0xb9, 0xbb, 0xbd, 0xbf, 0xbe, 0xc3, 0xb8, 0xa6, 0x74, 0x5e, 0x6e, 0x84, 0x93, 0x8c, 0x7d, 0x6e, 0x68, 0x6b, 0x73, 0x78, 0x6d, 0x67, 0x6c, 0x7f, 0x91, 0x97, 0x99, 0x9b, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b, 0x88, 0x87, 0x87, 0x86, 0x84, 0x81, 0x7d, 0x7a, 0x77, 0x71, 0x69, 0x62, 0x5c, 0x56, 0x4e, 0x49, 0x43, 0x3f, 0x39, 0x33, 0x2d, 0x27, 0x21, 0x1e, 0x1b, 0x18, 0x14, 0x19, 0x2e, 0x47, 0x4f, 0x4a, 0x49, 0x4d, 0x4a, 0x3d, 0x2f, 0x2a, 0x2d, 0x31, 0x43, 0x4d, 0x58, 0x5c, 0x5a, 0x56, 0x51, 0x4e, 0x58, 0x5a, 0x49, 0x36, 0x46, 0x68, 0x6e, 0x59, 0x43, 0x3b, 0x3c, 0x51, 0x6c, 0x7d, 0x84, 0x86, 0x7b, 0x7b, 0x80, 0x86, 0x80, 0x70, 0x66, 0x65, 0x76, 0x7e, 0x86, 0x88, 0x8a, 0x8a, 0x84, 0x7c, 0x7a, 0x74, 0x65, 0x59, 0x5c, 0x61, 0x63, 0x67, 0x6e, 0x60, 0x5f, 0x70, 0x84, 0x8f, 0x89, 0x7b, 0x79, 0x7e, 0x6d, 0x59, 0x65, 0x81, 0x89, 0x82, 0x77, 0x66, 0x51, 0x3c, 0x2f, 0x3a, 0x53, 0x61, 0x6e, 0x5e, 0x59, 0x61, 0x5d, 0x4c, 0x45, 0x4c, 0x35, 0x27, 0x1d, 0x1c, 0x1b, 0x16, 0x18, 0x21, 0x11, 0x13, 0x16, 0x1f, 0x2c, 0x34, 0x2f, 0x25, 0x22, 0x29, 0x2b, 0x24, 0x1b, 0x1b, 0x23, 0x2b, 0x64, 0x63, 0x63, 0x67, 0x70, 0x76, 0x75, 0x71, 0x66, 0x5e, 0x57, 0x55, 0x5a, 0x6d, 0x7c, 0x7d, 0x79, 0x76, 0x73, 0x73, 0x75, 0x75, 0x74, 0x72, 0x60, 0x5d, 0x62, 0x68, 0x68, 0x6d, 0x75, 0x77, 0x6c, 0x71, 0x76, 0x77, 0x76, 0x75, 0x77, 0x7a, 0x7f, 0x80, 0x80, 0x7e, 0x7a, 0x77, 0x75, 0x74, 0x72, 0x73, 0x7c, 0x8c, 0x98, 0x96, 0x8c, 0x85, 0x71, 0x6b, 0x6a, 0x73, 0x7e, 0x81, 0x79, 0x70, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x73, 0x72, 0x71, 0x78, 0x82, 0x82, 0x7b, 0x7e, 0x7e, 0x7b, 0x76, 0x72, 0x6f, 0x6f, 0x6f, 0x74, 0x79, 0x7c, 0x7f, 0x89, 0x92, 0x8a, 0x7a, 0x70, 0x72, 0x71, 0x70, 0x72, 0x77, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x7b, 0x7d, 0x7c, 0x7b, 0x7c, 0x7f, 0x7a, 0x75, 0x74, 0x78, 0x7d, 0x7e, 0x7d, 0x7a, 0x7f, 0x83, 0x84, 0x84, 0x85, 0x83, 0x7f, 0x74, 0x75, 0x79, 0x7c, 0x7b, 0x78, 0x77, 0x78, 0x76, 0x7a, 0x82, 0x87, 0x88, 0x87, 0x8b, 0x90, 0x8d, 0x91, 0x93, 0x93, 0x98, 0xa1, 0xa4, 0xa0, 0x91, 0x8f, 0x8a, 0x84, 0x82, 0x84, 0x84, 0x83, 0x7e, 0x73, 0x6c, 0x70, 0x76, 0x75, 0x6f, 0x6b, 0x68, 0x6d, 0x70, 0x6b, 0x66, 0x69, 0x73, 0x7b, 0x7e, 0x8b, 0x8d, 0x92, 0xa8, 0xb7, 0xb3, 0xad, 0xa9, 0xa7, 0xa3, 0x9f, 0x9a, 0x98, 0x9d, 0xa4, 0xbb, 0xbf, 0xc2, 0xc0, 0xc1, 0xc4, 0xc2, 0xbd, 0xc4, 0xc5, 0xc7, 0xc7, 0xc5, 0xc4, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc2, 0xbf, 0xbc, 0xbc, 0xbc, 0xba, 0xb9, 0xb9, 0xba, 0xba, 0xbb, 0xb5, 0xb3, 0xb1, 0xae, 0xab, 0xa9, 0xa7, 0xa6, 0xa9, 0xab, 0xae, 0xb2, 0xb6, 0xb7, 0xb6, 0xb5, 0xb4, 0xb4, 0xb3, 0xb1, 0xb1, 0xb1, 0xae, 0xaa, 0xae, 0xaa, 0xa6, 0xa4, 0xa0, 0x96, 0x8a, 0x81, 0x88, 0x96, 0xa2, 0xad, 0xb5, 0xb7, 0xcf, 0xf7, 0xf9, 0xfb, 0xf9, 0xfa, 0xfe, 0xfb, 0xf9, 0xfd, 0xfa, 0xfa, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfb, 0xf7, 0xf7, 0xf7, 0xf8, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xff, 0xfe, 0xfe, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xf9, 0xf8, 0xf6, 0xf6, 0xf6, 0xf6, 0xf7, 0xf5, 0xf5, 0xf6, 0xf6, 0xf5, 0xf4, 0xf4, 0xf3, 0xf2, 0xf1, 0xef, 0xef, 0xef, 0xef, 0xef, 0xee, 0xef, 0xed, 0xeb, 0xe8, 0xe6, 0xe4, 0xe0, 0xde, 0xe0, 0xe0, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xdc, 0xdc, 0xdb, 0xd9, 0xd7, 0xd4, 0xd2, 0xd0, 0xd2, 0xd1, 0xcf, 0xcf, 0xd0, 0xcf, 0xce, 0xcd, 0xc9, 0xc7, 0xc5, 0xc3, 0xc2, 0xc4, 0xc6, 0xc8, 0xcb, 0xcc, 0xcd, 0xce, 0xce, 0xce, 0xce, 0xce, 0xc9, 0xc7, 0xc5, 0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xbf, 0xbb, 0xba, 0xbd, 0xbe, 0xbe, 0xbf, 0xc1, 0xc2, 0xc3, 0xc2, 0xc0, 0xbe, 0xbb, 0xb6, 0xb0, 0xb2, 0xb3, 0xb5, 0xb7, 0xb8, 0xba, 0xbd, 0xbf, 0xc1, 0xc0, 0xb7, 0xa8, 0x7e, 0x62, 0x6c, 0x78, 0x76, 0x7a, 0x76, 0x67, 0x5d, 0x60, 0x69, 0x6f, 0x6e, 0x74, 0x80, 0x8d, 0x94, 0x95, 0x97, 0x9b, 0x97, 0x97, 0x97, 0x96, 0x95, 0x93, 0x92, 0x91, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x8d, 0x8d, 0x8c, 0x8a, 0x89, 0x87, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x80, 0x7e, 0x7b, 0x79, 0x76, 0x70, 0x68, 0x62, 0x5d, 0x57, 0x4f, 0x4a, 0x41, 0x3c, 0x35, 0x2e, 0x29, 0x25, 0x21, 0x1e, 0x19, 0x1b, 0x1b, 0x1c, 0x25, 0x34, 0x3d, 0x3d, 0x3f, 0x47, 0x46, 0x39, 0x2e, 0x2e, 0x31, 0x32, 0x32, 0x33, 0x39, 0x40, 0x42, 0x42, 0x46, 0x4d, 0x40, 0x41, 0x43, 0x4c, 0x62, 0x7a, 0x81, 0x7c, 0x74, 0x77, 0x7d, 0x80, 0x7b, 0x70, 0x69, 0x67, 0x75, 0x74, 0x72, 0x6d, 0x61, 0x59, 0x5b, 0x63, 0x71, 0x7b, 0x83, 0x7c, 0x6c, 0x60, 0x62, 0x6b, 0x8b, 0x8e, 0x86, 0x7b, 0x77, 0x72, 0x6c, 0x6a, 0x64, 0x7c, 0x9f, 0xb3, 0xb1, 0xb0, 0xb4, 0xb2, 0x8b, 0x6c, 0x5f, 0x7f, 0xa6, 0xab, 0x9d, 0x99, 0x9c, 0x97, 0x99, 0x96, 0x85, 0x76, 0x6f, 0x6a, 0x6f, 0x75, 0x77, 0x6b, 0x56, 0x46, 0x47, 0x50, 0x6b, 0x6a, 0x5b, 0x43, 0x36, 0x38, 0x3c, 0x3a, 0x3d, 0x3c, 0x35, 0x2e, 0x38, 0x47, 0x45, 0x38, 0x31, 0x34, 0x3d, 0x51, 0x6c, 0x7f, 0x83, 0x7f, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x72, 0x70, 0x6b, 0x69, 0x5c, 0x57, 0x5b, 0x5e, 0x61, 0x65, 0x63, 0x75, 0x73, 0x70, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x63, 0x65, 0x67, 0x64, 0x67, 0x70, 0x74, 0x73, 0x70, 0x6d, 0x6c, 0x70, 0x78, 0x81, 0x88, 0x8c, 0x8b, 0x88, 0x84, 0x7f, 0x7b, 0x79, 0x78, 0x76, 0x7b, 0x86, 0x95, 0x9b, 0x93, 0x82, 0x75, 0x64, 0x60, 0x62, 0x6f, 0x7b, 0x7d, 0x78, 0x74, 0x74, 0x77, 0x77, 0x71, 0x6d, 0x6d, 0x6e, 0x6d, 0x6d, 0x71, 0x71, 0x70, 0x77, 0x80, 0x7f, 0x76, 0x79, 0x78, 0x75, 0x71, 0x6d, 0x6c, 0x6c, 0x6d, 0x6a, 0x73, 0x78, 0x76, 0x75, 0x77, 0x74, 0x6e, 0x71, 0x71, 0x6f, 0x6d, 0x71, 0x7a, 0x82, 0x85, 0x7c, 0x78, 0x77, 0x7b, 0x80, 0x7f, 0x79, 0x74, 0x7b, 0x76, 0x72, 0x73, 0x77, 0x7c, 0x7e, 0x80, 0x79, 0x7f, 0x85, 0x87, 0x85, 0x83, 0x7f, 0x7c, 0x78, 0x77, 0x77, 0x77, 0x75, 0x71, 0x70, 0x72, 0x75, 0x77, 0x7b, 0x80, 0x83, 0x84, 0x88, 0x8e, 0x8a, 0x8a, 0x85, 0x80, 0x83, 0x8c, 0x93, 0x94, 0x8d, 0x8a, 0x83, 0x7d, 0x7c, 0x7f, 0x82, 0x82, 0x76, 0x6e, 0x6a, 0x6d, 0x6f, 0x6e, 0x6d, 0x6f, 0x6e, 0x70, 0x6d, 0x66, 0x63, 0x68, 0x72, 0x77, 0x77, 0x79, 0x71, 0x7e, 0xa6, 0xbb, 0xb2, 0xab, 0xad, 0xaa, 0xa5, 0xa0, 0x9b, 0x9c, 0xa6, 0xb0, 0xbd, 0xbf, 0xbe, 0xbb, 0xbc, 0xc1, 0xc2, 0xbe, 0xc6, 0xc6, 0xc6, 0xc5, 0xc4, 0xc3, 0xc4, 0xc4, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0xc3, 0xc0, 0xbe, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb, 0xbb, 0xbd, 0xbe, 0xb7, 0xb6, 0xb5, 0xb3, 0xb0, 0xad, 0xa9, 0xa7, 0xa9, 0xaa, 0xac, 0xb0, 0xb4, 0xb5, 0xb5, 0xb4, 0xb4, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xaf, 0xaa, 0xac, 0xaa, 0xa7, 0xa6, 0xa3, 0x9b, 0x8e, 0x84, 0x88, 0x90, 0x9b, 0xad, 0xba, 0xb7, 0xc3, 0xe2, 0xfa, 0xfd, 0xfa, 0xf9, 0xfe, 0xfe, 0xfb, 0xfc, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfb, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xfb, 0xfc, 0xfc, 0xfd, 0xfd, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xf7, 0xf7, 0xf7, 0xf6, 0xf5, 0xf3, 0xf2, 0xf1, 0xf1, 0xef, 0xee, 0xed, 0xed, 0xed, 0xec, 0xeb, 0xed, 0xeb, 0xea, 0xe8, 0xe7, 0xe5, 0xe3, 0xe1, 0xdf, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xda, 0xd8, 0xd6, 0xd5, 0xd4, 0xd2, 0xd2, 0xd2, 0xd1, 0xd0, 0xce, 0xcb, 0xca, 0xc9, 0xc9, 0xc9, 0xca, 0xca, 0xcb, 0xc9, 0xca, 0xcc, 0xcd, 0xce, 0xce, 0xce, 0xce, 0xc9, 0xc8, 0xc7, 0xc6, 0xc6, 0xc5, 0xc4, 0xc2, 0xbd, 0xba, 0xba, 0xbd, 0xbf, 0xbf, 0xc0, 0xc2, 0xc2, 0xc3, 0xc2, 0xbf, 0xbd, 0xbb, 0xb6, 0xb1, 0xb2, 0xb3, 0xb5, 0xb6, 0xb7, 0xb9, 0xbc, 0xbe, 0xbd, 0xbf, 0xb9, 0xa8, 0x87, 0x6d, 0x73, 0x72, 0x76, 0x7d, 0x7c, 0x6f, 0x64, 0x66, 0x6f, 0x74, 0x7c, 0x88, 0x93, 0x96, 0x95, 0x97, 0x99, 0x99, 0x98, 0x98, 0x97, 0x96, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8c, 0x8b, 0x89, 0x87, 0x85, 0x84, 0x83, 0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x73, 0x6d, 0x66, 0x61, 0x5c, 0x56, 0x4f, 0x49, 0x41, 0x3b, 0x32, 0x2c, 0x28, 0x25, 0x22, 0x20, 0x1c, 0x1d, 0x1c, 0x1b, 0x1f, 0x26, 0x2a, 0x28, 0x2e, 0x38, 0x3b, 0x34, 0x30, 0x34, 0x35, 0x30, 0x30, 0x2e, 0x33, 0x3b, 0x3d, 0x39, 0x39, 0x3e, 0x45, 0x3b, 0x3e, 0x53, 0x65, 0x67, 0x64, 0x65, 0x71, 0x70, 0x6b, 0x65, 0x5e, 0x5f, 0x69, 0x74, 0x76, 0x79, 0x7a, 0x77, 0x79, 0x7f, 0x83, 0x83, 0x74, 0x6f, 0x6f, 0x73, 0x73, 0x75, 0x84, 0x98, 0x82, 0x8d, 0x91, 0x91, 0x93, 0x92, 0x91, 0x95, 0x96, 0x98, 0xa1, 0xac, 0xb1, 0xa7, 0x88, 0x69, 0x57, 0x62, 0x81, 0xa1, 0x9e, 0x7b, 0x71, 0x88, 0x8b, 0x87, 0x95, 0xaa, 0xae, 0xa9, 0xa9, 0xab, 0x96, 0x93, 0x85, 0x6d, 0x58, 0x4f, 0x4a, 0x46, 0x3a, 0x4d, 0x5b, 0x59, 0x58, 0x60, 0x64, 0x62, 0x53, 0x51, 0x4e, 0x4a, 0x49, 0x4f, 0x60, 0x70, 0x77, 0x85, 0x90, 0x91, 0x89, 0x82, 0x7e, 0x7d, 0x4c, 0x53, 0x59, 0x5c, 0x61, 0x68, 0x69, 0x67, 0x62, 0x53, 0x51, 0x5c, 0x62, 0x64, 0x66, 0x64, 0x5d, 0x66, 0x6e, 0x6f, 0x6c, 0x6c, 0x73, 0x7b, 0x75, 0x68, 0x63, 0x64, 0x64, 0x67, 0x69, 0x66, 0x6a, 0x6a, 0x6d, 0x71, 0x78, 0x7f, 0x85, 0x88, 0x84, 0x86, 0x89, 0x88, 0x86, 0x82, 0x7f, 0x7e, 0x7c, 0x7f, 0x86, 0x8d, 0x8e, 0x87, 0x7b, 0x72, 0x69, 0x61, 0x62, 0x6e, 0x78, 0x79, 0x78, 0x7a, 0x79, 0x7d, 0x7c, 0x74, 0x6e, 0x6e, 0x6f, 0x6e, 0x68, 0x6b, 0x6b, 0x6d, 0x75, 0x7e, 0x80, 0x7c, 0x7f, 0x7c, 0x76, 0x71, 0x6e, 0x6e, 0x6f, 0x71, 0x77, 0x74, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x70, 0x6f, 0x6c, 0x67, 0x62, 0x64, 0x6b, 0x73, 0x76, 0x79, 0x7c, 0x7e, 0x7e, 0x7b, 0x77, 0x74, 0x72, 0x74, 0x6e, 0x6a, 0x6b, 0x70, 0x74, 0x78, 0x7c, 0x78, 0x7c, 0x80, 0x82, 0x82, 0x81, 0x81, 0x81, 0x7f, 0x7e, 0x7d, 0x7b, 0x76, 0x72, 0x73, 0x77, 0x7a, 0x78, 0x78, 0x7a, 0x7c, 0x7e, 0x83, 0x89, 0x8e, 0x8f, 0x8d, 0x87, 0x83, 0x83, 0x83, 0x82, 0x84, 0x82, 0x7c, 0x75, 0x72, 0x74, 0x76, 0x76, 0x69, 0x69, 0x67, 0x68, 0x73, 0x81, 0x82, 0x7b, 0x6e, 0x6b, 0x66, 0x66, 0x6f, 0x79, 0x7a, 0x73, 0x7f, 0x83, 0x80, 0x92, 0xba, 0xc4, 0xb8, 0xb9, 0xb1, 0xac, 0xa5, 0x9f, 0x9b, 0x9e, 0xa9, 0xb5, 0xbc, 0xbe, 0xbc, 0xb8, 0xba, 0xc0, 0xc3, 0xc1, 0xc5, 0xc5, 0xc5, 0xc5, 0xc4, 0xc4, 0xc6, 0xc8, 0xc3, 0xc3, 0xc3, 0xc4, 0xc5, 0xc4, 0xc3, 0xc1, 0xbf, 0xbe, 0xbb, 0xb9, 0xb8, 0xb8, 0xb9, 0xba, 0xb8, 0xb8, 0xb8, 0xb7, 0xb4, 0xaf, 0xab, 0xa8, 0xa9, 0xa9, 0xaa, 0xac, 0xaf, 0xb0, 0xaf, 0xae, 0xaf, 0xb1, 0xb3, 0xb2, 0xb3, 0xb4, 0xb1, 0xae, 0xa9, 0xa9, 0xa7, 0xa6, 0xa5, 0xa0, 0x96, 0x8c, 0x89, 0x8a, 0x93, 0xa7, 0xb5, 0xb4, 0xb7, 0xc4, 0xf1, 0xfd, 0xfe, 0xf9, 0xfc, 0xfe, 0xfb, 0xfa, 0xfb, 0xfa, 0xf8, 0xf8, 0xf8, 0xfa, 0xfc, 0xfe, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfa, 0xf8, 0xf7, 0xf9, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xfa, 0xfb, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfd, 0xfe, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xf8, 0xf8, 0xf8, 0xf7, 0xf5, 0xf4, 0xf3, 0xf2, 0xf3, 0xf1, 0xef, 0xee, 0xee, 0xee, 0xed, 0xec, 0xeb, 0xea, 0xe9, 0xe9, 0xe8, 0xe8, 0xe6, 0xe4, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe0, 0xe0, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xd7, 0xd5, 0xd4, 0xd3, 0xd3, 0xd2, 0xd0, 0xcf, 0xcd, 0xcd, 0xce, 0xce, 0xce, 0xce, 0xce, 0xcd, 0xcc, 0xcd, 0xcf, 0xd0, 0xd1, 0xd0, 0xd0, 0xcf, 0xcb, 0xca, 0xca, 0xc9, 0xc9, 0xc8, 0xc5, 0xc3, 0xbd, 0xbb, 0xbb, 0xbe, 0xc1, 0xc1, 0xc2, 0xc3, 0xc4, 0xc4, 0xc3, 0xbf, 0xbd, 0xbb, 0xb7, 0xb2, 0xb2, 0xb4, 0xb6, 0xb7, 0xb8, 0xb9, 0xbb, 0xbd, 0xb7, 0xbe, 0xbf, 0xab, 0x8e, 0x73, 0x79, 0x73, 0x6f, 0x70, 0x6c, 0x64, 0x60, 0x65, 0x71, 0x79, 0x8b, 0x93, 0x97, 0x95, 0x97, 0x9c, 0x9a, 0x94, 0x97, 0x97, 0x96, 0x95, 0x93, 0x91, 0x90, 0x8f, 0x8f, 0x8e, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x83, 0x82, 0x81, 0x80, 0x7e, 0x7b, 0x79, 0x78, 0x76, 0x73, 0x71, 0x70, 0x6b, 0x64, 0x5e, 0x5a, 0x54, 0x4c, 0x46, 0x3f, 0x39, 0x30, 0x2a, 0x28, 0x26, 0x23, 0x20, 0x18, 0x16, 0x16, 0x1d, 0x2c, 0x38, 0x38, 0x32, 0x2d, 0x31, 0x2f, 0x29, 0x2c, 0x37, 0x3d, 0x3d, 0x3c, 0x35, 0x33, 0x38, 0x3a, 0x36, 0x35, 0x39, 0x28, 0x1a, 0x1b, 0x35, 0x55, 0x65, 0x67, 0x64, 0x66, 0x5f, 0x57, 0x57, 0x60, 0x6d, 0x77, 0x7c, 0x82, 0x7f, 0x78, 0x73, 0x77, 0x7b, 0x71, 0x62, 0x71, 0x7a, 0x88, 0x8a, 0x7d, 0x74, 0x85, 0x9e, 0xac, 0xac, 0xa0, 0x8e, 0x7d, 0x6c, 0x68, 0x70, 0x90, 0x9e, 0xa2, 0x9d, 0x91, 0x77, 0x5a, 0x4c, 0x64, 0x7d, 0x8d, 0x8b, 0x87, 0x85, 0x86, 0x8c, 0x95, 0x8d, 0x95, 0xa5, 0xa7, 0xa3, 0xa1, 0xa1, 0xae, 0xae, 0xaf, 0xae, 0xa1, 0x86, 0x67, 0x52, 0x54, 0x55, 0x58, 0x57, 0x4f, 0x49, 0x4e, 0x59, 0x54, 0x52, 0x53, 0x62, 0x81, 0x9c, 0xa4, 0x9f, 0x9c, 0x92, 0x83, 0x7a, 0x78, 0x75, 0x6c, 0x61, 0x4a, 0x52, 0x58, 0x5c, 0x64, 0x6f, 0x75, 0x74, 0x60, 0x55, 0x51, 0x55, 0x57, 0x5b, 0x5c, 0x57, 0x55, 0x5e, 0x65, 0x64, 0x5e, 0x5d, 0x65, 0x6d, 0x72, 0x67, 0x64, 0x65, 0x62, 0x62, 0x62, 0x5d, 0x60, 0x65, 0x6c, 0x70, 0x70, 0x6e, 0x6b, 0x6a, 0x6d, 0x73, 0x7a, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x7d, 0x83, 0x89, 0x8b, 0x89, 0x84, 0x7d, 0x78, 0x70, 0x65, 0x63, 0x6f, 0x79, 0x78, 0x76, 0x78, 0x77, 0x7c, 0x7c, 0x75, 0x71, 0x72, 0x72, 0x6e, 0x66, 0x68, 0x6c, 0x73, 0x79, 0x7f, 0x81, 0x81, 0x84, 0x7f, 0x78, 0x72, 0x70, 0x72, 0x75, 0x78, 0x7d, 0x6e, 0x66, 0x6e, 0x78, 0x7a, 0x77, 0x75, 0x73, 0x71, 0x6b, 0x64, 0x61, 0x64, 0x67, 0x67, 0x70, 0x76, 0x7b, 0x7b, 0x76, 0x74, 0x75, 0x77, 0x74, 0x70, 0x6f, 0x72, 0x74, 0x72, 0x72, 0x73, 0x7a, 0x7c, 0x7f, 0x82, 0x83, 0x83, 0x84, 0x85, 0x82, 0x82, 0x83, 0x81, 0x7b, 0x77, 0x79, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x76, 0x79, 0x81, 0x8a, 0x88, 0x8d, 0x90, 0x8e, 0x8a, 0x88, 0x87, 0x87, 0x81, 0x83, 0x82, 0x7c, 0x76, 0x72, 0x6f, 0x6d, 0x73, 0x73, 0x71, 0x6f, 0x74, 0x7b, 0x77, 0x6f, 0x6d, 0x6d, 0x6c, 0x70, 0x7b, 0x85, 0x81, 0x77, 0x7a, 0x85, 0x89, 0x9f, 0xbd, 0xb6, 0xa8, 0xb3, 0xaf, 0xa9, 0xa2, 0x9d, 0x9b, 0x9f, 0xab, 0xb6, 0xbc, 0xbf, 0xbf, 0xbb, 0xbc, 0xc2, 0xc4, 0xc2, 0xc5, 0xc6, 0xc7, 0xc7, 0xc6, 0xc6, 0xc6, 0xc7, 0xc3, 0xc2, 0xc2, 0xc3, 0xc4, 0xc4, 0xc2, 0xc1, 0xbd, 0xbc, 0xb9, 0xb6, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xb9, 0xb8, 0xb6, 0xb4, 0xb1, 0xad, 0xab, 0xac, 0xab, 0xaa, 0xaa, 0xab, 0xac, 0xab, 0xab, 0xaf, 0xb2, 0xb2, 0xb0, 0xb0, 0xb2, 0xb3, 0xb2, 0xab, 0xab, 0xaa, 0xa7, 0xa5, 0xa3, 0x9c, 0x94, 0x89, 0x86, 0x8f, 0xa0, 0xab, 0xb1, 0xb3, 0xb1, 0xd9, 0xf4, 0xff, 0xf9, 0xf8, 0xfc, 0xfb, 0xf9, 0xfb, 0xfa, 0xf8, 0xf7, 0xf8, 0xfa, 0xfc, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf8, 0xfa, 0xf9, 0xf7, 0xf6, 0xf6, 0xf7, 0xf9, 0xfa, 0xf8, 0xf9, 0xfa, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfa, 0xfb, 0xfd, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf6, 0xf5, 0xf4, 0xf4, 0xf3, 0xf1, 0xf0, 0xf0, 0xf0, 0xef, 0xee, 0xeb, 0xea, 0xe9, 0xea, 0xea, 0xea, 0xe8, 0xe7, 0xe6, 0xe6, 0xe5, 0xe5, 0xe3, 0xe2, 0xe2, 0xe1, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdb, 0xd9, 0xd8, 0xd7, 0xd6, 0xd5, 0xd3, 0xd2, 0xd0, 0xd1, 0xd1, 0xd2, 0xd2, 0xd2, 0xd1, 0xd1, 0xd1, 0xd2, 0xd3, 0xd4, 0xd3, 0xd2, 0xd0, 0xcf, 0xce, 0xce, 0xcd, 0xcd, 0xcc, 0xca, 0xc7, 0xc5, 0xc0, 0xbe, 0xbe, 0xc1, 0xc3, 0xc2, 0xc3, 0xc4, 0xc3, 0xc4, 0xc2, 0xbe, 0xbc, 0xbb, 0xb8, 0xb4, 0xb2, 0xb4, 0xb7, 0xb9, 0xb9, 0xba, 0xbb, 0xbc, 0xb9, 0xbd, 0xbf, 0xaf, 0x9a, 0x7d, 0x81, 0x77, 0x77, 0x71, 0x6b, 0x6b, 0x70, 0x79, 0x86, 0x8f, 0x94, 0x94, 0x94, 0x95, 0x97, 0x99, 0x97, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8e, 0x8d, 0x8e, 0x8d, 0x8b, 0x89, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x84, 0x82, 0x80, 0x7f, 0x7f, 0x7b, 0x79, 0x77, 0x75, 0x73, 0x71, 0x6e, 0x6c, 0x6b, 0x66, 0x60, 0x5b, 0x57, 0x51, 0x4a, 0x44, 0x3d, 0x36, 0x2e, 0x28, 0x27, 0x25, 0x22, 0x1f, 0x1b, 0x1a, 0x1e, 0x29, 0x3a, 0x46, 0x47, 0x42, 0x2f, 0x30, 0x2f, 0x2d, 0x33, 0x3e, 0x48, 0x4b, 0x3d, 0x34, 0x2e, 0x31, 0x35, 0x35, 0x33, 0x33, 0x2b, 0x2c, 0x2d, 0x2e, 0x30, 0x36, 0x40, 0x4a, 0x45, 0x4f, 0x5a, 0x5c, 0x58, 0x55, 0x58, 0x5d, 0x50, 0x51, 0x55, 0x5f, 0x6e, 0x7c, 0x81, 0x81, 0x80, 0x76, 0x71, 0x7c, 0x8a, 0x88, 0x6f, 0x56, 0x45, 0x44, 0x3e, 0x3b, 0x3b, 0x3f, 0x54, 0x71, 0x90, 0xa5, 0x9f, 0x89, 0x75, 0x5a, 0x4f, 0x62, 0x7c, 0x86, 0x8f, 0x8f, 0x80, 0x6d, 0x71, 0x89, 0x89, 0x85, 0x87, 0x88, 0x87, 0x8c, 0x91, 0x8d, 0x89, 0x7c, 0x71, 0x6f, 0x74, 0x7b, 0x82, 0x88, 0x7d, 0x7e, 0x84, 0x8a, 0x82, 0x71, 0x68, 0x69, 0x7e, 0x97, 0xac, 0xad, 0xa7, 0xa2, 0x97, 0x8a, 0x7f, 0x86, 0x8a, 0x87, 0x85, 0x88, 0x8e, 0x93, 0x4a, 0x50, 0x53, 0x54, 0x5c, 0x68, 0x6f, 0x6e, 0x64, 0x60, 0x5d, 0x5a, 0x5a, 0x63, 0x65, 0x5b, 0x68, 0x68, 0x65, 0x61, 0x5f, 0x60, 0x64, 0x68, 0x6b, 0x68, 0x6a, 0x68, 0x5e, 0x58, 0x59, 0x59, 0x56, 0x5b, 0x62, 0x65, 0x66, 0x6a, 0x72, 0x78, 0x74, 0x79, 0x7e, 0x7f, 0x7c, 0x7a, 0x7a, 0x7c, 0x77, 0x82, 0x8c, 0x90, 0x8c, 0x84, 0x7d, 0x78, 0x6e, 0x63, 0x61, 0x70, 0x7a, 0x76, 0x6f, 0x6f, 0x73, 0x79, 0x7a, 0x75, 0x72, 0x74, 0x73, 0x6e, 0x6a, 0x6d, 0x76, 0x80, 0x85, 0x83, 0x82, 0x82, 0x81, 0x7c, 0x74, 0x6f, 0x6e, 0x72, 0x77, 0x7b, 0x6b, 0x63, 0x63, 0x6d, 0x70, 0x6a, 0x69, 0x6f, 0x75, 0x74, 0x6f, 0x68, 0x64, 0x63, 0x62, 0x60, 0x66, 0x6a, 0x6e, 0x70, 0x73, 0x77, 0x79, 0x79, 0x7c, 0x7b, 0x7f, 0x84, 0x83, 0x7a, 0x71, 0x6d, 0x7b, 0x7d, 0x81, 0x85, 0x86, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x82, 0x7b, 0x75, 0x76, 0x7b, 0x7c, 0x7a, 0x78, 0x75, 0x73, 0x76, 0x82, 0x8e, 0x93, 0x92, 0x8b, 0x80, 0x77, 0x76, 0x7d, 0x83, 0x88, 0x8e, 0x91, 0x8c, 0x83, 0x7b, 0x74, 0x6f, 0x6f, 0x6b, 0x6c, 0x72, 0x6f, 0x66, 0x63, 0x68, 0x71, 0x77, 0x7b, 0x79, 0x7a, 0x7f, 0x7d, 0x77, 0x76, 0x7c, 0x7f, 0x9c, 0xc2, 0xb9, 0xa5, 0xae, 0xa7, 0xa3, 0x9e, 0x9d, 0xa0, 0xa7, 0xb4, 0xbf, 0xbb, 0xc0, 0xc2, 0xbf, 0xbf, 0xc3, 0xc5, 0xc3, 0xc4, 0xc6, 0xc7, 0xc7, 0xc5, 0xc3, 0xc1, 0xc1, 0xc2, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbc, 0xbb, 0xb9, 0xb7, 0xb6, 0xb7, 0xb9, 0xba, 0xbc, 0xbc, 0xba, 0xb8, 0xb6, 0xb3, 0xb2, 0xb1, 0xb1, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xb4, 0xb5, 0xb4, 0xb0, 0xae, 0xb0, 0xb3, 0xb5, 0xaf, 0xb0, 0xad, 0xa8, 0xa6, 0xa4, 0x9e, 0x96, 0x8b, 0x86, 0x90, 0x9e, 0xa6, 0xb3, 0xb8, 0xaf, 0xc2, 0xe8, 0xfd, 0xf7, 0xf4, 0xf9, 0xfb, 0xfa, 0xfb, 0xfa, 0xf8, 0xf7, 0xf7, 0xfa, 0xfc, 0xfe, 0xfe, 0xfc, 0xfa, 0xf8, 0xf8, 0xf8, 0xf9, 0xfa, 0xfa, 0xf9, 0xf7, 0xf5, 0xf5, 0xf6, 0xf7, 0xf9, 0xf8, 0xf9, 0xfb, 0xfc, 0xfd, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfb, 0xfa, 0xfa, 0xfc, 0xfe, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf6, 0xf7, 0xf7, 0xf8, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf4, 0xf3, 0xf1, 0xf1, 0xf1, 0xf1, 0xf1, 0xf0, 0xec, 0xeb, 0xea, 0xeb, 0xeb, 0xeb, 0xea, 0xe8, 0xe9, 0xe8, 0xe7, 0xe5, 0xe4, 0xe2, 0xe2, 0xe1, 0xdc, 0xdb, 0xda, 0xda, 0xda, 0xdc, 0xdd, 0xde, 0xe0, 0xde, 0xdd, 0xdc, 0xdb, 0xda, 0xd8, 0xd7, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd4, 0xd2, 0xd3, 0xd3, 0xd3, 0xd1, 0xcf, 0xcc, 0xcb, 0xd1, 0xd0, 0xd0, 0xd0, 0xcf, 0xcc, 0xc9, 0xc6, 0xc3, 0xc0, 0xc0, 0xc2, 0xc4, 0xc3, 0xc3, 0xc4, 0xc1, 0xc1, 0xbf, 0xbc, 0xbb, 0xbb, 0xb8, 0xb4, 0xb3, 0xb5, 0xb8, 0xba, 0xbb, 0xbb, 0xbb, 0xbc, 0xc2, 0xbb, 0xbb, 0xb2, 0xa7, 0x8a, 0x89, 0x7a, 0x7c, 0x72, 0x6b, 0x70, 0x7a, 0x83, 0x8c, 0x94, 0x97, 0x95, 0x98, 0x9b, 0x98, 0x93, 0x95, 0x9c, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8e, 0x8c, 0x8a, 0x88, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x81, 0x80, 0x7e, 0x7d, 0x7d, 0x76, 0x75, 0x73, 0x71, 0x70, 0x6e, 0x6b, 0x68, 0x66, 0x62, 0x5c, 0x59, 0x56, 0x51, 0x4a, 0x44, 0x3b, 0x34, 0x2c, 0x27, 0x26, 0x25, 0x21, 0x1e, 0x1c, 0x1f, 0x23, 0x27, 0x29, 0x2b, 0x2b, 0x2a, 0x24, 0x2d, 0x39, 0x43, 0x48, 0x4b, 0x4c, 0x4c, 0x40, 0x3c, 0x3b, 0x42, 0x47, 0x43, 0x38, 0x2f, 0x39, 0x30, 0x28, 0x26, 0x27, 0x26, 0x27, 0x29, 0x39, 0x37, 0x36, 0x39, 0x3d, 0x3b, 0x31, 0x26, 0x3b, 0x50, 0x71, 0x89, 0x89, 0x79, 0x6d, 0x6c, 0x7b, 0x8c, 0x8e, 0x75, 0x56, 0x40, 0x2e, 0x20, 0x25, 0x22, 0x20, 0x25, 0x30, 0x3f, 0x62, 0x8b, 0xa6, 0xa7, 0x83, 0x61, 0x5a, 0x4d, 0x4f, 0x71, 0x7a, 0x88, 0x8b, 0x82, 0x7b, 0x74, 0x6d, 0x6b, 0x6f, 0x78, 0x7b, 0x6f, 0x62, 0x60, 0x58, 0x45, 0x46, 0x3c, 0x2e, 0x2e, 0x46, 0x66, 0x79, 0x7c, 0x78, 0x79, 0x7b, 0x7f, 0x89, 0x96, 0x9e, 0xa0, 0xa4, 0x9b, 0x9d, 0xa5, 0x9f, 0x8e, 0x8b, 0x96, 0x8d, 0x8e, 0x8f, 0x91, 0x98, 0xa4, 0xad, 0xb0, 0x48, 0x46, 0x46, 0x49, 0x4c, 0x51, 0x5c, 0x67, 0x65, 0x64, 0x69, 0x6f, 0x66, 0x57, 0x57, 0x62, 0x65, 0x5b, 0x56, 0x5a, 0x5a, 0x57, 0x5b, 0x64, 0x61, 0x5e, 0x5b, 0x5a, 0x5c, 0x5d, 0x5e, 0x5d, 0x5e, 0x68, 0x6e, 0x6a, 0x66, 0x6b, 0x75, 0x7c, 0x83, 0x85, 0x80, 0x77, 0x72, 0x76, 0x7f, 0x83, 0x8b, 0x8e, 0x8c, 0x84, 0x7c, 0x78, 0x77, 0x76, 0x73, 0x74, 0x73, 0x6e, 0x6b, 0x6a, 0x6c, 0x6c, 0x76, 0x78, 0x76, 0x72, 0x74, 0x78, 0x77, 0x70, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x80, 0x82, 0x7c, 0x76, 0x74, 0x7b, 0x80, 0x7d, 0x76, 0x71, 0x6f, 0x6f, 0x6d, 0x6b, 0x68, 0x67, 0x69, 0x6b, 0x69, 0x65, 0x60, 0x5e, 0x62, 0x66, 0x64, 0x5e, 0x62, 0x62, 0x68, 0x71, 0x75, 0x74, 0x73, 0x75, 0x75, 0x76, 0x79, 0x7a, 0x78, 0x73, 0x71, 0x71, 0x7a, 0x73, 0x76, 0x84, 0x8e, 0x8a, 0x80, 0x79, 0x78, 0x7b, 0x7f, 0x7f, 0x7b, 0x78, 0x76, 0x77, 0x78, 0x79, 0x78, 0x74, 0x70, 0x71, 0x79, 0x82, 0x8e, 0x8d, 0x8a, 0x83, 0x7e, 0x7d, 0x81, 0x85, 0x84, 0x87, 0x8c, 0x91, 0x90, 0x88, 0x7b, 0x72, 0x68, 0x65, 0x68, 0x6c, 0x67, 0x5c, 0x5b, 0x61, 0x71, 0x77, 0x7a, 0x77, 0x72, 0x71, 0x6f, 0x6c, 0x71, 0x76, 0x77, 0x9e, 0xbf, 0xb4, 0xaa, 0xa4, 0x9e, 0xa2, 0xa1, 0x9d, 0xa2, 0xb0, 0xb9, 0xba, 0xbc, 0xc0, 0xc3, 0xc2, 0xc2, 0xc5, 0xc6, 0xc7, 0xc6, 0xc6, 0xc7, 0xc7, 0xc5, 0xc3, 0xc0, 0xbf, 0xc3, 0xc3, 0xc4, 0xc3, 0xc2, 0xc0, 0xbd, 0xbc, 0xbd, 0xbd, 0xbc, 0xbb, 0xba, 0xb9, 0xb9, 0xb8, 0xb9, 0xb6, 0xb4, 0xb4, 0xb5, 0xb5, 0xb3, 0xb1, 0xac, 0xb0, 0xb2, 0xae, 0xac, 0xac, 0xaa, 0xa7, 0xab, 0xb2, 0xb8, 0xb9, 0xb4, 0xaf, 0xad, 0xad, 0xb1, 0xad, 0xaa, 0xa9, 0xa9, 0xa6, 0x9f, 0x99, 0x8e, 0x8a, 0x8e, 0x94, 0xad, 0xaf, 0xb7, 0xbb, 0xae, 0xe0, 0xf4, 0xfd, 0xf7, 0xf9, 0xf2, 0xff, 0xfb, 0xfb, 0xfa, 0xf8, 0xf6, 0xf6, 0xf8, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xf9, 0xf5, 0xf4, 0xf3, 0xf3, 0xf5, 0xf7, 0xf9, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xf8, 0xf9, 0xfb, 0xfc, 0xfc, 0xfc, 0xfa, 0xfa, 0xfc, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xff, 0xfe, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf7, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf6, 0xf6, 0xf5, 0xf6, 0xf7, 0xf7, 0xf6, 0xf5, 0xf5, 0xf5, 0xf3, 0xf2, 0xf0, 0xef, 0xef, 0xee, 0xee, 0xed, 0xec, 0xed, 0xee, 0xed, 0xea, 0xe8, 0xe7, 0xe8, 0xe8, 0xe7, 0xe4, 0xe0, 0xdd, 0xdc, 0xdc, 0xdb, 0xda, 0xda, 0xda, 0xda, 0xdb, 0xdc, 0xe0, 0xe0, 0xdf, 0xde, 0xdc, 0xda, 0xd8, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd6, 0xd6, 0xd4, 0xd2, 0xd1, 0xd0, 0xd0, 0xce, 0xcd, 0xd0, 0xcf, 0xce, 0xcd, 0xcd, 0xcb, 0xc9, 0xc7, 0xc4, 0xc3, 0xc3, 0xc2, 0xc1, 0xc3, 0xc5, 0xc7, 0xc5, 0xc2, 0xbf, 0xbe, 0xbd, 0xbc, 0xb8, 0xb6, 0xb5, 0xb5, 0xb4, 0xb5, 0xb7, 0xb8, 0xb8, 0xb8, 0xbc, 0xbc, 0xba, 0xb3, 0xa1, 0x8b, 0x7d, 0x78, 0x6e, 0x67, 0x6a, 0x7b, 0x8c, 0x94, 0x97, 0x9a, 0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x92, 0x90, 0x8f, 0x8f, 0x8e, 0x8c, 0x8b, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x79, 0x76, 0x76, 0x74, 0x71, 0x6e, 0x6c, 0x69, 0x66, 0x64, 0x63, 0x5e, 0x58, 0x54, 0x51, 0x4c, 0x44, 0x3e, 0x3a, 0x32, 0x2a, 0x26, 0x25, 0x24, 0x21, 0x1f, 0x22, 0x2a, 0x2d, 0x28, 0x24, 0x27, 0x2d, 0x31, 0x26, 0x2c, 0x39, 0x4a, 0x55, 0x55, 0x4e, 0x48, 0x3d, 0x38, 0x36, 0x36, 0x32, 0x2d, 0x2f, 0x36, 0x33, 0x33, 0x31, 0x2c, 0x28, 0x26, 0x24, 0x23, 0x20, 0x22, 0x28, 0x2f, 0x35, 0x40, 0x56, 0x6a, 0x81, 0x87, 0x86, 0x77, 0x67, 0x69, 0x7b, 0x8c, 0x7f, 0x66, 0x42, 0x2d, 0x27, 0x24, 0x29, 0x36, 0x33, 0x2e, 0x3f, 0x60, 0x6d, 0x6d, 0x86, 0xab, 0x97, 0x63, 0x5f, 0x6f, 0x55, 0x51, 0x7b, 0x9b, 0xa6, 0x84, 0x79, 0x73, 0x6b, 0x5a, 0x44, 0x4c, 0x4e, 0x4c, 0x44, 0x34, 0x23, 0x1f, 0x2c, 0x3c, 0x47, 0x52, 0x5d, 0x64, 0x61, 0x51, 0x45, 0x49, 0x6d, 0x88, 0x95, 0x97, 0x9f, 0xa2, 0x9f, 0xa1, 0xa4, 0x9f, 0x94, 0x8c, 0x92, 0x9e, 0xa4, 0xa1, 0xa9, 0xa6, 0xa2, 0xa0, 0xa1, 0x9e, 0x94, 0x89, 0x3e, 0x40, 0x45, 0x4a, 0x4e, 0x51, 0x5a, 0x63, 0x6b, 0x6c, 0x6b, 0x69, 0x64, 0x61, 0x62, 0x65, 0x5d, 0x55, 0x4d, 0x4c, 0x50, 0x55, 0x58, 0x59, 0x55, 0x54, 0x55, 0x58, 0x5b, 0x5d, 0x5d, 0x5c, 0x5c, 0x63, 0x68, 0x69, 0x6b, 0x6e, 0x6e, 0x6c, 0x78, 0x7c, 0x7d, 0x78, 0x74, 0x74, 0x73, 0x72, 0x76, 0x7a, 0x7a, 0x73, 0x6c, 0x6d, 0x72, 0x77, 0x71, 0x6f, 0x6b, 0x69, 0x6a, 0x6d, 0x6e, 0x6d, 0x6c, 0x70, 0x70, 0x6f, 0x73, 0x79, 0x79, 0x73, 0x71, 0x74, 0x78, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7f, 0x85, 0x86, 0x7f, 0x77, 0x74, 0x70, 0x6f, 0x6d, 0x69, 0x66, 0x65, 0x67, 0x69, 0x70, 0x6d, 0x66, 0x5d, 0x5b, 0x60, 0x68, 0x6c, 0x69, 0x6b, 0x6b, 0x6b, 0x6d, 0x71, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x70, 0x72, 0x79, 0x73, 0x75, 0x80, 0x89, 0x87, 0x81, 0x7e, 0x7a, 0x80, 0x86, 0x86, 0x81, 0x79, 0x74, 0x72, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x70, 0x72, 0x76, 0x7d, 0x83, 0x87, 0x82, 0x79, 0x77, 0x80, 0x8a, 0x84, 0x82, 0x81, 0x80, 0x7e, 0x7b, 0x75, 0x71, 0x6d, 0x6b, 0x68, 0x65, 0x63, 0x64, 0x69, 0x6e, 0x70, 0x76, 0x7a, 0x79, 0x77, 0x79, 0x7a, 0x79, 0x73, 0x77, 0x7a, 0xa0, 0xbd, 0xaf, 0xa1, 0x9d, 0x9f, 0xa3, 0xa3, 0xa0, 0xa5, 0xb2, 0xba, 0xbb, 0xbd, 0xc1, 0xc4, 0xc4, 0xc5, 0xc7, 0xc8, 0xc8, 0xc7, 0xc7, 0xc7, 0xc6, 0xc5, 0xc3, 0xc1, 0xc0, 0xc0, 0xc1, 0xc3, 0xc3, 0xc2, 0xc0, 0xbd, 0xbb, 0xbd, 0xbd, 0xbc, 0xbb, 0xba, 0xb9, 0xb9, 0xb8, 0xb7, 0xb4, 0xb2, 0xb1, 0xb1, 0xb0, 0xad, 0xaa, 0xae, 0xb3, 0xb5, 0xb1, 0xad, 0xac, 0xac, 0xab, 0xab, 0xae, 0xb2, 0xb5, 0xb6, 0xb5, 0xb2, 0xb1, 0xae, 0xab, 0xa9, 0xa8, 0xa8, 0xa4, 0x9c, 0x96, 0x8f, 0x8b, 0x8d, 0x90, 0xa8, 0xab, 0xb5, 0xbb, 0xaf, 0xc5, 0xef, 0xf7, 0xfb, 0xfb, 0xf2, 0xfa, 0xf8, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf8, 0xf9, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf3, 0xf3, 0xf2, 0xf3, 0xf4, 0xf7, 0xf9, 0xfb, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf7, 0xf7, 0xf6, 0xf6, 0xf6, 0xf6, 0xf4, 0xf3, 0xf4, 0xf3, 0xf2, 0xf0, 0xef, 0xee, 0xed, 0xed, 0xee, 0xed, 0xec, 0xec, 0xec, 0xeb, 0xe8, 0xe6, 0xe6, 0xe6, 0xe6, 0xe5, 0xe3, 0xe1, 0xdf, 0xde, 0xde, 0xdd, 0xdb, 0xda, 0xda, 0xdb, 0xdd, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xd9, 0xd8, 0xdb, 0xdb, 0xdb, 0xda, 0xd9, 0xd8, 0xd7, 0xd7, 0xd6, 0xd4, 0xd2, 0xd1, 0xd1, 0xd0, 0xcf, 0xce, 0xcf, 0xce, 0xcd, 0xcd, 0xcc, 0xcb, 0xc8, 0xc6, 0xc2, 0xc2, 0xc1, 0xc0, 0xc0, 0xc2, 0xc4, 0xc5, 0xc5, 0xc3, 0xc1, 0xc1, 0xc1, 0xbe, 0xba, 0xb7, 0xb6, 0xb5, 0xb4, 0xb5, 0xb7, 0xb9, 0xb9, 0xb9, 0xbd, 0xbc, 0xba, 0xb1, 0x9f, 0x8b, 0x7d, 0x7a, 0x73, 0x72, 0x7b, 0x8b, 0x96, 0x97, 0x97, 0x99, 0x98, 0x98, 0x98, 0x97, 0x96, 0x96, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8b, 0x88, 0x87, 0x86, 0x85, 0x84, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7a, 0x77, 0x75, 0x73, 0x71, 0x6e, 0x6b, 0x68, 0x66, 0x63, 0x60, 0x5d, 0x58, 0x52, 0x4e, 0x4c, 0x48, 0x41, 0x3c, 0x36, 0x32, 0x2f, 0x2b, 0x25, 0x1d, 0x1b, 0x1c, 0x21, 0x33, 0x44, 0x4f, 0x5b, 0x66, 0x63, 0x58, 0x4d, 0x40, 0x36, 0x3a, 0x47, 0x51, 0x51, 0x4c, 0x3f, 0x3c, 0x3f, 0x48, 0x4b, 0x47, 0x46, 0x48, 0x42, 0x3a, 0x33, 0x30, 0x31, 0x2e, 0x28, 0x23, 0x2a, 0x2a, 0x2f, 0x3a, 0x46, 0x51, 0x59, 0x5f, 0x63, 0x60, 0x60, 0x67, 0x72, 0x76, 0x6a, 0x5a, 0x4d, 0x5c, 0x5b, 0x55, 0x67, 0x7f, 0x82, 0x78, 0x69, 0x76, 0x70, 0x5e, 0x66, 0x7f, 0x7f, 0x67, 0x42, 0x64, 0x7c, 0x6b, 0x50, 0x55, 0x6a, 0x71, 0x80, 0x67, 0x56, 0x44, 0x42, 0x46, 0x3b, 0x3a, 0x3a, 0x43, 0x4e, 0x4f, 0x49, 0x49, 0x55, 0x63, 0x69, 0x63, 0x53, 0x49, 0x50, 0x5f, 0x6e, 0x7d, 0x84, 0x8e, 0x97, 0xa2, 0xa7, 0x99, 0x93, 0x9e, 0x98, 0x9e, 0xa7, 0xad, 0xaa, 0x9e, 0x8e, 0x85, 0x7d, 0x86, 0x83, 0x72, 0x6a, 0x74, 0x7c, 0x7c, 0x42, 0x46, 0x4e, 0x56, 0x5b, 0x60, 0x67, 0x6e, 0x65, 0x68, 0x64, 0x5c, 0x5d, 0x67, 0x69, 0x63, 0x69, 0x66, 0x60, 0x5c, 0x5e, 0x60, 0x58, 0x4d, 0x5b, 0x5c, 0x5d, 0x60, 0x62, 0x63, 0x62, 0x60, 0x60, 0x61, 0x63, 0x6a, 0x72, 0x77, 0x73, 0x6c, 0x69, 0x6d, 0x72, 0x74, 0x76, 0x76, 0x73, 0x6f, 0x74, 0x77, 0x75, 0x6b, 0x62, 0x63, 0x6b, 0x72, 0x6d, 0x69, 0x65, 0x66, 0x6a, 0x6c, 0x6a, 0x66, 0x62, 0x65, 0x68, 0x69, 0x6e, 0x74, 0x73, 0x6e, 0x6a, 0x70, 0x77, 0x79, 0x76, 0x72, 0x70, 0x71, 0x6f, 0x74, 0x7c, 0x7f, 0x79, 0x71, 0x6d, 0x6e, 0x72, 0x70, 0x6c, 0x68, 0x65, 0x65, 0x67, 0x69, 0x69, 0x6e, 0x6d, 0x63, 0x5a, 0x5b, 0x65, 0x6d, 0x75, 0x76, 0x72, 0x6a, 0x6a, 0x70, 0x72, 0x6e, 0x77, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x75, 0x71, 0x72, 0x79, 0x7e, 0x7c, 0x7b, 0x7c, 0x81, 0x87, 0x8d, 0x8c, 0x85, 0x7c, 0x75, 0x73, 0x77, 0x76, 0x77, 0x7a, 0x79, 0x72, 0x6c, 0x69, 0x80, 0x89, 0x90, 0x8d, 0x83, 0x7c, 0x7d, 0x81, 0x83, 0x7f, 0x79, 0x74, 0x71, 0x71, 0x71, 0x71, 0x78, 0x78, 0x72, 0x6a, 0x68, 0x6d, 0x70, 0x70, 0x67, 0x69, 0x6b, 0x6b, 0x6d, 0x71, 0x73, 0x72, 0x7b, 0x7d, 0x80, 0xa3, 0xbd, 0xae, 0xa0, 0x9f, 0xa0, 0xa2, 0xa2, 0xa3, 0xaa, 0xb5, 0xbc, 0xbc, 0xc0, 0xc4, 0xc7, 0xc8, 0xc9, 0xca, 0xca, 0xc9, 0xc8, 0xc7, 0xc7, 0xc5, 0xc4, 0xc3, 0xc2, 0xc2, 0xc0, 0xc1, 0xc3, 0xc4, 0xc3, 0xc1, 0xbe, 0xbc, 0xbe, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb, 0xba, 0xba, 0xb0, 0xae, 0xab, 0xa9, 0xa9, 0xa7, 0xa4, 0xa2, 0xae, 0xb3, 0xb5, 0xb3, 0xb0, 0xb0, 0xb1, 0xb2, 0xae, 0xad, 0xae, 0xb2, 0xb8, 0xbb, 0xb9, 0xb6, 0xae, 0xac, 0xaa, 0xaa, 0xa9, 0xa5, 0x9d, 0x97, 0x90, 0x8b, 0x8c, 0x8d, 0xa4, 0xa9, 0xb3, 0xb9, 0xb2, 0xa8, 0xe0, 0xef, 0xfa, 0xf9, 0xf2, 0xf6, 0xf5, 0xf7, 0xf9, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf8, 0xf4, 0xf4, 0xf3, 0xf4, 0xf5, 0xf8, 0xfa, 0xfc, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfa, 0xfb, 0xfb, 0xfc, 0xfd, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf6, 0xf6, 0xf5, 0xf3, 0xf2, 0xf3, 0xf2, 0xf1, 0xf0, 0xee, 0xee, 0xed, 0xed, 0xec, 0xeb, 0xeb, 0xeb, 0xea, 0xe9, 0xe7, 0xe5, 0xe5, 0xe5, 0xe4, 0xe3, 0xe3, 0xe2, 0xe1, 0xe0, 0xe1, 0xe0, 0xde, 0xdd, 0xdd, 0xde, 0xe0, 0xe1, 0xdd, 0xdd, 0xde, 0xdd, 0xdd, 0xdc, 0xdc, 0xdb, 0xdf, 0xde, 0xde, 0xdd, 0xdc, 0xda, 0xd9, 0xd8, 0xd6, 0xd4, 0xd3, 0xd2, 0xd2, 0xd1, 0xd0, 0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xcb, 0xca, 0xc7, 0xc5, 0xc1, 0xc1, 0xc0, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc3, 0xc2, 0xc2, 0xc2, 0xc2, 0xc0, 0xbb, 0xb7, 0xb5, 0xb4, 0xb4, 0xb5, 0xb7, 0xb9, 0xb9, 0xb9, 0xbd, 0xbc, 0xb8, 0xae, 0x9c, 0x8a, 0x80, 0x7e, 0x7f, 0x83, 0x8d, 0x99, 0x9c, 0x99, 0x98, 0x9a, 0x98, 0x98, 0x97, 0x96, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8a, 0x87, 0x87, 0x85, 0x84, 0x82, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x75, 0x73, 0x6f, 0x6d, 0x6a, 0x67, 0x64, 0x62, 0x5e, 0x5c, 0x57, 0x52, 0x4c, 0x48, 0x46, 0x43, 0x3e, 0x3a, 0x32, 0x31, 0x32, 0x30, 0x26, 0x20, 0x28, 0x36, 0x57, 0x70, 0x82, 0x81, 0x7d, 0x7c, 0x71, 0x62, 0x4b, 0x44, 0x40, 0x46, 0x53, 0x5b, 0x5a, 0x54, 0x5f, 0x60, 0x62, 0x60, 0x55, 0x48, 0x43, 0x45, 0x44, 0x3d, 0x39, 0x39, 0x36, 0x2d, 0x23, 0x1f, 0x27, 0x2f, 0x34, 0x30, 0x2c, 0x30, 0x3a, 0x43, 0x49, 0x4a, 0x55, 0x62, 0x5b, 0x42, 0x31, 0x2f, 0x3f, 0x5a, 0x76, 0x84, 0x7e, 0x69, 0x5e, 0x63, 0x5b, 0x4a, 0x44, 0x51, 0x5b, 0x55, 0x4b, 0x48, 0x69, 0x87, 0x73, 0x43, 0x3f, 0x53, 0x53, 0x49, 0x3d, 0x43, 0x4d, 0x46, 0x3f, 0x3c, 0x30, 0x2c, 0x43, 0x3b, 0x3e, 0x52, 0x66, 0x62, 0x48, 0x30, 0x23, 0x30, 0x3d, 0x50, 0x70, 0x84, 0x83, 0x7c, 0x89, 0x91, 0x8d, 0x86, 0x8a, 0x93, 0x9b, 0xa5, 0xa5, 0x99, 0x8e, 0x86, 0x79, 0x69, 0x62, 0x63, 0x6b, 0x5c, 0x56, 0x64, 0x75, 0x79, 0x75, 0x72, 0x44, 0x45, 0x4a, 0x54, 0x5e, 0x67, 0x6c, 0x6f, 0x71, 0x74, 0x6f, 0x65, 0x63, 0x68, 0x65, 0x5c, 0x63, 0x5e, 0x58, 0x59, 0x61, 0x6b, 0x6f, 0x6e, 0x69, 0x67, 0x65, 0x62, 0x60, 0x5f, 0x5e, 0x5e, 0x73, 0x6e, 0x69, 0x68, 0x6b, 0x6c, 0x69, 0x65, 0x64, 0x65, 0x67, 0x6c, 0x73, 0x78, 0x7a, 0x79, 0x7e, 0x7f, 0x7b, 0x70, 0x68, 0x66, 0x6a, 0x6d, 0x6c, 0x69, 0x68, 0x6a, 0x6a, 0x66, 0x60, 0x5c, 0x5e, 0x61, 0x63, 0x64, 0x67, 0x6a, 0x67, 0x62, 0x65, 0x6c, 0x75, 0x77, 0x74, 0x71, 0x71, 0x73, 0x77, 0x7b, 0x7d, 0x7a, 0x72, 0x6d, 0x6e, 0x72, 0x71, 0x6f, 0x6a, 0x67, 0x65, 0x66, 0x68, 0x6a, 0x6d, 0x75, 0x79, 0x71, 0x67, 0x68, 0x72, 0x7c, 0x80, 0x7b, 0x74, 0x6f, 0x70, 0x72, 0x6f, 0x69, 0x74, 0x74, 0x73, 0x74, 0x76, 0x75, 0x6d, 0x65, 0x6d, 0x6c, 0x6f, 0x72, 0x73, 0x6f, 0x6e, 0x70, 0x82, 0x86, 0x8a, 0x88, 0x81, 0x7b, 0x78, 0x78, 0x77, 0x73, 0x73, 0x78, 0x7a, 0x74, 0x6e, 0x6b, 0x7b, 0x82, 0x8c, 0x94, 0x96, 0x91, 0x8a, 0x85, 0x8c, 0x8a, 0x86, 0x81, 0x7e, 0x7d, 0x7d, 0x7e, 0x7d, 0x78, 0x6e, 0x66, 0x65, 0x69, 0x6e, 0x71, 0x79, 0x73, 0x6d, 0x6d, 0x72, 0x75, 0x74, 0x70, 0x78, 0x79, 0x80, 0x9f, 0xb9, 0xaf, 0xa1, 0xa4, 0xa0, 0x9e, 0x9c, 0xa1, 0xad, 0xb9, 0xbe, 0xbd, 0xc3, 0xc7, 0xca, 0xcb, 0xcb, 0xcc, 0xcb, 0xc8, 0xc7, 0xc6, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc2, 0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbc, 0xbc, 0xb9, 0xb6, 0xb3, 0xb2, 0xb2, 0xb1, 0xae, 0xac, 0xa8, 0xa9, 0xaa, 0xab, 0xae, 0xb1, 0xb3, 0xb3, 0xaf, 0xad, 0xac, 0xb0, 0xb5, 0xb9, 0xb9, 0xb7, 0xb3, 0xb1, 0xae, 0xac, 0xab, 0xa7, 0xa2, 0x9d, 0x93, 0x8c, 0x8a, 0x8a, 0xa3, 0xa9, 0xaf, 0xb0, 0xaf, 0x97, 0xc6, 0xeb, 0xf3, 0xf3, 0xf7, 0xf4, 0xf6, 0xf8, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf9, 0xfb, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf7, 0xf7, 0xf6, 0xf4, 0xf3, 0xf3, 0xf2, 0xf1, 0xef, 0xee, 0xee, 0xed, 0xed, 0xea, 0xea, 0xea, 0xea, 0xea, 0xe8, 0xe7, 0xe6, 0xe7, 0xe6, 0xe4, 0xe3, 0xe3, 0xe3, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe1, 0xe1, 0xe2, 0xe2, 0xe2, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xdd, 0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xda, 0xd7, 0xd5, 0xd4, 0xd3, 0xd3, 0xd2, 0xd1, 0xd0, 0xcf, 0xce, 0xcd, 0xcc, 0xcb, 0xc9, 0xc6, 0xc4, 0xc1, 0xc0, 0xbf, 0xbf, 0xc0, 0xc2, 0xc2, 0xc3, 0xc2, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbb, 0xb8, 0xb3, 0xb3, 0xb2, 0xb4, 0xb6, 0xb8, 0xb8, 0xb8, 0xba, 0xba, 0xb5, 0xa9, 0x99, 0x8d, 0x88, 0x88, 0x90, 0x92, 0x96, 0x9b, 0x9b, 0x98, 0x98, 0x9c, 0x97, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8d, 0x8c, 0x8a, 0x88, 0x87, 0x86, 0x84, 0x82, 0x80, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x75, 0x73, 0x71, 0x6d, 0x6a, 0x67, 0x64, 0x61, 0x5f, 0x5b, 0x59, 0x55, 0x50, 0x4a, 0x46, 0x44, 0x41, 0x3d, 0x3a, 0x34, 0x32, 0x30, 0x2d, 0x25, 0x26, 0x3d, 0x57, 0x77, 0x7a, 0x73, 0x61, 0x53, 0x4d, 0x47, 0x40, 0x52, 0x53, 0x50, 0x4b, 0x49, 0x4e, 0x56, 0x5c, 0x55, 0x54, 0x53, 0x50, 0x47, 0x3f, 0x3d, 0x40, 0x3f, 0x3c, 0x3b, 0x3a, 0x33, 0x2c, 0x2f, 0x38, 0x42, 0x4e, 0x53, 0x46, 0x36, 0x32, 0x36, 0x3a, 0x45, 0x59, 0x5d, 0x47, 0x34, 0x3a, 0x4b, 0x53, 0x71, 0x7d, 0x7c, 0x70, 0x68, 0x5a, 0x44, 0x35, 0x2f, 0x31, 0x3c, 0x4a, 0x4f, 0x4d, 0x52, 0x5c, 0x87, 0x6c, 0x3d, 0x29, 0x3e, 0x4c, 0x48, 0x4a, 0x3a, 0x36, 0x36, 0x34, 0x34, 0x3b, 0x4b, 0x5d, 0x4f, 0x46, 0x3d, 0x3b, 0x3a, 0x35, 0x2f, 0x2b, 0x42, 0x57, 0x65, 0x69, 0x6e, 0x75, 0x80, 0x8c, 0x80, 0x93, 0x9b, 0x94, 0x91, 0x92, 0x8e, 0x86, 0x72, 0x6a, 0x6a, 0x75, 0x7c, 0x73, 0x5f, 0x50, 0x3f, 0x42, 0x52, 0x69, 0x72, 0x70, 0x75, 0x81, 0x51, 0x50, 0x54, 0x5f, 0x6e, 0x78, 0x79, 0x75, 0x78, 0x79, 0x77, 0x71, 0x69, 0x60, 0x57, 0x50, 0x56, 0x5c, 0x6b, 0x7c, 0x7f, 0x73, 0x66, 0x61, 0x5f, 0x5c, 0x59, 0x57, 0x5a, 0x60, 0x67, 0x6d, 0x6e, 0x6b, 0x68, 0x64, 0x62, 0x62, 0x64, 0x67, 0x66, 0x64, 0x64, 0x67, 0x6d, 0x73, 0x79, 0x7c, 0x7b, 0x7b, 0x79, 0x74, 0x72, 0x72, 0x71, 0x6f, 0x72, 0x6f, 0x6e, 0x6c, 0x67, 0x5f, 0x5c, 0x5d, 0x62, 0x63, 0x63, 0x64, 0x65, 0x65, 0x60, 0x5b, 0x62, 0x69, 0x70, 0x71, 0x6e, 0x6d, 0x70, 0x74, 0x7e, 0x7e, 0x7b, 0x75, 0x70, 0x6e, 0x6f, 0x71, 0x6b, 0x68, 0x65, 0x62, 0x63, 0x65, 0x68, 0x6a, 0x73, 0x77, 0x77, 0x71, 0x6e, 0x76, 0x85, 0x91, 0x86, 0x77, 0x6d, 0x70, 0x74, 0x71, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x73, 0x7b, 0x7b, 0x6f, 0x61, 0x62, 0x65, 0x6a, 0x6e, 0x6d, 0x69, 0x66, 0x66, 0x77, 0x7b, 0x7f, 0x80, 0x7d, 0x7b, 0x7a, 0x7a, 0x75, 0x70, 0x6f, 0x75, 0x7a, 0x79, 0x7b, 0x7f, 0x78, 0x7d, 0x85, 0x8c, 0x8e, 0x8b, 0x84, 0x7e, 0x89, 0x89, 0x87, 0x84, 0x80, 0x7f, 0x7f, 0x81, 0x76, 0x6b, 0x62, 0x62, 0x65, 0x69, 0x74, 0x80, 0x82, 0x74, 0x67, 0x66, 0x6c, 0x6f, 0x6a, 0x62, 0x68, 0x6c, 0x79, 0x96, 0xb3, 0xb0, 0x9e, 0xa0, 0x9e, 0x97, 0x95, 0x9f, 0xb0, 0xbd, 0xc0, 0xbf, 0xc5, 0xc8, 0xc9, 0xc9, 0xca, 0xca, 0xc8, 0xc4, 0xc6, 0xc5, 0xc4, 0xc3, 0xc3, 0xc4, 0xc5, 0xc6, 0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbc, 0xbc, 0xbc, 0xbf, 0xbc, 0xb9, 0xb8, 0xb7, 0xb6, 0xb3, 0xb0, 0xa4, 0xa0, 0x9e, 0xa2, 0xa8, 0xad, 0xae, 0xad, 0xb0, 0xaf, 0xaf, 0xaf, 0xb1, 0xb3, 0xb4, 0xb5, 0xb6, 0xb3, 0xaf, 0xac, 0xa9, 0xa7, 0xa4, 0xa1, 0x99, 0x8f, 0x8a, 0x89, 0xa2, 0xa6, 0xa5, 0x9d, 0x9d, 0x8e, 0xa6, 0xe8, 0xed, 0xed, 0xfa, 0xf2, 0xf8, 0xf8, 0xf9, 0xf9, 0xf8, 0xf8, 0xf9, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xf8, 0xf8, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfd, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf7, 0xf8, 0xf7, 0xf6, 0xf4, 0xf1, 0xf0, 0xef, 0xee, 0xed, 0xec, 0xec, 0xec, 0xe8, 0xe9, 0xea, 0xea, 0xea, 0xe9, 0xe8, 0xe8, 0xe9, 0xe7, 0xe4, 0xe3, 0xe3, 0xe4, 0xe3, 0xe2, 0xe2, 0xe3, 0xe5, 0xe6, 0xe6, 0xe5, 0xe3, 0xe2, 0xe1, 0xe0, 0xe0, 0xdf, 0xde, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdd, 0xdd, 0xdd, 0xdc, 0xdc, 0xdb, 0xd8, 0xd7, 0xd5, 0xd4, 0xd4, 0xd3, 0xd2, 0xd1, 0xcf, 0xce, 0xcd, 0xcd, 0xcc, 0xca, 0xc7, 0xc5, 0xc3, 0xc1, 0xc0, 0xc1, 0xc2, 0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xbd, 0xbc, 0xbd, 0xbe, 0xbc, 0xba, 0xb5, 0xb4, 0xb3, 0xb5, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xb3, 0xa6, 0x99, 0x91, 0x92, 0x95, 0x9c, 0x9b, 0x9a, 0x9b, 0x9a, 0x99, 0x98, 0x99, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x91, 0x91, 0x91, 0x8f, 0x8d, 0x8c, 0x8c, 0x8b, 0x89, 0x88, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x73, 0x71, 0x6f, 0x6b, 0x69, 0x66, 0x62, 0x60, 0x5d, 0x59, 0x57, 0x54, 0x50, 0x4a, 0x46, 0x43, 0x40, 0x3c, 0x39, 0x39, 0x34, 0x2f, 0x29, 0x23, 0x2a, 0x45, 0x61, 0x6a, 0x4b, 0x29, 0x1d, 0x27, 0x38, 0x47, 0x4f, 0x50, 0x55, 0x54, 0x48, 0x3e, 0x41, 0x4d, 0x57, 0x5a, 0x53, 0x4b, 0x46, 0x42, 0x3b, 0x35, 0x32, 0x3a, 0x35, 0x30, 0x2e, 0x2f, 0x35, 0x46, 0x57, 0x4f, 0x4f, 0x4d, 0x50, 0x56, 0x55, 0x43, 0x2e, 0x29, 0x25, 0x28, 0x36, 0x43, 0x4e, 0x5c, 0x69, 0x70, 0x6c, 0x60, 0x53, 0x49, 0x3a, 0x31, 0x33, 0x4f, 0x65, 0x6c, 0x59, 0x4c, 0x56, 0x67, 0x6c, 0x6c, 0x41, 0x28, 0x2e, 0x33, 0x33, 0x41, 0x55, 0x65, 0x5f, 0x5c, 0x64, 0x6b, 0x67, 0x5e, 0x54, 0x43, 0x42, 0x3d, 0x2f, 0x22, 0x23, 0x36, 0x4b, 0x5d, 0x55, 0x4f, 0x5c, 0x72, 0x75, 0x6a, 0x63, 0x7d, 0x79, 0x7a, 0x7c, 0x75, 0x6f, 0x75, 0x7f, 0x82, 0x92, 0x93, 0x74, 0x4c, 0x3b, 0x47, 0x59, 0x6e, 0x90, 0xa2, 0x8d, 0x77, 0x7d, 0x93, 0xa1, 0x4b, 0x4a, 0x4d, 0x57, 0x67, 0x71, 0x6f, 0x67, 0x63, 0x64, 0x69, 0x6d, 0x6a, 0x60, 0x5c, 0x5d, 0x62, 0x5f, 0x66, 0x73, 0x79, 0x7b, 0x85, 0x93, 0x91, 0x89, 0x7d, 0x70, 0x68, 0x66, 0x6a, 0x6d, 0x68, 0x6a, 0x6e, 0x6f, 0x6c, 0x67, 0x68, 0x6b, 0x61, 0x61, 0x63, 0x66, 0x6a, 0x6e, 0x74, 0x7b, 0x79, 0x79, 0x77, 0x75, 0x77, 0x79, 0x77, 0x72, 0x78, 0x75, 0x72, 0x6d, 0x63, 0x5c, 0x5f, 0x68, 0x65, 0x65, 0x65, 0x67, 0x67, 0x66, 0x61, 0x5d, 0x63, 0x67, 0x6a, 0x6a, 0x67, 0x67, 0x6b, 0x6f, 0x77, 0x76, 0x73, 0x6e, 0x6c, 0x6b, 0x69, 0x65, 0x65, 0x62, 0x60, 0x60, 0x62, 0x66, 0x69, 0x6b, 0x70, 0x75, 0x78, 0x79, 0x7d, 0x85, 0x8f, 0x94, 0x84, 0x71, 0x66, 0x6b, 0x6f, 0x6c, 0x6c, 0x73, 0x73, 0x73, 0x73, 0x74, 0x79, 0x79, 0x6e, 0x5f, 0x5e, 0x61, 0x66, 0x6c, 0x6e, 0x6c, 0x68, 0x65, 0x6c, 0x70, 0x77, 0x7d, 0x80, 0x80, 0x7e, 0x7c, 0x82, 0x7b, 0x75, 0x73, 0x6d, 0x69, 0x6f, 0x79, 0x7b, 0x7e, 0x80, 0x7c, 0x75, 0x71, 0x71, 0x74, 0x7c, 0x7d, 0x7d, 0x79, 0x75, 0x73, 0x75, 0x78, 0x71, 0x6d, 0x71, 0x7c, 0x81, 0x7f, 0x83, 0x8c, 0x8b, 0x7b, 0x6c, 0x6b, 0x71, 0x73, 0x6d, 0x66, 0x63, 0x6a, 0x7b, 0x92, 0xb0, 0xb4, 0x9e, 0x9b, 0x99, 0x92, 0x93, 0xa2, 0xb4, 0xbe, 0xc1, 0xc1, 0xc4, 0xc6, 0xc6, 0xc6, 0xc7, 0xc7, 0xc5, 0xc1, 0xc6, 0xc5, 0xc4, 0xc3, 0xc3, 0xc3, 0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xbb, 0xba, 0xba, 0xbc, 0xba, 0xb6, 0xb4, 0xb3, 0xb1, 0xae, 0xab, 0xaa, 0xa3, 0x9f, 0xa2, 0xa7, 0xa9, 0xa9, 0xa8, 0xb1, 0xb3, 0xb4, 0xb4, 0xb3, 0xb3, 0xb5, 0xb7, 0xb5, 0xb2, 0xae, 0xaa, 0xa8, 0xa5, 0xa3, 0xa1, 0x9e, 0x94, 0x8d, 0x88, 0x9f, 0x9f, 0x98, 0x8c, 0x86, 0x84, 0x8c, 0xd7, 0xe8, 0xea, 0xf6, 0xee, 0xf6, 0xf6, 0xf7, 0xf7, 0xf7, 0xf7, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xf9, 0xf8, 0xfa, 0xfa, 0xf9, 0xf8, 0xf7, 0xf7, 0xf6, 0xf6, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf8, 0xf9, 0xf8, 0xf7, 0xf7, 0xf8, 0xf7, 0xf6, 0xf4, 0xee, 0xee, 0xed, 0xec, 0xeb, 0xea, 0xea, 0xea, 0xe8, 0xe9, 0xeb, 0xeb, 0xea, 0xe9, 0xe8, 0xe8, 0xe8, 0xe6, 0xe3, 0xe3, 0xe4, 0xe5, 0xe4, 0xe2, 0xe2, 0xe3, 0xe5, 0xe6, 0xe6, 0xe5, 0xe3, 0xe2, 0xe0, 0xdf, 0xde, 0xdc, 0xdb, 0xda, 0xd9, 0xd9, 0xda, 0xda, 0xdb, 0xdc, 0xdc, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xd6, 0xd5, 0xd5, 0xd4, 0xd2, 0xd1, 0xd0, 0xcf, 0xce, 0xce, 0xcd, 0xcc, 0xc9, 0xc7, 0xc5, 0xc3, 0xc1, 0xc2, 0xc4, 0xc6, 0xc5, 0xc4, 0xc3, 0xc0, 0xbd, 0xbc, 0xbd, 0xbf, 0xbe, 0xbd, 0xb7, 0xb6, 0xb6, 0xb6, 0xb8, 0xb9, 0xba, 0xb9, 0xba, 0xba, 0xb3, 0xa4, 0x96, 0x93, 0x99, 0x9e, 0x9e, 0x9d, 0x9c, 0x9c, 0x9d, 0x9b, 0x97, 0x94, 0x97, 0x97, 0x96, 0x95, 0x93, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x8b, 0x89, 0x88, 0x85, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x73, 0x72, 0x70, 0x6e, 0x6d, 0x6a, 0x67, 0x64, 0x60, 0x5e, 0x5a, 0x57, 0x54, 0x51, 0x4e, 0x4a, 0x46, 0x42, 0x3e, 0x3b, 0x38, 0x37, 0x32, 0x2d, 0x2a, 0x2d, 0x38, 0x4c, 0x5c, 0x3d, 0x39, 0x41, 0x57, 0x64, 0x5f, 0x55, 0x51, 0x52, 0x55, 0x51, 0x45, 0x3c, 0x3e, 0x45, 0x4a, 0x48, 0x50, 0x57, 0x54, 0x4c, 0x47, 0x4a, 0x4f, 0x45, 0x42, 0x40, 0x45, 0x4e, 0x57, 0x5c, 0x5d, 0x57, 0x4b, 0x44, 0x52, 0x6c, 0x78, 0x6a, 0x55, 0x45, 0x3a, 0x42, 0x5c, 0x66, 0x5a, 0x57, 0x62, 0x66, 0x58, 0x4e, 0x4a, 0x33, 0x17, 0x25, 0x50, 0x7c, 0x83, 0x7e, 0x6a, 0x59, 0x5a, 0x65, 0x6e, 0x48, 0x2a, 0x2a, 0x3f, 0x4e, 0x68, 0x84, 0x89, 0x6e, 0x72, 0x69, 0x67, 0x69, 0x68, 0x60, 0x4a, 0x3d, 0x32, 0x27, 0x24, 0x27, 0x2d, 0x34, 0x39, 0x31, 0x35, 0x3a, 0x44, 0x50, 0x55, 0x63, 0x76, 0x6f, 0x6d, 0x72, 0x76, 0x75, 0x7b, 0x83, 0x83, 0x7f, 0x79, 0x6e, 0x68, 0x70, 0x7f, 0x84, 0x80, 0x89, 0x76, 0x5f, 0x5f, 0x7c, 0x95, 0x8a, 0x6e, 0x55, 0x54, 0x53, 0x58, 0x64, 0x70, 0x72, 0x6d, 0x5e, 0x5e, 0x61, 0x67, 0x6a, 0x69, 0x6b, 0x6f, 0x66, 0x66, 0x6a, 0x6e, 0x6e, 0x6e, 0x74, 0x7c, 0x72, 0x6e, 0x68, 0x62, 0x60, 0x64, 0x6c, 0x72, 0x75, 0x76, 0x7a, 0x7e, 0x7a, 0x6f, 0x66, 0x63, 0x62, 0x64, 0x68, 0x6a, 0x68, 0x68, 0x70, 0x79, 0x7f, 0x7d, 0x79, 0x75, 0x75, 0x77, 0x77, 0x75, 0x78, 0x75, 0x72, 0x6e, 0x65, 0x5d, 0x60, 0x69, 0x65, 0x63, 0x63, 0x66, 0x67, 0x65, 0x62, 0x5f, 0x66, 0x67, 0x68, 0x68, 0x66, 0x67, 0x6a, 0x6d, 0x74, 0x74, 0x72, 0x6e, 0x6e, 0x6f, 0x6b, 0x66, 0x66, 0x65, 0x63, 0x64, 0x68, 0x6c, 0x6f, 0x70, 0x77, 0x7e, 0x85, 0x8a, 0x8e, 0x91, 0x90, 0x8d, 0x7e, 0x73, 0x6c, 0x6b, 0x6a, 0x66, 0x69, 0x70, 0x77, 0x7c, 0x7d, 0x7b, 0x7a, 0x78, 0x6e, 0x63, 0x63, 0x63, 0x65, 0x69, 0x6e, 0x70, 0x6d, 0x69, 0x67, 0x69, 0x6f, 0x77, 0x7f, 0x83, 0x82, 0x80, 0x84, 0x7d, 0x74, 0x6a, 0x59, 0x4e, 0x55, 0x64, 0x71, 0x72, 0x72, 0x70, 0x6c, 0x6d, 0x73, 0x78, 0x77, 0x7a, 0x7d, 0x7b, 0x75, 0x71, 0x72, 0x73, 0x6b, 0x72, 0x80, 0x8d, 0x92, 0x8e, 0x8c, 0x8d, 0x82, 0x75, 0x68, 0x66, 0x6a, 0x6a, 0x67, 0x65, 0x6e, 0x73, 0x7e, 0x87, 0xa4, 0xb1, 0x9b, 0x96, 0x92, 0x91, 0x99, 0xab, 0xb9, 0xbd, 0xc0, 0xc3, 0xc3, 0xc5, 0xc5, 0xc4, 0xc6, 0xc8, 0xc6, 0xc3, 0xc7, 0xc6, 0xc5, 0xc4, 0xc2, 0xc1, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb, 0xbb, 0xbd, 0xbb, 0xb8, 0xb8, 0xb8, 0xb8, 0xb5, 0xb3, 0xaf, 0xa9, 0xa4, 0xa4, 0xa4, 0xa3, 0xa4, 0xa6, 0xae, 0xb0, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb8, 0xb4, 0xb2, 0xb0, 0xad, 0xaa, 0xa6, 0xa3, 0xa0, 0x9f, 0x98, 0x91, 0x89, 0x9c, 0x9a, 0x94, 0x88, 0x7c, 0x7a, 0x7e, 0xb6, 0xdf, 0xe5, 0xeb, 0xe9, 0xef, 0xf1, 0xf4, 0xf6, 0xf6, 0xf7, 0xf8, 0xf9, 0xf9, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf6, 0xf6, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xf8, 0xf9, 0xfa, 0xfa, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf7, 0xf9, 0xf8, 0xf7, 0xf6, 0xf6, 0xf6, 0xf4, 0xf2, 0xef, 0xee, 0xed, 0xec, 0xec, 0xeb, 0xeb, 0xeb, 0xe9, 0xeb, 0xec, 0xeb, 0xe9, 0xe7, 0xe6, 0xe7, 0xe5, 0xe3, 0xe1, 0xe2, 0xe4, 0xe5, 0xe4, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xdf, 0xde, 0xdc, 0xdb, 0xd9, 0xd9, 0xd8, 0xd8, 0xda, 0xdb, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xdd, 0xdc, 0xda, 0xd8, 0xd6, 0xd5, 0xd4, 0xd2, 0xd1, 0xd0, 0xcf, 0xcf, 0xcf, 0xcf, 0xce, 0xcc, 0xca, 0xc6, 0xc3, 0xc2, 0xc3, 0xc6, 0xc7, 0xc6, 0xc4, 0xc2, 0xbf, 0xbd, 0xbe, 0xbf, 0xc0, 0xbf, 0xbd, 0xb7, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xbb, 0xba, 0xb0, 0x9e, 0x90, 0x8f, 0x97, 0x9e, 0x9c, 0x9c, 0x9c, 0x9b, 0x9b, 0x9a, 0x97, 0x94, 0x96, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8b, 0x8a, 0x8a, 0x89, 0x87, 0x86, 0x84, 0x83, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x76, 0x75, 0x72, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x67, 0x65, 0x61, 0x5e, 0x5b, 0x57, 0x54, 0x51, 0x4e, 0x4c, 0x49, 0x46, 0x43, 0x3f, 0x3b, 0x39, 0x32, 0x2f, 0x2a, 0x2c, 0x39, 0x49, 0x52, 0x53, 0x53, 0x5b, 0x67, 0x6d, 0x66, 0x59, 0x56, 0x5c, 0x6b, 0x67, 0x57, 0x3f, 0x30, 0x30, 0x36, 0x3a, 0x3e, 0x4a, 0x53, 0x4e, 0x42, 0x3a, 0x3d, 0x42, 0x52, 0x59, 0x61, 0x68, 0x71, 0x73, 0x69, 0x5c, 0x50, 0x44, 0x3e, 0x49, 0x60, 0x73, 0x7b, 0x7c, 0x71, 0x79, 0x6d, 0x50, 0x44, 0x4f, 0x53, 0x4a, 0x4d, 0x41, 0x25, 0x0c, 0x0a, 0x18, 0x2b, 0x3c, 0x66, 0x7c, 0x83, 0x75, 0x73, 0x7f, 0x78, 0x62, 0x2f, 0x1f, 0x23, 0x39, 0x51, 0x6c, 0x75, 0x66, 0x88, 0x8d, 0x7d, 0x6d, 0x57, 0x41, 0x38, 0x27, 0x34, 0x2a, 0x1e, 0x19, 0x1c, 0x2a, 0x3d, 0x4c, 0x5e, 0x5e, 0x5b, 0x5e, 0x67, 0x66, 0x61, 0x62, 0x67, 0x64, 0x62, 0x5e, 0x65, 0x7f, 0x8b, 0x7d, 0x92, 0x84, 0x78, 0x7a, 0x87, 0x8d, 0x83, 0x76, 0x56, 0x56, 0x59, 0x5a, 0x50, 0x43, 0x42, 0x4a, 0x5b, 0x58, 0x52, 0x50, 0x58, 0x67, 0x70, 0x72, 0x6a, 0x66, 0x60, 0x5c, 0x5b, 0x5d, 0x5f, 0x5f, 0x5c, 0x61, 0x64, 0x63, 0x65, 0x6a, 0x6e, 0x6f, 0x75, 0x73, 0x6f, 0x6a, 0x68, 0x6a, 0x6f, 0x74, 0x68, 0x68, 0x6f, 0x7b, 0x81, 0x7c, 0x72, 0x6b, 0x6f, 0x70, 0x71, 0x6e, 0x66, 0x62, 0x6a, 0x75, 0x80, 0x7f, 0x79, 0x72, 0x70, 0x73, 0x77, 0x79, 0x74, 0x72, 0x72, 0x71, 0x69, 0x5d, 0x5c, 0x61, 0x62, 0x60, 0x60, 0x62, 0x64, 0x62, 0x5f, 0x5d, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6e, 0x70, 0x6f, 0x6f, 0x6c, 0x68, 0x69, 0x6c, 0x6b, 0x67, 0x6c, 0x6b, 0x6a, 0x6c, 0x70, 0x74, 0x76, 0x77, 0x7e, 0x80, 0x81, 0x81, 0x82, 0x83, 0x82, 0x80, 0x78, 0x79, 0x77, 0x70, 0x68, 0x63, 0x64, 0x67, 0x6b, 0x77, 0x80, 0x7f, 0x7c, 0x7a, 0x73, 0x6b, 0x6b, 0x68, 0x64, 0x66, 0x6d, 0x71, 0x70, 0x6c, 0x66, 0x64, 0x66, 0x6d, 0x77, 0x7f, 0x82, 0x81, 0x7e, 0x7b, 0x77, 0x6d, 0x5b, 0x50, 0x5b, 0x6e, 0x76, 0x72, 0x6d, 0x6c, 0x6e, 0x70, 0x6e, 0x6b, 0x6b, 0x72, 0x79, 0x79, 0x73, 0x6b, 0x68, 0x67, 0x60, 0x6a, 0x74, 0x79, 0x7e, 0x86, 0x8b, 0x8c, 0x89, 0x7e, 0x75, 0x72, 0x72, 0x71, 0x72, 0x74, 0x76, 0x77, 0x78, 0x75, 0x90, 0xa5, 0x92, 0x8e, 0x8d, 0x91, 0xa0, 0xb3, 0xbd, 0xbc, 0xbe, 0xc5, 0xc4, 0xc5, 0xc5, 0xc5, 0xc7, 0xca, 0xc9, 0xc6, 0xc8, 0xc7, 0xc6, 0xc4, 0xc2, 0xc0, 0xbe, 0xbd, 0xc0, 0xc1, 0xc3, 0xc4, 0xc3, 0xc1, 0xbf, 0xbd, 0xbe, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbd, 0xb6, 0xb4, 0xb3, 0xb5, 0xb7, 0xb9, 0xb8, 0xb6, 0xab, 0xa7, 0xa4, 0xa2, 0x9e, 0x9a, 0x9d, 0xa4, 0xa4, 0xa6, 0xaa, 0xae, 0xb1, 0xb3, 0xb3, 0xb3, 0xb5, 0xb5, 0xb4, 0xb3, 0xaf, 0xaa, 0xa5, 0xa1, 0x9e, 0x99, 0x94, 0x8b, 0x9b, 0x99, 0x96, 0x8e, 0x7f, 0x74, 0x79, 0x97, 0xd5, 0xe0, 0xe0, 0xe6, 0xea, 0xed, 0xf2, 0xf5, 0xf7, 0xf7, 0xf7, 0xf8, 0xf8, 0xf9, 0xfb, 0xfc, 0xfd, 0xfc, 0xfa, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf6, 0xf6, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xfa, 0xf9, 0xfa, 0xfb, 0xfb, 0xfa, 0xf9, 0xf7, 0xf6, 0xf7, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf7, 0xf9, 0xf8, 0xf6, 0xf6, 0xf5, 0xf4, 0xf1, 0xf0, 0xf1, 0xf0, 0xef, 0xee, 0xee, 0xed, 0xed, 0xed, 0xea, 0xec, 0xec, 0xeb, 0xe8, 0xe5, 0xe4, 0xe5, 0xe2, 0xe0, 0xdf, 0xe1, 0xe4, 0xe6, 0xe4, 0xe2, 0xe2, 0xe1, 0xe0, 0xdf, 0xdf, 0xe0, 0xe1, 0xe2, 0xdf, 0xde, 0xdc, 0xdb, 0xda, 0xd9, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xdd, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdb, 0xd9, 0xd7, 0xd5, 0xd4, 0xd2, 0xd1, 0xd0, 0xd0, 0xcf, 0xd0, 0xd0, 0xcf, 0xcd, 0xcb, 0xc6, 0xc4, 0xc2, 0xc3, 0xc6, 0xc8, 0xc6, 0xc4, 0xbf, 0xbe, 0xbd, 0xbe, 0xc0, 0xc0, 0xbe, 0xbc, 0xb6, 0xb5, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5, 0xba, 0xb8, 0xad, 0x99, 0x8a, 0x89, 0x92, 0x99, 0x9b, 0x9c, 0x9a, 0x97, 0x96, 0x96, 0x97, 0x98, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x8c, 0x8a, 0x88, 0x87, 0x87, 0x86, 0x84, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7a, 0x7a, 0x76, 0x73, 0x71, 0x6e, 0x6d, 0x6b, 0x69, 0x67, 0x65, 0x62, 0x5f, 0x5b, 0x58, 0x55, 0x51, 0x4f, 0x4b, 0x4b, 0x49, 0x47, 0x44, 0x40, 0x3d, 0x3b, 0x34, 0x2f, 0x28, 0x2b, 0x3c, 0x4e, 0x50, 0x47, 0x54, 0x60, 0x6a, 0x67, 0x5b, 0x4e, 0x48, 0x47, 0x53, 0x5d, 0x5e, 0x4e, 0x3b, 0x30, 0x2c, 0x2a, 0x29, 0x26, 0x27, 0x30, 0x40, 0x49, 0x46, 0x3f, 0x44, 0x53, 0x5e, 0x61, 0x64, 0x68, 0x62, 0x57, 0x50, 0x45, 0x40, 0x4b, 0x5d, 0x6d, 0x7a, 0x83, 0x7c, 0x5a, 0x43, 0x48, 0x4c, 0x43, 0x3e, 0x43, 0x23, 0x1c, 0x14, 0x13, 0x13, 0x0d, 0x12, 0x22, 0x3c, 0x53, 0x6f, 0x81, 0x8c, 0x87, 0x6c, 0x4f, 0x2f, 0x2a, 0x2e, 0x3c, 0x4b, 0x5a, 0x6e, 0x7e, 0x73, 0x6a, 0x58, 0x5a, 0x4f, 0x35, 0x32, 0x2d, 0x1b, 0x19, 0x1b, 0x25, 0x37, 0x4d, 0x64, 0x75, 0x82, 0x7c, 0x6a, 0x5d, 0x61, 0x62, 0x57, 0x4d, 0x3f, 0x3d, 0x56, 0x7a, 0x8e, 0x94, 0x8b, 0x77, 0x61, 0x63, 0x6d, 0x79, 0x77, 0x63, 0x4c, 0x40, 0x46, 0x53, 0x62, 0x6a, 0x6c, 0x6e, 0x6e, 0x6e, 0x53, 0x58, 0x56, 0x53, 0x57, 0x5c, 0x64, 0x6f, 0x69, 0x5d, 0x55, 0x59, 0x5e, 0x5e, 0x5f, 0x62, 0x60, 0x60, 0x62, 0x63, 0x64, 0x64, 0x65, 0x65, 0x63, 0x71, 0x76, 0x72, 0x6f, 0x6b, 0x68, 0x6b, 0x67, 0x66, 0x6e, 0x7a, 0x7d, 0x75, 0x6d, 0x6a, 0x67, 0x6d, 0x6f, 0x69, 0x63, 0x66, 0x6f, 0x76, 0x83, 0x80, 0x7c, 0x76, 0x72, 0x6f, 0x6d, 0x6b, 0x6b, 0x6d, 0x72, 0x73, 0x6f, 0x67, 0x60, 0x5d, 0x64, 0x5f, 0x5c, 0x5e, 0x61, 0x64, 0x6a, 0x71, 0x70, 0x6e, 0x68, 0x65, 0x68, 0x72, 0x79, 0x7c, 0x79, 0x70, 0x6b, 0x6c, 0x6c, 0x67, 0x66, 0x69, 0x6e, 0x71, 0x6c, 0x6a, 0x72, 0x6f, 0x6b, 0x74, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7c, 0x78, 0x77, 0x73, 0x6d, 0x69, 0x66, 0x66, 0x66, 0x65, 0x68, 0x6f, 0x74, 0x75, 0x73, 0x71, 0x70, 0x79, 0x76, 0x6f, 0x69, 0x68, 0x6b, 0x6a, 0x66, 0x69, 0x68, 0x69, 0x6d, 0x73, 0x75, 0x72, 0x6f, 0x7b, 0x77, 0x74, 0x6f, 0x64, 0x5b, 0x5f, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x68, 0x6a, 0x71, 0x79, 0x78, 0x6d, 0x62, 0x5e, 0x67, 0x68, 0x75, 0x77, 0x84, 0x8e, 0x9f, 0x9c, 0x8b, 0x87, 0x7f, 0x76, 0x73, 0x77, 0x7c, 0x7f, 0x76, 0x70, 0x72, 0x7a, 0x87, 0x95, 0x98, 0x8d, 0x8f, 0x95, 0xa4, 0xb7, 0xc1, 0xc1, 0xc2, 0xc4, 0xc4, 0xc5, 0xc6, 0xc7, 0xc7, 0xc8, 0xc7, 0xc7, 0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc2, 0xc2, 0xc1, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xc1, 0xc0, 0xbe, 0xbc, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb2, 0xb2, 0xb1, 0xad, 0xa8, 0xa4, 0xa2, 0xa2, 0x9f, 0xa4, 0xa9, 0xad, 0xad, 0xae, 0xb1, 0xb3, 0xb8, 0xb8, 0xb6, 0xb5, 0xb4, 0xb1, 0xa9, 0xa1, 0x9e, 0x9a, 0x94, 0x92, 0x96, 0x9a, 0x98, 0x92, 0x80, 0x76, 0x76, 0x86, 0xd1, 0xd8, 0xe1, 0xe7, 0xec, 0xf0, 0xf5, 0xf7, 0xf6, 0xf6, 0xf8, 0xfa, 0xf7, 0xf9, 0xfb, 0xfd, 0xfe, 0xfd, 0xfc, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf8, 0xf8, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xf9, 0xf8, 0xf8, 0xf9, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf7, 0xf6, 0xf4, 0xf2, 0xf1, 0xee, 0xed, 0xec, 0xeb, 0xea, 0xeb, 0xeb, 0xec, 0xec, 0xeb, 0xeb, 0xe9, 0xe7, 0xe5, 0xe3, 0xe1, 0xe2, 0xe1, 0xe0, 0xdf, 0xde, 0xdd, 0xdd, 0xdd, 0xe0, 0xdf, 0xde, 0xde, 0xdf, 0xe0, 0xe1, 0xe0, 0xdf, 0xde, 0xdd, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdd, 0xdb, 0xd7, 0xd5, 0xd5, 0xd4, 0xd3, 0xd2, 0xd1, 0xd2, 0xd1, 0xcf, 0xcf, 0xd0, 0xce, 0xca, 0xc7, 0xc5, 0xc4, 0xc4, 0xc6, 0xc6, 0xc5, 0xc4, 0xc0, 0xc0, 0xc0, 0xbf, 0xbd, 0xbb, 0xbb, 0xbb, 0xb6, 0xb4, 0xb3, 0xb5, 0xb8, 0xb9, 0xb5, 0xb2, 0xb5, 0xaf, 0xaa, 0x97, 0x82, 0x84, 0x93, 0x95, 0x9b, 0x9a, 0x9a, 0x99, 0x97, 0x96, 0x94, 0x94, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x87, 0x87, 0x84, 0x81, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x75, 0x70, 0x6d, 0x6c, 0x6a, 0x67, 0x64, 0x61, 0x60, 0x5d, 0x5a, 0x56, 0x53, 0x50, 0x4f, 0x4a, 0x49, 0x48, 0x47, 0x44, 0x40, 0x3a, 0x36, 0x35, 0x2e, 0x28, 0x2c, 0x3b, 0x49, 0x4a, 0x44, 0x4a, 0x4e, 0x53, 0x59, 0x5e, 0x5c, 0x55, 0x4d, 0x47, 0x4a, 0x4e, 0x47, 0x3a, 0x36, 0x32, 0x29, 0x25, 0x32, 0x3c, 0x42, 0x49, 0x45, 0x3a, 0x35, 0x3a, 0x41, 0x49, 0x4f, 0x53, 0x55, 0x54, 0x51, 0x50, 0x49, 0x4f, 0x5d, 0x5a, 0x47, 0x3f, 0x45, 0x3a, 0x3f, 0x3d, 0x37, 0x36, 0x39, 0x36, 0x2e, 0x31, 0x18, 0x1c, 0x1e, 0x14, 0x16, 0x16, 0x13, 0x14, 0x40, 0x6f, 0x85, 0x89, 0x7d, 0x5c, 0x3b, 0x30, 0x3a, 0x3c, 0x33, 0x2d, 0x2f, 0x2f, 0x2b, 0x1a, 0x3c, 0x54, 0x4d, 0x3f, 0x37, 0x2b, 0x1c, 0x1b, 0x1d, 0x24, 0x32, 0x44, 0x56, 0x62, 0x67, 0x62, 0x56, 0x58, 0x6a, 0x6f, 0x59, 0x36, 0x1f, 0x58, 0x83, 0x99, 0x91, 0x88, 0x7d, 0x6d, 0x65, 0x5d, 0x72, 0x73, 0x57, 0x3d, 0x3c, 0x45, 0x48, 0x51, 0x55, 0x57, 0x55, 0x5e, 0x6d, 0x64, 0x49, 0x59, 0x60, 0x5d, 0x54, 0x52, 0x58, 0x67, 0x78, 0x84, 0x76, 0x6a, 0x67, 0x65, 0x61, 0x5f, 0x60, 0x5f, 0x64, 0x69, 0x68, 0x63, 0x5e, 0x5c, 0x5c, 0x5d, 0x68, 0x6a, 0x68, 0x6a, 0x6a, 0x6a, 0x6d, 0x66, 0x65, 0x6a, 0x74, 0x77, 0x70, 0x69, 0x67, 0x66, 0x6b, 0x6d, 0x68, 0x65, 0x6a, 0x76, 0x7f, 0x81, 0x80, 0x7a, 0x73, 0x70, 0x70, 0x6e, 0x6a, 0x6a, 0x6c, 0x6f, 0x70, 0x6d, 0x68, 0x65, 0x63, 0x61, 0x5e, 0x60, 0x66, 0x6c, 0x6e, 0x6f, 0x71, 0x6b, 0x6f, 0x70, 0x6f, 0x70, 0x76, 0x7e, 0x82, 0x83, 0x78, 0x70, 0x71, 0x72, 0x6f, 0x6d, 0x6f, 0x70, 0x71, 0x6f, 0x6d, 0x6d, 0x69, 0x6a, 0x70, 0x72, 0x75, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7f, 0x83, 0x81, 0x7a, 0x71, 0x6a, 0x67, 0x60, 0x68, 0x71, 0x74, 0x72, 0x70, 0x73, 0x79, 0x83, 0x7e, 0x73, 0x67, 0x61, 0x5f, 0x5d, 0x5a, 0x64, 0x66, 0x6b, 0x72, 0x79, 0x7c, 0x7c, 0x7a, 0x6d, 0x6b, 0x6c, 0x6c, 0x66, 0x5e, 0x5f, 0x66, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x74, 0x74, 0x76, 0x77, 0x72, 0x6b, 0x67, 0x68, 0x60, 0x65, 0x80, 0x90, 0x9f, 0x92, 0x7c, 0x5b, 0x65, 0x67, 0x6a, 0x6d, 0x71, 0x72, 0x6e, 0x68, 0x6a, 0x67, 0x6b, 0x73, 0x7e, 0x8d, 0x94, 0x8e, 0x93, 0x9c, 0xad, 0xbd, 0xc4, 0xc2, 0xc2, 0xc4, 0xc4, 0xc5, 0xc8, 0xc9, 0xc9, 0xc8, 0xc5, 0xc4, 0xc7, 0xc6, 0xc4, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xc1, 0xc2, 0xc1, 0xc1, 0xbc, 0xb9, 0xb6, 0xb2, 0xb1, 0xb1, 0xb2, 0xb3, 0xb8, 0xb7, 0xb6, 0xb2, 0xad, 0xa8, 0xa5, 0xa4, 0x9e, 0xa1, 0xa4, 0xa6, 0xa7, 0xa9, 0xad, 0xb0, 0xb5, 0xb6, 0xb6, 0xb4, 0xb3, 0xb0, 0xaa, 0xa4, 0xa2, 0x9d, 0x96, 0x91, 0x93, 0x97, 0x98, 0x95, 0x86, 0x77, 0x72, 0x7e, 0xc3, 0xda, 0xe1, 0xe7, 0xed, 0xf0, 0xf4, 0xf5, 0xf5, 0xf5, 0xf7, 0xf8, 0xf6, 0xf8, 0xfa, 0xfc, 0xfd, 0xfc, 0xfb, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xfa, 0xfb, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfc, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf8, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xfa, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xf7, 0xf6, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf1, 0xf0, 0xef, 0xeb, 0xeb, 0xeb, 0xea, 0xea, 0xea, 0xeb, 0xeb, 0xec, 0xeb, 0xeb, 0xea, 0xe8, 0xe6, 0xe4, 0xe3, 0xdf, 0xde, 0xdd, 0xdc, 0xdc, 0xdb, 0xdb, 0xdb, 0xde, 0xde, 0xde, 0xe0, 0xe2, 0xe2, 0xe1, 0xe0, 0xdc, 0xdb, 0xdb, 0xdb, 0xdd, 0xdf, 0xe2, 0xe4, 0xe2, 0xe3, 0xe3, 0xe3, 0xe2, 0xe1, 0xdf, 0xde, 0xdf, 0xdc, 0xd9, 0xd7, 0xd7, 0xd6, 0xd5, 0xd5, 0xd0, 0xd1, 0xd1, 0xcf, 0xcf, 0xcf, 0xcc, 0xc8, 0xc4, 0xc4, 0xc3, 0xc5, 0xc7, 0xc8, 0xc7, 0xc6, 0xc2, 0xc2, 0xc1, 0xbf, 0xbc, 0xba, 0xb8, 0xb8, 0xb5, 0xb4, 0xb4, 0xb5, 0xb7, 0xb7, 0xb5, 0xb3, 0xb3, 0xaf, 0xa4, 0x8f, 0x80, 0x86, 0x92, 0x95, 0x99, 0x99, 0x99, 0x98, 0x97, 0x95, 0x94, 0x93, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x87, 0x86, 0x85, 0x85, 0x83, 0x81, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x73, 0x6f, 0x6d, 0x6b, 0x6a, 0x67, 0x64, 0x5f, 0x5e, 0x5d, 0x5a, 0x56, 0x52, 0x4e, 0x4b, 0x47, 0x45, 0x44, 0x42, 0x3f, 0x3b, 0x36, 0x32, 0x2c, 0x2e, 0x34, 0x3c, 0x43, 0x45, 0x43, 0x40, 0x4b, 0x51, 0x5c, 0x69, 0x6f, 0x6a, 0x5a, 0x4c, 0x47, 0x41, 0x40, 0x3f, 0x3e, 0x3e, 0x35, 0x24, 0x2f, 0x3f, 0x4a, 0x4b, 0x47, 0x3a, 0x2e, 0x2b, 0x39, 0x39, 0x3b, 0x3e, 0x40, 0x41, 0x43, 0x44, 0x4f, 0x5d, 0x67, 0x61, 0x55, 0x4b, 0x43, 0x3c, 0x2f, 0x31, 0x2f, 0x2b, 0x2e, 0x35, 0x38, 0x36, 0x25, 0x2c, 0x38, 0x28, 0x17, 0x1d, 0x1f, 0x1c, 0x20, 0x4a, 0x78, 0x8a, 0x7f, 0x63, 0x43, 0x2b, 0x33, 0x31, 0x32, 0x36, 0x33, 0x29, 0x25, 0x27, 0x56, 0x57, 0x53, 0x47, 0x3d, 0x34, 0x28, 0x1c, 0x12, 0x1f, 0x31, 0x3f, 0x46, 0x46, 0x43, 0x40, 0x4b, 0x5e, 0x6f, 0x65, 0x45, 0x37, 0x55, 0x7e, 0x95, 0x82, 0x65, 0x5a, 0x61, 0x5d, 0x53, 0x55, 0x53, 0x46, 0x3c, 0x3e, 0x45, 0x4a, 0x4b, 0x4c, 0x4f, 0x54, 0x5a, 0x59, 0x4b, 0x3e, 0x41, 0x4f, 0x4d, 0x58, 0x5c, 0x5c, 0x63, 0x6e, 0x7b, 0x89, 0x86, 0x7a, 0x6e, 0x69, 0x66, 0x61, 0x60, 0x63, 0x66, 0x67, 0x64, 0x5b, 0x51, 0x50, 0x59, 0x63, 0x63, 0x67, 0x65, 0x63, 0x68, 0x6a, 0x68, 0x6a, 0x6b, 0x69, 0x6c, 0x72, 0x74, 0x6e, 0x67, 0x66, 0x67, 0x6b, 0x6b, 0x67, 0x66, 0x6d, 0x78, 0x80, 0x7b, 0x7c, 0x78, 0x70, 0x6f, 0x72, 0x6f, 0x68, 0x70, 0x71, 0x71, 0x6f, 0x6c, 0x69, 0x67, 0x67, 0x68, 0x63, 0x62, 0x67, 0x6c, 0x6c, 0x68, 0x65, 0x66, 0x70, 0x78, 0x79, 0x76, 0x78, 0x7d, 0x81, 0x76, 0x72, 0x73, 0x7b, 0x80, 0x7d, 0x78, 0x76, 0x7b, 0x77, 0x76, 0x73, 0x6a, 0x67, 0x6c, 0x6f, 0x6e, 0x71, 0x76, 0x79, 0x78, 0x76, 0x73, 0x71, 0x71, 0x7b, 0x84, 0x84, 0x7a, 0x6d, 0x64, 0x60, 0x63, 0x6d, 0x76, 0x75, 0x6f, 0x6d, 0x74, 0x7c, 0x7a, 0x75, 0x6c, 0x62, 0x5e, 0x5f, 0x60, 0x60, 0x65, 0x69, 0x6f, 0x76, 0x7c, 0x7f, 0x7e, 0x7c, 0x70, 0x6d, 0x6d, 0x70, 0x6f, 0x6b, 0x6b, 0x6e, 0x6a, 0x6c, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x69, 0x6e, 0x76, 0x79, 0x75, 0x6e, 0x6b, 0x6b, 0x75, 0x7a, 0x8a, 0x85, 0x80, 0x73, 0x73, 0x69, 0x6a, 0x6a, 0x6a, 0x6c, 0x72, 0x75, 0x70, 0x6a, 0x68, 0x66, 0x6b, 0x73, 0x7c, 0x8a, 0x94, 0x93, 0x97, 0xa4, 0xb7, 0xc4, 0xc6, 0xc3, 0xc2, 0xc5, 0xc5, 0xc7, 0xca, 0xcb, 0xca, 0xc7, 0xc3, 0xc0, 0xc3, 0xc2, 0xc2, 0xc4, 0xc7, 0xc9, 0xc8, 0xc7, 0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xc0, 0xc2, 0xc2, 0xc1, 0xc0, 0xc0, 0xbe, 0xba, 0xb6, 0xb4, 0xb3, 0xb4, 0xb5, 0xbb, 0xbc, 0xbc, 0xb9, 0xb5, 0xb0, 0xad, 0xab, 0xa6, 0xa7, 0xa7, 0xa6, 0xa5, 0xa7, 0xab, 0xaf, 0xb1, 0xb4, 0xb5, 0xb4, 0xb2, 0xb1, 0xad, 0xa9, 0xa6, 0xa1, 0x98, 0x90, 0x8f, 0x94, 0x98, 0x9a, 0x92, 0x7d, 0x6f, 0x72, 0xa9, 0xd8, 0xda, 0xe0, 0xed, 0xee, 0xf0, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf5, 0xf7, 0xf9, 0xfb, 0xfc, 0xfb, 0xfa, 0xf9, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfb, 0xfa, 0xf9, 0xf8, 0xf7, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf5, 0xf3, 0xf1, 0xee, 0xef, 0xef, 0xef, 0xef, 0xee, 0xec, 0xec, 0xe9, 0xea, 0xea, 0xeb, 0xec, 0xec, 0xec, 0xec, 0xeb, 0xeb, 0xea, 0xe9, 0xe8, 0xe6, 0xe5, 0xe4, 0xe0, 0xe0, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xe0, 0xe2, 0xe4, 0xe4, 0xe2, 0xe1, 0xdf, 0xde, 0xde, 0xde, 0xdf, 0xe2, 0xe5, 0xe6, 0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe3, 0xe0, 0xde, 0xde, 0xdc, 0xd9, 0xd8, 0xd7, 0xd7, 0xd6, 0xd5, 0xd0, 0xd1, 0xd1, 0xcf, 0xce, 0xcd, 0xca, 0xc5, 0xc2, 0xc2, 0xc3, 0xc6, 0xc8, 0xca, 0xc9, 0xc8, 0xc4, 0xc3, 0xc1, 0xbf, 0xbc, 0xb9, 0xb6, 0xb5, 0xb5, 0xb5, 0xb5, 0xb4, 0xb4, 0xb4, 0xb3, 0xb3, 0xb1, 0xaf, 0x9b, 0x84, 0x7f, 0x89, 0x91, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x89, 0x88, 0x86, 0x85, 0x83, 0x83, 0x82, 0x80, 0x7e, 0x7d, 0x7c, 0x7a, 0x77, 0x75, 0x74, 0x71, 0x6d, 0x6b, 0x6a, 0x69, 0x66, 0x63, 0x5c, 0x5c, 0x5c, 0x5a, 0x56, 0x51, 0x4c, 0x49, 0x47, 0x45, 0x43, 0x40, 0x3d, 0x39, 0x34, 0x31, 0x2b, 0x2b, 0x32, 0x3f, 0x4a, 0x50, 0x56, 0x5b, 0x5d, 0x61, 0x65, 0x65, 0x5f, 0x55, 0x4a, 0x44, 0x34, 0x3b, 0x48, 0x4c, 0x44, 0x3c, 0x36, 0x2c, 0x32, 0x41, 0x48, 0x45, 0x3d, 0x33, 0x34, 0x3f, 0x2e, 0x29, 0x27, 0x2b, 0x2f, 0x33, 0x39, 0x40, 0x48, 0x5c, 0x67, 0x60, 0x56, 0x50, 0x47, 0x3a, 0x40, 0x3e, 0x3c, 0x3b, 0x3c, 0x3e, 0x3f, 0x3f, 0x48, 0x49, 0x45, 0x36, 0x39, 0x42, 0x34, 0x29, 0x4e, 0x6a, 0x86, 0x86, 0x6b, 0x4b, 0x3c, 0x3a, 0x25, 0x30, 0x49, 0x62, 0x6e, 0x6e, 0x71, 0x79, 0x59, 0x54, 0x4d, 0x42, 0x31, 0x22, 0x1e, 0x23, 0x23, 0x30, 0x3f, 0x49, 0x4d, 0x51, 0x57, 0x5c, 0x79, 0x66, 0x53, 0x4a, 0x47, 0x45, 0x49, 0x51, 0x50, 0x51, 0x49, 0x45, 0x4d, 0x51, 0x49, 0x44, 0x3f, 0x44, 0x46, 0x49, 0x53, 0x5c, 0x54, 0x44, 0x4f, 0x51, 0x3e, 0x25, 0x20, 0x2b, 0x40, 0x58, 0x5e, 0x64, 0x63, 0x65, 0x70, 0x78, 0x79, 0x7a, 0x72, 0x6b, 0x64, 0x61, 0x60, 0x5e, 0x60, 0x63, 0x69, 0x66, 0x5e, 0x51, 0x48, 0x4d, 0x5d, 0x6c, 0x6a, 0x6a, 0x64, 0x64, 0x6c, 0x6e, 0x69, 0x69, 0x6e, 0x6c, 0x6e, 0x73, 0x73, 0x6e, 0x67, 0x64, 0x6b, 0x6b, 0x6a, 0x67, 0x68, 0x6c, 0x6f, 0x70, 0x6e, 0x74, 0x75, 0x70, 0x71, 0x74, 0x6f, 0x65, 0x6c, 0x6e, 0x70, 0x6e, 0x6c, 0x6c, 0x6b, 0x6a, 0x71, 0x69, 0x62, 0x62, 0x66, 0x68, 0x65, 0x61, 0x66, 0x71, 0x79, 0x79, 0x75, 0x74, 0x76, 0x79, 0x7a, 0x79, 0x7d, 0x82, 0x83, 0x7f, 0x7b, 0x7a, 0x85, 0x79, 0x77, 0x73, 0x67, 0x67, 0x6f, 0x6f, 0x72, 0x74, 0x76, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x70, 0x79, 0x80, 0x7e, 0x73, 0x68, 0x64, 0x65, 0x6d, 0x73, 0x77, 0x73, 0x6e, 0x6d, 0x72, 0x76, 0x7a, 0x74, 0x6c, 0x65, 0x63, 0x64, 0x63, 0x62, 0x68, 0x68, 0x6b, 0x72, 0x7a, 0x7e, 0x7c, 0x79, 0x7c, 0x76, 0x72, 0x73, 0x74, 0x73, 0x73, 0x75, 0x68, 0x6b, 0x6f, 0x71, 0x72, 0x72, 0x74, 0x75, 0x74, 0x72, 0x70, 0x6d, 0x6d, 0x70, 0x77, 0x7d, 0x80, 0x77, 0x79, 0x72, 0x75, 0x72, 0x7a, 0x74, 0x74, 0x71, 0x6c, 0x6a, 0x6e, 0x72, 0x72, 0x6f, 0x72, 0x6e, 0x71, 0x78, 0x7f, 0x8c, 0x96, 0x96, 0x9a, 0xaa, 0xbc, 0xc4, 0xc3, 0xc1, 0xc3, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xc8, 0xc5, 0xc2, 0xbf, 0xb8, 0xb8, 0xba, 0xbf, 0xc4, 0xc8, 0xc8, 0xc7, 0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc1, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xbf, 0xbc, 0xba, 0xbc, 0xbc, 0xbc, 0xbb, 0xba, 0xb8, 0xb6, 0xb5, 0xb8, 0xba, 0xbc, 0xbc, 0xb9, 0xb6, 0xb4, 0xb2, 0xaf, 0xaf, 0xad, 0xaa, 0xa8, 0xa7, 0xaa, 0xac, 0xaf, 0xb2, 0xb4, 0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xa6, 0xa2, 0x9a, 0x90, 0x8d, 0x92, 0x99, 0x9c, 0x9a, 0x84, 0x6f, 0x6c, 0x94, 0xd6, 0xda, 0xdf, 0xea, 0xea, 0xeb, 0xee, 0xf1, 0xf4, 0xf5, 0xf5, 0xf5, 0xf6, 0xf8, 0xfa, 0xfb, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf7, 0xf7, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf8, 0xf7, 0xf5, 0xf4, 0xf3, 0xf1, 0xee, 0xec, 0xe9, 0xea, 0xea, 0xeb, 0xeb, 0xea, 0xe9, 0xe9, 0xe8, 0xe9, 0xeb, 0xec, 0xed, 0xed, 0xed, 0xed, 0xea, 0xe9, 0xe9, 0xe7, 0xe6, 0xe4, 0xe3, 0xe2, 0xe2, 0xe2, 0xe1, 0xe0, 0xe0, 0xe0, 0xe0, 0xe1, 0xe1, 0xe1, 0xe2, 0xe4, 0xe5, 0xe5, 0xe3, 0xe2, 0xe2, 0xe2, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe1, 0xe2, 0xe2, 0xe0, 0xde, 0xdb, 0xda, 0xda, 0xd8, 0xd6, 0xd5, 0xd5, 0xd5, 0xd4, 0xd3, 0xd1, 0xd2, 0xd2, 0xcf, 0xce, 0xcd, 0xc9, 0xc4, 0xc2, 0xc3, 0xc5, 0xc7, 0xc9, 0xca, 0xca, 0xca, 0xc4, 0xc3, 0xc1, 0xc0, 0xbe, 0xbb, 0xb8, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb2, 0xb1, 0xb2, 0xb2, 0xae, 0xab, 0x91, 0x7a, 0x80, 0x8d, 0x92, 0x97, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x83, 0x82, 0x82, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x78, 0x75, 0x73, 0x71, 0x6e, 0x6b, 0x6a, 0x69, 0x68, 0x65, 0x62, 0x5b, 0x5b, 0x5a, 0x57, 0x54, 0x50, 0x4d, 0x4a, 0x49, 0x46, 0x42, 0x3e, 0x3b, 0x37, 0x33, 0x30, 0x2f, 0x29, 0x2d, 0x41, 0x54, 0x5f, 0x67, 0x6f, 0x64, 0x63, 0x5d, 0x4e, 0x3a, 0x2e, 0x31, 0x3a, 0x50, 0x5f, 0x74, 0x76, 0x60, 0x48, 0x39, 0x2f, 0x39, 0x43, 0x46, 0x40, 0x35, 0x2b, 0x2f, 0x3f, 0x4e, 0x44, 0x3c, 0x39, 0x34, 0x2e, 0x2e, 0x33, 0x41, 0x43, 0x4b, 0x56, 0x57, 0x4c, 0x40, 0x3b, 0x42, 0x41, 0x44, 0x48, 0x47, 0x40, 0x39, 0x36, 0x4d, 0x4d, 0x4c, 0x47, 0x4c, 0x48, 0x45, 0x5e, 0x73, 0x83, 0x89, 0x74, 0x51, 0x3b, 0x3c, 0x46, 0x5f, 0x6f, 0x7b, 0x75, 0x66, 0x5b, 0x56, 0x54, 0x80, 0x86, 0x8c, 0x86, 0x6e, 0x53, 0x45, 0x45, 0x50, 0x58, 0x5f, 0x60, 0x5b, 0x56, 0x57, 0x5a, 0x3e, 0x34, 0x2c, 0x2c, 0x31, 0x38, 0x42, 0x4b, 0x3e, 0x45, 0x4a, 0x4f, 0x5b, 0x5e, 0x4d, 0x39, 0x3d, 0x32, 0x3d, 0x55, 0x53, 0x3a, 0x3b, 0x52, 0x4c, 0x33, 0x1c, 0x29, 0x3d, 0x31, 0x2d, 0x47, 0x6e, 0x74, 0x71, 0x6d, 0x71, 0x73, 0x6e, 0x6a, 0x65, 0x63, 0x61, 0x60, 0x5d, 0x5c, 0x5d, 0x60, 0x64, 0x65, 0x64, 0x5e, 0x58, 0x57, 0x5d, 0x63, 0x67, 0x66, 0x63, 0x67, 0x71, 0x71, 0x6b, 0x69, 0x68, 0x68, 0x6c, 0x72, 0x74, 0x70, 0x6a, 0x66, 0x6f, 0x6d, 0x6a, 0x69, 0x6a, 0x6b, 0x66, 0x5f, 0x60, 0x6a, 0x71, 0x71, 0x71, 0x71, 0x69, 0x5f, 0x5e, 0x65, 0x6c, 0x6f, 0x71, 0x73, 0x73, 0x70, 0x6f, 0x69, 0x62, 0x62, 0x69, 0x6f, 0x71, 0x6f, 0x6d, 0x73, 0x76, 0x74, 0x71, 0x70, 0x72, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6e, 0x72, 0x7b, 0x84, 0x81, 0x72, 0x6c, 0x69, 0x62, 0x67, 0x71, 0x70, 0x79, 0x77, 0x74, 0x71, 0x6e, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x78, 0x74, 0x6b, 0x65, 0x65, 0x69, 0x70, 0x71, 0x70, 0x6e, 0x70, 0x73, 0x72, 0x6e, 0x6d, 0x6a, 0x68, 0x6a, 0x6d, 0x6f, 0x6e, 0x6c, 0x68, 0x64, 0x64, 0x6b, 0x77, 0x7f, 0x7e, 0x7a, 0x79, 0x75, 0x71, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6d, 0x70, 0x73, 0x72, 0x70, 0x6d, 0x6d, 0x6e, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7b, 0x78, 0x75, 0x66, 0x64, 0x71, 0x70, 0x74, 0x6e, 0x73, 0x6e, 0x62, 0x67, 0x6b, 0x6f, 0x73, 0x77, 0x76, 0x73, 0x77, 0x70, 0x71, 0x79, 0x80, 0x8c, 0x96, 0x95, 0x9d, 0xac, 0xbb, 0xbf, 0xbd, 0xbf, 0xc4, 0xc7, 0xc8, 0xc8, 0xc7, 0xc6, 0xc4, 0xc3, 0xc1, 0xc1, 0xb6, 0xb4, 0xb2, 0xb4, 0xb9, 0xbe, 0xc2, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xbf, 0xbe, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xbf, 0xbc, 0xba, 0xb7, 0xb7, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xaf, 0xb3, 0xb5, 0xb8, 0xb8, 0xb7, 0xb5, 0xb3, 0xb2, 0xad, 0xad, 0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa8, 0xab, 0xaf, 0xb1, 0xaf, 0xae, 0xaf, 0xae, 0xac, 0xa2, 0xa1, 0x9b, 0x92, 0x8d, 0x91, 0x98, 0x9c, 0x9b, 0x8a, 0x73, 0x6e, 0x86, 0xd0, 0xe0, 0xe2, 0xe3, 0xe4, 0xe7, 0xeb, 0xf0, 0xf3, 0xf5, 0xf5, 0xf5, 0xf6, 0xf8, 0xfa, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xf9, 0xf9, 0xf9, 0xfa, 0xf9, 0xf9, 0xf8, 0xf7, 0xf5, 0xf3, 0xf1, 0xef, 0xef, 0xee, 0xec, 0xeb, 0xe7, 0xe8, 0xe8, 0xe9, 0xe9, 0xe8, 0xe7, 0xe7, 0xe7, 0xe8, 0xe9, 0xeb, 0xec, 0xec, 0xec, 0xeb, 0xe8, 0xe8, 0xe6, 0xe5, 0xe3, 0xe1, 0xe0, 0xe0, 0xe2, 0xe2, 0xe1, 0xe1, 0xe0, 0xe0, 0xe1, 0xe1, 0xe6, 0xe5, 0xe4, 0xe3, 0xe4, 0xe4, 0xe3, 0xe3, 0xdf, 0xe0, 0xe0, 0xe0, 0xdf, 0xdd, 0xdb, 0xda, 0xdd, 0xdd, 0xdc, 0xdb, 0xd9, 0xd8, 0xd7, 0xd6, 0xd7, 0xd6, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xd1, 0xd2, 0xd3, 0xd3, 0xd0, 0xcf, 0xce, 0xca, 0xc5, 0xc4, 0xc5, 0xc7, 0xc8, 0xc9, 0xc9, 0xc9, 0xca, 0xc3, 0xc2, 0xc1, 0xc0, 0xc0, 0xbf, 0xbc, 0xb9, 0xb5, 0xb5, 0xb4, 0xb3, 0xb0, 0xaf, 0xaf, 0xb0, 0xaa, 0xa2, 0x88, 0x77, 0x83, 0x90, 0x93, 0x96, 0x93, 0x93, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x87, 0x87, 0x86, 0x85, 0x84, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x77, 0x73, 0x71, 0x6f, 0x6d, 0x6a, 0x68, 0x68, 0x67, 0x64, 0x61, 0x5b, 0x5a, 0x58, 0x55, 0x52, 0x50, 0x4f, 0x4e, 0x47, 0x44, 0x40, 0x3c, 0x38, 0x34, 0x30, 0x2d, 0x29, 0x2c, 0x3b, 0x50, 0x5b, 0x58, 0x56, 0x58, 0x52, 0x4d, 0x44, 0x38, 0x2c, 0x2a, 0x36, 0x44, 0x56, 0x54, 0x5e, 0x6c, 0x6a, 0x59, 0x40, 0x2a, 0x2d, 0x35, 0x3a, 0x3c, 0x36, 0x29, 0x26, 0x32, 0x3e, 0x3b, 0x3a, 0x3c, 0x3a, 0x35, 0x36, 0x39, 0x3a, 0x34, 0x3b, 0x4a, 0x4c, 0x3e, 0x37, 0x3b, 0x3c, 0x37, 0x36, 0x3c, 0x46, 0x51, 0x5e, 0x67, 0x51, 0x54, 0x55, 0x4f, 0x4d, 0x41, 0x46, 0x73, 0x8a, 0x92, 0x8b, 0x6c, 0x4b, 0x3d, 0x3c, 0x3d, 0x4a, 0x4e, 0x4b, 0x3d, 0x2f, 0x29, 0x2a, 0x2c, 0x50, 0x4c, 0x47, 0x4a, 0x56, 0x60, 0x60, 0x5a, 0x68, 0x62, 0x58, 0x4b, 0x40, 0x38, 0x36, 0x37, 0x31, 0x27, 0x1f, 0x23, 0x36, 0x4f, 0x65, 0x73, 0x6b, 0x56, 0x46, 0x40, 0x36, 0x2b, 0x29, 0x2e, 0x22, 0x2d, 0x36, 0x37, 0x31, 0x2d, 0x2b, 0x2a, 0x32, 0x51, 0x5d, 0x4e, 0x32, 0x1b, 0x2f, 0x63, 0x62, 0x77, 0x82, 0x7e, 0x78, 0x70, 0x69, 0x67, 0x5f, 0x61, 0x62, 0x61, 0x5e, 0x5d, 0x5f, 0x61, 0x69, 0x6a, 0x6b, 0x68, 0x63, 0x5f, 0x5d, 0x5d, 0x69, 0x69, 0x67, 0x6b, 0x72, 0x6e, 0x64, 0x61, 0x65, 0x67, 0x6c, 0x73, 0x77, 0x77, 0x73, 0x6f, 0x71, 0x6f, 0x6c, 0x6a, 0x6a, 0x69, 0x63, 0x5b, 0x5b, 0x64, 0x6d, 0x6f, 0x6c, 0x67, 0x60, 0x5a, 0x5e, 0x68, 0x71, 0x75, 0x77, 0x78, 0x74, 0x6e, 0x67, 0x66, 0x64, 0x65, 0x6b, 0x73, 0x77, 0x76, 0x76, 0x77, 0x74, 0x6e, 0x6b, 0x6d, 0x70, 0x71, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6f, 0x78, 0x80, 0x79, 0x6c, 0x63, 0x62, 0x63, 0x6a, 0x73, 0x76, 0x77, 0x74, 0x6e, 0x69, 0x67, 0x6a, 0x6f, 0x74, 0x70, 0x72, 0x73, 0x6f, 0x69, 0x65, 0x66, 0x68, 0x6b, 0x6b, 0x6b, 0x6c, 0x72, 0x78, 0x74, 0x6b, 0x5a, 0x5c, 0x63, 0x6b, 0x70, 0x70, 0x70, 0x71, 0x6d, 0x68, 0x65, 0x6b, 0x75, 0x7b, 0x7b, 0x77, 0x73, 0x74, 0x75, 0x74, 0x72, 0x6e, 0x6b, 0x6a, 0x78, 0x7a, 0x7a, 0x75, 0x6d, 0x66, 0x63, 0x62, 0x62, 0x6c, 0x7b, 0x87, 0x8a, 0x81, 0x6e, 0x5d, 0x5c, 0x5f, 0x6f, 0x6b, 0x66, 0x5d, 0x6b, 0x70, 0x5f, 0x65, 0x6d, 0x72, 0x77, 0x7c, 0x7d, 0x7b, 0x76, 0x6e, 0x70, 0x78, 0x80, 0x8b, 0x95, 0x96, 0xa1, 0xaf, 0xb9, 0xba, 0xba, 0xc0, 0xc6, 0xc6, 0xc7, 0xc5, 0xc3, 0xc1, 0xc0, 0xc1, 0xc2, 0xc3, 0xc2, 0xbe, 0xb7, 0xb3, 0xb3, 0xb8, 0xc0, 0xc5, 0xc2, 0xc2, 0xc1, 0xc1, 0xc0, 0xbf, 0xbe, 0xbd, 0xc0, 0xc0, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xbc, 0xba, 0xb8, 0xb4, 0xb0, 0xad, 0xac, 0xab, 0xab, 0xaf, 0xb1, 0xb2, 0xb3, 0xb1, 0xb0, 0xae, 0xae, 0xaa, 0xaa, 0xab, 0xab, 0xab, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xac, 0xaa, 0xaa, 0xab, 0xaa, 0xa7, 0x9f, 0x9f, 0x9a, 0x92, 0x8d, 0x90, 0x96, 0x99, 0x9c, 0x93, 0x7a, 0x70, 0x77, 0xb6, 0xda, 0xd8, 0xdb, 0xde, 0xe4, 0xe9, 0xee, 0xf2, 0xf4, 0xf6, 0xf5, 0xf6, 0xf8, 0xf9, 0xfb, 0xfb, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf7, 0xf8, 0xf9, 0xf9, 0xfa, 0xf9, 0xf9, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xfb, 0xfc, 0xfb, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf9, 0xf8, 0xf7, 0xf6, 0xf5, 0xf4, 0xf0, 0xed, 0xe9, 0xe7, 0xe8, 0xe9, 0xeb, 0xeb, 0xe9, 0xe9, 0xea, 0xea, 0xe9, 0xe8, 0xe7, 0xe6, 0xe5, 0xe6, 0xe6, 0xe7, 0xe8, 0xe8, 0xe8, 0xe8, 0xe7, 0xe6, 0xe5, 0xe3, 0xe2, 0xe1, 0xe0, 0xe0, 0xe5, 0xe4, 0xe4, 0xe3, 0xe3, 0xe2, 0xe2, 0xe3, 0xe8, 0xe6, 0xe3, 0xe2, 0xe2, 0xe2, 0xe2, 0xe1, 0xdc, 0xdd, 0xdf, 0xdf, 0xdf, 0xdd, 0xdc, 0xda, 0xdc, 0xdb, 0xda, 0xd8, 0xd7, 0xd6, 0xd6, 0xd6, 0xd8, 0xd7, 0xd6, 0xd5, 0xd6, 0xd6, 0xd4, 0xd3, 0xd4, 0xd5, 0xd3, 0xd0, 0xcf, 0xce, 0xcb, 0xc7, 0xc7, 0xc8, 0xc9, 0xc9, 0xc8, 0xc8, 0xc9, 0xca, 0xc3, 0xc1, 0xc0, 0xc1, 0xc2, 0xc1, 0xbd, 0xba, 0xb5, 0xb5, 0xb3, 0xb2, 0xb0, 0xaf, 0xad, 0xad, 0xa4, 0x95, 0x80, 0x7a, 0x87, 0x92, 0x94, 0x94, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x80, 0x80, 0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x74, 0x71, 0x6f, 0x6e, 0x6c, 0x69, 0x68, 0x68, 0x66, 0x62, 0x5f, 0x5c, 0x5a, 0x57, 0x54, 0x51, 0x50, 0x50, 0x50, 0x48, 0x45, 0x40, 0x3b, 0x37, 0x32, 0x2e, 0x2b, 0x23, 0x36, 0x50, 0x5e, 0x57, 0x47, 0x40, 0x42, 0x4a, 0x3c, 0x2f, 0x2e, 0x35, 0x42, 0x53, 0x60, 0x4f, 0x3e, 0x3e, 0x54, 0x65, 0x69, 0x5e, 0x4e, 0x2c, 0x2a, 0x27, 0x2b, 0x2d, 0x25, 0x25, 0x31, 0x24, 0x2b, 0x34, 0x3a, 0x3b, 0x3b, 0x3d, 0x3f, 0x38, 0x3e, 0x43, 0x43, 0x3b, 0x36, 0x3b, 0x44, 0x39, 0x3d, 0x44, 0x4a, 0x4d, 0x4b, 0x45, 0x41, 0x4f, 0x5d, 0x61, 0x59, 0x5f, 0x67, 0x73, 0x98, 0x9d, 0x98, 0x82, 0x5f, 0x47, 0x3f, 0x3a, 0x33, 0x2c, 0x1f, 0x1a, 0x20, 0x22, 0x1b, 0x1b, 0x21, 0x17, 0x15, 0x13, 0x1f, 0x40, 0x65, 0x72, 0x6d, 0x4c, 0x3f, 0x2e, 0x22, 0x1e, 0x1f, 0x22, 0x24, 0x1f, 0x22, 0x24, 0x21, 0x22, 0x2d, 0x3c, 0x48, 0x5a, 0x5c, 0x61, 0x5d, 0x4f, 0x4b, 0x4e, 0x4e, 0x49, 0x3d, 0x3e, 0x47, 0x39, 0x20, 0x1f, 0x34, 0x65, 0x74, 0x56, 0x24, 0x23, 0x49, 0x66, 0x6e, 0x6b, 0x83, 0x8e, 0x83, 0x74, 0x66, 0x5b, 0x58, 0x5a, 0x5e, 0x61, 0x5f, 0x5c, 0x5c, 0x61, 0x65, 0x71, 0x72, 0x72, 0x6e, 0x69, 0x67, 0x68, 0x6a, 0x73, 0x74, 0x72, 0x74, 0x76, 0x6c, 0x61, 0x60, 0x68, 0x6a, 0x6e, 0x73, 0x78, 0x7a, 0x78, 0x75, 0x72, 0x72, 0x6e, 0x69, 0x65, 0x65, 0x64, 0x62, 0x64, 0x68, 0x6d, 0x6e, 0x66, 0x5c, 0x58, 0x5a, 0x63, 0x6e, 0x77, 0x78, 0x76, 0x73, 0x6b, 0x61, 0x5f, 0x62, 0x63, 0x62, 0x65, 0x6e, 0x74, 0x76, 0x7d, 0x7a, 0x73, 0x69, 0x63, 0x65, 0x69, 0x6b, 0x72, 0x76, 0x7a, 0x7c, 0x7c, 0x79, 0x75, 0x72, 0x74, 0x6f, 0x65, 0x63, 0x68, 0x6c, 0x71, 0x78, 0x74, 0x70, 0x6b, 0x66, 0x64, 0x67, 0x6c, 0x70, 0x7e, 0x7b, 0x76, 0x72, 0x6e, 0x6c, 0x6c, 0x6c, 0x68, 0x6e, 0x71, 0x72, 0x74, 0x77, 0x72, 0x6a, 0x64, 0x6a, 0x72, 0x74, 0x6c, 0x62, 0x60, 0x64, 0x6f, 0x6d, 0x6c, 0x6f, 0x73, 0x76, 0x76, 0x75, 0x77, 0x7c, 0x7f, 0x7c, 0x77, 0x72, 0x71, 0x71, 0x7e, 0x80, 0x80, 0x7a, 0x70, 0x67, 0x63, 0x62, 0x69, 0x6e, 0x73, 0x75, 0x76, 0x74, 0x6c, 0x63, 0x67, 0x5a, 0x60, 0x66, 0x72, 0x6d, 0x6b, 0x5d, 0x65, 0x67, 0x69, 0x6c, 0x72, 0x77, 0x79, 0x77, 0x73, 0x6d, 0x71, 0x79, 0x7e, 0x87, 0x92, 0x96, 0xa6, 0xb2, 0xb9, 0xb8, 0xbb, 0xc5, 0xc8, 0xc5, 0xc3, 0xc2, 0xc0, 0xbe, 0xbe, 0xc0, 0xc2, 0xc3, 0xca, 0xc8, 0xc4, 0xbe, 0xba, 0xbb, 0xc0, 0xc4, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbf, 0xbf, 0xbe, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbc, 0xbe, 0xbc, 0xb8, 0xb3, 0xaf, 0xac, 0xaa, 0xaa, 0xac, 0xae, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xaa, 0xab, 0xa9, 0xa7, 0xa8, 0xa9, 0xa7, 0xa3, 0xa0, 0x9f, 0x99, 0x91, 0x8c, 0x8e, 0x93, 0x95, 0x9d, 0x9c, 0x81, 0x72, 0x6b, 0x9a, 0xd3, 0xce, 0xd6, 0xdb, 0xe3, 0xe9, 0xed, 0xf0, 0xf3, 0xf5, 0xf4, 0xf5, 0xf7, 0xf8, 0xfa, 0xfa, 0xfb, 0xfb, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf7, 0xf8, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfb, 0xfb, 0xfa, 0xf9, 0xf8, 0xf8, 0xf7, 0xf8, 0xf7, 0xf7, 0xf6, 0xf3, 0xf1, 0xee, 0xec, 0xe6, 0xe2, 0xdd, 0xdb, 0xdd, 0xe1, 0xe6, 0xe9, 0xec, 0xec, 0xec, 0xec, 0xeb, 0xe9, 0xe7, 0xe6, 0xe6, 0xe5, 0xe5, 0xe4, 0xe4, 0xe5, 0xe5, 0xe5, 0xe6, 0xe6, 0xe5, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe8, 0xe7, 0xe6, 0xe5, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe3, 0xe2, 0xe1, 0xe2, 0xe1, 0xe0, 0xdf, 0xdd, 0xdd, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdc, 0xdc, 0xdc, 0xdb, 0xda, 0xd9, 0xd8, 0xd7, 0xd9, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd7, 0xd6, 0xd5, 0xd5, 0xd3, 0xcf, 0xce, 0xce, 0xcd, 0xc9, 0xc9, 0xca, 0xca, 0xc9, 0xc7, 0xc7, 0xc9, 0xcb, 0xc5, 0xc3, 0xc1, 0xc1, 0xc2, 0xc0, 0xbb, 0xb8, 0xb6, 0xb4, 0xb2, 0xb1, 0xb1, 0xaf, 0xac, 0xa9, 0x9e, 0x87, 0x7a, 0x7f, 0x89, 0x91, 0x94, 0x91, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x86, 0x86, 0x84, 0x83, 0x81, 0x80, 0x7e, 0x7e, 0x7e, 0x7b, 0x78, 0x76, 0x74, 0x72, 0x70, 0x6e, 0x6e, 0x6c, 0x69, 0x68, 0x67, 0x65, 0x61, 0x5e, 0x5c, 0x5a, 0x58, 0x54, 0x51, 0x4f, 0x4d, 0x4c, 0x47, 0x44, 0x40, 0x3b, 0x36, 0x31, 0x2c, 0x28, 0x2a, 0x45, 0x63, 0x6c, 0x5f, 0x4d, 0x45, 0x45, 0x45, 0x3a, 0x34, 0x3a, 0x46, 0x54, 0x63, 0x70, 0x57, 0x3f, 0x35, 0x3d, 0x47, 0x4f, 0x57, 0x59, 0x51, 0x41, 0x30, 0x2c, 0x2c, 0x26, 0x2a, 0x39, 0x5a, 0x64, 0x69, 0x61, 0x56, 0x4f, 0x49, 0x45, 0x53, 0x57, 0x54, 0x45, 0x37, 0x36, 0x40, 0x49, 0x53, 0x53, 0x4f, 0x4d, 0x55, 0x65, 0x72, 0x76, 0x79, 0x87, 0x86, 0x6b, 0x62, 0x6c, 0x7d, 0x9a, 0x9d, 0x86, 0x64, 0x48, 0x3a, 0x36, 0x30, 0x29, 0x2f, 0x22, 0x1e, 0x26, 0x28, 0x1e, 0x1c, 0x22, 0x21, 0x30, 0x3d, 0x43, 0x47, 0x48, 0x3e, 0x30, 0x29, 0x25, 0x22, 0x24, 0x26, 0x25, 0x1e, 0x17, 0x12, 0x15, 0x19, 0x1d, 0x25, 0x2a, 0x27, 0x20, 0x26, 0x38, 0x51, 0x60, 0x70, 0x85, 0x81, 0x63, 0x64, 0x72, 0x79, 0x72, 0x6d, 0x76, 0x83, 0x8a, 0x5e, 0x48, 0x2f, 0x29, 0x36, 0x46, 0x52, 0x58, 0x7c, 0x87, 0x81, 0x6d, 0x61, 0x5c, 0x59, 0x5a, 0x5b, 0x60, 0x62, 0x5e, 0x59, 0x5a, 0x5f, 0x64, 0x72, 0x77, 0x7b, 0x7b, 0x77, 0x74, 0x76, 0x79, 0x78, 0x7a, 0x7a, 0x7c, 0x7d, 0x73, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x70, 0x74, 0x77, 0x76, 0x73, 0x74, 0x75, 0x70, 0x66, 0x5e, 0x5f, 0x64, 0x69, 0x70, 0x6f, 0x70, 0x6e, 0x62, 0x55, 0x55, 0x5d, 0x5d, 0x68, 0x71, 0x72, 0x70, 0x6c, 0x62, 0x57, 0x58, 0x5d, 0x5e, 0x5c, 0x5f, 0x6a, 0x76, 0x7c, 0x7f, 0x7d, 0x73, 0x65, 0x5b, 0x5b, 0x60, 0x63, 0x62, 0x65, 0x6b, 0x73, 0x7c, 0x80, 0x7e, 0x7a, 0x73, 0x74, 0x6a, 0x65, 0x6b, 0x69, 0x69, 0x75, 0x76, 0x73, 0x6f, 0x6a, 0x68, 0x68, 0x6b, 0x6e, 0x81, 0x7a, 0x70, 0x69, 0x67, 0x67, 0x67, 0x66, 0x6c, 0x77, 0x7d, 0x7a, 0x75, 0x73, 0x6e, 0x67, 0x6b, 0x75, 0x80, 0x7f, 0x70, 0x62, 0x63, 0x6b, 0x67, 0x6a, 0x6e, 0x71, 0x74, 0x76, 0x78, 0x7a, 0x7e, 0x82, 0x84, 0x7d, 0x75, 0x71, 0x74, 0x77, 0x7f, 0x82, 0x82, 0x7e, 0x75, 0x6d, 0x6a, 0x6a, 0x78, 0x7b, 0x7a, 0x75, 0x70, 0x6e, 0x6a, 0x65, 0x63, 0x5a, 0x62, 0x66, 0x6f, 0x6a, 0x6d, 0x66, 0x68, 0x69, 0x6d, 0x72, 0x79, 0x7d, 0x79, 0x72, 0x70, 0x6c, 0x72, 0x79, 0x7a, 0x80, 0x8d, 0x94, 0xaa, 0xb5, 0xbb, 0xb9, 0xbe, 0xc8, 0xca, 0xc4, 0xc0, 0xbf, 0xbe, 0xbd, 0xbe, 0xbf, 0xc2, 0xc3, 0xc5, 0xc9, 0xcb, 0xc8, 0xc3, 0xbe, 0xbd, 0xbf, 0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc2, 0xc1, 0xc0, 0xc2, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbd, 0xbc, 0xbd, 0xbd, 0xbb, 0xb9, 0xb5, 0xb0, 0xab, 0xa8, 0xab, 0xad, 0xaf, 0xb0, 0xb1, 0xb2, 0xb4, 0xb5, 0xb6, 0xb5, 0xb3, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xad, 0xac, 0xa9, 0xa7, 0xa9, 0xaa, 0xa7, 0xa2, 0xa1, 0x9f, 0x99, 0x8f, 0x8b, 0x8d, 0x91, 0x93, 0x98, 0x9e, 0x84, 0x75, 0x69, 0x90, 0xda, 0xd5, 0xd3, 0xda, 0xe3, 0xe9, 0xec, 0xee, 0xf1, 0xf4, 0xf3, 0xf4, 0xf5, 0xf7, 0xf9, 0xf9, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf8, 0xf8, 0xfb, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf9, 0xfa, 0xfb, 0xfb, 0xfb, 0xfa, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfb, 0xfb, 0xfc, 0xfc, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf5, 0xf3, 0xf0, 0xec, 0xe8, 0xe6, 0xde, 0xd9, 0xd3, 0xd1, 0xd3, 0xda, 0xe1, 0xe5, 0xef, 0xef, 0xee, 0xee, 0xec, 0xea, 0xe8, 0xe7, 0xe7, 0xe6, 0xe5, 0xe4, 0xe4, 0xe4, 0xe4, 0xe5, 0xe6, 0xe5, 0xe5, 0xe5, 0xe5, 0xe6, 0xe7, 0xe7, 0xe6, 0xe5, 0xe4, 0xe3, 0xe2, 0xe1, 0xe1, 0xe1, 0xdf, 0xdf, 0xe0, 0xe1, 0xe2, 0xe1, 0xde, 0xdc, 0xde, 0xdd, 0xdb, 0xda, 0xd9, 0xda, 0xdc, 0xdd, 0xdb, 0xdc, 0xde, 0xdf, 0xde, 0xdc, 0xda, 0xd8, 0xda, 0xd9, 0xd8, 0xd9, 0xd9, 0xd9, 0xd8, 0xd7, 0xd5, 0xd5, 0xd2, 0xce, 0xcd, 0xce, 0xcd, 0xca, 0xca, 0xcb, 0xca, 0xc8, 0xc6, 0xc7, 0xca, 0xcc, 0xc7, 0xc4, 0xc2, 0xc1, 0xc1, 0xbe, 0xb9, 0xb4, 0xb6, 0xb3, 0xb1, 0xb1, 0xb2, 0xb0, 0xab, 0xa7, 0x9a, 0x7e, 0x76, 0x83, 0x8b, 0x90, 0x94, 0x8f, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x85, 0x83, 0x80, 0x7e, 0x7d, 0x7c, 0x7d, 0x7b, 0x77, 0x74, 0x72, 0x71, 0x6f, 0x6d, 0x6e, 0x6c, 0x69, 0x68, 0x67, 0x65, 0x61, 0x5e, 0x5b, 0x5a, 0x58, 0x56, 0x52, 0x4e, 0x4b, 0x49, 0x42, 0x40, 0x3c, 0x37, 0x33, 0x2d, 0x27, 0x23, 0x35, 0x52, 0x73, 0x80, 0x77, 0x64, 0x53, 0x48, 0x31, 0x36, 0x44, 0x52, 0x58, 0x59, 0x60, 0x6a, 0x6e, 0x50, 0x3d, 0x3d, 0x42, 0x4d, 0x5c, 0x65, 0x62, 0x52, 0x41, 0x40, 0x43, 0x3e, 0x42, 0x52, 0x72, 0x83, 0x8c, 0x85, 0x7d, 0x7c, 0x7c, 0x78, 0x7b, 0x70, 0x5f, 0x4c, 0x3c, 0x35, 0x3a, 0x43, 0x54, 0x60, 0x6a, 0x6f, 0x77, 0x7d, 0x7a, 0x71, 0x84, 0x74, 0x61, 0x55, 0x6a, 0x87, 0x90, 0x9c, 0x97, 0x78, 0x56, 0x45, 0x40, 0x3a, 0x31, 0x2a, 0x2c, 0x2c, 0x28, 0x22, 0x1f, 0x25, 0x33, 0x3e, 0x4c, 0x52, 0x53, 0x49, 0x3c, 0x32, 0x2a, 0x25, 0x27, 0x22, 0x20, 0x24, 0x2c, 0x31, 0x31, 0x2f, 0x34, 0x33, 0x2d, 0x26, 0x27, 0x2e, 0x2f, 0x2c, 0x24, 0x2a, 0x3b, 0x42, 0x43, 0x57, 0x72, 0x7a, 0x97, 0xa1, 0xa8, 0xa1, 0x85, 0x5c, 0x33, 0x18, 0x1a, 0x1b, 0x2a, 0x39, 0x36, 0x27, 0x1c, 0x15, 0x71, 0x69, 0x62, 0x60, 0x5d, 0x59, 0x59, 0x5d, 0x5f, 0x60, 0x60, 0x5e, 0x5b, 0x5b, 0x5d, 0x5f, 0x6a, 0x6b, 0x71, 0x78, 0x7b, 0x78, 0x74, 0x73, 0x75, 0x7b, 0x7e, 0x7c, 0x78, 0x75, 0x73, 0x71, 0x66, 0x5e, 0x5e, 0x6b, 0x77, 0x79, 0x75, 0x74, 0x76, 0x73, 0x6e, 0x68, 0x60, 0x5e, 0x63, 0x6b, 0x6c, 0x6f, 0x69, 0x6b, 0x5f, 0x5f, 0x58, 0x59, 0x5e, 0x64, 0x68, 0x67, 0x65, 0x66, 0x68, 0x69, 0x65, 0x64, 0x64, 0x67, 0x6a, 0x6c, 0x72, 0x77, 0x7a, 0x72, 0x6b, 0x67, 0x62, 0x5e, 0x61, 0x68, 0x6c, 0x74, 0x77, 0x79, 0x7e, 0x7f, 0x7f, 0x82, 0x79, 0x6e, 0x63, 0x61, 0x62, 0x64, 0x66, 0x68, 0x5d, 0x5e, 0x63, 0x6c, 0x74, 0x78, 0x79, 0x78, 0x7b, 0x70, 0x63, 0x61, 0x66, 0x6c, 0x6c, 0x68, 0x6d, 0x69, 0x73, 0x79, 0x6f, 0x6a, 0x6a, 0x62, 0x64, 0x75, 0x85, 0x81, 0x76, 0x6d, 0x73, 0x79, 0x7a, 0x77, 0x6f, 0x6c, 0x73, 0x75, 0x74, 0x77, 0x74, 0x76, 0x79, 0x79, 0x77, 0x78, 0x7e, 0x85, 0x7f, 0x7e, 0x7f, 0x82, 0x80, 0x78, 0x70, 0x6c, 0x76, 0x7e, 0x83, 0x7f, 0x79, 0x74, 0x6f, 0x6a, 0x6a, 0x74, 0x7b, 0x7b, 0x7f, 0x85, 0x84, 0x7c, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x7d, 0x6c, 0x70, 0x71, 0x77, 0x84, 0x8b, 0xa1, 0xac, 0xb1, 0xb8, 0xbf, 0xc4, 0xc5, 0xc4, 0xc2, 0xbf, 0xbc, 0xba, 0xbb, 0xbe, 0xc3, 0xc5, 0xc6, 0xc8, 0xca, 0xcb, 0xc9, 0xc6, 0xc2, 0xc0, 0xbf, 0xc0, 0xc1, 0xc3, 0xc4, 0xc4, 0xc2, 0xc0, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbc, 0xba, 0xb8, 0xb8, 0xba, 0xbb, 0xbb, 0xba, 0xb3, 0xb0, 0xae, 0xb0, 0xb2, 0xb2, 0xb3, 0xb5, 0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaa, 0xa5, 0xa1, 0x9f, 0x9d, 0x97, 0x8d, 0x84, 0x82, 0x89, 0x92, 0x96, 0x9e, 0x88, 0x75, 0x68, 0x8b, 0xcd, 0xd0, 0xd5, 0xd9, 0xde, 0xe3, 0xe8, 0xed, 0xf1, 0xf4, 0xf4, 0xf5, 0xf6, 0xf8, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf8, 0xf8, 0xf9, 0xfa, 0xf9, 0xf7, 0xf4, 0xf6, 0xf7, 0xf9, 0xfa, 0xfb, 0xfb, 0xfa, 0xf9, 0xfa, 0xfa, 0xf9, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf4, 0xf7, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xf8, 0xf6, 0xf7, 0xf8, 0xf4, 0xed, 0xe9, 0xe6, 0xe1, 0xda, 0xd7, 0xce, 0xc9, 0xcb, 0xce, 0xd1, 0xd9, 0xe3, 0xe6, 0xe7, 0xe9, 0xe9, 0xe7, 0xe5, 0xe4, 0xe4, 0xe4, 0xe5, 0xe7, 0xe9, 0xe9, 0xe7, 0xe5, 0xe3, 0xe6, 0xe4, 0xe3, 0xe4, 0xe6, 0xe5, 0xe3, 0xe0, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xdd, 0xdd, 0xdb, 0xdd, 0xdf, 0xe1, 0xe1, 0xdf, 0xdc, 0xdb, 0xdd, 0xdb, 0xd9, 0xd8, 0xda, 0xdc, 0xdd, 0xde, 0xdc, 0xde, 0xdf, 0xdf, 0xdd, 0xdb, 0xdb, 0xdb, 0xd9, 0xd9, 0xda, 0xda, 0xda, 0xda, 0xda, 0xda, 0xd5, 0xd3, 0xd1, 0xd0, 0xd0, 0xd0, 0xcd, 0xcb, 0xc9, 0xca, 0xcb, 0xca, 0xc9, 0xc9, 0xc9, 0xca, 0xc6, 0xc4, 0xc3, 0xc2, 0xc2, 0xbf, 0xba, 0xb7, 0xb6, 0xb6, 0xb3, 0xae, 0xad, 0xac, 0xa7, 0x9e, 0x8a, 0x7c, 0x79, 0x87, 0x92, 0x90, 0x8e, 0x92, 0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x89, 0x89, 0x89, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x87, 0x85, 0x83, 0x82, 0x81, 0x7f, 0x7c, 0x7a, 0x7c, 0x79, 0x76, 0x76, 0x74, 0x70, 0x6d, 0x6d, 0x6d, 0x6c, 0x6a, 0x69, 0x67, 0x63, 0x5f, 0x5c, 0x5b, 0x5a, 0x58, 0x54, 0x50, 0x4c, 0x49, 0x48, 0x42, 0x3f, 0x3c, 0x38, 0x32, 0x2a, 0x2a, 0x2e, 0x3f, 0x5d, 0x75, 0x71, 0x60, 0x54, 0x4d, 0x47, 0x3d, 0x48, 0x57, 0x5f, 0x5b, 0x59, 0x63, 0x71, 0x76, 0x66, 0x58, 0x53, 0x4f, 0x4a, 0x4a, 0x50, 0x5c, 0x62, 0x59, 0x4f, 0x4a, 0x3a, 0x39, 0x50, 0x74, 0x89, 0x8b, 0x7f, 0x7e, 0x7c, 0x75, 0x74, 0x5f, 0x56, 0x4b, 0x40, 0x33, 0x2e, 0x3c, 0x50, 0x5b, 0x70, 0x73, 0x66, 0x64, 0x69, 0x67, 0x62, 0x59, 0x5a, 0x5a, 0x68, 0x7b, 0x90, 0x9b, 0x8c, 0x81, 0x65, 0x44, 0x30, 0x29, 0x27, 0x29, 0x2c, 0x32, 0x25, 0x1c, 0x1e, 0x26, 0x33, 0x4a, 0x5f, 0x60, 0x52, 0x49, 0x38, 0x38, 0x29, 0x28, 0x21, 0x26, 0x34, 0x38, 0x3b, 0x42, 0x40, 0x3b, 0x3f, 0x42, 0x43, 0x47, 0x48, 0x3c, 0x32, 0x39, 0x48, 0x4d, 0x4f, 0x4c, 0x4c, 0x5c, 0x6e, 0x6e, 0x61, 0x64, 0x65, 0x5e, 0x49, 0x2e, 0x1d, 0x1a, 0x1f, 0x20, 0x26, 0x2c, 0x2c, 0x27, 0x21, 0x1d, 0x1c, 0x5a, 0x57, 0x57, 0x59, 0x5b, 0x5a, 0x5b, 0x5c, 0x68, 0x68, 0x67, 0x63, 0x5f, 0x5e, 0x5f, 0x61, 0x62, 0x66, 0x70, 0x7c, 0x83, 0x83, 0x81, 0x80, 0x77, 0x7c, 0x7f, 0x7f, 0x7d, 0x7b, 0x77, 0x73, 0x68, 0x5f, 0x5d, 0x69, 0x75, 0x77, 0x73, 0x71, 0x71, 0x6e, 0x6b, 0x68, 0x64, 0x62, 0x67, 0x6d, 0x6d, 0x6f, 0x68, 0x69, 0x5e, 0x61, 0x5d, 0x60, 0x58, 0x5c, 0x60, 0x63, 0x66, 0x6b, 0x6c, 0x6c, 0x66, 0x67, 0x6b, 0x71, 0x73, 0x71, 0x71, 0x73, 0x72, 0x6d, 0x67, 0x63, 0x61, 0x61, 0x64, 0x68, 0x6e, 0x75, 0x79, 0x7d, 0x80, 0x79, 0x71, 0x70, 0x77, 0x6f, 0x69, 0x6a, 0x70, 0x71, 0x69, 0x60, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x75, 0x77, 0x73, 0x6a, 0x60, 0x5f, 0x67, 0x70, 0x74, 0x74, 0x70, 0x63, 0x63, 0x6b, 0x6d, 0x70, 0x6e, 0x63, 0x61, 0x74, 0x80, 0x82, 0x75, 0x74, 0x79, 0x81, 0x76, 0x77, 0x73, 0x73, 0x79, 0x79, 0x74, 0x75, 0x74, 0x74, 0x76, 0x77, 0x77, 0x78, 0x7b, 0x7e, 0x7f, 0x7e, 0x80, 0x84, 0x83, 0x7c, 0x75, 0x71, 0x73, 0x7a, 0x80, 0x7e, 0x7a, 0x79, 0x78, 0x77, 0x6c, 0x71, 0x74, 0x71, 0x72, 0x78, 0x7d, 0x7e, 0x72, 0x73, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x69, 0x71, 0x7b, 0x85, 0x8f, 0x94, 0xa7, 0xb1, 0xb6, 0xbd, 0xc2, 0xc5, 0xc4, 0xc0, 0xbe, 0xba, 0xba, 0xbb, 0xbe, 0xc2, 0xc4, 0xc5, 0xc6, 0xc8, 0xca, 0xcc, 0xcc, 0xc8, 0xc3, 0xc0, 0xbe, 0xbd, 0xbe, 0xc0, 0xc1, 0xc1, 0xc0, 0xbe, 0xbd, 0xc0, 0xbf, 0xbe, 0xbf, 0xc0, 0xc1, 0xc0, 0xbf, 0xbf, 0xbd, 0xbb, 0xba, 0xba, 0xb9, 0xb7, 0xb5, 0xaa, 0xa7, 0xa6, 0xa8, 0xaa, 0xaa, 0xab, 0xae, 0xb1, 0xb1, 0xb0, 0xb0, 0xb1, 0xb2, 0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xad, 0xa8, 0xa4, 0x9f, 0x9d, 0x9b, 0x94, 0x8a, 0x83, 0x86, 0x8e, 0x99, 0xa1, 0x8f, 0x7a, 0x64, 0x7b, 0xbb, 0xc9, 0xce, 0xd2, 0xd8, 0xde, 0xe3, 0xe8, 0xec, 0xef, 0xf1, 0xf2, 0xf4, 0xf6, 0xf7, 0xf9, 0xfa, 0xfa, 0xf9, 0xf8, 0xf7, 0xf8, 0xf9, 0xf9, 0xf7, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb, 0xfa, 0xf9, 0xf9, 0xf7, 0xf7, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf8, 0xf9, 0xfb, 0xfa, 0xf9, 0xf7, 0xf7, 0xf7, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xf7, 0xf7, 0xf8, 0xf9, 0xfa, 0xf9, 0xf7, 0xf5, 0xf0, 0xf0, 0xec, 0xe6, 0xe1, 0xde, 0xd8, 0xd2, 0xce, 0xc8, 0xc5, 0xc9, 0xcc, 0xcd, 0xd3, 0xdb, 0xdf, 0xe2, 0xe5, 0xe7, 0xe6, 0xe4, 0xe3, 0xe2, 0xe3, 0xe4, 0xe5, 0xe5, 0xe6, 0xe5, 0xe4, 0xe4, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe2, 0xe0, 0xde, 0xdb, 0xdb, 0xdc, 0xdc, 0xdc, 0xdd, 0xdd, 0xdd, 0xde, 0xde, 0xdf, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xdb, 0xda, 0xd9, 0xda, 0xdc, 0xde, 0xde, 0xde, 0xdf, 0xe0, 0xe0, 0xdf, 0xdd, 0xdb, 0xdb, 0xdb, 0xdc, 0xdc, 0xdc, 0xdb, 0xda, 0xd8, 0xd6, 0xd5, 0xd3, 0xd2, 0xd1, 0xd1, 0xd1, 0xcf, 0xcb, 0xc8, 0xcb, 0xcb, 0xcc, 0xcb, 0xc9, 0xc9, 0xc9, 0xca, 0xc5, 0xc3, 0xc1, 0xc1, 0xc1, 0xbe, 0xba, 0xb6, 0xb6, 0xb5, 0xb1, 0xab, 0xa9, 0xa8, 0xa1, 0x97, 0x84, 0x7c, 0x7c, 0x88, 0x90, 0x8f, 0x8d, 0x8e, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8b, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x7a, 0x77, 0x75, 0x75, 0x74, 0x70, 0x6c, 0x6c, 0x6c, 0x6a, 0x69, 0x67, 0x65, 0x62, 0x5f, 0x5c, 0x58, 0x58, 0x56, 0x52, 0x4e, 0x4a, 0x47, 0x46, 0x41, 0x3b, 0x39, 0x39, 0x31, 0x25, 0x27, 0x33, 0x4a, 0x5b, 0x64, 0x5c, 0x51, 0x4e, 0x4d, 0x4a, 0x4b, 0x52, 0x5e, 0x68, 0x69, 0x65, 0x65, 0x69, 0x6d, 0x6f, 0x71, 0x6b, 0x5f, 0x59, 0x65, 0x76, 0x70, 0x69, 0x58, 0x4f, 0x50, 0x49, 0x45, 0x4e, 0x67, 0x6a, 0x63, 0x59, 0x57, 0x52, 0x41, 0x32, 0x35, 0x28, 0x20, 0x24, 0x29, 0x31, 0x46, 0x5d, 0x60, 0x5f, 0x5a, 0x58, 0x57, 0x49, 0x3b, 0x37, 0x4d, 0x5b, 0x65, 0x77, 0x89, 0x98, 0x9c, 0x88, 0x6d, 0x5e, 0x4c, 0x46, 0x4d, 0x51, 0x48, 0x3b, 0x22, 0x1e, 0x1f, 0x2b, 0x3a, 0x48, 0x56, 0x61, 0x5e, 0x53, 0x4a, 0x35, 0x2d, 0x22, 0x33, 0x3f, 0x3f, 0x4a, 0x6b, 0x78, 0x6b, 0x72, 0x7a, 0x68, 0x6c, 0x5f, 0x46, 0x31, 0x35, 0x49, 0x57, 0x58, 0x60, 0x58, 0x50, 0x4f, 0x50, 0x4a, 0x3b, 0x2c, 0x27, 0x32, 0x35, 0x29, 0x1b, 0x18, 0x1b, 0x1d, 0x1f, 0x22, 0x1c, 0x11, 0x13, 0x1e, 0x1d, 0x12, 0x5b, 0x5d, 0x5d, 0x5e, 0x61, 0x65, 0x66, 0x65, 0x67, 0x67, 0x66, 0x63, 0x60, 0x60, 0x62, 0x64, 0x5d, 0x63, 0x70, 0x7e, 0x85, 0x82, 0x7b, 0x77, 0x81, 0x82, 0x82, 0x7e, 0x7a, 0x77, 0x74, 0x70, 0x6f, 0x65, 0x61, 0x6a, 0x75, 0x77, 0x73, 0x6f, 0x6e, 0x6a, 0x68, 0x68, 0x67, 0x65, 0x66, 0x69, 0x67, 0x69, 0x61, 0x62, 0x56, 0x5a, 0x57, 0x5c, 0x65, 0x67, 0x68, 0x68, 0x6b, 0x6d, 0x6c, 0x68, 0x70, 0x6f, 0x71, 0x75, 0x76, 0x71, 0x6c, 0x69, 0x6a, 0x68, 0x64, 0x60, 0x61, 0x67, 0x6a, 0x6b, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x76, 0x6f, 0x73, 0x6f, 0x74, 0x77, 0x78, 0x7c, 0x7f, 0x7c, 0x75, 0x77, 0x79, 0x79, 0x74, 0x6f, 0x6f, 0x74, 0x79, 0x80, 0x78, 0x6f, 0x6d, 0x71, 0x77, 0x7b, 0x7c, 0x7e, 0x72, 0x70, 0x77, 0x7a, 0x79, 0x71, 0x64, 0x65, 0x7b, 0x81, 0x85, 0x71, 0x78, 0x77, 0x7f, 0x7d, 0x7c, 0x74, 0x70, 0x74, 0x73, 0x72, 0x75, 0x73, 0x73, 0x73, 0x73, 0x74, 0x76, 0x76, 0x76, 0x7f, 0x7d, 0x7e, 0x83, 0x85, 0x80, 0x78, 0x73, 0x74, 0x75, 0x74, 0x71, 0x6f, 0x71, 0x74, 0x76, 0x7b, 0x7d, 0x7c, 0x75, 0x6c, 0x6a, 0x70, 0x77, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x6e, 0x64, 0x6f, 0x7e, 0x89, 0x8f, 0x95, 0xa8, 0xb8, 0xbb, 0xc0, 0xc4, 0xc4, 0xc1, 0xbd, 0xba, 0xb8, 0xbb, 0xbf, 0xc2, 0xc3, 0xc3, 0xc3, 0xc2, 0xc4, 0xc7, 0xca, 0xcb, 0xc9, 0xc5, 0xc1, 0xbe, 0xbb, 0xbc, 0xbe, 0xc0, 0xc0, 0xc0, 0xbe, 0xbd, 0xc0, 0xbf, 0xbf, 0xc0, 0xc1, 0xc1, 0xc0, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbc, 0xb9, 0xb5, 0xb3, 0xb2, 0xaf, 0xac, 0xad, 0xad, 0xac, 0xac, 0xae, 0xac, 0xab, 0xab, 0xab, 0xac, 0xae, 0xaf, 0xb1, 0xb3, 0xb3, 0xb4, 0xb4, 0xb4, 0xb1, 0xae, 0xab, 0xa5, 0xa1, 0x9d, 0x98, 0x8c, 0x81, 0x82, 0x8c, 0x95, 0xa1, 0x96, 0x84, 0x66, 0x6c, 0xa9, 0xcb, 0xca, 0xce, 0xd6, 0xdd, 0xe3, 0xe8, 0xed, 0xef, 0xee, 0xef, 0xf1, 0xf4, 0xf6, 0xf8, 0xf9, 0xfa, 0xf9, 0xf8, 0xf7, 0xf7, 0xf8, 0xf9, 0xf8, 0xf8, 0xf8, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf6, 0xf6, 0xf6, 0xf6, 0xf7, 0xf9, 0xf9, 0xfa, 0xf9, 0xf7, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xf7, 0xf6, 0xf2, 0xf0, 0xeb, 0xea, 0xe6, 0xe0, 0xdb, 0xd7, 0xd1, 0xcc, 0xc8, 0xc5, 0xc7, 0xcc, 0xce, 0xce, 0xd1, 0xd6, 0xdb, 0xde, 0xe2, 0xe5, 0xe5, 0xe4, 0xe3, 0xe3, 0xe3, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe3, 0xe3, 0xe3, 0xe4, 0xe4, 0xe2, 0xe0, 0xde, 0xde, 0xdd, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xde, 0xe2, 0xe0, 0xde, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd, 0xdc, 0xdc, 0xdd, 0xdf, 0xe0, 0xe1, 0xe0, 0xdf, 0xe0, 0xe0, 0xdf, 0xdd, 0xdb, 0xda, 0xda, 0xdb, 0xdd, 0xdd, 0xdd, 0xdc, 0xda, 0xd7, 0xd5, 0xd3, 0xd1, 0xd1, 0xd1, 0xd1, 0xd0, 0xcd, 0xc9, 0xc6, 0xcd, 0xce, 0xce, 0xcc, 0xca, 0xc9, 0xc9, 0xc9, 0xc3, 0xc2, 0xc0, 0xc0, 0xc0, 0xbe, 0xb9, 0xb6, 0xb7, 0xb5, 0xae, 0xa7, 0xa5, 0xa2, 0x98, 0x8d, 0x7d, 0x7c, 0x80, 0x88, 0x8d, 0x8d, 0x8b, 0x8a, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x89, 0x88, 0x88, 0x87, 0x85, 0x84, 0x83, 0x83, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x77, 0x74, 0x73, 0x74, 0x73, 0x6f, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x65, 0x64, 0x61, 0x5e, 0x5c, 0x56, 0x55, 0x53, 0x50, 0x4c, 0x48, 0x45, 0x43, 0x43, 0x38, 0x33, 0x33, 0x2c, 0x27, 0x36, 0x4e, 0x5c, 0x62, 0x63, 0x5c, 0x5a, 0x5d, 0x5d, 0x59, 0x57, 0x59, 0x60, 0x6b, 0x71, 0x6d, 0x63, 0x5d, 0x61, 0x62, 0x64, 0x63, 0x61, 0x62, 0x66, 0x6a, 0x66, 0x64, 0x5f, 0x5b, 0x58, 0x55, 0x53, 0x53, 0x51, 0x4e, 0x49, 0x3a, 0x2a, 0x28, 0x2f, 0x32, 0x33, 0x2c, 0x24, 0x23, 0x2b, 0x38, 0x41, 0x45, 0x48, 0x46, 0x43, 0x43, 0x3d, 0x2e, 0x2b, 0x37, 0x56, 0x71, 0x82, 0x8e, 0x94, 0x92, 0x85, 0x6a, 0x51, 0x56, 0x55, 0x50, 0x4c, 0x49, 0x3e, 0x31, 0x29, 0x27, 0x29, 0x34, 0x46, 0x56, 0x61, 0x66, 0x5a, 0x46, 0x2e, 0x1d, 0x34, 0x53, 0x6d, 0x70, 0x89, 0x98, 0x89, 0x7a, 0x8a, 0x8d, 0x80, 0x80, 0x71, 0x55, 0x39, 0x33, 0x3e, 0x4a, 0x52, 0x56, 0x4a, 0x41, 0x3d, 0x40, 0x3c, 0x30, 0x2c, 0x2f, 0x45, 0x46, 0x49, 0x49, 0x42, 0x3c, 0x41, 0x4c, 0x4e, 0x3f, 0x37, 0x36, 0x28, 0x1c, 0x30, 0x52, 0x5d, 0x5e, 0x5d, 0x5a, 0x5d, 0x66, 0x6a, 0x68, 0x65, 0x66, 0x65, 0x62, 0x5f, 0x5f, 0x61, 0x64, 0x6f, 0x6a, 0x68, 0x6a, 0x6d, 0x70, 0x74, 0x78, 0x80, 0x81, 0x7d, 0x75, 0x6f, 0x6d, 0x6d, 0x6e, 0x72, 0x69, 0x65, 0x6c, 0x76, 0x77, 0x71, 0x6b, 0x67, 0x63, 0x62, 0x64, 0x67, 0x67, 0x66, 0x67, 0x6e, 0x71, 0x6a, 0x6a, 0x5d, 0x5e, 0x59, 0x5c, 0x64, 0x68, 0x6c, 0x6f, 0x73, 0x78, 0x7a, 0x78, 0x75, 0x6f, 0x6c, 0x6f, 0x73, 0x70, 0x69, 0x64, 0x64, 0x65, 0x62, 0x5e, 0x62, 0x6c, 0x71, 0x6f, 0x6e, 0x79, 0x85, 0x8e, 0x8b, 0x76, 0x65, 0x63, 0x76, 0x84, 0x88, 0x7b, 0x6c, 0x6c, 0x74, 0x79, 0x7a, 0x7b, 0x77, 0x6f, 0x69, 0x69, 0x6d, 0x71, 0x7e, 0x79, 0x73, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6b, 0x6c, 0x72, 0x79, 0x79, 0x77, 0x76, 0x75, 0x78, 0x8e, 0x8d, 0x90, 0x74, 0x7e, 0x75, 0x7a, 0x7a, 0x7b, 0x75, 0x70, 0x73, 0x71, 0x6f, 0x72, 0x72, 0x73, 0x72, 0x70, 0x6f, 0x71, 0x73, 0x73, 0x7b, 0x75, 0x74, 0x7b, 0x82, 0x80, 0x77, 0x70, 0x73, 0x6d, 0x67, 0x63, 0x65, 0x6b, 0x70, 0x71, 0x74, 0x78, 0x7b, 0x77, 0x6d, 0x66, 0x6a, 0x74, 0x7c, 0x78, 0x74, 0x70, 0x6f, 0x71, 0x73, 0x74, 0x6d, 0x67, 0x6e, 0x79, 0x7c, 0x7f, 0x8f, 0xaa, 0xbc, 0xbe, 0xc1, 0xc2, 0xc2, 0xc0, 0xbd, 0xbb, 0xbf, 0xc1, 0xc3, 0xc3, 0xc0, 0xbf, 0xbe, 0xbf, 0xc0, 0xc2, 0xc5, 0xc7, 0xc7, 0xc5, 0xc2, 0xc0, 0xbc, 0xbd, 0xbf, 0xc1, 0xc1, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbd, 0xbc, 0xbb, 0xb9, 0xb8, 0xb4, 0xb0, 0xae, 0xae, 0xae, 0xad, 0xad, 0xae, 0xab, 0xaa, 0xaa, 0xa9, 0xa8, 0xa9, 0xab, 0xad, 0xaf, 0xb0, 0xb1, 0xb3, 0xb4, 0xb3, 0xb2, 0xb1, 0xad, 0xa5, 0x9e, 0x97, 0x8a, 0x7e, 0x80, 0x8a, 0x8f, 0x9e, 0x9b, 0x8d, 0x6c, 0x60, 0x93, 0xc7, 0xc7, 0xcc, 0xd5, 0xde, 0xe5, 0xeb, 0xf0, 0xf2, 0xed, 0xee, 0xf0, 0xf2, 0xf5, 0xf7, 0xf8, 0xf9, 0xf9, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf8, 0xf9, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf7, 0xf8, 0xf6, 0xf6, 0xf6, 0xf6, 0xf6, 0xf7, 0xf8, 0xf9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf8, 0xf7, 0xf7, 0xf6, 0xf4, 0xf0, 0xec, 0xe9, 0xe9, 0xe6, 0xe1, 0xdc, 0xd6, 0xd1, 0xcb, 0xc7, 0xc7, 0xc6, 0xc9, 0xce, 0xd0, 0xcf, 0xd1, 0xd5, 0xdb, 0xde, 0xe1, 0xe3, 0xe4, 0xe4, 0xe5, 0xe5, 0xe2, 0xe2, 0xe2, 0xe1, 0xe1, 0xe0, 0xe0, 0xe0, 0xe0, 0xe1, 0xe2, 0xe0, 0xdc, 0xda, 0xda, 0xdb, 0xd9, 0xda, 0xdb, 0xdc, 0xde, 0xdf, 0xe0, 0xe1, 0xe3, 0xe2, 0xe0, 0xdf, 0xde, 0xdf, 0xdf, 0xe0, 0xe1, 0xe1, 0xe2, 0xe3, 0xe4, 0xe3, 0xe0, 0xde, 0xdd, 0xdc, 0xdb, 0xda, 0xd9, 0xd9, 0xda, 0xdb, 0xdc, 0xdc, 0xdd, 0xdc, 0xdb, 0xd8, 0xd6, 0xd4, 0xd0, 0xd0, 0xd0, 0xd0, 0xce, 0xcc, 0xca, 0xc8, 0xcf, 0xcf, 0xcf, 0xcd, 0xcb, 0xc9, 0xc9, 0xc9, 0xc4, 0xc2, 0xc0, 0xc0, 0xc0, 0xbe, 0xba, 0xb7, 0xb8, 0xb4, 0xad, 0xa5, 0xa1, 0x9d, 0x92, 0x85, 0x78, 0x7e, 0x83, 0x86, 0x89, 0x8b, 0x8b, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x87, 0x86, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x77, 0x76, 0x74, 0x72, 0x71, 0x73, 0x72, 0x6e, 0x6b, 0x6a, 0x69, 0x67, 0x65, 0x64, 0x63, 0x60, 0x5e, 0x5b, 0x56, 0x54, 0x51, 0x4e, 0x4b, 0x47, 0x44, 0x41, 0x3d, 0x37, 0x32, 0x30, 0x2b, 0x2e, 0x42, 0x59, 0x5e, 0x64, 0x69, 0x6c, 0x6f, 0x70, 0x6b, 0x63, 0x5a, 0x55, 0x55, 0x5d, 0x65, 0x65, 0x5c, 0x52, 0x46, 0x41, 0x41, 0x4d, 0x61, 0x6f, 0x6c, 0x61, 0x5b, 0x59, 0x5b, 0x5f, 0x63, 0x6f, 0x76, 0x74, 0x63, 0x48, 0x35, 0x2a, 0x21, 0x23, 0x26, 0x1f, 0x1f, 0x24, 0x20, 0x19, 0x25, 0x3d, 0x45, 0x3c, 0x4a, 0x4b, 0x42, 0x35, 0x2c, 0x28, 0x31, 0x42, 0x51, 0x78, 0x8f, 0x99, 0x9a, 0x90, 0x7e, 0x63, 0x66, 0x6a, 0x69, 0x5d, 0x4c, 0x40, 0x38, 0x35, 0x31, 0x39, 0x45, 0x50, 0x5a, 0x5f, 0x5c, 0x55, 0x4a, 0x29, 0x1d, 0x35, 0x57, 0x66, 0x76, 0x85, 0x85, 0x85, 0x8a, 0x89, 0x81, 0x81, 0x7c, 0x6c, 0x50, 0x43, 0x3f, 0x47, 0x4a, 0x43, 0x42, 0x49, 0x47, 0x40, 0x3b, 0x36, 0x2e, 0x2c, 0x3f, 0x57, 0x56, 0x59, 0x5b, 0x57, 0x53, 0x54, 0x58, 0x5b, 0x58, 0x56, 0x4f, 0x44, 0x3c, 0x39, 0x39, 0x3b, 0x56, 0x59, 0x59, 0x58, 0x5d, 0x68, 0x6d, 0x6c, 0x67, 0x68, 0x67, 0x64, 0x61, 0x5f, 0x61, 0x62, 0x5c, 0x62, 0x6d, 0x78, 0x7a, 0x72, 0x67, 0x60, 0x71, 0x76, 0x77, 0x70, 0x69, 0x68, 0x6c, 0x6f, 0x6a, 0x65, 0x63, 0x6b, 0x74, 0x76, 0x70, 0x6a, 0x60, 0x5b, 0x5a, 0x5f, 0x65, 0x68, 0x68, 0x68, 0x6d, 0x72, 0x6e, 0x6f, 0x60, 0x5f, 0x57, 0x5a, 0x62, 0x69, 0x6f, 0x71, 0x74, 0x78, 0x7c, 0x7d, 0x6f, 0x68, 0x64, 0x69, 0x70, 0x70, 0x6a, 0x64, 0x5f, 0x61, 0x60, 0x5c, 0x61, 0x6b, 0x72, 0x71, 0x76, 0x7a, 0x79, 0x74, 0x6d, 0x63, 0x63, 0x6e, 0x7a, 0x87, 0x89, 0x76, 0x65, 0x67, 0x77, 0x83, 0x92, 0x90, 0x89, 0x80, 0x7b, 0x7b, 0x7b, 0x7a, 0x6e, 0x6d, 0x6d, 0x6e, 0x70, 0x6f, 0x6c, 0x6a, 0x6a, 0x6e, 0x73, 0x74, 0x73, 0x70, 0x72, 0x79, 0x6b, 0x82, 0x80, 0x80, 0x64, 0x6f, 0x65, 0x66, 0x6e, 0x77, 0x7b, 0x7d, 0x7f, 0x77, 0x6d, 0x6c, 0x71, 0x74, 0x73, 0x6d, 0x69, 0x6c, 0x72, 0x75, 0x71, 0x69, 0x66, 0x6f, 0x7b, 0x7d, 0x76, 0x6e, 0x62, 0x5c, 0x59, 0x5d, 0x66, 0x6c, 0x6c, 0x6b, 0x71, 0x74, 0x77, 0x73, 0x69, 0x60, 0x60, 0x67, 0x7c, 0x79, 0x74, 0x6f, 0x6b, 0x6a, 0x6c, 0x6d, 0x71, 0x70, 0x70, 0x72, 0x6d, 0x72, 0x92, 0xb3, 0xbf, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc5, 0xc5, 0xc3, 0xc0, 0xbd, 0xbc, 0xbe, 0xc0, 0xc2, 0xc3, 0xc4, 0xc5, 0xc5, 0xc4, 0xc3, 0xc2, 0xbd, 0xbe, 0xc0, 0xc1, 0xc2, 0xc2, 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xbf, 0xbd, 0xbe, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb, 0xbc, 0xbd, 0xb3, 0xb0, 0xae, 0xaf, 0xb1, 0xb0, 0xb1, 0xb3, 0xaf, 0xaf, 0xae, 0xac, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xac, 0xae, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1, 0xaf, 0xa6, 0x9f, 0x98, 0x8c, 0x7e, 0x7c, 0x82, 0x8d, 0x9b, 0x9e, 0x95, 0x74, 0x57, 0x7a, 0xb6, 0xc1, 0xc7, 0xd0, 0xda, 0xe2, 0xe8, 0xed, 0xf0, 0xed, 0xee, 0xf0, 0xf2, 0xf4, 0xf6, 0xf7, 0xf8, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf7, 0xf9, 0xfa, 0xf9, 0xf9, 0xfa, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf7, 0xf7, 0xf6, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5, 0xf4, 0xf4, 0xf3, 0xf3, 0xf4, 0xf5, 0xf6, 0xf6, 0xf5, 0xf6, 0xf6, 0xf7, 0xf7, 0xf6, 0xf5, 0xf5, 0xf7, 0xf6, 0xf6, 0xf5, 0xf2, 0xee, 0xe9, 0xe6, 0xe3, 0xdf, 0xd9, 0xd3, 0xce, 0xc8, 0xc4, 0xc2, 0xc5, 0xc6, 0xc8, 0xcb, 0xcc, 0xcd, 0xcf, 0xd3, 0xdd, 0xde, 0xe0, 0xe1, 0xe1, 0xe2, 0xe4, 0xe5, 0xe2, 0xe2, 0xe3, 0xe2, 0xe1, 0xdf, 0xde, 0xdc, 0xdc, 0xdd, 0xdd, 0xdb, 0xd8, 0xd6, 0xd6, 0xd8, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe2, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xe4, 0xe4, 0xe4, 0xe3, 0xe1, 0xdd, 0xdb, 0xda, 0xd9, 0xd9, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xdc, 0xdc, 0xdc, 0xdb, 0xda, 0xd7, 0xd5, 0xd3, 0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xcc, 0xcc, 0xcd, 0xd0, 0xd0, 0xd0, 0xce, 0xcb, 0xc9, 0xc9, 0xc9, 0xc7, 0xc5, 0xc2, 0xc2, 0xc1, 0xc0, 0xbc, 0xb9, 0xb8, 0xb5, 0xad, 0xa4, 0x9e, 0x98, 0x8c, 0x7f, 0x78, 0x7f, 0x84, 0x84, 0x84, 0x87, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x88, 0x87, 0x86, 0x85, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x70, 0x70, 0x71, 0x70, 0x6d, 0x6a, 0x69, 0x68, 0x66, 0x64, 0x62, 0x61, 0x5f, 0x5d, 0x5b, 0x56, 0x53, 0x50, 0x4d, 0x4a, 0x47, 0x42, 0x3f, 0x33, 0x36, 0x35, 0x2f, 0x2d, 0x36, 0x44, 0x4d, 0x57, 0x5d, 0x65, 0x6c, 0x6f, 0x6d, 0x66, 0x5f, 0x56, 0x4f, 0x47, 0x48, 0x4f, 0x55, 0x53, 0x4e, 0x36, 0x38, 0x3d, 0x47, 0x56, 0x61, 0x61, 0x5c, 0x5a, 0x56, 0x5b, 0x68, 0x73, 0x76, 0x68, 0x51, 0x3e, 0x29, 0x22, 0x28, 0x28, 0x2a, 0x26, 0x19, 0x19, 0x1b, 0x17, 0x12, 0x19, 0x2b, 0x35, 0x35, 0x46, 0x3d, 0x30, 0x2a, 0x2c, 0x2e, 0x35, 0x42, 0x5e, 0x87, 0x99, 0x9a, 0x93, 0x80, 0x6d, 0x59, 0x61, 0x53, 0x47, 0x41, 0x39, 0x2e, 0x2a, 0x2d, 0x35, 0x3f, 0x4a, 0x4e, 0x4e, 0x4c, 0x48, 0x44, 0x17, 0x34, 0x5a, 0x78, 0x7d, 0x78, 0x6f, 0x6e, 0x86, 0x78, 0x7c, 0x87, 0x83, 0x73, 0x5d, 0x45, 0x44, 0x4f, 0x53, 0x4b, 0x43, 0x42, 0x43, 0x41, 0x39, 0x36, 0x32, 0x2f, 0x35, 0x48, 0x66, 0x7d, 0x79, 0x8b, 0x91, 0x84, 0x7c, 0x7b, 0x6b, 0x54, 0x53, 0x56, 0x50, 0x47, 0x49, 0x56, 0x5d, 0x59, 0x5b, 0x5d, 0x5f, 0x61, 0x65, 0x6a, 0x6b, 0x69, 0x62, 0x64, 0x65, 0x65, 0x63, 0x63, 0x65, 0x66, 0x6e, 0x68, 0x63, 0x62, 0x63, 0x65, 0x68, 0x6c, 0x6a, 0x72, 0x77, 0x73, 0x6c, 0x69, 0x69, 0x6a, 0x64, 0x62, 0x64, 0x6b, 0x74, 0x77, 0x75, 0x70, 0x67, 0x60, 0x5b, 0x5d, 0x61, 0x62, 0x62, 0x63, 0x61, 0x66, 0x63, 0x65, 0x56, 0x56, 0x50, 0x54, 0x67, 0x6e, 0x72, 0x72, 0x71, 0x72, 0x74, 0x76, 0x6e, 0x69, 0x67, 0x6b, 0x6e, 0x6b, 0x65, 0x60, 0x60, 0x61, 0x5f, 0x5d, 0x5f, 0x67, 0x6f, 0x73, 0x7b, 0x82, 0x80, 0x77, 0x6d, 0x63, 0x61, 0x68, 0x6d, 0x72, 0x72, 0x6b, 0x6a, 0x72, 0x7e, 0x85, 0x7a, 0x78, 0x72, 0x6c, 0x6d, 0x73, 0x74, 0x70, 0x6c, 0x6c, 0x6d, 0x70, 0x73, 0x74, 0x72, 0x6f, 0x73, 0x78, 0x7a, 0x7c, 0x7d, 0x73, 0x68, 0x67, 0x73, 0x89, 0x89, 0x84, 0x71, 0x7f, 0x7b, 0x7a, 0x7d, 0x83, 0x84, 0x82, 0x7f, 0x75, 0x6b, 0x6b, 0x70, 0x74, 0x73, 0x6a, 0x66, 0x6b, 0x72, 0x76, 0x68, 0x62, 0x60, 0x68, 0x73, 0x77, 0x75, 0x72, 0x72, 0x70, 0x75, 0x7e, 0x86, 0x85, 0x7e, 0x78, 0x85, 0x86, 0x85, 0x82, 0x7c, 0x79, 0x78, 0x79, 0x72, 0x75, 0x76, 0x73, 0x6d, 0x69, 0x68, 0x69, 0x70, 0x73, 0x6d, 0x6c, 0x69, 0x74, 0x9d, 0xbc, 0xc0, 0xc0, 0xc1, 0xc2, 0xc3, 0xc5, 0xc6, 0xc7, 0xc5, 0xc3, 0xc1, 0xbe, 0xbc, 0xbe, 0xc1, 0xc4, 0xc8, 0xc6, 0xc5, 0xc5, 0xc5, 0xc4, 0xc3, 0xc1, 0xbe, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xc0, 0xbe, 0xbc, 0xbf, 0xbe, 0xbd, 0xbb, 0xba, 0xb9, 0xbb, 0xbc, 0xb9, 0xb4, 0xb1, 0xb0, 0xaf, 0xad, 0xac, 0xad, 0xaf, 0xb0, 0xb0, 0xad, 0xa9, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xac, 0xac, 0xac, 0xad, 0xab, 0xa6, 0xa1, 0x9b, 0x91, 0x83, 0x7a, 0x75, 0x88, 0x95, 0x9b, 0x9b, 0x84, 0x5e, 0x6d, 0xa9, 0xc0, 0xc5, 0xce, 0xd6, 0xde, 0xe4, 0xea, 0xed, 0xec, 0xed, 0xef, 0xf2, 0xf4, 0xf6, 0xf7, 0xf8, 0xf8, 0xf8, 0xf9, 0xf8, 0xf7, 0xf7, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf6, 0xf5, 0xf5, 0xf5, 0xf5, 0xf5, 0xf4, 0xf3, 0xf3, 0xf3, 0xf3, 0xf2, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf5, 0xf5, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf3, 0xf1, 0xed, 0xe8, 0xe4, 0xdd, 0xd7, 0xd0, 0xcb, 0xc7, 0xc3, 0xc1, 0xc1, 0xc7, 0xc9, 0xca, 0xcb, 0xcb, 0xcc, 0xd0, 0xd3, 0xdc, 0xdd, 0xde, 0xdf, 0xde, 0xdf, 0xe0, 0xe2, 0xe2, 0xe2, 0xe2, 0xe2, 0xe1, 0xdf, 0xdd, 0xdb, 0xdd, 0xdd, 0xdd, 0xdb, 0xd9, 0xd9, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe1, 0xe2, 0xe3, 0xe4, 0xe6, 0xe6, 0xe6, 0xe5, 0xe4, 0xe4, 0xe3, 0xe2, 0xe1, 0xe0, 0xde, 0xdb, 0xd9, 0xdb, 0xda, 0xda, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xdd, 0xdc, 0xdb, 0xd9, 0xd6, 0xd4, 0xd2, 0xd0, 0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xcd, 0xce, 0xd0, 0xcf, 0xcf, 0xcf, 0xce, 0xcc, 0xca, 0xca, 0xcb, 0xca, 0xc8, 0xc5, 0xc3, 0xc3, 0xc1, 0xbd, 0xba, 0xb8, 0xb6, 0xae, 0xa3, 0x9a, 0x92, 0x86, 0x79, 0x79, 0x7f, 0x83, 0x83, 0x82, 0x84, 0x88, 0x8a, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x84, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x74, 0x73, 0x70, 0x6e, 0x6f, 0x6e, 0x6b, 0x69, 0x69, 0x67, 0x65, 0x62, 0x60, 0x5f, 0x5d, 0x5a, 0x58, 0x56, 0x52, 0x4e, 0x4b, 0x48, 0x44, 0x3f, 0x3b, 0x33, 0x35, 0x2f, 0x27, 0x2f, 0x43, 0x52, 0x55, 0x5e, 0x5f, 0x62, 0x67, 0x69, 0x66, 0x62, 0x60, 0x53, 0x4b, 0x40, 0x3a, 0x3d, 0x45, 0x49, 0x48, 0x48, 0x4a, 0x4d, 0x51, 0x55, 0x57, 0x58, 0x59, 0x57, 0x5d, 0x64, 0x6b, 0x6a, 0x5d, 0x49, 0x3b, 0x2e, 0x2c, 0x30, 0x33, 0x2e, 0x2b, 0x2b, 0x29, 0x21, 0x1d, 0x21, 0x28, 0x26, 0x1f, 0x22, 0x2c, 0x35, 0x2d, 0x2b, 0x36, 0x3b, 0x33, 0x3d, 0x56, 0x80, 0xa1, 0xa2, 0x91, 0x7b, 0x5a, 0x43, 0x37, 0x36, 0x29, 0x21, 0x21, 0x1d, 0x17, 0x1d, 0x2a, 0x46, 0x4e, 0x56, 0x52, 0x44, 0x35, 0x2c, 0x29, 0x67, 0x74, 0x74, 0x6e, 0x63, 0x6a, 0x69, 0x68, 0x86, 0x7f, 0x66, 0x5e, 0x63, 0x4a, 0x30, 0x39, 0x46, 0x48, 0x47, 0x41, 0x38, 0x32, 0x32, 0x34, 0x38, 0x33, 0x2c, 0x2b, 0x38, 0x4a, 0x53, 0x53, 0x55, 0x3f, 0x28, 0x1f, 0x1b, 0x1a, 0x23, 0x30, 0x39, 0x39, 0x3f, 0x4a, 0x50, 0x55, 0x5f, 0x6a, 0x65, 0x63, 0x63, 0x65, 0x65, 0x62, 0x60, 0x60, 0x63, 0x66, 0x69, 0x6a, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x65, 0x61, 0x61, 0x62, 0x63, 0x66, 0x69, 0x71, 0x75, 0x76, 0x73, 0x6f, 0x6d, 0x6b, 0x69, 0x66, 0x66, 0x68, 0x6c, 0x72, 0x77, 0x78, 0x77, 0x71, 0x68, 0x5f, 0x5c, 0x5d, 0x5e, 0x5f, 0x61, 0x66, 0x69, 0x63, 0x62, 0x54, 0x57, 0x56, 0x5d, 0x60, 0x65, 0x6a, 0x6c, 0x6f, 0x73, 0x76, 0x76, 0x6e, 0x6d, 0x6d, 0x6b, 0x67, 0x63, 0x63, 0x66, 0x69, 0x67, 0x65, 0x64, 0x63, 0x67, 0x70, 0x7a, 0x92, 0x91, 0x7e, 0x66, 0x5d, 0x5f, 0x67, 0x70, 0x63, 0x5e, 0x5a, 0x5b, 0x62, 0x69, 0x6b, 0x6a, 0x67, 0x67, 0x63, 0x60, 0x67, 0x73, 0x78, 0x77, 0x6f, 0x6b, 0x67, 0x67, 0x6b, 0x6e, 0x6e, 0x6c, 0x67, 0x6e, 0x70, 0x74, 0x7a, 0x71, 0x64, 0x65, 0x78, 0x8a, 0x8b, 0x7f, 0x74, 0x81, 0x85, 0x82, 0x8f, 0x90, 0x87, 0x7b, 0x74, 0x6c, 0x68, 0x6c, 0x6e, 0x72, 0x70, 0x68, 0x66, 0x6c, 0x72, 0x73, 0x67, 0x65, 0x66, 0x6a, 0x6d, 0x6f, 0x73, 0x77, 0x76, 0x78, 0x7f, 0x86, 0x85, 0x7c, 0x73, 0x6f, 0x6b, 0x6d, 0x6e, 0x70, 0x77, 0x7e, 0x7e, 0x79, 0x6a, 0x70, 0x76, 0x74, 0x6d, 0x67, 0x67, 0x69, 0x6c, 0x72, 0x69, 0x6d, 0x75, 0x87, 0xac, 0xbd, 0xbe, 0xbf, 0xc1, 0xc3, 0xc4, 0xc5, 0xc6, 0xc6, 0xc1, 0xc0, 0xbf, 0xbf, 0xc0, 0xc2, 0xc3, 0xc3, 0xc6, 0xc5, 0xc5, 0xc6, 0xc7, 0xc6, 0xc3, 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xbf, 0xbe, 0xbd, 0xbf, 0xbe, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xba, 0xbb, 0xbc, 0xbc, 0xbb, 0xb9, 0xb8, 0xb9, 0xba, 0xb6, 0xb1, 0xad, 0xab, 0xa8, 0xa4, 0xa2, 0xa2, 0xab, 0xad, 0xaf, 0xad, 0xa9, 0xa7, 0xa7, 0xa8, 0xaa, 0xab, 0xac, 0xac, 0xaa, 0xaa, 0xab, 0xac, 0xa9, 0xa8, 0xa3, 0x9b, 0x93, 0x89, 0x7a, 0x6e, 0x81, 0x8c, 0x94, 0x9b, 0x91, 0x67, 0x63, 0x9a, 0xc6, 0xca, 0xd1, 0xd7, 0xde, 0xe3, 0xe8, 0xeb, 0xea, 0xeb, 0xee, 0xf1, 0xf4, 0xf6, 0xf7, 0xf8, 0xf7, 0xf9, 0xfa, 0xf9, 0xf8, 0xf6, 0xf7, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf9, 0xfa, 0xfa, 0xfa, 0xf9, 0xf9, 0xf7, 0xf6, 0xf5, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf2, 0xf3, 0xf4, 0xf3, 0xf1, 0xef, 0xef, 0xf0, 0xf2, 0xf3, 0xf4, 0xf4, 0xf3, 0xf3, 0xf2, 0xf1, 0xf0, 0xef, 0xec, 0xe7, 0xe1, 0xdd, 0xd7, 0xcf, 0xc8, 0xc5, 0xc3, 0xc1, 0xc2, 0xc5, 0xc9, 0xcc, 0xce, 0xcd, 0xcc, 0xce, 0xd1, 0xd3, 0xd8, 0xdb, 0xdd, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xe1, 0xe0, 0xe0, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xde, 0xdd, 0xdb, 0xdb, 0xdb, 0xdc, 0xdc, 0xdc, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe1, 0xe2, 0xe2, 0xe2, 0xe3, 0xe4, 0xe5, 0xe5, 0xe5, 0xe4, 0xe3, 0xe3, 0xe1, 0xdf, 0xde, 0xde, 0xdf, 0xde, 0xdd, 0xdf, 0xdd, 0xdc, 0xdc, 0xdd, 0xdd, 0xdb, 0xd9, 0xd9, 0xd8, 0xd6, 0xd4, 0xd2, 0xd1, 0xd0, 0xd0, 0xd0, 0xd0, 0xd1, 0xd0, 0xce, 0xcd, 0xcf, 0xd0, 0xcd, 0xce, 0xce, 0xcd, 0xcc, 0xcb, 0xcb, 0xcc, 0xcd, 0xca, 0xc7, 0xc5, 0xc4, 0xc2, 0xbe, 0xbb, 0xb7, 0xb7, 0xb0, 0xa2, 0x95, 0x8b, 0x7e, 0x73, 0x79, 0x7c, 0x81, 0x83, 0x82, 0x81, 0x84, 0x89, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x75, 0x73, 0x74, 0x70, 0x6e, 0x6e, 0x6d, 0x6a, 0x69, 0x69, 0x65, 0x63, 0x60, 0x5e, 0x5c, 0x5a, 0x57, 0x56, 0x54, 0x50, 0x4b, 0x47, 0x45, 0x41, 0x3b, 0x36, 0x37, 0x31, 0x29, 0x2a, 0x3c, 0x55, 0x63, 0x65, 0x64, 0x62, 0x64, 0x6a, 0x6c, 0x67, 0x62, 0x61, 0x51, 0x4a, 0x3f, 0x35, 0x35, 0x3a, 0x3c, 0x3a, 0x2f, 0x2c, 0x2f, 0x37, 0x3d, 0x3f, 0x45, 0x4b, 0x5f, 0x68, 0x65, 0x5a, 0x51, 0x47, 0x50, 0x68, 0x73, 0x69, 0x55, 0x45, 0x40, 0x39, 0x2e, 0x28, 0x28, 0x2c, 0x36, 0x3e, 0x3a, 0x32, 0x33, 0x3c, 0x40, 0x3d, 0x3c, 0x3e, 0x39, 0x2e, 0x3b, 0x59, 0x75, 0x90, 0x8b, 0x79, 0x62, 0x40, 0x2f, 0x2e, 0x2e, 0x2b, 0x2a, 0x2b, 0x27, 0x25, 0x30, 0x40, 0x48, 0x40, 0x37, 0x30, 0x31, 0x41, 0x61, 0x7d, 0x5d, 0x45, 0x43, 0x6f, 0x77, 0x6a, 0x5e, 0x6f, 0x53, 0x49, 0x52, 0x4b, 0x24, 0x1b, 0x33, 0x3e, 0x3d, 0x33, 0x32, 0x3a, 0x37, 0x28, 0x24, 0x2c, 0x22, 0x22, 0x26, 0x36, 0x4e, 0x61, 0x63, 0x5c, 0x33, 0x24, 0x32, 0x5f, 0x78, 0x74, 0x7b, 0x91, 0x77, 0x6b, 0x57, 0x4f, 0x67, 0x86, 0x89, 0x77, 0x73, 0x6c, 0x68, 0x69, 0x68, 0x64, 0x64, 0x68, 0x72, 0x74, 0x75, 0x73, 0x6d, 0x68, 0x65, 0x64, 0x66, 0x61, 0x5e, 0x60, 0x64, 0x68, 0x6d, 0x72, 0x77, 0x75, 0x71, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x6a, 0x6a, 0x69, 0x69, 0x6d, 0x72, 0x75, 0x75, 0x70, 0x67, 0x5e, 0x5b, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x6d, 0x63, 0x5f, 0x50, 0x56, 0x58, 0x62, 0x65, 0x67, 0x68, 0x68, 0x69, 0x6b, 0x69, 0x66, 0x68, 0x6a, 0x6b, 0x67, 0x5f, 0x5f, 0x6a, 0x77, 0x73, 0x6f, 0x6d, 0x6c, 0x69, 0x6a, 0x74, 0x82, 0x87, 0x88, 0x76, 0x5f, 0x58, 0x5a, 0x5a, 0x5a, 0x5b, 0x55, 0x52, 0x5a, 0x64, 0x6b, 0x6e, 0x6f, 0x67, 0x68, 0x64, 0x60, 0x67, 0x74, 0x7d, 0x7e, 0x76, 0x6e, 0x65, 0x63, 0x68, 0x6e, 0x71, 0x72, 0x76, 0x7a, 0x71, 0x68, 0x69, 0x63, 0x62, 0x70, 0x81, 0x8f, 0x8f, 0x79, 0x72, 0x7c, 0x85, 0x81, 0x89, 0x8b, 0x84, 0x7a, 0x73, 0x6b, 0x67, 0x6b, 0x6d, 0x70, 0x6d, 0x67, 0x68, 0x6f, 0x72, 0x70, 0x6b, 0x6d, 0x70, 0x6e, 0x69, 0x68, 0x70, 0x79, 0x82, 0x86, 0x8b, 0x8d, 0x86, 0x7c, 0x77, 0x79, 0x7e, 0x7f, 0x7e, 0x7d, 0x84, 0x8a, 0x82, 0x74, 0x68, 0x6f, 0x74, 0x70, 0x68, 0x63, 0x66, 0x6b, 0x6b, 0x72, 0x69, 0x73, 0x84, 0x9b, 0xb9, 0xbc, 0xbb, 0xbd, 0xc0, 0xc3, 0xc4, 0xc4, 0xc2, 0xc1, 0xbf, 0xbf, 0xc0, 0xc2, 0xc4, 0xc4, 0xc1, 0xbf, 0xc0, 0xc1, 0xc3, 0xc6, 0xc8, 0xc8, 0xc5, 0xc2, 0xc3, 0xc3, 0xc2, 0xc2, 0xc0, 0xbf, 0xbe, 0xbd, 0xbe, 0xbe, 0xbf, 0xbf, 0xc0, 0xbf, 0xbc, 0xba, 0xb6, 0xb9, 0xbb, 0xbb, 0xb9, 0xb8, 0xb8, 0xb9, 0xb6, 0xb2, 0xaf, 0xaf, 0xaf, 0xad, 0xac, 0xae, 0xaa, 0xad, 0xb0, 0xaf, 0xac, 0xaa, 0xaa, 0xac, 0xa8, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xac, 0xaa, 0xa2, 0x97, 0x90, 0x8b, 0x7d, 0x6e, 0x80, 0x87, 0x8d, 0x97, 0x93, 0x65, 0x54, 0x85, 0xca, 0xce, 0xd3, 0xd8, 0xdd, 0xe2, 0xe6, 0xe9, 0xe8, 0xe9, 0xec, 0xf0, 0xf3, 0xf6, 0xf8, 0xf9, 0xf7, 0xf9, 0xfb, 0xfa, 0xf8, 0xf6, 0xf6, 0xf7, 0xf8, 0xf8, 0xf8, 0xf9, 0xf9, 0xfa, 0xfb, 0xfb, 0xf7, 0xf6, 0xf5, 0xf3, 0xf2, 0xf1, 0xf0, 0xf0, 0xf1, 0xf1, 0xf1, 0xf3, 0xf5, 0xf5, 0xf3, 0xf1, 0xee, 0xef, 0xf1, 0xf2, 0xf3, 0xf3, 0xf3, 0xf2, 0xf1, 0xf0, 0xee, 0xeb, 0xe7, 0xe0, 0xd8, 0xd3, 0xd0, 0xc8, 0xc1, 0xbf, 0xbf, 0xbe, 0xc2, 0xc6, 0xc9, 0xcc, 0xcf, 0xce, 0xcc, 0xcd, 0xcf, 0xd1, 0xd5, 0xd9, 0xde, 0xe1, 0xe1, 0xdf, 0xdd, 0xdb, 0xe0, 0xdf, 0xdd, 0xdc, 0xdc, 0xdd, 0xdf, 0xe0, 0xda, 0xd8, 0xd7, 0xd7, 0xd9, 0xda, 0xda, 0xd9, 0xdb, 0xdc, 0xdd, 0xdf, 0xe1, 0xe2, 0xe4, 0xe4, 0xe3, 0xe3, 0xe3, 0xe3, 0xe3, 0xe2, 0xe2, 0xe2, 0xe2, 0xe0, 0xde, 0xdd, 0xdf, 0xe1, 0xe3, 0xe3, 0xe1, 0xdf, 0xdd, 0xdd, 0xdc, 0xda, 0xd6, 0xd3, 0xd5, 0xd3, 0xd2, 0xd0, 0xd0, 0xd0, 0xd1, 0xd1, 0xd0, 0xd1, 0xd3, 0xd2, 0xd0, 0xce, 0xce, 0xcf, 0xcc, 0xcd, 0xcd, 0xcd, 0xcc, 0xcb, 0xcc, 0xcd, 0xce, 0xcb, 0xc7, 0xc5, 0xc4, 0xc2, 0xbe, 0xbb, 0xb7, 0xb7, 0xb0, 0xa1, 0x92, 0x85, 0x78, 0x6e, 0x78, 0x79, 0x7f, 0x83, 0x82, 0x7f, 0x81, 0x87, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x83, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x74, 0x72, 0x75, 0x71, 0x6d, 0x6d, 0x6c, 0x69, 0x68, 0x69, 0x64, 0x62, 0x5f, 0x5c, 0x5a, 0x58, 0x55, 0x53, 0x52, 0x4e, 0x48, 0x45, 0x42, 0x3e, 0x37, 0x33, 0x32, 0x2c, 0x2b, 0x3b, 0x51, 0x60, 0x62, 0x5d, 0x5b, 0x5a, 0x60, 0x6b, 0x6f, 0x67, 0x5d, 0x58, 0x50, 0x4a, 0x3f, 0x35, 0x32, 0x34, 0x32, 0x2c, 0x30, 0x31, 0x36, 0x3b, 0x39, 0x37, 0x43, 0x53, 0x63, 0x6d, 0x66, 0x58, 0x4c, 0x38, 0x38, 0x52, 0x70, 0x7a, 0x70, 0x5b, 0x51, 0x4d, 0x50, 0x5e, 0x6c, 0x73, 0x6b, 0x52, 0x40, 0x3e, 0x3f, 0x3c, 0x3c, 0x37, 0x27, 0x1a, 0x1a, 0x22, 0x2f, 0x3f, 0x56, 0x70, 0x6d, 0x61, 0x52, 0x35, 0x2c, 0x34, 0x23, 0x1d, 0x18, 0x1a, 0x21, 0x29, 0x2e, 0x30, 0x39, 0x3b, 0x41, 0x46, 0x40, 0x37, 0x3a, 0x44, 0x3d, 0x4e, 0x57, 0x65, 0x5d, 0x62, 0x57, 0x55, 0x6f, 0x5e, 0x3d, 0x26, 0x23, 0x24, 0x27, 0x32, 0x32, 0x36, 0x38, 0x36, 0x35, 0x37, 0x37, 0x33, 0x32, 0x36, 0x43, 0x58, 0x6e, 0x7c, 0x81, 0x81, 0x79, 0x78, 0x79, 0x7c, 0x74, 0x5d, 0x40, 0x2b, 0x2c, 0x34, 0x54, 0x83, 0x9a, 0x86, 0x62, 0x4a, 0x6b, 0x6c, 0x6d, 0x6a, 0x63, 0x61, 0x6c, 0x79, 0x8e, 0x82, 0x6f, 0x5f, 0x5a, 0x5e, 0x63, 0x64, 0x64, 0x64, 0x66, 0x6a, 0x6d, 0x6f, 0x72, 0x76, 0x7c, 0x82, 0x82, 0x7c, 0x7e, 0x88, 0x8b, 0x86, 0x80, 0x78, 0x73, 0x76, 0x7a, 0x7b, 0x7e, 0x82, 0x78, 0x7e, 0x83, 0x82, 0x79, 0x71, 0x71, 0x75, 0x62, 0x67, 0x69, 0x66, 0x5f, 0x5b, 0x5c, 0x60, 0x57, 0x5b, 0x60, 0x65, 0x67, 0x67, 0x66, 0x66, 0x6e, 0x6f, 0x6f, 0x6b, 0x66, 0x66, 0x6f, 0x79, 0x79, 0x76, 0x6f, 0x66, 0x63, 0x66, 0x6a, 0x6b, 0x67, 0x69, 0x66, 0x5e, 0x58, 0x58, 0x59, 0x5a, 0x57, 0x60, 0x58, 0x5b, 0x5f, 0x62, 0x6e, 0x66, 0x6d, 0x69, 0x67, 0x68, 0x66, 0x62, 0x60, 0x62, 0x6e, 0x6f, 0x64, 0x5f, 0x6b, 0x70, 0x70, 0x77, 0x79, 0x7c, 0x75, 0x67, 0x63, 0x6b, 0x72, 0x71, 0x8d, 0x95, 0x8b, 0x7e, 0x70, 0x7d, 0x80, 0x81, 0x8a, 0x80, 0x7a, 0x7b, 0x78, 0x70, 0x6d, 0x6f, 0x6c, 0x6c, 0x6c, 0x6c, 0x6e, 0x6e, 0x6c, 0x6a, 0x68, 0x6b, 0x6e, 0x6c, 0x64, 0x62, 0x6d, 0x7a, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x84, 0x7f, 0x7a, 0x7a, 0x80, 0x83, 0x7d, 0x75, 0x6b, 0x72, 0x76, 0x71, 0x6a, 0x6b, 0x75, 0x7e, 0x7d, 0x74, 0x78, 0x80, 0x87, 0xb1, 0xb7, 0xba, 0xbc, 0xc0, 0xc5, 0xc6, 0xc4, 0xc3, 0xc3, 0xc5, 0xc1, 0xc0, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc3, 0xc4, 0xc6, 0xc9, 0xc9, 0xc7, 0xc5, 0xc3, 0xc3, 0xc3, 0xc1, 0xbf, 0xbf, 0xc0, 0xc0, 0xbe, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbb, 0xb8, 0xb8, 0xba, 0xb8, 0xb4, 0xb3, 0xb5, 0xb8, 0xb7, 0xb6, 0xb4, 0xb1, 0xae, 0xab, 0xaa, 0xab, 0xad, 0xae, 0xad, 0xab, 0xa9, 0xaa, 0xab, 0xa4, 0xa3, 0xa2, 0xa2, 0xa3, 0xa6, 0xa9, 0xab, 0xad, 0xad, 0xa8, 0xa1, 0x99, 0x8f, 0x82, 0x77, 0x79, 0x82, 0x8d, 0x97, 0x95, 0x80, 0x53, 0x79, 0xd3, 0xd7, 0xd5, 0xde, 0xd7, 0xe2, 0xe5, 0xe6, 0xe9, 0xe9, 0xea, 0xee, 0xf3, 0xf7, 0xf9, 0xf9, 0xf6, 0xf8, 0xfa, 0xfa, 0xf9, 0xf8, 0xf8, 0xf8, 0xf7, 0xf7, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf6, 0xf4, 0xf1, 0xef, 0xed, 0xed, 0xee, 0xee, 0xf0, 0xf1, 0xf3, 0xf4, 0xf5, 0xf5, 0xf4, 0xf4, 0xf2, 0xf2, 0xf3, 0xf3, 0xf3, 0xf2, 0xf2, 0xf2, 0xed, 0xee, 0xeb, 0xe2, 0xda, 0xd5, 0xd0, 0xca, 0xc6, 0xc3, 0xbe, 0xbb, 0xbb, 0xbf, 0xc5, 0xc9, 0xcb, 0xcd, 0xd0, 0xd1, 0xd0, 0xcf, 0xcf, 0xcf, 0xd3, 0xd8, 0xdb, 0xdc, 0xde, 0xe2, 0xe1, 0xde, 0xdd, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe2, 0xde, 0xdd, 0xdc, 0xdb, 0xdb, 0xdb, 0xdc, 0xdc, 0xde, 0xe0, 0xe1, 0xe0, 0xe1, 0xe3, 0xe4, 0xe2, 0xe6, 0xe5, 0xe3, 0xe2, 0xdf, 0xdd, 0xdb, 0xdb, 0xdc, 0xdc, 0xdd, 0xde, 0xe0, 0xe2, 0xe3, 0xe4, 0xe1, 0xdf, 0xdc, 0xd9, 0xd7, 0xd5, 0xd4, 0xd3, 0xd3, 0xd7, 0xd9, 0xd7, 0xd3, 0xd1, 0xd3, 0xd6, 0xd3, 0xd4, 0xd5, 0xd4, 0xd1, 0xcf, 0xcf, 0xcf, 0xce, 0xce, 0xcd, 0xcd, 0xcc, 0xcb, 0xcb, 0xcb, 0xce, 0xcc, 0xca, 0xc8, 0xc5, 0xc2, 0xbf, 0xbd, 0xbb, 0xb7, 0xa8, 0xa3, 0x88, 0x7c, 0x6c, 0x6e, 0x75, 0x78, 0x7c, 0x7f, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6e, 0x6b, 0x68, 0x66, 0x65, 0x63, 0x60, 0x5e, 0x5b, 0x59, 0x56, 0x53, 0x51, 0x4f, 0x4b, 0x46, 0x42, 0x3f, 0x3c, 0x35, 0x2e, 0x30, 0x2a, 0x2f, 0x42, 0x52, 0x56, 0x58, 0x5d, 0x62, 0x5f, 0x67, 0x74, 0x75, 0x6e, 0x62, 0x55, 0x51, 0x48, 0x3d, 0x39, 0x3e, 0x42, 0x3e, 0x36, 0x2f, 0x27, 0x2b, 0x38, 0x3b, 0x35, 0x3b, 0x4a, 0x55, 0x4d, 0x48, 0x43, 0x37, 0x28, 0x25, 0x2c, 0x44, 0x56, 0x65, 0x67, 0x66, 0x6e, 0x77, 0x7c, 0x70, 0x59, 0x45, 0x44, 0x4d, 0x4d, 0x43, 0x3a, 0x24, 0x1d, 0x1b, 0x21, 0x27, 0x2d, 0x3e, 0x50, 0x56, 0x63, 0x62, 0x4f, 0x41, 0x44, 0x48, 0x45, 0x38, 0x30, 0x25, 0x1f, 0x20, 0x25, 0x2c, 0x31, 0x36, 0x37, 0x3a, 0x3d, 0x43, 0x4a, 0x4f, 0x51, 0x51, 0x52, 0x53, 0x58, 0x57, 0x4a, 0x43, 0x4b, 0x46, 0x36, 0x28, 0x1a, 0x0e, 0x16, 0x22, 0x1f, 0x34, 0x38, 0x37, 0x31, 0x34, 0x49, 0x68, 0x7e, 0x88, 0x8f, 0x90, 0x89, 0x82, 0x7b, 0x6a, 0x59, 0x5c, 0x6d, 0x72, 0x5a, 0x34, 0x1c, 0x1b, 0x23, 0x24, 0x68, 0x91, 0x8f, 0x63, 0x50, 0x45, 0x4e, 0x6c, 0x68, 0x65, 0x65, 0x66, 0x6a, 0x74, 0x7e, 0x77, 0x6f, 0x62, 0x59, 0x5a, 0x60, 0x64, 0x64, 0x67, 0x64, 0x63, 0x68, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x76, 0x77, 0x74, 0x77, 0x7f, 0x83, 0x82, 0x83, 0x7e, 0x7e, 0x86, 0x8b, 0x8c, 0x8c, 0x8f, 0xa1, 0x9b, 0x98, 0x9c, 0xa2, 0xa3, 0xa0, 0x9e, 0x9d, 0x9c, 0x97, 0x90, 0x89, 0x88, 0x8c, 0x91, 0x91, 0x97, 0x98, 0x8e, 0x7d, 0x71, 0x71, 0x75, 0x77, 0x7d, 0x7a, 0x71, 0x72, 0x7b, 0x7c, 0x74, 0x6a, 0x67, 0x64, 0x67, 0x6f, 0x72, 0x6a, 0x60, 0x6a, 0x61, 0x59, 0x57, 0x5a, 0x5e, 0x5d, 0x5b, 0x54, 0x59, 0x51, 0x5a, 0x66, 0x6a, 0x6a, 0x58, 0x5d, 0x60, 0x67, 0x6e, 0x6e, 0x68, 0x64, 0x63, 0x6a, 0x6e, 0x65, 0x5e, 0x63, 0x67, 0x6d, 0x7a, 0x83, 0x7b, 0x70, 0x69, 0x67, 0x69, 0x6f, 0x74, 0x87, 0x97, 0x91, 0x7f, 0x65, 0x6b, 0x72, 0x7b, 0x7d, 0x7e, 0x7d, 0x7a, 0x76, 0x73, 0x6e, 0x6a, 0x72, 0x6e, 0x6b, 0x6d, 0x74, 0x77, 0x71, 0x69, 0x6c, 0x6b, 0x6a, 0x68, 0x65, 0x66, 0x6f, 0x79, 0x7a, 0x7e, 0x81, 0x80, 0x7c, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x81, 0x82, 0x7d, 0x76, 0x7b, 0x7b, 0x7a, 0x75, 0x73, 0x76, 0x7d, 0x83, 0x7d, 0x77, 0x7b, 0x7f, 0x8f, 0xb4, 0xb9, 0xbb, 0xbe, 0xc2, 0xc6, 0xc6, 0xc4, 0xc2, 0xc2, 0xc3, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc3, 0xc4, 0xc6, 0xc8, 0xc9, 0xc8, 0xc6, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc0, 0xbf, 0xbe, 0xbd, 0xbd, 0xba, 0xb9, 0xbb, 0xb9, 0xb6, 0xb5, 0xb7, 0xbc, 0xbb, 0xba, 0xb8, 0xb5, 0xb2, 0xaf, 0xae, 0xad, 0xad, 0xad, 0xac, 0xac, 0xad, 0xaf, 0xb1, 0xa9, 0xa7, 0xa5, 0xa3, 0xa2, 0xa2, 0xa2, 0xa2, 0xa4, 0xa5, 0xa4, 0xa0, 0x99, 0x90, 0x84, 0x79, 0x77, 0x80, 0x8b, 0x94, 0x96, 0x84, 0x58, 0x71, 0xc1, 0xd1, 0xd1, 0xdc, 0xdb, 0xe4, 0xe6, 0xe9, 0xe8, 0xe9, 0xea, 0xee, 0xf3, 0xf7, 0xf9, 0xf9, 0xf6, 0xf8, 0xf9, 0xfa, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf9, 0xf9, 0xf9, 0xf9, 0xf8, 0xf8, 0xf7, 0xf4, 0xf3, 0xf1, 0xf0, 0xef, 0xef, 0xef, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf3, 0xf3, 0xf3, 0xf2, 0xf0, 0xef, 0xed, 0xec, 0xe9, 0xe9, 0xe4, 0xdb, 0xd4, 0xcf, 0xca, 0xc4, 0xbf, 0xbd, 0xbc, 0xbb, 0xbd, 0xc1, 0xc6, 0xc8, 0xce, 0xd0, 0xd3, 0xd4, 0xd4, 0xd3, 0xd2, 0xd2, 0xd6, 0xda, 0xdd, 0xde, 0xe0, 0xe3, 0xe2, 0xdf, 0xdf, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3, 0xe3, 0xe3, 0xdf, 0xdd, 0xdb, 0xd9, 0xd9, 0xda, 0xdc, 0xdd, 0xe0, 0xe2, 0xe3, 0xe2, 0xe3, 0xe4, 0xe4, 0xe2, 0xe0, 0xe0, 0xdf, 0xdd, 0xdc, 0xdb, 0xda, 0xda, 0xdc, 0xdd, 0xde, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xdb, 0xdb, 0xda, 0xd9, 0xd9, 0xd9, 0xd9, 0xda, 0xd8, 0xd9, 0xd9, 0xd8, 0xd6, 0xd5, 0xd5, 0xd6, 0xd4, 0xd5, 0xd5, 0xd3, 0xd0, 0xce, 0xce, 0xcf, 0xd0, 0xcf, 0xce, 0xcd, 0xcc, 0xcb, 0xcb, 0xcb, 0xcd, 0xcc, 0xca, 0xc8, 0xc6, 0xc4, 0xc0, 0xbe, 0xba, 0xb7, 0xa8, 0x9d, 0x81, 0x76, 0x6b, 0x6e, 0x72, 0x75, 0x79, 0x7d, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6c, 0x69, 0x67, 0x65, 0x64, 0x62, 0x60, 0x5d, 0x5a, 0x58, 0x55, 0x52, 0x50, 0x4d, 0x4a, 0x44, 0x40, 0x3d, 0x3a, 0x35, 0x30, 0x2d, 0x32, 0x40, 0x52, 0x5c, 0x5e, 0x61, 0x67, 0x62, 0x68, 0x76, 0x7c, 0x70, 0x62, 0x5b, 0x56, 0x51, 0x45, 0x39, 0x38, 0x3f, 0x42, 0x3d, 0x35, 0x34, 0x39, 0x3d, 0x3a, 0x35, 0x35, 0x3c, 0x43, 0x47, 0x3f, 0x3c, 0x3c, 0x37, 0x2e, 0x2c, 0x31, 0x36, 0x43, 0x59, 0x6c, 0x6e, 0x63, 0x5a, 0x58, 0x51, 0x52, 0x5a, 0x61, 0x59, 0x49, 0x46, 0x4e, 0x4d, 0x56, 0x59, 0x52, 0x4b, 0x4c, 0x52, 0x55, 0x64, 0x65, 0x5b, 0x47, 0x3d, 0x41, 0x45, 0x43, 0x47, 0x44, 0x3b, 0x2d, 0x25, 0x28, 0x32, 0x39, 0x2e, 0x30, 0x33, 0x37, 0x3d, 0x44, 0x48, 0x49, 0x4f, 0x52, 0x4a, 0x41, 0x45, 0x45, 0x3b, 0x33, 0x3a, 0x2d, 0x21, 0x1a, 0x15, 0x14, 0x15, 0x12, 0x1d, 0x24, 0x37, 0x57, 0x7a, 0x8c, 0x86, 0x78, 0x69, 0x56, 0x43, 0x3b, 0x39, 0x3f, 0x4f, 0x61, 0x7a, 0x7f, 0x71, 0x48, 0x23, 0x1d, 0x30, 0x43, 0x6f, 0x78, 0x63, 0x4b, 0x37, 0x43, 0x45, 0x4a, 0x66, 0x60, 0x5d, 0x62, 0x6a, 0x71, 0x76, 0x79, 0x71, 0x6c, 0x65, 0x62, 0x67, 0x6c, 0x6c, 0x68, 0x64, 0x5f, 0x5c, 0x5e, 0x61, 0x60, 0x5e, 0x5c, 0x66, 0x68, 0x69, 0x69, 0x6a, 0x6c, 0x70, 0x74, 0x6e, 0x68, 0x67, 0x6e, 0x75, 0x75, 0x74, 0x74, 0x73, 0x78, 0x82, 0x8c, 0x8e, 0x86, 0x7b, 0x74, 0x72, 0x75, 0x7a, 0x7b, 0x7a, 0x76, 0x72, 0x71, 0x70, 0x7b, 0x85, 0x87, 0x84, 0x87, 0x94, 0xa0, 0xa6, 0xa3, 0x9a, 0x90, 0x92, 0x96, 0x8e, 0x80, 0x7b, 0x7b, 0x79, 0x75, 0x73, 0x73, 0x70, 0x6d, 0x5e, 0x56, 0x53, 0x5c, 0x67, 0x6b, 0x6c, 0x6c, 0x65, 0x64, 0x59, 0x5b, 0x64, 0x68, 0x68, 0x5b, 0x66, 0x69, 0x6f, 0x74, 0x72, 0x69, 0x5f, 0x5b, 0x69, 0x6c, 0x66, 0x61, 0x64, 0x67, 0x6d, 0x77, 0x84, 0x79, 0x72, 0x70, 0x67, 0x5c, 0x60, 0x6d, 0x85, 0x99, 0x9a, 0x8b, 0x6e, 0x6f, 0x71, 0x79, 0x82, 0x7c, 0x74, 0x6e, 0x6c, 0x6a, 0x68, 0x67, 0x73, 0x6f, 0x6a, 0x6a, 0x6f, 0x72, 0x6e, 0x67, 0x6c, 0x69, 0x68, 0x69, 0x6b, 0x6e, 0x75, 0x7b, 0x76, 0x7d, 0x83, 0x82, 0x7c, 0x76, 0x75, 0x78, 0x7a, 0x7e, 0x81, 0x81, 0x80, 0x7e, 0x7c, 0x78, 0x79, 0x78, 0x78, 0x7a, 0x7d, 0x7e, 0x7d, 0x7c, 0x7f, 0x7d, 0x80, 0x7f, 0x9c, 0xb7, 0xbd, 0xbd, 0xc1, 0xc3, 0xc6, 0xc6, 0xc3, 0xc1, 0xc0, 0xc0, 0xbe, 0xbf, 0xc1, 0xc3, 0xc4, 0xc4, 0xc5, 0xc5, 0xc4, 0xc4, 0xc3, 0xc4, 0xc6, 0xc7, 0xc8, 0xc7, 0xc1, 0xbf, 0xbd, 0xbd, 0xbe, 0xbe, 0xbc, 0xba, 0xbc, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xbe, 0xbd, 0xbe, 0xbb, 0xba, 0xba, 0xb9, 0xb8, 0xb8, 0xba, 0xbb, 0xbb, 0xb9, 0xb7, 0xb4, 0xb1, 0xaf, 0xad, 0xaf, 0xad, 0xab, 0xac, 0xae, 0xb1, 0xb4, 0xb5, 0xb0, 0xaf, 0xad, 0xaa, 0xa7, 0xa5, 0xa3, 0xa1, 0x9e, 0xa0, 0xa1, 0x9e, 0x9a, 0x91, 0x85, 0x7a, 0x75, 0x7d, 0x86, 0x8f, 0x97, 0x8b, 0x60, 0x66, 0xb1, 0xd3, 0xd3, 0xdc, 0xe0, 0xe4, 0xe1, 0xe5, 0xe5, 0xe6, 0xe9, 0xed, 0xf2, 0xf6, 0xf7, 0xf8, 0xf6, 0xf7, 0xf9, 0xfa, 0xfa, 0xfa, 0xfa, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, 0xf9, 0xf8, 0xf7, 0xf7, 0xf3, 0xf2, 0xf2, 0xf1, 0xf0, 0xf0, 0xf0, 0xf0, 0xf1, 0xf2, 0xf2, 0xf3, 0xf3, 0xf4, 0xf4, 0xf5, 0xf3, 0xf2, 0xf2, 0xf0, 0xee, 0xec, 0xea, 0xe8, 0xe4, 0xe1, 0xda, 0xd2, 0xcd, 0xc9, 0xc3, 0xbe, 0xb9, 0xba, 0xbb, 0xbe, 0xc2, 0xc6, 0xca, 0xcc, 0xd2, 0xd4, 0xd7, 0xd8, 0xd8, 0xd6, 0xd6, 0xd6, 0xd9, 0xdc, 0xde, 0xdf, 0xe1, 0xe3, 0xe3, 0xe1, 0xdf, 0xe0, 0xe0, 0xe1, 0xe1, 0xe2, 0xe2, 0xe2, 0xe3, 0xe1, 0xdd, 0xdb, 0xdb, 0xdc, 0xdf, 0xe1, 0xe1, 0xe4, 0xe5, 0xe4, 0xe4, 0xe5, 0xe4, 0xe1, 0xde, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd, 0xde, 0xde, 0xdd, 0xde, 0xdf, 0xe0, 0xdf, 0xdd, 0xda, 0xd9, 0xd8, 0xd8, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdc, 0xdc, 0xda, 0xd9, 0xd8, 0xd8, 0xd8, 0xd6, 0xd4, 0xd5, 0xd5, 0xd4, 0xd2, 0xcf, 0xce, 0xce, 0xcf, 0xd1, 0xd0, 0xce, 0xcc, 0xca, 0xca, 0xca, 0xca, 0xcb, 0xca, 0xc9, 0xc7, 0xc6, 0xc4, 0xc1, 0xbf, 0xb9, 0xb9, 0xaa, 0x96, 0x78, 0x6e, 0x69, 0x6d, 0x6f, 0x73, 0x78, 0x7c, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x76, 0x75, 0x73, 0x72, 0x71, 0x6d, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x63, 0x60, 0x5e, 0x5b, 0x59, 0x56, 0x53, 0x50, 0x4d, 0x4b, 0x47, 0x42, 0x3d, 0x39, 0x35, 0x33, 0x31, 0x24, 0x3e, 0x5f, 0x74, 0x76, 0x6e, 0x67, 0x63, 0x5f, 0x67, 0x75, 0x79, 0x6c, 0x62, 0x62, 0x63, 0x57, 0x43, 0x33, 0x37, 0x48, 0x55, 0x5a, 0x5c, 0x63, 0x56, 0x43, 0x34, 0x32, 0x3a, 0x42, 0x45, 0x38, 0x31, 0x30, 0x36, 0x3a, 0x38, 0x3b, 0x41, 0x44, 0x3b, 0x42, 0x58, 0x5e, 0x52, 0x50, 0x5a, 0x73, 0x77, 0x66, 0x46, 0x39, 0x47, 0x51, 0x4e, 0x58, 0x52, 0x53, 0x55, 0x48, 0x38, 0x3f, 0x53, 0x60, 0x5a, 0x52, 0x4b, 0x4a, 0x4c, 0x4a, 0x47, 0x4b, 0x50, 0x4c, 0x3f, 0x36, 0x34, 0x31, 0x2c, 0x2d, 0x2a, 0x25, 0x24, 0x2b, 0x36, 0x3d, 0x3f, 0x41, 0x49, 0x50, 0x50, 0x46, 0x39, 0x43, 0x5e, 0x6d, 0x61, 0x52, 0x51, 0x5e, 0x66, 0x68, 0x6c, 0x74, 0x78, 0x78, 0x6d, 0x60, 0x55, 0x4f, 0x4c, 0x40, 0x32, 0x2c, 0x34, 0x41, 0x50, 0x6b, 0x84, 0x78, 0x62, 0x45, 0x31, 0x2b, 0x31, 0x3d, 0x48, 0x45, 0x56, 0x57, 0x4f, 0x42, 0x4f, 0x5d, 0x6b, 0x5e, 0x5b, 0x5a, 0x61, 0x6a, 0x6f, 0x6e, 0x6b, 0x70, 0x6f, 0x6d, 0x6e, 0x74, 0x77, 0x72, 0x6b, 0x65, 0x62, 0x61, 0x63, 0x65, 0x64, 0x62, 0x63, 0x6a, 0x68, 0x68, 0x6a, 0x68, 0x64, 0x67, 0x6d, 0x74, 0x68, 0x60, 0x66, 0x70, 0x73, 0x73, 0x72, 0x76, 0x7a, 0x80, 0x85, 0x84, 0x7d, 0x79, 0x78, 0x6f, 0x6d, 0x69, 0x69, 0x6c, 0x70, 0x73, 0x75, 0x73, 0x72, 0x71, 0x70, 0x71, 0x74, 0x76, 0x78, 0x77, 0x6a, 0x64, 0x6c, 0x72, 0x70, 0x6d, 0x6e, 0x72, 0x7b, 0x84, 0x83, 0x7a, 0x6d, 0x61, 0x59, 0x54, 0x4a, 0x45, 0x4a, 0x51, 0x59, 0x68, 0x77, 0x93, 0x92, 0x89, 0x7c, 0x71, 0x6c, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x6a, 0x6e, 0x70, 0x6e, 0x6c, 0x67, 0x64, 0x60, 0x63, 0x69, 0x6a, 0x69, 0x6a, 0x79, 0x78, 0x7b, 0x7c, 0x6d, 0x5d, 0x62, 0x73, 0x88, 0x94, 0x8f, 0x86, 0x74, 0x7b, 0x7c, 0x81, 0x7a, 0x73, 0x73, 0x76, 0x71, 0x68, 0x69, 0x73, 0x70, 0x71, 0x6e, 0x68, 0x67, 0x6a, 0x6a, 0x67, 0x67, 0x69, 0x6d, 0x73, 0x77, 0x79, 0x7a, 0x7b, 0x77, 0x7f, 0x87, 0x88, 0x82, 0x7b, 0x76, 0x75, 0x7b, 0x7e, 0x7f, 0x7e, 0x7d, 0x7e, 0x7c, 0x7a, 0x76, 0x73, 0x72, 0x78, 0x7e, 0x7f, 0x7d, 0x7b, 0x7e, 0x7e, 0x80, 0x7f, 0xa6, 0xb8, 0xc0, 0xc0, 0xc3, 0xc4, 0xc6, 0xc5, 0xc2, 0xc0, 0xbe, 0xbe, 0xc0, 0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc6, 0xc5, 0xc4, 0xc3, 0xc2, 0xc2, 0xc3, 0xc5, 0xc6, 0xc7, 0xc5, 0xc1, 0xbd, 0xbd, 0xbf, 0xc0, 0xbf, 0xbd, 0xbc, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xbb, 0xbc, 0xba, 0xb9, 0xb8, 0xb8, 0xb8, 0xb9, 0xbb, 0xb9, 0xb9, 0xb9, 0xb7, 0xb5, 0xb2, 0xaf, 0xad, 0xb1, 0xae, 0xac, 0xad, 0xb0, 0xb3, 0xb4, 0xb4, 0xb2, 0xb2, 0xb1, 0xb0, 0xad, 0xaa, 0xa8, 0xa6, 0xa0, 0xa1, 0xa0, 0x9d, 0x98, 0x90, 0x84, 0x79, 0x74, 0x79, 0x82, 0x89, 0x96, 0x91, 0x6a, 0x5d, 0x9f, 0xd5, 0xd5, 0xdc, 0xe3, 0xe3, 0xde, 0xe4, 0xe2, 0xe4, 0xe7, 0xeb, 0xef, 0xf3, 0xf5, 0xf6, 0xf6, 0xf7, 0xfa, 0xfb, 0xfb, 0xfb, 0xfc, 0xfd, 0xfc, 0xfc, 0xfc, 0xfb, 0xfa, 0xf8, 0xf7, 0xf6, 0xf2, 0xf2, 0xf2, 0xf1, 0xf0, 0xef, 0xef, 0xee, 0xf0, 0xf0, 0xf1, 0xf1, 0xf3, 0xf4, 0xf5, 0xf5, 0xf1, 0xf1, 0xf1, 0xf0, 0xee, 0xeb, 0xe9, 0xe7, 0xe0, 0xda, 0xd2, 0xcb, 0xc7, 0xc3, 0xbe, 0xba, 0xb8, 0xba, 0xbd, 0xc1, 0xc6, 0xcb, 0xcf, 0xd1, 0xd4, 0xd7, 0xd9, 0xda, 0xd9, 0xd8, 0xd7, 0xd7, 0xd8, 0xda, 0xdc, 0xdd, 0xdf, 0xe0, 0xe1, 0xe1, 0xdd, 0xde, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xde, 0xe3, 0xe1, 0xdf, 0xdd, 0xdd, 0xde, 0xe0, 0xe1, 0xe1, 0xe4, 0xe5, 0xe4, 0xe3, 0xe4, 0xe2, 0xdf, 0xdc, 0xdb, 0xdb, 0xdc, 0xdd, 0xdf, 0xe1, 0xe2, 0xdf, 0xe0, 0xe0, 0xe0, 0xdf, 0xde, 0xdd, 0xdc, 0xda, 0xd9, 0xd9, 0xd9, 0xd9, 0xd9, 0xda, 0xda, 0xdc, 0xdb, 0xd9, 0xd8, 0xd7, 0xd6, 0xd4, 0xd3, 0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xcf, 0xd0, 0xd1, 0xd1, 0xd0, 0xcd, 0xca, 0xc9, 0xc9, 0xc9, 0xca, 0xc9, 0xc8, 0xc7, 0xc7, 0xc6, 0xc4, 0xc1, 0xbf, 0xba, 0xbd, 0xb1, 0x96, 0x76, 0x68, 0x66, 0x6b, 0x70, 0x73, 0x78, 0x7c, 0x7e, 0x80, 0x82, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5d, 0x5a, 0x58, 0x55, 0x51, 0x4d, 0x4a, 0x47, 0x44, 0x3f, 0x3b, 0x35, 0x30, 0x2f, 0x30, 0x36, 0x50, 0x6a, 0x74, 0x73, 0x73, 0x76, 0x77, 0x72, 0x70, 0x74, 0x75, 0x6d, 0x6a, 0x6a, 0x67, 0x4b, 0x3f, 0x41, 0x56, 0x6c, 0x6e, 0x64, 0x5b, 0x3d, 0x34, 0x35, 0x41, 0x49, 0x43, 0x3a, 0x37, 0x2d, 0x28, 0x28, 0x30, 0x39, 0x42, 0x4e, 0x5a, 0x60, 0x51, 0x51, 0x62, 0x69, 0x60, 0x61, 0x6e, 0x7e, 0x5e, 0x43, 0x3e, 0x43, 0x45, 0x4f, 0x5d, 0x68, 0x6e, 0x60, 0x42, 0x37, 0x46, 0x55, 0x56, 0x65, 0x57, 0x49, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x51, 0x51, 0x4a, 0x40, 0x41, 0x48, 0x42, 0x34, 0x30, 0x2a, 0x22, 0x23, 0x30, 0x41, 0x4a, 0x4a, 0x56, 0x74, 0x79, 0x62, 0x59, 0x64, 0x6b, 0x6b, 0x7d, 0x80, 0x74, 0x66, 0x66, 0x60, 0x58, 0x59, 0x45, 0x49, 0x4c, 0x4c, 0x4b, 0x4d, 0x4d, 0x4c, 0x43, 0x46, 0x4b, 0x4e, 0x4d, 0x48, 0x40, 0x3a, 0x3e, 0x27, 0x1a, 0x21, 0x29, 0x2c, 0x37, 0x47, 0x7e, 0x7e, 0x7f, 0x7d, 0x72, 0x6d, 0x6c, 0x6d, 0x5d, 0x5d, 0x5d, 0x5f, 0x62, 0x64, 0x64, 0x62, 0x65, 0x66, 0x67, 0x6b, 0x71, 0x73, 0x6e, 0x66, 0x5b, 0x5d, 0x63, 0x68, 0x6a, 0x6a, 0x6c, 0x70, 0x72, 0x6f, 0x70, 0x74, 0x74, 0x6f, 0x71, 0x78, 0x75, 0x66, 0x5d, 0x66, 0x75, 0x7b, 0x79, 0x76, 0x75, 0x71, 0x73, 0x7c, 0x84, 0x83, 0x7c, 0x76, 0x75, 0x6f, 0x68, 0x65, 0x67, 0x6b, 0x6e, 0x6f, 0x6f, 0x6b, 0x69, 0x6d, 0x74, 0x79, 0x79, 0x76, 0x70, 0x68, 0x68, 0x72, 0x75, 0x6f, 0x6e, 0x75, 0x66, 0x68, 0x6b, 0x6f, 0x72, 0x70, 0x64, 0x58, 0x52, 0x4c, 0x4a, 0x4f, 0x51, 0x50, 0x55, 0x5f, 0x57, 0x5f, 0x6b, 0x6c, 0x6b, 0x6e, 0x73, 0x79, 0x72, 0x6b, 0x63, 0x61, 0x67, 0x6e, 0x71, 0x71, 0x6c, 0x68, 0x69, 0x6f, 0x72, 0x72, 0x71, 0x6f, 0x71, 0x76, 0x7d, 0x81, 0x7d, 0x79, 0x7d, 0x84, 0x83, 0x86, 0x79, 0x6f, 0x63, 0x72, 0x7c, 0x86, 0x8a, 0x75, 0x60, 0x5c, 0x63, 0x6a, 0x6b, 0x6a, 0x72, 0x75, 0x73, 0x6f, 0x70, 0x71, 0x6c, 0x64, 0x64, 0x6c, 0x77, 0x7d, 0x7e, 0x7c, 0x79, 0x77, 0x78, 0x7e, 0x86, 0x8a, 0x86, 0x7e, 0x76, 0x71, 0x72, 0x72, 0x73, 0x78, 0x7f, 0x83, 0x80, 0x79, 0x7b, 0x76, 0x73, 0x75, 0x79, 0x7b, 0x7e, 0x82, 0x77, 0x77, 0x79, 0x83, 0xac, 0xb8, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc6, 0xc4, 0xc2, 0xc0, 0xc0, 0xc2, 0xc3, 0xc6, 0xc8, 0xc8, 0xc6, 0xc4, 0xc2, 0xc3, 0xc2, 0xc0, 0xbf, 0xbf, 0xc1, 0xc4, 0xc6, 0xc7, 0xc2, 0xbc, 0xba, 0xbc, 0xbf, 0xbf, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xbb, 0xb9, 0xb8, 0xb8, 0xb6, 0xb5, 0xb5, 0xb7, 0xb9, 0xb9, 0xbc, 0xbc, 0xbc, 0xbc, 0xba, 0xb8, 0xb6, 0xb4, 0xb4, 0xb2, 0xb1, 0xb1, 0xb3, 0xb4, 0xb3, 0xb1, 0xaf, 0xb0, 0xb0, 0xb0, 0xae, 0xab, 0xa8, 0xa6, 0xa2, 0xa2, 0x9f, 0x9a, 0x95, 0x8d, 0x83, 0x7a, 0x74, 0x76, 0x80, 0x85, 0x94, 0x93, 0x76, 0x59, 0x89, 0xcf, 0xd2, 0xd9, 0xe2, 0xe2, 0xe1, 0xe7, 0xe2, 0xe4, 0xe6, 0xea, 0xed, 0xf1, 0xf4, 0xf6, 0xf6, 0xf8, 0xfa, 0xfc, 0xfc, 0xfc, 0xfd, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf8, 0xf7, 0xf6, 0xf3, 0xf2, 0xf1, 0xf0, 0xef, 0xee, 0xec, 0xec, 0xed, 0xee, 0xef, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf2, 0xf2, 0xf1, 0xef, 0xec, 0xe9, 0xe5, 0xe3, 0xda, 0xd2, 0xca, 0xc4, 0xc1, 0xbe, 0xbb, 0xb8, 0xba, 0xbb, 0xbd, 0xc1, 0xc6, 0xcc, 0xd1, 0xd3, 0xd5, 0xd8, 0xda, 0xdb, 0xda, 0xd9, 0xd8, 0xd8, 0xd6, 0xd6, 0xd7, 0xda, 0xdc, 0xdd, 0xde, 0xdf, 0xde, 0xdf, 0xe0, 0xe1, 0xe1, 0xe0, 0xdf, 0xde, 0xde, 0xdd, 0xdd, 0xdc, 0xdc, 0xdb, 0xdc, 0xdc, 0xdf, 0xe2, 0xe2, 0xe1, 0xe1, 0xe1, 0xe0, 0xdd, 0xd9, 0xda, 0xda, 0xdb, 0xdc, 0xde, 0xe0, 0xe1, 0xe3, 0xe2, 0xe0, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xda, 0xda, 0xdb, 0xdb, 0xdb, 0xd9, 0xd6, 0xd4, 0xd4, 0xd4, 0xd5, 0xd4, 0xd2, 0xd1, 0xd0, 0xd1, 0xd2, 0xd2, 0xcf, 0xce, 0xcb, 0xc9, 0xc8, 0xc8, 0xc9, 0xc9, 0xc9, 0xc9, 0xc8, 0xc8, 0xc7, 0xc5, 0xc1, 0xbf, 0xbb, 0xbf, 0xb9, 0x9c, 0x7b, 0x64, 0x63, 0x68, 0x6f, 0x72, 0x77, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x74, 0x71, 0x6f, 0x6d, 0x6b, 0x6b, 0x69, 0x68, 0x67, 0x66, 0x64, 0x62, 0x60, 0x5d, 0x5b, 0x59, 0x56, 0x53, 0x4f, 0x4a, 0x47, 0x43, 0x40, 0x3d, 0x39, 0x32, 0x2c, 0x2e, 0x33, 0x46, 0x59, 0x6b, 0x6f, 0x6f, 0x74, 0x79, 0x7b, 0x74, 0x70, 0x71, 0x72, 0x6e, 0x70, 0x71, 0x6c, 0x62, 0x4f, 0x44, 0x4e, 0x5b, 0x5c, 0x54, 0x4f, 0x36, 0x43, 0x57, 0x64, 0x5c, 0x47, 0x35, 0x2f, 0x2b, 0x26, 0x25, 0x29, 0x30, 0x3d, 0x50, 0x61, 0x5d, 0x61, 0x68, 0x6a, 0x60, 0x5a, 0x65, 0x77, 0x53, 0x40, 0x36, 0x40, 0x4c, 0x51, 0x59, 0x64, 0x58, 0x50, 0x50, 0x59, 0x59, 0x4f, 0x4f, 0x58, 0x5d, 0x52, 0x4a, 0x4a, 0x46, 0x3b, 0x33, 0x31, 0x35, 0x3c, 0x40, 0x40, 0x46, 0x4c, 0x43, 0x33, 0x22, 0x27, 0x2f, 0x3e, 0x54, 0x65, 0x64, 0x5b, 0x55, 0x4f, 0x42, 0x36, 0x2f, 0x36, 0x5b, 0x89, 0x8a, 0x70, 0x3c, 0x1c, 0x2e, 0x4b, 0x55, 0x57, 0x61, 0x5f, 0x59, 0x53, 0x4f, 0x4d, 0x49, 0x44, 0x44, 0x45, 0x45, 0x42, 0x3d, 0x34, 0x27, 0x1b, 0x17, 0x1c, 0x23, 0x22, 0x1e, 0x29, 0x49, 0x69, 0x70, 0x60, 0x5f, 0x64, 0x65, 0x66, 0x6d, 0x6d, 0x63, 0x64, 0x62, 0x5b, 0x58, 0x5a, 0x60, 0x64, 0x64, 0x65, 0x65, 0x66, 0x69, 0x6a, 0x65, 0x5e, 0x55, 0x5a, 0x61, 0x67, 0x67, 0x64, 0x66, 0x6a, 0x6c, 0x6b, 0x6f, 0x77, 0x7c, 0x7c, 0x7e, 0x82, 0x80, 0x76, 0x72, 0x7e, 0x8b, 0x8c, 0x83, 0x7c, 0x66, 0x69, 0x72, 0x7c, 0x81, 0x7c, 0x72, 0x6d, 0x6d, 0x6b, 0x69, 0x6a, 0x6c, 0x6d, 0x6a, 0x68, 0x71, 0x71, 0x71, 0x73, 0x75, 0x77, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x78, 0x71, 0x68, 0x61, 0x5d, 0x68, 0x66, 0x62, 0x5f, 0x63, 0x6b, 0x72, 0x73, 0x5f, 0x59, 0x59, 0x5f, 0x63, 0x60, 0x5a, 0x58, 0x57, 0x56, 0x5f, 0x60, 0x65, 0x6e, 0x6e, 0x75, 0x88, 0x80, 0x72, 0x67, 0x63, 0x64, 0x63, 0x61, 0x6c, 0x69, 0x71, 0x79, 0x76, 0x73, 0x76, 0x76, 0x6e, 0x6f, 0x72, 0x78, 0x82, 0x88, 0x85, 0x7f, 0x6e, 0x79, 0x75, 0x6e, 0x5d, 0x66, 0x70, 0x7d, 0x74, 0x76, 0x6e, 0x60, 0x5f, 0x6b, 0x75, 0x76, 0x71, 0x73, 0x73, 0x75, 0x7d, 0x80, 0x72, 0x60, 0x68, 0x72, 0x7c, 0x7e, 0x7b, 0x78, 0x74, 0x72, 0x73, 0x78, 0x7e, 0x82, 0x80, 0x7a, 0x72, 0x6d, 0x67, 0x65, 0x68, 0x72, 0x82, 0x89, 0x82, 0x76, 0x71, 0x71, 0x75, 0x7b, 0x7a, 0x74, 0x72, 0x73, 0x6f, 0x6e, 0x73, 0x8f, 0xb1, 0xb8, 0xc3, 0xc6, 0xc6, 0xc6, 0xc7, 0xc6, 0xc6, 0xc5, 0xc3, 0xc3, 0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc4, 0xc2, 0xc0, 0xc1, 0xc1, 0xbf, 0xbe, 0xbd, 0xbf, 0xc2, 0xc4, 0xc4, 0xc0, 0xbb, 0xb8, 0xb9, 0xbb, 0xbd, 0xbd, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbc, 0xba, 0xb9, 0xb7, 0xb8, 0xb7, 0xb4, 0xb4, 0xb6, 0xb6, 0xb5, 0xba, 0xbb, 0xbc, 0xbd, 0xbd, 0xbc, 0xba, 0xb9, 0xb6, 0xb5, 0xb5, 0xb4, 0xb4, 0xb4, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xae, 0xab, 0xa7, 0xa5, 0xa2, 0xa2, 0x9e, 0x99, 0x94, 0x8d, 0x84, 0x7b, 0x76, 0x75, 0x7f, 0x83, 0x90, 0x91, 0x80, 0x5c, 0x78, 0xc9, 0xd1, 0xd8, 0xdc, 0xdd, 0xe1, 0xe1, 0xe4, 0xe5, 0xe7, 0xe9, 0xeb, 0xef, 0xf4, 0xf7, 0xf7, 0xf9, 0xfb, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xf8, 0xf6, 0xf5, 0xf3, 0xf2, 0xf1, 0xef, 0xed, 0xec, 0xec, 0xec, 0xec, 0xed, 0xef, 0xf0, 0xf1, 0xf2, 0xf2, 0xf2, 0xf2, 0xf1, 0xf0, 0xed, 0xe8, 0xe2, 0xdd, 0xdb, 0xd1, 0xca, 0xc3, 0xc0, 0xbd, 0xb9, 0xb7, 0xb7, 0xbb, 0xbc, 0xbd, 0xc1, 0xc6, 0xcc, 0xd1, 0xd4, 0xd8, 0xda, 0xdc, 0xdd, 0xdc, 0xda, 0xd9, 0xd9, 0xd6, 0xd5, 0xd5, 0xd8, 0xda, 0xda, 0xdc, 0xde, 0xe1, 0xe1, 0xe3, 0xe4, 0xe4, 0xe3, 0xe2, 0xe1, 0xdc, 0xdc, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xda, 0xdd, 0xdf, 0xdf, 0xdd, 0xdd, 0xde, 0xdd, 0xdb, 0xdc, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe1, 0xe4, 0xe2, 0xdf, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xdc, 0xdd, 0xdd, 0xdb, 0xd8, 0xd6, 0xd6, 0xd6, 0xd5, 0xd3, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd0, 0xcd, 0xcc, 0xca, 0xc9, 0xc9, 0xc9, 0xca, 0xca, 0xcc, 0xcb, 0xca, 0xca, 0xc9, 0xc6, 0xc2, 0xbf, 0xbd, 0xbf, 0xbe, 0xa2, 0x82, 0x62, 0x61, 0x66, 0x6d, 0x70, 0x74, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x74, 0x72, 0x70, 0x6d, 0x6b, 0x6a, 0x6b, 0x68, 0x66, 0x65, 0x65, 0x63, 0x60, 0x5d, 0x5a, 0x58, 0x56, 0x53, 0x50, 0x4b, 0x46, 0x43, 0x3e, 0x3c, 0x39, 0x36, 0x30, 0x2d, 0x33, 0x3e, 0x54, 0x63, 0x71, 0x74, 0x72, 0x6f, 0x6b, 0x67, 0x67, 0x68, 0x6c, 0x69, 0x60, 0x5f, 0x62, 0x5f, 0x57, 0x4d, 0x48, 0x50, 0x56, 0x4f, 0x3f, 0x33, 0x3b, 0x4e, 0x5d, 0x5e, 0x5f, 0x65, 0x63, 0x5b, 0x3b, 0x35, 0x2d, 0x26, 0x24, 0x2b, 0x3a, 0x47, 0x58, 0x4a, 0x3e, 0x46, 0x5d, 0x6a, 0x5d, 0x48, 0x3e, 0x49, 0x46, 0x3d, 0x4c, 0x67, 0x69, 0x55, 0x5b, 0x67, 0x64, 0x54, 0x56, 0x6a, 0x6f, 0x63, 0x5b, 0x55, 0x52, 0x55, 0x52, 0x48, 0x41, 0x41, 0x31, 0x3c, 0x43, 0x42, 0x42, 0x47, 0x47, 0x43, 0x69, 0x73, 0x7b, 0x7d, 0x7a, 0x6b, 0x4e, 0x33, 0x1b, 0x30, 0x2c, 0x12, 0x11, 0x37, 0x6c, 0x93, 0xa9, 0x91, 0x60, 0x38, 0x37, 0x4c, 0x5b, 0x5f, 0x68, 0x7a, 0x88, 0x82, 0x6d, 0x5a, 0x51, 0x4f, 0x4e, 0x3e, 0x30, 0x29, 0x22, 0x1a, 0x18, 0x1c, 0x18, 0x22, 0x22, 0x1d, 0x2c, 0x4c, 0x60, 0x61, 0x47, 0x43, 0x4d, 0x46, 0x3c, 0x38, 0x41, 0x39, 0x62, 0x66, 0x64, 0x5a, 0x54, 0x58, 0x62, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x64, 0x61, 0x60, 0x64, 0x6b, 0x70, 0x70, 0x6c, 0x69, 0x6a, 0x69, 0x6a, 0x70, 0x79, 0x81, 0x86, 0x86, 0x86, 0x7d, 0x79, 0x7c, 0x87, 0x8d, 0x88, 0x7d, 0x76, 0x74, 0x73, 0x74, 0x76, 0x75, 0x73, 0x73, 0x75, 0x73, 0x6d, 0x67, 0x66, 0x6a, 0x72, 0x78, 0x7b, 0x73, 0x72, 0x72, 0x72, 0x73, 0x75, 0x76, 0x77, 0x7b, 0x78, 0x77, 0x78, 0x77, 0x72, 0x6e, 0x6c, 0x63, 0x6a, 0x6f, 0x6b, 0x65, 0x63, 0x65, 0x67, 0x68, 0x62, 0x5a, 0x58, 0x5c, 0x63, 0x69, 0x6c, 0x62, 0x5a, 0x5f, 0x5d, 0x64, 0x72, 0x72, 0x7c, 0x7e, 0x7d, 0x77, 0x6b, 0x64, 0x64, 0x67, 0x68, 0x64, 0x5d, 0x69, 0x79, 0x7b, 0x76, 0x70, 0x65, 0x63, 0x65, 0x6b, 0x76, 0x81, 0x82, 0x78, 0x6c, 0x5f, 0x70, 0x76, 0x75, 0x62, 0x67, 0x6b, 0x77, 0x6e, 0x65, 0x6a, 0x86, 0xa3, 0xa3, 0x83, 0x63, 0x68, 0x6e, 0x72, 0x73, 0x7a, 0x80, 0x79, 0x6d, 0x72, 0x77, 0x79, 0x76, 0x73, 0x74, 0x75, 0x75, 0x76, 0x7a, 0x7e, 0x7f, 0x7c, 0x78, 0x76, 0x76, 0x6f, 0x69, 0x65, 0x6e, 0x7e, 0x87, 0x80, 0x73, 0x6a, 0x6d, 0x76, 0x7e, 0x7c, 0x71, 0x6a, 0x69, 0x72, 0x6f, 0x77, 0xa5, 0xb9, 0xba, 0xc1, 0xc3, 0xc2, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc4, 0xc5, 0xc7, 0xc8, 0xc7, 0xc5, 0xc2, 0xc1, 0xc0, 0xc0, 0xc0, 0xbe, 0xbd, 0xbe, 0xc1, 0xc4, 0xc1, 0xbf, 0xbd, 0xbb, 0xba, 0xbb, 0xbc, 0xbd, 0xc1, 0xc0, 0xbf, 0xbe, 0xbc, 0xbb, 0xba, 0xba, 0xb9, 0xbb, 0xb9, 0xb6, 0xb4, 0xb5, 0xb3, 0xb0, 0xb2, 0xb3, 0xb6, 0xb8, 0xb9, 0xb9, 0xb7, 0xb7, 0xb4, 0xb4, 0xb3, 0xb2, 0xb1, 0xb1, 0xb2, 0xb2, 0xb5, 0xb5, 0xb4, 0xb3, 0xb0, 0xac, 0xa9, 0xa7, 0xa5, 0xa5, 0xa2, 0x9d, 0x97, 0x90, 0x85, 0x7c, 0x78, 0x74, 0x7f, 0x82, 0x8d, 0x8d, 0x87, 0x62, 0x6c, 0xc4, 0xd2, 0xdb, 0xd9, 0xd9, 0xe1, 0xdb, 0xe4, 0xe5, 0xe6, 0xe6, 0xe8, 0xec, 0xf1, 0xf6, 0xf8, 0xfa, 0xfc, 0xfd, 0xfd, 0xfd, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xf9, 0xf8, 0xf6, 0xf5, 0xf3, 0xf2, 0xf0, 0xee, 0xed, 0xed, 0xed, 0xee, 0xec, 0xed, 0xef, 0xf1, 0xf1, 0xf0, 0xee, 0xed, 0xed, 0xec, 0xea, 0xe7, 0xe1, 0xdb, 0xd6, 0xd2, 0xca, 0xc4, 0xc0, 0xbe, 0xba, 0xb7, 0xb6, 0xb9, 0xbf, 0xc0, 0xc2, 0xc6, 0xcb, 0xd1, 0xd5, 0xd8, 0xdc, 0xde, 0xe0, 0xe1, 0xe0, 0xde, 0xdd, 0xdd, 0xda, 0xd7, 0xd7, 0xd9, 0xda, 0xd9, 0xdb, 0xde, 0xdf, 0xe0, 0xe2, 0xe3, 0xe3, 0xe3, 0xe1, 0xe0, 0xde, 0xdd, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdb, 0xdd, 0xdc, 0xda, 0xd9, 0xdb, 0xdc, 0xdb, 0xdf, 0xe0, 0xe1, 0xe2, 0xe2, 0xe1, 0xe0, 0xe0, 0xe0, 0xe0, 0xde, 0xdd, 0xdc, 0xdd, 0xdd, 0xde, 0xde, 0xde, 0xdf, 0xe0, 0xe1, 0xe1, 0xe1, 0xe1, 0xdf, 0xdd, 0xdc, 0xdb, 0xda, 0xd9, 0xd8, 0xd6, 0xd5, 0xd3, 0xd1, 0xd0, 0xd1, 0xd0, 0xce, 0xcc, 0xcb, 0xcb, 0xca, 0xca, 0xcb, 0xcb, 0xcc, 0xcd, 0xcc, 0xcc, 0xcb, 0xca, 0xc8, 0xc5, 0xc0, 0xbd, 0xbc, 0xbc, 0xbf, 0xa6, 0x88, 0x60, 0x5f, 0x67, 0x6b, 0x6e, 0x73, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x67, 0x64, 0x63, 0x63, 0x61, 0x5d, 0x5a, 0x57, 0x55, 0x52, 0x50, 0x4c, 0x47, 0x42, 0x3e, 0x3b, 0x37, 0x34, 0x32, 0x2e, 0x30, 0x3f, 0x4f, 0x6e, 0x6f, 0x6f, 0x6c, 0x68, 0x68, 0x6a, 0x6c, 0x75, 0x73, 0x6f, 0x63, 0x52, 0x4f, 0x51, 0x4d, 0x59, 0x4d, 0x3f, 0x3a, 0x3d, 0x40, 0x3f, 0x3b, 0x3b, 0x4c, 0x58, 0x5a, 0x5f, 0x63, 0x56, 0x41, 0x4a, 0x42, 0x37, 0x2c, 0x25, 0x24, 0x29, 0x2f, 0x30, 0x42, 0x50, 0x4f, 0x4d, 0x4e, 0x49, 0x40, 0x36, 0x34, 0x3e, 0x57, 0x6e, 0x71, 0x65, 0x59, 0x62, 0x6b, 0x75, 0x76, 0x6d, 0x5f, 0x55, 0x51, 0x54, 0x48, 0x3c, 0x38, 0x3a, 0x3f, 0x48, 0x50, 0x5d, 0x5b, 0x53, 0x4a, 0x4d, 0x5e, 0x75, 0x84, 0x96, 0xa1, 0xa7, 0x9f, 0x93, 0x87, 0x74, 0x63, 0x61, 0x61, 0x68, 0x79, 0x84, 0x7e, 0x7c, 0x87, 0x93, 0x94, 0x8a, 0x69, 0x45, 0x42, 0x60, 0x7b, 0x76, 0x70, 0x63, 0x53, 0x47, 0x40, 0x3a, 0x36, 0x29, 0x25, 0x1f, 0x19, 0x15, 0x14, 0x18, 0x1d, 0x1c, 0x19, 0x14, 0x1c, 0x3d, 0x57, 0x4a, 0x2a, 0x22, 0x1e, 0x2a, 0x2d, 0x4d, 0x70, 0x77, 0x4e, 0x5d, 0x63, 0x64, 0x5b, 0x55, 0x59, 0x63, 0x6b, 0x66, 0x67, 0x67, 0x65, 0x65, 0x68, 0x6a, 0x6a, 0x61, 0x64, 0x6c, 0x74, 0x78, 0x75, 0x71, 0x70, 0x72, 0x74, 0x79, 0x81, 0x8a, 0x90, 0x8e, 0x8a, 0x76, 0x77, 0x7e, 0x89, 0x8d, 0x86, 0x7e, 0x7b, 0x77, 0x70, 0x70, 0x7a, 0x85, 0x82, 0x75, 0x68, 0x6c, 0x6d, 0x6f, 0x73, 0x78, 0x7a, 0x7a, 0x79, 0x7b, 0x76, 0x72, 0x74, 0x7c, 0x82, 0x82, 0x7f, 0x73, 0x60, 0x5a, 0x68, 0x71, 0x6b, 0x6d, 0x77, 0x7c, 0x78, 0x72, 0x6b, 0x67, 0x65, 0x61, 0x5b, 0x54, 0x61, 0x6d, 0x6f, 0x6c, 0x6a, 0x6a, 0x6a, 0x68, 0x63, 0x6c, 0x67, 0x66, 0x6a, 0x63, 0x6c, 0x6e, 0x74, 0x73, 0x69, 0x5f, 0x60, 0x68, 0x6e, 0x6e, 0x60, 0x6b, 0x86, 0x93, 0x8e, 0x79, 0x5d, 0x54, 0x5d, 0x6f, 0x80, 0x84, 0x7c, 0x6f, 0x68, 0x5f, 0x6a, 0x6a, 0x69, 0x5d, 0x68, 0x70, 0x7c, 0x71, 0x75, 0x90, 0xa9, 0x99, 0x6d, 0x5c, 0x6a, 0x61, 0x6e, 0x75, 0x70, 0x6f, 0x78, 0x80, 0x81, 0x79, 0x79, 0x74, 0x6d, 0x6c, 0x73, 0x7a, 0x7d, 0x80, 0x84, 0x87, 0x85, 0x80, 0x7e, 0x81, 0x86, 0x81, 0x76, 0x6a, 0x6b, 0x77, 0x81, 0x7c, 0x71, 0x77, 0x74, 0x76, 0x7a, 0x79, 0x73, 0x73, 0x78, 0x7a, 0x75, 0x7e, 0xb8, 0xbf, 0xbb, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xc0, 0xc2, 0xc2, 0xc2, 0xc2, 0xc6, 0xc7, 0xc8, 0xc9, 0xc9, 0xc7, 0xc5, 0xc3, 0xc0, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xc1, 0xc4, 0xc1, 0xc2, 0xc2, 0xc1, 0xbf, 0xbe, 0xbe, 0xbe, 0xc1, 0xc0, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb, 0xbc, 0xbc, 0xbe, 0xbc, 0xb7, 0xb4, 0xb4, 0xb2, 0xad, 0xab, 0xad, 0xb1, 0xb4, 0xb5, 0xb6, 0xb5, 0xb4, 0xb0, 0xb0, 0xb0, 0xae, 0xad, 0xae, 0xb1, 0xb4, 0xb5, 0xb5, 0xb4, 0xb2, 0xb0, 0xad, 0xaa, 0xa8, 0xaa, 0xaa, 0xa8, 0xa2, 0x9c, 0x93, 0x86, 0x7b, 0x7a, 0x74, 0x80, 0x82, 0x8a, 0x8a, 0x8c, 0x67, 0x5f, 0xbc, 0xd1, 0xdd, 0xda, 0xdc, 0xe9, 0xde, 0xe3, 0xe3, 0xe3, 0xe3, 0xe4, 0xe8, 0xef, 0xf3, 0xf9, 0xfb, 0xfd, 0xfe, 0xfd, 0xfd, 0xfe, 0xfe, 0xfc, 0xfc, 0xfc, 0xfa, 0xf9, 0xf7, 0xf6, 0xf5, 0xf3, 0xf2, 0xf0, 0xee, 0xed, 0xee, 0xef, 0xf0, 0xed, 0xee, 0xf0, 0xf1, 0xf0, 0xee, 0xeb, 0xe8, 0xe6, 0xe6, 0xe5, 0xe2, 0xdd, 0xd7, 0xd2, 0xcf, 0xc6, 0xc2, 0xbf, 0xbe, 0xbb, 0xb6, 0xb7, 0xbb, 0xc3, 0xc5, 0xc9, 0xce, 0xd3, 0xd7, 0xdb, 0xdd, 0xdf, 0xe1, 0xe3, 0xe4, 0xe3, 0xe1, 0xe0, 0xe0, 0xde, 0xdb, 0xda, 0xdc, 0xdc, 0xd9, 0xdb, 0xde, 0xdc, 0xdd, 0xdf, 0xe0, 0xe0, 0xe0, 0xde, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xd8, 0xd9, 0xda, 0xdb, 0xdb, 0xdc, 0xda, 0xd8, 0xd8, 0xda, 0xdc, 0xdb, 0xdf, 0xe0, 0xe1, 0xe1, 0xe1, 0xdf, 0xdd, 0xdb, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xe0, 0xdd, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xdf, 0xdf, 0xe0, 0xdc, 0xd9, 0xd9, 0xdb, 0xdc, 0xd8, 0xd4, 0xd5, 0xd3, 0xd1, 0xd0, 0xd0, 0xce, 0xcb, 0xc8, 0xca, 0xca, 0xcb, 0xcc, 0xcd, 0xcd, 0xce, 0xce, 0xcb, 0xca, 0xc9, 0xc8, 0xc6, 0xc2, 0xbd, 0xba, 0xbc, 0xb8, 0xbd, 0xa6, 0x8a, 0x5f, 0x5f, 0x69, 0x6a, 0x6e, 0x73, 0x77, 0x7a, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x69, 0x66, 0x63, 0x61, 0x61, 0x60, 0x5c, 0x58, 0x54, 0x53, 0x50, 0x4d, 0x49, 0x44, 0x3f, 0x3b, 0x38, 0x34, 0x31, 0x2f, 0x2e, 0x34, 0x48, 0x5d, 0x67, 0x6a, 0x6f, 0x73, 0x72, 0x70, 0x71, 0x73, 0x7d, 0x74, 0x6a, 0x60, 0x59, 0x60, 0x67, 0x65, 0x52, 0x4b, 0x40, 0x38, 0x36, 0x35, 0x30, 0x29, 0x41, 0x52, 0x67, 0x73, 0x6f, 0x62, 0x53, 0x49, 0x49, 0x42, 0x39, 0x33, 0x2f, 0x2d, 0x2e, 0x2f, 0x4a, 0x49, 0x3f, 0x33, 0x35, 0x3e, 0x3e, 0x36, 0x2c, 0x33, 0x40, 0x53, 0x66, 0x6f, 0x68, 0x5d, 0x60, 0x6b, 0x66, 0x4e, 0x41, 0x4d, 0x5e, 0x66, 0x65, 0x61, 0x5f, 0x61, 0x61, 0x5c, 0x56, 0x53, 0x5b, 0x59, 0x5a, 0x63, 0x73, 0x85, 0x95, 0x9e, 0xa0, 0xa7, 0xa2, 0x90, 0x84, 0x87, 0x8f, 0x92, 0xa1, 0xa6, 0xa6, 0xa3, 0x9b, 0x89, 0x77, 0x73, 0x86, 0x7c, 0x88, 0x9a, 0x96, 0x85, 0x74, 0x62, 0x53, 0x4f, 0x47, 0x41, 0x3d, 0x37, 0x2b, 0x1f, 0x2c, 0x3f, 0x46, 0x3a, 0x32, 0x37, 0x35, 0x2b, 0x23, 0x23, 0x2b, 0x3a, 0x45, 0x3e, 0x2a, 0x19, 0x13, 0x12, 0x1b, 0x17, 0x42, 0x6f, 0x66, 0x1b, 0x69, 0x67, 0x62, 0x5f, 0x5f, 0x60, 0x5f, 0x5c, 0x63, 0x68, 0x66, 0x61, 0x6c, 0x7d, 0x7f, 0x75, 0x5e, 0x60, 0x66, 0x6e, 0x75, 0x78, 0x75, 0x72, 0x70, 0x71, 0x75, 0x7b, 0x84, 0x88, 0x80, 0x75, 0x74, 0x74, 0x78, 0x7f, 0x81, 0x7f, 0x7e, 0x81, 0x75, 0x6b, 0x6c, 0x7c, 0x86, 0x7e, 0x72, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x70, 0x73, 0x76, 0x78, 0x72, 0x71, 0x7c, 0x8d, 0x94, 0x8d, 0x83, 0x69, 0x6d, 0x65, 0x62, 0x6e, 0x6f, 0x69, 0x6c, 0x74, 0x78, 0x7e, 0x80, 0x7d, 0x75, 0x6a, 0x62, 0x5c, 0x63, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x73, 0x6c, 0x6c, 0x65, 0x5b, 0x5b, 0x65, 0x6d, 0x6e, 0x70, 0x6f, 0x6c, 0x6a, 0x6f, 0x73, 0x6a, 0x5c, 0x63, 0x6f, 0x83, 0x9a, 0xad, 0xb5, 0xb0, 0xa6, 0x94, 0x92, 0x92, 0x92, 0x88, 0x77, 0x68, 0x61, 0x6a, 0x6d, 0x70, 0x6d, 0x61, 0x5b, 0x67, 0x79, 0x89, 0xa2, 0xa7, 0x89, 0x68, 0x5f, 0x62, 0x63, 0x6a, 0x6d, 0x73, 0x78, 0x7d, 0x7e, 0x7f, 0x7e, 0x77, 0x7d, 0x78, 0x6b, 0x69, 0x76, 0x7e, 0x7c, 0x72, 0x6e, 0x6e, 0x71, 0x71, 0x70, 0x77, 0x80, 0x7e, 0x77, 0x72, 0x70, 0x70, 0x71, 0x77, 0x7e, 0x7b, 0x7a, 0x7a, 0x7c, 0x7d, 0x7d, 0x7e, 0x80, 0x89, 0x83, 0x9b, 0xba, 0xbe, 0xb9, 0xbe, 0xc2, 0xbd, 0xbf, 0xc0, 0xc1, 0xc1, 0xc1, 0xc3, 0xc4, 0xc7, 0xc8, 0xc9, 0xc9, 0xc9, 0xc8, 0xc7, 0xc6, 0xc7, 0xc4, 0xc1, 0xc1, 0xc3, 0xc4, 0xc1, 0xbf, 0xc2, 0xbf, 0xbd, 0xbe, 0xbe, 0xbd, 0xbf, 0xc2, 0xbf, 0xbc, 0xb9, 0xb9, 0xba, 0xbc, 0xbc, 0xbb, 0xbd, 0xbc, 0xba, 0xb9, 0xb8, 0xb6, 0xb4, 0xb2, 0xaa, 0xab, 0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb1, 0xae, 0xae, 0xaf, 0xb0, 0xae, 0xab, 0xb0, 0xb3, 0xb7, 0xb7, 0xb4, 0xb1, 0xae, 0xad, 0xaa, 0xa7, 0xa5, 0xa3, 0x9f, 0x96, 0x8b, 0x82, 0x81, 0x76, 0x7d, 0x85, 0x84, 0x8b, 0x88, 0x70, 0x57, 0xa5, 0xd8, 0xdb, 0xdd, 0xe3, 0xdd, 0xe2, 0xe3, 0xde, 0xde, 0xe4, 0xea, 0xed, 0xf2, 0xf6, 0xfb, 0xfc, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfe, 0xfc, 0xfa, 0xf7, 0xf4, 0xf4, 0xf6, 0xf7, 0xf6, 0xf2, 0xf1, 0xef, 0xed, 0xeb, 0xec, 0xee, 0xf0, 0xee, 0xee, 0xed, 0xed, 0xeb, 0xea, 0xe8, 0xe7, 0xe3, 0xe2, 0xde, 0xd9, 0xd2, 0xcd, 0xca, 0xc9, 0xc1, 0xbe, 0xb9, 0xb4, 0xb4, 0xb8, 0xbe, 0xc3, 0xc8, 0xcc, 0xd0, 0xd3, 0xd5, 0xd9, 0xdf, 0xe3, 0xe3, 0xe7, 0xeb, 0xe9, 0xe4, 0xe0, 0xe0, 0xe2, 0xe1, 0xdf, 0xdd, 0xdc, 0xdc, 0xdd, 0xdd, 0xdd, 0xdd, 0xe0, 0xe2, 0xe3, 0xe0, 0xdd, 0xdc, 0xdc, 0xd8, 0xd7, 0xd6, 0xd7, 0xd9, 0xda, 0xdb, 0xdb, 0xdd, 0xdb, 0xd9, 0xd8, 0xd8, 0xd8, 0xd7, 0xd7, 0xdc, 0xdd, 0xdd, 0xde, 0xdf, 0xe0, 0xe0, 0xe0, 0xdd, 0xdd, 0xde, 0xdf, 0xdf, 0xdf, 0xe0, 0xe0, 0xdf, 0xdd, 0xdc, 0xde, 0xe1, 0xe2, 0xdf, 0xdc, 0xdd, 0xdb, 0xda, 0xda, 0xdb, 0xda, 0xd7, 0xd5, 0xd1, 0xd1, 0xd1, 0xd0, 0xce, 0xcd, 0xcc, 0xcc, 0xce, 0xd0, 0xcf, 0xca, 0xc9, 0xcc, 0xcd, 0xcc, 0xc9, 0xc7, 0xc6, 0xc7, 0xc5, 0xbf, 0xba, 0xb9, 0xb7, 0xb9, 0xb3, 0xae, 0x8a, 0x64, 0x64, 0x63, 0x69, 0x6e, 0x72, 0x75, 0x77, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6b, 0x68, 0x68, 0x65, 0x62, 0x5f, 0x5d, 0x5b, 0x59, 0x58, 0x54, 0x50, 0x4b, 0x48, 0x47, 0x43, 0x3e, 0x3a, 0x33, 0x35, 0x32, 0x2c, 0x2e, 0x41, 0x5c, 0x6f, 0x77, 0x74, 0x71, 0x6a, 0x5a, 0x52, 0x60, 0x76, 0x7c, 0x77, 0x6a, 0x63, 0x6f, 0x7d, 0x72, 0x5a, 0x48, 0x4a, 0x42, 0x34, 0x30, 0x3c, 0x47, 0x4a, 0x55, 0x56, 0x54, 0x4d, 0x47, 0x43, 0x42, 0x41, 0x45, 0x39, 0x35, 0x3a, 0x3c, 0x3a, 0x3f, 0x4a, 0x4f, 0x49, 0x3b, 0x2f, 0x33, 0x3e, 0x3d, 0x34, 0x3c, 0x28, 0x31, 0x5a, 0x71, 0x64, 0x56, 0x58, 0x5a, 0x4e, 0x45, 0x46, 0x4d, 0x55, 0x5f, 0x68, 0x69, 0x70, 0x7c, 0x84, 0x85, 0x80, 0x7c, 0x7a, 0x69, 0x56, 0x57, 0x74, 0x8a, 0x8b, 0x8e, 0x98, 0x9b, 0x9f, 0xa2, 0xa2, 0x9c, 0x90, 0x8d, 0x96, 0x8f, 0x88, 0x6f, 0x5d, 0x3b, 0x3c, 0x4d, 0x6c, 0x76, 0x63, 0x5d, 0x62, 0x5b, 0x4f, 0x49, 0x48, 0x44, 0x38, 0x2b, 0x24, 0x21, 0x21, 0x24, 0x27, 0x37, 0x30, 0x29, 0x39, 0x48, 0x34, 0x21, 0x2d, 0x2b, 0x2f, 0x37, 0x44, 0x4f, 0x4f, 0x3f, 0x2e, 0x21, 0x1e, 0x14, 0x1a, 0x41, 0x64, 0x51, 0x26, 0x68, 0x66, 0x64, 0x63, 0x64, 0x65, 0x63, 0x60, 0x65, 0x6a, 0x6b, 0x6a, 0x70, 0x7a, 0x79, 0x70, 0x66, 0x64, 0x64, 0x6c, 0x75, 0x79, 0x75, 0x6f, 0x6a, 0x6e, 0x75, 0x7f, 0x89, 0x8c, 0x83, 0x78, 0x67, 0x6a, 0x71, 0x79, 0x7b, 0x79, 0x79, 0x7c, 0x7b, 0x6f, 0x69, 0x71, 0x7c, 0x7f, 0x7c, 0x7b, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x73, 0x77, 0x7a, 0x71, 0x71, 0x71, 0x71, 0x74, 0x7a, 0x81, 0x86, 0x8c, 0x83, 0x7f, 0x86, 0x81, 0x6b, 0x5f, 0x67, 0x6b, 0x6d, 0x6f, 0x73, 0x79, 0x79, 0x70, 0x64, 0x74, 0x78, 0x78, 0x71, 0x68, 0x65, 0x66, 0x67, 0x68, 0x64, 0x64, 0x66, 0x63, 0x5f, 0x64, 0x6f, 0x73, 0x6d, 0x66, 0x64, 0x69, 0x6d, 0x69, 0x61, 0x57, 0x5d, 0x68, 0x78, 0x87, 0x8e, 0x89, 0x80, 0x7f, 0x8f, 0xa8, 0xbd, 0xc1, 0xba, 0xb3, 0xb1, 0xa0, 0x96, 0x86, 0x72, 0x60, 0x5d, 0x6f, 0x86, 0x9d, 0x8c, 0x73, 0x5f, 0x59, 0x5f, 0x67, 0x6b, 0x74, 0x75, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x75, 0x6a, 0x69, 0x73, 0x7a, 0x7a, 0x6a, 0x6c, 0x6f, 0x73, 0x75, 0x76, 0x7b, 0x80, 0x75, 0x7a, 0x82, 0x84, 0x7d, 0x71, 0x6b, 0x6b, 0x76, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x82, 0x7d, 0x86, 0xa5, 0xbe, 0xbc, 0xb6, 0xba, 0xbd, 0xbf, 0xc0, 0xc2, 0xc3, 0xc3, 0xc3, 0xc5, 0xc6, 0xcb, 0xcc, 0xcd, 0xcd, 0xcc, 0xcb, 0xc9, 0xc8, 0xc7, 0xc5, 0xc3, 0xc3, 0xc4, 0xc4, 0xc3, 0xc1, 0xc2, 0xbf, 0xbd, 0xbe, 0xbd, 0xbc, 0xbc, 0xbf, 0xbc, 0xbb, 0xba, 0xba, 0xbc, 0xbc, 0xbb, 0xb9, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xb8, 0xb6, 0xb4, 0xb2, 0xb0, 0xac, 0xa9, 0xa9, 0xab, 0xae, 0xb0, 0xb0, 0xae, 0xac, 0xac, 0xae, 0xae, 0xad, 0xac, 0xb4, 0xb7, 0xb9, 0xba, 0xb8, 0xb6, 0xb6, 0xb6, 0xae, 0xaa, 0xa4, 0xa0, 0x9c, 0x97, 0x8f, 0x89, 0x7f, 0x74, 0x7b, 0x86, 0x85, 0x8a, 0x89, 0x76, 0x53, 0x9a, 0xd0, 0xd6, 0xda, 0xe2, 0xdf, 0xe4, 0xe5, 0xe3, 0xe4, 0xea, 0xf0, 0xf3, 0xf6, 0xfa, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xf9, 0xf8, 0xf5, 0xf3, 0xf1, 0xf1, 0xf4, 0xf5, 0xf3, 0xf0, 0xef, 0xee, 0xec, 0xe9, 0xe7, 0xe6, 0xe8, 0xe9, 0xe8, 0xe8, 0xe7, 0xe6, 0xe5, 0xe4, 0xe4, 0xe3, 0xdf, 0xdd, 0xda, 0xd5, 0xd0, 0xca, 0xc5, 0xc3, 0xbd, 0xbb, 0xb8, 0xb6, 0xb6, 0xbb, 0xc1, 0xc6, 0xcb, 0xcf, 0xd3, 0xd6, 0xd9, 0xdd, 0xe2, 0xe6, 0xe9, 0xe9, 0xea, 0xe9, 0xe7, 0xe5, 0xe2, 0xe1, 0xe0, 0xdf, 0xde, 0xde, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xe0, 0xe3, 0xe3, 0xe2, 0xdf, 0xdc, 0xdb, 0xdb, 0xda, 0xd9, 0xda, 0xdb, 0xdc, 0xdc, 0xdb, 0xdc, 0xdc, 0xdc, 0xda, 0xd9, 0xd8, 0xd7, 0xd7, 0xd7, 0xd8, 0xd9, 0xdb, 0xdc, 0xdc, 0xdc, 0xdc, 0xde, 0xdf, 0xe0, 0xe1, 0xe1, 0xe1, 0xe0, 0xdf, 0xe1, 0xdf, 0xde, 0xdf, 0xe0, 0xe0, 0xde, 0xdc, 0xd9, 0xd9, 0xd8, 0xd8, 0xd8, 0xd7, 0xd6, 0xd4, 0xd2, 0xd2, 0xd1, 0xd0, 0xce, 0xcd, 0xcd, 0xcd, 0xcd, 0xce, 0xcd, 0xc9, 0xc9, 0xcc, 0xcd, 0xcb, 0xcd, 0xca, 0xc7, 0xc4, 0xbe, 0xb7, 0xb3, 0xb2, 0xb2, 0xb5, 0xb1, 0xaa, 0x87, 0x64, 0x64, 0x64, 0x69, 0x6e, 0x72, 0x74, 0x77, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x77, 0x75, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x69, 0x67, 0x66, 0x64, 0x60, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x55, 0x50, 0x4a, 0x46, 0x43, 0x40, 0x3b, 0x38, 0x34, 0x32, 0x31, 0x33, 0x3c, 0x4d, 0x60, 0x6d, 0x69, 0x68, 0x68, 0x65, 0x5d, 0x5a, 0x65, 0x74, 0x7c, 0x74, 0x7f, 0x90, 0x7e, 0x54, 0x42, 0x4c, 0x58, 0x54, 0x41, 0x2b, 0x2f, 0x43, 0x47, 0x3b, 0x36, 0x3a, 0x42, 0x4e, 0x59, 0x5c, 0x56, 0x4e, 0x44, 0x3b, 0x37, 0x40, 0x4a, 0x4f, 0x55, 0x5b, 0x73, 0x6b, 0x63, 0x59, 0x46, 0x34, 0x33, 0x3e, 0x3a, 0x32, 0x3b, 0x57, 0x66, 0x5a, 0x4a, 0x45, 0x47, 0x46, 0x45, 0x48, 0x4f, 0x58, 0x5f, 0x63, 0x6b, 0x6e, 0x72, 0x74, 0x73, 0x74, 0x7a, 0x80, 0x7a, 0x7a, 0x80, 0x8b, 0x94, 0x98, 0x9b, 0x9e, 0xa3, 0x96, 0x94, 0x95, 0x92, 0x93, 0x8f, 0x7e, 0x70, 0x5a, 0x3e, 0x43, 0x49, 0x5f, 0x65, 0x6e, 0x66, 0x6d, 0x7a, 0x80, 0x7c, 0x7c, 0x7a, 0x73, 0x55, 0x50, 0x4a, 0x41, 0x38, 0x31, 0x2d, 0x2b, 0x33, 0x5a, 0x61, 0x44, 0x30, 0x32, 0x3e, 0x4c, 0x40, 0x41, 0x44, 0x4b, 0x55, 0x5c, 0x5c, 0x57, 0x3f, 0x36, 0x29, 0x29, 0x3e, 0x4f, 0x41, 0x25, 0x66, 0x64, 0x63, 0x63, 0x64, 0x62, 0x5f, 0x5c, 0x64, 0x66, 0x68, 0x6a, 0x6e, 0x71, 0x71, 0x6f, 0x6b, 0x66, 0x63, 0x68, 0x71, 0x75, 0x71, 0x6b, 0x72, 0x74, 0x77, 0x7c, 0x82, 0x84, 0x7f, 0x78, 0x75, 0x7a, 0x81, 0x85, 0x82, 0x7c, 0x79, 0x7b, 0x7a, 0x73, 0x6f, 0x73, 0x7e, 0x85, 0x84, 0x80, 0x7d, 0x79, 0x72, 0x6e, 0x6d, 0x6e, 0x70, 0x71, 0x6c, 0x6b, 0x6b, 0x6d, 0x72, 0x76, 0x77, 0x77, 0x72, 0x74, 0x7d, 0x80, 0x77, 0x6d, 0x68, 0x64, 0x77, 0x7b, 0x74, 0x65, 0x5c, 0x62, 0x6b, 0x6f, 0x77, 0x79, 0x79, 0x74, 0x70, 0x6d, 0x68, 0x64, 0x6b, 0x66, 0x64, 0x62, 0x5c, 0x58, 0x5f, 0x6c, 0x75, 0x6b, 0x62, 0x63, 0x69, 0x6d, 0x6e, 0x6e, 0x74, 0x73, 0x73, 0x76, 0x7d, 0x80, 0x7a, 0x72, 0x6f, 0x71, 0x76, 0x7b, 0x80, 0x86, 0x90, 0x99, 0xad, 0xac, 0xae, 0xb0, 0xac, 0xa1, 0x98, 0x96, 0x81, 0x79, 0x6f, 0x6b, 0x6c, 0x6d, 0x6b, 0x68, 0x64, 0x69, 0x70, 0x76, 0x78, 0x76, 0x72, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x6f, 0x6a, 0x6e, 0x71, 0x73, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x74, 0x7d, 0x87, 0x86, 0x7a, 0x6c, 0x66, 0x68, 0x6b, 0x6f, 0x6f, 0x6c, 0x6d, 0x73, 0x79, 0x7a, 0x70, 0x8c, 0xb1, 0xc1, 0xb9, 0xb5, 0xbb, 0xbc, 0xc2, 0xc3, 0xc4, 0xc5, 0xc5, 0xc6, 0xc7, 0xc8, 0xcb, 0xcb, 0xcc, 0xcc, 0xcb, 0xc9, 0xc7, 0xc5, 0xc7, 0xc6, 0xc5, 0xc4, 0xc3, 0xc3, 0xc2, 0xc1, 0xc1, 0xbf, 0xbe, 0xbe, 0xbd, 0xbb, 0xba, 0xbb, 0xbc, 0xbc, 0xbd, 0xbe, 0xbe, 0xbe, 0xbc, 0xba, 0xb9, 0xb9, 0xba, 0xbb, 0xbc, 0xba, 0xb8, 0xb6, 0xb5, 0xb2, 0xad, 0xa9, 0xa8, 0xa9, 0xac, 0xae, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xad, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb0, 0xb0, 0xb1, 0xb2, 0xaf, 0xaa, 0xa4, 0xa0, 0x9d, 0x98, 0x92, 0x8d, 0x80, 0x74, 0x7b, 0x88, 0x87, 0x87, 0x87, 0x7d, 0x51, 0x8c, 0xc7, 0xd2, 0xd9, 0xe3, 0xe3, 0xe9, 0xe9, 0xe9, 0xeb, 0xf1, 0xf6, 0xf8, 0xfa, 0xfc, 0xfc, 0xfc, 0xfd, 0xfc, 0xfb, 0xf8, 0xf5, 0xf4, 0xed, 0xe9, 0xe4, 0xe5, 0xe9, 0xec, 0xed, 0xed, 0xee, 0xee, 0xec, 0xe8, 0xe5, 0xe3, 0xe4, 0xe5, 0xe5, 0xe5, 0xe3, 0xe2, 0xe1, 0xe1, 0xe1, 0xe1, 0xd9, 0xd6, 0xd3, 0xd0, 0xcd, 0xc8, 0xc2, 0xbd, 0xb5, 0xb5, 0xb5, 0xb6, 0xb8, 0xbd, 0xc3, 0xc8, 0xd0, 0xd3, 0xd8, 0xdb, 0xde, 0xe2, 0xe7, 0xea, 0xee, 0xeb, 0xe8, 0xe8, 0xea, 0xe9, 0xe6, 0xe2, 0xe0, 0xdf, 0xdf, 0xdf, 0xe0, 0xe0, 0xdf, 0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe2, 0xe1, 0xdd, 0xdb, 0xde, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xda, 0xdb, 0xd9, 0xd6, 0xd4, 0xd4, 0xd5, 0xd5, 0xd6, 0xd8, 0xda, 0xdb, 0xdb, 0xda, 0xda, 0xdd, 0xde, 0xe0, 0xe1, 0xe2, 0xe2, 0xe1, 0xe1, 0xe2, 0xe1, 0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xda, 0xd8, 0xd8, 0xd9, 0xd8, 0xd7, 0xd6, 0xd5, 0xd5, 0xd3, 0xd3, 0xd1, 0xd0, 0xcf, 0xcf, 0xcf, 0xcf, 0xce, 0xce, 0xcc, 0xca, 0xcc, 0xce, 0xcd, 0xca, 0xcb, 0xc8, 0xc3, 0xbd, 0xb4, 0xac, 0xaa, 0xab, 0xad, 0xaf, 0xac, 0xa2, 0x7f, 0x61, 0x63, 0x65, 0x68, 0x6d, 0x72, 0x74, 0x77, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x78, 0x77, 0x76, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6a, 0x67, 0x64, 0x64, 0x61, 0x5e, 0x5b, 0x59, 0x57, 0x55, 0x53, 0x52, 0x4d, 0x47, 0x42, 0x3f, 0x3c, 0x38, 0x36, 0x32, 0x2d, 0x2f, 0x3e, 0x4f, 0x5b, 0x63, 0x69, 0x67, 0x66, 0x63, 0x60, 0x5e, 0x61, 0x66, 0x6a, 0x71, 0x7f, 0x7c, 0x61, 0x4e, 0x57, 0x6d, 0x7b, 0x6d, 0x64, 0x65, 0x6f, 0x6e, 0x5e, 0x52, 0x51, 0x50, 0x49, 0x47, 0x52, 0x62, 0x69, 0x62, 0x57, 0x35, 0x35, 0x39, 0x43, 0x4e, 0x52, 0x4e, 0x49, 0x30, 0x35, 0x37, 0x35, 0x34, 0x34, 0x2e, 0x27, 0x35, 0x37, 0x3f, 0x49, 0x4d, 0x46, 0x3a, 0x32, 0x3d, 0x42, 0x46, 0x4a, 0x53, 0x5f, 0x68, 0x6c, 0x6b, 0x68, 0x65, 0x63, 0x64, 0x64, 0x63, 0x61, 0x70, 0x80, 0x88, 0x82, 0x82, 0x8a, 0x8a, 0x82, 0x6d, 0x7e, 0x77, 0x66, 0x66, 0x62, 0x5d, 0x66, 0x57, 0x53, 0x4d, 0x58, 0x5e, 0x67, 0x61, 0x60, 0x65, 0x69, 0x70, 0x6f, 0x6b, 0x70, 0x73, 0x6e, 0x8a, 0x87, 0x7e, 0x6f, 0x62, 0x5d, 0x5e, 0x61, 0x81, 0x69, 0x3d, 0x1a, 0x1b, 0x32, 0x41, 0x40, 0x4a, 0x44, 0x41, 0x4c, 0x62, 0x77, 0x7e, 0x7b, 0x76, 0x5b, 0x3a, 0x2c, 0x36, 0x4f, 0x65, 0x72, 0x62, 0x5f, 0x5e, 0x60, 0x62, 0x61, 0x60, 0x5f, 0x61, 0x5f, 0x61, 0x65, 0x67, 0x68, 0x6c, 0x73, 0x6f, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x71, 0x6f, 0x75, 0x77, 0x7a, 0x7c, 0x7d, 0x7b, 0x75, 0x70, 0x6f, 0x75, 0x7c, 0x80, 0x7e, 0x7b, 0x7c, 0x7e, 0x7a, 0x79, 0x77, 0x77, 0x7d, 0x85, 0x84, 0x7d, 0x7a, 0x73, 0x6c, 0x69, 0x6c, 0x6f, 0x70, 0x6f, 0x6e, 0x6b, 0x6a, 0x6f, 0x76, 0x79, 0x75, 0x71, 0x6b, 0x6f, 0x7b, 0x7d, 0x75, 0x78, 0x7c, 0x73, 0x8a, 0x9c, 0xa3, 0x94, 0x7f, 0x73, 0x6e, 0x6a, 0x69, 0x6a, 0x6c, 0x6e, 0x72, 0x73, 0x6e, 0x67, 0x62, 0x64, 0x5f, 0x5a, 0x60, 0x72, 0x7f, 0x84, 0x74, 0x69, 0x63, 0x68, 0x6d, 0x6c, 0x6c, 0x6f, 0x75, 0x73, 0x6f, 0x6d, 0x6f, 0x72, 0x70, 0x6d, 0x74, 0x6f, 0x69, 0x68, 0x6c, 0x72, 0x79, 0x7d, 0x88, 0x7a, 0x73, 0x7e, 0x93, 0xa3, 0xa8, 0xa8, 0xae, 0xba, 0xba, 0xad, 0xa6, 0xaa, 0xaa, 0xa4, 0x97, 0x8f, 0x85, 0x80, 0x83, 0x8b, 0x92, 0x96, 0xa1, 0x98, 0x91, 0x91, 0x90, 0x87, 0x79, 0x6f, 0x6e, 0x73, 0x74, 0x6f, 0x6e, 0x72, 0x75, 0x74, 0x7d, 0x82, 0x86, 0x80, 0x73, 0x68, 0x66, 0x69, 0x66, 0x6c, 0x6c, 0x67, 0x67, 0x6d, 0x72, 0x71, 0x6e, 0x95, 0xb8, 0xbe, 0xb7, 0xb9, 0xc1, 0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc6, 0xc6, 0xc7, 0xc9, 0xc8, 0xc9, 0xca, 0xca, 0xc9, 0xc7, 0xc5, 0xc4, 0xc6, 0xc6, 0xc5, 0xc4, 0xc1, 0xbf, 0xbe, 0xbe, 0xbf, 0xbd, 0xbd, 0xbf, 0xbe, 0xbb, 0xba, 0xbb, 0xbb, 0xbc, 0xbc, 0xbd, 0xbd, 0xbc, 0xbb, 0xba, 0xb8, 0xb9, 0xba, 0xbc, 0xbc, 0xbb, 0xb8, 0xb5, 0xaf, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xb3, 0xb3, 0xb3, 0xb1, 0xae, 0xac, 0xaa, 0xaa, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xab, 0xa8, 0xa5, 0xa2, 0x9f, 0x99, 0x91, 0x8a, 0x84, 0x77, 0x7c, 0x89, 0x88, 0x83, 0x83, 0x80, 0x52, 0x7d, 0xc0, 0xce, 0xd7, 0xe0, 0xe4, 0xea, 0xec, 0xec, 0xef, 0xf2, 0xf6, 0xf8, 0xfa, 0xfb, 0xfc, 0xfc, 0xfb, 0xfa, 0xf8, 0xf4, 0xef, 0xec, 0xe6, 0xde, 0xd5, 0xd1, 0xd2, 0xd9, 0xe4, 0xec, 0xef, 0xee, 0xed, 0xea, 0xe7, 0xe5, 0xe5, 0xe5, 0xe4, 0xe3, 0xe3, 0xe2, 0xe0, 0xde, 0xdd, 0xdc, 0xd3, 0xd1, 0xce, 0xcc, 0xcb, 0xc7, 0xc0, 0xba, 0xb1, 0xb3, 0xb6, 0xba, 0xbe, 0xc3, 0xc9, 0xcd, 0xd4, 0xd8, 0xdc, 0xe0, 0xe2, 0xe5, 0xe9, 0xec, 0xef, 0xec, 0xe9, 0xe9, 0xeb, 0xec, 0xe9, 0xe5, 0xe3, 0xe1, 0xde, 0xdd, 0xde, 0xde, 0xde, 0xdd, 0xde, 0xdd, 0xdc, 0xdd, 0xdf, 0xe0, 0xdf, 0xdd, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdb, 0xda, 0xd8, 0xda, 0xd9, 0xd6, 0xd2, 0xd1, 0xd3, 0xd6, 0xd6, 0xd7, 0xd9, 0xda, 0xda, 0xda, 0xd8, 0xd8, 0xd9, 0xda, 0xdb, 0xde, 0xe0, 0xe2, 0xe3, 0xe3, 0xe0, 0xe0, 0xde, 0xdc, 0xda, 0xd9, 0xd9, 0xda, 0xd9, 0xdb, 0xdb, 0xda, 0xd7, 0xd5, 0xd5, 0xd6, 0xd5, 0xd3, 0xd1, 0xd0, 0xcf, 0xd0, 0xd0, 0xd0, 0xcf, 0xcd, 0xcb, 0xcc, 0xcf, 0xd0, 0xcd, 0xca, 0xc4, 0xc0, 0xbb, 0xb4, 0xab, 0xa4, 0xa4, 0xa8, 0xab, 0xaa, 0xa7, 0x97, 0x75, 0x5e, 0x60, 0x65, 0x68, 0x6d, 0x72, 0x74, 0x77, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x65, 0x62, 0x62, 0x60, 0x5d, 0x5a, 0x58, 0x55, 0x52, 0x50, 0x4b, 0x48, 0x43, 0x3f, 0x3c, 0x39, 0x36, 0x33, 0x2f, 0x2c, 0x37, 0x4f, 0x63, 0x68, 0x67, 0x67, 0x69, 0x67, 0x62, 0x60, 0x66, 0x6f, 0x72, 0x6e, 0x5f, 0x51, 0x47, 0x4b, 0x54, 0x53, 0x45, 0x37, 0x5c, 0x69, 0x70, 0x6e, 0x73, 0x79, 0x6f, 0x5c, 0x5a, 0x4c, 0x3f, 0x40, 0x4a, 0x4f, 0x4c, 0x46, 0x51, 0x5f, 0x6e, 0x76, 0x7a, 0x76, 0x67, 0x56, 0x3c, 0x3e, 0x3a, 0x35, 0x3c, 0x44, 0x3b, 0x28, 0x31, 0x35, 0x38, 0x3a, 0x39, 0x39, 0x39, 0x38, 0x4a, 0x46, 0x46, 0x4c, 0x55, 0x5e, 0x68, 0x6f, 0x70, 0x7a, 0x80, 0x78, 0x6a, 0x64, 0x6a, 0x72, 0x71, 0x7c, 0x7b, 0x6f, 0x6e, 0x76, 0x6d, 0x5b, 0x55, 0x3d, 0x3c, 0x49, 0x55, 0x68, 0x65, 0x47, 0x42, 0x53, 0x66, 0x76, 0x7c, 0x7f, 0x7a, 0x75, 0x74, 0x68, 0x68, 0x73, 0x7a, 0x81, 0x89, 0x8c, 0x80, 0x8c, 0x97, 0x9b, 0x98, 0x93, 0x8e, 0x8c, 0x7c, 0x5b, 0x46, 0x47, 0x49, 0x44, 0x41, 0x3f, 0x31, 0x41, 0x4c, 0x4a, 0x42, 0x43, 0x51, 0x5d, 0x6e, 0x66, 0x5e, 0x5e, 0x63, 0x6c, 0x77, 0x81, 0x61, 0x5d, 0x5c, 0x60, 0x64, 0x66, 0x67, 0x69, 0x60, 0x5d, 0x5f, 0x64, 0x64, 0x61, 0x66, 0x6f, 0x75, 0x7c, 0x83, 0x82, 0x7c, 0x78, 0x79, 0x7c, 0x71, 0x76, 0x7e, 0x82, 0x7f, 0x78, 0x71, 0x6d, 0x78, 0x7b, 0x7c, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x82, 0x83, 0x7e, 0x76, 0x76, 0x7c, 0x7e, 0x7b, 0x7b, 0x73, 0x6b, 0x6b, 0x70, 0x73, 0x6f, 0x6a, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x6e, 0x72, 0x75, 0x74, 0x68, 0x74, 0x88, 0x87, 0x82, 0x89, 0x8e, 0x94, 0xa0, 0xa6, 0x9f, 0x92, 0x86, 0x77, 0x6a, 0x68, 0x68, 0x6a, 0x6d, 0x72, 0x74, 0x6f, 0x67, 0x5b, 0x5e, 0x60, 0x64, 0x71, 0x7f, 0x81, 0x7a, 0x6b, 0x64, 0x64, 0x6e, 0x72, 0x6b, 0x66, 0x68, 0x71, 0x72, 0x72, 0x71, 0x73, 0x78, 0x7c, 0x7d, 0x70, 0x72, 0x75, 0x74, 0x73, 0x75, 0x79, 0x7c, 0x88, 0x7d, 0x75, 0x77, 0x7d, 0x7d, 0x74, 0x6c, 0x69, 0x78, 0x81, 0x82, 0x86, 0x8c, 0x86, 0x79, 0x73, 0x6b, 0x63, 0x63, 0x6e, 0x7b, 0x84, 0x88, 0x85, 0x74, 0x65, 0x65, 0x6d, 0x70, 0x6e, 0x6b, 0x6f, 0x76, 0x7a, 0x78, 0x78, 0x7d, 0x7f, 0x7d, 0x83, 0x85, 0x86, 0x81, 0x78, 0x6e, 0x66, 0x62, 0x66, 0x6b, 0x6c, 0x6a, 0x6b, 0x71, 0x74, 0x74, 0x80, 0xa2, 0xbb, 0xb9, 0xb6, 0xbe, 0xc5, 0xc7, 0xc6, 0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xca, 0xcb, 0xca, 0xc9, 0xc8, 0xc7, 0xc6, 0xc6, 0xc6, 0xc4, 0xc0, 0xbd, 0xbb, 0xbb, 0xbc, 0xbb, 0xbc, 0xbf, 0xbf, 0xbc, 0xbb, 0xbc, 0xba, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xbb, 0xbc, 0xbc, 0xba, 0xb7, 0xb5, 0xae, 0xaf, 0xb1, 0xb3, 0xb4, 0xb3, 0xb1, 0xb0, 0xb0, 0xb1, 0xb0, 0xae, 0xab, 0xa9, 0xa7, 0xa7, 0xac, 0xad, 0xae, 0xaf, 0xaf, 0xad, 0xab, 0xa9, 0xaa, 0xa7, 0xa4, 0xa2, 0x9f, 0x99, 0x90, 0x89, 0x85, 0x7a, 0x7b, 0x87, 0x88, 0x82, 0x81, 0x84, 0x56, 0x71, 0xbb, 0xcb, 0xd3, 0xd9, 0xdf, 0xe7, 0xf0, 0xf2, 0xf3, 0xf4, 0xf6, 0xf8, 0xfa, 0xfb, 0xfc, 0xfa, 0xf7, 0xf4, 0xef, 0xe9, 0xe2, 0xdd, 0xd8, 0xd1, 0xc8, 0xc1, 0xbe, 0xc5, 0xd6, 0xe7, 0xea, 0xeb, 0xea, 0xe9, 0xe6, 0xe5, 0xe5, 0xe5, 0xe0, 0xe1, 0xe1, 0xe0, 0xde, 0xda, 0xd6, 0xd4, 0xd1, 0xce, 0xca, 0xc7, 0xc5, 0xc0, 0xb9, 0xb4, 0xb2, 0xb6, 0xbb, 0xc1, 0xc6, 0xcc, 0xd0, 0xd3, 0xd7, 0xdb, 0xe0, 0xe3, 0xe5, 0xe6, 0xe9, 0xeb, 0xed, 0xec, 0xec, 0xec, 0xec, 0xec, 0xeb, 0xeb, 0xe6, 0xe3, 0xdf, 0xdc, 0xdb, 0xdb, 0xdc, 0xdc, 0xdc, 0xd9, 0xd7, 0xd7, 0xda, 0xdd, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xdf, 0xde, 0xdc, 0xda, 0xdb, 0xdb, 0xda, 0xd6, 0xd3, 0xd3, 0xd8, 0xdc, 0xd8, 0xd9, 0xda, 0xda, 0xda, 0xd9, 0xd8, 0xd7, 0xd9, 0xd8, 0xd9, 0xd9, 0xdb, 0xde, 0xe0, 0xe2, 0xde, 0xde, 0xdd, 0xdc, 0xda, 0xda, 0xda, 0xdc, 0xdb, 0xdc, 0xdc, 0xda, 0xd6, 0xd4, 0xd4, 0xd5, 0xd5, 0xd3, 0xd0, 0xcf, 0xd0, 0xd0, 0xcf, 0xce, 0xcd, 0xcb, 0xca, 0xcc, 0xce, 0xce, 0xca, 0xc7, 0xbe, 0xbb, 0xb5, 0xae, 0xa6, 0xa0, 0xa1, 0xa5, 0xab, 0xa7, 0xa3, 0x8d, 0x6c, 0x5e, 0x60, 0x66, 0x69, 0x6e, 0x72, 0x74, 0x76, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x64, 0x62, 0x60, 0x5e, 0x5b, 0x59, 0x56, 0x53, 0x50, 0x4e, 0x46, 0x45, 0x42, 0x3e, 0x3a, 0x36, 0x32, 0x2f, 0x2f, 0x33, 0x44, 0x5f, 0x70, 0x70, 0x6a, 0x69, 0x63, 0x64, 0x65, 0x68, 0x74, 0x7f, 0x7d, 0x73, 0x67, 0x55, 0x4a, 0x49, 0x3f, 0x37, 0x4d, 0x6f, 0x80, 0x64, 0x5a, 0x6b, 0x76, 0x69, 0x5c, 0x5b, 0x56, 0x4e, 0x4a, 0x4d, 0x53, 0x55, 0x55, 0x55, 0x55, 0x69, 0x7b, 0x7d, 0x7b, 0x76, 0x6a, 0x5c, 0x52, 0x4d, 0x4a, 0x49, 0x42, 0x38, 0x39, 0x41, 0x3a, 0x3a, 0x3b, 0x3d, 0x3a, 0x38, 0x3c, 0x44, 0x4c, 0x42, 0x41, 0x4d, 0x55, 0x54, 0x53, 0x57, 0x5b, 0x5e, 0x5f, 0x5d, 0x5f, 0x67, 0x6f, 0x73, 0x7d, 0x73, 0x66, 0x61, 0x66, 0x66, 0x54, 0x3d, 0x25, 0x3d, 0x4a, 0x58, 0x66, 0x52, 0x37, 0x38, 0x64, 0x7a, 0x8d, 0x8a, 0x81, 0x7a, 0x7b, 0x7a, 0x7a, 0x72, 0x74, 0x79, 0x76, 0x70, 0x69, 0x5f, 0x70, 0x6e, 0x6b, 0x69, 0x68, 0x67, 0x68, 0x6a, 0x65, 0x5f, 0x61, 0x6a, 0x72, 0x79, 0x7b, 0x76, 0x78, 0x70, 0x66, 0x62, 0x6a, 0x77, 0x7e, 0x80, 0x5e, 0x63, 0x67, 0x64, 0x5e, 0x56, 0x4e, 0x48, 0x68, 0x61, 0x5e, 0x61, 0x63, 0x62, 0x62, 0x65, 0x5d, 0x5c, 0x61, 0x67, 0x65, 0x5f, 0x60, 0x66, 0x7b, 0x85, 0x8f, 0x8e, 0x85, 0x7f, 0x80, 0x85, 0x81, 0x81, 0x81, 0x7e, 0x78, 0x73, 0x74, 0x79, 0x7f, 0x7f, 0x7f, 0x80, 0x87, 0x8e, 0x90, 0x8f, 0x80, 0x87, 0x8a, 0x84, 0x7d, 0x79, 0x76, 0x73, 0x7a, 0x74, 0x70, 0x75, 0x7f, 0x81, 0x7a, 0x71, 0x6c, 0x68, 0x64, 0x65, 0x6a, 0x6c, 0x6a, 0x66, 0x60, 0x5d, 0x68, 0x79, 0x81, 0x83, 0x85, 0x87, 0x88, 0x84, 0x79, 0x6a, 0x62, 0x65, 0x6e, 0x74, 0x71, 0x71, 0x70, 0x71, 0x74, 0x76, 0x71, 0x6b, 0x66, 0x66, 0x70, 0x81, 0x87, 0x7b, 0x69, 0x5f, 0x5f, 0x5e, 0x65, 0x73, 0x79, 0x75, 0x70, 0x71, 0x78, 0x79, 0x77, 0x71, 0x6e, 0x6e, 0x6f, 0x6e, 0x78, 0x80, 0x83, 0x79, 0x6b, 0x69, 0x73, 0x7e, 0x77, 0x77, 0x75, 0x70, 0x6c, 0x6b, 0x6f, 0x73, 0x73, 0x6a, 0x63, 0x64, 0x6a, 0x73, 0x7f, 0x8a, 0x87, 0x89, 0x8f, 0x97, 0x9e, 0xa0, 0x9c, 0x97, 0x8c, 0x7c, 0x6b, 0x66, 0x6a, 0x6c, 0x69, 0x66, 0x64, 0x6c, 0x74, 0x79, 0x7c, 0x7f, 0x80, 0x80, 0x7f, 0x7d, 0x79, 0x76, 0x75, 0x73, 0x6d, 0x67, 0x5f, 0x60, 0x62, 0x66, 0x6b, 0x72, 0x77, 0x7a, 0x99, 0xb0, 0xba, 0xb5, 0xb7, 0xbf, 0xc4, 0xc8, 0xc5, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc8, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc8, 0xc7, 0xc6, 0xc5, 0xc2, 0xc0, 0xbd, 0xbb, 0xb9, 0xb8, 0xba, 0xbd, 0xbe, 0xbc, 0xbc, 0xbd, 0xbd, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbd, 0xbe, 0xbb, 0xbb, 0xbc, 0xbc, 0xbc, 0xbb, 0xb8, 0xb5, 0xb4, 0xb3, 0xb1, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xac, 0xaa, 0xa9, 0xaa, 0xaa, 0xac, 0xad, 0xad, 0xac, 0xa9, 0xa6, 0xac, 0xa8, 0xa2, 0x9f, 0x9d, 0x99, 0x93, 0x8e, 0x83, 0x7b, 0x7a, 0x83, 0x88, 0x84, 0x82, 0x86, 0x5e, 0x6c, 0xbd, 0xcd, 0xd2, 0xd3, 0xdb, 0xe4, 0xf5, 0xf8, 0xfb, 0xfb, 0xfb, 0xfd, 0xfe, 0xfd, 0xfc, 0xf8, 0xf2, 0xec, 0xe6, 0xde, 0xd5, 0xcf, 0xc8, 0xc4, 0xbf, 0xba, 0xb4, 0xb8, 0xca, 0xdd, 0xe2, 0xe3, 0xe4, 0xe3, 0xe2, 0xe1, 0xe1, 0xe1, 0xe0, 0xe0, 0xe0, 0xde, 0xdb, 0xd7, 0xd2, 0xd0, 0xce, 0xca, 0xc5, 0xc0, 0xbc, 0xb7, 0xb2, 0xae, 0xb4, 0xb8, 0xbf, 0xc5, 0xcb, 0xcf, 0xd3, 0xd6, 0xdb, 0xde, 0xe3, 0xe5, 0xe5, 0xe5, 0xe7, 0xe8, 0xea, 0xec, 0xed, 0xed, 0xeb, 0xea, 0xea, 0xec, 0xe7, 0xe3, 0xde, 0xdb, 0xd9, 0xd9, 0xd9, 0xd9, 0xd8, 0xd6, 0xd3, 0xd3, 0xd6, 0xda, 0xdd, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xdd, 0xdc, 0xdb, 0xd9, 0xd8, 0xd8, 0xd6, 0xd3, 0xd2, 0xd4, 0xd9, 0xdd, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdd, 0xdc, 0xdc, 0xdd, 0xdc, 0xdb, 0xda, 0xda, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd, 0xdd, 0xdd, 0xda, 0xda, 0xd9, 0xd7, 0xd4, 0xd3, 0xd3, 0xd3, 0xd4, 0xd2, 0xd0, 0xcf, 0xd0, 0xcf, 0xcd, 0xcb, 0xc9, 0xc7, 0xc7, 0xca, 0xcb, 0xc8, 0xc5, 0xc3, 0xbd, 0xb8, 0xb2, 0xab, 0xa2, 0x9c, 0x9b, 0x9e, 0xa7, 0xa1, 0x9e, 0x85, 0x68, 0x61, 0x62, 0x68, 0x6a, 0x6e, 0x72, 0x74, 0x76, 0x79, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x65, 0x63, 0x61, 0x5e, 0x5c, 0x5a, 0x57, 0x54, 0x51, 0x4e, 0x4b, 0x45, 0x43, 0x40, 0x3c, 0x38, 0x33, 0x2f, 0x2d, 0x31, 0x3a, 0x4e, 0x64, 0x6f, 0x6d, 0x69, 0x68, 0x68, 0x6b, 0x6e, 0x73, 0x79, 0x79, 0x6d, 0x5e, 0x51, 0x52, 0x48, 0x3c, 0x44, 0x63, 0x7f, 0x89, 0x85, 0x7b, 0x66, 0x56, 0x5b, 0x6a, 0x67, 0x58, 0x56, 0x4f, 0x48, 0x47, 0x45, 0x44, 0x49, 0x50, 0x59, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x67, 0x5f, 0x4f, 0x59, 0x63, 0x64, 0x5e, 0x58, 0x58, 0x5a, 0x52, 0x4c, 0x4b, 0x4b, 0x43, 0x36, 0x33, 0x37, 0x32, 0x30, 0x39, 0x4c, 0x58, 0x54, 0x4a, 0x45, 0x3f, 0x40, 0x40, 0x46, 0x54, 0x63, 0x66, 0x61, 0x6e, 0x59, 0x4d, 0x58, 0x62, 0x59, 0x44, 0x37, 0x52, 0x61, 0x7e, 0x78, 0x47, 0x2e, 0x3e, 0x4e, 0x52, 0x59, 0x63, 0x65, 0x79, 0x83, 0x80, 0x6e, 0x58, 0x66, 0x72, 0x70, 0x6f, 0x7b, 0x7e, 0x71, 0x59, 0x54, 0x5a, 0x6b, 0x77, 0x74, 0x6b, 0x66, 0x6b, 0x6b, 0x63, 0x58, 0x53, 0x5a, 0x69, 0x74, 0x90, 0x95, 0x98, 0x95, 0x8b, 0x7d, 0x6d, 0x61, 0x46, 0x49, 0x46, 0x3b, 0x32, 0x2c, 0x24, 0x1d, 0x6b, 0x63, 0x5f, 0x61, 0x60, 0x5b, 0x58, 0x5a, 0x5a, 0x5c, 0x62, 0x69, 0x6a, 0x68, 0x6a, 0x6e, 0x7f, 0x86, 0x8d, 0x8e, 0x89, 0x84, 0x83, 0x84, 0x8e, 0x8a, 0x84, 0x7c, 0x74, 0x71, 0x7a, 0x86, 0x99, 0x91, 0x86, 0x7e, 0x7d, 0x7d, 0x75, 0x6b, 0x75, 0x82, 0x8f, 0x8e, 0x82, 0x74, 0x6c, 0x6a, 0x69, 0x67, 0x6a, 0x79, 0x8a, 0x8f, 0x86, 0x7a, 0x6a, 0x62, 0x5d, 0x64, 0x6f, 0x73, 0x6b, 0x60, 0x61, 0x6b, 0x6d, 0x6c, 0x72, 0x76, 0x70, 0x6b, 0x6f, 0x6d, 0x6a, 0x65, 0x5f, 0x5e, 0x66, 0x70, 0x73, 0x73, 0x72, 0x70, 0x71, 0x73, 0x72, 0x70, 0x6f, 0x73, 0x80, 0x8b, 0x89, 0x7a, 0x6e, 0x6c, 0x63, 0x64, 0x6c, 0x77, 0x7e, 0x7f, 0x7e, 0x7f, 0x8a, 0x86, 0x7f, 0x76, 0x71, 0x6e, 0x69, 0x64, 0x6c, 0x79, 0x83, 0x7d, 0x71, 0x6c, 0x70, 0x75, 0x73, 0x7a, 0x7c, 0x75, 0x6a, 0x66, 0x6b, 0x71, 0x76, 0x73, 0x71, 0x6f, 0x67, 0x5f, 0x5f, 0x65, 0x61, 0x68, 0x73, 0x7f, 0x8a, 0x97, 0xa3, 0xab, 0xbe, 0xb5, 0xa7, 0x97, 0x8a, 0x7f, 0x73, 0x6b, 0x6a, 0x6d, 0x74, 0x7b, 0x7f, 0x82, 0x86, 0x8b, 0x7d, 0x77, 0x6e, 0x68, 0x6c, 0x71, 0x71, 0x6c, 0x5d, 0x58, 0x58, 0x61, 0x6b, 0x72, 0x7a, 0x82, 0xaa, 0xb7, 0xb8, 0xb4, 0xba, 0xbe, 0xc0, 0xc8, 0xc2, 0xc4, 0xc6, 0xc7, 0xc7, 0xc8, 0xca, 0xcc, 0xc9, 0xc8, 0xc7, 0xc5, 0xc5, 0xc5, 0xc6, 0xc7, 0xc8, 0xc6, 0xc5, 0xc5, 0xc5, 0xc3, 0xc0, 0xbd, 0xb8, 0xb7, 0xb7, 0xba, 0xbb, 0xba, 0xba, 0xbc, 0xbf, 0xc1, 0xc3, 0xc2, 0xc1, 0xbf, 0xc0, 0xc0, 0xbe, 0xbd, 0xbd, 0xbd, 0xbd, 0xbc, 0xba, 0xb8, 0xb9, 0xb7, 0xb3, 0xb0, 0xae, 0xaf, 0xb1, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xb1, 0xb0, 0xad, 0xab, 0xad, 0xac, 0xad, 0xaf, 0xb1, 0xb2, 0xb0, 0xaf, 0xab, 0xa7, 0xa3, 0xa1, 0xa0, 0x9d, 0x97, 0x92, 0x84, 0x7e, 0x7a, 0x7f, 0x87, 0x85, 0x81, 0x85, 0x63, 0x66, 0xbe, 0xce, 0xcf, 0xcc, 0xd6, 0xdf, 0xed, 0xf3, 0xf9, 0xfa, 0xfa, 0xfb, 0xfa, 0xf7, 0xf2, 0xed, 0xe7, 0xe1, 0xdb, 0xd4, 0xcb, 0xc6, 0xbd, 0xba, 0xb7, 0xb5, 0xb1, 0xb4, 0xc4, 0xd6, 0xdc, 0xde, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xde, 0xdf, 0xde, 0xdc, 0xd9, 0xd6, 0xd3, 0xd0, 0xcf, 0xc7, 0xc4, 0xbf, 0xb9, 0xb5, 0xb2, 0xb0, 0xb0, 0xb8, 0xbc, 0xc3, 0xc9, 0xce, 0xd2, 0xd6, 0xd8, 0xdd, 0xe1, 0xe5, 0xe7, 0xe6, 0xe4, 0xe4, 0xe5, 0xe7, 0xe8, 0xea, 0xe9, 0xe7, 0xe5, 0xe5, 0xe5, 0xe1, 0xde, 0xdb, 0xd9, 0xd8, 0xd6, 0xd5, 0xd4, 0xd4, 0xd4, 0xd4, 0xd3, 0xd4, 0xd6, 0xd9, 0xdc, 0xde, 0xdc, 0xda, 0xd9, 0xd8, 0xd7, 0xd6, 0xd5, 0xd2, 0xd2, 0xd1, 0xd1, 0xd2, 0xd5, 0xd8, 0xda, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xdf, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xdf, 0xde, 0xdc, 0xdb, 0xda, 0xdc, 0xda, 0xda, 0xdb, 0xdd, 0xde, 0xdc, 0xdb, 0xd8, 0xd7, 0xd5, 0xd4, 0xd3, 0xd3, 0xd3, 0xd2, 0xd3, 0xd1, 0xcf, 0xcf, 0xd0, 0xce, 0xca, 0xc7, 0xc6, 0xc5, 0xc6, 0xca, 0xc9, 0xc4, 0xc0, 0xc0, 0xba, 0xb4, 0xad, 0xa6, 0x9f, 0x97, 0x93, 0x94, 0x9c, 0x95, 0x96, 0x7e, 0x67, 0x66, 0x63, 0x67, 0x6b, 0x6f, 0x73, 0x74, 0x75, 0x78, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x76, 0x75, 0x75, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6d, 0x69, 0x68, 0x66, 0x65, 0x65, 0x64, 0x62, 0x60, 0x5c, 0x5a, 0x57, 0x55, 0x52, 0x4f, 0x4b, 0x48, 0x43, 0x41, 0x3d, 0x38, 0x35, 0x32, 0x32, 0x32, 0x38, 0x44, 0x54, 0x61, 0x67, 0x68, 0x69, 0x69, 0x71, 0x73, 0x77, 0x7a, 0x78, 0x70, 0x61, 0x55, 0x5a, 0x61, 0x64, 0x60, 0x5d, 0x64, 0x70, 0x79, 0x6c, 0x52, 0x38, 0x32, 0x3b, 0x4c, 0x64, 0x78, 0x65, 0x55, 0x44, 0x39, 0x33, 0x32, 0x3b, 0x46, 0x57, 0x58, 0x57, 0x57, 0x60, 0x69, 0x68, 0x60, 0x68, 0x72, 0x73, 0x6b, 0x6a, 0x6c, 0x61, 0x4d, 0x5f, 0x59, 0x55, 0x52, 0x49, 0x3b, 0x30, 0x2c, 0x24, 0x2e, 0x3d, 0x4d, 0x5d, 0x64, 0x5d, 0x52, 0x48, 0x58, 0x63, 0x5e, 0x57, 0x5a, 0x65, 0x6d, 0x55, 0x48, 0x4d, 0x63, 0x66, 0x52, 0x44, 0x46, 0x76, 0x64, 0x40, 0x2a, 0x31, 0x3e, 0x4d, 0x62, 0x54, 0x3d, 0x2f, 0x37, 0x70, 0x8c, 0x7c, 0x4e, 0x3b, 0x42, 0x42, 0x39, 0x3c, 0x57, 0x6c, 0x69, 0x4f, 0x3c, 0x3c, 0x5d, 0x81, 0x92, 0x97, 0x9b, 0x9e, 0x9d, 0x9d, 0xad, 0xc2, 0xbe, 0xae, 0xab, 0x94, 0x87, 0x77, 0x6f, 0x6f, 0x6b, 0x5a, 0x4a, 0x46, 0x38, 0x24, 0x14, 0x17, 0x2b, 0x46, 0x57, 0x66, 0x5f, 0x5d, 0x62, 0x62, 0x5c, 0x59, 0x5b, 0x5c, 0x5e, 0x64, 0x6b, 0x71, 0x76, 0x7d, 0x84, 0x83, 0x85, 0x88, 0x8a, 0x8b, 0x89, 0x85, 0x82, 0x81, 0x83, 0x86, 0x85, 0x7f, 0x7a, 0x80, 0x89, 0x7b, 0x74, 0x6c, 0x6c, 0x76, 0x7e, 0x7a, 0x6f, 0x6f, 0x7b, 0x86, 0x85, 0x76, 0x67, 0x65, 0x69, 0x6e, 0x6a, 0x6b, 0x77, 0x83, 0x82, 0x71, 0x60, 0x69, 0x66, 0x64, 0x64, 0x68, 0x6e, 0x75, 0x78, 0x6d, 0x6b, 0x67, 0x6d, 0x72, 0x66, 0x60, 0x6d, 0x6d, 0x66, 0x69, 0x76, 0x7e, 0x79, 0x70, 0x6c, 0x72, 0x72, 0x70, 0x6c, 0x6a, 0x6c, 0x6e, 0x6d, 0x74, 0x7e, 0x80, 0x72, 0x65, 0x63, 0x68, 0x6a, 0x73, 0x73, 0x75, 0x79, 0x7c, 0x7d, 0x7e, 0x7e, 0x81, 0x7b, 0x74, 0x70, 0x72, 0x74, 0x70, 0x6a, 0x70, 0x74, 0x75, 0x71, 0x6f, 0x71, 0x72, 0x70, 0x7e, 0x7d, 0x77, 0x6c, 0x64, 0x64, 0x69, 0x6e, 0x72, 0x72, 0x6c, 0x61, 0x60, 0x67, 0x68, 0x62, 0x63, 0x6c, 0x75, 0x76, 0x72, 0x72, 0x79, 0x80, 0x86, 0x8b, 0x8c, 0x89, 0x8b, 0x93, 0x9b, 0x9f, 0xa2, 0x9a, 0x93, 0x8e, 0x85, 0x7e, 0x7f, 0x85, 0x80, 0x7b, 0x72, 0x6c, 0x6d, 0x6f, 0x6a, 0x62, 0x66, 0x5b, 0x59, 0x65, 0x71, 0x78, 0x82, 0x8d, 0xaf, 0xb8, 0xb6, 0xb5, 0xbe, 0xbe, 0xbe, 0xc9, 0xc0, 0xc2, 0xc5, 0xc7, 0xc8, 0xca, 0xcd, 0xcf, 0xcb, 0xca, 0xc7, 0xc5, 0xc4, 0xc4, 0xc5, 0xc6, 0xc6, 0xc4, 0xc3, 0xc4, 0xc6, 0xc5, 0xc2, 0xbe, 0xb7, 0xb6, 0xb6, 0xb8, 0xb9, 0xb8, 0xb9, 0xbb, 0xbc, 0xbf, 0xc2, 0xc3, 0xc1, 0xbf, 0xbd, 0xbd, 0xbf, 0xbe, 0xbd, 0xbe, 0xbe, 0xbe, 0xbd, 0xbb, 0xb9, 0xb8, 0xb5, 0xb2, 0xb1, 0xb1, 0xb1, 0xb2, 0xb4, 0xb1, 0xaf, 0xb0, 0xb1, 0xaf, 0xab, 0xa7, 0xa5, 0xa4, 0xa4, 0xa6, 0xaa, 0xad, 0xae, 0xad, 0xa7, 0xa6, 0xa6, 0xa7, 0xa7, 0xa2, 0x9a, 0x93, 0x87, 0x82, 0x7b, 0x7d, 0x85, 0x84, 0x7f, 0x80, 0x60, 0x5f, 0xba, 0xcb, 0xc9, 0xc3, 0xcd, 0xd7, 0xdd, 0xe6, 0xee, 0xf1, 0xf2, 0xf2, 0xee, 0xea, 0xe2, 0xde, 0xd8, 0xd3, 0xd0, 0xca, 0xc4, 0xbf, 0xbb, 0xb5, 0xb1, 0xb0, 0xaf, 0xb3, 0xc4, 0xd5, 0xdb, 0xdd, 0xde, 0xdf, 0xde, 0xdd, 0xdc, 0xdd, 0xda, 0xd8, 0xd5, 0xd1, 0xce, 0xcd, 0xcc, 0xcc, 0xc1, 0xbe, 0xba, 0xb5, 0xb2, 0xb2, 0xb4, 0xb6, 0xbf, 0xc3, 0xca, 0xd0, 0xd4, 0xd8, 0xdb, 0xdd, 0xdf, 0xe3, 0xe7, 0xe8, 0xe6, 0xe3, 0xe3, 0xe3, 0xe4, 0xe4, 0xe5, 0xe5, 0xe3, 0xe1, 0xde, 0xdc, 0xd9, 0xd9, 0xd8, 0xd7, 0xd6, 0xd4, 0xd1, 0xce, 0xd2, 0xd4, 0xd5, 0xd5, 0xd4, 0xd4, 0xd6, 0xd9, 0xdc, 0xda, 0xd6, 0xd4, 0xd3, 0xd2, 0xd1, 0xd0, 0xd0, 0xd0, 0xd1, 0xd3, 0xd6, 0xd9, 0xd9, 0xd9, 0xda, 0xda, 0xd9, 0xd9, 0xda, 0xdb, 0xdd, 0xde, 0xe0, 0xe2, 0xe3, 0xe4, 0xe3, 0xe1, 0xde, 0xdb, 0xd9, 0xd8, 0xd7, 0xd9, 0xdc, 0xdc, 0xda, 0xd7, 0xd7, 0xd5, 0xd3, 0xd2, 0xd4, 0xd5, 0xd4, 0xd3, 0xd2, 0xd0, 0xcf, 0xcf, 0xd0, 0xce, 0xc9, 0xc4, 0xc5, 0xc4, 0xc7, 0xca, 0xc8, 0xc2, 0xbe, 0xbf, 0xb5, 0xaf, 0xa8, 0xa2, 0x9b, 0x93, 0x8e, 0x8d, 0x90, 0x8a, 0x8e, 0x78, 0x65, 0x67, 0x63, 0x65, 0x6b, 0x70, 0x73, 0x74, 0x75, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x67, 0x66, 0x64, 0x64, 0x63, 0x62, 0x61, 0x5f, 0x5a, 0x58, 0x56, 0x53, 0x51, 0x4d, 0x49, 0x46, 0x3f, 0x3d, 0x39, 0x35, 0x33, 0x34, 0x37, 0x39, 0x43, 0x4e, 0x5a, 0x60, 0x64, 0x69, 0x6d, 0x6e, 0x70, 0x72, 0x76, 0x7c, 0x7c, 0x77, 0x70, 0x6b, 0x6a, 0x68, 0x60, 0x57, 0x5c, 0x68, 0x6a, 0x64, 0x55, 0x44, 0x2e, 0x26, 0x37, 0x51, 0x5b, 0x57, 0x5e, 0x4c, 0x3a, 0x32, 0x31, 0x34, 0x3c, 0x46, 0x49, 0x46, 0x46, 0x51, 0x66, 0x73, 0x6d, 0x5f, 0x67, 0x5b, 0x50, 0x50, 0x54, 0x56, 0x58, 0x5a, 0x5a, 0x57, 0x54, 0x51, 0x4e, 0x48, 0x3e, 0x36, 0x30, 0x41, 0x4c, 0x50, 0x5f, 0x73, 0x75, 0x69, 0x5a, 0x52, 0x44, 0x3b, 0x41, 0x4c, 0x4d, 0x47, 0x46, 0x45, 0x58, 0x6e, 0x66, 0x48, 0x3e, 0x4a, 0x3f, 0x48, 0x4d, 0x42, 0x36, 0x3f, 0x52, 0x5c, 0x6e, 0x67, 0x5e, 0x4d, 0x67, 0x7d, 0x8a, 0x7b, 0x65, 0x53, 0x40, 0x35, 0x39, 0x4f, 0x65, 0x6b, 0x74, 0x55, 0x49, 0x63, 0x7e, 0x7e, 0x71, 0x6c, 0x74, 0x9e, 0xa9, 0x8d, 0x6c, 0x52, 0x56, 0x72, 0x8e, 0x97, 0x9d, 0x97, 0x84, 0x69, 0x4e, 0x3c, 0x26, 0x2a, 0x34, 0x44, 0x52, 0x5e, 0x6b, 0x76, 0x5e, 0x58, 0x58, 0x5f, 0x63, 0x5f, 0x5e, 0x60, 0x60, 0x63, 0x69, 0x70, 0x76, 0x7a, 0x7c, 0x7c, 0x75, 0x7a, 0x81, 0x86, 0x84, 0x80, 0x80, 0x83, 0x95, 0x9c, 0x97, 0x84, 0x75, 0x75, 0x7c, 0x7f, 0x7a, 0x77, 0x75, 0x75, 0x73, 0x6f, 0x6c, 0x6c, 0x7b, 0x83, 0x83, 0x7d, 0x77, 0x6e, 0x6b, 0x71, 0x65, 0x65, 0x6b, 0x74, 0x75, 0x6b, 0x64, 0x63, 0x6f, 0x6b, 0x66, 0x60, 0x5a, 0x5a, 0x66, 0x73, 0x68, 0x63, 0x60, 0x60, 0x60, 0x61, 0x66, 0x6c, 0x63, 0x6a, 0x6b, 0x71, 0x78, 0x6c, 0x60, 0x65, 0x6e, 0x74, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x7b, 0x7b, 0x7a, 0x76, 0x72, 0x6f, 0x6f, 0x70, 0x7a, 0x7b, 0x7a, 0x77, 0x74, 0x76, 0x7d, 0x83, 0x7b, 0x70, 0x63, 0x70, 0x75, 0x7b, 0x6e, 0x69, 0x68, 0x6e, 0x75, 0x73, 0x6e, 0x77, 0x82, 0x81, 0x8f, 0x7a, 0x65, 0x5e, 0x64, 0x6b, 0x6f, 0x71, 0x6e, 0x6e, 0x67, 0x5e, 0x5e, 0x66, 0x67, 0x61, 0x5c, 0x6a, 0x77, 0x7e, 0x82, 0x83, 0x7d, 0x73, 0x7d, 0x83, 0x8c, 0x7d, 0x6a, 0x62, 0x60, 0x69, 0x7a, 0x80, 0x8d, 0x99, 0x97, 0x89, 0x7e, 0x7b, 0x7b, 0x7d, 0x7c, 0x77, 0x6f, 0x69, 0x61, 0x5b, 0x69, 0x61, 0x64, 0x6d, 0x6c, 0x7a, 0x7c, 0xa1, 0xb9, 0xb7, 0xb6, 0xb7, 0xba, 0xbd, 0xc2, 0xc5, 0xc3, 0xc4, 0xc7, 0xc9, 0xcb, 0xcd, 0xcd, 0xce, 0xcb, 0xc9, 0xc6, 0xc4, 0xc3, 0xc4, 0xc5, 0xc6, 0xc5, 0xc5, 0xc4, 0xc2, 0xc1, 0xbf, 0xbd, 0xbd, 0xbd, 0xbc, 0xbc, 0xbb, 0xbc, 0xbc, 0xbd, 0xbe, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbc, 0xbd, 0xbd, 0xbd, 0xba, 0xb5, 0xb2, 0xb0, 0xb0, 0xb0, 0xb0, 0xb7, 0xb4, 0xb2, 0xb3, 0xb6, 0xb6, 0xb2, 0xae, 0xaa, 0xa6, 0xa3, 0xa2, 0xa5, 0xa7, 0xa7, 0xa5, 0xaa, 0xa7, 0xa3, 0xa1, 0xa0, 0x9d, 0x99, 0x95, 0x88, 0x81, 0x7c, 0x7e, 0x84, 0x87, 0x85, 0x81, 0x6c, 0x69, 0xb5, 0xcf, 0xc9, 0xc7, 0xc3, 0xbf, 0xcb, 0xd1, 0xda, 0xe0, 0xe1, 0xde, 0xda, 0xd7, 0xd3, 0xc9, 0xc2, 0xc4, 0xc6, 0xc2, 0xbb, 0xb6, 0xba, 0xb6, 0xb0, 0xac, 0xab, 0xb2, 0xc3, 0xd3, 0xd5, 0xd7, 0xda, 0xdc, 0xdc, 0xdb, 0xda, 0xda, 0xd5, 0xd6, 0xd4, 0xce, 0xcc, 0xcc, 0xc9, 0xc4, 0xc0, 0xba, 0xb4, 0xb1, 0xb0, 0xb2, 0xb7, 0xbd, 0xc5, 0xcf, 0xd6, 0xd6, 0xd8, 0xde, 0xe1, 0xdf, 0xdc, 0xe1, 0xe5, 0xe3, 0xe1, 0xe1, 0xe2, 0xe2, 0xe3, 0xe0, 0xde, 0xe0, 0xe1, 0xdf, 0xdb, 0xd9, 0xdf, 0xd5, 0xd8, 0xd7, 0xd6, 0xd4, 0xce, 0xd4, 0xd2, 0xd2, 0xd3, 0xd3, 0xd0, 0xcd, 0xcf, 0xd3, 0xd9, 0xd7, 0xd5, 0xd2, 0xd0, 0xce, 0xce, 0xce, 0xcf, 0xd1, 0xd3, 0xd3, 0xd2, 0xd4, 0xd6, 0xd7, 0xd2, 0xd7, 0xda, 0xda, 0xdb, 0xde, 0xdd, 0xda, 0xe2, 0xe3, 0xe0, 0xdc, 0xdc, 0xdf, 0xde, 0xdb, 0xda, 0xdd, 0xde, 0xdd, 0xdc, 0xdd, 0xdc, 0xdb, 0xda, 0xda, 0xda, 0xd9, 0xd8, 0xd5, 0xd3, 0xd1, 0xcf, 0xce, 0xce, 0xce, 0xcb, 0xc6, 0xc4, 0xc4, 0xca, 0xc9, 0xbf, 0xd2, 0xc3, 0xbf, 0xc2, 0xb7, 0xb9, 0xae, 0xa7, 0xa5, 0x9d, 0x8e, 0x85, 0x87, 0x90, 0x8f, 0x87, 0x78, 0x6a, 0x64, 0x66, 0x6a, 0x6e, 0x71, 0x74, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x65, 0x64, 0x62, 0x5f, 0x5c, 0x5a, 0x58, 0x55, 0x52, 0x4e, 0x4b, 0x47, 0x43, 0x41, 0x3e, 0x39, 0x37, 0x36, 0x2e, 0x2b, 0x3d, 0x54, 0x78, 0x6c, 0x60, 0x5d, 0x60, 0x64, 0x68, 0x6b, 0x6f, 0x78, 0x7e, 0x7a, 0x6e, 0x65, 0x65, 0x69, 0x76, 0x6b, 0x63, 0x5c, 0x55, 0x5a, 0x66, 0x6d, 0x56, 0x30, 0x20, 0x39, 0x4d, 0x43, 0x32, 0x2e, 0x40, 0x49, 0x4b, 0x3e, 0x31, 0x30, 0x38, 0x40, 0x48, 0x39, 0x3c, 0x4e, 0x55, 0x51, 0x51, 0x53, 0x49, 0x5c, 0x76, 0x83, 0x82, 0x86, 0x8b, 0x89, 0x8f, 0x85, 0x78, 0x6a, 0x5b, 0x4d, 0x43, 0x40, 0x45, 0x46, 0x4c, 0x55, 0x5a, 0x57, 0x50, 0x4c, 0x3d, 0x31, 0x3a, 0x4b, 0x48, 0x44, 0x4a, 0x4d, 0x3e, 0x49, 0x57, 0x5d, 0x55, 0x44, 0x37, 0x33, 0x2a, 0x2f, 0x37, 0x43, 0x52, 0x63, 0x74, 0x7e, 0x74, 0x74, 0x71, 0x62, 0x67, 0x94, 0xa8, 0x8d, 0x66, 0x30, 0x20, 0x30, 0x35, 0x33, 0x46, 0x6f, 0x7e, 0x92, 0x8c, 0x69, 0x52, 0x5f, 0x89, 0xb1, 0xbe, 0x9e, 0x72, 0x5d, 0x6f, 0x98, 0xb8, 0xc3, 0xab, 0x90, 0x6a, 0x47, 0x2f, 0x25, 0x27, 0x2d, 0x2e, 0x31, 0x36, 0x3e, 0x48, 0x52, 0x58, 0x5a, 0x68, 0x5f, 0x5c, 0x63, 0x69, 0x67, 0x63, 0x62, 0x5a, 0x62, 0x6c, 0x72, 0x73, 0x73, 0x73, 0x74, 0x7b, 0x7d, 0x81, 0x81, 0x7b, 0x75, 0x76, 0x79, 0x7f, 0x7b, 0x74, 0x71, 0x76, 0x7b, 0x76, 0x6d, 0x6e, 0x6b, 0x69, 0x68, 0x66, 0x65, 0x67, 0x6a, 0x74, 0x7b, 0x7b, 0x77, 0x73, 0x6d, 0x6a, 0x6f, 0x6e, 0x6f, 0x73, 0x77, 0x72, 0x69, 0x65, 0x68, 0x6a, 0x67, 0x65, 0x63, 0x5f, 0x5c, 0x5f, 0x64, 0x64, 0x5f, 0x5e, 0x60, 0x61, 0x5d, 0x5a, 0x59, 0x60, 0x67, 0x6b, 0x71, 0x77, 0x6f, 0x66, 0x6b, 0x72, 0x76, 0x78, 0x75, 0x73, 0x71, 0x6f, 0x6d, 0x76, 0x78, 0x78, 0x79, 0x7b, 0x7a, 0x73, 0x6c, 0x6d, 0x6e, 0x6f, 0x72, 0x75, 0x78, 0x7a, 0x7b, 0x70, 0x6d, 0x66, 0x73, 0x74, 0x78, 0x6e, 0x6c, 0x61, 0x67, 0x70, 0x71, 0x6f, 0x76, 0x7e, 0x7b, 0x78, 0x6e, 0x65, 0x65, 0x6b, 0x6f, 0x71, 0x73, 0x72, 0x71, 0x6a, 0x60, 0x5b, 0x5c, 0x5c, 0x59, 0x5b, 0x6a, 0x77, 0x7c, 0x7d, 0x7e, 0x7b, 0x76, 0x7b, 0x7d, 0x85, 0x7b, 0x6f, 0x6a, 0x64, 0x69, 0x75, 0x77, 0x78, 0x75, 0x71, 0x6d, 0x6a, 0x67, 0x70, 0x75, 0x7c, 0x81, 0x86, 0x8b, 0x8c, 0x8b, 0x7c, 0x77, 0x7c, 0x87, 0x88, 0x8b, 0x93, 0xaf, 0xba, 0xb9, 0xba, 0xbc, 0xbd, 0xbd, 0xc1, 0xc6, 0xc7, 0xc8, 0xc8, 0xc9, 0xcb, 0xcc, 0xcd, 0xcd, 0xca, 0xc9, 0xc9, 0xc8, 0xc7, 0xc6, 0xc5, 0xc5, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xbf, 0xba, 0xbb, 0xbc, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbf, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb8, 0xb5, 0xb4, 0xb3, 0xb4, 0xb4, 0xb4, 0xb3, 0xb2, 0xb0, 0xb2, 0xb4, 0xb5, 0xb4, 0xb2, 0xb0, 0xad, 0xa8, 0xa6, 0xa6, 0xa6, 0xa6, 0xa5, 0xa6, 0xa4, 0xa1, 0xa0, 0x9f, 0x9c, 0x98, 0x94, 0x8b, 0x86, 0x80, 0x81, 0x85, 0x87, 0x85, 0x81, 0x6e, 0x66, 0xae, 0xcb, 0xc8, 0xc5, 0xbe, 0xba, 0xb8, 0xb8, 0xbb, 0xc0, 0xc6, 0xc9, 0xc9, 0xc7, 0xc2, 0xbc, 0xb8, 0xb8, 0xb8, 0xb6, 0xb3, 0xb3, 0xb5, 0xb3, 0xaf, 0xab, 0xac, 0xb7, 0xc7, 0xd4, 0xd4, 0xd6, 0xd8, 0xda, 0xda, 0xd9, 0xd8, 0xd8, 0xd4, 0xd4, 0xd1, 0xcc, 0xca, 0xca, 0xc5, 0xc0, 0xbb, 0xb5, 0xb1, 0xb0, 0xb2, 0xb4, 0xb9, 0xbe, 0xc4, 0xcf, 0xd7, 0xd8, 0xdb, 0xe0, 0xe2, 0xdf, 0xdc, 0xe1, 0xe3, 0xe1, 0xdf, 0xdf, 0xe0, 0xe0, 0xe0, 0xe0, 0xe2, 0xe3, 0xe0, 0xdb, 0xda, 0xdc, 0xd9, 0xd5, 0xd7, 0xcf, 0xd0, 0xd6, 0xcf, 0xce, 0xd2, 0xd1, 0xd1, 0xd2, 0xd0, 0xcd, 0xcd, 0xd0, 0xd6, 0xd5, 0xd3, 0xd1, 0xd0, 0xd0, 0xd1, 0xd2, 0xd7, 0xd7, 0xd6, 0xd5, 0xd6, 0xd6, 0xd6, 0xd5, 0xd6, 0xd6, 0xd6, 0xd6, 0xda, 0xde, 0xe0, 0xe0, 0xd9, 0xda, 0xdb, 0xdc, 0xde, 0xde, 0xd9, 0xd4, 0xda, 0xdc, 0xdc, 0xdb, 0xdc, 0xdd, 0xdd, 0xdb, 0xdd, 0xdd, 0xdd, 0xdb, 0xd9, 0xd7, 0xd4, 0xd3, 0xd2, 0xd0, 0xce, 0xcb, 0xc8, 0xc6, 0xc5, 0xc6, 0xc5, 0xca, 0xc5, 0xd0, 0xc2, 0xc0, 0xc0, 0xc3, 0xbb, 0xb4, 0xa5, 0xa2, 0x9e, 0x90, 0x8b, 0x8e, 0x93, 0x8f, 0x86, 0x78, 0x6b, 0x66, 0x67, 0x6a, 0x6e, 0x70, 0x74, 0x76, 0x77, 0x77, 0x78, 0x79, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x67, 0x66, 0x63, 0x62, 0x60, 0x5d, 0x5a, 0x58, 0x55, 0x53, 0x4f, 0x4b, 0x48, 0x45, 0x41, 0x3f, 0x38, 0x39, 0x38, 0x34, 0x31, 0x3a, 0x4d, 0x5f, 0x63, 0x5f, 0x5e, 0x62, 0x66, 0x6a, 0x6e, 0x73, 0x72, 0x73, 0x71, 0x6a, 0x63, 0x65, 0x6f, 0x79, 0x70, 0x6d, 0x6a, 0x60, 0x50, 0x47, 0x43, 0x3d, 0x2a, 0x42, 0x68, 0x85, 0x86, 0x77, 0x74, 0x7b, 0x7b, 0x69, 0x53, 0x42, 0x36, 0x2d, 0x2c, 0x2e, 0x2b, 0x29, 0x3b, 0x51, 0x4e, 0x3f, 0x3d, 0x43, 0x59, 0x57, 0x5f, 0x68, 0x69, 0x6a, 0x6f, 0x70, 0x77, 0x75, 0x75, 0x76, 0x72, 0x64, 0x54, 0x49, 0x48, 0x4a, 0x4e, 0x4e, 0x49, 0x40, 0x3a, 0x39, 0x3c, 0x2c, 0x2b, 0x33, 0x37, 0x3d, 0x40, 0x39, 0x36, 0x47, 0x59, 0x5b, 0x4d, 0x3c, 0x31, 0x2e, 0x33, 0x38, 0x40, 0x46, 0x4d, 0x58, 0x67, 0x71, 0x75, 0x70, 0x6e, 0x65, 0x66, 0x86, 0x99, 0x8a, 0x5e, 0x3c, 0x37, 0x3f, 0x3e, 0x3b, 0x46, 0x60, 0x7c, 0x82, 0x6b, 0x59, 0x7b, 0xa5, 0xa4, 0x8e, 0x5d, 0x63, 0x70, 0x87, 0xa0, 0xaa, 0x9f, 0x8f, 0x71, 0x5d, 0x55, 0x6b, 0x87, 0x83, 0x5d, 0x37, 0x36, 0x53, 0x61, 0x51, 0x43, 0x4c, 0x5c, 0x61, 0x6b, 0x61, 0x5c, 0x64, 0x6e, 0x70, 0x6c, 0x69, 0x63, 0x68, 0x6c, 0x6d, 0x6c, 0x6f, 0x78, 0x7f, 0x77, 0x77, 0x78, 0x77, 0x73, 0x6f, 0x71, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x6b, 0x66, 0x63, 0x61, 0x61, 0x63, 0x68, 0x6e, 0x6f, 0x76, 0x77, 0x75, 0x74, 0x70, 0x6d, 0x72, 0x77, 0x77, 0x78, 0x76, 0x6d, 0x63, 0x64, 0x6a, 0x6e, 0x6a, 0x67, 0x65, 0x61, 0x5b, 0x57, 0x56, 0x57, 0x54, 0x56, 0x5e, 0x65, 0x66, 0x62, 0x5f, 0x5a, 0x67, 0x6d, 0x6c, 0x68, 0x62, 0x65, 0x73, 0x6e, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x65, 0x60, 0x72, 0x78, 0x79, 0x77, 0x78, 0x7a, 0x74, 0x6a, 0x68, 0x69, 0x6b, 0x70, 0x75, 0x75, 0x70, 0x6b, 0x5f, 0x64, 0x65, 0x70, 0x6b, 0x6d, 0x65, 0x67, 0x5e, 0x63, 0x6d, 0x70, 0x6f, 0x75, 0x77, 0x70, 0x67, 0x66, 0x67, 0x6c, 0x70, 0x72, 0x76, 0x79, 0x77, 0x76, 0x71, 0x67, 0x5d, 0x58, 0x59, 0x5c, 0x5c, 0x6a, 0x75, 0x77, 0x75, 0x76, 0x79, 0x7a, 0x7b, 0x7a, 0x80, 0x7d, 0x78, 0x73, 0x65, 0x62, 0x70, 0x72, 0x6e, 0x65, 0x63, 0x68, 0x69, 0x65, 0x63, 0x66, 0x6a, 0x6d, 0x71, 0x74, 0x74, 0x72, 0x79, 0x79, 0x7e, 0x88, 0x8c, 0x85, 0x9c, 0xb1, 0xb8, 0xb7, 0xbb, 0xc0, 0xbe, 0xb9, 0xbd, 0xc5, 0xc8, 0xc8, 0xc7, 0xc7, 0xc8, 0xca, 0xcc, 0xcd, 0xc8, 0xc9, 0xc9, 0xca, 0xc8, 0xc6, 0xc3, 0xc2, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xbe, 0xba, 0xbb, 0xbe, 0xc0, 0xc2, 0xc2, 0xc1, 0xc0, 0xbf, 0xbe, 0xbe, 0xbd, 0xbc, 0xbb, 0xba, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb7, 0xb8, 0xb8, 0xb7, 0xb5, 0xb3, 0xb2, 0xb2, 0xb1, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xaf, 0xb1, 0xb3, 0xb5, 0xb6, 0xb2, 0xb0, 0xad, 0xaa, 0xa9, 0xa8, 0xa9, 0xa9, 0xa4, 0xa2, 0xa0, 0x9e, 0x9c, 0x99, 0x93, 0x8f, 0x87, 0x83, 0x7f, 0x7f, 0x81, 0x83, 0x81, 0x7f, 0x6d, 0x5f, 0xa4, 0xc5, 0xc6, 0xc1, 0xba, 0xb6, 0xb2, 0xad, 0xaa, 0xad, 0xb4, 0xb9, 0xb8, 0xb5, 0xb4, 0xb2, 0xb1, 0xb0, 0xae, 0xad, 0xaf, 0xb3, 0xb0, 0xb1, 0xad, 0xa9, 0xae, 0xbe, 0xce, 0xd6, 0xd3, 0xd4, 0xd6, 0xd7, 0xd7, 0xd7, 0xd5, 0xd5, 0xd1, 0xd0, 0xcc, 0xc9, 0xc8, 0xc6, 0xc0, 0xba, 0xb4, 0xb0, 0xae, 0xb1, 0xb5, 0xb9, 0xbc, 0xc0, 0xc4, 0xce, 0xd6, 0xd9, 0xdc, 0xe1, 0xe2, 0xdf, 0xdd, 0xe1, 0xe3, 0xe2, 0xe1, 0xe2, 0xe3, 0xe2, 0xe0, 0xdf, 0xe1, 0xe5, 0xe3, 0xdd, 0xda, 0xdc, 0xd8, 0xd5, 0xde, 0xdc, 0xd6, 0xd1, 0xce, 0xd9, 0xd5, 0xd2, 0xd2, 0xd4, 0xd3, 0xd1, 0xce, 0xcf, 0xd4, 0xd3, 0xd2, 0xd1, 0xd1, 0xd1, 0xd2, 0xd2, 0xcb, 0xc9, 0xc8, 0xca, 0xcf, 0xd3, 0xd5, 0xd6, 0xdc, 0xd8, 0xd5, 0xd5, 0xd5, 0xd4, 0xd5, 0xd6, 0xda, 0xd9, 0xda, 0xdb, 0xdc, 0xdc, 0xde, 0xe2, 0xde, 0xde, 0xdc, 0xdb, 0xdd, 0xe0, 0xdf, 0xdc, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd4, 0xd3, 0xd4, 0xd4, 0xd2, 0xcc, 0xca, 0xcb, 0xcc, 0xca, 0xca, 0xcc, 0xc8, 0xc8, 0xc3, 0xbc, 0xa6, 0xab, 0xb8, 0xc0, 0xac, 0xa8, 0xa6, 0x95, 0x93, 0x91, 0x95, 0x8e, 0x83, 0x77, 0x6d, 0x68, 0x69, 0x6b, 0x6e, 0x70, 0x73, 0x75, 0x76, 0x76, 0x77, 0x78, 0x75, 0x75, 0x74, 0x75, 0x74, 0x73, 0x70, 0x6e, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5d, 0x5a, 0x57, 0x55, 0x52, 0x4f, 0x4b, 0x48, 0x45, 0x42, 0x3e, 0x3c, 0x36, 0x38, 0x36, 0x31, 0x36, 0x4a, 0x60, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x6c, 0x70, 0x70, 0x72, 0x72, 0x6e, 0x6a, 0x69, 0x6b, 0x6e, 0x76, 0x76, 0x74, 0x66, 0x52, 0x48, 0x42, 0x38, 0x32, 0x5f, 0x8b, 0x95, 0x88, 0x82, 0x88, 0x90, 0x8d, 0x82, 0x75, 0x6b, 0x62, 0x56, 0x4a, 0x42, 0x3a, 0x27, 0x25, 0x31, 0x35, 0x36, 0x41, 0x4d, 0x51, 0x3b, 0x30, 0x34, 0x39, 0x43, 0x54, 0x5f, 0x70, 0x77, 0x7b, 0x70, 0x5d, 0x56, 0x63, 0x75, 0x6d, 0x67, 0x62, 0x64, 0x62, 0x56, 0x44, 0x37, 0x1e, 0x19, 0x1d, 0x29, 0x35, 0x3f, 0x3d, 0x2f, 0x2f, 0x46, 0x58, 0x52, 0x3f, 0x32, 0x30, 0x32, 0x43, 0x49, 0x4e, 0x51, 0x53, 0x5a, 0x66, 0x70, 0x66, 0x65, 0x71, 0x7e, 0x85, 0x93, 0x98, 0x8b, 0x72, 0x56, 0x46, 0x34, 0x28, 0x2e, 0x3a, 0x4b, 0x74, 0x87, 0x89, 0x8a, 0x91, 0x81, 0x64, 0x59, 0x7f, 0x8c, 0xa0, 0xae, 0xa5, 0x85, 0x5f, 0x46, 0x32, 0x37, 0x45, 0x55, 0x5b, 0x4e, 0x37, 0x27, 0x28, 0x2a, 0x3c, 0x56, 0x61, 0x62, 0x74, 0x8d, 0x6c, 0x64, 0x60, 0x66, 0x70, 0x73, 0x71, 0x6e, 0x68, 0x67, 0x64, 0x63, 0x64, 0x6b, 0x73, 0x79, 0x7d, 0x79, 0x75, 0x72, 0x6e, 0x69, 0x66, 0x66, 0x6d, 0x73, 0x78, 0x74, 0x6a, 0x65, 0x6c, 0x78, 0x6a, 0x64, 0x5e, 0x5e, 0x60, 0x63, 0x66, 0x69, 0x69, 0x72, 0x75, 0x74, 0x74, 0x70, 0x70, 0x76, 0x77, 0x75, 0x73, 0x6e, 0x66, 0x5f, 0x60, 0x65, 0x6a, 0x65, 0x60, 0x5b, 0x59, 0x57, 0x57, 0x58, 0x60, 0x5c, 0x5a, 0x5d, 0x62, 0x64, 0x62, 0x5f, 0x5d, 0x63, 0x65, 0x61, 0x5d, 0x5f, 0x68, 0x72, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x6c, 0x66, 0x6c, 0x74, 0x73, 0x69, 0x65, 0x6c, 0x6e, 0x6a, 0x67, 0x69, 0x6c, 0x71, 0x74, 0x72, 0x6b, 0x65, 0x5e, 0x66, 0x6a, 0x73, 0x6b, 0x6d, 0x66, 0x69, 0x65, 0x67, 0x6e, 0x72, 0x71, 0x73, 0x71, 0x68, 0x65, 0x64, 0x65, 0x68, 0x6c, 0x70, 0x76, 0x7c, 0x79, 0x77, 0x74, 0x6c, 0x60, 0x5a, 0x60, 0x69, 0x62, 0x6a, 0x6f, 0x6e, 0x6d, 0x70, 0x76, 0x7a, 0x7b, 0x78, 0x80, 0x81, 0x7f, 0x79, 0x67, 0x61, 0x69, 0x6b, 0x6a, 0x67, 0x68, 0x69, 0x65, 0x5f, 0x66, 0x6a, 0x6d, 0x6f, 0x71, 0x73, 0x71, 0x6d, 0x6b, 0x6e, 0x73, 0x78, 0x7c, 0x75, 0xa1, 0xb4, 0xb5, 0xb3, 0xb8, 0xbe, 0xbb, 0xb5, 0xb9, 0xc3, 0xc6, 0xc5, 0xc4, 0xc5, 0xc6, 0xc9, 0xcb, 0xcd, 0xcb, 0xcb, 0xcc, 0xcb, 0xca, 0xc7, 0xc5, 0xc3, 0xbf, 0xbe, 0xbd, 0xbc, 0xbb, 0xba, 0xba, 0xb9, 0xbb, 0xbc, 0xbe, 0xc0, 0xc1, 0xc1, 0xc0, 0xc0, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbb, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb5, 0xb3, 0xb1, 0xb0, 0xad, 0xaa, 0xa8, 0xaa, 0xaa, 0xab, 0xab, 0xac, 0xae, 0xb2, 0xb5, 0xae, 0xaf, 0xaf, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xa6, 0xa3, 0xa0, 0x9e, 0x9a, 0x95, 0x8e, 0x88, 0x82, 0x7f, 0x7d, 0x7d, 0x7f, 0x81, 0x80, 0x7f, 0x6c, 0x5b, 0xa0, 0xc2, 0xc3, 0xbd, 0xb7, 0xb7, 0xb3, 0xae, 0xaa, 0xab, 0xb0, 0xb2, 0xb0, 0xac, 0xae, 0xaf, 0xaf, 0xae, 0xac, 0xab, 0xad, 0xb0, 0xad, 0xaf, 0xab, 0xa7, 0xb1, 0xc5, 0xd4, 0xd8, 0xd3, 0xd3, 0xd3, 0xd4, 0xd4, 0xd4, 0xd3, 0xd1, 0xce, 0xcb, 0xc7, 0xc5, 0xc4, 0xc0, 0xb9, 0xb3, 0xad, 0xaa, 0xab, 0xb1, 0xb7, 0xbb, 0xbd, 0xbf, 0xc2, 0xca, 0xd1, 0xd4, 0xd8, 0xdc, 0xde, 0xdd, 0xdb, 0xde, 0xe1, 0xe0, 0xe0, 0xe3, 0xe4, 0xe4, 0xe4, 0xdf, 0xdd, 0xdf, 0xe0, 0xdc, 0xd8, 0xd6, 0xdd, 0xce, 0xcb, 0xcc, 0xd4, 0xd9, 0xd0, 0xcf, 0xd7, 0xd3, 0xd2, 0xd5, 0xd6, 0xd4, 0xd0, 0xce, 0xd3, 0xd3, 0xd3, 0xd2, 0xd1, 0xd0, 0xcf, 0xce, 0xd1, 0xce, 0xcc, 0xcd, 0xd0, 0xd2, 0xd5, 0xd7, 0xd3, 0xd1, 0xd2, 0xd6, 0xd7, 0xd4, 0xd5, 0xd8, 0xd6, 0xd5, 0xd6, 0xd6, 0xd3, 0xd1, 0xd8, 0xe0, 0xdd, 0xdc, 0xd9, 0xd7, 0xd9, 0xdc, 0xdb, 0xd7, 0xda, 0xda, 0xda, 0xd9, 0xd8, 0xd6, 0xd5, 0xd4, 0xc8, 0xd0, 0xd3, 0xcf, 0xce, 0xd2, 0xd0, 0xca, 0xcb, 0xc8, 0xc5, 0xc3, 0xc9, 0xab, 0x6a, 0x5c, 0x95, 0xb5, 0xae, 0xaa, 0xa8, 0x99, 0x98, 0x90, 0x95, 0x8b, 0x7f, 0x75, 0x6e, 0x6a, 0x69, 0x6a, 0x6e, 0x71, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x6f, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x67, 0x66, 0x66, 0x65, 0x62, 0x61, 0x5e, 0x5c, 0x5a, 0x57, 0x54, 0x52, 0x4e, 0x4b, 0x47, 0x44, 0x41, 0x3f, 0x3c, 0x3a, 0x39, 0x36, 0x33, 0x35, 0x43, 0x59, 0x6a, 0x72, 0x6c, 0x69, 0x68, 0x67, 0x67, 0x68, 0x6e, 0x74, 0x7b, 0x74, 0x6b, 0x64, 0x62, 0x64, 0x69, 0x6c, 0x6f, 0x73, 0x75, 0x67, 0x4f, 0x3f, 0x31, 0x21, 0x50, 0x70, 0x89, 0x89, 0x85, 0x8e, 0x98, 0x99, 0x96, 0x90, 0x80, 0x6e, 0x65, 0x62, 0x58, 0x4b, 0x33, 0x25, 0x22, 0x2d, 0x3a, 0x48, 0x50, 0x4f, 0x49, 0x4a, 0x5b, 0x6e, 0x70, 0x6b, 0x68, 0x65, 0x53, 0x52, 0x51, 0x50, 0x52, 0x59, 0x69, 0x77, 0x6b, 0x5e, 0x52, 0x50, 0x51, 0x49, 0x3a, 0x2d, 0x31, 0x29, 0x22, 0x1f, 0x20, 0x23, 0x24, 0x21, 0x34, 0x4c, 0x59, 0x4a, 0x34, 0x2e, 0x37, 0x40, 0x43, 0x51, 0x66, 0x79, 0x84, 0x86, 0x84, 0x81, 0x70, 0x5c, 0x4f, 0x4e, 0x57, 0x70, 0x89, 0x8f, 0x86, 0x74, 0x6d, 0x62, 0x5a, 0x5c, 0x55, 0x52, 0x6b, 0x87, 0x95, 0x8b, 0x6b, 0x45, 0x53, 0x8d, 0xa4, 0x9d, 0x91, 0x7c, 0x59, 0x35, 0x23, 0x22, 0x21, 0x29, 0x32, 0x34, 0x30, 0x2e, 0x37, 0x42, 0x55, 0x4d, 0x4c, 0x5c, 0x71, 0x79, 0x70, 0x64, 0x6c, 0x68, 0x66, 0x68, 0x6c, 0x6e, 0x6d, 0x6d, 0x78, 0x76, 0x76, 0x7c, 0x83, 0x86, 0x82, 0x7d, 0x77, 0x72, 0x6e, 0x6f, 0x70, 0x6c, 0x68, 0x65, 0x6a, 0x68, 0x68, 0x6a, 0x6b, 0x6c, 0x70, 0x75, 0x65, 0x5c, 0x56, 0x58, 0x5d, 0x5e, 0x5c, 0x5a, 0x60, 0x6b, 0x70, 0x6f, 0x6d, 0x6a, 0x6b, 0x74, 0x74, 0x6f, 0x69, 0x65, 0x61, 0x5e, 0x5e, 0x5f, 0x5d, 0x5b, 0x57, 0x54, 0x54, 0x59, 0x5f, 0x63, 0x62, 0x60, 0x5d, 0x5d, 0x5f, 0x61, 0x61, 0x5f, 0x64, 0x60, 0x5d, 0x5d, 0x62, 0x6b, 0x6d, 0x67, 0x68, 0x69, 0x6b, 0x6e, 0x71, 0x71, 0x6c, 0x64, 0x62, 0x66, 0x62, 0x59, 0x5d, 0x69, 0x6d, 0x68, 0x61, 0x66, 0x6c, 0x70, 0x70, 0x6d, 0x6a, 0x68, 0x5f, 0x68, 0x6a, 0x72, 0x6b, 0x6f, 0x69, 0x6a, 0x6e, 0x6c, 0x70, 0x73, 0x73, 0x74, 0x72, 0x69, 0x67, 0x63, 0x61, 0x64, 0x68, 0x6e, 0x74, 0x79, 0x7a, 0x78, 0x74, 0x6a, 0x5f, 0x5a, 0x62, 0x6d, 0x69, 0x69, 0x69, 0x67, 0x69, 0x6f, 0x74, 0x77, 0x77, 0x72, 0x7b, 0x7e, 0x81, 0x81, 0x78, 0x79, 0x79, 0x72, 0x6e, 0x6f, 0x6f, 0x68, 0x60, 0x5c, 0x63, 0x69, 0x6e, 0x70, 0x70, 0x70, 0x6e, 0x6a, 0x68, 0x70, 0x77, 0x76, 0x76, 0x79, 0xad, 0xbe, 0xb5, 0xb4, 0xb7, 0xbd, 0xbc, 0xb7, 0xba, 0xc2, 0xc6, 0xc6, 0xc6, 0xc6, 0xc8, 0xca, 0xcc, 0xcd, 0xcf, 0xcf, 0xce, 0xcc, 0xca, 0xc8, 0xc7, 0xc6, 0xc2, 0xc1, 0xbf, 0xbd, 0xba, 0xb9, 0xb8, 0xb7, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb, 0xbc, 0xbc, 0xbc, 0xbd, 0xbd, 0xbd, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xb7, 0xba, 0xb8, 0xb7, 0xb5, 0xb3, 0xb0, 0xac, 0xa9, 0xa8, 0xa9, 0xa9, 0xa8, 0xa7, 0xa9, 0xad, 0xb1, 0xaf, 0xb1, 0xb3, 0xb4, 0xb2, 0xaf, 0xad, 0xab, 0xa6, 0xa4, 0xa1, 0x9e, 0x9a, 0x95, 0x8d, 0x88, 0x84, 0x82, 0x80, 0x80, 0x82, 0x83, 0x83, 0x81, 0x6f, 0x60, 0xa5, 0xc5, 0xc1, 0xb9, 0xb6, 0xba, 0xad, 0xab, 0xa9, 0xa8, 0xa9, 0xab, 0xab, 0xac, 0xad, 0xad, 0xad, 0xad, 0xac, 0xac, 0xaa, 0xa8, 0xab, 0xac, 0xa8, 0xa7, 0xb4, 0xc9, 0xd6, 0xd7, 0xd3, 0xd2, 0xd0, 0xd0, 0xd1, 0xd1, 0xcf, 0xce, 0xcb, 0xc7, 0xc3, 0xc1, 0xbe, 0xb9, 0xb3, 0xae, 0xa9, 0xa8, 0xab, 0xb3, 0xb9, 0xbc, 0xbf, 0xc1, 0xc4, 0xc8, 0xcc, 0xcf, 0xd3, 0xd8, 0xdb, 0xdb, 0xd9, 0xdb, 0xdd, 0xdc, 0xdc, 0xde, 0xde, 0xdd, 0xe1, 0xdf, 0xda, 0xd5, 0xd5, 0xd8, 0xda, 0xd9, 0xcf, 0xd2, 0xd6, 0xcd, 0xd0, 0xe0, 0xdd, 0xd9, 0xd7, 0xd3, 0xd2, 0xd5, 0xd7, 0xd4, 0xd0, 0xce, 0xcf, 0xd0, 0xd2, 0xd3, 0xd2, 0xd0, 0xce, 0xcc, 0xcc, 0xcd, 0xd0, 0xd6, 0xd8, 0xd7, 0xd8, 0xdb, 0xe2, 0xe1, 0xe1, 0xe2, 0xdf, 0xdc, 0xdb, 0xdd, 0xde, 0xda, 0xd7, 0xd8, 0xd7, 0xd4, 0xd1, 0xd0, 0xc9, 0xc8, 0xc4, 0xc2, 0xc3, 0xc6, 0xc4, 0xc0, 0xb4, 0xb2, 0xb0, 0xad, 0xaa, 0xa7, 0xa4, 0xa3, 0xaf, 0xc2, 0xd0, 0xcf, 0xce, 0xd2, 0xcc, 0xc1, 0xbd, 0xbb, 0xbe, 0xbf, 0xc5, 0x92, 0x42, 0x30, 0x6d, 0x98, 0xa3, 0xa1, 0x9c, 0x97, 0x98, 0x8f, 0x91, 0x87, 0x7b, 0x74, 0x6f, 0x6b, 0x69, 0x6a, 0x6f, 0x71, 0x74, 0x76, 0x76, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x72, 0x6f, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x65, 0x64, 0x63, 0x63, 0x60, 0x5e, 0x5c, 0x5a, 0x57, 0x55, 0x51, 0x4f, 0x4b, 0x48, 0x44, 0x41, 0x3e, 0x3c, 0x3a, 0x39, 0x38, 0x34, 0x37, 0x47, 0x5b, 0x69, 0x6f, 0x72, 0x75, 0x6e, 0x69, 0x6a, 0x6d, 0x71, 0x75, 0x79, 0x6f, 0x6a, 0x63, 0x61, 0x63, 0x66, 0x67, 0x66, 0x76, 0x75, 0x73, 0x65, 0x50, 0x44, 0x3d, 0x32, 0x44, 0x5c, 0x72, 0x79, 0x7d, 0x85, 0x8c, 0x8d, 0x93, 0x8b, 0x81, 0x7b, 0x7a, 0x7b, 0x7a, 0x78, 0x74, 0x73, 0x6f, 0x63, 0x58, 0x54, 0x48, 0x34, 0x35, 0x52, 0x7b, 0x91, 0x89, 0x7a, 0x6b, 0x5e, 0x58, 0x5e, 0x69, 0x75, 0x79, 0x75, 0x6d, 0x69, 0x64, 0x59, 0x49, 0x37, 0x27, 0x1e, 0x1f, 0x23, 0x36, 0x33, 0x33, 0x38, 0x39, 0x31, 0x2b, 0x2c, 0x3b, 0x4c, 0x52, 0x40, 0x2b, 0x28, 0x34, 0x3e, 0x39, 0x35, 0x35, 0x3e, 0x50, 0x63, 0x70, 0x75, 0x6e, 0x6f, 0x70, 0x6e, 0x6f, 0x7a, 0x88, 0x8c, 0x98, 0x77, 0x67, 0x62, 0x67, 0x70, 0x6b, 0x69, 0x72, 0x84, 0x7f, 0x6a, 0x64, 0x67, 0x79, 0x95, 0x8a, 0x76, 0x60, 0x4c, 0x39, 0x2b, 0x2e, 0x39, 0x34, 0x40, 0x52, 0x62, 0x6a, 0x71, 0x7b, 0x85, 0x85, 0x7d, 0x76, 0x74, 0x6d, 0x5c, 0x45, 0x36, 0x62, 0x63, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x6e, 0x6e, 0x72, 0x7d, 0x89, 0x8d, 0x87, 0x7f, 0x72, 0x6f, 0x6e, 0x70, 0x71, 0x6e, 0x6b, 0x69, 0x65, 0x63, 0x61, 0x63, 0x67, 0x6a, 0x6b, 0x6a, 0x62, 0x5b, 0x58, 0x5d, 0x63, 0x62, 0x5c, 0x57, 0x5c, 0x67, 0x6c, 0x6b, 0x6b, 0x68, 0x6a, 0x72, 0x73, 0x6c, 0x63, 0x5f, 0x5f, 0x60, 0x5e, 0x5c, 0x60, 0x61, 0x60, 0x5e, 0x5f, 0x63, 0x67, 0x68, 0x5c, 0x5d, 0x5f, 0x60, 0x63, 0x66, 0x66, 0x63, 0x60, 0x63, 0x68, 0x67, 0x63, 0x68, 0x69, 0x5e, 0x5f, 0x60, 0x61, 0x61, 0x63, 0x64, 0x5e, 0x58, 0x5d, 0x5a, 0x55, 0x59, 0x69, 0x77, 0x74, 0x68, 0x61, 0x67, 0x6c, 0x6d, 0x69, 0x65, 0x64, 0x65, 0x6f, 0x77, 0x77, 0x7f, 0x79, 0x7f, 0x78, 0x78, 0x70, 0x6c, 0x6f, 0x73, 0x73, 0x75, 0x75, 0x6e, 0x68, 0x65, 0x64, 0x69, 0x6e, 0x71, 0x75, 0x77, 0x7f, 0x7d, 0x76, 0x6a, 0x5f, 0x5c, 0x62, 0x69, 0x6b, 0x68, 0x65, 0x67, 0x6c, 0x72, 0x74, 0x74, 0x6e, 0x68, 0x70, 0x76, 0x7f, 0x88, 0x8a, 0x95, 0x90, 0x7f, 0x71, 0x6f, 0x6f, 0x69, 0x65, 0x66, 0x6c, 0x72, 0x75, 0x72, 0x6c, 0x67, 0x63, 0x61, 0x66, 0x70, 0x7a, 0x75, 0x71, 0x86, 0xb1, 0xbb, 0xb9, 0xb9, 0xbb, 0xbf, 0xc1, 0xbf, 0xbe, 0xbf, 0xc5, 0xc6, 0xc8, 0xc9, 0xcb, 0xcc, 0xcc, 0xcc, 0xce, 0xcc, 0xca, 0xc7, 0xc5, 0xc4, 0xc3, 0xc3, 0xc6, 0xc4, 0xc2, 0xbf, 0xbc, 0xbb, 0xba, 0xba, 0xbb, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb8, 0xb8, 0xbb, 0xbb, 0xbb, 0xbb, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xb8, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb7, 0xb6, 0xb6, 0xb5, 0xb3, 0xb0, 0xae, 0xa9, 0xa9, 0xa9, 0xa7, 0xa6, 0xa7, 0xaa, 0xac, 0xb1, 0xb2, 0xb4, 0xb5, 0xb3, 0xaf, 0xaa, 0xa7, 0xa5, 0xa3, 0xa0, 0x9e, 0x9c, 0x98, 0x92, 0x8e, 0x88, 0x85, 0x81, 0x81, 0x83, 0x84, 0x81, 0x7e, 0x73, 0x67, 0xac, 0xc6, 0xbd, 0xb6, 0xb4, 0xb8, 0xb2, 0xb1, 0xac, 0xa7, 0xa4, 0xa4, 0xa7, 0xab, 0xac, 0xad, 0xad, 0xac, 0xac, 0xac, 0xa8, 0xa3, 0xa8, 0xa7, 0xa6, 0xab, 0xbb, 0xcd, 0xd5, 0xd4, 0xd2, 0xd0, 0xcd, 0xcd, 0xcd, 0xcd, 0xcc, 0xca, 0xc8, 0xc3, 0xbf, 0xbc, 0xb7, 0xb1, 0xac, 0xaa, 0xac, 0xae, 0xb3, 0xbb, 0xc0, 0xc3, 0xc6, 0xc9, 0xcd, 0xce, 0xd0, 0xd3, 0xd6, 0xda, 0xdd, 0xdf, 0xdc, 0xdd, 0xdd, 0xda, 0xd9, 0xda, 0xda, 0xd8, 0xd5, 0xda, 0xd9, 0xd2, 0xd3, 0xdb, 0xdd, 0xd7, 0xcc, 0xca, 0xd8, 0xdf, 0xde, 0xd6, 0xcb, 0xd0, 0xd9, 0xd5, 0xd4, 0xd6, 0xd8, 0xd7, 0xd4, 0xd2, 0xcd, 0xce, 0xd0, 0xd2, 0xd2, 0xd1, 0xd0, 0xcf, 0xd4, 0xd3, 0xd7, 0xde, 0xdf, 0xda, 0xd7, 0xd7, 0xd5, 0xd4, 0xd1, 0xcd, 0xcb, 0xca, 0xc5, 0xc0, 0xb1, 0xab, 0xa3, 0x9f, 0xa3, 0xa5, 0xa0, 0x99, 0x9d, 0x9c, 0x9a, 0x97, 0x98, 0x99, 0x97, 0x94, 0x9b, 0x9a, 0x99, 0x98, 0x96, 0x95, 0x93, 0x93, 0x9a, 0xb8, 0xce, 0xcf, 0xce, 0xd0, 0xc8, 0xb8, 0xb0, 0xb0, 0xb2, 0xb0, 0xb1, 0x82, 0x60, 0x6e, 0x72, 0x88, 0x9d, 0x9d, 0x95, 0x96, 0x95, 0x91, 0x8d, 0x82, 0x78, 0x74, 0x70, 0x6b, 0x69, 0x6a, 0x6f, 0x71, 0x74, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x75, 0x74, 0x74, 0x73, 0x71, 0x6e, 0x6c, 0x69, 0x68, 0x67, 0x65, 0x63, 0x61, 0x60, 0x60, 0x5e, 0x5c, 0x59, 0x57, 0x55, 0x52, 0x4e, 0x4c, 0x48, 0x45, 0x41, 0x3e, 0x3c, 0x3a, 0x39, 0x37, 0x35, 0x37, 0x46, 0x5f, 0x74, 0x7a, 0x76, 0x73, 0x7b, 0x73, 0x6e, 0x70, 0x76, 0x79, 0x79, 0x78, 0x66, 0x65, 0x67, 0x6c, 0x70, 0x6e, 0x66, 0x5f, 0x6c, 0x67, 0x65, 0x5e, 0x4f, 0x47, 0x43, 0x3d, 0x3b, 0x3e, 0x42, 0x48, 0x52, 0x5d, 0x64, 0x68, 0x7e, 0x7a, 0x7b, 0x7a, 0x6d, 0x60, 0x66, 0x78, 0x95, 0x91, 0x86, 0x75, 0x6a, 0x69, 0x5b, 0x41, 0x32, 0x4a, 0x67, 0x6f, 0x67, 0x68, 0x71, 0x74, 0x6f, 0x70, 0x70, 0x69, 0x5c, 0x50, 0x4d, 0x50, 0x49, 0x46, 0x43, 0x42, 0x41, 0x43, 0x4a, 0x51, 0x51, 0x59, 0x62, 0x6b, 0x66, 0x4c, 0x34, 0x2f, 0x39, 0x41, 0x3f, 0x2f, 0x1f, 0x1b, 0x21, 0x26, 0x30, 0x2f, 0x30, 0x35, 0x3b, 0x3b, 0x35, 0x2f, 0x3d, 0x4a, 0x50, 0x4c, 0x4e, 0x62, 0x81, 0x97, 0x7d, 0x5a, 0x52, 0x64, 0x7e, 0x92, 0x93, 0x97, 0x91, 0x7f, 0x5e, 0x4c, 0x61, 0x7f, 0x84, 0x78, 0x66, 0x52, 0x42, 0x3f, 0x42, 0x3f, 0x3c, 0x3c, 0x4a, 0x57, 0x6a, 0x76, 0x78, 0x75, 0x77, 0x7b, 0x85, 0x78, 0x75, 0x79, 0x64, 0x3e, 0x2d, 0x34, 0x63, 0x66, 0x68, 0x69, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x73, 0x7d, 0x87, 0x8e, 0x8e, 0x8a, 0x85, 0x7b, 0x7a, 0x79, 0x76, 0x6d, 0x65, 0x62, 0x64, 0x63, 0x67, 0x64, 0x5a, 0x54, 0x57, 0x5b, 0x5d, 0x61, 0x5f, 0x62, 0x69, 0x6e, 0x6c, 0x68, 0x65, 0x5f, 0x67, 0x6a, 0x6b, 0x70, 0x6f, 0x6f, 0x74, 0x76, 0x6e, 0x62, 0x5c, 0x5c, 0x5f, 0x5f, 0x5e, 0x63, 0x63, 0x63, 0x62, 0x65, 0x68, 0x66, 0x62, 0x62, 0x62, 0x61, 0x62, 0x66, 0x6a, 0x66, 0x5f, 0x5a, 0x5f, 0x69, 0x6a, 0x67, 0x70, 0x72, 0x64, 0x65, 0x65, 0x62, 0x5e, 0x5e, 0x5e, 0x5c, 0x58, 0x58, 0x56, 0x58, 0x61, 0x71, 0x79, 0x72, 0x67, 0x64, 0x69, 0x6e, 0x6d, 0x68, 0x63, 0x62, 0x62, 0x69, 0x71, 0x72, 0x77, 0x6f, 0x74, 0x6b, 0x69, 0x6c, 0x68, 0x6c, 0x72, 0x72, 0x74, 0x75, 0x70, 0x6a, 0x69, 0x6a, 0x6e, 0x71, 0x72, 0x74, 0x76, 0x7e, 0x7e, 0x78, 0x6b, 0x62, 0x63, 0x66, 0x67, 0x66, 0x65, 0x67, 0x6d, 0x73, 0x76, 0x76, 0x74, 0x69, 0x62, 0x69, 0x71, 0x7b, 0x85, 0x89, 0x95, 0x90, 0x80, 0x6e, 0x66, 0x66, 0x67, 0x66, 0x63, 0x5d, 0x65, 0x6a, 0x67, 0x60, 0x5e, 0x60, 0x62, 0x67, 0x6d, 0x78, 0x70, 0x6b, 0x95, 0xb2, 0xb6, 0xba, 0xbc, 0xbe, 0xc0, 0xc5, 0xc6, 0xbe, 0xb5, 0xbb, 0xbe, 0xc2, 0xc7, 0xca, 0xca, 0xca, 0xca, 0xc9, 0xc8, 0xc6, 0xc3, 0xc1, 0xbf, 0xbe, 0xbe, 0xc2, 0xc1, 0xbf, 0xbd, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xb9, 0xb9, 0xb8, 0xb7, 0xb7, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbd, 0xbc, 0xb9, 0xb7, 0xb6, 0xb6, 0xb8, 0xb8, 0xb5, 0xb4, 0xb4, 0xb4, 0xb5, 0xb4, 0xb2, 0xb0, 0xac, 0xac, 0xab, 0xa9, 0xa8, 0xa8, 0xa9, 0xab, 0xa9, 0xa9, 0xaa, 0xad, 0xaf, 0xaf, 0xac, 0xa9, 0xa8, 0xa5, 0xa2, 0xa0, 0x9e, 0x9b, 0x96, 0x92, 0x88, 0x83, 0x7f, 0x7f, 0x83, 0x83, 0x7f, 0x7b, 0x71, 0x68, 0xac, 0xc1, 0xb8, 0xb4, 0xb3, 0xb4, 0xb8, 0xb7, 0xb3, 0xad, 0xa8, 0xa5, 0xa6, 0xa8, 0xa9, 0xaa, 0xaa, 0xa8, 0xa8, 0xaa, 0xa8, 0xa3, 0xa6, 0xa4, 0xa7, 0xb4, 0xc7, 0xd4, 0xd7, 0xd4, 0xd0, 0xcd, 0xc9, 0xc8, 0xc9, 0xca, 0xc8, 0xc6, 0xc4, 0xbf, 0xbb, 0xb7, 0xb0, 0xa8, 0xa5, 0xa7, 0xad, 0xb0, 0xb8, 0xc0, 0xc4, 0xc7, 0xcb, 0xd0, 0xd0, 0xd0, 0xd2, 0xd5, 0xd9, 0xda, 0xdc, 0xdd, 0xdd, 0xde, 0xdd, 0xda, 0xda, 0xdb, 0xda, 0xd8, 0xd1, 0xd8, 0xd7, 0xd3, 0xda, 0xdc, 0xc2, 0x9f, 0x7d, 0x6b, 0x74, 0x97, 0xc6, 0xe3, 0xe2, 0xe2, 0xd8, 0xd4, 0xd3, 0xd5, 0xd7, 0xd6, 0xd4, 0xd4, 0xd1, 0xd0, 0xd0, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd2, 0xc5, 0xb9, 0xb5, 0xb2, 0xaa, 0xa2, 0xa0, 0xa1, 0xa3, 0xa2, 0xa2, 0xa8, 0xab, 0x9e, 0x8c, 0x8e, 0x9d, 0xa7, 0xa5, 0xa3, 0xa6, 0xa9, 0xa8, 0xa1, 0xa3, 0xa3, 0xa1, 0xa0, 0xa1, 0xa0, 0x9e, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x92, 0xb7, 0xd2, 0xd1, 0xcc, 0xce, 0xc6, 0xb5, 0xaf, 0xb0, 0xaf, 0xac, 0xa4, 0x7a, 0x8e, 0xbe, 0x91, 0x7f, 0x97, 0xa0, 0x99, 0x99, 0x8f, 0x92, 0x88, 0x7e, 0x77, 0x75, 0x72, 0x6b, 0x69, 0x6b, 0x6e, 0x70, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x67, 0x66, 0x65, 0x63, 0x61, 0x5f, 0x5e, 0x5e, 0x5b, 0x59, 0x57, 0x54, 0x52, 0x4f, 0x4b, 0x48, 0x46, 0x43, 0x3f, 0x3b, 0x39, 0x38, 0x37, 0x36, 0x37, 0x44, 0x59, 0x6d, 0x7c, 0x82, 0x80, 0x7a, 0x6d, 0x67, 0x64, 0x6a, 0x73, 0x78, 0x7a, 0x7a, 0x77, 0x70, 0x69, 0x68, 0x6c, 0x70, 0x71, 0x6f, 0x6c, 0x66, 0x67, 0x66, 0x58, 0x46, 0x39, 0x30, 0x3f, 0x36, 0x2e, 0x31, 0x3f, 0x51, 0x5c, 0x60, 0x55, 0x57, 0x57, 0x55, 0x57, 0x64, 0x79, 0x8a, 0x94, 0x8b, 0x82, 0x7a, 0x75, 0x72, 0x61, 0x48, 0x29, 0x32, 0x44, 0x4c, 0x48, 0x4c, 0x59, 0x61, 0x65, 0x56, 0x46, 0x40, 0x44, 0x49, 0x4e, 0x52, 0x55, 0x4f, 0x4d, 0x50, 0x52, 0x4f, 0x48, 0x43, 0x45, 0x57, 0x5d, 0x53, 0x46, 0x37, 0x36, 0x44, 0x46, 0x3f, 0x34, 0x27, 0x1e, 0x1b, 0x1c, 0x1e, 0x3d, 0x41, 0x45, 0x43, 0x3b, 0x32, 0x2b, 0x27, 0x17, 0x1f, 0x23, 0x25, 0x33, 0x4d, 0x70, 0x8c, 0x7e, 0x4c, 0x2e, 0x2b, 0x3a, 0x4f, 0x5c, 0x6a, 0x5d, 0x52, 0x58, 0x6c, 0x77, 0x76, 0x64, 0x4c, 0x2f, 0x23, 0x1a, 0x1d, 0x24, 0x26, 0x23, 0x20, 0x28, 0x23, 0x20, 0x25, 0x2a, 0x29, 0x25, 0x21, 0x1f, 0x28, 0x2c, 0x28, 0x2c, 0x34, 0x32, 0x28, 0x75, 0x76, 0x76, 0x74, 0x72, 0x71, 0x6f, 0x6d, 0x68, 0x77, 0x8a, 0x94, 0x8f, 0x82, 0x75, 0x6e, 0x6c, 0x71, 0x77, 0x75, 0x6d, 0x69, 0x6e, 0x77, 0x76, 0x76, 0x6c, 0x5b, 0x54, 0x5a, 0x60, 0x61, 0x5c, 0x5f, 0x66, 0x6e, 0x71, 0x70, 0x6f, 0x6f, 0x63, 0x67, 0x68, 0x6c, 0x74, 0x76, 0x73, 0x75, 0x79, 0x70, 0x64, 0x5b, 0x5a, 0x5d, 0x60, 0x5f, 0x55, 0x54, 0x53, 0x55, 0x5d, 0x64, 0x61, 0x5a, 0x58, 0x56, 0x55, 0x5a, 0x67, 0x73, 0x73, 0x6c, 0x5e, 0x52, 0x52, 0x60, 0x76, 0x90, 0x8d, 0x70, 0x66, 0x64, 0x5f, 0x58, 0x56, 0x57, 0x57, 0x55, 0x53, 0x57, 0x5e, 0x65, 0x6a, 0x69, 0x65, 0x62, 0x63, 0x67, 0x6c, 0x6e, 0x6c, 0x6a, 0x69, 0x69, 0x78, 0x82, 0x83, 0x86, 0x7b, 0x7c, 0x72, 0x6e, 0x69, 0x66, 0x6a, 0x71, 0x70, 0x71, 0x72, 0x6d, 0x6a, 0x69, 0x6b, 0x6c, 0x6c, 0x6c, 0x6f, 0x73, 0x76, 0x79, 0x74, 0x69, 0x64, 0x68, 0x6a, 0x66, 0x61, 0x63, 0x6a, 0x73, 0x79, 0x7a, 0x77, 0x75, 0x69, 0x62, 0x6a, 0x71, 0x79, 0x7e, 0x7a, 0x81, 0x91, 0x87, 0x76, 0x69, 0x68, 0x6c, 0x66, 0x5b, 0x61, 0x69, 0x6f, 0x6b, 0x64, 0x64, 0x6a, 0x6f, 0x72, 0x73, 0x7b, 0x71, 0x6d, 0xa9, 0xbd, 0xbd, 0xb9, 0xbc, 0xbe, 0xc0, 0xc6, 0xc8, 0xbc, 0xab, 0xad, 0xb2, 0xb9, 0xc1, 0xc6, 0xc8, 0xc8, 0xc7, 0xc9, 0xc8, 0xc7, 0xc5, 0xc2, 0xc0, 0xbe, 0xbd, 0xbb, 0xba, 0xb9, 0xb8, 0xb8, 0xb9, 0xba, 0xbb, 0xbb, 0xbc, 0xbd, 0xbe, 0xbd, 0xbc, 0xba, 0xb9, 0xb5, 0xb5, 0xb7, 0xb8, 0xba, 0xbc, 0xbd, 0xbe, 0xbe, 0xbc, 0xb9, 0xb7, 0xb6, 0xb6, 0xb8, 0xb9, 0xb6, 0xb5, 0xb4, 0xb5, 0xb5, 0xb4, 0xb3, 0xb1, 0xae, 0xae, 0xac, 0xab, 0xab, 0xab, 0xab, 0xab, 0x9c, 0x9c, 0x9e, 0xa3, 0xab, 0xaf, 0xb0, 0xaf, 0xac, 0xa9, 0xa5, 0xa2, 0x9f, 0x9c, 0x97, 0x93, 0x86, 0x81, 0x7d, 0x7f, 0x84, 0x86, 0x82, 0x7c, 0x6b, 0x62, 0xa6, 0xba, 0xb3, 0xb4, 0xb3, 0xb1, 0xaf, 0xb0, 0xb1, 0xb0, 0xae, 0xaa, 0xa7, 0xa6, 0xa2, 0xa5, 0xa5, 0xa2, 0xa1, 0xa4, 0xa5, 0xa3, 0xa5, 0xa3, 0xaa, 0xbd, 0xd2, 0xdb, 0xd9, 0xd5, 0xcf, 0xcb, 0xc7, 0xc6, 0xc7, 0xc7, 0xc5, 0xc3, 0xc1, 0xbd, 0xb9, 0xb4, 0xab, 0xa3, 0xa1, 0xa5, 0xa7, 0xac, 0xb5, 0xbe, 0xc1, 0xc3, 0xc9, 0xd0, 0xcb, 0xcb, 0xce, 0xd2, 0xd4, 0xd5, 0xd4, 0xd5, 0xd8, 0xd9, 0xd8, 0xd7, 0xd8, 0xdb, 0xdb, 0xd9, 0xdb, 0xdb, 0xd5, 0xd3, 0xdf, 0xd4, 0x95, 0x4d, 0x55, 0x60, 0x5c, 0x4a, 0x6a, 0xb3, 0xd5, 0xd6, 0xd2, 0xcf, 0xce, 0xd0, 0xd1, 0xd0, 0xd0, 0xd1, 0xd7, 0xd5, 0xd1, 0xce, 0xcd, 0xcf, 0xd2, 0xd4, 0xd2, 0xba, 0xa4, 0x9d, 0x9f, 0xa0, 0xa0, 0xa1, 0xa1, 0xa3, 0xa0, 0x9e, 0xa3, 0x9f, 0x82, 0x60, 0x44, 0x76, 0xa3, 0xa9, 0x9c, 0x98, 0x9e, 0xa2, 0x98, 0x9c, 0x9d, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x99, 0x99, 0x97, 0x96, 0x94, 0x93, 0x93, 0x93, 0x90, 0xb8, 0xd3, 0xd0, 0xc9, 0xcb, 0xc4, 0xb3, 0xb0, 0xb5, 0xb8, 0xba, 0xa8, 0x74, 0x98, 0xce, 0x9e, 0x6d, 0x88, 0x9f, 0x9d, 0x9b, 0x8a, 0x93, 0x86, 0x7d, 0x76, 0x76, 0x73, 0x6c, 0x6a, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x70, 0x71, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x66, 0x65, 0x63, 0x61, 0x5f, 0x5e, 0x5d, 0x5c, 0x59, 0x57, 0x55, 0x52, 0x50, 0x4c, 0x49, 0x46, 0x44, 0x41, 0x3d, 0x39, 0x38, 0x37, 0x36, 0x35, 0x3e, 0x53, 0x66, 0x6e, 0x77, 0x83, 0x86, 0x81, 0x7f, 0x77, 0x70, 0x70, 0x73, 0x75, 0x76, 0x78, 0x71, 0x6d, 0x6b, 0x6e, 0x74, 0x77, 0x74, 0x70, 0x69, 0x51, 0x3e, 0x36, 0x2b, 0x29, 0x32, 0x3b, 0x30, 0x36, 0x3c, 0x3e, 0x42, 0x48, 0x4b, 0x4c, 0x41, 0x46, 0x40, 0x41, 0x60, 0x86, 0x83, 0x65, 0x54, 0x4d, 0x4c, 0x4a, 0x43, 0x41, 0x46, 0x46, 0x31, 0x29, 0x2d, 0x35, 0x31, 0x2c, 0x32, 0x37, 0x2a, 0x38, 0x49, 0x54, 0x53, 0x51, 0x55, 0x5d, 0x52, 0x50, 0x4f, 0x4e, 0x4c, 0x4a, 0x4d, 0x52, 0x72, 0x93, 0x98, 0x78, 0x54, 0x42, 0x4d, 0x68, 0x5f, 0x4e, 0x3a, 0x2f, 0x2c, 0x2b, 0x2c, 0x2e, 0x2d, 0x41, 0x57, 0x60, 0x59, 0x4f, 0x4c, 0x4d, 0x4e, 0x49, 0x43, 0x4b, 0x5e, 0x6d, 0x7c, 0x8c, 0x75, 0x4d, 0x3a, 0x38, 0x42, 0x50, 0x56, 0x60, 0x55, 0x53, 0x68, 0x79, 0x6b, 0x57, 0x40, 0x24, 0x1f, 0x1d, 0x1a, 0x18, 0x17, 0x1a, 0x1f, 0x25, 0x20, 0x23, 0x26, 0x25, 0x20, 0x1c, 0x20, 0x27, 0x2c, 0x1f, 0x17, 0x19, 0x1a, 0x15, 0x10, 0x10, 0x62, 0x6a, 0x70, 0x70, 0x69, 0x64, 0x63, 0x65, 0x63, 0x68, 0x70, 0x78, 0x78, 0x71, 0x6b, 0x68, 0x68, 0x6b, 0x71, 0x75, 0x70, 0x68, 0x66, 0x69, 0x6d, 0x6b, 0x66, 0x5f, 0x5d, 0x5e, 0x5e, 0x5c, 0x5e, 0x5e, 0x63, 0x67, 0x65, 0x5d, 0x58, 0x57, 0x62, 0x69, 0x72, 0x77, 0x71, 0x6b, 0x6c, 0x73, 0x7a, 0x71, 0x64, 0x5b, 0x58, 0x5a, 0x5c, 0x5d, 0x5a, 0x58, 0x53, 0x4f, 0x51, 0x57, 0x57, 0x54, 0x49, 0x49, 0x4b, 0x51, 0x5b, 0x67, 0x73, 0x79, 0x6d, 0x5a, 0x5a, 0x74, 0x80, 0x71, 0x63, 0x63, 0x68, 0x65, 0x61, 0x5e, 0x5d, 0x5f, 0x61, 0x62, 0x61, 0x64, 0x6b, 0x70, 0x6d, 0x65, 0x62, 0x64, 0x66, 0x66, 0x64, 0x63, 0x66, 0x68, 0x63, 0x5b, 0x68, 0x71, 0x79, 0x7a, 0x76, 0x72, 0x70, 0x6e, 0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x78, 0x70, 0x6d, 0x70, 0x6e, 0x67, 0x68, 0x71, 0x73, 0x77, 0x73, 0x69, 0x68, 0x6c, 0x67, 0x5c, 0x5c, 0x61, 0x69, 0x70, 0x75, 0x77, 0x76, 0x75, 0x6f, 0x70, 0x6c, 0x67, 0x6b, 0x76, 0x7b, 0x79, 0x83, 0x91, 0x94, 0x85, 0x77, 0x73, 0x6c, 0x62, 0x5d, 0x66, 0x71, 0x72, 0x6e, 0x6b, 0x6f, 0x75, 0x74, 0x70, 0x6b, 0x65, 0x88, 0xad, 0xb4, 0xca, 0xbf, 0xbd, 0xba, 0xbb, 0xc0, 0xc3, 0xbf, 0xb8, 0xb5, 0xb6, 0xba, 0xbf, 0xc4, 0xc6, 0xc6, 0xc4, 0xca, 0xc9, 0xc8, 0xc7, 0xc5, 0xc1, 0xbd, 0xba, 0xb8, 0xba, 0xbb, 0xbb, 0xb9, 0xb9, 0xba, 0xbc, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbc, 0xbb, 0xb9, 0xb8, 0xb8, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbc, 0xba, 0xb9, 0xb8, 0xb8, 0xb6, 0xb5, 0xb5, 0xb3, 0xb2, 0xb4, 0xb6, 0xb6, 0xb2, 0xaf, 0xb0, 0xb1, 0xb2, 0xb0, 0xac, 0xaa, 0xaa, 0xaa, 0xad, 0xac, 0xaa, 0xa9, 0xa7, 0xa7, 0xa7, 0xa7, 0xa9, 0xa6, 0xa2, 0x9e, 0x9a, 0x96, 0x94, 0x92, 0x86, 0x7c, 0x7b, 0x7f, 0x7f, 0x82, 0x84, 0x80, 0x69, 0x6b, 0xa0, 0xc4, 0xae, 0xb3, 0xb0, 0xb1, 0xae, 0xb5, 0xb9, 0xb5, 0xaf, 0xac, 0xa9, 0xa6, 0xa1, 0xa3, 0xa3, 0xa2, 0xa2, 0xa3, 0xa4, 0xa3, 0xa2, 0xad, 0xbd, 0xcc, 0xd7, 0xdb, 0xd5, 0xcd, 0xc9, 0xc9, 0xc8, 0xc7, 0xc5, 0xc2, 0xbf, 0xbe, 0xb8, 0xb6, 0xb2, 0xab, 0xa1, 0x9b, 0x9d, 0xa3, 0xab, 0xaa, 0xad, 0xb4, 0xbc, 0xc1, 0xc6, 0xca, 0xcd, 0xcc, 0xcc, 0xcc, 0xcc, 0xce, 0xcf, 0xd0, 0xcc, 0xdc, 0xd6, 0xd1, 0xd1, 0xd2, 0xd2, 0xd8, 0xd3, 0xd3, 0xcd, 0xdc, 0xdc, 0xa2, 0x5c, 0x46, 0x59, 0x73, 0x7a, 0x54, 0x4e, 0x60, 0xd2, 0xcd, 0xcc, 0xc6, 0xca, 0xd0, 0xcb, 0xc6, 0xc9, 0xcb, 0xd3, 0xda, 0xd7, 0xce, 0xce, 0xd0, 0xd1, 0xd5, 0xd5, 0xb2, 0x9d, 0xa1, 0xa4, 0xa0, 0x9e, 0x9d, 0xa5, 0x9c, 0x9b, 0xa1, 0x9c, 0x8f, 0x82, 0xb2, 0xc1, 0x79, 0x8c, 0xa0, 0x91, 0xa1, 0x9b, 0x99, 0x98, 0x9c, 0x9e, 0x9d, 0x9a, 0x9a, 0x9a, 0x9a, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x91, 0xae, 0xd8, 0xd0, 0xcc, 0xca, 0xc4, 0xb4, 0xb3, 0xad, 0xad, 0xb2, 0xa9, 0x7c, 0xaf, 0xc6, 0xa2, 0x68, 0x75, 0x88, 0x9d, 0x93, 0x94, 0x8a, 0x80, 0x7b, 0x76, 0x73, 0x6f, 0x6c, 0x6b, 0x6d, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x71, 0x6e, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x64, 0x62, 0x60, 0x5f, 0x5d, 0x5b, 0x59, 0x57, 0x55, 0x51, 0x4d, 0x4b, 0x48, 0x46, 0x44, 0x42, 0x3c, 0x3b, 0x3d, 0x39, 0x30, 0x33, 0x3d, 0x4d, 0x5b, 0x6b, 0x75, 0x7c, 0x83, 0x86, 0x85, 0x7a, 0x70, 0x6d, 0x6f, 0x6a, 0x62, 0x68, 0x76, 0x78, 0x77, 0x71, 0x6c, 0x6d, 0x71, 0x72, 0x6f, 0x52, 0x49, 0x3f, 0x2e, 0x28, 0x26, 0x20, 0x2b, 0x34, 0x39, 0x39, 0x3e, 0x4a, 0x4f, 0x4c, 0x4d, 0x43, 0x43, 0x47, 0x59, 0x62, 0x47, 0x29, 0x24, 0x28, 0x2b, 0x31, 0x32, 0x50, 0x54, 0x4f, 0x3e, 0x30, 0x26, 0x23, 0x27, 0x26, 0x21, 0x28, 0x36, 0x45, 0x4d, 0x52, 0x52, 0x57, 0x5f, 0x60, 0x5a, 0x63, 0x61, 0x58, 0x4b, 0x47, 0x56, 0x72, 0x86, 0x89, 0x7f, 0x6e, 0x5c, 0x4b, 0x43, 0x45, 0x4b, 0x3c, 0x34, 0x2d, 0x2b, 0x25, 0x22, 0x2a, 0x37, 0x3e, 0x3e, 0x44, 0x50, 0x5a, 0x5a, 0x50, 0x45, 0x49, 0x59, 0x63, 0x54, 0x3c, 0x38, 0x52, 0x6e, 0x59, 0x49, 0x2e, 0x25, 0x38, 0x4c, 0x51, 0x4f, 0x4b, 0x5b, 0x68, 0x63, 0x4d, 0x37, 0x2f, 0x30, 0x3f, 0x3f, 0x41, 0x38, 0x2b, 0x2b, 0x33, 0x35, 0x2e, 0x2b, 0x2a, 0x27, 0x28, 0x35, 0x41, 0x3f, 0x48, 0x43, 0x3d, 0x3d, 0x47, 0x57, 0x67, 0x71, 0x5a, 0x5e, 0x61, 0x60, 0x5d, 0x5d, 0x61, 0x65, 0x6b, 0x6c, 0x6e, 0x71, 0x71, 0x6d, 0x6c, 0x6d, 0x69, 0x69, 0x6a, 0x6a, 0x66, 0x60, 0x61, 0x65, 0x6a, 0x68, 0x61, 0x5a, 0x57, 0x58, 0x58, 0x56, 0x5a, 0x58, 0x58, 0x5b, 0x5b, 0x58, 0x59, 0x5c, 0x63, 0x66, 0x6c, 0x6f, 0x6c, 0x68, 0x6a, 0x70, 0x74, 0x6e, 0x65, 0x5e, 0x5c, 0x5e, 0x62, 0x65, 0x6c, 0x68, 0x60, 0x58, 0x56, 0x57, 0x54, 0x4f, 0x4d, 0x4b, 0x4d, 0x54, 0x5d, 0x66, 0x6e, 0x74, 0x6a, 0x62, 0x61, 0x65, 0x63, 0x5a, 0x57, 0x5c, 0x60, 0x5d, 0x5d, 0x5f, 0x5b, 0x53, 0x55, 0x5d, 0x68, 0x69, 0x6c, 0x6e, 0x69, 0x62, 0x60, 0x62, 0x5e, 0x68, 0x6d, 0x66, 0x5d, 0x5d, 0x64, 0x6b, 0x68, 0x6d, 0x72, 0x76, 0x75, 0x6f, 0x63, 0x57, 0x5b, 0x5e, 0x64, 0x6a, 0x70, 0x72, 0x72, 0x71, 0x74, 0x73, 0x74, 0x75, 0x70, 0x6c, 0x71, 0x7a, 0x74, 0x77, 0x74, 0x6d, 0x6a, 0x6a, 0x66, 0x60, 0x5d, 0x62, 0x68, 0x6c, 0x71, 0x74, 0x76, 0x76, 0x6a, 0x6e, 0x72, 0x73, 0x71, 0x74, 0x7e, 0x89, 0x88, 0x8a, 0x8d, 0x93, 0x9c, 0x9a, 0x81, 0x64, 0x5b, 0x65, 0x74, 0x83, 0x8a, 0x88, 0x7f, 0x78, 0x79, 0x73, 0x69, 0x7f, 0xa8, 0xbc, 0xbd, 0xbb, 0xc0, 0xbd, 0xba, 0xb9, 0xbd, 0xc3, 0xc3, 0xc0, 0xc6, 0xc5, 0xc3, 0xc3, 0xc5, 0xc6, 0xc6, 0xc6, 0xc3, 0xc3, 0xc4, 0xc5, 0xc5, 0xc2, 0xbe, 0xbb, 0xb7, 0xb9, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xc0, 0xc0, 0xbf, 0xbe, 0xbe, 0xbf, 0xbe, 0xbc, 0xba, 0xb7, 0xb8, 0xb8, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbf, 0xbd, 0xbb, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb3, 0xb3, 0xb5, 0xb8, 0xb9, 0xb7, 0xb4, 0xb1, 0xb1, 0xb0, 0xae, 0xab, 0xaa, 0xab, 0xac, 0xb0, 0xae, 0xaa, 0xa7, 0xa5, 0xa6, 0xa9, 0xab, 0xa6, 0xa4, 0xa0, 0x9c, 0x97, 0x93, 0x8f, 0x8d, 0x8a, 0x80, 0x7e, 0x81, 0x80, 0x80, 0x80, 0x7b, 0x68, 0x69, 0x9b, 0xc2, 0xaf, 0xb2, 0xaf, 0xb0, 0xb0, 0xb7, 0xbb, 0xb8, 0xb3, 0xaf, 0xac, 0xa8, 0xa4, 0xa4, 0xa2, 0xa0, 0x9f, 0xa1, 0xa2, 0xa2, 0xa5, 0xb3, 0xc5, 0xd4, 0xdb, 0xdb, 0xd4, 0xcc, 0xcc, 0xc9, 0xc6, 0xc3, 0xc1, 0xbf, 0xbc, 0xba, 0xb7, 0xb2, 0xac, 0xa6, 0xa0, 0x99, 0x97, 0x98, 0xa3, 0xa4, 0xa8, 0xb0, 0xb6, 0xbb, 0xc0, 0xc5, 0xca, 0xc9, 0xc8, 0xc7, 0xc7, 0xc7, 0xc8, 0xc9, 0xcb, 0xc5, 0xc9, 0xd1, 0xc5, 0xcb, 0xc5, 0xb6, 0xbf, 0xc0, 0xcb, 0xbc, 0xcd, 0x71, 0x39, 0x53, 0xa3, 0xcf, 0xdd, 0x90, 0x42, 0x48, 0x84, 0xb5, 0xc3, 0xbb, 0xbe, 0xc3, 0xbe, 0xba, 0xbb, 0xbb, 0xd5, 0xdc, 0xd9, 0xd0, 0xd0, 0xd2, 0xd3, 0xd7, 0xd9, 0xb3, 0x9b, 0x9c, 0x9e, 0x9c, 0x9e, 0xa0, 0x9a, 0x9e, 0xa1, 0xa2, 0x9c, 0x94, 0x91, 0xce, 0xdb, 0x9c, 0x8a, 0x74, 0x5f, 0x89, 0xaa, 0x9c, 0xa3, 0x9c, 0x94, 0x94, 0x99, 0x9c, 0x96, 0x8f, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x91, 0xac, 0xd4, 0xcf, 0xcd, 0xcc, 0xc6, 0xb7, 0xb2, 0xb5, 0xb8, 0xb2, 0xa1, 0x78, 0xae, 0xcf, 0x9c, 0x5c, 0x6b, 0x84, 0x9f, 0x95, 0x92, 0x88, 0x81, 0x7b, 0x76, 0x74, 0x71, 0x6d, 0x69, 0x68, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6b, 0x69, 0x67, 0x64, 0x64, 0x62, 0x60, 0x5e, 0x5d, 0x5b, 0x58, 0x57, 0x55, 0x52, 0x4f, 0x4b, 0x49, 0x46, 0x43, 0x41, 0x3e, 0x3b, 0x39, 0x38, 0x34, 0x34, 0x3f, 0x4d, 0x56, 0x5f, 0x69, 0x72, 0x7a, 0x80, 0x81, 0x7e, 0x70, 0x6f, 0x6c, 0x67, 0x5f, 0x60, 0x6f, 0x80, 0x79, 0x74, 0x6e, 0x71, 0x7a, 0x7c, 0x70, 0x61, 0x4f, 0x4d, 0x4c, 0x46, 0x4a, 0x4a, 0x3e, 0x3f, 0x38, 0x3a, 0x39, 0x3f, 0x4d, 0x54, 0x52, 0x53, 0x49, 0x54, 0x5e, 0x59, 0x43, 0x2e, 0x36, 0x50, 0x50, 0x52, 0x45, 0x39, 0x38, 0x3f, 0x40, 0x42, 0x28, 0x26, 0x2a, 0x32, 0x35, 0x33, 0x39, 0x42, 0x47, 0x53, 0x5a, 0x58, 0x56, 0x5b, 0x5d, 0x5b, 0x63, 0x5f, 0x5e, 0x6b, 0x7d, 0x85, 0x79, 0x68, 0x5f, 0x63, 0x5f, 0x51, 0x40, 0x37, 0x34, 0x35, 0x4e, 0x4a, 0x46, 0x40, 0x36, 0x30, 0x36, 0x3f, 0x54, 0x50, 0x49, 0x42, 0x3e, 0x43, 0x4c, 0x54, 0x4a, 0x43, 0x3d, 0x40, 0x4d, 0x5d, 0x68, 0x6d, 0x7a, 0x62, 0x43, 0x39, 0x44, 0x47, 0x40, 0x3c, 0x48, 0x4f, 0x4f, 0x41, 0x2f, 0x26, 0x26, 0x2a, 0x45, 0x54, 0x69, 0x6c, 0x5f, 0x59, 0x5b, 0x59, 0x6f, 0x77, 0x83, 0x84, 0x78, 0x72, 0x70, 0x6a, 0x5f, 0x5e, 0x64, 0x74, 0x85, 0x8d, 0x88, 0x7f, 0x5f, 0x60, 0x60, 0x5f, 0x5e, 0x60, 0x66, 0x6a, 0x6c, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6d, 0x70, 0x69, 0x65, 0x62, 0x60, 0x5d, 0x5c, 0x5e, 0x62, 0x6e, 0x6b, 0x65, 0x5e, 0x5c, 0x5c, 0x5b, 0x58, 0x56, 0x54, 0x53, 0x56, 0x58, 0x59, 0x5d, 0x60, 0x63, 0x64, 0x66, 0x69, 0x69, 0x69, 0x6b, 0x6f, 0x74, 0x71, 0x6a, 0x61, 0x58, 0x54, 0x55, 0x57, 0x6f, 0x6a, 0x62, 0x5c, 0x59, 0x59, 0x56, 0x51, 0x4f, 0x4c, 0x51, 0x5c, 0x63, 0x63, 0x65, 0x6b, 0x6b, 0x6c, 0x67, 0x5d, 0x56, 0x56, 0x5b, 0x5e, 0x5b, 0x58, 0x5c, 0x61, 0x59, 0x4b, 0x4d, 0x59, 0x61, 0x64, 0x69, 0x6a, 0x66, 0x60, 0x5e, 0x5f, 0x5d, 0x61, 0x62, 0x61, 0x62, 0x65, 0x68, 0x69, 0x63, 0x6e, 0x79, 0x7a, 0x71, 0x67, 0x5e, 0x58, 0x5c, 0x5e, 0x63, 0x6a, 0x70, 0x72, 0x72, 0x70, 0x6b, 0x6c, 0x6e, 0x6f, 0x71, 0x73, 0x76, 0x78, 0x7f, 0x7f, 0x80, 0x7e, 0x7b, 0x79, 0x78, 0x79, 0x67, 0x6d, 0x72, 0x74, 0x74, 0x76, 0x77, 0x76, 0x71, 0x6f, 0x74, 0x7d, 0x7e, 0x79, 0x79, 0x7f, 0x7b, 0x7c, 0x81, 0x8c, 0x96, 0x95, 0x84, 0x73, 0x6c, 0x6f, 0x74, 0x7e, 0x88, 0x90, 0x93, 0x94, 0x81, 0x7f, 0x7d, 0xa4, 0xbf, 0xbb, 0xc2, 0xbb, 0xbf, 0xbc, 0xb8, 0xb4, 0xb7, 0xbe, 0xc3, 0xc4, 0xc8, 0xc7, 0xc6, 0xc6, 0xc7, 0xc7, 0xc6, 0xc6, 0xc4, 0xc5, 0xc5, 0xc6, 0xc5, 0xc2, 0xbe, 0xba, 0xb9, 0xb9, 0xbb, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xc0, 0xc1, 0xc0, 0xbd, 0xbc, 0xba, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbc, 0xbc, 0xbf, 0xbe, 0xbc, 0xbc, 0xbc, 0xbb, 0xba, 0xb8, 0xb7, 0xb5, 0xb4, 0xb5, 0xb7, 0xb9, 0xb8, 0xb7, 0xb3, 0xb2, 0xaf, 0xab, 0xa8, 0xa7, 0xa8, 0xa9, 0xaa, 0xa9, 0xa5, 0xa1, 0x9f, 0xa0, 0xa4, 0xa8, 0xa6, 0xa4, 0xa1, 0x9d, 0x99, 0x94, 0x8e, 0x8a, 0x8a, 0x81, 0x80, 0x83, 0x81, 0x80, 0x7e, 0x78, 0x66, 0x69, 0x98, 0xc4, 0xb4, 0xb1, 0xae, 0xb1, 0xaf, 0xb5, 0xb9, 0xb8, 0xb4, 0xb0, 0xab, 0xa7, 0xa7, 0xa4, 0xa0, 0x9e, 0x9f, 0xa1, 0xa3, 0xa4, 0xac, 0xbd, 0xd2, 0xde, 0xdf, 0xda, 0xd1, 0xca, 0xcb, 0xc6, 0xc1, 0xbf, 0xbe, 0xbd, 0xba, 0xb7, 0xb4, 0xad, 0xa6, 0xa4, 0xa1, 0x9c, 0x97, 0x94, 0xa3, 0xa6, 0xac, 0xb2, 0xb7, 0xba, 0xbf, 0xc4, 0xcb, 0xca, 0xc9, 0xc8, 0xc8, 0xc9, 0xc9, 0xca, 0xcc, 0xc5, 0xc4, 0xce, 0xc8, 0xd0, 0xc7, 0xc5, 0xce, 0xc7, 0xcc, 0xc1, 0xbd, 0x43, 0x3c, 0x8f, 0xdf, 0xdb, 0xeb, 0xdd, 0x92, 0x43, 0x48, 0xc4, 0xcf, 0xc8, 0xca, 0xd0, 0xd0, 0xcf, 0xd0, 0xcf, 0xd5, 0xdd, 0xd9, 0xd1, 0xd0, 0xd2, 0xd4, 0xd8, 0xdb, 0xb5, 0x9b, 0x9b, 0x9d, 0x9c, 0x9e, 0xa1, 0x9f, 0xa2, 0xa3, 0xa5, 0x9c, 0x8d, 0x93, 0xe3, 0xe6, 0x8f, 0x6c, 0xa0, 0xa2, 0x8a, 0x94, 0x9e, 0x9c, 0x9c, 0x9c, 0x9e, 0x9f, 0x9d, 0x98, 0x95, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0xa9, 0xd0, 0xcd, 0xce, 0xce, 0xc9, 0xba, 0xb2, 0xb9, 0xbd, 0xb2, 0xa1, 0x79, 0xa6, 0xcf, 0x93, 0x5a, 0x73, 0x8c, 0xa1, 0x94, 0x8e, 0x86, 0x7f, 0x7a, 0x75, 0x74, 0x72, 0x6d, 0x68, 0x66, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x68, 0x64, 0x61, 0x61, 0x5f, 0x5d, 0x5b, 0x5a, 0x58, 0x55, 0x53, 0x51, 0x4f, 0x4c, 0x49, 0x46, 0x43, 0x3f, 0x3d, 0x39, 0x39, 0x36, 0x32, 0x34, 0x40, 0x54, 0x64, 0x65, 0x67, 0x6a, 0x6f, 0x76, 0x7b, 0x79, 0x74, 0x6d, 0x6e, 0x6a, 0x61, 0x5e, 0x68, 0x77, 0x82, 0x7c, 0x77, 0x70, 0x6a, 0x69, 0x66, 0x5e, 0x56, 0x68, 0x5d, 0x4e, 0x3f, 0x47, 0x53, 0x4e, 0x51, 0x3c, 0x38, 0x2f, 0x30, 0x3e, 0x4a, 0x51, 0x58, 0x5f, 0x55, 0x50, 0x4b, 0x41, 0x3c, 0x40, 0x44, 0x4a, 0x50, 0x47, 0x54, 0x58, 0x5f, 0x45, 0x39, 0x40, 0x3b, 0x36, 0x31, 0x2b, 0x28, 0x2c, 0x31, 0x49, 0x4c, 0x4e, 0x53, 0x5d, 0x62, 0x56, 0x45, 0x47, 0x55, 0x65, 0x6c, 0x6b, 0x66, 0x60, 0x5b, 0x64, 0x60, 0x56, 0x4e, 0x51, 0x59, 0x5c, 0x59, 0x4f, 0x49, 0x43, 0x41, 0x43, 0x49, 0x4e, 0x52, 0x59, 0x53, 0x46, 0x35, 0x28, 0x27, 0x30, 0x3a, 0x40, 0x32, 0x26, 0x28, 0x36, 0x41, 0x40, 0x3a, 0x34, 0x38, 0x3d, 0x45, 0x45, 0x34, 0x23, 0x22, 0x34, 0x3b, 0x3c, 0x36, 0x32, 0x34, 0x33, 0x2d, 0x33, 0x41, 0x5c, 0x74, 0x7f, 0x85, 0x81, 0x75, 0x6c, 0x6d, 0x7a, 0x8b, 0x93, 0x97, 0x96, 0x8f, 0x87, 0x86, 0x82, 0x7c, 0x76, 0x74, 0x76, 0x79, 0x66, 0x65, 0x65, 0x64, 0x65, 0x66, 0x69, 0x6a, 0x6c, 0x6c, 0x6d, 0x6e, 0x6b, 0x67, 0x65, 0x66, 0x65, 0x62, 0x5f, 0x5d, 0x5c, 0x5d, 0x5f, 0x61, 0x62, 0x61, 0x5e, 0x5a, 0x59, 0x59, 0x56, 0x53, 0x55, 0x55, 0x56, 0x5a, 0x5c, 0x5e, 0x5e, 0x5f, 0x5d, 0x5d, 0x5f, 0x61, 0x64, 0x64, 0x64, 0x64, 0x63, 0x66, 0x69, 0x65, 0x5e, 0x59, 0x5a, 0x5d, 0x62, 0x5e, 0x5a, 0x59, 0x5a, 0x5a, 0x57, 0x54, 0x50, 0x4e, 0x56, 0x63, 0x66, 0x5f, 0x5e, 0x65, 0x6a, 0x68, 0x61, 0x5c, 0x5d, 0x62, 0x64, 0x61, 0x53, 0x52, 0x53, 0x54, 0x4c, 0x43, 0x46, 0x50, 0x5b, 0x62, 0x69, 0x6c, 0x68, 0x60, 0x5b, 0x59, 0x5e, 0x5b, 0x5b, 0x62, 0x6d, 0x72, 0x6c, 0x64, 0x69, 0x73, 0x7b, 0x79, 0x72, 0x6e, 0x6e, 0x6f, 0x6f, 0x6c, 0x6a, 0x6a, 0x6d, 0x6e, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x74, 0x7e, 0x86, 0x85, 0x7e, 0x7c, 0x7b, 0x7c, 0x7e, 0x7d, 0x7b, 0x7f, 0x86, 0x7a, 0x81, 0x84, 0x81, 0x7c, 0x7a, 0x76, 0x72, 0x7c, 0x7e, 0x85, 0x8b, 0x88, 0x7d, 0x74, 0x71, 0x76, 0x79, 0x7f, 0x85, 0x85, 0x81, 0x7f, 0x80, 0x84, 0x86, 0x86, 0x80, 0x79, 0x7a, 0x82, 0x8a, 0x8a, 0x88, 0x97, 0xbc, 0xc5, 0xb8, 0xc0, 0xc6, 0xc1, 0xc1, 0xbd, 0xb8, 0xb7, 0xbd, 0xc4, 0xc7, 0xc3, 0xc5, 0xc8, 0xca, 0xcb, 0xc9, 0xc6, 0xc3, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc2, 0xc0, 0xbd, 0xbd, 0xbb, 0xb9, 0xb9, 0xbb, 0xbb, 0xba, 0xb9, 0xbe, 0xbe, 0xbf, 0xc0, 0xc1, 0xc0, 0xbe, 0xbc, 0xbf, 0xbe, 0xbe, 0xbd, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbd, 0xbc, 0xbc, 0xbc, 0xbb, 0xba, 0xb8, 0xba, 0xb8, 0xb5, 0xb4, 0xb4, 0xb5, 0xb5, 0xb4, 0xb5, 0xb3, 0xb0, 0xac, 0xa8, 0xa5, 0xa4, 0xa3, 0xa3, 0xa3, 0xa2, 0xa0, 0x9d, 0x9d, 0xa0, 0xa3, 0xaa, 0xa8, 0xa5, 0xa2, 0x9e, 0x98, 0x91, 0x8b, 0x87, 0x7f, 0x7f, 0x84, 0x84, 0x83, 0x80, 0x7a, 0x62, 0x6c, 0x9b, 0xca, 0xbb, 0xb0, 0xac, 0xb1, 0xae, 0xb2, 0xb7, 0xb9, 0xb6, 0xb1, 0xab, 0xa6, 0xa6, 0xa3, 0xa0, 0xa0, 0xa1, 0xa3, 0xa7, 0xaa, 0xb7, 0xc9, 0xdc, 0xe3, 0xdf, 0xd6, 0xce, 0xc9, 0xc7, 0xc2, 0xbe, 0xbd, 0xbe, 0xbd, 0xb9, 0xb5, 0xad, 0xa9, 0xa5, 0xa7, 0xa7, 0xa3, 0x9e, 0x9b, 0xad, 0xb1, 0xb7, 0xbc, 0xbe, 0xbf, 0xc3, 0xc9, 0xcd, 0xcd, 0xcd, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xc1, 0xd2, 0xcd, 0xd5, 0xd5, 0xa8, 0x67, 0x66, 0xa2, 0xd0, 0xc8, 0xc7, 0xaa, 0x32, 0x47, 0xb9, 0xe9, 0xdf, 0xdc, 0xe8, 0xd7, 0x60, 0x46, 0xab, 0xc9, 0xc1, 0xc2, 0xc9, 0xca, 0xcb, 0xcc, 0xc8, 0xd2, 0xda, 0xd7, 0xcf, 0xcf, 0xd1, 0xd3, 0xd6, 0xdc, 0xb7, 0x9f, 0xa0, 0xa2, 0x9f, 0x9f, 0xa0, 0xa9, 0xa1, 0x9c, 0xa4, 0x9f, 0x88, 0x87, 0xda, 0xea, 0x8f, 0x5a, 0xc1, 0xbc, 0x82, 0x6f, 0x83, 0x97, 0x9a, 0x9e, 0x9e, 0x99, 0x94, 0x94, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x93, 0xa6, 0xcc, 0xcb, 0xcf, 0xce, 0xc9, 0xbc, 0xb2, 0xb3, 0xb6, 0xb3, 0xa9, 0x80, 0x96, 0xc3, 0x8b, 0x64, 0x8a, 0x94, 0x9d, 0x92, 0x8b, 0x84, 0x7d, 0x78, 0x73, 0x71, 0x6f, 0x6b, 0x68, 0x68, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x63, 0x60, 0x60, 0x5e, 0x5b, 0x59, 0x57, 0x55, 0x53, 0x51, 0x4d, 0x4c, 0x49, 0x47, 0x44, 0x41, 0x3c, 0x3a, 0x39, 0x39, 0x35, 0x34, 0x41, 0x58, 0x6d, 0x77, 0x72, 0x70, 0x6f, 0x70, 0x73, 0x75, 0x73, 0x70, 0x74, 0x6e, 0x66, 0x65, 0x6a, 0x73, 0x77, 0x77, 0x69, 0x68, 0x68, 0x68, 0x6b, 0x71, 0x75, 0x77, 0x60, 0x56, 0x48, 0x36, 0x3b, 0x46, 0x40, 0x42, 0x3d, 0x31, 0x25, 0x2d, 0x47, 0x56, 0x57, 0x57, 0x53, 0x4b, 0x4c, 0x4b, 0x42, 0x43, 0x48, 0x42, 0x48, 0x4f, 0x47, 0x42, 0x3b, 0x41, 0x44, 0x51, 0x75, 0x6a, 0x54, 0x3b, 0x29, 0x22, 0x23, 0x25, 0x35, 0x48, 0x58, 0x59, 0x52, 0x4d, 0x47, 0x3f, 0x46, 0x52, 0x5f, 0x67, 0x68, 0x67, 0x63, 0x5f, 0x46, 0x4b, 0x4d, 0x47, 0x3e, 0x3c, 0x43, 0x4c, 0x53, 0x55, 0x55, 0x51, 0x51, 0x55, 0x5a, 0x5c, 0x38, 0x34, 0x30, 0x2f, 0x32, 0x34, 0x36, 0x35, 0x39, 0x34, 0x2e, 0x28, 0x25, 0x21, 0x1e, 0x1c, 0x14, 0x2c, 0x3d, 0x39, 0x27, 0x17, 0x1b, 0x2e, 0x3e, 0x43, 0x44, 0x46, 0x53, 0x60, 0x5a, 0x4a, 0x3b, 0x3f, 0x50, 0x69, 0x7f, 0x90, 0x92, 0x87, 0x73, 0x6c, 0x74, 0x87, 0x92, 0x92, 0x8a, 0x7f, 0x69, 0x69, 0x72, 0x88, 0xa1, 0xae, 0xab, 0xa2, 0x5e, 0x5d, 0x5c, 0x5c, 0x5e, 0x62, 0x66, 0x68, 0x71, 0x70, 0x70, 0x6e, 0x68, 0x5f, 0x59, 0x58, 0x61, 0x62, 0x62, 0x61, 0x5f, 0x5e, 0x5c, 0x5b, 0x57, 0x5a, 0x5c, 0x5c, 0x5c, 0x5c, 0x5a, 0x56, 0x5b, 0x5b, 0x5c, 0x5d, 0x5f, 0x60, 0x5f, 0x5d, 0x58, 0x5a, 0x5c, 0x5c, 0x5c, 0x59, 0x54, 0x51, 0x59, 0x61, 0x69, 0x6c, 0x69, 0x65, 0x64, 0x66, 0x5a, 0x57, 0x55, 0x57, 0x5b, 0x5b, 0x59, 0x57, 0x56, 0x53, 0x58, 0x62, 0x62, 0x5b, 0x5d, 0x67, 0x66, 0x5d, 0x57, 0x58, 0x5c, 0x5d, 0x5c, 0x5b, 0x59, 0x59, 0x55, 0x4d, 0x4a, 0x4c, 0x50, 0x53, 0x65, 0x6a, 0x70, 0x6e, 0x68, 0x60, 0x5a, 0x56, 0x5b, 0x60, 0x67, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x78, 0x72, 0x6c, 0x6a, 0x72, 0x7c, 0x80, 0x80, 0x79, 0x75, 0x70, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x6b, 0x72, 0x77, 0x7a, 0x82, 0x8b, 0x8c, 0x87, 0x84, 0x7e, 0x7c, 0x7e, 0x7d, 0x7b, 0x7f, 0x86, 0x89, 0x8d, 0x8b, 0x81, 0x7a, 0x77, 0x72, 0x6d, 0x7a, 0x8b, 0x98, 0x91, 0x82, 0x78, 0x78, 0x7a, 0x78, 0x76, 0x7a, 0x82, 0x86, 0x81, 0x78, 0x72, 0x73, 0x82, 0x90, 0x92, 0x87, 0x79, 0x71, 0x70, 0x82, 0x82, 0xa5, 0xc4, 0xcb, 0xc5, 0xc0, 0xcc, 0xca, 0xcc, 0xca, 0xc5, 0xc2, 0xc5, 0xca, 0xcc, 0xcb, 0xcd, 0xcf, 0xcf, 0xce, 0xcb, 0xc8, 0xc6, 0xc3, 0xc2, 0xc1, 0xc2, 0xc3, 0xc4, 0xc4, 0xc4, 0xc1, 0xbd, 0xb9, 0xb7, 0xb7, 0xb8, 0xb8, 0xb7, 0xbc, 0xbc, 0xbd, 0xbf, 0xc0, 0xc0, 0xbf, 0xbd, 0xc2, 0xc1, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbb, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xb9, 0xb7, 0xbb, 0xb8, 0xb6, 0xb3, 0xb3, 0xb3, 0xb2, 0xb2, 0xb3, 0xb3, 0xb1, 0xaf, 0xac, 0xa9, 0xa5, 0xa3, 0xa2, 0xa5, 0xa8, 0xa8, 0xa6, 0xa4, 0xa3, 0xa3, 0xab, 0xa8, 0xa6, 0xa4, 0xa1, 0x9b, 0x92, 0x8c, 0x85, 0x7e, 0x7f, 0x85, 0x85, 0x84, 0x81, 0x7b, 0x5b, 0x70, 0x9f, 0xd0, 0xc0, 0xaf, 0xab, 0xaf, 0xb0, 0xb2, 0xb7, 0xbb, 0xba, 0xb4, 0xad, 0xa9, 0xa5, 0xa2, 0xa0, 0xa2, 0xa2, 0xa4, 0xa9, 0xaf, 0xc4, 0xd3, 0xe1, 0xe2, 0xda, 0xd0, 0xca, 0xc7, 0xc4, 0xc0, 0xbd, 0xbd, 0xbe, 0xbc, 0xb5, 0xb0, 0xa7, 0xa6, 0xa8, 0xab, 0xab, 0xa7, 0xa4, 0xa4, 0xb2, 0xb5, 0xbb, 0xc0, 0xc2, 0xc2, 0xc6, 0xcc, 0xcd, 0xcd, 0xcd, 0xce, 0xce, 0xcf, 0xd0, 0xd0, 0xcc, 0xd2, 0xc4, 0xc6, 0xbe, 0x73, 0x3d, 0x41, 0x43, 0xa2, 0xcc, 0xc7, 0xa2, 0x3b, 0x45, 0xc0, 0xe7, 0xea, 0xdf, 0xdf, 0xe2, 0x74, 0x40, 0x96, 0xd0, 0xc7, 0xc5, 0xc8, 0xc7, 0xc8, 0xc6, 0xc0, 0xce, 0xd6, 0xd5, 0xce, 0xcf, 0xd1, 0xd2, 0xd5, 0xdd, 0xb8, 0xa0, 0xa1, 0xa2, 0xa0, 0xa0, 0xa1, 0xa5, 0x9e, 0x99, 0xa0, 0xa3, 0x94, 0x80, 0xb2, 0xe4, 0x92, 0x66, 0xce, 0x91, 0x7e, 0x7f, 0x83, 0xa8, 0xa1, 0x9b, 0x9a, 0x99, 0x97, 0x96, 0x97, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0xa4, 0xc9, 0xcb, 0xcf, 0xcd, 0xc8, 0xbc, 0xb4, 0xae, 0xb2, 0xb3, 0xae, 0x83, 0x85, 0xbd, 0x86, 0x69, 0x90, 0x88, 0x8e, 0x93, 0x8e, 0x82, 0x7b, 0x76, 0x70, 0x6c, 0x67, 0x64, 0x66, 0x69, 0x6a, 0x6b, 0x6c, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6a, 0x67, 0x66, 0x64, 0x63, 0x61, 0x60, 0x5e, 0x5c, 0x5a, 0x57, 0x56, 0x53, 0x51, 0x4f, 0x4a, 0x49, 0x47, 0x44, 0x42, 0x3f, 0x3b, 0x38, 0x3a, 0x38, 0x36, 0x3d, 0x54, 0x6f, 0x7e, 0x7e, 0x79, 0x78, 0x76, 0x74, 0x71, 0x6f, 0x6f, 0x70, 0x7b, 0x6e, 0x65, 0x68, 0x6e, 0x6f, 0x6e, 0x6f, 0x71, 0x6b, 0x66, 0x6a, 0x70, 0x72, 0x6b, 0x64, 0x71, 0x6a, 0x5d, 0x46, 0x40, 0x3f, 0x35, 0x38, 0x2d, 0x26, 0x23, 0x34, 0x4c, 0x50, 0x40, 0x36, 0x44, 0x43, 0x4a, 0x4a, 0x40, 0x47, 0x56, 0x59, 0x60, 0x65, 0x67, 0x5c, 0x61, 0x64, 0x7f, 0x97, 0x98, 0x91, 0x80, 0x66, 0x51, 0x45, 0x3e, 0x39, 0x38, 0x47, 0x52, 0x4f, 0x48, 0x43, 0x3b, 0x32, 0x3c, 0x49, 0x57, 0x5d, 0x59, 0x4f, 0x41, 0x36, 0x4a, 0x42, 0x41, 0x4d, 0x59, 0x5c, 0x5d, 0x5f, 0x5b, 0x67, 0x6f, 0x6a, 0x60, 0x5f, 0x67, 0x6f, 0x7b, 0x73, 0x6a, 0x62, 0x5b, 0x51, 0x45, 0x3b, 0x39, 0x36, 0x31, 0x2d, 0x2b, 0x2b, 0x2b, 0x2c, 0x34, 0x4e, 0x58, 0x49, 0x38, 0x32, 0x3b, 0x4a, 0x5e, 0x55, 0x46, 0x44, 0x5a, 0x76, 0x7c, 0x72, 0x63, 0x65, 0x6d, 0x72, 0x72, 0x7a, 0x81, 0x7f, 0x93, 0x7b, 0x63, 0x4f, 0x3b, 0x33, 0x39, 0x3d, 0x53, 0x65, 0x7a, 0x82, 0x7d, 0x73, 0x6e, 0x6d, 0x57, 0x55, 0x53, 0x54, 0x58, 0x5f, 0x67, 0x6d, 0x6e, 0x6c, 0x6b, 0x69, 0x64, 0x5d, 0x59, 0x5a, 0x60, 0x64, 0x66, 0x63, 0x5e, 0x5a, 0x55, 0x51, 0x58, 0x5f, 0x66, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x6a, 0x67, 0x62, 0x5f, 0x60, 0x64, 0x64, 0x63, 0x62, 0x65, 0x66, 0x62, 0x5c, 0x56, 0x50, 0x4c, 0x54, 0x5b, 0x64, 0x68, 0x68, 0x64, 0x61, 0x60, 0x56, 0x52, 0x52, 0x57, 0x5e, 0x62, 0x64, 0x65, 0x63, 0x5b, 0x58, 0x5c, 0x5d, 0x5c, 0x62, 0x6b, 0x68, 0x60, 0x5c, 0x5c, 0x58, 0x52, 0x53, 0x5a, 0x60, 0x60, 0x59, 0x4f, 0x4f, 0x58, 0x5d, 0x5b, 0x68, 0x6c, 0x6d, 0x68, 0x63, 0x60, 0x60, 0x5f, 0x5f, 0x63, 0x68, 0x68, 0x64, 0x60, 0x63, 0x68, 0x72, 0x6d, 0x65, 0x60, 0x65, 0x72, 0x80, 0x87, 0x77, 0x76, 0x73, 0x70, 0x6d, 0x6b, 0x6a, 0x69, 0x66, 0x73, 0x7c, 0x7c, 0x7a, 0x80, 0x8b, 0x92, 0x9b, 0x92, 0x8b, 0x8a, 0x88, 0x83, 0x81, 0x82, 0x89, 0x89, 0x82, 0x76, 0x71, 0x74, 0x74, 0x6f, 0x73, 0x7f, 0x84, 0x7c, 0x74, 0x76, 0x7c, 0x7e, 0x7a, 0x77, 0x78, 0x7d, 0x81, 0x7d, 0x75, 0x6e, 0x70, 0x79, 0x84, 0x8b, 0x8a, 0x81, 0x75, 0x6e, 0x69, 0x82, 0xb7, 0xcb, 0xcd, 0xcb, 0xc1, 0xd3, 0xcc, 0xd0, 0xd1, 0xcd, 0xca, 0xcb, 0xcd, 0xce, 0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xcc, 0xce, 0xd0, 0xcd, 0xcb, 0xc9, 0xc7, 0xc7, 0xc6, 0xc6, 0xc5, 0xc3, 0xc0, 0xbd, 0xba, 0xb9, 0xba, 0xbb, 0xbc, 0xbc, 0xbb, 0xbc, 0xbd, 0xbf, 0xc0, 0xbf, 0xbe, 0xc1, 0xc1, 0xbf, 0xbe, 0xbd, 0xbc, 0xbb, 0xbb, 0xba, 0xba, 0xba, 0xba, 0xbb, 0xbb, 0xb9, 0xb8, 0xb9, 0xb7, 0xb5, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xae, 0xab, 0xa9, 0xa6, 0xa8, 0xab, 0xad, 0xad, 0xab, 0xa8, 0xa5, 0xa8, 0xa6, 0xa3, 0xa2, 0xa0, 0x9a, 0x92, 0x8c, 0x86, 0x7e, 0x7f, 0x84, 0x84, 0x83, 0x80, 0x79, 0x55, 0x73, 0x9f, 0xd0, 0xc2, 0xb1, 0xac, 0xab, 0xae, 0xaf, 0xb3, 0xb8, 0xb9, 0xb4, 0xac, 0xa8, 0xa4, 0xa2, 0xa1, 0xa3, 0xa2, 0xa3, 0xac, 0xb6, 0xd2, 0xdb, 0xe2, 0xde, 0xd4, 0xcb, 0xc6, 0xc3, 0xc3, 0xc1, 0xbe, 0xbd, 0xbb, 0xb6, 0xaf, 0xa9, 0xa4, 0xa6, 0xaa, 0xad, 0xac, 0xa8, 0xa6, 0xa8, 0xb1, 0xb3, 0xb8, 0xbd, 0xc0, 0xc1, 0xc5, 0xca, 0xce, 0xce, 0xce, 0xcd, 0xcd, 0xcd, 0xcd, 0xcc, 0xc7, 0xc5, 0xce, 0xd1, 0xa2, 0x42, 0x51, 0x63, 0x44, 0x4a, 0xbd, 0xdb, 0x9e, 0x39, 0x4d, 0xc9, 0xe7, 0xdc, 0xde, 0xed, 0xe8, 0x81, 0x2e, 0xa3, 0xcb, 0xc3, 0xc1, 0xc2, 0xc0, 0xc1, 0xc0, 0xba, 0xca, 0xd4, 0xd4, 0xcf, 0xd1, 0xd2, 0xd3, 0xd5, 0xde, 0xb7, 0x9c, 0x9c, 0x9d, 0x9d, 0xa0, 0xa3, 0x9e, 0xa3, 0xa2, 0x9e, 0xa1, 0xa5, 0x80, 0x83, 0xcf, 0x9b, 0x92, 0xd4, 0x75, 0xa5, 0xaf, 0x7d, 0x96, 0x97, 0x9b, 0xa1, 0xa0, 0x9a, 0x97, 0x99, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0xa2, 0xc7, 0xcb, 0xcf, 0xcb, 0xc6, 0xbd, 0xb5, 0xb1, 0xb4, 0xb1, 0xac, 0x84, 0x78, 0xb8, 0x82, 0x62, 0x82, 0x6e, 0x7c, 0x95, 0x91, 0x7e, 0x77, 0x70, 0x68, 0x63, 0x60, 0x5f, 0x63, 0x68, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x67, 0x64, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5c, 0x5a, 0x57, 0x55, 0x53, 0x50, 0x4e, 0x4c, 0x47, 0x46, 0x43, 0x41, 0x40, 0x3d, 0x3a, 0x38, 0x36, 0x37, 0x3b, 0x49, 0x61, 0x76, 0x7c, 0x78, 0x7a, 0x7a, 0x79, 0x76, 0x70, 0x6b, 0x6c, 0x71, 0x77, 0x6c, 0x65, 0x66, 0x65, 0x63, 0x69, 0x72, 0x74, 0x6f, 0x6a, 0x68, 0x67, 0x64, 0x63, 0x64, 0x76, 0x71, 0x6a, 0x57, 0x4b, 0x45, 0x3d, 0x46, 0x47, 0x4f, 0x52, 0x4f, 0x43, 0x30, 0x26, 0x2c, 0x43, 0x3f, 0x40, 0x43, 0x46, 0x4d, 0x54, 0x55, 0x64, 0x63, 0x68, 0x5f, 0x69, 0x5d, 0x66, 0x6e, 0x88, 0x8b, 0x8a, 0x7f, 0x6d, 0x5a, 0x49, 0x3e, 0x36, 0x33, 0x2e, 0x30, 0x3c, 0x44, 0x3a, 0x28, 0x3a, 0x4d, 0x5a, 0x4e, 0x35, 0x28, 0x2e, 0x3a, 0x3d, 0x58, 0x72, 0x6e, 0x4f, 0x38, 0x41, 0x57, 0x6b, 0x64, 0x5c, 0x55, 0x56, 0x5d, 0x68, 0x70, 0x6e, 0x71, 0x72, 0x6f, 0x66, 0x5b, 0x53, 0x4e, 0x4c, 0x47, 0x3e, 0x34, 0x2c, 0x2a, 0x2f, 0x33, 0x3b, 0x53, 0x60, 0x60, 0x61, 0x5e, 0x51, 0x44, 0x4f, 0x3e, 0x29, 0x27, 0x43, 0x6a, 0x81, 0x86, 0x7d, 0x7d, 0x7e, 0x79, 0x6d, 0x6a, 0x6a, 0x65, 0x52, 0x4d, 0x4f, 0x51, 0x4b, 0x44, 0x3e, 0x37, 0x39, 0x2e, 0x21, 0x1d, 0x21, 0x26, 0x26, 0x24, 0x5a, 0x5a, 0x59, 0x59, 0x5b, 0x61, 0x69, 0x6f, 0x66, 0x66, 0x66, 0x67, 0x64, 0x5f, 0x5d, 0x5e, 0x60, 0x65, 0x67, 0x61, 0x5a, 0x55, 0x52, 0x4e, 0x53, 0x5d, 0x66, 0x69, 0x69, 0x6c, 0x70, 0x73, 0x72, 0x6f, 0x67, 0x61, 0x62, 0x68, 0x69, 0x68, 0x6c, 0x70, 0x6f, 0x66, 0x5b, 0x56, 0x55, 0x54, 0x4d, 0x51, 0x58, 0x5f, 0x64, 0x65, 0x64, 0x62, 0x53, 0x4e, 0x4c, 0x53, 0x5d, 0x66, 0x6f, 0x74, 0x6c, 0x62, 0x5a, 0x5b, 0x61, 0x65, 0x66, 0x65, 0x69, 0x65, 0x64, 0x64, 0x5f, 0x58, 0x58, 0x5c, 0x59, 0x57, 0x52, 0x4e, 0x4f, 0x55, 0x59, 0x5a, 0x63, 0x67, 0x68, 0x64, 0x61, 0x63, 0x66, 0x67, 0x65, 0x5e, 0x5b, 0x61, 0x67, 0x66, 0x60, 0x5c, 0x5f, 0x66, 0x67, 0x5f, 0x5a, 0x61, 0x73, 0x82, 0x77, 0x77, 0x74, 0x70, 0x6b, 0x6a, 0x6c, 0x6e, 0x73, 0x7a, 0x7e, 0x7c, 0x7a, 0x80, 0x8f, 0x9c, 0x9e, 0x95, 0x8c, 0x89, 0x88, 0x84, 0x7a, 0x73, 0x7b, 0x7c, 0x78, 0x72, 0x75, 0x7f, 0x82, 0x7d, 0x75, 0x71, 0x6c, 0x6b, 0x70, 0x76, 0x79, 0x78, 0x80, 0x82, 0x81, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x84, 0x80, 0x7c, 0x7a, 0x79, 0x75, 0x70, 0x6b, 0x6d, 0xa0, 0xc8, 0xcc, 0xc9, 0xc6, 0xc5, 0xd0, 0xc6, 0xcb, 0xce, 0xcc, 0xcb, 0xcc, 0xcd, 0xcc, 0xcb, 0xcb, 0xca, 0xc9, 0xc8, 0xca, 0xcd, 0xd1, 0xd2, 0xd0, 0xcf, 0xcd, 0xcc, 0xca, 0xc6, 0xc4, 0xc5, 0xc5, 0xc4, 0xc1, 0xbf, 0xbe, 0xbf, 0xc0, 0xbc, 0xbb, 0xbb, 0xbc, 0xbe, 0xc0, 0xc0, 0xc0, 0xc1, 0xc0, 0xbe, 0xbc, 0xbb, 0xb9, 0xb8, 0xb8, 0xba, 0xba, 0xbb, 0xbc, 0xbd, 0xbc, 0xbb, 0xb9, 0xb7, 0xb7, 0xb5, 0xb2, 0xb0, 0xae, 0xae, 0xae, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xaf, 0xae, 0xac, 0xa9, 0xa7, 0xa6, 0xa8, 0xaa, 0xab, 0xa9, 0xa7, 0xa7, 0xa4, 0xa2, 0xa1, 0xa0, 0x9c, 0x94, 0x8d, 0x86, 0x7e, 0x7f, 0x84, 0x83, 0x82, 0x7f, 0x78, 0x54, 0x76, 0x9c, 0xcc, 0xc5, 0xb8, 0xb2, 0xab, 0xad, 0xab, 0xae, 0xb5, 0xb7, 0xb2, 0xaa, 0xa6, 0xa3, 0xa1, 0xa1, 0xa3, 0xa3, 0xa7, 0xb5, 0xc6, 0xdb, 0xe0, 0xe0, 0xda, 0xd1, 0xc9, 0xc3, 0xbe, 0xc1, 0xbf, 0xbc, 0xb9, 0xb5, 0xb0, 0xa9, 0xa5, 0xa5, 0xa7, 0xac, 0xb0, 0xb0, 0xad, 0xac, 0xad, 0xb7, 0xb7, 0xb9, 0xbd, 0xc0, 0xc1, 0xc4, 0xc7, 0xce, 0xce, 0xce, 0xce, 0xce, 0xcd, 0xcd, 0xcc, 0xcd, 0xc7, 0xd0, 0xd1, 0xa4, 0x48, 0xab, 0xe9, 0x9e, 0x3c, 0x7d, 0xd9, 0x9d, 0x2d, 0x4b, 0xc8, 0xe5, 0xe4, 0xe8, 0xe8, 0xe5, 0x80, 0x3a, 0x9a, 0xcd, 0xc7, 0xc6, 0xc6, 0xc4, 0xc6, 0xc7, 0xc1, 0xc6, 0xd1, 0xd3, 0xd0, 0xd2, 0xd4, 0xd3, 0xd5, 0xdb, 0xb4, 0x9a, 0x9a, 0x9d, 0x9c, 0x9f, 0xa2, 0x9f, 0xa2, 0xa5, 0x9e, 0x9c, 0xa8, 0x85, 0x78, 0xc8, 0xd3, 0xcf, 0xb4, 0x62, 0xb2, 0x9f, 0x56, 0x74, 0x7b, 0x8b, 0x98, 0x9a, 0x92, 0x90, 0x93, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x90, 0x9f, 0xc6, 0xcc, 0xcf, 0xc9, 0xc4, 0xbe, 0xb5, 0xb5, 0xb5, 0xab, 0xad, 0x8e, 0x6f, 0xa5, 0x80, 0x5c, 0x7c, 0x66, 0x75, 0x91, 0x8b, 0x79, 0x6d, 0x63, 0x5a, 0x59, 0x5c, 0x60, 0x64, 0x67, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x65, 0x64, 0x62, 0x60, 0x5f, 0x5e, 0x5b, 0x5a, 0x58, 0x56, 0x53, 0x51, 0x4f, 0x4c, 0x49, 0x47, 0x45, 0x43, 0x40, 0x3e, 0x3d, 0x3b, 0x39, 0x38, 0x35, 0x3d, 0x4b, 0x5b, 0x6b, 0x75, 0x77, 0x75, 0x77, 0x76, 0x77, 0x76, 0x70, 0x6a, 0x6b, 0x6f, 0x6d, 0x68, 0x62, 0x5f, 0x61, 0x67, 0x6f, 0x75, 0x70, 0x6d, 0x65, 0x55, 0x40, 0x32, 0x34, 0x3c, 0x42, 0x46, 0x51, 0x52, 0x53, 0x4f, 0x4c, 0x5c, 0x76, 0x79, 0x73, 0x60, 0x48, 0x33, 0x33, 0x43, 0x36, 0x3d, 0x41, 0x41, 0x3f, 0x3d, 0x45, 0x55, 0x6e, 0x73, 0x74, 0x6b, 0x63, 0x5d, 0x70, 0x8b, 0x88, 0x8c, 0x91, 0x91, 0x8a, 0x7f, 0x76, 0x72, 0x8c, 0x8f, 0x83, 0x68, 0x4c, 0x3c, 0x31, 0x29, 0x36, 0x3a, 0x37, 0x2d, 0x27, 0x31, 0x47, 0x58, 0x73, 0x72, 0x63, 0x49, 0x3c, 0x4c, 0x6a, 0x7f, 0x6e, 0x5c, 0x4a, 0x45, 0x48, 0x4d, 0x54, 0x5a, 0x5d, 0x63, 0x68, 0x67, 0x60, 0x5a, 0x57, 0x58, 0x5e, 0x5a, 0x51, 0x43, 0x37, 0x32, 0x36, 0x3b, 0x4c, 0x5d, 0x65, 0x62, 0x5f, 0x57, 0x49, 0x40, 0x37, 0x29, 0x19, 0x18, 0x2e, 0x52, 0x71, 0x81, 0x84, 0x83, 0x83, 0x7a, 0x6b, 0x65, 0x63, 0x5d, 0x60, 0x5c, 0x5d, 0x5f, 0x5e, 0x5d, 0x56, 0x49, 0x4d, 0x45, 0x37, 0x28, 0x1b, 0x15, 0x14, 0x15, 0x5d, 0x5f, 0x61, 0x61, 0x60, 0x60, 0x63, 0x66, 0x67, 0x67, 0x69, 0x6a, 0x66, 0x5e, 0x59, 0x57, 0x5f, 0x65, 0x66, 0x5e, 0x57, 0x53, 0x52, 0x51, 0x53, 0x5e, 0x67, 0x6a, 0x6a, 0x6e, 0x75, 0x7b, 0x70, 0x6e, 0x67, 0x62, 0x63, 0x68, 0x68, 0x65, 0x6a, 0x6e, 0x6b, 0x5f, 0x53, 0x50, 0x54, 0x58, 0x61, 0x60, 0x60, 0x62, 0x64, 0x63, 0x5e, 0x5a, 0x56, 0x4d, 0x49, 0x4e, 0x58, 0x63, 0x6e, 0x77, 0x6e, 0x64, 0x5c, 0x5f, 0x6a, 0x6e, 0x66, 0x5c, 0x61, 0x60, 0x61, 0x65, 0x68, 0x67, 0x60, 0x5b, 0x5a, 0x57, 0x56, 0x59, 0x5a, 0x58, 0x5b, 0x61, 0x65, 0x6a, 0x6c, 0x68, 0x64, 0x65, 0x67, 0x66, 0x62, 0x5b, 0x5a, 0x65, 0x6e, 0x6d, 0x63, 0x5b, 0x59, 0x5f, 0x62, 0x5f, 0x5d, 0x62, 0x6d, 0x74, 0x7b, 0x79, 0x73, 0x6a, 0x63, 0x63, 0x6a, 0x70, 0x7b, 0x76, 0x70, 0x70, 0x75, 0x7f, 0x8c, 0x95, 0x96, 0x8e, 0x86, 0x84, 0x87, 0x84, 0x77, 0x6a, 0x6d, 0x73, 0x76, 0x78, 0x82, 0x8f, 0x91, 0x8a, 0x7b, 0x75, 0x73, 0x76, 0x76, 0x73, 0x76, 0x7c, 0x7c, 0x7e, 0x7e, 0x7b, 0x7a, 0x7b, 0x77, 0x71, 0x70, 0x72, 0x75, 0x77, 0x77, 0x74, 0x6f, 0x6c, 0x8f, 0xc2, 0xc8, 0xc4, 0xc8, 0xc6, 0xca, 0xc2, 0xc1, 0xc6, 0xca, 0xca, 0xcb, 0xcc, 0xcd, 0xcd, 0xcc, 0xcd, 0xcd, 0xcb, 0xc8, 0xc5, 0xc5, 0xc6, 0xc6, 0xc7, 0xc9, 0xcc, 0xcd, 0xcd, 0xca, 0xc7, 0xc7, 0xc9, 0xc9, 0xc7, 0xc4, 0xc0, 0xbf, 0xc0, 0xbd, 0xbb, 0xba, 0xbb, 0xbd, 0xc0, 0xc1, 0xc2, 0xc1, 0xc0, 0xbe, 0xbc, 0xba, 0xb8, 0xb7, 0xb7, 0xbc, 0xbc, 0xbc, 0xbd, 0xbf, 0xbe, 0xbd, 0xbb, 0xb8, 0xb7, 0xb4, 0xb1, 0xad, 0xaa, 0xa8, 0xa7, 0xaa, 0xa8, 0xa7, 0xa8, 0xab, 0xac, 0xac, 0xab, 0xac, 0xa7, 0xa2, 0xa2, 0xa6, 0xa9, 0xaa, 0xa8, 0xa9, 0xa5, 0xa3, 0xa2, 0xa2, 0x9f, 0x97, 0x91, 0x84, 0x7c, 0x7d, 0x83, 0x83, 0x82, 0x80, 0x7a, 0x55, 0x78, 0x9a, 0xc8, 0xc7, 0xbe, 0xb8, 0xac, 0xae, 0xac, 0xae, 0xb5, 0xb8, 0xb3, 0xac, 0xa8, 0xa2, 0xa0, 0xa1, 0xa3, 0xa4, 0xac, 0xc0, 0xd5, 0xe0, 0xe2, 0xdf, 0xd8, 0xcf, 0xc8, 0xc1, 0xbb, 0xbd, 0xbb, 0xb8, 0xb5, 0xb0, 0xac, 0xa8, 0xa6, 0xa8, 0xa9, 0xad, 0xb3, 0xb6, 0xb4, 0xb3, 0xb3, 0xc2, 0xc0, 0xbf, 0xc1, 0xc3, 0xc3, 0xc4, 0xc6, 0xca, 0xcb, 0xcc, 0xcc, 0xcd, 0xcd, 0xce, 0xce, 0xce, 0xd1, 0xcb, 0xd0, 0xbf, 0x4b, 0xa9, 0xec, 0xe3, 0x89, 0x48, 0xbc, 0xaf, 0x3a, 0x3d, 0xbd, 0xe8, 0xea, 0xe2, 0xdd, 0xe6, 0x61, 0x52, 0xa8, 0xce, 0xc9, 0xc7, 0xc5, 0xc0, 0xc1, 0xc1, 0xbb, 0xc2, 0xce, 0xd2, 0xcf, 0xd2, 0xd3, 0xd2, 0xd4, 0xd6, 0xb2, 0x9c, 0x9e, 0xa1, 0x9e, 0x9d, 0x9e, 0xa1, 0x97, 0x9c, 0x9f, 0x98, 0xa3, 0x8e, 0x8c, 0xce, 0xf0, 0xea, 0xba, 0x84, 0x90, 0x57, 0x59, 0x81, 0x79, 0x7a, 0x88, 0x97, 0x9a, 0x97, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x91, 0x90, 0x8d, 0x9c, 0xc5, 0xcc, 0xcf, 0xc8, 0xc4, 0xbf, 0xb5, 0xb6, 0xb3, 0xa6, 0xb2, 0x9c, 0x6a, 0x8d, 0x7e, 0x5d, 0x85, 0x6f, 0x77, 0x8a, 0x82, 0x75, 0x63, 0x57, 0x4e, 0x51, 0x5c, 0x64, 0x68, 0x68, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x62, 0x61, 0x60, 0x60, 0x5f, 0x5c, 0x59, 0x56, 0x55, 0x53, 0x50, 0x4e, 0x4c, 0x49, 0x46, 0x44, 0x43, 0x41, 0x3e, 0x3c, 0x3b, 0x3a, 0x39, 0x38, 0x3c, 0x4a, 0x5e, 0x6f, 0x75, 0x76, 0x78, 0x7a, 0x74, 0x73, 0x73, 0x74, 0x70, 0x6a, 0x6a, 0x6e, 0x67, 0x64, 0x5e, 0x5b, 0x66, 0x76, 0x7a, 0x74, 0x6f, 0x6b, 0x67, 0x62, 0x57, 0x4a, 0x43, 0x43, 0x4a, 0x44, 0x44, 0x41, 0x45, 0x4d, 0x5b, 0x79, 0x64, 0x52, 0x3d, 0x3a, 0x42, 0x3e, 0x35, 0x35, 0x38, 0x38, 0x30, 0x30, 0x39, 0x3c, 0x46, 0x5b, 0x70, 0x7b, 0x7f, 0x90, 0x85, 0x75, 0x5c, 0x5d, 0x6b, 0x6a, 0x6d, 0x74, 0x7a, 0x81, 0x8c, 0x97, 0x92, 0x97, 0x90, 0x78, 0x5f, 0x4f, 0x46, 0x3f, 0x39, 0x3e, 0x3f, 0x3a, 0x3a, 0x45, 0x58, 0x66, 0x60, 0x58, 0x45, 0x39, 0x4a, 0x64, 0x61, 0x4c, 0x48, 0x4c, 0x56, 0x5b, 0x54, 0x4d, 0x55, 0x63, 0x70, 0x6a, 0x60, 0x56, 0x50, 0x4e, 0x50, 0x52, 0x51, 0x4a, 0x45, 0x45, 0x4a, 0x4f, 0x4f, 0x4d, 0x58, 0x6f, 0x7c, 0x74, 0x60, 0x4d, 0x4a, 0x55, 0x49, 0x3b, 0x29, 0x20, 0x28, 0x41, 0x61, 0x77, 0x7e, 0x85, 0x89, 0x78, 0x5a, 0x4f, 0x57, 0x5e, 0x4e, 0x54, 0x5b, 0x58, 0x51, 0x56, 0x5e, 0x5d, 0x56, 0x52, 0x50, 0x54, 0x5a, 0x57, 0x49, 0x3c, 0x5e, 0x60, 0x63, 0x62, 0x5d, 0x59, 0x5d, 0x64, 0x63, 0x63, 0x63, 0x61, 0x5b, 0x54, 0x54, 0x59, 0x5e, 0x5d, 0x65, 0x60, 0x67, 0x5d, 0x5f, 0x59, 0x58, 0x5d, 0x63, 0x65, 0x66, 0x6a, 0x75, 0x80, 0x7f, 0x7b, 0x71, 0x66, 0x64, 0x68, 0x67, 0x62, 0x6e, 0x73, 0x70, 0x63, 0x56, 0x53, 0x57, 0x5b, 0x6a, 0x65, 0x60, 0x5e, 0x60, 0x61, 0x60, 0x5e, 0x5a, 0x5a, 0x56, 0x51, 0x54, 0x5e, 0x68, 0x6d, 0x63, 0x5e, 0x64, 0x6c, 0x68, 0x60, 0x56, 0x4c, 0x56, 0x5f, 0x65, 0x62, 0x5f, 0x60, 0x61, 0x5e, 0x64, 0x5f, 0x59, 0x54, 0x54, 0x5b, 0x65, 0x6c, 0x67, 0x73, 0x7c, 0x79, 0x71, 0x6a, 0x66, 0x63, 0x5e, 0x65, 0x62, 0x64, 0x6d, 0x6b, 0x67, 0x70, 0x77, 0x76, 0x72, 0x6d, 0x6d, 0x71, 0x74, 0x74, 0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x6a, 0x6c, 0x6f, 0x70, 0x74, 0x72, 0x6a, 0x6d, 0x7c, 0x85, 0x86, 0x89, 0x8c, 0x8f, 0x8e, 0x88, 0x7f, 0x74, 0x6c, 0x6a, 0x6b, 0x6d, 0x6e, 0x71, 0x76, 0x7a, 0x7b, 0x76, 0x74, 0x73, 0x72, 0x70, 0x6d, 0x6d, 0x6f, 0x79, 0x7e, 0x7f, 0x79, 0x73, 0x72, 0x76, 0x7a, 0x76, 0x7f, 0x7c, 0x78, 0x7c, 0x78, 0x75, 0x7d, 0xb9, 0xbe, 0xc4, 0xc7, 0xc5, 0xc3, 0xc3, 0xc4, 0xc3, 0xc6, 0xca, 0xca, 0xc8, 0xc8, 0xca, 0xcd, 0xcc, 0xc8, 0xc4, 0xc2, 0xc4, 0xc6, 0xc7, 0xc8, 0xc8, 0xc7, 0xc7, 0xc6, 0xc6, 0xc7, 0xc7, 0xc8, 0xcc, 0xcb, 0xca, 0xc8, 0xc5, 0xc3, 0xc2, 0xc1, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbf, 0xc1, 0xc2, 0xbf, 0xbe, 0xbc, 0xb9, 0xb7, 0xb6, 0xb8, 0xba, 0xb8, 0xbb, 0xbe, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xba, 0xba, 0xb8, 0xb2, 0xaf, 0xae, 0xac, 0xaa, 0xac, 0xac, 0xab, 0xaa, 0xa9, 0xa9, 0xaa, 0xab, 0xa9, 0xa6, 0xa4, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4, 0xa6, 0xa8, 0xa8, 0xa5, 0xa1, 0x9d, 0x96, 0x90, 0x80, 0x84, 0x78, 0x7d, 0x82, 0x7f, 0x80, 0x71, 0x60, 0x85, 0x9e, 0xc7, 0xc7, 0xc3, 0xba, 0xb0, 0xb0, 0xad, 0xae, 0xb3, 0xb7, 0xb3, 0xab, 0xa6, 0xa3, 0xa3, 0xa4, 0xa5, 0xa6, 0xb2, 0xcc, 0xe4, 0xe4, 0xdd, 0xd9, 0xd4, 0xca, 0xc5, 0xc1, 0xb9, 0xbe, 0xb8, 0xb3, 0xb2, 0xab, 0xa2, 0xa2, 0xaa, 0xaa, 0xad, 0xb3, 0xb9, 0xba, 0xb5, 0xb0, 0xae, 0xbf, 0xc0, 0xc1, 0xc3, 0xc6, 0xc7, 0xc7, 0xc7, 0xca, 0xcf, 0xce, 0xcb, 0xca, 0xd3, 0xd5, 0xcf, 0xc3, 0xbf, 0xc4, 0xd1, 0xd4, 0x6d, 0x8c, 0xdf, 0xe2, 0xc5, 0x51, 0x6e, 0xb7, 0x31, 0x3e, 0xae, 0xe9, 0xec, 0xda, 0xf1, 0xcc, 0x59, 0x5b, 0xba, 0xca, 0xc8, 0xc6, 0xc3, 0xc1, 0xc0, 0xc1, 0xc3, 0xcb, 0xd4, 0xce, 0xd0, 0xd6, 0xd4, 0xd7, 0xd5, 0xda, 0xb6, 0x9e, 0x9d, 0x9e, 0x9d, 0x9e, 0x9d, 0xa2, 0x9c, 0x97, 0xa4, 0x9a, 0x9b, 0x78, 0xa2, 0xe5, 0xd1, 0xd1, 0xe8, 0xdd, 0x9c, 0x6b, 0xb9, 0xe4, 0xe0, 0x87, 0x8d, 0x97, 0x97, 0x95, 0x95, 0x96, 0x94, 0x93, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8c, 0x9f, 0xcb, 0xcc, 0xca, 0xcb, 0xcc, 0xbf, 0xb7, 0xb7, 0xb0, 0xb4, 0xab, 0xb3, 0x7c, 0x6b, 0x7a, 0x6d, 0x81, 0x78, 0x79, 0x83, 0x84, 0x6b, 0x51, 0x4c, 0x4b, 0x54, 0x5e, 0x63, 0x65, 0x67, 0x66, 0x67, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5a, 0x57, 0x55, 0x53, 0x50, 0x4e, 0x4b, 0x4a, 0x48, 0x46, 0x45, 0x3f, 0x3e, 0x3a, 0x36, 0x36, 0x38, 0x39, 0x38, 0x4a, 0x60, 0x6d, 0x6f, 0x76, 0x7b, 0x78, 0x74, 0x82, 0x82, 0x79, 0x71, 0x70, 0x6c, 0x6a, 0x6e, 0x6b, 0x68, 0x5d, 0x61, 0x67, 0x69, 0x6e, 0x68, 0x68, 0x6e, 0x6f, 0x67, 0x5e, 0x5c, 0x5e, 0x5f, 0x4b, 0x42, 0x3b, 0x2b, 0x3e, 0x4e, 0x62, 0x61, 0x57, 0x5d, 0x61, 0x62, 0x61, 0x59, 0x47, 0x36, 0x34, 0x2b, 0x27, 0x2b, 0x31, 0x37, 0x43, 0x4f, 0x60, 0x6d, 0x74, 0x7b, 0x76, 0x51, 0x37, 0x42, 0x5b, 0x70, 0x81, 0x81, 0x7a, 0x76, 0x73, 0x70, 0x6d, 0x6a, 0x63, 0x5d, 0x5f, 0x64, 0x5f, 0x55, 0x4d, 0x4b, 0x4e, 0x55, 0x59, 0x57, 0x53, 0x51, 0x50, 0x48, 0x3d, 0x39, 0x40, 0x4b, 0x4d, 0x4a, 0x52, 0x5e, 0x63, 0x61, 0x6a, 0x80, 0x8e, 0x90, 0x75, 0x56, 0x4f, 0x59, 0x54, 0x4d, 0x54, 0x5b, 0x53, 0x50, 0x53, 0x56, 0x54, 0x57, 0x5e, 0x5f, 0x62, 0x67, 0x70, 0x73, 0x74, 0x7b, 0x7b, 0x71, 0x4d, 0x48, 0x3b, 0x3e, 0x46, 0x3d, 0x43, 0x63, 0x72, 0x76, 0x61, 0x44, 0x43, 0x56, 0x61, 0x61, 0x35, 0x1a, 0x2f, 0x4a, 0x55, 0x59, 0x54, 0x5f, 0x71, 0x59, 0x45, 0x49, 0x5a, 0x68, 0x70, 0x75, 0x5b, 0x60, 0x66, 0x68, 0x63, 0x5d, 0x5e, 0x62, 0x67, 0x64, 0x63, 0x64, 0x64, 0x5f, 0x5d, 0x5d, 0x5b, 0x61, 0x6d, 0x70, 0x75, 0x6f, 0x6f, 0x6c, 0x65, 0x67, 0x69, 0x68, 0x66, 0x69, 0x71, 0x7a, 0x7e, 0x7b, 0x74, 0x6e, 0x6b, 0x6b, 0x68, 0x64, 0x67, 0x70, 0x75, 0x6d, 0x61, 0x56, 0x4e, 0x4a, 0x5a, 0x5f, 0x62, 0x5f, 0x57, 0x51, 0x52, 0x56, 0x59, 0x5b, 0x5b, 0x5b, 0x60, 0x68, 0x6d, 0x6d, 0x69, 0x67, 0x6c, 0x6b, 0x5f, 0x58, 0x5b, 0x5d, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b, 0x6c, 0x6a, 0x66, 0x62, 0x64, 0x65, 0x65, 0x65, 0x67, 0x6c, 0x70, 0x6c, 0x73, 0x76, 0x70, 0x68, 0x66, 0x68, 0x69, 0x7a, 0x81, 0x7a, 0x71, 0x75, 0x76, 0x73, 0x76, 0x7b, 0x78, 0x71, 0x6b, 0x6b, 0x70, 0x73, 0x73, 0x71, 0x76, 0x79, 0x75, 0x6e, 0x6b, 0x6d, 0x71, 0x79, 0x7c, 0x73, 0x65, 0x6b, 0x82, 0x8e, 0x89, 0x8a, 0x89, 0x89, 0x87, 0x82, 0x79, 0x70, 0x6b, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x76, 0x77, 0x77, 0x76, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x72, 0x76, 0x76, 0x76, 0x74, 0x73, 0x76, 0x7a, 0x7b, 0x79, 0x84, 0x82, 0x75, 0x6d, 0x73, 0x79, 0x85, 0x98, 0xb9, 0xbd, 0xc2, 0xc4, 0xc3, 0xc3, 0xc5, 0xc7, 0xc4, 0xc7, 0xc9, 0xca, 0xc8, 0xc8, 0xca, 0xcc, 0xca, 0xc9, 0xc7, 0xc6, 0xc5, 0xc4, 0xc3, 0xc2, 0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xc5, 0xc6, 0xc7, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc2, 0xc1, 0xc0, 0xbf, 0xbe, 0xbd, 0xbd, 0xbd, 0xbf, 0xbf, 0xbe, 0xbc, 0xb9, 0xb7, 0xb6, 0xb6, 0xb5, 0xb7, 0xb9, 0xba, 0xba, 0xbb, 0xbd, 0xbe, 0xbc, 0xbf, 0xc0, 0xbd, 0xb9, 0xb6, 0xb0, 0xaa, 0xa9, 0xaa, 0xab, 0xab, 0xa9, 0xa7, 0xa6, 0xa5, 0xa7, 0xa5, 0xa2, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa1, 0xa3, 0xa3, 0xa0, 0x9d, 0x9a, 0x94, 0x8e, 0x82, 0x83, 0x77, 0x7d, 0x83, 0x80, 0x7f, 0x6e, 0x6d, 0x8a, 0xa6, 0xcd, 0xc7, 0xc1, 0xbd, 0xb4, 0xaf, 0xac, 0xad, 0xb3, 0xb6, 0xb2, 0xaa, 0xa5, 0x9e, 0xa4, 0xa4, 0xa0, 0xa9, 0xc1, 0xd8, 0xe4, 0xe0, 0xd8, 0xd2, 0xca, 0xbf, 0xbc, 0xbe, 0xbc, 0xbc, 0xb6, 0xb1, 0xae, 0xa9, 0xa3, 0xa4, 0xaa, 0xaf, 0xb2, 0xb8, 0xbf, 0xc0, 0xbc, 0xb7, 0xb5, 0xc5, 0xc6, 0xc7, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xca, 0xce, 0xcf, 0xcd, 0xcd, 0xcf, 0xca, 0x9e, 0x59, 0x43, 0x56, 0x9d, 0xd5, 0x91, 0x57, 0xe2, 0xe8, 0xda, 0x7a, 0x42, 0x7b, 0x3e, 0x42, 0x94, 0xe9, 0xe9, 0xe6, 0xde, 0x9f, 0x4a, 0x79, 0xc8, 0xc7, 0xc6, 0xc4, 0xc1, 0xbf, 0xbe, 0xbe, 0xbe, 0xc5, 0xd1, 0xce, 0xd0, 0xd3, 0xd1, 0xd6, 0xd7, 0xdc, 0xb9, 0xa0, 0x9f, 0xa0, 0x9f, 0x9e, 0x9d, 0x9b, 0x9c, 0x9b, 0xa1, 0x9f, 0x8b, 0x82, 0xc2, 0xeb, 0xd0, 0xcc, 0xd5, 0xd9, 0xd7, 0xc4, 0xd1, 0xea, 0xd3, 0x84, 0x92, 0x9e, 0x9c, 0x91, 0x91, 0x97, 0x95, 0x94, 0x93, 0x93, 0x93, 0x92, 0x91, 0x8e, 0xa1, 0xcd, 0xce, 0xcc, 0xcc, 0xcd, 0xc0, 0xb8, 0xb4, 0xab, 0xaf, 0xab, 0xb7, 0x88, 0x80, 0x74, 0x7e, 0x84, 0x7a, 0x86, 0x8e, 0x7a, 0x58, 0x46, 0x46, 0x4c, 0x55, 0x5d, 0x61, 0x64, 0x68, 0x66, 0x66, 0x67, 0x66, 0x65, 0x64, 0x62, 0x61, 0x5f, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x54, 0x52, 0x50, 0x4d, 0x4a, 0x48, 0x47, 0x45, 0x43, 0x41, 0x3c, 0x3c, 0x3c, 0x3a, 0x38, 0x3a, 0x44, 0x50, 0x60, 0x6d, 0x6f, 0x6a, 0x6e, 0x73, 0x73, 0x71, 0x6d, 0x75, 0x75, 0x73, 0x70, 0x68, 0x61, 0x63, 0x5a, 0x61, 0x60, 0x66, 0x66, 0x63, 0x69, 0x67, 0x68, 0x6e, 0x71, 0x71, 0x72, 0x7b, 0x84, 0x89, 0x93, 0x86, 0x75, 0x59, 0x59, 0x57, 0x5c, 0x54, 0x58, 0x5e, 0x5f, 0x57, 0x4d, 0x44, 0x39, 0x30, 0x29, 0x22, 0x1f, 0x23, 0x25, 0x26, 0x2a, 0x31, 0x48, 0x5d, 0x66, 0x6e, 0x77, 0x65, 0x44, 0x38, 0x4a, 0x61, 0x72, 0x6f, 0x61, 0x56, 0x4e, 0x48, 0x52, 0x53, 0x52, 0x51, 0x56, 0x5b, 0x56, 0x4d, 0x59, 0x4f, 0x44, 0x42, 0x43, 0x43, 0x44, 0x46, 0x3b, 0x3b, 0x3b, 0x3c, 0x40, 0x46, 0x4e, 0x55, 0x4a, 0x4d, 0x4f, 0x52, 0x5a, 0x5f, 0x5a, 0x51, 0x4d, 0x3c, 0x43, 0x5b, 0x66, 0x65, 0x5d, 0x50, 0x44, 0x55, 0x71, 0x87, 0x90, 0x90, 0x81, 0x6b, 0x5a, 0x5f, 0x68, 0x6b, 0x6a, 0x6d, 0x69, 0x5d, 0x66, 0x5e, 0x49, 0x42, 0x48, 0x40, 0x3d, 0x4e, 0x62, 0x67, 0x52, 0x38, 0x41, 0x5b, 0x61, 0x56, 0x40, 0x27, 0x20, 0x29, 0x3b, 0x53, 0x66, 0x77, 0x6e, 0x75, 0x75, 0x6c, 0x62, 0x61, 0x67, 0x6d, 0x5c, 0x60, 0x66, 0x69, 0x66, 0x61, 0x62, 0x65, 0x69, 0x64, 0x61, 0x65, 0x69, 0x68, 0x62, 0x5e, 0x61, 0x6b, 0x73, 0x78, 0x6e, 0x67, 0x5e, 0x5d, 0x61, 0x64, 0x66, 0x65, 0x63, 0x63, 0x67, 0x6a, 0x6c, 0x69, 0x69, 0x6b, 0x6b, 0x67, 0x63, 0x60, 0x6c, 0x70, 0x72, 0x6c, 0x62, 0x58, 0x51, 0x4d, 0x53, 0x5a, 0x61, 0x5f, 0x58, 0x54, 0x58, 0x5d, 0x5e, 0x60, 0x62, 0x64, 0x69, 0x6e, 0x6f, 0x6d, 0x6d, 0x6a, 0x6b, 0x68, 0x5d, 0x5c, 0x67, 0x6d, 0x68, 0x62, 0x5f, 0x63, 0x69, 0x6a, 0x68, 0x66, 0x67, 0x6a, 0x6d, 0x6c, 0x68, 0x65, 0x64, 0x65, 0x6e, 0x71, 0x70, 0x6b, 0x67, 0x6a, 0x73, 0x7a, 0x88, 0x8c, 0x7f, 0x6e, 0x6f, 0x75, 0x75, 0x74, 0x74, 0x73, 0x6e, 0x6a, 0x6d, 0x74, 0x7b, 0x7d, 0x7e, 0x7b, 0x75, 0x6f, 0x6d, 0x6f, 0x76, 0x7c, 0x7f, 0x81, 0x76, 0x68, 0x73, 0x8d, 0x95, 0x8a, 0x8b, 0x86, 0x84, 0x85, 0x81, 0x77, 0x6f, 0x6c, 0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x79, 0x77, 0x75, 0x73, 0x6f, 0x6d, 0x70, 0x75, 0x6d, 0x70, 0x77, 0x85, 0x95, 0x9a, 0x91, 0x84, 0x75, 0x70, 0x67, 0x67, 0x6f, 0x7a, 0x8f, 0xa9, 0xbd, 0xc0, 0xc2, 0xc3, 0xc3, 0xc3, 0xc5, 0xc7, 0xbe, 0xc0, 0xc2, 0xc2, 0xc1, 0xc0, 0xc1, 0xc3, 0xc8, 0xc8, 0xc8, 0xc7, 0xc5, 0xc5, 0xc6, 0xc7, 0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc7, 0xc4, 0xc4, 0xc3, 0xc2, 0xc0, 0xbd, 0xba, 0xb9, 0xbc, 0xbe, 0xbf, 0xbf, 0xbc, 0xb8, 0xb5, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb7, 0xb9, 0xbd, 0xbf, 0xc0, 0xc3, 0xc6, 0xc4, 0xc1, 0xbc, 0xb5, 0xaf, 0xa7, 0xa9, 0xab, 0xac, 0xac, 0xaa, 0xa7, 0xa5, 0xa9, 0xa7, 0xa5, 0xa3, 0xa3, 0xa3, 0xa2, 0xa1, 0x9e, 0x9f, 0x9f, 0x9c, 0x9a, 0x98, 0x92, 0x8d, 0x84, 0x81, 0x77, 0x7c, 0x84, 0x82, 0x7c, 0x6d, 0x7f, 0x8e, 0xad, 0xd1, 0xc5, 0xbe, 0xbf, 0xb7, 0xaf, 0xad, 0xae, 0xb2, 0xb3, 0xaf, 0xa8, 0xa4, 0x9d, 0xa4, 0xa2, 0xa1, 0xb3, 0xd3, 0xe4, 0xe2, 0xdc, 0xd5, 0xd0, 0xc6, 0xb9, 0xb7, 0xbb, 0xbb, 0xb9, 0xb4, 0xad, 0xa8, 0xa6, 0xa6, 0xa7, 0xa8, 0xac, 0xae, 0xb5, 0xbd, 0xbf, 0xbc, 0xb8, 0xb7, 0xc8, 0xca, 0xcc, 0xcc, 0xca, 0xc9, 0xc9, 0xca, 0xcb, 0xca, 0xcd, 0xcb, 0xcd, 0xca, 0xc2, 0x66, 0x33, 0x39, 0x44, 0x4a, 0xae, 0xd0, 0x58, 0xa2, 0xe7, 0xe1, 0xaa, 0x35, 0x4a, 0x45, 0x40, 0x8f, 0xe6, 0xea, 0xe7, 0xc0, 0x61, 0x4c, 0x9f, 0xd3, 0xc6, 0xc5, 0xc3, 0xc1, 0xbf, 0xbd, 0xbc, 0xbc, 0xc3, 0xd0, 0xce, 0xcf, 0xd1, 0xcd, 0xd3, 0xd6, 0xde, 0xbb, 0xa2, 0xa1, 0xa1, 0x9f, 0x9e, 0x9d, 0x98, 0x9c, 0x9b, 0x9b, 0x9b, 0x76, 0x86, 0xcf, 0xe4, 0xe4, 0xe7, 0xde, 0xe0, 0xe8, 0xec, 0xe4, 0xe6, 0xbf, 0x85, 0x92, 0x97, 0x99, 0x92, 0x9d, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x93, 0x91, 0x8f, 0xa2, 0xcd, 0xd0, 0xcd, 0xcc, 0xcc, 0xc0, 0xb3, 0xb0, 0xab, 0xb2, 0xb0, 0xb2, 0x81, 0x7d, 0xa8, 0xab, 0x85, 0x71, 0x79, 0x7d, 0x64, 0x4f, 0x3f, 0x45, 0x4f, 0x58, 0x5c, 0x5e, 0x62, 0x68, 0x66, 0x66, 0x65, 0x64, 0x63, 0x61, 0x5f, 0x5d, 0x5d, 0x5b, 0x59, 0x57, 0x56, 0x53, 0x51, 0x4e, 0x4d, 0x4a, 0x47, 0x45, 0x43, 0x42, 0x3f, 0x3e, 0x3d, 0x3c, 0x3b, 0x39, 0x34, 0x37, 0x48, 0x5a, 0x74, 0x7a, 0x75, 0x6d, 0x6f, 0x74, 0x74, 0x74, 0x70, 0x76, 0x75, 0x6e, 0x68, 0x5f, 0x5a, 0x5f, 0x57, 0x64, 0x69, 0x6d, 0x66, 0x60, 0x69, 0x6d, 0x69, 0x6d, 0x70, 0x74, 0x7a, 0x84, 0x8c, 0x90, 0x7e, 0x78, 0x6f, 0x5d, 0x5f, 0x61, 0x66, 0x60, 0x60, 0x51, 0x3f, 0x38, 0x40, 0x4b, 0x47, 0x3b, 0x28, 0x22, 0x20, 0x22, 0x23, 0x22, 0x23, 0x27, 0x34, 0x45, 0x4b, 0x52, 0x64, 0x66, 0x57, 0x50, 0x63, 0x70, 0x72, 0x60, 0x4b, 0x40, 0x3f, 0x3e, 0x47, 0x40, 0x2e, 0x18, 0x0f, 0x1a, 0x2d, 0x3a, 0x3a, 0x32, 0x2b, 0x2c, 0x30, 0x33, 0x35, 0x36, 0x34, 0x37, 0x3a, 0x38, 0x2e, 0x28, 0x30, 0x3d, 0x44, 0x42, 0x44, 0x50, 0x5a, 0x5d, 0x58, 0x53, 0x51, 0x59, 0x69, 0x70, 0x6b, 0x72, 0x86, 0x94, 0x9b, 0x9a, 0x96, 0x8b, 0x83, 0x80, 0x6e, 0x51, 0x3e, 0x48, 0x5a, 0x6a, 0x75, 0x81, 0x85, 0x7d, 0x66, 0x69, 0x5f, 0x58, 0x57, 0x48, 0x3a, 0x3d, 0x4b, 0x54, 0x52, 0x4d, 0x55, 0x5d, 0x56, 0x4c, 0x3b, 0x31, 0x19, 0x15, 0x2a, 0x44, 0x5f, 0x6b, 0x6e, 0x73, 0x78, 0x7d, 0x7c, 0x73, 0x62, 0x53, 0x5f, 0x60, 0x61, 0x63, 0x63, 0x63, 0x68, 0x6f, 0x6d, 0x68, 0x65, 0x66, 0x6b, 0x6b, 0x68, 0x64, 0x63, 0x6f, 0x71, 0x76, 0x64, 0x5f, 0x54, 0x55, 0x5c, 0x63, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6c, 0x6b, 0x6f, 0x78, 0x7b, 0x76, 0x72, 0x73, 0x73, 0x73, 0x72, 0x6f, 0x6a, 0x66, 0x64, 0x62, 0x5a, 0x59, 0x58, 0x5c, 0x62, 0x67, 0x6a, 0x6b, 0x65, 0x66, 0x66, 0x67, 0x69, 0x6a, 0x6b, 0x6b, 0x71, 0x68, 0x65, 0x64, 0x62, 0x66, 0x6b, 0x69, 0x63, 0x5f, 0x61, 0x69, 0x6f, 0x6d, 0x6d, 0x6f, 0x73, 0x71, 0x6d, 0x69, 0x65, 0x62, 0x62, 0x62, 0x64, 0x65, 0x62, 0x5d, 0x5b, 0x62, 0x6d, 0x76, 0x84, 0x7d, 0x6c, 0x60, 0x63, 0x6b, 0x6e, 0x6d, 0x6a, 0x6d, 0x6e, 0x6c, 0x6e, 0x76, 0x80, 0x86, 0x88, 0x7a, 0x6b, 0x67, 0x6f, 0x79, 0x7e, 0x7f, 0x7d, 0x7e, 0x79, 0x75, 0x83, 0x96, 0x96, 0x88, 0x88, 0x82, 0x80, 0x83, 0x80, 0x76, 0x6f, 0x6d, 0x6c, 0x68, 0x67, 0x6a, 0x70, 0x74, 0x75, 0x75, 0x76, 0x74, 0x72, 0x6f, 0x6a, 0x68, 0x6c, 0x72, 0x6e, 0x72, 0x7a, 0x85, 0x8f, 0x8e, 0x7f, 0x6e, 0x65, 0x61, 0x60, 0x65, 0x6a, 0x74, 0x8f, 0xad, 0xbe, 0xbf, 0xc0, 0xbf, 0xbd, 0xbc, 0xbb, 0xbc, 0xc0, 0xc1, 0xc3, 0xc3, 0xc2, 0xc1, 0xc1, 0xc2, 0xc3, 0xc2, 0xc1, 0xbf, 0xbf, 0xc2, 0xc8, 0xcc, 0xc5, 0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc2, 0xc3, 0xc4, 0xc5, 0xc5, 0xc4, 0xc1, 0xbe, 0xbb, 0xbb, 0xbd, 0xc0, 0xc0, 0xbd, 0xba, 0xb8, 0xb7, 0xb8, 0xb7, 0xb5, 0xb5, 0xb6, 0xb9, 0xbd, 0xc0, 0xc1, 0xc4, 0xc5, 0xc3, 0xc0, 0xbe, 0xba, 0xb6, 0xac, 0xab, 0xab, 0xac, 0xad, 0xad, 0xad, 0xad, 0xab, 0xaa, 0xa8, 0xa7, 0xa6, 0xa6, 0xa5, 0xa3, 0xa0, 0xa1, 0xa0, 0x9d, 0x9b, 0x99, 0x93, 0x8d, 0x84, 0x80, 0x7a, 0x7e, 0x84, 0x83, 0x7b, 0x70, 0x8d, 0x8e, 0xae, 0xce, 0xc2, 0xba, 0xbf, 0xb6, 0xb2, 0xb0, 0xb0, 0xb2, 0xb1, 0xab, 0xa5, 0xa2, 0xa3, 0xa0, 0xa0, 0xad, 0xc8, 0xe0, 0xe6, 0xe0, 0xda, 0xd4, 0xd1, 0xcb, 0xc0, 0xbb, 0xba, 0xb5, 0xb6, 0xb2, 0xaa, 0xa3, 0xa3, 0xa7, 0xa9, 0xa7, 0xb0, 0xb3, 0xba, 0xc3, 0xc6, 0xc4, 0xc1, 0xc1, 0xc7, 0xca, 0xcd, 0xcd, 0xca, 0xc8, 0xc9, 0xca, 0xcb, 0xc8, 0xcb, 0xc8, 0xca, 0xc7, 0xc3, 0x4b, 0x3a, 0xb1, 0xcc, 0x71, 0x5f, 0xbe, 0x86, 0x84, 0xdd, 0xe6, 0xcc, 0x57, 0x3b, 0x49, 0x3c, 0x8e, 0xe5, 0xf0, 0xca, 0x84, 0x33, 0x74, 0xc5, 0xcb, 0xc8, 0xc6, 0xc3, 0xc1, 0xc0, 0xc0, 0xbf, 0xbf, 0xc7, 0xd3, 0xd0, 0xd0, 0xd1, 0xcd, 0xd1, 0xd1, 0xdf, 0xbb, 0xa3, 0xa1, 0xa1, 0x9e, 0x9d, 0x9b, 0x9a, 0x9d, 0x9b, 0x9a, 0x8e, 0x72, 0x94, 0xcc, 0xe2, 0xe9, 0xe1, 0xde, 0xe8, 0xb9, 0xa4, 0xac, 0x9a, 0x88, 0x83, 0x9b, 0x9a, 0x9b, 0x91, 0x9e, 0x97, 0x96, 0x95, 0x94, 0x95, 0x94, 0x93, 0x91, 0x8c, 0x9e, 0xcb, 0xcf, 0xcd, 0xca, 0xca, 0xbf, 0xb1, 0xae, 0xad, 0xb3, 0xb2, 0xa7, 0x77, 0x7b, 0xbc, 0xad, 0x79, 0x6d, 0x69, 0x64, 0x51, 0x4a, 0x43, 0x4b, 0x54, 0x5b, 0x5c, 0x5d, 0x61, 0x65, 0x65, 0x64, 0x64, 0x62, 0x61, 0x5f, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x54, 0x52, 0x50, 0x4d, 0x4b, 0x4a, 0x48, 0x45, 0x43, 0x41, 0x3f, 0x3d, 0x3c, 0x39, 0x39, 0x38, 0x39, 0x41, 0x50, 0x62, 0x6f, 0x69, 0x6e, 0x6b, 0x68, 0x6d, 0x6f, 0x6c, 0x6b, 0x77, 0x7a, 0x75, 0x6e, 0x6a, 0x64, 0x61, 0x65, 0x65, 0x6e, 0x6e, 0x6d, 0x65, 0x60, 0x6b, 0x6f, 0x69, 0x6b, 0x6e, 0x72, 0x76, 0x79, 0x79, 0x77, 0x79, 0x77, 0x6f, 0x5e, 0x54, 0x4f, 0x4d, 0x48, 0x4a, 0x39, 0x2a, 0x2e, 0x45, 0x57, 0x51, 0x41, 0x44, 0x3b, 0x33, 0x2e, 0x29, 0x25, 0x22, 0x23, 0x2e, 0x38, 0x3e, 0x42, 0x47, 0x44, 0x48, 0x57, 0x5f, 0x65, 0x5f, 0x4a, 0x36, 0x2f, 0x2f, 0x2f, 0x41, 0x48, 0x56, 0x66, 0x73, 0x71, 0x5e, 0x49, 0x43, 0x3e, 0x38, 0x34, 0x30, 0x2d, 0x2b, 0x2a, 0x29, 0x27, 0x28, 0x26, 0x1c, 0x16, 0x20, 0x30, 0x3e, 0x40, 0x45, 0x49, 0x4a, 0x48, 0x46, 0x45, 0x41, 0x44, 0x4e, 0x5d, 0x69, 0x75, 0x80, 0x87, 0x95, 0x8f, 0x88, 0x80, 0x7d, 0x80, 0x76, 0x60, 0x54, 0x58, 0x64, 0x6c, 0x6e, 0x72, 0x71, 0x68, 0x6d, 0x67, 0x5a, 0x55, 0x56, 0x4b, 0x3e, 0x3f, 0x49, 0x51, 0x5d, 0x68, 0x5f, 0x44, 0x35, 0x3d, 0x3d, 0x42, 0x28, 0x22, 0x30, 0x3a, 0x4e, 0x53, 0x60, 0x65, 0x73, 0x86, 0x8c, 0x81, 0x72, 0x69, 0x5f, 0x5d, 0x5d, 0x5f, 0x61, 0x65, 0x6d, 0x74, 0x72, 0x71, 0x6e, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x7a, 0x80, 0x7c, 0x7b, 0x66, 0x62, 0x57, 0x5a, 0x53, 0x5a, 0x60, 0x61, 0x61, 0x62, 0x62, 0x61, 0x5f, 0x5e, 0x63, 0x6c, 0x6e, 0x69, 0x66, 0x67, 0x6f, 0x72, 0x78, 0x7d, 0x7e, 0x79, 0x72, 0x6e, 0x61, 0x5b, 0x57, 0x5a, 0x64, 0x6b, 0x6b, 0x68, 0x62, 0x64, 0x66, 0x67, 0x66, 0x64, 0x65, 0x67, 0x71, 0x68, 0x63, 0x61, 0x60, 0x65, 0x66, 0x60, 0x6b, 0x6e, 0x76, 0x7c, 0x79, 0x71, 0x70, 0x74, 0x78, 0x73, 0x6d, 0x6a, 0x6c, 0x6f, 0x70, 0x71, 0x68, 0x65, 0x60, 0x5a, 0x58, 0x5e, 0x6b, 0x76, 0x85, 0x70, 0x5f, 0x5d, 0x61, 0x66, 0x69, 0x69, 0x65, 0x6d, 0x73, 0x72, 0x70, 0x76, 0x80, 0x88, 0x85, 0x7a, 0x6f, 0x6e, 0x76, 0x7b, 0x79, 0x75, 0x79, 0x76, 0x76, 0x7e, 0x8c, 0x93, 0x90, 0x88, 0x84, 0x7e, 0x7a, 0x7a, 0x79, 0x73, 0x71, 0x72, 0x70, 0x68, 0x63, 0x65, 0x6a, 0x6d, 0x6f, 0x71, 0x71, 0x6f, 0x6c, 0x6a, 0x66, 0x65, 0x69, 0x6f, 0x78, 0x7b, 0x7c, 0x7d, 0x7f, 0x7f, 0x7b, 0x76, 0x72, 0x6a, 0x66, 0x65, 0x63, 0x6f, 0x93, 0xb5, 0xba, 0xbb, 0xbc, 0xbc, 0xba, 0xb7, 0xb4, 0xb3, 0xb5, 0xb6, 0xb6, 0xb7, 0xb6, 0xb5, 0xb5, 0xb6, 0xbd, 0xbd, 0xbc, 0xba, 0xb9, 0xbb, 0xc0, 0xc4, 0xc2, 0xc2, 0xc1, 0xc1, 0xc1, 0xc2, 0xc3, 0xc3, 0xc2, 0xc2, 0xc1, 0xc0, 0xbf, 0xbf, 0xbe, 0xbe, 0xc0, 0xc2, 0xc5, 0xc6, 0xc7, 0xc6, 0xc4, 0xc2, 0xc1, 0xc2, 0xc3, 0xc2, 0xc0, 0xbe, 0xbc, 0xbc, 0xbd, 0xba, 0xb7, 0xb5, 0xb5, 0xb8, 0xbb, 0xbd, 0xbd, 0xc0, 0xc2, 0xc1, 0xc1, 0xc0, 0xbe, 0xba, 0xb3, 0xaf, 0xab, 0xa8, 0xa9, 0xab, 0xad, 0xae, 0xab, 0xaa, 0xa9, 0xa9, 0xaa, 0xa9, 0xa8, 0xa7, 0xa7, 0xa7, 0xa5, 0xa2, 0xa0, 0x9d, 0x96, 0x8f, 0x82, 0x7d, 0x7e, 0x80, 0x83, 0x83, 0x7b, 0x77, 0x92, 0x8b, 0xac, 0xc5, 0xbe, 0xb9, 0xbc, 0xb4, 0xb4, 0xb2, 0xb2, 0xb2, 0xae, 0xa7, 0xa2, 0xa0, 0xa6, 0x9b, 0xa1, 0xc1, 0xde, 0xe6, 0xe2, 0xe0, 0xd7, 0xcf, 0xcc, 0xca, 0xc3, 0xbf, 0xbb, 0xb3, 0xb4, 0xaf, 0xa7, 0xa1, 0xa2, 0xa8, 0xa9, 0xa7, 0xb0, 0xb3, 0xbb, 0xc4, 0xc8, 0xc7, 0xc5, 0xc5, 0xc7, 0xcb, 0xce, 0xcd, 0xca, 0xc7, 0xc7, 0xc9, 0xc9, 0xc8, 0xce, 0xca, 0xcb, 0xc8, 0xc8, 0x53, 0x4f, 0xcb, 0xeb, 0xc3, 0x5a, 0x9d, 0xb2, 0x63, 0xc3, 0xf2, 0xe4, 0x8a, 0x3b, 0x46, 0x42, 0x90, 0xe8, 0xcf, 0x88, 0x47, 0x4f, 0xaa, 0xdb, 0xbf, 0xca, 0xc7, 0xc3, 0xc1, 0xc1, 0xc2, 0xc3, 0xc3, 0xca, 0xd4, 0xcf, 0xd1, 0xd4, 0xd1, 0xd2, 0xd0, 0xe0, 0xbc, 0xa2, 0xa0, 0xa0, 0x9e, 0x9d, 0x9c, 0x9b, 0x9e, 0x9d, 0x99, 0x7b, 0x80, 0xae, 0xd1, 0xe1, 0xe0, 0xdf, 0xe4, 0xd3, 0x73, 0x5a, 0x84, 0x88, 0x84, 0x93, 0xa0, 0x98, 0x9b, 0x93, 0x99, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x92, 0x90, 0x8a, 0x9c, 0xc9, 0xcf, 0xcd, 0xc9, 0xc9, 0xbe, 0xb4, 0xae, 0xab, 0xad, 0xad, 0x9d, 0x7b, 0x92, 0xbd, 0xa1, 0x6f, 0x5a, 0x47, 0x4b, 0x46, 0x43, 0x4a, 0x4f, 0x55, 0x59, 0x5c, 0x5e, 0x60, 0x62, 0x63, 0x63, 0x62, 0x60, 0x5f, 0x5d, 0x5c, 0x5b, 0x59, 0x57, 0x54, 0x51, 0x4f, 0x4d, 0x4a, 0x48, 0x46, 0x44, 0x41, 0x3f, 0x3e, 0x3d, 0x3b, 0x39, 0x38, 0x38, 0x37, 0x3d, 0x4f, 0x65, 0x70, 0x6e, 0x63, 0x66, 0x65, 0x66, 0x6c, 0x6b, 0x66, 0x66, 0x6a, 0x6e, 0x6e, 0x70, 0x75, 0x72, 0x6d, 0x6e, 0x6d, 0x70, 0x68, 0x67, 0x64, 0x61, 0x68, 0x67, 0x69, 0x69, 0x6b, 0x71, 0x76, 0x77, 0x74, 0x72, 0x76, 0x79, 0x72, 0x63, 0x50, 0x49, 0x44, 0x43, 0x3e, 0x4e, 0x61, 0x6e, 0x73, 0x6f, 0x62, 0x55, 0x4a, 0x42, 0x3a, 0x35, 0x31, 0x2d, 0x2a, 0x29, 0x2d, 0x35, 0x40, 0x4d, 0x55, 0x50, 0x49, 0x4a, 0x55, 0x53, 0x47, 0x34, 0x2d, 0x36, 0x42, 0x47, 0x4f, 0x55, 0x56, 0x4d, 0x44, 0x45, 0x50, 0x5b, 0x59, 0x52, 0x45, 0x35, 0x2a, 0x27, 0x2b, 0x30, 0x32, 0x28, 0x21, 0x1f, 0x1b, 0x19, 0x20, 0x2c, 0x38, 0x40, 0x46, 0x43, 0x3f, 0x3b, 0x32, 0x29, 0x1e, 0x24, 0x33, 0x48, 0x57, 0x60, 0x6d, 0x7c, 0x76, 0x73, 0x77, 0x7b, 0x76, 0x6e, 0x60, 0x4f, 0x51, 0x51, 0x57, 0x5c, 0x5b, 0x5d, 0x5d, 0x56, 0x5a, 0x4a, 0x3f, 0x49, 0x55, 0x54, 0x4f, 0x52, 0x43, 0x48, 0x53, 0x5c, 0x4f, 0x31, 0x28, 0x39, 0x3d, 0x44, 0x2e, 0x2a, 0x30, 0x31, 0x44, 0x4f, 0x5d, 0x5f, 0x65, 0x72, 0x82, 0x8c, 0x89, 0x81, 0x5b, 0x5a, 0x5c, 0x60, 0x64, 0x68, 0x6c, 0x71, 0x72, 0x74, 0x73, 0x6d, 0x69, 0x6c, 0x72, 0x77, 0x81, 0x82, 0x7c, 0x77, 0x69, 0x63, 0x5c, 0x5c, 0x68, 0x6e, 0x70, 0x6b, 0x68, 0x6a, 0x6c, 0x6b, 0x69, 0x6a, 0x6f, 0x73, 0x73, 0x6e, 0x69, 0x68, 0x6c, 0x6f, 0x75, 0x7b, 0x7d, 0x79, 0x73, 0x71, 0x67, 0x65, 0x62, 0x61, 0x62, 0x61, 0x5f, 0x5d, 0x5a, 0x5c, 0x61, 0x66, 0x66, 0x63, 0x62, 0x64, 0x65, 0x64, 0x65, 0x62, 0x5c, 0x61, 0x69, 0x6a, 0x6a, 0x73, 0x7d, 0x7f, 0x78, 0x70, 0x6f, 0x73, 0x73, 0x70, 0x6d, 0x6d, 0x70, 0x73, 0x73, 0x73, 0x6e, 0x6a, 0x66, 0x64, 0x65, 0x6c, 0x7a, 0x86, 0x86, 0x6d, 0x60, 0x62, 0x62, 0x62, 0x65, 0x65, 0x62, 0x6e, 0x78, 0x79, 0x78, 0x7f, 0x8b, 0x94, 0x89, 0x84, 0x7d, 0x76, 0x71, 0x70, 0x70, 0x71, 0x74, 0x70, 0x71, 0x7b, 0x84, 0x87, 0x87, 0x88, 0x86, 0x81, 0x7a, 0x74, 0x72, 0x74, 0x78, 0x7c, 0x77, 0x71, 0x6c, 0x6b, 0x69, 0x65, 0x66, 0x6b, 0x77, 0x72, 0x6d, 0x68, 0x64, 0x61, 0x62, 0x65, 0x64, 0x6b, 0x71, 0x72, 0x72, 0x75, 0x79, 0x7b, 0x75, 0x6d, 0x6c, 0x6c, 0x6a, 0x7b, 0xa1, 0xbf, 0xc1, 0xc2, 0xc4, 0xc5, 0xc4, 0xc2, 0xc0, 0xbe, 0xc6, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc6, 0xc3, 0xc3, 0xc4, 0xc2, 0xc0, 0xbd, 0xbb, 0xba, 0xbc, 0xbb, 0xbb, 0xbb, 0xbc, 0xbe, 0xbf, 0xc0, 0xc0, 0xc0, 0xbf, 0xbf, 0xbf, 0xbf, 0xbe, 0xbe, 0xbf, 0xc0, 0xc2, 0xc5, 0xc6, 0xc7, 0xc7, 0xc6, 0xc7, 0xc8, 0xc8, 0xc6, 0xc3, 0xc1, 0xc1, 0xc1, 0xbf, 0xbc, 0xb8, 0xb6, 0xb6, 0xb6, 0xb7, 0xb8, 0xb6, 0xbb, 0xbf, 0xc1, 0xc2, 0xc2, 0xbf, 0xbb, 0xba, 0xb3, 0xab, 0xa5, 0xa4, 0xa4, 0xa5, 0xa5, 0xaa, 0xaa, 0xab, 0xac, 0xae, 0xaf, 0xae, 0xad, 0xad, 0xac, 0xaa, 0xa7, 0xa5, 0xa1, 0x99, 0x90, 0x82, 0x7b, 0x7f, 0x7f, 0x81, 0x82, 0x7a, 0x7b, 0x8e, 0x88, 0xaa, 0xba, 0xba, 0xb6, 0xb7, 0xb2, 0xb3, 0xb2, 0xb1, 0xb1, 0xac, 0xa4, 0xa0, 0x9f, 0xa2, 0x9f, 0xb1, 0xd3, 0xe8, 0xe5, 0xdd, 0xde, 0xd1, 0xc7, 0xc2, 0xc1, 0xbd, 0xbd, 0xbb, 0xb3, 0xb2, 0xab, 0xa4, 0xa2, 0xa4, 0xa7, 0xaa, 0xab, 0xaf, 0xb1, 0xb8, 0xc1, 0xc4, 0xc3, 0xc1, 0xc1, 0xca, 0xcc, 0xcf, 0xce, 0xcc, 0xc9, 0xc9, 0xc9, 0xc7, 0xca, 0xd0, 0xcd, 0xcd, 0xcb, 0xca, 0x75, 0x39, 0x97, 0xf5, 0xec, 0x83, 0x61, 0xd2, 0x72, 0x90, 0xe4, 0xef, 0xc4, 0x59, 0x43, 0x60, 0xbd, 0xe2, 0x87, 0x3e, 0x3d, 0xa5, 0xc9, 0xd2, 0xc5, 0xca, 0xc6, 0xc2, 0xc0, 0xc1, 0xc2, 0xc2, 0xc1, 0xc9, 0xd3, 0xce, 0xd1, 0xd7, 0xd4, 0xd6, 0xd3, 0xdf, 0xbb, 0xa0, 0x9e, 0x9e, 0x9d, 0x9e, 0x9e, 0x98, 0x9d, 0x9d, 0x8a, 0x6f, 0x91, 0xbe, 0xd3, 0xe3, 0xd8, 0xe3, 0xe6, 0xb6, 0x61, 0x58, 0x8e, 0xa8, 0xa0, 0x9e, 0x97, 0x91, 0x99, 0x99, 0x99, 0x95, 0x95, 0x94, 0x95, 0x95, 0x94, 0x92, 0x90, 0x8b, 0x9c, 0xca, 0xd1, 0xcf, 0xca, 0xc8, 0xbe, 0xb1, 0xad, 0xaf, 0xae, 0xad, 0x94, 0x7c, 0xa3, 0xba, 0xa0, 0x7a, 0x4f, 0x3d, 0x52, 0x4d, 0x42, 0x4c, 0x50, 0x54, 0x57, 0x5b, 0x5f, 0x61, 0x60, 0x62, 0x61, 0x60, 0x5e, 0x5d, 0x5b, 0x5a, 0x5a, 0x56, 0x54, 0x51, 0x4e, 0x4c, 0x4a, 0x47, 0x45, 0x42, 0x40, 0x3d, 0x3c, 0x3b, 0x3a, 0x39, 0x37, 0x36, 0x3a, 0x42, 0x4e, 0x62, 0x72, 0x73, 0x6b, 0x6c, 0x6c, 0x67, 0x66, 0x6a, 0x67, 0x63, 0x66, 0x65, 0x66, 0x63, 0x65, 0x6e, 0x71, 0x6f, 0x72, 0x6e, 0x6d, 0x65, 0x68, 0x69, 0x66, 0x67, 0x60, 0x69, 0x66, 0x68, 0x6e, 0x75, 0x78, 0x79, 0x79, 0x7c, 0x81, 0x78, 0x64, 0x44, 0x37, 0x30, 0x34, 0x3a, 0x57, 0x75, 0x80, 0x7a, 0x6f, 0x65, 0x5e, 0x4d, 0x48, 0x42, 0x3e, 0x3b, 0x38, 0x32, 0x2d, 0x2f, 0x55, 0x73, 0x69, 0x48, 0x33, 0x35, 0x3c, 0x47, 0x49, 0x45, 0x3f, 0x44, 0x55, 0x62, 0x65, 0x4f, 0x46, 0x47, 0x5d, 0x7c, 0x89, 0x7b, 0x67, 0x6d, 0x6b, 0x62, 0x56, 0x4e, 0x4f, 0x55, 0x5a, 0x51, 0x43, 0x36, 0x31, 0x2f, 0x2b, 0x28, 0x29, 0x29, 0x2c, 0x2b, 0x28, 0x2c, 0x30, 0x2b, 0x20, 0x28, 0x1d, 0x17, 0x27, 0x44, 0x55, 0x5e, 0x69, 0x6c, 0x65, 0x65, 0x65, 0x5d, 0x57, 0x53, 0x4e, 0x4e, 0x48, 0x48, 0x46, 0x3f, 0x3c, 0x3b, 0x34, 0x1f, 0x2f, 0x52, 0x71, 0x71, 0x57, 0x41, 0x3b, 0x43, 0x4b, 0x4d, 0x49, 0x41, 0x31, 0x27, 0x28, 0x35, 0x39, 0x32, 0x34, 0x37, 0x39, 0x47, 0x53, 0x62, 0x66, 0x60, 0x5b, 0x6d, 0x8a, 0x92, 0x88, 0x5b, 0x5a, 0x5c, 0x61, 0x66, 0x69, 0x6b, 0x6e, 0x71, 0x75, 0x74, 0x6b, 0x64, 0x64, 0x6a, 0x6f, 0x64, 0x64, 0x67, 0x67, 0x6c, 0x6a, 0x6b, 0x68, 0x65, 0x6e, 0x71, 0x6b, 0x65, 0x65, 0x66, 0x65, 0x6b, 0x71, 0x77, 0x79, 0x79, 0x77, 0x72, 0x6d, 0x6e, 0x6b, 0x6c, 0x6f, 0x6f, 0x6e, 0x6f, 0x72, 0x71, 0x6e, 0x6a, 0x66, 0x64, 0x62, 0x60, 0x5f, 0x5b, 0x58, 0x5a, 0x61, 0x66, 0x66, 0x65, 0x65, 0x61, 0x66, 0x6d, 0x6b, 0x62, 0x66, 0x70, 0x73, 0x6a, 0x71, 0x76, 0x76, 0x74, 0x73, 0x73, 0x73, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6c, 0x68, 0x68, 0x6b, 0x6f, 0x72, 0x75, 0x7d, 0x86, 0x7f, 0x6e, 0x69, 0x6a, 0x64, 0x64, 0x68, 0x65, 0x61, 0x6b, 0x74, 0x78, 0x7c, 0x87, 0x93, 0x9c, 0x95, 0x90, 0x87, 0x7b, 0x70, 0x6a, 0x6b, 0x6d, 0x6c, 0x6c, 0x6e, 0x71, 0x75, 0x79, 0x7e, 0x82, 0x85, 0x86, 0x81, 0x76, 0x72, 0x77, 0x7d, 0x7e, 0x7b, 0x7e, 0x83, 0x81, 0x75, 0x68, 0x69, 0x71, 0x7a, 0x74, 0x6c, 0x68, 0x64, 0x5f, 0x5d, 0x5e, 0x6d, 0x74, 0x7b, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x6b, 0x66, 0x6b, 0x72, 0x77, 0x8e, 0xb1, 0xc4, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xce, 0xce, 0xcd, 0xca, 0xca, 0xca, 0xcb, 0xcc, 0xcc, 0xcb, 0xcb, 0xcd, 0xcd, 0xcd, 0xcd, 0xcb, 0xc8, 0xc3, 0xc0, 0xc0, 0xbf, 0xbe, 0xbd, 0xbc, 0xbc, 0xbc, 0xbd, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc4, 0xc5, 0xc6, 0xc7, 0xc7, 0xc6, 0xc5, 0xc4, 0xc4, 0xc0, 0xbe, 0xba, 0xb8, 0xb7, 0xb7, 0xb5, 0xb4, 0xb4, 0xb8, 0xbc, 0xbd, 0xbf, 0xc1, 0xc0, 0xbd, 0xbc, 0xb6, 0xae, 0xa8, 0xa5, 0xa3, 0xa0, 0x9d, 0xa4, 0xa5, 0xa7, 0xab, 0xae, 0xaf, 0xaf, 0xae, 0xae, 0xad, 0xac, 0xa9, 0xa8, 0xa3, 0x99, 0x8f, 0x84, 0x79, 0x7e, 0x7c, 0x7f, 0x82, 0x77, 0x7a, 0x83, 0x87, 0xab, 0xb0, 0xb4, 0xb0, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xa9, 0xa2, 0x9f, 0xa0, 0x9a, 0xb1, 0xcd, 0xdf, 0xe3, 0xdf, 0xda, 0xd7, 0xcc, 0xc3, 0xbf, 0xbc, 0xb7, 0xb7, 0xb7, 0xb1, 0xae, 0xa7, 0xa2, 0xa4, 0xa6, 0xa8, 0xac, 0xb1, 0xb7, 0xb9, 0xbe, 0xc5, 0xc7, 0xc4, 0xc2, 0xc1, 0xc8, 0xca, 0xcd, 0xcf, 0xcf, 0xcf, 0xce, 0xcd, 0xca, 0xcc, 0xcc, 0xc9, 0xc9, 0xce, 0xcd, 0xa4, 0x48, 0x65, 0xdf, 0xea, 0xbc, 0x53, 0xc2, 0x94, 0x5e, 0xc5, 0xea, 0xe8, 0xa0, 0x7e, 0xa6, 0xe7, 0xde, 0x80, 0x32, 0x45, 0xb5, 0xce, 0xc4, 0xcd, 0xc8, 0xc5, 0xc2, 0xc1, 0xc2, 0xc2, 0xbf, 0xbc, 0xc6, 0xd2, 0xcf, 0xd2, 0xd5, 0xd2, 0xd5, 0xd4, 0xdc, 0xb7, 0x9c, 0x99, 0x9a, 0x9a, 0x9c, 0x9d, 0x99, 0x9b, 0x9a, 0x77, 0x87, 0xb3, 0xcc, 0xd5, 0xe5, 0xce, 0xc1, 0xc4, 0xb9, 0x8c, 0x63, 0x84, 0x93, 0x96, 0x95, 0x95, 0x99, 0x9a, 0x9a, 0x94, 0x96, 0x96, 0x95, 0x96, 0x96, 0x95, 0x92, 0x90, 0x8d, 0x9d, 0xcb, 0xd3, 0xd0, 0xc9, 0xc7, 0xbd, 0xad, 0xac, 0xb1, 0xae, 0xab, 0x8b, 0x7c, 0xb1, 0x9f, 0x93, 0x88, 0x5d, 0x68, 0x78, 0x55, 0x46, 0x4b, 0x51, 0x56, 0x58, 0x5a, 0x5e, 0x60, 0x5f, 0x61, 0x60, 0x5f, 0x5c, 0x5a, 0x58, 0x57, 0x56, 0x53, 0x50, 0x4d, 0x4a, 0x49, 0x47, 0x45, 0x43, 0x3f, 0x3e, 0x3c, 0x3b, 0x3a, 0x3a, 0x39, 0x37, 0x36, 0x41, 0x58, 0x70, 0x7b, 0x78, 0x76, 0x79, 0x69, 0x66, 0x5f, 0x5d, 0x5f, 0x5b, 0x59, 0x60, 0x68, 0x68, 0x61, 0x5e, 0x63, 0x66, 0x68, 0x6e, 0x70, 0x71, 0x6a, 0x6d, 0x6e, 0x69, 0x6a, 0x62, 0x67, 0x65, 0x67, 0x6e, 0x74, 0x76, 0x76, 0x77, 0x73, 0x7d, 0x75, 0x63, 0x3e, 0x33, 0x32, 0x3e, 0x47, 0x51, 0x5a, 0x5e, 0x64, 0x6e, 0x74, 0x74, 0x6e, 0x66, 0x5b, 0x50, 0x48, 0x40, 0x36, 0x2f, 0x31, 0x34, 0x3d, 0x46, 0x49, 0x49, 0x42, 0x35, 0x2e, 0x3c, 0x4a, 0x50, 0x54, 0x58, 0x55, 0x4d, 0x42, 0x38, 0x35, 0x46, 0x63, 0x79, 0x7f, 0x7c, 0x73, 0x75, 0x75, 0x71, 0x6e, 0x6d, 0x6a, 0x66, 0x62, 0x5c, 0x56, 0x55, 0x56, 0x51, 0x47, 0x3e, 0x40, 0x3b, 0x33, 0x2e, 0x2d, 0x2d, 0x2c, 0x2b, 0x2b, 0x3d, 0x47, 0x47, 0x49, 0x49, 0x51, 0x62, 0x65, 0x62, 0x60, 0x59, 0x4d, 0x4a, 0x47, 0x3e, 0x34, 0x2e, 0x2f, 0x31, 0x2e, 0x30, 0x33, 0x30, 0x44, 0x46, 0x4c, 0x49, 0x3a, 0x34, 0x41, 0x50, 0x55, 0x57, 0x4d, 0x3e, 0x34, 0x29, 0x1d, 0x18, 0x3b, 0x3a, 0x44, 0x46, 0x45, 0x4b, 0x4c, 0x4f, 0x4f, 0x5f, 0x6a, 0x65, 0x61, 0x6e, 0x85, 0x95, 0x5e, 0x5c, 0x5c, 0x60, 0x65, 0x68, 0x6b, 0x6e, 0x74, 0x78, 0x77, 0x6c, 0x61, 0x5f, 0x62, 0x65, 0x5c, 0x5a, 0x62, 0x62, 0x70, 0x6c, 0x6e, 0x67, 0x5a, 0x68, 0x71, 0x6d, 0x67, 0x65, 0x63, 0x5f, 0x61, 0x6b, 0x74, 0x77, 0x79, 0x7b, 0x77, 0x70, 0x6c, 0x6a, 0x6b, 0x6e, 0x6f, 0x6c, 0x6d, 0x71, 0x79, 0x70, 0x66, 0x63, 0x67, 0x6c, 0x6c, 0x6a, 0x64, 0x5a, 0x55, 0x5b, 0x64, 0x68, 0x68, 0x68, 0x6b, 0x70, 0x78, 0x76, 0x6e, 0x6e, 0x70, 0x6c, 0x68, 0x6a, 0x69, 0x65, 0x67, 0x6c, 0x6b, 0x66, 0x67, 0x6c, 0x6e, 0x6c, 0x68, 0x66, 0x6a, 0x6f, 0x6e, 0x72, 0x7c, 0x84, 0x84, 0x7e, 0x7c, 0x7d, 0x78, 0x72, 0x75, 0x72, 0x69, 0x6d, 0x74, 0x6e, 0x63, 0x68, 0x6d, 0x71, 0x77, 0x83, 0x8d, 0x93, 0x97, 0x93, 0x8c, 0x85, 0x7d, 0x72, 0x67, 0x5f, 0x63, 0x6b, 0x6f, 0x6b, 0x6a, 0x71, 0x77, 0x7a, 0x7d, 0x85, 0x85, 0x7a, 0x74, 0x79, 0x7b, 0x78, 0x6d, 0x78, 0x86, 0x87, 0x75, 0x63, 0x64, 0x70, 0x73, 0x6c, 0x67, 0x65, 0x65, 0x63, 0x62, 0x62, 0x68, 0x6a, 0x6c, 0x6e, 0x72, 0x7a, 0x80, 0x81, 0x6f, 0x66, 0x69, 0x6f, 0x79, 0x97, 0xba, 0xc7, 0xcb, 0xca, 0xca, 0xca, 0xcb, 0xcd, 0xcd, 0xcd, 0xca, 0xca, 0xca, 0xcb, 0xcc, 0xcd, 0xcc, 0xcb, 0xd1, 0xcf, 0xce, 0xce, 0xd0, 0xd0, 0xce, 0xcc, 0xce, 0xcc, 0xc9, 0xc6, 0xc3, 0xc0, 0xbf, 0xbe, 0xc0, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc2, 0xc1, 0xbf, 0xbe, 0xbd, 0xbe, 0xbf, 0xc0, 0xbd, 0xc0, 0xc4, 0xc6, 0xc7, 0xc7, 0xc7, 0xc7, 0xc1, 0xbf, 0xbc, 0xba, 0xba, 0xb8, 0xb6, 0xb4, 0xb7, 0xb8, 0xb7, 0xb6, 0xb8, 0xbd, 0xc0, 0xc1, 0xbb, 0xb7, 0xb2, 0xae, 0xab, 0xa6, 0xa0, 0x9a, 0x9b, 0x9c, 0x9f, 0xa4, 0xa8, 0xaa, 0xaa, 0xa9, 0xac, 0xac, 0xab, 0xa9, 0xa8, 0xa3, 0x98, 0x8e, 0x87, 0x78, 0x7b, 0x79, 0x7e, 0x83, 0x75, 0x77, 0x7a, 0x85, 0xab, 0xa9, 0xaf, 0xa9, 0xa9, 0xae, 0xac, 0xac, 0xad, 0xac, 0xa7, 0xa1, 0x9f, 0xa1, 0x95, 0xc2, 0xe5, 0xe3, 0xd9, 0xda, 0xd8, 0xce, 0xca, 0xc4, 0xc2, 0xbe, 0xb6, 0xb3, 0xb2, 0xac, 0xac, 0xa3, 0xa0, 0xa6, 0xa9, 0xa8, 0xad, 0xb5, 0xb6, 0xb7, 0xbc, 0xc1, 0xc2, 0xbe, 0xbb, 0xba, 0xc3, 0xc5, 0xc9, 0xcd, 0xd2, 0xd4, 0xd3, 0xd2, 0xce, 0xcd, 0xc5, 0xc1, 0xc3, 0xcf, 0xd0, 0xc9, 0x64, 0x34, 0x8a, 0xe7, 0xd6, 0x5c, 0x73, 0xa0, 0x46, 0xb7, 0xe1, 0xe7, 0xe1, 0xde, 0xee, 0xdf, 0xe4, 0xc2, 0x58, 0x38, 0x72, 0xcd, 0xc7, 0xc7, 0xc7, 0xc5, 0xc4, 0xc4, 0xc4, 0xc2, 0xbc, 0xb7, 0xc5, 0xd3, 0xd1, 0xd2, 0xd3, 0xce, 0xd2, 0xd2, 0xd8, 0xb2, 0x97, 0x94, 0x95, 0x96, 0x9a, 0x9b, 0x9c, 0x9a, 0x97, 0x70, 0xb3, 0xdf, 0xe2, 0xe1, 0xd6, 0xd7, 0xba, 0xb3, 0xc8, 0xa6, 0x5a, 0x83, 0x98, 0x9f, 0x98, 0x97, 0x99, 0x92, 0x98, 0x99, 0x97, 0x96, 0x96, 0x97, 0x97, 0x96, 0x93, 0x91, 0x8e, 0x9e, 0xcc, 0xd3, 0xcf, 0xc7, 0xc4, 0xba, 0xb2, 0xae, 0xae, 0xa5, 0xa2, 0x86, 0x86, 0xca, 0xaa, 0x97, 0x88, 0x5a, 0x7a, 0x7e, 0x49, 0x49, 0x4c, 0x54, 0x5b, 0x5b, 0x5b, 0x5d, 0x5f, 0x5e, 0x62, 0x60, 0x5e, 0x5b, 0x58, 0x56, 0x54, 0x53, 0x51, 0x4e, 0x4b, 0x48, 0x46, 0x45, 0x43, 0x41, 0x3f, 0x3e, 0x3c, 0x3b, 0x3b, 0x3b, 0x3a, 0x39, 0x43, 0x50, 0x6c, 0x84, 0x7a, 0x5d, 0x54, 0x5f, 0x67, 0x64, 0x5e, 0x5e, 0x5f, 0x5a, 0x59, 0x62, 0x60, 0x66, 0x66, 0x65, 0x68, 0x65, 0x62, 0x66, 0x75, 0x76, 0x6f, 0x6f, 0x6c, 0x67, 0x6a, 0x66, 0x66, 0x66, 0x6b, 0x75, 0x79, 0x77, 0x75, 0x74, 0x76, 0x81, 0x76, 0x62, 0x36, 0x2a, 0x2a, 0x39, 0x3d, 0x3a, 0x34, 0x33, 0x40, 0x5a, 0x70, 0x7b, 0x7c, 0x73, 0x65, 0x5a, 0x55, 0x53, 0x4f, 0x4b, 0x43, 0x3b, 0x42, 0x4d, 0x43, 0x33, 0x32, 0x39, 0x4c, 0x52, 0x51, 0x48, 0x45, 0x4c, 0x52, 0x52, 0x33, 0x2c, 0x26, 0x28, 0x33, 0x44, 0x57, 0x63, 0x77, 0x7a, 0x7d, 0x80, 0x85, 0x88, 0x84, 0x7d, 0x74, 0x76, 0x77, 0x77, 0x75, 0x6d, 0x5c, 0x4d, 0x3a, 0x38, 0x39, 0x37, 0x2b, 0x1d, 0x1c, 0x23, 0x3b, 0x4d, 0x4e, 0x49, 0x50, 0x52, 0x4a, 0x48, 0x51, 0x51, 0x4d, 0x3d, 0x31, 0x33, 0x31, 0x24, 0x31, 0x2c, 0x30, 0x36, 0x38, 0x3d, 0x43, 0x42, 0x33, 0x2e, 0x2d, 0x30, 0x36, 0x44, 0x4e, 0x4c, 0x4b, 0x43, 0x35, 0x2a, 0x25, 0x22, 0x28, 0x37, 0x41, 0x3a, 0x48, 0x41, 0x3b, 0x47, 0x40, 0x3a, 0x3a, 0x37, 0x45, 0x5d, 0x63, 0x5d, 0x68, 0x7e, 0x60, 0x5f, 0x5e, 0x60, 0x66, 0x6e, 0x72, 0x73, 0x73, 0x78, 0x75, 0x69, 0x60, 0x60, 0x60, 0x5e, 0x56, 0x61, 0x6d, 0x73, 0x72, 0x6d, 0x68, 0x63, 0x63, 0x6a, 0x6a, 0x64, 0x68, 0x74, 0x74, 0x6b, 0x63, 0x62, 0x64, 0x6c, 0x75, 0x7a, 0x77, 0x73, 0x71, 0x6c, 0x68, 0x67, 0x67, 0x68, 0x6d, 0x73, 0x7a, 0x7e, 0x7d, 0x75, 0x6c, 0x66, 0x63, 0x61, 0x65, 0x5f, 0x5c, 0x5e, 0x60, 0x61, 0x66, 0x6d, 0x70, 0x79, 0x83, 0x84, 0x80, 0x79, 0x71, 0x6b, 0x6c, 0x62, 0x5d, 0x62, 0x6c, 0x71, 0x6f, 0x6c, 0x6a, 0x6b, 0x6f, 0x74, 0x74, 0x70, 0x70, 0x74, 0x7a, 0x7a, 0x77, 0x73, 0x76, 0x7c, 0x7e, 0x7b, 0x72, 0x76, 0x78, 0x75, 0x73, 0x71, 0x6f, 0x6c, 0x67, 0x6b, 0x6c, 0x69, 0x6d, 0x78, 0x83, 0x89, 0x8b, 0x88, 0x88, 0x8a, 0x84, 0x75, 0x68, 0x63, 0x62, 0x6e, 0x77, 0x74, 0x6d, 0x6d, 0x76, 0x7e, 0x83, 0x86, 0x83, 0x7a, 0x77, 0x7c, 0x7e, 0x7c, 0x79, 0x8a, 0x90, 0x80, 0x6e, 0x6a, 0x6e, 0x71, 0x68, 0x65, 0x64, 0x67, 0x6b, 0x6a, 0x63, 0x5d, 0x65, 0x6a, 0x6f, 0x6e, 0x6c, 0x6e, 0x75, 0x7a, 0x6c, 0x6c, 0x69, 0x67, 0x7b, 0xa6, 0xbf, 0xba, 0xbe, 0xbf, 0xc2, 0xc7, 0xc9, 0xcb, 0xce, 0xd2, 0xce, 0xcb, 0xca, 0xca, 0xca, 0xc8, 0xc9, 0xcc, 0xcf, 0xd0, 0xd0, 0xce, 0xce, 0xcf, 0xce, 0xcb, 0xcc, 0xcb, 0xc9, 0xc9, 0xc9, 0xc7, 0xc4, 0xc1, 0xbf, 0xbf, 0xc0, 0xbf, 0xbf, 0xbf, 0xc1, 0xc3, 0xc0, 0xbf, 0xbc, 0xbc, 0xbf, 0xc2, 0xc1, 0xbd, 0xc0, 0xb8, 0xbb, 0xbc, 0xb6, 0xbb, 0xc2, 0xbe, 0xc5, 0xc5, 0xc4, 0xc2, 0xbf, 0xbd, 0xbd, 0xbe, 0xba, 0xba, 0xb9, 0xb7, 0xb5, 0xb4, 0xb5, 0xb6, 0xbd, 0xbd, 0xba, 0xb3, 0xad, 0xa9, 0xa6, 0xa3, 0xa2, 0xa0, 0x9e, 0x9e, 0xa0, 0xa2, 0xa3, 0xa3, 0xa1, 0xa1, 0xa1, 0xa1, 0xa2, 0xa1, 0x99, 0x91, 0x87, 0x78, 0x76, 0x75, 0x79, 0x7a, 0x70, 0x72, 0x6c, 0x76, 0x87, 0x98, 0xa2, 0xa4, 0xa5, 0xa6, 0xa8, 0xa5, 0xa3, 0xa1, 0x9c, 0x96, 0x98, 0x9f, 0xb7, 0xd4, 0xe8, 0xe2, 0xd8, 0xd7, 0xd4, 0xca, 0xc3, 0xbf, 0xba, 0xb8, 0xb7, 0xb4, 0xac, 0xa6, 0xa1, 0xa3, 0xa5, 0xa6, 0xa7, 0xa9, 0xab, 0xae, 0xb2, 0xb9, 0xc1, 0xc5, 0xc4, 0xc0, 0xbc, 0xb8, 0xc5, 0xba, 0xbd, 0xbf, 0xc7, 0xcf, 0xd0, 0xc6, 0x92, 0x6e, 0x50, 0x56, 0x4a, 0x53, 0x7b, 0xac, 0x91, 0x36, 0x45, 0xb3, 0xe8, 0x74, 0x50, 0x6b, 0x3b, 0x8b, 0xdc, 0xe9, 0xde, 0xe5, 0xe5, 0xdb, 0xe3, 0xe9, 0x9c, 0x46, 0x41, 0xa6, 0xd9, 0xc3, 0xc9, 0xcb, 0xc5, 0xbf, 0xc2, 0xc4, 0xbe, 0xb9, 0xce, 0xd1, 0xd2, 0xd1, 0xd0, 0xd2, 0xd3, 0xd2, 0xd7, 0xb1, 0x97, 0x97, 0x98, 0x96, 0x97, 0x99, 0x9b, 0x91, 0x96, 0x70, 0xc2, 0xe3, 0xde, 0xe0, 0xe9, 0xbc, 0xbb, 0xa9, 0xd6, 0xbc, 0x53, 0x88, 0x9f, 0x9d, 0x93, 0x97, 0x9b, 0x99, 0x9a, 0x91, 0x96, 0x94, 0x99, 0x9e, 0x99, 0x95, 0x94, 0x92, 0x96, 0x9a, 0xc5, 0xd9, 0xcb, 0xca, 0xc6, 0xba, 0xae, 0xb3, 0xac, 0xb1, 0xa6, 0x6c, 0xa4, 0xc7, 0xb0, 0x9e, 0x86, 0x8a, 0x8f, 0x69, 0x47, 0x50, 0x51, 0x53, 0x56, 0x58, 0x5a, 0x5c, 0x5e, 0x60, 0x5d, 0x5c, 0x5a, 0x59, 0x57, 0x55, 0x51, 0x4e, 0x4c, 0x4b, 0x4c, 0x4b, 0x47, 0x41, 0x3e, 0x3e, 0x3e, 0x3c, 0x38, 0x3a, 0x3d, 0x39, 0x3a, 0x44, 0x59, 0x60, 0x6d, 0x76, 0x74, 0x6a, 0x64, 0x63, 0x6d, 0x62, 0x5c, 0x60, 0x65, 0x63, 0x60, 0x60, 0x5f, 0x64, 0x65, 0x60, 0x5f, 0x62, 0x65, 0x63, 0x62, 0x6f, 0x72, 0x73, 0x6a, 0x61, 0x66, 0x65, 0x5e, 0x68, 0x71, 0x73, 0x73, 0x75, 0x79, 0x7b, 0x7b, 0x79, 0x71, 0x5d, 0x45, 0x36, 0x39, 0x44, 0x5b, 0x64, 0x66, 0x5a, 0x4e, 0x4b, 0x50, 0x54, 0x64, 0x6b, 0x72, 0x72, 0x6d, 0x64, 0x57, 0x4d, 0x42, 0x41, 0x39, 0x32, 0x37, 0x42, 0x42, 0x3b, 0x36, 0x3c, 0x41, 0x47, 0x4e, 0x53, 0x4e, 0x46, 0x2a, 0x2b, 0x36, 0x47, 0x51, 0x51, 0x53, 0x57, 0x61, 0x61, 0x6c, 0x69, 0x75, 0x70, 0x7c, 0x7e, 0x7d, 0x80, 0x7f, 0x7c, 0x7c, 0x7a, 0x70, 0x65, 0x50, 0x48, 0x43, 0x43, 0x42, 0x40, 0x48, 0x54, 0x4e, 0x5c, 0x67, 0x66, 0x59, 0x49, 0x3c, 0x35, 0x2d, 0x24, 0x20, 0x26, 0x2c, 0x30, 0x38, 0x40, 0x44, 0x4e, 0x4e, 0x46, 0x43, 0x3c, 0x2d, 0x24, 0x2a, 0x2f, 0x31, 0x31, 0x37, 0x40, 0x41, 0x3b, 0x34, 0x37, 0x36, 0x2c, 0x1f, 0x19, 0x22, 0x2f, 0x34, 0x3f, 0x49, 0x4a, 0x48, 0x49, 0x4c, 0x4d, 0x4c, 0x50, 0x5a, 0x63, 0x63, 0x5f, 0x64, 0x6d, 0x6a, 0x62, 0x5d, 0x5f, 0x64, 0x6b, 0x72, 0x79, 0x83, 0x7c, 0x6f, 0x65, 0x65, 0x6c, 0x6d, 0x67, 0x67, 0x6d, 0x6e, 0x67, 0x67, 0x6f, 0x73, 0x71, 0x66, 0x6c, 0x6e, 0x6d, 0x73, 0x7b, 0x79, 0x71, 0x6d, 0x69, 0x66, 0x66, 0x69, 0x6c, 0x6e, 0x6e, 0x6d, 0x68, 0x66, 0x68, 0x69, 0x6a, 0x71, 0x7b, 0x82, 0x86, 0x7e, 0x6d, 0x63, 0x68, 0x6c, 0x6a, 0x60, 0x5a, 0x59, 0x5e, 0x60, 0x5e, 0x60, 0x66, 0x6d, 0x73, 0x77, 0x76, 0x73, 0x70, 0x6c, 0x68, 0x63, 0x61, 0x63, 0x6b, 0x71, 0x6e, 0x66, 0x5f, 0x59, 0x5d, 0x66, 0x70, 0x74, 0x76, 0x7b, 0x81, 0x71, 0x6e, 0x65, 0x62, 0x70, 0x84, 0x88, 0x7f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6f, 0x79, 0x7f, 0x7a, 0x72, 0x71, 0x75, 0x79, 0x83, 0x85, 0x8a, 0x8d, 0x83, 0x72, 0x66, 0x63, 0x68, 0x70, 0x78, 0x78, 0x75, 0x77, 0x7c, 0x80, 0x89, 0x8a, 0x85, 0x7b, 0x76, 0x78, 0x7e, 0x81, 0x84, 0x8b, 0x8a, 0x7c, 0x6d, 0x69, 0x6a, 0x6b, 0x6c, 0x6a, 0x6d, 0x77, 0x82, 0x84, 0x7a, 0x70, 0x63, 0x65, 0x67, 0x6c, 0x73, 0x78, 0x77, 0x73, 0x6a, 0x65, 0x61, 0x66, 0x7d, 0x9f, 0xaf, 0xab, 0xaf, 0xae, 0xb0, 0xb3, 0xb5, 0xb8, 0xbf, 0xc5, 0xc6, 0xc1, 0xbd, 0xbc, 0xbc, 0xbf, 0xc4, 0xc9, 0xca, 0xcd, 0xce, 0xcd, 0xcd, 0xcf, 0xce, 0xcc, 0xcc, 0xcb, 0xc9, 0xc9, 0xc8, 0xc8, 0xc7, 0xc6, 0xc6, 0xc2, 0xbe, 0xbc, 0xbd, 0xbf, 0xc0, 0xc0, 0xbd, 0xbf, 0xbf, 0xbe, 0xbf, 0xc1, 0xc1, 0xbf, 0xba, 0xb6, 0xb6, 0xb6, 0xb3, 0xb5, 0xb8, 0xb7, 0xb9, 0xba, 0xbc, 0xbe, 0xbf, 0xc1, 0xc2, 0xc3, 0xbf, 0xbe, 0xbc, 0xb9, 0xb5, 0xb3, 0xb2, 0xb2, 0xb5, 0xb6, 0xb4, 0xb0, 0xad, 0xab, 0xa8, 0xa5, 0xa4, 0xa2, 0xa1, 0xa1, 0xa1, 0xa2, 0xa2, 0xa1, 0x9f, 0x9f, 0x9e, 0x9e, 0xa0, 0x9e, 0x97, 0x8f, 0x84, 0x78, 0x76, 0x75, 0x7a, 0x7c, 0x70, 0x6e, 0x63, 0x66, 0x6f, 0x7d, 0x88, 0x8e, 0x92, 0x95, 0x98, 0x92, 0x91, 0x95, 0x94, 0x92, 0x9c, 0xab, 0xde, 0xe8, 0xe9, 0xe1, 0xdc, 0xdc, 0xd3, 0xc5, 0xbf, 0xb9, 0xb3, 0xb2, 0xb3, 0xb0, 0xa7, 0x9f, 0xa1, 0xa3, 0xa5, 0xa5, 0xa6, 0xa9, 0xae, 0xb3, 0xb4, 0xba, 0xc0, 0xc3, 0xc0, 0xbb, 0xb5, 0xb1, 0xbb, 0xbf, 0xc7, 0xbc, 0xbd, 0xcd, 0xb2, 0x79, 0x33, 0x3c, 0x37, 0x3f, 0x41, 0x4d, 0x42, 0x2e, 0x3b, 0x49, 0x3e, 0x4f, 0xd2, 0xb3, 0x2d, 0x46, 0x3e, 0x9b, 0xe8, 0xe7, 0xe1, 0xe0, 0xe1, 0xde, 0xd6, 0xe2, 0xdc, 0x6c, 0x39, 0x6c, 0xc4, 0xd2, 0xc4, 0xc4, 0xc2, 0xc1, 0xc1, 0xc0, 0xbc, 0xb8, 0xcd, 0xd0, 0xd1, 0xd0, 0xd0, 0xd1, 0xd2, 0xd1, 0xd8, 0xb1, 0x96, 0x95, 0x94, 0x90, 0x90, 0x91, 0x9b, 0x9c, 0x8f, 0x74, 0xb2, 0xa5, 0xd0, 0xe3, 0xd7, 0xcf, 0xb7, 0xba, 0xe1, 0xc3, 0x60, 0x83, 0x94, 0x9b, 0x9b, 0xa0, 0x9b, 0x91, 0x98, 0x9b, 0x99, 0x9e, 0x9d, 0x96, 0x90, 0x8f, 0x91, 0x94, 0x95, 0x97, 0xc1, 0xd6, 0xca, 0xc9, 0xc5, 0xb9, 0xb0, 0xb0, 0xac, 0xaf, 0x94, 0x67, 0xa1, 0xbf, 0xae, 0x95, 0x95, 0xab, 0x9a, 0x60, 0x41, 0x4d, 0x52, 0x54, 0x57, 0x59, 0x5a, 0x5a, 0x5b, 0x5c, 0x59, 0x58, 0x57, 0x55, 0x54, 0x51, 0x4d, 0x4a, 0x4a, 0x48, 0x47, 0x47, 0x43, 0x3e, 0x3d, 0x3f, 0x3c, 0x3e, 0x3c, 0x38, 0x36, 0x36, 0x44, 0x5a, 0x6b, 0x6c, 0x71, 0x76, 0x75, 0x6f, 0x6b, 0x6b, 0x67, 0x62, 0x5f, 0x61, 0x64, 0x63, 0x62, 0x61, 0x6c, 0x6e, 0x6b, 0x63, 0x5c, 0x5d, 0x63, 0x68, 0x7e, 0x8e, 0x88, 0x79, 0x6f, 0x6f, 0x6f, 0x5f, 0x61, 0x69, 0x71, 0x73, 0x72, 0x72, 0x72, 0x72, 0x79, 0x76, 0x6d, 0x5c, 0x45, 0x36, 0x36, 0x3c, 0x58, 0x5f, 0x66, 0x68, 0x66, 0x61, 0x55, 0x49, 0x43, 0x39, 0x36, 0x45, 0x5e, 0x70, 0x70, 0x69, 0x5d, 0x58, 0x4c, 0x42, 0x46, 0x4f, 0x4c, 0x3f, 0x49, 0x48, 0x46, 0x49, 0x54, 0x5a, 0x4d, 0x38, 0x3a, 0x3f, 0x47, 0x50, 0x5a, 0x64, 0x6f, 0x77, 0x67, 0x61, 0x63, 0x60, 0x6d, 0x6a, 0x6d, 0x65, 0x70, 0x79, 0x82, 0x84, 0x80, 0x7a, 0x72, 0x6c, 0x6f, 0x73, 0x7f, 0x8f, 0x95, 0x8d, 0x83, 0x7d, 0x93, 0x97, 0x98, 0x90, 0x81, 0x71, 0x61, 0x57, 0x4b, 0x3a, 0x28, 0x1e, 0x1b, 0x20, 0x2d, 0x3a, 0x50, 0x51, 0x4d, 0x43, 0x2d, 0x19, 0x26, 0x47, 0x43, 0x30, 0x23, 0x2a, 0x38, 0x3c, 0x39, 0x37, 0x3b, 0x37, 0x2f, 0x24, 0x19, 0x16, 0x1e, 0x28, 0x2a, 0x2e, 0x33, 0x37, 0x3d, 0x43, 0x44, 0x41, 0x43, 0x40, 0x3e, 0x45, 0x50, 0x58, 0x57, 0x51, 0x6c, 0x63, 0x5c, 0x5d, 0x62, 0x68, 0x71, 0x79, 0x80, 0x7e, 0x7a, 0x76, 0x78, 0x7b, 0x74, 0x6b, 0x5e, 0x60, 0x61, 0x62, 0x65, 0x6b, 0x6f, 0x70, 0x6e, 0x6c, 0x69, 0x6a, 0x6f, 0x74, 0x73, 0x70, 0x74, 0x72, 0x6d, 0x67, 0x62, 0x62, 0x65, 0x68, 0x6d, 0x67, 0x66, 0x69, 0x67, 0x63, 0x6b, 0x79, 0x87, 0x8a, 0x7e, 0x69, 0x63, 0x71, 0x7a, 0x77, 0x69, 0x63, 0x64, 0x6c, 0x6c, 0x64, 0x61, 0x66, 0x69, 0x6c, 0x6e, 0x6d, 0x6c, 0x6c, 0x6a, 0x67, 0x60, 0x63, 0x6b, 0x73, 0x73, 0x6b, 0x60, 0x59, 0x60, 0x65, 0x6d, 0x73, 0x73, 0x73, 0x77, 0x7c, 0x78, 0x72, 0x65, 0x61, 0x75, 0x8c, 0x8a, 0x77, 0x6b, 0x67, 0x68, 0x6f, 0x72, 0x6e, 0x6a, 0x6a, 0x6b, 0x75, 0x80, 0x83, 0x81, 0x82, 0x85, 0x88, 0x83, 0x8a, 0x93, 0x95, 0x88, 0x74, 0x68, 0x67, 0x6d, 0x6f, 0x6e, 0x6d, 0x6f, 0x75, 0x7a, 0x7c, 0x87, 0x88, 0x84, 0x7b, 0x72, 0x71, 0x78, 0x80, 0x8e, 0x8a, 0x81, 0x78, 0x70, 0x6b, 0x6b, 0x6b, 0x69, 0x69, 0x6b, 0x73, 0x7b, 0x7b, 0x73, 0x6b, 0x62, 0x60, 0x62, 0x6d, 0x80, 0x8b, 0x87, 0x7d, 0x73, 0x6a, 0x65, 0x71, 0x8c, 0xa3, 0xa9, 0xa4, 0x9e, 0x9c, 0x9b, 0x9a, 0x99, 0x9c, 0xa4, 0xac, 0xb0, 0xa9, 0xa1, 0x9e, 0xa0, 0xa7, 0xb1, 0xba, 0xbf, 0xc3, 0xc7, 0xc8, 0xc9, 0xcb, 0xcb, 0xca, 0xc9, 0xc7, 0xc3, 0xc0, 0xbf, 0xc0, 0xc4, 0xc7, 0xc8, 0xc3, 0xbe, 0xbd, 0xbe, 0xbe, 0xbb, 0xb7, 0xc0, 0xc3, 0xc3, 0xbe, 0xb9, 0xb7, 0xb4, 0xb2, 0xb8, 0xb9, 0xb5, 0xb3, 0xb4, 0xb3, 0xb2, 0xb4, 0xb4, 0xb5, 0xb8, 0xbb, 0xbe, 0xc0, 0xc0, 0xbf, 0xc1, 0xc0, 0xbd, 0xbb, 0xb8, 0xb6, 0xb3, 0xb2, 0xb5, 0xb5, 0xb3, 0xaf, 0xad, 0xab, 0xa5, 0xa0, 0xa2, 0xa0, 0x9f, 0x9f, 0xa0, 0xa0, 0x9f, 0x9e, 0x9e, 0x9f, 0x9f, 0x9e, 0x9f, 0x9e, 0x97, 0x8f, 0x82, 0x78, 0x77, 0x73, 0x7a, 0x7f, 0x71, 0x69, 0x63, 0x61, 0x64, 0x6d, 0x76, 0x7c, 0x80, 0x83, 0x86, 0x84, 0x87, 0x8d, 0x8d, 0x93, 0xab, 0xc6, 0xea, 0xe7, 0xe0, 0xd9, 0xd7, 0xd6, 0xce, 0xc3, 0xbf, 0xb8, 0xb1, 0xb0, 0xb2, 0xaf, 0xa6, 0x9d, 0xa0, 0xa3, 0xa6, 0xa6, 0xa6, 0xaa, 0xb2, 0xb8, 0xb7, 0xbb, 0xbf, 0xc1, 0xbd, 0xb5, 0xae, 0xa9, 0xb9, 0xb4, 0xbf, 0xbf, 0xbc, 0xb8, 0x7c, 0x36, 0x36, 0x5b, 0x7b, 0x9a, 0x80, 0x55, 0x3f, 0x45, 0x44, 0x36, 0x43, 0x38, 0x72, 0xd7, 0x94, 0x51, 0x51, 0xa6, 0xe4, 0xe0, 0xe0, 0xc8, 0xcd, 0xe4, 0xde, 0xe8, 0xee, 0xb0, 0x45, 0x40, 0x91, 0xcb, 0xc8, 0xc3, 0xc5, 0xc9, 0xc7, 0xc4, 0xc3, 0xc0, 0xcb, 0xce, 0xd0, 0xcf, 0xcf, 0xd1, 0xd1, 0xd1, 0xd7, 0xb1, 0x96, 0x94, 0x93, 0x8e, 0x8d, 0x8e, 0x96, 0x97, 0x8e, 0x78, 0x89, 0xce, 0xe6, 0xe7, 0xdf, 0xe6, 0x98, 0xb9, 0xe6, 0xb5, 0x63, 0x6f, 0x9c, 0x9d, 0x99, 0x9f, 0x9c, 0x93, 0x96, 0x95, 0x9e, 0x9f, 0x99, 0x99, 0x9e, 0x96, 0x90, 0x99, 0x97, 0x96, 0xbf, 0xd6, 0xcc, 0xcb, 0xc7, 0xbc, 0xb1, 0xae, 0xaf, 0xad, 0x7c, 0x64, 0xa1, 0xb9, 0xb4, 0x9d, 0xa2, 0xac, 0x87, 0x55, 0x49, 0x55, 0x53, 0x55, 0x58, 0x5a, 0x59, 0x58, 0x58, 0x58, 0x58, 0x57, 0x55, 0x54, 0x52, 0x4f, 0x4c, 0x49, 0x48, 0x45, 0x43, 0x42, 0x3f, 0x3c, 0x3d, 0x3f, 0x37, 0x3a, 0x39, 0x3b, 0x43, 0x4f, 0x66, 0x81, 0x7f, 0x7b, 0x78, 0x77, 0x73, 0x6d, 0x67, 0x65, 0x6e, 0x71, 0x72, 0x70, 0x6f, 0x6d, 0x69, 0x64, 0x62, 0x62, 0x62, 0x60, 0x5d, 0x5f, 0x69, 0x75, 0x6a, 0x61, 0x5a, 0x67, 0x68, 0x5c, 0x61, 0x67, 0x6d, 0x72, 0x74, 0x73, 0x72, 0x71, 0x6f, 0x6d, 0x6d, 0x6f, 0x6f, 0x68, 0x5a, 0x4c, 0x47, 0x49, 0x4b, 0x4d, 0x51, 0x58, 0x60, 0x64, 0x5f, 0x57, 0x45, 0x4e, 0x5d, 0x68, 0x68, 0x65, 0x6b, 0x75, 0x6a, 0x5b, 0x4b, 0x40, 0x3a, 0x36, 0x37, 0x3c, 0x3b, 0x41, 0x44, 0x44, 0x46, 0x47, 0x3e, 0x31, 0x40, 0x4d, 0x56, 0x55, 0x56, 0x5f, 0x68, 0x6c, 0x67, 0x69, 0x6d, 0x64, 0x67, 0x65, 0x68, 0x64, 0x5d, 0x60, 0x66, 0x69, 0x6b, 0x74, 0x85, 0x94, 0xa6, 0xa6, 0xa0, 0x90, 0x80, 0x7a, 0x83, 0x8d, 0x74, 0x75, 0x76, 0x77, 0x7a, 0x7d, 0x7b, 0x76, 0x6b, 0x61, 0x56, 0x4b, 0x3e, 0x30, 0x28, 0x27, 0x27, 0x23, 0x1c, 0x1e, 0x27, 0x2a, 0x2d, 0x37, 0x33, 0x2f, 0x32, 0x3d, 0x41, 0x3a, 0x31, 0x2e, 0x36, 0x2b, 0x1d, 0x16, 0x16, 0x20, 0x2f, 0x3c, 0x3b, 0x34, 0x2c, 0x2e, 0x3b, 0x49, 0x4e, 0x4c, 0x52, 0x52, 0x4a, 0x3f, 0x40, 0x4d, 0x59, 0x5d, 0x67, 0x64, 0x5f, 0x5e, 0x64, 0x6d, 0x74, 0x76, 0x75, 0x7f, 0x88, 0x87, 0x81, 0x7b, 0x74, 0x6f, 0x65, 0x60, 0x63, 0x6e, 0x72, 0x6d, 0x6d, 0x72, 0x6c, 0x64, 0x5e, 0x5f, 0x65, 0x6b, 0x6f, 0x71, 0x73, 0x75, 0x74, 0x6e, 0x65, 0x5f, 0x60, 0x64, 0x6b, 0x67, 0x69, 0x6c, 0x64, 0x5d, 0x67, 0x79, 0x8d, 0x8b, 0x7e, 0x6f, 0x6e, 0x7b, 0x82, 0x7f, 0x78, 0x71, 0x73, 0x7b, 0x79, 0x6d, 0x65, 0x65, 0x64, 0x68, 0x6a, 0x6b, 0x6c, 0x6c, 0x69, 0x64, 0x61, 0x65, 0x6b, 0x6f, 0x6c, 0x64, 0x5f, 0x5e, 0x59, 0x5e, 0x65, 0x67, 0x66, 0x66, 0x6a, 0x6e, 0x6e, 0x6a, 0x67, 0x6e, 0x84, 0x94, 0x8c, 0x7a, 0x6c, 0x68, 0x6c, 0x77, 0x7b, 0x73, 0x6a, 0x69, 0x6f, 0x6e, 0x6f, 0x74, 0x7c, 0x82, 0x83, 0x81, 0x7b, 0x82, 0x8d, 0x90, 0x84, 0x72, 0x6a, 0x6b, 0x7a, 0x75, 0x6c, 0x66, 0x69, 0x73, 0x7c, 0x80, 0x7a, 0x7d, 0x7f, 0x7c, 0x77, 0x77, 0x81, 0x8b, 0x8e, 0x84, 0x7b, 0x77, 0x75, 0x71, 0x71, 0x74, 0x74, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x62, 0x62, 0x64, 0x6f, 0x81, 0x8f, 0x8e, 0x85, 0x75, 0x71, 0x6d, 0x77, 0x92, 0xa5, 0xa4, 0x9d, 0x97, 0x93, 0x8f, 0x89, 0x84, 0x82, 0x88, 0x8f, 0x95, 0x8c, 0x84, 0x80, 0x83, 0x8b, 0x97, 0xa1, 0xac, 0xb3, 0xbb, 0xbe, 0xc0, 0xc3, 0xc5, 0xc5, 0xc5, 0xc1, 0xbb, 0xb4, 0xb0, 0xb1, 0xb6, 0xbb, 0xbf, 0xbf, 0xc1, 0xc4, 0xc4, 0xc1, 0xba, 0xb4, 0xb9, 0xbd, 0xbf, 0xc0, 0xc0, 0xc1, 0xc0, 0xbe, 0xb9, 0xbd, 0xb6, 0xb1, 0xb7, 0xb5, 0xb1, 0xb8, 0xb6, 0xb6, 0xb9, 0xbb, 0xbe, 0xbe, 0xbc, 0xba, 0xbc, 0xbb, 0xba, 0xba, 0xbb, 0xbb, 0xba, 0xb8, 0xb8, 0xb8, 0xb5, 0xb2, 0xb1, 0xaf, 0xa7, 0xa0, 0x9f, 0x9d, 0x9b, 0x9a, 0x9b, 0x9d, 0x9d, 0x9d, 0xa0, 0xa1, 0xa1, 0xa0, 0xa1, 0x9f, 0x99, 0x93, 0x82, 0x79, 0x75, 0x70, 0x77, 0x7f, 0x71, 0x66, 0x6a, 0x6a, 0x6d, 0x73, 0x78, 0x79, 0x7a, 0x7b, 0x80, 0x86, 0x8c, 0x8e, 0x92, 0xa4, 0xc5, 0xe1, 0xe5, 0xe3, 0xe1, 0xdd, 0xd7, 0xd0, 0xcb, 0xca, 0xbf, 0xba, 0xb5, 0xb2, 0xaf, 0xab, 0xa4, 0x9f, 0x9f, 0xa4, 0xa8, 0xa9, 0xa8, 0xab, 0xb2, 0xba, 0xba, 0xbc, 0xbf, 0xc1, 0xbd, 0xb4, 0xac, 0xa8, 0xb7, 0xb1, 0xb4, 0xbd, 0xbf, 0xa5, 0x53, 0x26, 0x4d, 0xb5, 0xde, 0xe3, 0xe5, 0xe5, 0xa6, 0x50, 0x36, 0x4b, 0x3d, 0x3e, 0x50, 0xc5, 0xe4, 0xd1, 0xd5, 0xdc, 0xe6, 0xea, 0xce, 0x66, 0x75, 0xdc, 0xec, 0xec, 0xdb, 0xe2, 0x86, 0x39, 0x5c, 0xaf, 0xcb, 0xc0, 0xbf, 0xc4, 0xc2, 0xc2, 0xc2, 0xbd, 0xcb, 0xce, 0xd0, 0xcf, 0xcf, 0xd1, 0xd2, 0xd1, 0xd6, 0xaf, 0x96, 0x95, 0x95, 0x91, 0x91, 0x92, 0x94, 0x98, 0xa7, 0x8f, 0x70, 0xd2, 0xe2, 0xbf, 0xe1, 0xdf, 0xae, 0xb5, 0xed, 0xd8, 0x68, 0x70, 0x98, 0x9a, 0x93, 0x97, 0x9b, 0x9b, 0x9f, 0x99, 0x9c, 0x94, 0x90, 0xa6, 0xbd, 0xaa, 0x93, 0x99, 0x96, 0x92, 0xbb, 0xd6, 0xcd, 0xcb, 0xc7, 0xbe, 0xb2, 0xae, 0xb6, 0xa9, 0x68, 0x65, 0xa5, 0xb8, 0xaa, 0xa1, 0xaa, 0xb0, 0x8d, 0x5a, 0x46, 0x4e, 0x54, 0x56, 0x59, 0x5a, 0x5a, 0x58, 0x56, 0x56, 0x57, 0x55, 0x53, 0x52, 0x50, 0x4d, 0x4a, 0x48, 0x46, 0x44, 0x42, 0x41, 0x3e, 0x3b, 0x3c, 0x3e, 0x3a, 0x38, 0x35, 0x3d, 0x50, 0x5f, 0x6c, 0x7a, 0x72, 0x71, 0x72, 0x73, 0x74, 0x73, 0x72, 0x71, 0x7d, 0x82, 0x83, 0x7f, 0x7c, 0x78, 0x70, 0x66, 0x66, 0x61, 0x5f, 0x5d, 0x58, 0x54, 0x58, 0x61, 0x55, 0x62, 0x62, 0x64, 0x6a, 0x6e, 0x6f, 0x60, 0x69, 0x6a, 0x6a, 0x69, 0x6b, 0x6e, 0x6f, 0x6d, 0x6e, 0x6f, 0x6d, 0x65, 0x58, 0x4e, 0x4e, 0x53, 0x59, 0x5e, 0x65, 0x6b, 0x6a, 0x65, 0x60, 0x5d, 0x56, 0x4d, 0x53, 0x6f, 0x85, 0x80, 0x68, 0x55, 0x38, 0x3a, 0x4b, 0x5a, 0x4b, 0x2a, 0x20, 0x2c, 0x30, 0x23, 0x20, 0x32, 0x4a, 0x4e, 0x3a, 0x24, 0x38, 0x50, 0x61, 0x5f, 0x59, 0x5b, 0x5a, 0x54, 0x4e, 0x57, 0x5f, 0x5f, 0x66, 0x70, 0x78, 0x79, 0x7d, 0x87, 0x9a, 0xa9, 0xa9, 0x9e, 0x97, 0x98, 0x79, 0x6a, 0x56, 0x4c, 0x50, 0x5a, 0x5c, 0x58, 0x58, 0x4e, 0x3e, 0x35, 0x3a, 0x48, 0x54, 0x5a, 0x56, 0x50, 0x4c, 0x4d, 0x4f, 0x4e, 0x4e, 0x4f, 0x40, 0x42, 0x3c, 0x34, 0x31, 0x2d, 0x2d, 0x34, 0x3d, 0x3b, 0x32, 0x26, 0x26, 0x32, 0x3c, 0x3f, 0x36, 0x2a, 0x1c, 0x15, 0x15, 0x1b, 0x25, 0x2d, 0x30, 0x26, 0x1f, 0x28, 0x3c, 0x50, 0x57, 0x56, 0x36, 0x4e, 0x67, 0x6e, 0x67, 0x5e, 0x59, 0x56, 0x66, 0x69, 0x65, 0x5f, 0x65, 0x74, 0x7b, 0x78, 0x76, 0x7d, 0x82, 0x7d, 0x74, 0x6e, 0x6f, 0x71, 0x6b, 0x67, 0x62, 0x60, 0x60, 0x61, 0x63, 0x65, 0x61, 0x5c, 0x5b, 0x63, 0x6b, 0x70, 0x72, 0x75, 0x71, 0x76, 0x78, 0x72, 0x67, 0x60, 0x5f, 0x63, 0x66, 0x67, 0x6c, 0x6e, 0x66, 0x5f, 0x6c, 0x81, 0x8c, 0x80, 0x73, 0x6d, 0x71, 0x78, 0x7d, 0x7e, 0x79, 0x75, 0x76, 0x7b, 0x7a, 0x6e, 0x64, 0x61, 0x64, 0x67, 0x68, 0x67, 0x68, 0x68, 0x65, 0x61, 0x61, 0x63, 0x66, 0x68, 0x64, 0x60, 0x60, 0x64, 0x60, 0x64, 0x67, 0x65, 0x61, 0x60, 0x62, 0x65, 0x64, 0x62, 0x67, 0x76, 0x84, 0x84, 0x7a, 0x71, 0x70, 0x6d, 0x71, 0x7b, 0x7e, 0x77, 0x72, 0x73, 0x76, 0x70, 0x6c, 0x70, 0x78, 0x7e, 0x80, 0x7f, 0x88, 0x8b, 0x92, 0x94, 0x8d, 0x82, 0x7e, 0x81, 0x79, 0x75, 0x6c, 0x66, 0x67, 0x71, 0x7a, 0x7f, 0x7a, 0x7b, 0x78, 0x73, 0x6f, 0x70, 0x78, 0x7f, 0x83, 0x7a, 0x74, 0x75, 0x75, 0x72, 0x74, 0x79, 0x70, 0x6d, 0x6a, 0x68, 0x68, 0x69, 0x68, 0x66, 0x62, 0x69, 0x6f, 0x73, 0x7a, 0x82, 0x82, 0x7d, 0x7d, 0x83, 0x7f, 0x81, 0x99, 0xab, 0xa6, 0x9d, 0x98, 0x94, 0x8d, 0x86, 0x7d, 0x78, 0x79, 0x7d, 0x82, 0x7b, 0x73, 0x70, 0x71, 0x77, 0x81, 0x89, 0x97, 0xa3, 0xaf, 0xb6, 0xb9, 0xbd, 0xbf, 0xc0, 0xc3, 0xc1, 0xbc, 0xb4, 0xac, 0xa7, 0xa5, 0xa5, 0xad, 0xb2, 0xb9, 0xc0, 0xc3, 0xc2, 0xbf, 0xbe, 0xb8, 0xb9, 0xbb, 0xbc, 0xbf, 0xc1, 0xbe, 0xb9, 0xb7, 0xbb, 0xb3, 0xaf, 0xb5, 0xb5, 0xb3, 0xbb, 0xb7, 0xb8, 0xbb, 0xbd, 0xbf, 0xbe, 0xbc, 0xbb, 0xb2, 0xb3, 0xb3, 0xb5, 0xb8, 0xba, 0xbb, 0xbb, 0xb7, 0xb8, 0xb7, 0xb7, 0xb8, 0xb8, 0xb2, 0xab, 0xa6, 0xa2, 0x9e, 0x9b, 0x9a, 0x9b, 0x9d, 0x9d, 0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0x9e, 0x99, 0x93, 0x85, 0x7a, 0x74, 0x6c, 0x73, 0x7d, 0x71, 0x68, 0x71, 0x74, 0x79, 0x7d, 0x7d, 0x7b, 0x7d, 0x81, 0x88, 0x8d, 0x8f, 0x92, 0xa5, 0xc5, 0xdf, 0xea, 0xe4, 0xe0, 0xdd, 0xd9, 0xcf, 0xc3, 0xbf, 0xc0, 0xbb, 0xba, 0xb6, 0xb0, 0xa8, 0xa3, 0xa0, 0x9f, 0xa0, 0xa5, 0xab, 0xad, 0xab, 0xad, 0xb2, 0xb8, 0xbd, 0xbd, 0xc0, 0xc3, 0xc1, 0xb8, 0xb0, 0xad, 0xb0, 0xbf, 0xb9, 0xb7, 0xc0, 0xa2, 0x41, 0x2e, 0x87, 0xdb, 0xec, 0xed, 0xe8, 0xe7, 0xde, 0xd1, 0x67, 0x52, 0x2d, 0x4a, 0x40, 0xa9, 0xf1, 0xdf, 0xec, 0xea, 0xdf, 0xe5, 0xd0, 0x75, 0x83, 0xe1, 0xe8, 0xde, 0xe2, 0xe3, 0xd0, 0x58, 0x38, 0x84, 0xcc, 0xc7, 0xc3, 0xc2, 0xc4, 0xc6, 0xc4, 0xbd, 0xcd, 0xd0, 0xd1, 0xd0, 0xd0, 0xd2, 0xd2, 0xd2, 0xd4, 0xaf, 0x96, 0x96, 0x97, 0x94, 0x94, 0x95, 0x9e, 0x97, 0x98, 0x8c, 0x85, 0x8d, 0xd5, 0xcd, 0xde, 0xdf, 0x87, 0x66, 0x98, 0x93, 0x65, 0x5a, 0x91, 0xa0, 0xa0, 0x9b, 0x95, 0x96, 0x9d, 0x96, 0x94, 0x94, 0x97, 0xb1, 0xcc, 0xb8, 0x97, 0x91, 0x91, 0x8b, 0xb5, 0xd3, 0xcb, 0xc8, 0xc4, 0xbd, 0xb3, 0xb2, 0xbc, 0x9d, 0x5d, 0x6a, 0xa6, 0xb6, 0xac, 0xa3, 0x95, 0x90, 0x83, 0x59, 0x42, 0x53, 0x54, 0x56, 0x59, 0x5a, 0x59, 0x58, 0x56, 0x56, 0x53, 0x51, 0x4f, 0x4d, 0x4b, 0x49, 0x46, 0x44, 0x43, 0x41, 0x40, 0x40, 0x3d, 0x3a, 0x39, 0x3c, 0x37, 0x3a, 0x3e, 0x4c, 0x63, 0x6e, 0x71, 0x75, 0x6c, 0x6f, 0x70, 0x6f, 0x6f, 0x71, 0x76, 0x79, 0x82, 0x82, 0x7e, 0x78, 0x77, 0x77, 0x71, 0x68, 0x6d, 0x63, 0x5c, 0x5a, 0x57, 0x53, 0x53, 0x58, 0x4f, 0x64, 0x68, 0x67, 0x6a, 0x6e, 0x6c, 0x56, 0x62, 0x65, 0x69, 0x6c, 0x72, 0x77, 0x78, 0x76, 0x6f, 0x6b, 0x63, 0x56, 0x49, 0x48, 0x56, 0x65, 0x67, 0x59, 0x50, 0x56, 0x60, 0x63, 0x5e, 0x5a, 0x61, 0x6f, 0x85, 0x8e, 0x7b, 0x58, 0x40, 0x3a, 0x5c, 0x65, 0x75, 0x7b, 0x68, 0x4b, 0x41, 0x47, 0x3d, 0x2d, 0x2c, 0x43, 0x50, 0x40, 0x25, 0x15, 0x29, 0x44, 0x5c, 0x62, 0x64, 0x68, 0x68, 0x63, 0x60, 0x62, 0x65, 0x73, 0x88, 0x9f, 0xa4, 0xa1, 0x9b, 0x8f, 0x83, 0x78, 0x66, 0x4e, 0x3a, 0x32, 0x3b, 0x3a, 0x3c, 0x47, 0x58, 0x62, 0x5e, 0x54, 0x48, 0x50, 0x5c, 0x6a, 0x79, 0x84, 0x87, 0x85, 0x7e, 0x71, 0x60, 0x54, 0x4b, 0x41, 0x37, 0x30, 0x3c, 0x30, 0x2e, 0x3f, 0x48, 0x3d, 0x3c, 0x4d, 0x5e, 0x49, 0x2e, 0x23, 0x30, 0x42, 0x41, 0x35, 0x2b, 0x28, 0x28, 0x2c, 0x34, 0x3c, 0x45, 0x4c, 0x4f, 0x49, 0x47, 0x50, 0x5f, 0x68, 0x67, 0x62, 0x62, 0x57, 0x4d, 0x49, 0x49, 0x4a, 0x50, 0x57, 0x68, 0x69, 0x64, 0x5c, 0x62, 0x72, 0x7a, 0x78, 0x75, 0x74, 0x72, 0x70, 0x6c, 0x68, 0x64, 0x62, 0x6d, 0x76, 0x73, 0x64, 0x63, 0x71, 0x75, 0x6c, 0x60, 0x61, 0x67, 0x6f, 0x74, 0x72, 0x6d, 0x6a, 0x77, 0x79, 0x79, 0x73, 0x69, 0x63, 0x64, 0x68, 0x66, 0x68, 0x6c, 0x6b, 0x64, 0x61, 0x6c, 0x7b, 0x77, 0x68, 0x5c, 0x5c, 0x64, 0x6b, 0x74, 0x7b, 0x76, 0x75, 0x76, 0x77, 0x77, 0x72, 0x69, 0x63, 0x6a, 0x6b, 0x6a, 0x66, 0x64, 0x64, 0x64, 0x62, 0x63, 0x64, 0x65, 0x66, 0x64, 0x62, 0x64, 0x68, 0x70, 0x71, 0x70, 0x6b, 0x67, 0x67, 0x68, 0x68, 0x68, 0x63, 0x68, 0x76, 0x7a, 0x71, 0x68, 0x67, 0x6f, 0x6d, 0x6e, 0x72, 0x73, 0x72, 0x76, 0x7d, 0x75, 0x75, 0x78, 0x7c, 0x7e, 0x81, 0x87, 0x8d, 0x85, 0x82, 0x80, 0x7e, 0x75, 0x6c, 0x6b, 0x70, 0x72, 0x74, 0x74, 0x72, 0x73, 0x77, 0x79, 0x78, 0x79, 0x77, 0x70, 0x6a, 0x6d, 0x78, 0x80, 0x81, 0x78, 0x73, 0x6f, 0x70, 0x6f, 0x6f, 0x72, 0x78, 0x7b, 0x73, 0x6e, 0x71, 0x77, 0x78, 0x6e, 0x64, 0x62, 0x71, 0x7c, 0x7c, 0x7b, 0x7e, 0x80, 0x7f, 0x88, 0x94, 0x8f, 0x8e, 0xa5, 0xb3, 0xac, 0xa4, 0x9e, 0x99, 0x92, 0x8b, 0x83, 0x7c, 0x79, 0x7b, 0x7b, 0x75, 0x6e, 0x6a, 0x69, 0x6b, 0x70, 0x76, 0x86, 0x95, 0xa7, 0xb2, 0xb7, 0xba, 0xbd, 0xbe, 0xc2, 0xc4, 0xc3, 0xbf, 0xb7, 0xab, 0xa1, 0x9b, 0x9e, 0xa1, 0xa5, 0xaa, 0xaf, 0xb4, 0xbb, 0xbf, 0xc0, 0xbf, 0xbc, 0xba, 0xbb, 0xb9, 0xb3, 0xab, 0xb4, 0xb4, 0xb0, 0xae, 0xb1, 0xb3, 0xb5, 0xba, 0xba, 0xbb, 0xbd, 0xbd, 0xba, 0xb7, 0xb5, 0xb4, 0xac, 0xad, 0xae, 0xaf, 0xaf, 0xb1, 0xb4, 0xb6, 0xba, 0xbb, 0xbc, 0xbc, 0xbd, 0xbc, 0xb8, 0xb3, 0xb3, 0xaf, 0xa8, 0xa2, 0x9f, 0x9e, 0x9d, 0x9c, 0x9a, 0x9c, 0x9d, 0x9c, 0x9b, 0x9a, 0x96, 0x91, 0x89, 0x7b, 0x74, 0x6d, 0x73, 0x7b, 0x72, 0x6d, 0x78, 0x7b, 0x80, 0x83, 0x83, 0x83, 0x89, 0x91, 0x93, 0x93, 0x93, 0xa1, 0xc1, 0xe2, 0xeb, 0xe3, 0xe6, 0xdb, 0xd0, 0xcb, 0xc6, 0xbd, 0xb7, 0xb4, 0xb8, 0xb9, 0xb5, 0xad, 0xa3, 0x9e, 0x9f, 0xa2, 0xa3, 0xa8, 0xae, 0xb0, 0xb0, 0xb0, 0xb4, 0xb8, 0xc0, 0xbf, 0xc2, 0xc7, 0xc5, 0xbc, 0xb5, 0xb3, 0xb4, 0xc0, 0xb8, 0xbd, 0xc6, 0x9f, 0x36, 0x37, 0xa5, 0xed, 0xe6, 0xe3, 0xe4, 0xe4, 0xea, 0xee, 0xe9, 0xae, 0x60, 0x51, 0x5a, 0xbd, 0xe8, 0xe4, 0xe6, 0xde, 0xbd, 0xd4, 0xef, 0xd9, 0xd2, 0xe4, 0xe3, 0xd8, 0xe7, 0xd3, 0xdb, 0x9d, 0x30, 0x4e, 0xb4, 0xca, 0xd0, 0xc7, 0xca, 0xce, 0xc8, 0xc2, 0xce, 0xd2, 0xd3, 0xd1, 0xd1, 0xd2, 0xd3, 0xd2, 0xd3, 0xae, 0x96, 0x96, 0x97, 0x94, 0x94, 0x95, 0x88, 0x96, 0x9c, 0x98, 0x90, 0x68, 0x98, 0xd9, 0xe5, 0xc8, 0x6c, 0x59, 0x7f, 0x70, 0x5f, 0x51, 0x88, 0x99, 0x9b, 0x9b, 0x98, 0x99, 0x9d, 0x94, 0x92, 0x9f, 0xa9, 0xb8, 0xc6, 0xb9, 0x9b, 0x8c, 0x8e, 0x88, 0xb4, 0xd5, 0xcd, 0xc7, 0xc5, 0xc0, 0xb4, 0xb5, 0xbb, 0x89, 0x5b, 0x73, 0xa4, 0xae, 0xaf, 0xa8, 0x75, 0x46, 0x49, 0x50, 0x4e, 0x57, 0x54, 0x56, 0x58, 0x59, 0x58, 0x56, 0x55, 0x55, 0x52, 0x50, 0x4d, 0x4b, 0x49, 0x47, 0x45, 0x43, 0x3f, 0x3e, 0x3d, 0x3d, 0x3b, 0x38, 0x38, 0x3b, 0x36, 0x45, 0x54, 0x63, 0x71, 0x77, 0x79, 0x7f, 0x76, 0x76, 0x72, 0x69, 0x64, 0x67, 0x6e, 0x73, 0x7e, 0x78, 0x6e, 0x68, 0x6a, 0x70, 0x72, 0x71, 0x6a, 0x61, 0x58, 0x57, 0x5c, 0x62, 0x67, 0x6b, 0x68, 0x68, 0x63, 0x6a, 0x6b, 0x66, 0x6d, 0x6d, 0x65, 0x6b, 0x72, 0x77, 0x7a, 0x7a, 0x76, 0x70, 0x67, 0x65, 0x5e, 0x52, 0x44, 0x40, 0x4a, 0x58, 0x50, 0x51, 0x4f, 0x43, 0x31, 0x2e, 0x45, 0x62, 0x72, 0x75, 0x73, 0x64, 0x4b, 0x3b, 0x41, 0x51, 0x64, 0x80, 0x94, 0x92, 0x86, 0x76, 0x5b, 0x3f, 0x2d, 0x30, 0x40, 0x52, 0x4b, 0x31, 0x25, 0x2b, 0x17, 0x26, 0x38, 0x46, 0x51, 0x5c, 0x66, 0x6b, 0x61, 0x62, 0x5f, 0x69, 0x6d, 0x7a, 0x7c, 0x80, 0x7a, 0x5f, 0x3f, 0x2f, 0x32, 0x42, 0x53, 0x5f, 0x5b, 0x64, 0x6d, 0x6e, 0x69, 0x66, 0x6b, 0x71, 0x82, 0x77, 0x65, 0x56, 0x51, 0x58, 0x60, 0x65, 0x66, 0x65, 0x66, 0x6b, 0x6f, 0x6a, 0x5f, 0x55, 0x40, 0x46, 0x49, 0x46, 0x3f, 0x3e, 0x56, 0x79, 0x6b, 0x43, 0x1c, 0x13, 0x1e, 0x28, 0x29, 0x27, 0x29, 0x23, 0x1e, 0x1e, 0x23, 0x2c, 0x38, 0x42, 0x3d, 0x38, 0x36, 0x3e, 0x49, 0x52, 0x57, 0x59, 0x53, 0x3e, 0x29, 0x23, 0x24, 0x26, 0x2b, 0x33, 0x6a, 0x64, 0x5f, 0x5e, 0x62, 0x68, 0x6e, 0x71, 0x70, 0x6e, 0x6e, 0x70, 0x6f, 0x68, 0x5d, 0x55, 0x5b, 0x65, 0x69, 0x63, 0x65, 0x70, 0x74, 0x6f, 0x71, 0x72, 0x71, 0x6e, 0x6a, 0x68, 0x65, 0x62, 0x73, 0x75, 0x74, 0x70, 0x6a, 0x66, 0x67, 0x6a, 0x67, 0x67, 0x66, 0x64, 0x63, 0x66, 0x6c, 0x71, 0x69, 0x63, 0x5b, 0x57, 0x59, 0x62, 0x6c, 0x73, 0x76, 0x78, 0x76, 0x72, 0x73, 0x75, 0x6e, 0x64, 0x68, 0x6b, 0x6c, 0x69, 0x67, 0x67, 0x68, 0x67, 0x68, 0x65, 0x63, 0x63, 0x63, 0x62, 0x65, 0x68, 0x65, 0x66, 0x65, 0x63, 0x66, 0x6d, 0x71, 0x72, 0x64, 0x61, 0x67, 0x74, 0x7c, 0x7a, 0x75, 0x73, 0x6c, 0x6e, 0x6d, 0x6a, 0x67, 0x6b, 0x76, 0x80, 0x78, 0x78, 0x7a, 0x7d, 0x7c, 0x7a, 0x7d, 0x82, 0x85, 0x80, 0x7a, 0x72, 0x68, 0x60, 0x62, 0x6a, 0x76, 0x7b, 0x80, 0x84, 0x85, 0x83, 0x7a, 0x71, 0x67, 0x69, 0x67, 0x6b, 0x7e, 0x97, 0x9e, 0x97, 0x74, 0x70, 0x6c, 0x6b, 0x6c, 0x70, 0x75, 0x79, 0x74, 0x70, 0x6c, 0x6e, 0x70, 0x6b, 0x60, 0x55, 0x66, 0x76, 0x7f, 0x7b, 0x78, 0x7e, 0x85, 0x87, 0x86, 0x90, 0x8c, 0x92, 0xac, 0xb6, 0xac, 0xaa, 0xa7, 0xa0, 0x98, 0x92, 0x8c, 0x85, 0x81, 0x80, 0x7e, 0x78, 0x70, 0x6b, 0x68, 0x65, 0x67, 0x6a, 0x79, 0x8c, 0xa2, 0xb0, 0xb6, 0xba, 0xbd, 0xbe, 0xc1, 0xc2, 0xc5, 0xc5, 0xc1, 0xb8, 0xaf, 0xa8, 0xa1, 0x9d, 0x98, 0x96, 0x99, 0xa0, 0xa7, 0xac, 0xb2, 0xb4, 0xb5, 0xb5, 0xb7, 0xb9, 0xb7, 0xb3, 0xab, 0xa8, 0xaa, 0xac, 0xaa, 0xad, 0xb1, 0xb0, 0xb3, 0xb6, 0xb8, 0xb5, 0xb0, 0xab, 0xaa, 0xaa, 0xaa, 0xac, 0xad, 0xab, 0xa8, 0xa8, 0xad, 0xb1, 0xba, 0xbd, 0xbe, 0xbe, 0xbe, 0xbe, 0xbb, 0xb8, 0xba, 0xb6, 0xb0, 0xaa, 0xa5, 0xa0, 0x9c, 0x9a, 0x99, 0x9b, 0x9c, 0x9a, 0x99, 0x98, 0x95, 0x90, 0x8c, 0x7c, 0x76, 0x71, 0x75, 0x7a, 0x72, 0x72, 0x81, 0x83, 0x88, 0x8c, 0x8f, 0x91, 0x97, 0x9e, 0x9d, 0x9e, 0xa9, 0xc1, 0xdb, 0xe9, 0xe6, 0xde, 0xe4, 0xda, 0xd0, 0xcb, 0xc9, 0xc4, 0xbe, 0xb9, 0xb7, 0xb6, 0xb1, 0xa9, 0xa0, 0x9d, 0xa0, 0xa4, 0xa8, 0xab, 0xaf, 0xb2, 0xb3, 0xb5, 0xb9, 0xbc, 0xc4, 0xc1, 0xc4, 0xc9, 0xc8, 0xbf, 0xb7, 0xb5, 0xbe, 0xbb, 0xb8, 0xc5, 0xc8, 0xab, 0x42, 0x36, 0x9d, 0xf1, 0xe9, 0xe5, 0xe9, 0xe4, 0xe4, 0xe4, 0xe6, 0xe8, 0xdc, 0xcd, 0xcd, 0xed, 0xe8, 0xe7, 0xe9, 0xa0, 0x61, 0xab, 0xe3, 0xe5, 0xdf, 0xed, 0xe7, 0xe0, 0xde, 0xc8, 0xc1, 0xd0, 0x69, 0x39, 0x71, 0xb1, 0xce, 0xc3, 0xc5, 0xc8, 0xc1, 0xc1, 0xd0, 0xd3, 0xd4, 0xd2, 0xd1, 0xd2, 0xd2, 0xd1, 0xd1, 0xac, 0x95, 0x96, 0x97, 0x95, 0x95, 0x96, 0xa0, 0x99, 0x8e, 0x98, 0xa3, 0x9e, 0x67, 0x63, 0x7d, 0x5a, 0x6d, 0x75, 0x86, 0x8a, 0x49, 0x51, 0x80, 0x88, 0x8a, 0x93, 0x96, 0x94, 0x9b, 0x9a, 0x98, 0x9a, 0xa6, 0xba, 0xc0, 0xaf, 0x97, 0x8a, 0x8d, 0x88, 0xb6, 0xd9, 0xd1, 0xc9, 0xc6, 0xc4, 0xb2, 0xb3, 0xb3, 0x72, 0x63, 0x82, 0xa4, 0xa9, 0xa3, 0x98, 0x6b, 0x3f, 0x40, 0x52, 0x51, 0x47, 0x55, 0x56, 0x57, 0x57, 0x55, 0x53, 0x53, 0x53, 0x51, 0x4f, 0x4c, 0x49, 0x48, 0x46, 0x43, 0x42, 0x3e, 0x3c, 0x3b, 0x3b, 0x3a, 0x39, 0x3b, 0x3f, 0x4a, 0x5a, 0x66, 0x6a, 0x6b, 0x68, 0x69, 0x70, 0x71, 0x71, 0x6d, 0x67, 0x66, 0x6d, 0x75, 0x79, 0x7c, 0x74, 0x6c, 0x68, 0x67, 0x6a, 0x6f, 0x74, 0x72, 0x6c, 0x63, 0x5d, 0x5f, 0x66, 0x6a, 0x6b, 0x6b, 0x76, 0x6f, 0x68, 0x67, 0x6b, 0x6c, 0x5d, 0x62, 0x68, 0x6e, 0x71, 0x70, 0x6e, 0x69, 0x64, 0x6a, 0x68, 0x62, 0x55, 0x43, 0x35, 0x33, 0x37, 0x3e, 0x2f, 0x2c, 0x3e, 0x53, 0x5c, 0x5f, 0x61, 0x5e, 0x65, 0x6b, 0x67, 0x5a, 0x4c, 0x45, 0x43, 0x66, 0x7e, 0x8c, 0x8a, 0x8d, 0x94, 0x8b, 0x76, 0x63, 0x56, 0x4e, 0x4c, 0x43, 0x2f, 0x1e, 0x17, 0x19, 0x16, 0x1c, 0x2c, 0x38, 0x3e, 0x48, 0x52, 0x53, 0x57, 0x53, 0x54, 0x40, 0x3e, 0x42, 0x53, 0x59, 0x53, 0x4c, 0x4d, 0x58, 0x65, 0x6b, 0x6b, 0x75, 0x6d, 0x6a, 0x6f, 0x71, 0x6b, 0x64, 0x60, 0x55, 0x4f, 0x45, 0x3f, 0x40, 0x46, 0x4a, 0x4a, 0x37, 0x37, 0x38, 0x3a, 0x3d, 0x3f, 0x3d, 0x3a, 0x4b, 0x5e, 0x6b, 0x73, 0x7d, 0x7b, 0x68, 0x57, 0x51, 0x4b, 0x49, 0x4b, 0x46, 0x38, 0x2d, 0x2b, 0x26, 0x1f, 0x18, 0x19, 0x1f, 0x28, 0x32, 0x39, 0x48, 0x3c, 0x2e, 0x25, 0x1e, 0x18, 0x15, 0x15, 0x13, 0x16, 0x1c, 0x21, 0x24, 0x26, 0x2b, 0x30, 0x6c, 0x61, 0x5f, 0x67, 0x6a, 0x63, 0x63, 0x6b, 0x71, 0x71, 0x72, 0x72, 0x6e, 0x66, 0x5f, 0x5a, 0x62, 0x5d, 0x5f, 0x68, 0x69, 0x67, 0x6f, 0x7e, 0x82, 0x7e, 0x71, 0x62, 0x5b, 0x60, 0x67, 0x6a, 0x67, 0x69, 0x6b, 0x6b, 0x68, 0x66, 0x65, 0x65, 0x64, 0x63, 0x60, 0x60, 0x67, 0x71, 0x75, 0x72, 0x72, 0x76, 0x71, 0x63, 0x5b, 0x60, 0x66, 0x67, 0x74, 0x77, 0x73, 0x6a, 0x6b, 0x71, 0x6c, 0x5f, 0x5d, 0x65, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x6a, 0x64, 0x5d, 0x5b, 0x5c, 0x5d, 0x60, 0x64, 0x70, 0x6f, 0x6a, 0x65, 0x66, 0x6c, 0x6f, 0x6e, 0x6e, 0x6d, 0x6f, 0x77, 0x80, 0x82, 0x7a, 0x70, 0x6c, 0x73, 0x74, 0x6c, 0x66, 0x6a, 0x76, 0x80, 0x7b, 0x75, 0x74, 0x7a, 0x81, 0x84, 0x84, 0x85, 0x79, 0x75, 0x71, 0x6a, 0x61, 0x5d, 0x65, 0x71, 0x72, 0x76, 0x7b, 0x80, 0x81, 0x7b, 0x6c, 0x5e, 0x61, 0x64, 0x63, 0x66, 0x7b, 0x91, 0x8e, 0x7b, 0x75, 0x71, 0x6c, 0x69, 0x6d, 0x74, 0x7a, 0x7d, 0x73, 0x77, 0x79, 0x75, 0x6d, 0x65, 0x60, 0x5f, 0x6d, 0x77, 0x78, 0x6f, 0x6b, 0x75, 0x7f, 0x83, 0x88, 0x8e, 0x8c, 0x9c, 0xbb, 0xc0, 0xb4, 0xb8, 0xaf, 0xa6, 0x9d, 0x97, 0x91, 0x8b, 0x86, 0x84, 0x85, 0x7f, 0x77, 0x71, 0x6b, 0x66, 0x66, 0x68, 0x72, 0x86, 0x9f, 0xaf, 0xb6, 0xba, 0xbc, 0xbe, 0xbe, 0xbe, 0xbf, 0xc2, 0xc4, 0xc3, 0xbf, 0xbc, 0xb1, 0xa8, 0x9b, 0x92, 0x91, 0x93, 0x96, 0x96, 0x9d, 0xa0, 0xa2, 0xa1, 0xa0, 0xa1, 0xa1, 0x9f, 0xa0, 0x9c, 0xa2, 0xa7, 0xa2, 0xa4, 0xa9, 0xa2, 0xa4, 0xa9, 0xad, 0xac, 0xa7, 0xa4, 0xa6, 0xa9, 0xab, 0xad, 0xad, 0xaa, 0xa5, 0xa5, 0xaa, 0xb0, 0xb2, 0xb7, 0xbb, 0xbc, 0xbe, 0xc1, 0xc2, 0xc1, 0xb9, 0xb6, 0xb2, 0xad, 0xa7, 0xa1, 0x9b, 0x98, 0x9b, 0x9d, 0x9e, 0x9c, 0x9b, 0x9a, 0x97, 0x93, 0x8e, 0x7d, 0x78, 0x76, 0x79, 0x7a, 0x72, 0x76, 0x86, 0x88, 0x8d, 0x95, 0x99, 0x9b, 0x9d, 0xa0, 0xa1, 0xab, 0xc4, 0xe0, 0xea, 0xe2, 0xdd, 0xe0, 0xd7, 0xd5, 0xd1, 0xcb, 0xc4, 0xbe, 0xb8, 0xb5, 0xb4, 0xb1, 0xab, 0xa3, 0x9e, 0x9d, 0xa0, 0xa4, 0xac, 0xad, 0xb0, 0xb2, 0xb4, 0xb8, 0xbd, 0xc0, 0xc7, 0xc3, 0xc5, 0xcb, 0xc9, 0xbf, 0xb6, 0xb5, 0xc0, 0xc4, 0xc5, 0xc2, 0xc0, 0xc8, 0x63, 0x2e, 0x7e, 0xe5, 0xe9, 0xe7, 0xee, 0xed, 0xee, 0xec, 0xe1, 0xf2, 0xe5, 0xdd, 0xe8, 0xe1, 0xdf, 0xe7, 0xf4, 0xbb, 0x81, 0xc3, 0xe5, 0xf2, 0xe8, 0xdf, 0xe9, 0xe4, 0xe0, 0xc1, 0xba, 0xd0, 0xbf, 0x4f, 0x3d, 0x9d, 0xce, 0xc4, 0xc6, 0xc9, 0xc3, 0xc8, 0xd0, 0xd3, 0xd4, 0xd2, 0xd0, 0xd1, 0xd1, 0xd0, 0xcf, 0xaa, 0x93, 0x96, 0x98, 0x96, 0x97, 0x98, 0x97, 0xa0, 0x99, 0x98, 0x93, 0x92, 0xa3, 0x70, 0x60, 0x8d, 0x79, 0x92, 0x7b, 0x89, 0xb3, 0xa9, 0x97, 0x9b, 0x99, 0x97, 0x81, 0x6b, 0x78, 0x8a, 0x9c, 0x84, 0x8f, 0xb7, 0xc1, 0xa4, 0x8c, 0x88, 0x8a, 0x85, 0xb5, 0xda, 0xd1, 0xc7, 0xc5, 0xc5, 0xaf, 0xb0, 0xab, 0x63, 0x6c, 0x8f, 0xa8, 0xa9, 0xb1, 0x83, 0x69, 0x6b, 0x62, 0x52, 0x4e, 0x51, 0x55, 0x56, 0x56, 0x55, 0x53, 0x51, 0x51, 0x51, 0x4d, 0x4b, 0x48, 0x46, 0x44, 0x42, 0x40, 0x3e, 0x3f, 0x3c, 0x3a, 0x3a, 0x39, 0x3a, 0x3f, 0x45, 0x5c, 0x67, 0x6d, 0x6c, 0x6d, 0x6c, 0x6d, 0x74, 0x78, 0x77, 0x73, 0x6f, 0x6f, 0x74, 0x75, 0x73, 0x7d, 0x77, 0x73, 0x71, 0x6b, 0x66, 0x68, 0x6f, 0x6f, 0x70, 0x6b, 0x63, 0x61, 0x66, 0x69, 0x66, 0x67, 0x68, 0x74, 0x94, 0x98, 0x7b, 0x6a, 0x63, 0x63, 0x68, 0x6c, 0x6e, 0x6f, 0x71, 0x72, 0x71, 0x73, 0x6d, 0x64, 0x5a, 0x4f, 0x49, 0x4c, 0x52, 0x51, 0x46, 0x40, 0x42, 0x3f, 0x39, 0x3c, 0x46, 0x4e, 0x47, 0x3c, 0x36, 0x3a, 0x43, 0x45, 0x43, 0x4d, 0x61, 0x76, 0x82, 0x84, 0x83, 0x7e, 0x79, 0x70, 0x67, 0x57, 0x48, 0x3f, 0x3e, 0x3f, 0x3f, 0x2e, 0x21, 0x20, 0x30, 0x38, 0x34, 0x36, 0x3f, 0x48, 0x47, 0x41, 0x48, 0x38, 0x38, 0x3b, 0x4f, 0x65, 0x67, 0x66, 0x63, 0x68, 0x6f, 0x71, 0x6e, 0x67, 0x5f, 0x5d, 0x62, 0x63, 0x5d, 0x5d, 0x61, 0x65, 0x6a, 0x6f, 0x75, 0x77, 0x71, 0x62, 0x54, 0x58, 0x60, 0x6b, 0x75, 0x80, 0x8b, 0x95, 0x9a, 0xa0, 0x9e, 0x98, 0x94, 0x8f, 0x81, 0x79, 0x7e, 0x90, 0xa1, 0xad, 0xa8, 0x9e, 0x97, 0x93, 0x8e, 0x86, 0x81, 0x7f, 0x7f, 0x7b, 0x6f, 0x60, 0x57, 0x41, 0x3c, 0x37, 0x36, 0x30, 0x24, 0x19, 0x14, 0x11, 0x26, 0x3e, 0x4b, 0x4f, 0x4f, 0x47, 0x3e, 0x73, 0x6d, 0x65, 0x60, 0x62, 0x69, 0x6f, 0x72, 0x6f, 0x66, 0x64, 0x6b, 0x6d, 0x63, 0x5b, 0x5a, 0x64, 0x6a, 0x6d, 0x67, 0x5f, 0x60, 0x6d, 0x7b, 0x81, 0x7c, 0x69, 0x5c, 0x62, 0x6b, 0x6a, 0x67, 0x60, 0x66, 0x6c, 0x6c, 0x6a, 0x6b, 0x6f, 0x73, 0x6b, 0x63, 0x5a, 0x57, 0x5b, 0x63, 0x69, 0x6c, 0x7a, 0x7a, 0x7a, 0x74, 0x67, 0x72, 0x5f, 0x62, 0x6a, 0x76, 0x79, 0x71, 0x6b, 0x6f, 0x6e, 0x69, 0x63, 0x6a, 0x6e, 0x6d, 0x6b, 0x6b, 0x69, 0x66, 0x68, 0x61, 0x59, 0x55, 0x57, 0x5f, 0x67, 0x6c, 0x6f, 0x69, 0x63, 0x61, 0x66, 0x6d, 0x6e, 0x6b, 0x74, 0x77, 0x74, 0x6c, 0x6b, 0x72, 0x79, 0x7b, 0x73, 0x70, 0x6e, 0x6d, 0x6b, 0x6a, 0x6f, 0x75, 0x78, 0x79, 0x78, 0x75, 0x79, 0x7f, 0x7f, 0x7a, 0x75, 0x7b, 0x7b, 0x70, 0x65, 0x62, 0x65, 0x68, 0x74, 0x7e, 0x89, 0x88, 0x7a, 0x6a, 0x61, 0x60, 0x66, 0x60, 0x64, 0x73, 0x7b, 0x76, 0x72, 0x73, 0x75, 0x6e, 0x69, 0x6b, 0x72, 0x78, 0x79, 0x78, 0x7a, 0x75, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x75, 0x71, 0x6f, 0x73, 0x74, 0x74, 0x79, 0x81, 0x86, 0x7c, 0x98, 0xaf, 0xc5, 0xba, 0xb6, 0xb2, 0xaf, 0xa4, 0xa0, 0x9c, 0x94, 0x8f, 0x8c, 0x87, 0x84, 0x81, 0x7c, 0x76, 0x6d, 0x65, 0x62, 0x64, 0x6e, 0x83, 0x99, 0xa5, 0xad, 0xb6, 0xbc, 0xbd, 0xbd, 0xbd, 0xbc, 0xbc, 0xbd, 0xc0, 0xc4, 0xc7, 0xbf, 0xba, 0xb1, 0xa3, 0x96, 0x8f, 0x8e, 0x90, 0x96, 0x92, 0x8e, 0x8e, 0x90, 0x92, 0x91, 0x90, 0x8d, 0x90, 0x94, 0x98, 0x9a, 0x99, 0x95, 0x91, 0x99, 0xa0, 0xa4, 0xa0, 0x9c, 0x9d, 0x9f, 0xa0, 0xa2, 0xa9, 0xab, 0xa5, 0xa4, 0xab, 0xae, 0xab, 0xb3, 0xb8, 0xba, 0xb5, 0xb4, 0xba, 0xbf, 0xc0, 0xc5, 0xc1, 0xbb, 0xb6, 0xb1, 0xac, 0xa6, 0xa2, 0x9f, 0x9c, 0x98, 0x95, 0x94, 0x93, 0x92, 0x92, 0x8e, 0x86, 0x7d, 0x78, 0x78, 0x7a, 0x7b, 0x7b, 0x89, 0x91, 0x97, 0x97, 0x9b, 0xa2, 0xa4, 0xa1, 0xac, 0xc5, 0xdf, 0xe9, 0xe8, 0xe5, 0xe0, 0xda, 0xcf, 0xce, 0xca, 0xc5, 0xc2, 0xbf, 0xb9, 0xb3, 0xb8, 0xaf, 0xa8, 0xa4, 0x9f, 0x9b, 0xa0, 0xa8, 0xad, 0xb2, 0xb6, 0xb6, 0xb8, 0xbd, 0xc0, 0xbe, 0xc8, 0xc0, 0xc1, 0xca, 0xc6, 0xb9, 0xb7, 0xc1, 0xc6, 0xc4, 0xc5, 0xce, 0xc4, 0xca, 0xa5, 0x27, 0x4c, 0xc3, 0xf7, 0xed, 0xe4, 0xe9, 0xed, 0xeb, 0xe8, 0xdf, 0xe5, 0xe8, 0xe3, 0xdf, 0xea, 0xe3, 0xe4, 0xe8, 0xeb, 0xea, 0xe6, 0xe4, 0xe7, 0xea, 0xe7, 0xe4, 0xc5, 0xcb, 0xb4, 0xbf, 0xe3, 0x89, 0x38, 0x61, 0xbd, 0xcf, 0xc0, 0xc6, 0xb7, 0xbd, 0xd1, 0xd2, 0xd4, 0xd5, 0xd3, 0xd1, 0xd0, 0xcf, 0xd2, 0xab, 0x92, 0x93, 0x95, 0x95, 0x9b, 0xa1, 0x99, 0x9c, 0x99, 0x9b, 0x9b, 0x9c, 0x9a, 0x84, 0x80, 0xc7, 0x83, 0x87, 0x8f, 0x85, 0xdd, 0xdb, 0xe3, 0xe4, 0xe6, 0xe6, 0xe1, 0xcc, 0x95, 0x5b, 0x7b, 0x73, 0x73, 0xaf, 0xb3, 0x93, 0x7f, 0x8b, 0x8c, 0x8a, 0xba, 0xd4, 0xcb, 0xcb, 0xc7, 0xc3, 0xb2, 0xb5, 0x95, 0x5a, 0x7a, 0x9a, 0xa3, 0xae, 0xa2, 0x7d, 0x65, 0x63, 0x5c, 0x50, 0x4e, 0x52, 0x54, 0x53, 0x53, 0x54, 0x54, 0x53, 0x50, 0x4e, 0x4a, 0x47, 0x45, 0x45, 0x43, 0x3f, 0x3c, 0x3c, 0x39, 0x3b, 0x3d, 0x3d, 0x3a, 0x40, 0x55, 0x6a, 0x71, 0x75, 0x7f, 0x88, 0x84, 0x7a, 0x7a, 0x82, 0x8c, 0x89, 0x7e, 0x75, 0x75, 0x76, 0x79, 0x80, 0x88, 0x7e, 0x6f, 0x63, 0x63, 0x6b, 0x70, 0x70, 0x69, 0x6e, 0x6f, 0x6a, 0x68, 0x6c, 0x6d, 0x6a, 0x68, 0x74, 0x85, 0x8f, 0x84, 0x68, 0x5d, 0x69, 0x58, 0x63, 0x67, 0x69, 0x72, 0x78, 0x78, 0x78, 0x78, 0x6b, 0x68, 0x6b, 0x6b, 0x6e, 0x64, 0x4e, 0x47, 0x41, 0x39, 0x22, 0x14, 0x1a, 0x21, 0x2f, 0x3d, 0x50, 0x54, 0x44, 0x3d, 0x42, 0x3e, 0x2f, 0x32, 0x44, 0x5e, 0x76, 0x87, 0x8b, 0x83, 0x79, 0x6e, 0x61, 0x53, 0x4c, 0x49, 0x45, 0x43, 0x43, 0x45, 0x39, 0x35, 0x39, 0x3e, 0x46, 0x47, 0x40, 0x2a, 0x1d, 0x25, 0x41, 0x4a, 0x3b, 0x38, 0x45, 0x5c, 0x67, 0x74, 0x7a, 0x76, 0x6d, 0x66, 0x62, 0x6c, 0x6f, 0x70, 0x6f, 0x72, 0x73, 0x6c, 0x62, 0x5d, 0x60, 0x57, 0x49, 0x3d, 0x2d, 0x2e, 0x41, 0x65, 0x72, 0x7d, 0x7c, 0x79, 0x81, 0x93, 0xa1, 0xa2, 0xa2, 0xa0, 0x9c, 0x9d, 0xa2, 0xa5, 0xa4, 0xa4, 0xa1, 0x9e, 0x9c, 0x9e, 0x9f, 0x9e, 0x9c, 0x9a, 0x96, 0x92, 0x93, 0x98, 0x97, 0x8c, 0x80, 0x6b, 0x4e, 0x39, 0x38, 0x36, 0x30, 0x39, 0x4a, 0x61, 0x65, 0x62, 0x57, 0x51, 0x52, 0x51, 0x4d, 0x6d, 0x69, 0x64, 0x5f, 0x5f, 0x63, 0x68, 0x6b, 0x60, 0x5e, 0x5e, 0x61, 0x63, 0x60, 0x5b, 0x56, 0x51, 0x5a, 0x60, 0x5d, 0x59, 0x5e, 0x66, 0x6d, 0x6c, 0x6f, 0x68, 0x5f, 0x5e, 0x5d, 0x5c, 0x5f, 0x64, 0x69, 0x6d, 0x6d, 0x6c, 0x6c, 0x69, 0x65, 0x5d, 0x56, 0x51, 0x54, 0x5f, 0x6a, 0x6f, 0x70, 0x68, 0x6c, 0x74, 0x6d, 0x64, 0x6a, 0x60, 0x63, 0x6d, 0x73, 0x77, 0x74, 0x6f, 0x69, 0x64, 0x61, 0x61, 0x69, 0x70, 0x72, 0x70, 0x70, 0x71, 0x73, 0x60, 0x63, 0x65, 0x65, 0x64, 0x65, 0x69, 0x6d, 0x6f, 0x66, 0x60, 0x60, 0x62, 0x62, 0x66, 0x6b, 0x6f, 0x6e, 0x6f, 0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x76, 0x75, 0x75, 0x75, 0x74, 0x71, 0x6a, 0x64, 0x6d, 0x6f, 0x71, 0x73, 0x77, 0x7c, 0x7e, 0x7c, 0x7a, 0x7a, 0x75, 0x6c, 0x66, 0x67, 0x6c, 0x6f, 0x74, 0x79, 0x7c, 0x79, 0x70, 0x67, 0x64, 0x65, 0x65, 0x64, 0x69, 0x71, 0x73, 0x71, 0x73, 0x78, 0x76, 0x73, 0x72, 0x75, 0x77, 0x78, 0x79, 0x7b, 0x76, 0x73, 0x6d, 0x66, 0x61, 0x60, 0x64, 0x69, 0x6c, 0x6d, 0x70, 0x71, 0x70, 0x70, 0x76, 0x7e, 0x8f, 0x8f, 0xa9, 0xb5, 0xc1, 0xb8, 0xb7, 0xb4, 0xb1, 0xa8, 0xa4, 0xa1, 0x97, 0x8f, 0x8a, 0x83, 0x7a, 0x77, 0x74, 0x73, 0x70, 0x6b, 0x68, 0x68, 0x70, 0x82, 0x98, 0xa8, 0xb4, 0xbb, 0xba, 0xb4, 0xba, 0xbb, 0xbd, 0xbd, 0xbc, 0xbb, 0xbb, 0xbc, 0xc6, 0xc5, 0xc2, 0xba, 0xb0, 0xa7, 0xa0, 0x9e, 0x92, 0x8e, 0x89, 0x86, 0x85, 0x84, 0x81, 0x7f, 0x88, 0x86, 0x84, 0x85, 0x89, 0x8e, 0x93, 0x95, 0x9e, 0xa1, 0x9f, 0x98, 0x94, 0x98, 0x9e, 0xa1, 0x9b, 0xa8, 0xb0, 0xac, 0xa4, 0xa3, 0xa7, 0xaa, 0xab, 0xb0, 0xb3, 0xb0, 0xad, 0xaf, 0xb4, 0xb7, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xb7, 0xb0, 0xac, 0xa2, 0x9f, 0x9b, 0x99, 0x99, 0x98, 0x96, 0x94, 0x89, 0x83, 0x7e, 0x7d, 0x7b, 0x78, 0x78, 0x7a, 0x8c, 0x90, 0x97, 0x9e, 0xa4, 0xa7, 0xaa, 0xac, 0xc6, 0xd7, 0xe6, 0xe7, 0xe2, 0xde, 0xd9, 0xd4, 0xd1, 0xcf, 0xc9, 0xc1, 0xbd, 0xba, 0xb6, 0xb2, 0xb5, 0xab, 0xa3, 0xa2, 0xa2, 0xa0, 0xa2, 0xa7, 0xab, 0xb0, 0xb4, 0xb6, 0xb8, 0xbc, 0xbf, 0xbe, 0xc4, 0xbf, 0xc2, 0xc8, 0xc4, 0xb8, 0xb5, 0xbc, 0xc1, 0xc4, 0xc8, 0xd1, 0xc9, 0xce, 0xb7, 0x56, 0x35, 0x6c, 0xd0, 0xe7, 0xf3, 0xef, 0xe2, 0xeb, 0xe3, 0xf1, 0xe4, 0xd3, 0xd3, 0xe3, 0xd5, 0xe4, 0xe5, 0xe8, 0xea, 0xe8, 0xe4, 0xe3, 0xe5, 0xe8, 0xe0, 0xe9, 0xc8, 0xbe, 0xc2, 0xbe, 0xc8, 0xbe, 0x4a, 0x41, 0x91, 0xc8, 0xc3, 0xc3, 0xbe, 0xc0, 0xd0, 0xd2, 0xd3, 0xd4, 0xd3, 0xd2, 0xd2, 0xd2, 0xd5, 0xae, 0x96, 0x97, 0x99, 0x97, 0x98, 0x9a, 0x98, 0x9c, 0x99, 0x9b, 0x9c, 0x9d, 0x9c, 0x87, 0x85, 0xd1, 0xa0, 0x87, 0x86, 0x89, 0xd3, 0xeb, 0xcd, 0xcc, 0xd1, 0xdc, 0xe1, 0xd2, 0xb6, 0xa1, 0x4b, 0x5e, 0x84, 0x97, 0x9a, 0x8a, 0x8e, 0x92, 0x90, 0x8d, 0xbb, 0xd6, 0xcd, 0xcc, 0xc9, 0xc4, 0xb6, 0xb4, 0x88, 0x60, 0x8a, 0xa3, 0xa8, 0xad, 0x98, 0x78, 0x64, 0x62, 0x59, 0x4e, 0x4f, 0x55, 0x52, 0x52, 0x51, 0x52, 0x51, 0x50, 0x4e, 0x4c, 0x47, 0x43, 0x41, 0x41, 0x40, 0x3d, 0x3c, 0x3d, 0x3a, 0x3d, 0x3c, 0x3e, 0x4e, 0x65, 0x70, 0x6e, 0x6f, 0x76, 0x7f, 0x81, 0x7a, 0x74, 0x7c, 0x88, 0x84, 0x7f, 0x74, 0x71, 0x78, 0x79, 0x75, 0x75, 0x7b, 0x7c, 0x7a, 0x75, 0x70, 0x6d, 0x6c, 0x6b, 0x6f, 0x68, 0x64, 0x68, 0x6f, 0x72, 0x72, 0x70, 0x71, 0x7d, 0x82, 0x7f, 0x78, 0x6f, 0x6e, 0x78, 0x6e, 0x67, 0x58, 0x56, 0x68, 0x74, 0x70, 0x68, 0x5b, 0x5e, 0x62, 0x55, 0x43, 0x49, 0x5b, 0x60, 0x64, 0x53, 0x48, 0x38, 0x2a, 0x28, 0x2f, 0x45, 0x62, 0x5f, 0x52, 0x41, 0x3b, 0x3f, 0x42, 0x40, 0x3d, 0x46, 0x49, 0x45, 0x4a, 0x5c, 0x6c, 0x71, 0x6f, 0x67, 0x5f, 0x5a, 0x54, 0x49, 0x3f, 0x3a, 0x44, 0x42, 0x47, 0x4c, 0x48, 0x40, 0x34, 0x25, 0x1d, 0x26, 0x3c, 0x51, 0x51, 0x44, 0x43, 0x4d, 0x58, 0x57, 0x57, 0x57, 0x55, 0x4b, 0x3b, 0x2f, 0x34, 0x46, 0x58, 0x5b, 0x55, 0x4e, 0x49, 0x44, 0x48, 0x4b, 0x48, 0x45, 0x48, 0x4a, 0x4a, 0x4d, 0x61, 0x63, 0x67, 0x70, 0x7b, 0x81, 0x7b, 0x72, 0x69, 0x73, 0x7c, 0x7b, 0x73, 0x68, 0x5b, 0x51, 0x58, 0x5f, 0x61, 0x5c, 0x57, 0x56, 0x58, 0x59, 0x4b, 0x4f, 0x54, 0x5b, 0x6a, 0x7f, 0x91, 0x9b, 0x8b, 0x7a, 0x5a, 0x3c, 0x34, 0x42, 0x54, 0x5e, 0x5c, 0x4e, 0x42, 0x41, 0x3e, 0x32, 0x26, 0x21, 0x65, 0x64, 0x61, 0x5e, 0x5c, 0x5e, 0x64, 0x69, 0x72, 0x73, 0x6f, 0x66, 0x60, 0x5d, 0x56, 0x4e, 0x53, 0x57, 0x60, 0x72, 0x87, 0x92, 0x88, 0x78, 0x68, 0x6d, 0x6f, 0x70, 0x70, 0x68, 0x63, 0x67, 0x68, 0x6c, 0x6d, 0x6d, 0x73, 0x79, 0x76, 0x6e, 0x61, 0x59, 0x54, 0x58, 0x65, 0x72, 0x78, 0x79, 0x84, 0x84, 0x87, 0x70, 0x62, 0x5a, 0x56, 0x58, 0x5d, 0x5f, 0x67, 0x6f, 0x70, 0x69, 0x65, 0x66, 0x5d, 0x63, 0x69, 0x6b, 0x66, 0x62, 0x64, 0x69, 0x67, 0x70, 0x79, 0x79, 0x74, 0x70, 0x72, 0x76, 0x6b, 0x63, 0x61, 0x68, 0x6b, 0x6c, 0x74, 0x80, 0x76, 0x71, 0x73, 0x7b, 0x7c, 0x75, 0x70, 0x71, 0x70, 0x6e, 0x6a, 0x6c, 0x75, 0x7d, 0x79, 0x71, 0x65, 0x69, 0x6f, 0x74, 0x73, 0x71, 0x71, 0x73, 0x7a, 0x79, 0x75, 0x73, 0x72, 0x71, 0x6d, 0x67, 0x70, 0x72, 0x73, 0x71, 0x6e, 0x6c, 0x6d, 0x6f, 0x68, 0x6b, 0x6c, 0x68, 0x63, 0x62, 0x68, 0x6e, 0x74, 0x75, 0x77, 0x79, 0x77, 0x74, 0x76, 0x7a, 0x78, 0x77, 0x76, 0x72, 0x6d, 0x68, 0x64, 0x61, 0x65, 0x70, 0x79, 0x78, 0x74, 0x75, 0x7a, 0x7f, 0x86, 0x9c, 0xba, 0xc1, 0xc6, 0xc1, 0xc3, 0xbe, 0xbd, 0xb5, 0xb3, 0xb0, 0xa6, 0x9c, 0x94, 0x8b, 0x8a, 0x7e, 0x70, 0x67, 0x62, 0x5f, 0x5f, 0x61, 0x65, 0x7c, 0x93, 0x9e, 0xa2, 0xab, 0xb5, 0xbc, 0xba, 0xb8, 0xb6, 0xb4, 0xb4, 0xb7, 0xbd, 0xc1, 0xbf, 0xc1, 0xc3, 0xc3, 0xc0, 0xb9, 0xb2, 0xae, 0xaa, 0xa5, 0x9f, 0x9b, 0x98, 0x95, 0x92, 0x8f, 0x90, 0x8a, 0x81, 0x7b, 0x7b, 0x7f, 0x84, 0x87, 0x89, 0x8d, 0x90, 0x91, 0x93, 0x97, 0x9a, 0x9a, 0x97, 0x9b, 0xa1, 0xa5, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xab, 0xae, 0xae, 0xaa, 0xa7, 0xa9, 0xad, 0xb1, 0xb2, 0xb5, 0xb9, 0xba, 0xba, 0xb7, 0xb4, 0xaa, 0xa5, 0x9f, 0x9c, 0x9b, 0x99, 0x97, 0x94, 0x8b, 0x84, 0x80, 0x80, 0x7b, 0x74, 0x76, 0x7d, 0x8b, 0x8e, 0x97, 0xa0, 0xa2, 0xa5, 0xb2, 0xc3, 0xe1, 0xe7, 0xe9, 0xe3, 0xdc, 0xd9, 0xd5, 0xd1, 0xcd, 0xca, 0xc3, 0xbb, 0xb6, 0xb5, 0xb4, 0xb3, 0xb0, 0xa5, 0x9e, 0xa0, 0xa5, 0xa6, 0xa5, 0xa6, 0xaa, 0xaf, 0xb4, 0xb7, 0xba, 0xbe, 0xc0, 0xbf, 0xc5, 0xc5, 0xc8, 0xcc, 0xc7, 0xbf, 0xbb, 0xbd, 0xc3, 0xc9, 0xca, 0xd2, 0xce, 0xd2, 0xcd, 0x99, 0x33, 0x38, 0x53, 0xb9, 0xd6, 0xe5, 0xed, 0xd8, 0xd1, 0xc2, 0x8d, 0x5c, 0x62, 0xd1, 0xe6, 0xe7, 0xe5, 0xe7, 0xe8, 0xe7, 0xe5, 0xe4, 0xe5, 0xe7, 0xe7, 0xe1, 0xd2, 0xbd, 0xba, 0xbd, 0xbd, 0xd0, 0x88, 0x39, 0x56, 0xaf, 0xca, 0xc4, 0xc0, 0xc2, 0xd0, 0xd1, 0xd2, 0xd3, 0xd3, 0xd3, 0xd4, 0xd6, 0xd5, 0xb1, 0x9a, 0x9d, 0x9f, 0x9b, 0x99, 0x98, 0x99, 0x9c, 0x99, 0x9c, 0x9c, 0x9d, 0x9d, 0x89, 0x78, 0xd4, 0xe8, 0xb0, 0x7d, 0xa1, 0xe5, 0xd7, 0xbe, 0xbb, 0xbe, 0xd0, 0xd8, 0xc6, 0xbe, 0xcf, 0x7e, 0x79, 0xa1, 0x8b, 0x91, 0x8c, 0x99, 0x8c, 0x94, 0x91, 0xba, 0xd7, 0xce, 0xcc, 0xcb, 0xc5, 0xb5, 0xb1, 0x7f, 0x78, 0xaf, 0xb6, 0xae, 0xa5, 0x8a, 0x70, 0x61, 0x5f, 0x55, 0x4c, 0x4f, 0x57, 0x51, 0x50, 0x4f, 0x4f, 0x4e, 0x4c, 0x4a, 0x48, 0x45, 0x42, 0x40, 0x3f, 0x3d, 0x3b, 0x3b, 0x3d, 0x3a, 0x3d, 0x41, 0x4d, 0x67, 0x7e, 0x7d, 0x6f, 0x6a, 0x76, 0x85, 0x8a, 0x83, 0x79, 0x72, 0x70, 0x71, 0x71, 0x6d, 0x6f, 0x78, 0x79, 0x74, 0x74, 0x75, 0x7b, 0x81, 0x80, 0x77, 0x6e, 0x6c, 0x6f, 0x6a, 0x6e, 0x74, 0x76, 0x6f, 0x6a, 0x76, 0x87, 0x81, 0x8b, 0x84, 0x72, 0x6d, 0x72, 0x76, 0x79, 0x76, 0x7b, 0x78, 0x73, 0x75, 0x71, 0x66, 0x5f, 0x57, 0x5e, 0x61, 0x51, 0x40, 0x45, 0x53, 0x55, 0x47, 0x3c, 0x38, 0x30, 0x2d, 0x34, 0x3e, 0x51, 0x54, 0x43, 0x32, 0x2c, 0x2e, 0x32, 0x38, 0x3e, 0x33, 0x3c, 0x44, 0x45, 0x4a, 0x5b, 0x76, 0x89, 0x7f, 0x74, 0x69, 0x64, 0x61, 0x5b, 0x51, 0x4b, 0x43, 0x43, 0x49, 0x4c, 0x44, 0x3d, 0x35, 0x2b, 0x2e, 0x3c, 0x4c, 0x52, 0x4e, 0x49, 0x4b, 0x4f, 0x4d, 0x50, 0x51, 0x4e, 0x48, 0x48, 0x4f, 0x56, 0x70, 0x7b, 0x81, 0x77, 0x63, 0x53, 0x4c, 0x4b, 0x47, 0x35, 0x39, 0x4e, 0x50, 0x43, 0x42, 0x4b, 0x5f, 0x64, 0x61, 0x52, 0x44, 0x46, 0x55, 0x64, 0x74, 0x7f, 0x85, 0x7c, 0x6e, 0x68, 0x6e, 0x75, 0x78, 0x7b, 0x79, 0x74, 0x79, 0x88, 0x93, 0x96, 0x8a, 0x7b, 0x5f, 0x45, 0x3e, 0x50, 0x6e, 0x84, 0x94, 0x85, 0x7b, 0x79, 0x6a, 0x54, 0x51, 0x5e, 0x4e, 0x44, 0x3b, 0x38, 0x31, 0x26, 0x21, 0x23, 0x60, 0x5f, 0x5e, 0x5c, 0x5a, 0x5c, 0x65, 0x6e, 0x74, 0x71, 0x69, 0x5f, 0x58, 0x54, 0x52, 0x51, 0x5b, 0x5d, 0x5d, 0x59, 0x51, 0x4f, 0x55, 0x5d, 0x6c, 0x6c, 0x6c, 0x73, 0x77, 0x6c, 0x61, 0x63, 0x6e, 0x70, 0x6d, 0x6a, 0x73, 0x81, 0x85, 0x7f, 0x76, 0x6d, 0x62, 0x60, 0x67, 0x72, 0x7b, 0x7f, 0x8b, 0x87, 0x83, 0x65, 0x5c, 0x55, 0x5f, 0x63, 0x71, 0x70, 0x73, 0x76, 0x73, 0x6b, 0x65, 0x63, 0x65, 0x65, 0x67, 0x68, 0x65, 0x61, 0x63, 0x68, 0x67, 0x6d, 0x72, 0x6f, 0x67, 0x64, 0x68, 0x6d, 0x6d, 0x67, 0x64, 0x66, 0x66, 0x65, 0x69, 0x6f, 0x71, 0x6c, 0x6c, 0x72, 0x76, 0x73, 0x6d, 0x6b, 0x60, 0x5e, 0x58, 0x55, 0x60, 0x6e, 0x6e, 0x65, 0x65, 0x6a, 0x73, 0x77, 0x70, 0x68, 0x6a, 0x72, 0x7c, 0x77, 0x72, 0x71, 0x74, 0x70, 0x65, 0x5a, 0x65, 0x6b, 0x71, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6b, 0x6e, 0x6b, 0x62, 0x5e, 0x63, 0x68, 0x6a, 0x76, 0x73, 0x73, 0x73, 0x71, 0x6f, 0x72, 0x78, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x75, 0x6b, 0x61, 0x66, 0x72, 0x7b, 0x79, 0x76, 0x78, 0x7c, 0x7e, 0x7d, 0xa4, 0xbf, 0xc4, 0xc5, 0xc2, 0xc1, 0xb7, 0xc0, 0xb7, 0xb4, 0xb0, 0xa4, 0x99, 0x8f, 0x86, 0x79, 0x76, 0x73, 0x70, 0x67, 0x58, 0x4a, 0x42, 0x47, 0x67, 0x8f, 0xa6, 0xad, 0xb1, 0xb7, 0xbc, 0xbc, 0xb9, 0xb4, 0xaf, 0xac, 0xad, 0xb0, 0xb3, 0xbd, 0xbf, 0xc2, 0xc7, 0xca, 0xca, 0xc8, 0xc6, 0xc4, 0xc1, 0xbd, 0xba, 0xb8, 0xb6, 0xb3, 0xb2, 0xad, 0xa8, 0xa0, 0x99, 0x93, 0x8e, 0x8b, 0x88, 0x84, 0x87, 0x8d, 0x93, 0x98, 0x9c, 0x9d, 0x9d, 0x99, 0x97, 0x99, 0x9e, 0xa3, 0xa5, 0xa7, 0xaa, 0xa9, 0xa6, 0xa7, 0xaa, 0xa9, 0xa3, 0xa1, 0xa4, 0xa9, 0xa8, 0xa7, 0xa8, 0xaa, 0xad, 0xb0, 0xb2, 0xb3, 0xae, 0xa8, 0xa1, 0x9c, 0x99, 0x97, 0x96, 0x94, 0x8a, 0x82, 0x7f, 0x78, 0x72, 0x79, 0x85, 0x8a, 0x91, 0x9a, 0x9e, 0x9e, 0xa9, 0xc3, 0xdd, 0xe8, 0xe9, 0xe5, 0xde, 0xd9, 0xd7, 0xd4, 0xd0, 0xc3, 0xc1, 0xbc, 0xb6, 0xb3, 0xb4, 0xb4, 0xb3, 0xa9, 0xa2, 0x9d, 0xa1, 0xa6, 0xa8, 0xa7, 0xa7, 0xad, 0xb1, 0xb6, 0xbb, 0xbe, 0xc1, 0xc3, 0xc3, 0xc5, 0xca, 0xcf, 0xd1, 0xcf, 0xca, 0xc6, 0xc4, 0xc8, 0xcd, 0xc9, 0xce, 0xcc, 0xcd, 0xd5, 0xc8, 0x77, 0x3c, 0x3c, 0x3a, 0x53, 0x5a, 0x6c, 0x65, 0x53, 0x38, 0x3c, 0x46, 0x40, 0xae, 0xe8, 0xe6, 0xe5, 0xe5, 0xe6, 0xe6, 0xe6, 0xe5, 0xe4, 0xe4, 0xea, 0xe2, 0xda, 0xbd, 0xb6, 0xc4, 0xbf, 0xc0, 0xd0, 0x64, 0x36, 0x7d, 0xc7, 0xcc, 0xbd, 0xc3, 0xd1, 0xd2, 0xd2, 0xd2, 0xd2, 0xd3, 0xd5, 0xd7, 0xd3, 0xb3, 0x9f, 0xa1, 0xa2, 0x9f, 0x9e, 0x9e, 0x9d, 0x9e, 0x9b, 0x9d, 0x9c, 0x9c, 0x9b, 0x8a, 0x7e, 0xc1, 0xf4, 0xe5, 0xb1, 0xb8, 0xe1, 0xd5, 0xc1, 0xbd, 0xbc, 0xcd, 0xd5, 0xbc, 0xb3, 0xce, 0xb4, 0x80, 0x9d, 0x8a, 0x96, 0x96, 0x9a, 0x90, 0x96, 0x92, 0xb6, 0xd5, 0xce, 0xc9, 0xcc, 0xc5, 0xb5, 0xaf, 0x79, 0x8f, 0xca, 0xc2, 0xb2, 0x9f, 0x82, 0x6a, 0x5c, 0x5a, 0x53, 0x4c, 0x50, 0x55, 0x50, 0x4f, 0x4d, 0x4c, 0x4b, 0x49, 0x46, 0x44, 0x45, 0x42, 0x40, 0x3f, 0x3c, 0x39, 0x3a, 0x3c, 0x38, 0x3d, 0x4d, 0x66, 0x79, 0x7c, 0x78, 0x74, 0x77, 0x78, 0x78, 0x76, 0x77, 0x77, 0x72, 0x6b, 0x64, 0x6d, 0x71, 0x72, 0x75, 0x74, 0x76, 0x7e, 0x7b, 0x7b, 0x7b, 0x79, 0x72, 0x6c, 0x6f, 0x76, 0x76, 0x72, 0x72, 0x75, 0x77, 0x77, 0x79, 0x7e, 0x84, 0x8a, 0x80, 0x6e, 0x6c, 0x71, 0x71, 0x6f, 0x68, 0x76, 0x77, 0x69, 0x5d, 0x57, 0x58, 0x5e, 0x6b, 0x6c, 0x63, 0x50, 0x43, 0x42, 0x3b, 0x2e, 0x3d, 0x3f, 0x3f, 0x30, 0x30, 0x3f, 0x42, 0x43, 0x37, 0x26, 0x1a, 0x1d, 0x26, 0x2d, 0x37, 0x41, 0x3f, 0x3c, 0x3e, 0x42, 0x42, 0x45, 0x5a, 0x73, 0x7a, 0x70, 0x67, 0x65, 0x68, 0x69, 0x64, 0x5f, 0x62, 0x60, 0x64, 0x62, 0x56, 0x4b, 0x41, 0x37, 0x2c, 0x34, 0x3f, 0x4a, 0x53, 0x54, 0x4b, 0x41, 0x4c, 0x47, 0x47, 0x52, 0x64, 0x74, 0x79, 0x78, 0x83, 0x7d, 0x73, 0x66, 0x59, 0x4e, 0x49, 0x48, 0x39, 0x2e, 0x45, 0x69, 0x67, 0x54, 0x55, 0x61, 0x60, 0x61, 0x61, 0x60, 0x65, 0x6f, 0x79, 0x7e, 0x6e, 0x68, 0x5c, 0x50, 0x4b, 0x54, 0x64, 0x71, 0x73, 0x78, 0x6f, 0x57, 0x46, 0x4c, 0x5d, 0x67, 0x6d, 0x7a, 0x7e, 0x6c, 0x52, 0x4a, 0x57, 0x67, 0x78, 0x81, 0x82, 0x77, 0x6d, 0x68, 0x61, 0x59, 0x4e, 0x4d, 0x43, 0x32, 0x29, 0x2c, 0x2e, 0x2d, 0x60, 0x5d, 0x5c, 0x5b, 0x5a, 0x5c, 0x65, 0x6f, 0x73, 0x68, 0x5e, 0x57, 0x4f, 0x48, 0x4a, 0x51, 0x50, 0x4f, 0x52, 0x53, 0x4c, 0x49, 0x59, 0x70, 0x79, 0x76, 0x73, 0x76, 0x76, 0x6a, 0x61, 0x67, 0x75, 0x76, 0x70, 0x69, 0x6c, 0x76, 0x7b, 0x78, 0x78, 0x72, 0x69, 0x63, 0x62, 0x68, 0x70, 0x76, 0x8d, 0x89, 0x82, 0x6b, 0x6b, 0x6a, 0x7d, 0x81, 0x79, 0x7a, 0x78, 0x72, 0x6c, 0x68, 0x63, 0x5d, 0x63, 0x60, 0x60, 0x65, 0x6a, 0x6e, 0x72, 0x76, 0x66, 0x65, 0x63, 0x5f, 0x5b, 0x5b, 0x5f, 0x63, 0x6a, 0x6a, 0x67, 0x62, 0x63, 0x66, 0x64, 0x5f, 0x66, 0x67, 0x66, 0x68, 0x6e, 0x72, 0x6b, 0x61, 0x5a, 0x5f, 0x60, 0x60, 0x69, 0x75, 0x76, 0x6f, 0x6c, 0x6f, 0x73, 0x72, 0x69, 0x65, 0x70, 0x7f, 0x7f, 0x73, 0x67, 0x63, 0x66, 0x65, 0x5f, 0x58, 0x5b, 0x65, 0x6e, 0x6e, 0x6a, 0x68, 0x69, 0x68, 0x6a, 0x6b, 0x67, 0x64, 0x6a, 0x76, 0x7b, 0x78, 0x7b, 0x72, 0x6b, 0x6b, 0x6b, 0x6b, 0x71, 0x78, 0x78, 0x78, 0x75, 0x70, 0x6e, 0x71, 0x73, 0x72, 0x70, 0x74, 0x73, 0x6b, 0x69, 0x6f, 0x75, 0x77, 0x95, 0xb8, 0xb9, 0xb2, 0xab, 0xa6, 0xa2, 0x96, 0x8f, 0x86, 0x82, 0x7d, 0x71, 0x66, 0x5e, 0x56, 0x4f, 0x49, 0x42, 0x3b, 0x35, 0x32, 0x35, 0x3a, 0x3c, 0x4d, 0x66, 0x80, 0x95, 0xa2, 0xa5, 0xa3, 0xb5, 0xb8, 0xbc, 0xbd, 0xb9, 0xb3, 0xad, 0xaa, 0xb5, 0xb6, 0xb9, 0xbe, 0xc2, 0xc4, 0xc5, 0xc5, 0xc6, 0xc5, 0xc3, 0xc1, 0xc1, 0xc0, 0xbf, 0xbf, 0xbb, 0xba, 0xb8, 0xb5, 0xaf, 0xa8, 0x9f, 0x9a, 0x94, 0x91, 0x8e, 0x8e, 0x91, 0x95, 0x99, 0x9c, 0x9d, 0xa4, 0xab, 0xa8, 0x9d, 0x96, 0x9d, 0xa8, 0xa3, 0x9d, 0x9c, 0xa2, 0xa6, 0xa3, 0x9f, 0x9e, 0xa3, 0xa2, 0x9f, 0x9d, 0x9d, 0x9f, 0xa3, 0xa6, 0xaf, 0xb0, 0xaf, 0xaa, 0xa3, 0x9c, 0x99, 0x98, 0x95, 0x8b, 0x82, 0x7d, 0x78, 0x76, 0x7e, 0x8b, 0x8b, 0x94, 0x9b, 0xa0, 0xab, 0xc2, 0xda, 0xe9, 0xe5, 0xe3, 0xdf, 0xda, 0xd7, 0xd4, 0xcf, 0xca, 0xbd, 0xbc, 0xb9, 0xb6, 0xb5, 0xb6, 0xb3, 0xaf, 0xa2, 0xa0, 0xa0, 0xa3, 0xa6, 0xa8, 0xa9, 0xaa, 0xaf, 0xb2, 0xb7, 0xbd, 0xc0, 0xc2, 0xc4, 0xc6, 0xc3, 0xca, 0xd1, 0xd4, 0xd2, 0xcf, 0xcc, 0xc9, 0xcc, 0xcf, 0xca, 0xcc, 0xcd, 0xc9, 0xce, 0xd3, 0xd0, 0x97, 0x50, 0x38, 0x29, 0x41, 0x2d, 0x2f, 0x37, 0x5b, 0x7b, 0x72, 0x42, 0x63, 0xa8, 0xe5, 0xe7, 0xe6, 0xe4, 0xe5, 0xe6, 0xe6, 0xe3, 0xe1, 0xe1, 0xf0, 0xda, 0xbe, 0xc2, 0xc5, 0xbc, 0xbb, 0xde, 0xa3, 0x47, 0x46, 0xa7, 0xd2, 0xbf, 0xc5, 0xd3, 0xd3, 0xd3, 0xd2, 0xd2, 0xd2, 0xd4, 0xd6, 0xd4, 0xb7, 0xa4, 0xa3, 0xa2, 0xa0, 0xa3, 0xa5, 0xa3, 0xa4, 0x9f, 0xa1, 0x9e, 0x9c, 0x9c, 0x8c, 0x7f, 0xcc, 0xda, 0xda, 0xe2, 0xd9, 0xdf, 0xde, 0xc6, 0xc1, 0xbe, 0xce, 0xdc, 0xc6, 0xb6, 0xc7, 0xb9, 0x7a, 0x97, 0x99, 0x97, 0x98, 0x93, 0x99, 0x94, 0x90, 0xb0, 0xd3, 0xcd, 0xc6, 0xcc, 0xc3, 0xb8, 0xad, 0x77, 0x9a, 0xcd, 0xc2, 0xb5, 0x9e, 0x80, 0x68, 0x58, 0x55, 0x52, 0x4f, 0x50, 0x50, 0x4f, 0x4d, 0x4b, 0x4a, 0x48, 0x46, 0x44, 0x42, 0x42, 0x40, 0x3e, 0x3d, 0x3a, 0x38, 0x3a, 0x3d, 0x45, 0x4e, 0x60, 0x73, 0x7d, 0x7b, 0x77, 0x77, 0x6e, 0x76, 0x7f, 0x85, 0x86, 0x81, 0x76, 0x6c, 0x6f, 0x78, 0x79, 0x76, 0x74, 0x71, 0x75, 0x7f, 0x7f, 0x79, 0x73, 0x6f, 0x6d, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x70, 0x74, 0x78, 0x75, 0x6e, 0x75, 0x77, 0x6f, 0x68, 0x6d, 0x70, 0x6c, 0x6b, 0x71, 0x77, 0x71, 0x68, 0x68, 0x6a, 0x6a, 0x6c, 0x68, 0x6a, 0x5f, 0x4c, 0x43, 0x45, 0x44, 0x40, 0x46, 0x46, 0x46, 0x39, 0x38, 0x42, 0x3d, 0x39, 0x2d, 0x23, 0x19, 0x17, 0x1e, 0x29, 0x37, 0x41, 0x46, 0x45, 0x46, 0x46, 0x42, 0x3e, 0x41, 0x47, 0x5a, 0x60, 0x66, 0x66, 0x63, 0x61, 0x62, 0x63, 0x72, 0x6a, 0x63, 0x59, 0x4b, 0x44, 0x40, 0x39, 0x37, 0x30, 0x30, 0x3b, 0x48, 0x4a, 0x3f, 0x34, 0x3c, 0x50, 0x67, 0x70, 0x6c, 0x68, 0x6c, 0x73, 0x73, 0x67, 0x5a, 0x50, 0x45, 0x39, 0x32, 0x31, 0x30, 0x3c, 0x58, 0x6a, 0x6b, 0x72, 0x78, 0x73, 0x7c, 0x74, 0x6b, 0x6b, 0x72, 0x71, 0x62, 0x51, 0x3e, 0x3a, 0x3e, 0x50, 0x66, 0x6f, 0x66, 0x5a, 0x45, 0x37, 0x29, 0x32, 0x56, 0x7e, 0x8f, 0x8c, 0x89, 0x73, 0x5b, 0x54, 0x5f, 0x67, 0x60, 0x52, 0x5f, 0x6e, 0x78, 0x77, 0x75, 0x73, 0x67, 0x58, 0x5b, 0x52, 0x42, 0x37, 0x3a, 0x43, 0x42, 0x3a, 0x5e, 0x5a, 0x5a, 0x5d, 0x5d, 0x5c, 0x5f, 0x65, 0x6e, 0x62, 0x5a, 0x58, 0x51, 0x49, 0x4a, 0x53, 0x57, 0x4d, 0x4d, 0x59, 0x5f, 0x5b, 0x57, 0x58, 0x5f, 0x63, 0x63, 0x61, 0x5a, 0x51, 0x54, 0x64, 0x76, 0x76, 0x72, 0x6d, 0x6b, 0x6b, 0x6b, 0x69, 0x67, 0x66, 0x64, 0x60, 0x5e, 0x5f, 0x64, 0x69, 0x7e, 0x7e, 0x72, 0x64, 0x61, 0x5f, 0x6d, 0x6b, 0x67, 0x6c, 0x6e, 0x6a, 0x67, 0x68, 0x67, 0x63, 0x60, 0x5f, 0x5f, 0x62, 0x6b, 0x75, 0x79, 0x78, 0x69, 0x65, 0x60, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x65, 0x6b, 0x6b, 0x66, 0x6a, 0x72, 0x70, 0x67, 0x66, 0x69, 0x69, 0x69, 0x6f, 0x74, 0x6c, 0x5e, 0x53, 0x57, 0x58, 0x59, 0x60, 0x6b, 0x73, 0x75, 0x73, 0x6f, 0x69, 0x62, 0x5d, 0x60, 0x6e, 0x7c, 0x75, 0x6c, 0x64, 0x64, 0x66, 0x63, 0x5d, 0x58, 0x5e, 0x67, 0x6c, 0x67, 0x62, 0x62, 0x65, 0x66, 0x68, 0x66, 0x62, 0x63, 0x6d, 0x7a, 0x7f, 0x7c, 0x7b, 0x6e, 0x63, 0x62, 0x64, 0x65, 0x6b, 0x73, 0x6d, 0x79, 0x80, 0x79, 0x70, 0x71, 0x7c, 0x84, 0x7f, 0x78, 0x6c, 0x61, 0x5f, 0x67, 0x72, 0x78, 0x8f, 0xa1, 0x81, 0x6f, 0x63, 0x5f, 0x5e, 0x57, 0x56, 0x4e, 0x4d, 0x4d, 0x47, 0x42, 0x3f, 0x39, 0x3b, 0x3c, 0x3f, 0x3f, 0x3b, 0x36, 0x34, 0x37, 0x41, 0x41, 0x41, 0x47, 0x52, 0x61, 0x6f, 0x76, 0x83, 0x8b, 0x96, 0xa2, 0xab, 0xb1, 0xb5, 0xb6, 0xb0, 0xb3, 0xb8, 0xbd, 0xc0, 0xc1, 0xc2, 0xc2, 0xc5, 0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc0, 0xc0, 0xbd, 0xbc, 0xbc, 0xbb, 0xb8, 0xb3, 0xad, 0xa8, 0x9f, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x99, 0x9b, 0xa6, 0xad, 0xb3, 0xb0, 0xa7, 0xa0, 0xa0, 0xa2, 0xa1, 0x9c, 0x99, 0x9e, 0xa5, 0xa6, 0xa3, 0xa0, 0xa0, 0xa1, 0xa1, 0x9f, 0x9d, 0x9c, 0x9b, 0x9b, 0x9f, 0xa4, 0xaa, 0xab, 0xa7, 0xa0, 0x9b, 0x99, 0x90, 0x88, 0x7f, 0x7b, 0x7b, 0x7e, 0x86, 0x8d, 0x8f, 0x95, 0x9e, 0xad, 0xc6, 0xde, 0xe7, 0xe2, 0xe1, 0xde, 0xd9, 0xd6, 0xd2, 0xcd, 0xc6, 0xc0, 0xbd, 0xbb, 0xb9, 0xb7, 0xb8, 0xb6, 0xaf, 0xa7, 0x9e, 0xa0, 0xa3, 0xa5, 0xa7, 0xa9, 0xac, 0xae, 0xb0, 0xb2, 0xb6, 0xbc, 0xbf, 0xc1, 0xc4, 0xc7, 0xc5, 0xca, 0xd2, 0xd6, 0xd5, 0xd1, 0xce, 0xcd, 0xcf, 0xd1, 0xd0, 0xd1, 0xd3, 0xcc, 0xc8, 0xcc, 0xcd, 0xd1, 0xb6, 0x9d, 0x9a, 0x77, 0x97, 0xa2, 0xb8, 0xa5, 0x66, 0x40, 0x3f, 0x40, 0x54, 0xc5, 0xe9, 0xe5, 0xe0, 0xe0, 0xe4, 0xe7, 0xe6, 0xe3, 0xe6, 0xe9, 0xdc, 0xd3, 0xc2, 0xb4, 0xbc, 0xb7, 0xbe, 0xcf, 0x7f, 0x31, 0x75, 0xc9, 0xc7, 0xc6, 0xd3, 0xd4, 0xd3, 0xd2, 0xd1, 0xd1, 0xd3, 0xd4, 0xd8, 0xbb, 0xa6, 0xa3, 0xa1, 0xa0, 0xa3, 0xa5, 0xa7, 0xa6, 0xa1, 0xa4, 0xa0, 0x9d, 0x9e, 0x90, 0x76, 0xd7, 0xe2, 0xd8, 0xe2, 0xe5, 0xed, 0xd9, 0xc5, 0xbd, 0xb9, 0xca, 0xdc, 0xd0, 0xbf, 0xc1, 0xc2, 0x88, 0x97, 0x9a, 0x8e, 0x97, 0x8e, 0x94, 0x91, 0x8d, 0xa9, 0xd1, 0xcd, 0xc4, 0xcc, 0xc1, 0xb4, 0xa8, 0x7f, 0xa7, 0xcb, 0xc4, 0xb6, 0x99, 0x80, 0x67, 0x55, 0x51, 0x50, 0x50, 0x4f, 0x4a, 0x4e, 0x4c, 0x49, 0x47, 0x46, 0x44, 0x42, 0x40, 0x3e, 0x3c, 0x3b, 0x3a, 0x3a, 0x3c, 0x42, 0x49, 0x64, 0x6d, 0x72, 0x72, 0x76, 0x7c, 0x78, 0x6d, 0x6e, 0x73, 0x75, 0x6d, 0x62, 0x5f, 0x69, 0x74, 0x83, 0x85, 0x7f, 0x78, 0x75, 0x70, 0x6d, 0x70, 0x77, 0x76, 0x73, 0x6f, 0x6d, 0x6b, 0x66, 0x60, 0x63, 0x6f, 0x77, 0x72, 0x6e, 0x6f, 0x6f, 0x6d, 0x6c, 0x6a, 0x63, 0x62, 0x6a, 0x6c, 0x69, 0x6a, 0x70, 0x72, 0x6a, 0x63, 0x68, 0x6c, 0x68, 0x66, 0x63, 0x64, 0x5a, 0x4e, 0x4f, 0x51, 0x4f, 0x50, 0x39, 0x2c, 0x2f, 0x34, 0x38, 0x36, 0x2e, 0x35, 0x25, 0x25, 0x23, 0x20, 0x20, 0x26, 0x2d, 0x33, 0x35, 0x43, 0x4a, 0x49, 0x4d, 0x57, 0x55, 0x4a, 0x4f, 0x5f, 0x6b, 0x66, 0x5a, 0x56, 0x61, 0x6c, 0x65, 0x5e, 0x58, 0x50, 0x44, 0x3f, 0x3d, 0x38, 0x43, 0x3c, 0x3d, 0x47, 0x4d, 0x47, 0x3c, 0x35, 0x4c, 0x51, 0x5b, 0x62, 0x64, 0x5d, 0x52, 0x4a, 0x40, 0x3c, 0x39, 0x35, 0x30, 0x31, 0x42, 0x56, 0x5c, 0x55, 0x51, 0x52, 0x58, 0x6a, 0x7a, 0x7e, 0x8a, 0x8b, 0x88, 0x82, 0x7f, 0x7e, 0x7e, 0x7c, 0x74, 0x68, 0x5d, 0x5e, 0x67, 0x70, 0x75, 0x78, 0x7a, 0x8a, 0x99, 0x99, 0x89, 0x73, 0x5e, 0x51, 0x42, 0x45, 0x49, 0x4f, 0x57, 0x5e, 0x5f, 0x5c, 0x5d, 0x54, 0x59, 0x6e, 0x82, 0x90, 0xa2, 0xb5, 0xb4, 0xa6, 0x9a, 0x99, 0x99, 0x94, 0x91, 0x93, 0x57, 0x54, 0x58, 0x62, 0x66, 0x60, 0x5a, 0x58, 0x50, 0x4e, 0x50, 0x55, 0x57, 0x56, 0x57, 0x59, 0x51, 0x51, 0x4f, 0x4a, 0x49, 0x4f, 0x59, 0x61, 0x5d, 0x64, 0x65, 0x61, 0x5c, 0x58, 0x61, 0x72, 0x75, 0x72, 0x71, 0x71, 0x6f, 0x69, 0x64, 0x63, 0x62, 0x62, 0x62, 0x62, 0x62, 0x63, 0x67, 0x69, 0x71, 0x7a, 0x6c, 0x6b, 0x63, 0x65, 0x6f, 0x6d, 0x73, 0x76, 0x7a, 0x7a, 0x75, 0x6c, 0x67, 0x66, 0x6c, 0x70, 0x70, 0x6d, 0x72, 0x7b, 0x7b, 0x74, 0x68, 0x62, 0x5b, 0x5a, 0x5c, 0x5f, 0x5f, 0x5e, 0x64, 0x68, 0x69, 0x67, 0x67, 0x6a, 0x69, 0x65, 0x6a, 0x67, 0x64, 0x64, 0x68, 0x68, 0x62, 0x5b, 0x67, 0x64, 0x60, 0x5c, 0x5c, 0x61, 0x69, 0x70, 0x6f, 0x67, 0x5d, 0x56, 0x59, 0x62, 0x69, 0x6b, 0x67, 0x65, 0x66, 0x6b, 0x6b, 0x65, 0x5d, 0x58, 0x64, 0x6a, 0x6b, 0x65, 0x63, 0x68, 0x6d, 0x6e, 0x69, 0x67, 0x64, 0x63, 0x67, 0x6e, 0x74, 0x77, 0x79, 0x6b, 0x61, 0x61, 0x62, 0x60, 0x65, 0x6d, 0x6d, 0x7d, 0x88, 0x82, 0x77, 0x76, 0x7d, 0x82, 0x7c, 0x73, 0x67, 0x61, 0x5f, 0x65, 0x6f, 0x78, 0x8d, 0x95, 0x67, 0x59, 0x51, 0x4e, 0x4e, 0x4c, 0x4b, 0x45, 0x47, 0x4c, 0x49, 0x48, 0x47, 0x42, 0x48, 0x42, 0x3b, 0x36, 0x32, 0x32, 0x36, 0x3c, 0x3d, 0x41, 0x45, 0x44, 0x40, 0x3f, 0x45, 0x4b, 0x48, 0x4d, 0x55, 0x60, 0x6d, 0x7c, 0x88, 0x90, 0x97, 0x9d, 0xa6, 0xae, 0xb6, 0xbd, 0xc4, 0xc8, 0xc7, 0xc7, 0xc6, 0xc4, 0xc3, 0xc1, 0xc1, 0xc1, 0xc3, 0xc1, 0xc0, 0xbf, 0xbe, 0xbc, 0xb9, 0xb7, 0xae, 0xab, 0xab, 0xad, 0xac, 0xa9, 0xa8, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xb2, 0xb4, 0xad, 0xa4, 0xa7, 0xa5, 0xa2, 0xa1, 0xa3, 0xa6, 0xa5, 0xa2, 0x9f, 0xa2, 0xa5, 0xa5, 0xa3, 0x9f, 0x9d, 0x9c, 0x98, 0x9a, 0x9d, 0xa1, 0xa4, 0xa3, 0xa1, 0x9e, 0x93, 0x8b, 0x7e, 0x76, 0x7a, 0x85, 0x8d, 0x8e, 0x98, 0x9f, 0xaf, 0xc5, 0xdb, 0xe6, 0xe3, 0xdc, 0xdd, 0xd9, 0xd3, 0xd0, 0xcd, 0xc8, 0xc1, 0xbd, 0xbd, 0xba, 0xb5, 0xb4, 0xb7, 0xb4, 0xaa, 0x9e, 0x9b, 0x9f, 0xa3, 0xa6, 0xa8, 0xac, 0xb0, 0xb2, 0xb2, 0xb2, 0xb5, 0xbb, 0xbe, 0xbf, 0xc3, 0xc8, 0xca, 0xcd, 0xd3, 0xd9, 0xd7, 0xd0, 0xcc, 0xcd, 0xd0, 0xd1, 0xd2, 0xd0, 0xd0, 0xce, 0xc7, 0xc7, 0xc6, 0xc1, 0xca, 0xc8, 0xbe, 0xc7, 0xb0, 0xcc, 0xa7, 0x55, 0x47, 0x60, 0x4a, 0x41, 0x38, 0xba, 0xdc, 0xd5, 0xce, 0xcf, 0xd7, 0xe1, 0xe6, 0xe7, 0xea, 0xdf, 0xe2, 0xe5, 0xc9, 0xb7, 0xbe, 0xb6, 0xb8, 0xde, 0xbd, 0x4e, 0x50, 0xb0, 0xcc, 0xc6, 0xd2, 0xd3, 0xd3, 0xd2, 0xd1, 0xd1, 0xd2, 0xd3, 0xdc, 0xbb, 0xa4, 0xa0, 0xa1, 0xa2, 0xa3, 0xa0, 0xa3, 0xa3, 0x9f, 0xa3, 0xa0, 0x9d, 0xa0, 0x94, 0x76, 0xb5, 0xde, 0xf2, 0xe6, 0xd9, 0xe8, 0xe2, 0xc9, 0xbb, 0xba, 0xce, 0xdb, 0xd2, 0xc2, 0xbb, 0xb6, 0x85, 0x8b, 0x8b, 0x88, 0x94, 0x8f, 0x8f, 0x8f, 0x8b, 0xa6, 0xd0, 0xce, 0xc4, 0xce, 0xc2, 0xb5, 0xa0, 0x81, 0xa4, 0xb9, 0xbf, 0xb7, 0x97, 0x7e, 0x67, 0x54, 0x4e, 0x4d, 0x4f, 0x4e, 0x48, 0x4c, 0x4a, 0x47, 0x45, 0x44, 0x42, 0x40, 0x3e, 0x3e, 0x3b, 0x3a, 0x3c, 0x40, 0x49, 0x57, 0x63, 0x74, 0x78, 0x75, 0x6e, 0x6e, 0x73, 0x6e, 0x63, 0x70, 0x7d, 0x8a, 0x88, 0x74, 0x62, 0x63, 0x6e, 0x84, 0x88, 0x84, 0x7b, 0x75, 0x6c, 0x65, 0x68, 0x6f, 0x77, 0x7a, 0x72, 0x6d, 0x6e, 0x6b, 0x65, 0x6f, 0x6d, 0x6c, 0x70, 0x75, 0x76, 0x6d, 0x63, 0x6d, 0x6c, 0x64, 0x63, 0x6c, 0x6f, 0x6b, 0x69, 0x7a, 0x79, 0x6a, 0x5b, 0x5a, 0x61, 0x68, 0x6e, 0x6d, 0x67, 0x55, 0x4c, 0x4e, 0x44, 0x33, 0x2e, 0x35, 0x28, 0x31, 0x41, 0x48, 0x3f, 0x30, 0x35, 0x2e, 0x2f, 0x30, 0x30, 0x2c, 0x27, 0x28, 0x2d, 0x34, 0x37, 0x35, 0x30, 0x31, 0x3c, 0x46, 0x49, 0x4f, 0x59, 0x60, 0x5b, 0x55, 0x57, 0x5f, 0x66, 0x5d, 0x5e, 0x63, 0x61, 0x55, 0x4e, 0x4c, 0x47, 0x49, 0x4f, 0x5a, 0x65, 0x66, 0x5a, 0x47, 0x3b, 0x3c, 0x45, 0x4c, 0x49, 0x41, 0x3c, 0x41, 0x48, 0x47, 0x41, 0x3a, 0x2e, 0x20, 0x26, 0x49, 0x6f, 0x8b, 0x70, 0x55, 0x4e, 0x54, 0x5b, 0x6b, 0x80, 0x81, 0x85, 0x8b, 0x91, 0x96, 0x97, 0x92, 0x8b, 0x9d, 0x9a, 0x95, 0x8b, 0x78, 0x62, 0x53, 0x4e, 0x54, 0x51, 0x4d, 0x47, 0x3b, 0x30, 0x2a, 0x2a, 0x38, 0x3f, 0x47, 0x4f, 0x58, 0x62, 0x6a, 0x6d, 0x6c, 0x79, 0x81, 0x82, 0x8a, 0x96, 0x96, 0x8b, 0x8c, 0x82, 0x79, 0x73, 0x69, 0x5d, 0x5b, 0x5f, 0x4f, 0x4f, 0x57, 0x67, 0x6e, 0x66, 0x59, 0x51, 0x4d, 0x54, 0x5a, 0x5e, 0x61, 0x61, 0x5c, 0x55, 0x57, 0x59, 0x52, 0x4b, 0x53, 0x64, 0x68, 0x60, 0x6b, 0x6d, 0x69, 0x64, 0x63, 0x63, 0x67, 0x71, 0x79, 0x71, 0x6d, 0x71, 0x6f, 0x67, 0x60, 0x60, 0x6d, 0x6b, 0x68, 0x68, 0x6a, 0x6e, 0x71, 0x73, 0x6b, 0x78, 0x69, 0x6d, 0x61, 0x66, 0x70, 0x70, 0x77, 0x78, 0x7f, 0x87, 0x7f, 0x6d, 0x65, 0x69, 0x6e, 0x77, 0x79, 0x72, 0x71, 0x78, 0x75, 0x6b, 0x6d, 0x65, 0x5c, 0x58, 0x5a, 0x5e, 0x5f, 0x5e, 0x5a, 0x5d, 0x62, 0x68, 0x6a, 0x6d, 0x73, 0x79, 0x78, 0x6c, 0x63, 0x64, 0x65, 0x62, 0x60, 0x62, 0x56, 0x56, 0x59, 0x5d, 0x5e, 0x5e, 0x61, 0x66, 0x62, 0x5b, 0x54, 0x54, 0x62, 0x6e, 0x6d, 0x63, 0x64, 0x62, 0x62, 0x65, 0x63, 0x5e, 0x5c, 0x5d, 0x65, 0x69, 0x69, 0x65, 0x68, 0x71, 0x76, 0x75, 0x6c, 0x6c, 0x6a, 0x67, 0x65, 0x68, 0x71, 0x7b, 0x79, 0x6e, 0x67, 0x68, 0x66, 0x61, 0x63, 0x6b, 0x76, 0x7c, 0x7c, 0x72, 0x6c, 0x6f, 0x74, 0x74, 0x69, 0x63, 0x60, 0x60, 0x60, 0x61, 0x68, 0x72, 0x81, 0x8a, 0x5d, 0x5b, 0x58, 0x52, 0x4f, 0x4e, 0x4d, 0x47, 0x49, 0x4c, 0x48, 0x44, 0x41, 0x3a, 0x3c, 0x39, 0x39, 0x3b, 0x3c, 0x3a, 0x36, 0x35, 0x42, 0x3f, 0x3d, 0x3e, 0x41, 0x42, 0x42, 0x42, 0x42, 0x43, 0x44, 0x44, 0x44, 0x45, 0x46, 0x48, 0x51, 0x58, 0x64, 0x71, 0x7f, 0x8f, 0xa0, 0xaa, 0xc1, 0xc1, 0xc1, 0xbf, 0xbd, 0xbc, 0xbb, 0xbc, 0xbb, 0xbb, 0xbb, 0xbb, 0xbc, 0xbc, 0xbb, 0xba, 0xba, 0xb3, 0xad, 0xaa, 0xa7, 0xa6, 0xab, 0xb2, 0xac, 0xb3, 0xb4, 0xaf, 0xae, 0xb4, 0xb4, 0xae, 0xad, 0xaf, 0xab, 0xa3, 0x9f, 0xa2, 0xa2, 0x9f, 0x9f, 0xa2, 0xa5, 0xa6, 0xa5, 0xa2, 0xa1, 0xa1, 0xa0, 0x9a, 0x96, 0x98, 0xa0, 0xa7, 0xa9, 0xa8, 0x9d, 0x92, 0x7f, 0x72, 0x77, 0x88, 0x91, 0x90, 0xa4, 0xaf, 0xc6, 0xdc, 0xe5, 0xe1, 0xdd, 0xdf, 0xd8, 0xd3, 0xce, 0xcb, 0xca, 0xc6, 0xc3, 0xc2, 0xbb, 0xb6, 0xb0, 0xb0, 0xb4, 0xb2, 0xa6, 0x99, 0x9b, 0x9e, 0xa2, 0xa5, 0xaa, 0xaf, 0xb3, 0xb4, 0xb4, 0xb3, 0xb6, 0xbb, 0xbe, 0xbf, 0xc4, 0xc9, 0xcc, 0xcc, 0xd2, 0xd8, 0xd5, 0xcb, 0xc7, 0xc9, 0xcd, 0xcb, 0xcc, 0xc5, 0xc5, 0xca, 0xc6, 0xc5, 0xba, 0xbc, 0xba, 0xbd, 0xbe, 0xbc, 0xce, 0xcc, 0x8f, 0x2c, 0x74, 0x9e, 0x50, 0x92, 0x76, 0x81, 0xc7, 0xbe, 0xb6, 0xb8, 0xc6, 0xd6, 0xe1, 0xe5, 0xdd, 0xeb, 0xe6, 0xde, 0xe7, 0xd4, 0xb9, 0xc6, 0xd3, 0xe2, 0xe3, 0x77, 0x43, 0x99, 0xc9, 0xc4, 0xd0, 0xd1, 0xd2, 0xd2, 0xd2, 0xd1, 0xd2, 0xd3, 0xdb, 0xb9, 0x9f, 0x9d, 0xa2, 0xa5, 0xa3, 0x9d, 0x9d, 0x9d, 0x9a, 0xa0, 0x9e, 0x9c, 0xa0, 0x96, 0x64, 0xa6, 0xcd, 0xdc, 0xeb, 0xec, 0xe6, 0xe6, 0xd1, 0xc0, 0xc4, 0xdb, 0xe3, 0xd6, 0xc7, 0xbe, 0xa8, 0x84, 0x93, 0x94, 0x92, 0x8d, 0x8c, 0x8c, 0x8e, 0x8a, 0xa4, 0xd1, 0xd0, 0xc5, 0xd0, 0xc3, 0xbe, 0x9c, 0x76, 0x8d, 0x99, 0xb2, 0xb9, 0xa0, 0x7c, 0x66, 0x54, 0x4d, 0x4a, 0x4d, 0x4e, 0x48, 0x4a, 0x48, 0x46, 0x44, 0x42, 0x41, 0x3f, 0x3d, 0x41, 0x3e, 0x3d, 0x40, 0x48, 0x56, 0x6b, 0x7a, 0x6a, 0x69, 0x6b, 0x6e, 0x6c, 0x67, 0x64, 0x67, 0x6c, 0x75, 0x81, 0x83, 0x72, 0x5e, 0x5b, 0x65, 0x76, 0x83, 0x88, 0x7f, 0x73, 0x66, 0x63, 0x6b, 0x6d, 0x7b, 0x7f, 0x72, 0x6a, 0x70, 0x76, 0x76, 0x6b, 0x6e, 0x75, 0x78, 0x70, 0x66, 0x65, 0x6c, 0x6c, 0x70, 0x6a, 0x67, 0x71, 0x78, 0x73, 0x6d, 0x6c, 0x6f, 0x68, 0x61, 0x66, 0x68, 0x65, 0x63, 0x68, 0x62, 0x51, 0x48, 0x47, 0x3b, 0x2f, 0x33, 0x2c, 0x2d, 0x41, 0x55, 0x62, 0x60, 0x4c, 0x45, 0x42, 0x38, 0x31, 0x2d, 0x24, 0x1c, 0x21, 0x2c, 0x36, 0x2f, 0x33, 0x3b, 0x33, 0x22, 0x25, 0x36, 0x40, 0x42, 0x46, 0x4d, 0x57, 0x5b, 0x52, 0x47, 0x4d, 0x45, 0x3d, 0x33, 0x2f, 0x42, 0x62, 0x76, 0x88, 0x7f, 0x6e, 0x5e, 0x55, 0x51, 0x4a, 0x41, 0x3c, 0x3d, 0x3d, 0x3f, 0x40, 0x42, 0x43, 0x44, 0x3f, 0x3a, 0x33, 0x29, 0x1d, 0x26, 0x4f, 0x7a, 0x93, 0x8d, 0x72, 0x59, 0x53, 0x4e, 0x4b, 0x52, 0x5e, 0x68, 0x73, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x73, 0x70, 0x76, 0x79, 0x70, 0x61, 0x56, 0x4b, 0x3e, 0x35, 0x38, 0x3c, 0x3d, 0x40, 0x45, 0x44, 0x48, 0x47, 0x3e, 0x3b, 0x48, 0x5f, 0x72, 0x82, 0x7c, 0x7e, 0x84, 0x7f, 0x70, 0x68, 0x6a, 0x64, 0x5e, 0x52, 0x4b, 0x51, 0x5c, 0x5c, 0x53, 0x4e, 0x4d, 0x52, 0x5b, 0x60, 0x5d, 0x58, 0x56, 0x52, 0x54, 0x5a, 0x60, 0x61, 0x61, 0x66, 0x6e, 0x7e, 0x7b, 0x69, 0x55, 0x5a, 0x6e, 0x6e, 0x5f, 0x60, 0x63, 0x63, 0x5f, 0x5e, 0x64, 0x6a, 0x6c, 0x75, 0x6e, 0x68, 0x68, 0x6b, 0x69, 0x61, 0x58, 0x54, 0x62, 0x63, 0x5e, 0x5b, 0x5e, 0x62, 0x5a, 0x62, 0x6c, 0x6f, 0x62, 0x56, 0x58, 0x64, 0x6f, 0x72, 0x7f, 0x83, 0x86, 0x7f, 0x71, 0x6a, 0x5e, 0x64, 0x6f, 0x76, 0x76, 0x74, 0x75, 0x75, 0x72, 0x6f, 0x68, 0x60, 0x5c, 0x5e, 0x61, 0x5f, 0x5b, 0x5e, 0x60, 0x63, 0x65, 0x67, 0x6c, 0x72, 0x77, 0x78, 0x72, 0x68, 0x61, 0x63, 0x68, 0x63, 0x59, 0x5d, 0x5f, 0x60, 0x60, 0x62, 0x64, 0x60, 0x5b, 0x52, 0x53, 0x55, 0x5b, 0x64, 0x6a, 0x68, 0x62, 0x62, 0x62, 0x64, 0x67, 0x67, 0x62, 0x5f, 0x5f, 0x65, 0x61, 0x5e, 0x60, 0x67, 0x6d, 0x6e, 0x6c, 0x67, 0x66, 0x64, 0x62, 0x64, 0x6a, 0x73, 0x79, 0x77, 0x7b, 0x7c, 0x6c, 0x58, 0x5b, 0x6f, 0x7c, 0x7b, 0x77, 0x6a, 0x5c, 0x5d, 0x67, 0x6a, 0x63, 0x62, 0x68, 0x6a, 0x63, 0x5e, 0x60, 0x67, 0x6d, 0x85, 0x86, 0x71, 0x59, 0x53, 0x4e, 0x47, 0x49, 0x4a, 0x48, 0x45, 0x45, 0x47, 0x46, 0x43, 0x40, 0x3e, 0x3d, 0x3d, 0x3c, 0x38, 0x35, 0x36, 0x3b, 0x3f, 0x40, 0x42, 0x43, 0x43, 0x43, 0x44, 0x44, 0x46, 0x46, 0x46, 0x46, 0x46, 0x45, 0x45, 0x44, 0x44, 0x43, 0x44, 0x47, 0x4e, 0x57, 0x61, 0x67, 0x89, 0xa4, 0xbd, 0xc3, 0xbf, 0xbc, 0xba, 0xb8, 0xb2, 0xb5, 0xb7, 0xb7, 0xba, 0xbf, 0xbe, 0xb8, 0xbb, 0xb7, 0xb1, 0xae, 0xae, 0xae, 0xac, 0xaa, 0xa7, 0xa6, 0xaa, 0xb0, 0xb3, 0xb2, 0xb3, 0xb7, 0xae, 0xb0, 0xb1, 0xb0, 0xab, 0xa6, 0xa1, 0x9f, 0x9d, 0x9e, 0xa1, 0xa4, 0xa5, 0xa3, 0x9f, 0x9c, 0x9c, 0x99, 0x9b, 0xa1, 0xa4, 0xa3, 0xa3, 0xa5, 0x9e, 0x9a, 0x84, 0x72, 0x78, 0x85, 0x92, 0xa3, 0xc0, 0xd0, 0xdd, 0xdf, 0xdd, 0xdc, 0xd8, 0xd2, 0xd1, 0xcf, 0xcc, 0xc9, 0xc8, 0xc8, 0xc3, 0xbd, 0xb9, 0xb5, 0xb5, 0xb6, 0xb3, 0xa8, 0x9d, 0x98, 0x9c, 0x9e, 0xa2, 0xa8, 0xad, 0xb0, 0xb1, 0xb1, 0xb4, 0xb4, 0xb6, 0xbb, 0xc2, 0xc7, 0xca, 0xcb, 0xc9, 0xcf, 0xd1, 0xd2, 0xd2, 0xcb, 0xc6, 0xcb, 0xca, 0xc9, 0xc5, 0xbe, 0xb9, 0xb8, 0xb5, 0xb1, 0xc0, 0xb9, 0xb9, 0xbd, 0xc4, 0xbe, 0xba, 0xcd, 0xb7, 0x3e, 0x4f, 0x63, 0x4e, 0xaa, 0xd8, 0x6f, 0xb9, 0xc0, 0xbb, 0xbd, 0xc0, 0xc5, 0xd9, 0xe7, 0xe2, 0xe4, 0xe5, 0xe5, 0xe4, 0xe2, 0xe2, 0xe2, 0xe3, 0xed, 0xe1, 0xab, 0x49, 0x7c, 0xbd, 0xc8, 0xd2, 0xd4, 0xd5, 0xd2, 0xd0, 0xd0, 0xd1, 0xd0, 0xd8, 0xbc, 0x9c, 0xa6, 0xa1, 0xa1, 0xa0, 0x9c, 0x9e, 0x9f, 0x9d, 0x9b, 0x9d, 0xa1, 0x9e, 0x98, 0x69, 0xae, 0xc3, 0xd5, 0xe7, 0xe8, 0xea, 0xe3, 0xdf, 0xdc, 0xe4, 0xdb, 0xe3, 0xdf, 0xd9, 0xd0, 0xa2, 0x84, 0x92, 0x92, 0x96, 0x8d, 0x8a, 0x8a, 0x8b, 0x8e, 0xa1, 0xd0, 0xd1, 0xcb, 0xc9, 0xc5, 0xbc, 0xa7, 0x73, 0x86, 0x96, 0xac, 0xb9, 0x9c, 0x77, 0x64, 0x4d, 0x47, 0x4c, 0x4b, 0x48, 0x4b, 0x48, 0x43, 0x41, 0x42, 0x41, 0x3e, 0x3d, 0x3f, 0x42, 0x3c, 0x3e, 0x4e, 0x61, 0x6c, 0x6e, 0x6d, 0x6b, 0x6b, 0x6d, 0x6f, 0x6b, 0x65, 0x67, 0x6d, 0x6b, 0x72, 0x7b, 0x7a, 0x6f, 0x65, 0x64, 0x69, 0x6e, 0x78, 0x81, 0x7f, 0x74, 0x67, 0x60, 0x5f, 0x67, 0x70, 0x7a, 0x7c, 0x74, 0x6c, 0x6d, 0x72, 0x6e, 0x6c, 0x70, 0x71, 0x6a, 0x68, 0x6c, 0x6c, 0x6f, 0x6d, 0x6a, 0x6b, 0x72, 0x79, 0x79, 0x76, 0x67, 0x62, 0x65, 0x70, 0x77, 0x72, 0x67, 0x60, 0x5f, 0x5e, 0x57, 0x52, 0x4f, 0x42, 0x33, 0x2f, 0x27, 0x32, 0x48, 0x5d, 0x5e, 0x53, 0x4f, 0x54, 0x51, 0x47, 0x39, 0x2e, 0x29, 0x28, 0x27, 0x26, 0x2c, 0x37, 0x42, 0x44, 0x42, 0x40, 0x40, 0x41, 0x42, 0x50, 0x5e, 0x64, 0x67, 0x66, 0x5d, 0x51, 0x4b, 0x46, 0x42, 0x46, 0x51, 0x5b, 0x5f, 0x5e, 0x47, 0x4c, 0x54, 0x5b, 0x58, 0x4c, 0x3f, 0x37, 0x3b, 0x36, 0x31, 0x31, 0x37, 0x3d, 0x40, 0x40, 0x39, 0x2b, 0x26, 0x31, 0x36, 0x30, 0x3f, 0x5f, 0x7c, 0x77, 0x6e, 0x63, 0x5c, 0x58, 0x53, 0x4f, 0x52, 0x57, 0x5b, 0x5a, 0x56, 0x56, 0x59, 0x5d, 0x65, 0x6c, 0x72, 0x72, 0x73, 0x72, 0x6a, 0x60, 0x63, 0x5b, 0x57, 0x59, 0x53, 0x47, 0x43, 0x48, 0x3e, 0x46, 0x42, 0x3c, 0x50, 0x78, 0x8e, 0x8c, 0x83, 0x7a, 0x65, 0x4f, 0x49, 0x58, 0x6d, 0x79, 0x7b, 0x81, 0x7d, 0x68, 0x4d, 0x38, 0x29, 0x20, 0x53, 0x53, 0x59, 0x63, 0x68, 0x65, 0x60, 0x5e, 0x5d, 0x59, 0x55, 0x50, 0x4a, 0x48, 0x4f, 0x59, 0x7e, 0x83, 0x79, 0x64, 0x5d, 0x67, 0x6d, 0x69, 0x64, 0x60, 0x5a, 0x58, 0x60, 0x6c, 0x73, 0x73, 0x64, 0x62, 0x62, 0x67, 0x6d, 0x6d, 0x66, 0x5f, 0x62, 0x66, 0x64, 0x63, 0x66, 0x69, 0x67, 0x5e, 0x65, 0x69, 0x68, 0x65, 0x65, 0x68, 0x67, 0x62, 0x6d, 0x77, 0x75, 0x76, 0x72, 0x6d, 0x73, 0x70, 0x70, 0x77, 0x7d, 0x7c, 0x78, 0x75, 0x73, 0x72, 0x6c, 0x6a, 0x65, 0x5e, 0x59, 0x58, 0x5a, 0x5c, 0x5d, 0x60, 0x62, 0x62, 0x5f, 0x5c, 0x5a, 0x59, 0x65, 0x65, 0x63, 0x60, 0x63, 0x69, 0x69, 0x65, 0x66, 0x68, 0x6b, 0x6e, 0x6e, 0x68, 0x60, 0x59, 0x59, 0x5b, 0x5f, 0x64, 0x6a, 0x6e, 0x6c, 0x67, 0x64, 0x64, 0x65, 0x67, 0x66, 0x60, 0x5c, 0x5b, 0x63, 0x60, 0x5f, 0x63, 0x6a, 0x6e, 0x6c, 0x68, 0x6b, 0x69, 0x66, 0x63, 0x64, 0x6a, 0x72, 0x78, 0x7d, 0x7e, 0x7d, 0x6e, 0x5c, 0x5d, 0x6b, 0x72, 0x78, 0x77, 0x70, 0x64, 0x5f, 0x62, 0x63, 0x60, 0x6e, 0x6f, 0x6d, 0x67, 0x60, 0x62, 0x6b, 0x74, 0x7d, 0x8d, 0x88, 0x6f, 0x5a, 0x4a, 0x46, 0x4e, 0x4c, 0x4a, 0x49, 0x48, 0x48, 0x47, 0x43, 0x40, 0x41, 0x40, 0x40, 0x3f, 0x3b, 0x38, 0x39, 0x3d, 0x3f, 0x40, 0x42, 0x43, 0x43, 0x43, 0x44, 0x45, 0x42, 0x43, 0x44, 0x45, 0x46, 0x46, 0x46, 0x46, 0x49, 0x47, 0x45, 0x44, 0x44, 0x47, 0x4a, 0x4c, 0x51, 0x6c, 0x90, 0xab, 0xba, 0xbf, 0xbd, 0xb8, 0xb2, 0xb4, 0xb7, 0xb8, 0xb5, 0xb2, 0xb4, 0xb8, 0xb7, 0xb3, 0xaf, 0xad, 0xad, 0xac, 0xa9, 0xa7, 0xa3, 0xa4, 0xa9, 0xaf, 0xb2, 0xb0, 0xb0, 0xb2, 0xaf, 0xb0, 0xb2, 0xb0, 0xad, 0xa9, 0xa6, 0xa4, 0xa1, 0xa0, 0x9f, 0x9f, 0xa0, 0xa1, 0xa1, 0xa0, 0xa3, 0x9a, 0x94, 0x98, 0x9e, 0x9e, 0x9b, 0x97, 0x9a, 0x9a, 0x86, 0x73, 0x7b, 0x91, 0xa9, 0xbe, 0xce, 0xd7, 0xdb, 0xd7, 0xd3, 0xd4, 0xd3, 0xd0, 0xcc, 0xcd, 0xcb, 0xc9, 0xc9, 0xc8, 0xc3, 0xbd, 0xb6, 0xb5, 0xb5, 0xb4, 0xad, 0xa2, 0x9b, 0x99, 0x99, 0x9b, 0x9f, 0xa5, 0xac, 0xb2, 0xb7, 0xba, 0xba, 0xba, 0xbb, 0xbf, 0xc5, 0xc9, 0xcb, 0xcc, 0xcc, 0xd0, 0xd1, 0xd4, 0xd7, 0xce, 0xc5, 0xc5, 0xc8, 0xc5, 0xbf, 0xb8, 0xb3, 0xb3, 0xb7, 0xbb, 0xb2, 0xb6, 0xb6, 0xbe, 0xbb, 0xbd, 0xc9, 0xbd, 0x89, 0x38, 0x3e, 0x43, 0x3e, 0xba, 0xf0, 0x89, 0x97, 0xc8, 0xba, 0xb8, 0xbe, 0xbc, 0xd7, 0xe6, 0xe3, 0xe4, 0xe6, 0xe6, 0xe4, 0xe3, 0xe2, 0xe2, 0xda, 0xdd, 0xe4, 0xc1, 0x4c, 0x73, 0xc8, 0xc1, 0xd4, 0xd5, 0xd4, 0xd1, 0xd0, 0xd2, 0xd2, 0xd0, 0xda, 0xbd, 0x9c, 0xa5, 0xa0, 0xa0, 0x9e, 0x9b, 0x9e, 0x9f, 0x9e, 0x9d, 0x9f, 0xa0, 0x9d, 0x97, 0x67, 0x9d, 0xc2, 0xe3, 0xf1, 0xe9, 0xe8, 0xe1, 0xe8, 0xde, 0xe3, 0xd9, 0xdd, 0xe3, 0xea, 0xde, 0xa3, 0x86, 0x92, 0x95, 0x99, 0x8d, 0x8a, 0x8c, 0x90, 0x93, 0xa7, 0xd3, 0xd0, 0xc8, 0xc7, 0xc6, 0xb8, 0xaa, 0x74, 0x8b, 0xb0, 0xae, 0xaa, 0x9c, 0x76, 0x5e, 0x4b, 0x48, 0x4a, 0x49, 0x47, 0x48, 0x4b, 0x46, 0x43, 0x43, 0x41, 0x3d, 0x3a, 0x3b, 0x3b, 0x44, 0x54, 0x65, 0x6e, 0x70, 0x73, 0x78, 0x70, 0x69, 0x67, 0x68, 0x5e, 0x4f, 0x4c, 0x54, 0x73, 0x76, 0x7a, 0x7b, 0x75, 0x6d, 0x69, 0x69, 0x6b, 0x79, 0x86, 0x84, 0x75, 0x68, 0x67, 0x6a, 0x68, 0x6a, 0x70, 0x79, 0x7d, 0x77, 0x6e, 0x67, 0x61, 0x6c, 0x70, 0x6d, 0x6e, 0x73, 0x73, 0x6e, 0x72, 0x71, 0x6f, 0x6e, 0x72, 0x75, 0x75, 0x71, 0x5c, 0x62, 0x66, 0x67, 0x6a, 0x6f, 0x70, 0x6d, 0x60, 0x63, 0x5d, 0x54, 0x48, 0x37, 0x2d, 0x2f, 0x42, 0x4a, 0x54, 0x5c, 0x62, 0x65, 0x64, 0x61, 0x57, 0x54, 0x4f, 0x4a, 0x45, 0x3f, 0x38, 0x34, 0x2e, 0x31, 0x36, 0x3e, 0x48, 0x4c, 0x46, 0x3e, 0x4b, 0x54, 0x57, 0x4e, 0x45, 0x45, 0x48, 0x4a, 0x42, 0x46, 0x5a, 0x70, 0x6b, 0x54, 0x4a, 0x52, 0x68, 0x72, 0x7d, 0x7d, 0x6f, 0x5b, 0x4d, 0x49, 0x3d, 0x44, 0x45, 0x3d, 0x37, 0x36, 0x33, 0x2e, 0x1a, 0x1e, 0x25, 0x2c, 0x24, 0x16, 0x22, 0x41, 0x5c, 0x66, 0x66, 0x5c, 0x59, 0x60, 0x60, 0x57, 0x4d, 0x44, 0x41, 0x48, 0x51, 0x54, 0x51, 0x4e, 0x4f, 0x54, 0x5a, 0x5f, 0x64, 0x65, 0x63, 0x5e, 0x68, 0x64, 0x58, 0x49, 0x41, 0x42, 0x44, 0x43, 0x49, 0x39, 0x3d, 0x60, 0x7e, 0x7d, 0x6a, 0x5b, 0x4e, 0x50, 0x5a, 0x6d, 0x7a, 0x76, 0x63, 0x51, 0x3e, 0x32, 0x27, 0x25, 0x2a, 0x32, 0x3b, 0x44, 0x7a, 0x78, 0x77, 0x78, 0x74, 0x6b, 0x62, 0x5c, 0x51, 0x52, 0x53, 0x51, 0x4c, 0x4a, 0x4e, 0x55, 0x51, 0x59, 0x59, 0x4f, 0x49, 0x51, 0x5d, 0x62, 0x5a, 0x5b, 0x5a, 0x5b, 0x5e, 0x60, 0x5d, 0x59, 0x5d, 0x5e, 0x62, 0x67, 0x6a, 0x68, 0x62, 0x5d, 0x65, 0x64, 0x66, 0x6a, 0x6e, 0x6f, 0x6d, 0x6c, 0x64, 0x67, 0x67, 0x63, 0x62, 0x65, 0x65, 0x62, 0x61, 0x70, 0x77, 0x7e, 0x7d, 0x77, 0x7b, 0x77, 0x7a, 0x7a, 0x7b, 0x7a, 0x74, 0x6e, 0x6e, 0x71, 0x6a, 0x68, 0x63, 0x5f, 0x5c, 0x5c, 0x5f, 0x61, 0x5e, 0x60, 0x63, 0x63, 0x61, 0x5d, 0x5b, 0x59, 0x50, 0x52, 0x58, 0x60, 0x6a, 0x70, 0x6e, 0x69, 0x64, 0x63, 0x68, 0x6f, 0x6f, 0x64, 0x58, 0x53, 0x53, 0x57, 0x5b, 0x5e, 0x62, 0x64, 0x62, 0x5f, 0x68, 0x67, 0x68, 0x69, 0x65, 0x5e, 0x59, 0x57, 0x50, 0x55, 0x5c, 0x61, 0x63, 0x63, 0x63, 0x64, 0x66, 0x64, 0x62, 0x62, 0x65, 0x6c, 0x75, 0x7b, 0x84, 0x81, 0x7f, 0x76, 0x6a, 0x6a, 0x70, 0x6f, 0x76, 0x78, 0x77, 0x71, 0x68, 0x63, 0x63, 0x66, 0x75, 0x73, 0x71, 0x6f, 0x68, 0x65, 0x6b, 0x75, 0x76, 0x80, 0x7d, 0x71, 0x67, 0x5c, 0x52, 0x50, 0x48, 0x48, 0x48, 0x47, 0x47, 0x45, 0x44, 0x43, 0x40, 0x3f, 0x3f, 0x3e, 0x3b, 0x37, 0x38, 0x3c, 0x3f, 0x41, 0x43, 0x43, 0x44, 0x44, 0x45, 0x46, 0x43, 0x44, 0x45, 0x46, 0x46, 0x47, 0x47, 0x47, 0x47, 0x47, 0x46, 0x44, 0x43, 0x43, 0x42, 0x42, 0x44, 0x47, 0x58, 0x78, 0x9a, 0xb2, 0xbc, 0xbe, 0xbb, 0xb5, 0xb3, 0xb4, 0xb1, 0xab, 0xae, 0xb6, 0xb2, 0xb0, 0xad, 0xad, 0xac, 0xab, 0xa7, 0xa4, 0x9f, 0xa1, 0xa6, 0xad, 0xb0, 0xae, 0xad, 0xad, 0xac, 0xad, 0xae, 0xad, 0xab, 0xa8, 0xa6, 0xa6, 0xa5, 0xa2, 0xa0, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x98, 0x94, 0x95, 0x97, 0x96, 0x92, 0x80, 0x77, 0x8b, 0xaa, 0xc5, 0xd5, 0xd6, 0xd8, 0xd6, 0xcf, 0xcc, 0xce, 0xce, 0xcc, 0xca, 0xcb, 0xca, 0xc9, 0xc8, 0xc6, 0xc1, 0xba, 0xb5, 0xb6, 0xb5, 0xb0, 0xa6, 0x9b, 0x97, 0x99, 0x9a, 0x9a, 0x9c, 0x9f, 0xa5, 0xac, 0xb2, 0xb6, 0xba, 0xba, 0xbc, 0xc0, 0xc4, 0xc9, 0xcb, 0xcc, 0xcb, 0xcd, 0xcc, 0xcf, 0xd2, 0xc8, 0xba, 0xb7, 0xb5, 0xb4, 0xb5, 0xb7, 0xb3, 0xae, 0xb1, 0xb8, 0xb5, 0xbe, 0xb8, 0xbf, 0xb3, 0xb4, 0xc1, 0x92, 0x3f, 0x38, 0x60, 0x56, 0x39, 0xba, 0xf8, 0xb4, 0x74, 0xbd, 0xbd, 0xb8, 0xbc, 0xb3, 0xd4, 0xe2, 0xe3, 0xe5, 0xe6, 0xe6, 0xe5, 0xe4, 0xe3, 0xe4, 0xea, 0xe2, 0xea, 0xc6, 0x4e, 0x6a, 0xca, 0xc5, 0xd6, 0xd6, 0xd4, 0xd1, 0xd1, 0xd3, 0xd3, 0xd2, 0xdd, 0xbf, 0x9e, 0xa6, 0xa0, 0xa0, 0x9f, 0x9c, 0x9e, 0x9f, 0x9f, 0x9f, 0xa0, 0xa0, 0x9c, 0x97, 0x6b, 0x97, 0xc5, 0xdf, 0xe0, 0xd5, 0xda, 0xd9, 0xdf, 0xe4, 0xd9, 0xc1, 0xce, 0xd1, 0xd5, 0xd5, 0x9a, 0x87, 0x92, 0x97, 0x99, 0x8e, 0x8b, 0x8f, 0x93, 0x96, 0xa9, 0xd5, 0xd0, 0xc7, 0xc7, 0xc8, 0xb9, 0xb3, 0x83, 0x88, 0xc4, 0xbf, 0xa4, 0x99, 0x73, 0x55, 0x47, 0x4a, 0x47, 0x45, 0x47, 0x44, 0x40, 0x40, 0x41, 0x40, 0x3d, 0x3c, 0x40, 0x46, 0x4e, 0x55, 0x63, 0x72, 0x79, 0x76, 0x71, 0x6e, 0x5d, 0x69, 0x67, 0x5e, 0x6b, 0x8a, 0x9c, 0x9a, 0x66, 0x64, 0x67, 0x6e, 0x72, 0x70, 0x6a, 0x66, 0x68, 0x73, 0x7e, 0x7e, 0x73, 0x6a, 0x69, 0x6b, 0x67, 0x6b, 0x73, 0x7a, 0x7b, 0x73, 0x6a, 0x65, 0x7a, 0x88, 0x7d, 0x68, 0x6a, 0x72, 0x6d, 0x68, 0x73, 0x73, 0x6f, 0x6a, 0x69, 0x6b, 0x6b, 0x6a, 0x6d, 0x6f, 0x6e, 0x69, 0x63, 0x5d, 0x56, 0x51, 0x5c, 0x63, 0x61, 0x54, 0x42, 0x2f, 0x2a, 0x32, 0x58, 0x69, 0x70, 0x64, 0x5c, 0x63, 0x6c, 0x6f, 0x69, 0x67, 0x62, 0x5a, 0x51, 0x47, 0x3f, 0x3a, 0x39, 0x33, 0x2e, 0x33, 0x42, 0x4f, 0x51, 0x4d, 0x45, 0x47, 0x47, 0x46, 0x49, 0x4e, 0x4d, 0x48, 0x3c, 0x4d, 0x60, 0x63, 0x58, 0x4e, 0x51, 0x5b, 0x5b, 0x5c, 0x61, 0x67, 0x6a, 0x65, 0x5f, 0x5c, 0x53, 0x52, 0x4e, 0x47, 0x3d, 0x32, 0x29, 0x24, 0x28, 0x22, 0x1d, 0x21, 0x25, 0x1f, 0x1d, 0x27, 0x3f, 0x4e, 0x58, 0x57, 0x55, 0x59, 0x5b, 0x5a, 0x4c, 0x48, 0x44, 0x3f, 0x38, 0x34, 0x3c, 0x47, 0x4f, 0x4a, 0x45, 0x45, 0x49, 0x4e, 0x54, 0x5a, 0x4b, 0x4c, 0x47, 0x3d, 0x35, 0x32, 0x2e, 0x29, 0x28, 0x35, 0x48, 0x56, 0x5a, 0x56, 0x50, 0x4d, 0x48, 0x47, 0x3a, 0x26, 0x1d, 0x24, 0x29, 0x28, 0x2d, 0x2f, 0x35, 0x3a, 0x3a, 0x3f, 0x54, 0x6b, 0x68, 0x65, 0x63, 0x61, 0x5f, 0x5b, 0x58, 0x55, 0x5a, 0x5d, 0x5f, 0x5d, 0x55, 0x4f, 0x4f, 0x51, 0x58, 0x57, 0x55, 0x52, 0x52, 0x56, 0x5c, 0x5f, 0x65, 0x5c, 0x53, 0x52, 0x5a, 0x62, 0x63, 0x60, 0x5e, 0x62, 0x66, 0x66, 0x61, 0x5d, 0x5c, 0x5c, 0x5c, 0x5d, 0x67, 0x6a, 0x66, 0x61, 0x5f, 0x6a, 0x6b, 0x6a, 0x63, 0x5b, 0x5c, 0x64, 0x6b, 0x6c, 0x67, 0x72, 0x74, 0x77, 0x76, 0x74, 0x7f, 0x7f, 0x7f, 0x79, 0x75, 0x73, 0x6d, 0x67, 0x6a, 0x71, 0x6d, 0x65, 0x5e, 0x5f, 0x63, 0x63, 0x5f, 0x5c, 0x5e, 0x5d, 0x5c, 0x5d, 0x61, 0x65, 0x69, 0x6b, 0x5d, 0x55, 0x51, 0x59, 0x67, 0x6f, 0x6d, 0x68, 0x5d, 0x58, 0x5b, 0x64, 0x64, 0x5a, 0x52, 0x51, 0x53, 0x57, 0x5b, 0x5d, 0x5f, 0x61, 0x62, 0x60, 0x66, 0x65, 0x65, 0x66, 0x62, 0x5a, 0x54, 0x52, 0x4c, 0x58, 0x64, 0x69, 0x66, 0x65, 0x6a, 0x70, 0x60, 0x5f, 0x5f, 0x60, 0x64, 0x6a, 0x71, 0x75, 0x7a, 0x75, 0x74, 0x75, 0x72, 0x74, 0x75, 0x6f, 0x70, 0x71, 0x75, 0x75, 0x6e, 0x67, 0x69, 0x70, 0x77, 0x75, 0x77, 0x7b, 0x75, 0x6b, 0x6b, 0x73, 0x78, 0x74, 0x6d, 0x6b, 0x70, 0x70, 0x64, 0x59, 0x49, 0x49, 0x48, 0x47, 0x46, 0x45, 0x46, 0x47, 0x40, 0x3f, 0x3e, 0x3d, 0x3a, 0x37, 0x38, 0x3b, 0x40, 0x42, 0x43, 0x44, 0x44, 0x45, 0x46, 0x47, 0x48, 0x48, 0x49, 0x49, 0x48, 0x48, 0x47, 0x47, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x4f, 0x45, 0x42, 0x50, 0x68, 0x85, 0xa5, 0xbe, 0xc1, 0xb9, 0xb2, 0xb0, 0xaf, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xab, 0xa6, 0xa3, 0x9f, 0xa1, 0xa4, 0xa9, 0xac, 0xac, 0xab, 0xaa, 0xaa, 0xab, 0xab, 0xaa, 0xa8, 0xa7, 0xa6, 0xa6, 0xa5, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d, 0x9a, 0x97, 0x96, 0x99, 0x9d, 0x9c, 0x98, 0x94, 0x94, 0x97, 0x91, 0x83, 0x78, 0x86, 0xa8, 0xc6, 0xd3, 0xd5, 0xd0, 0xd1, 0xd0, 0xcc, 0xcb, 0xcc, 0xcb, 0xc8, 0xcb, 0xcb, 0xc9, 0xc5, 0xc3, 0xc0, 0xbb, 0xb6, 0xb7, 0xb6, 0xb3, 0xab, 0xa0, 0x97, 0x95, 0x96, 0x99, 0x9a, 0x9b, 0x9c, 0xa0, 0xa6, 0xac, 0xb0, 0xb6, 0xb8, 0xbb, 0xbf, 0xc4, 0xc9, 0xcc, 0xcd, 0xcc, 0xcc, 0xc7, 0xc5, 0xc3, 0xb8, 0xab, 0xa9, 0xa6, 0xa5, 0xaa, 0xb2, 0xb3, 0xae, 0xaf, 0xb5, 0xb5, 0xba, 0xb5, 0xbd, 0xba, 0xbb, 0xbc, 0x92, 0x2c, 0x3c, 0x93, 0x8b, 0x4f, 0xbc, 0xeb, 0xd5, 0x74, 0x92, 0xc3, 0xbe, 0xb8, 0xb1, 0xd2, 0xde, 0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe4, 0xe4, 0xe5, 0xe1, 0xd4, 0xea, 0xb9, 0x53, 0x71, 0xc2, 0xce, 0xd7, 0xd7, 0xd4, 0xd1, 0xd2, 0xd4, 0xd5, 0xd3, 0xdf, 0xc1, 0x9f, 0xa7, 0xa1, 0xa2, 0xa2, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0x9d, 0x9a, 0x69, 0x9d, 0xd7, 0xe3, 0xdb, 0xc6, 0xc1, 0xc4, 0xd6, 0xe8, 0xe3, 0xc5, 0xc1, 0xc1, 0xd3, 0xd4, 0x87, 0x89, 0x95, 0x98, 0x95, 0x8f, 0x8f, 0x91, 0x92, 0x93, 0xa5, 0xd2, 0xd0, 0xc9, 0xca, 0xcb, 0xc1, 0xbd, 0xa2, 0x7d, 0xb2, 0xcc, 0xaa, 0x96, 0x6d, 0x4c, 0x43, 0x4b, 0x45, 0x42, 0x46, 0x41, 0x3b, 0x40, 0x42, 0x3e, 0x39, 0x3b, 0x46, 0x52, 0x5c, 0x60, 0x69, 0x72, 0x77, 0x77, 0x73, 0x70, 0x73, 0x5f, 0x5f, 0x7e, 0x97, 0x8c, 0x6b, 0x54, 0x60, 0x5f, 0x64, 0x6f, 0x78, 0x78, 0x72, 0x6c, 0x69, 0x6c, 0x70, 0x73, 0x74, 0x71, 0x6b, 0x66, 0x6a, 0x6c, 0x70, 0x76, 0x76, 0x71, 0x6b, 0x68, 0x7d, 0x8b, 0x7d, 0x6a, 0x71, 0x77, 0x71, 0x71, 0x7c, 0x7b, 0x75, 0x6e, 0x6b, 0x6d, 0x6e, 0x6e, 0x70, 0x6b, 0x69, 0x64, 0x57, 0x49, 0x48, 0x50, 0x58, 0x60, 0x5f, 0x54, 0x45, 0x33, 0x2e, 0x36, 0x58, 0x6e, 0x78, 0x68, 0x59, 0x5c, 0x69, 0x6f, 0x6d, 0x6e, 0x6e, 0x6b, 0x66, 0x61, 0x5c, 0x5a, 0x4e, 0x46, 0x39, 0x31, 0x37, 0x47, 0x57, 0x60, 0x5c, 0x52, 0x44, 0x3f, 0x48, 0x54, 0x58, 0x55, 0x53, 0x4d, 0x47, 0x4b, 0x5e, 0x70, 0x71, 0x67, 0x51, 0x41, 0x33, 0x32, 0x3c, 0x47, 0x50, 0x55, 0x56, 0x4e, 0x4d, 0x4d, 0x3f, 0x2a, 0x24, 0x2c, 0x31, 0x35, 0x32, 0x2c, 0x28, 0x21, 0x1f, 0x26, 0x36, 0x4f, 0x6e, 0x73, 0x55, 0x36, 0x39, 0x4f, 0x5a, 0x52, 0x46, 0x3d, 0x39, 0x37, 0x33, 0x2f, 0x28, 0x34, 0x4b, 0x62, 0x68, 0x59, 0x47, 0x3d, 0x42, 0x36, 0x2e, 0x2b, 0x25, 0x1d, 0x21, 0x2c, 0x3e, 0x47, 0x40, 0x2d, 0x30, 0x4c, 0x5d, 0x5c, 0x3f, 0x3b, 0x35, 0x33, 0x35, 0x38, 0x36, 0x33, 0x30, 0x3c, 0x44, 0x3f, 0x40, 0x57, 0x7f, 0x9e, 0x64, 0x61, 0x5c, 0x59, 0x58, 0x5a, 0x5d, 0x5e, 0x5c, 0x5d, 0x5c, 0x57, 0x52, 0x52, 0x55, 0x58, 0x5d, 0x58, 0x55, 0x54, 0x54, 0x55, 0x58, 0x5b, 0x57, 0x4f, 0x4d, 0x5b, 0x6f, 0x77, 0x70, 0x66, 0x5e, 0x64, 0x67, 0x62, 0x5a, 0x57, 0x5d, 0x65, 0x6a, 0x66, 0x72, 0x73, 0x6b, 0x62, 0x58, 0x63, 0x69, 0x61, 0x56, 0x54, 0x5e, 0x6c, 0x6f, 0x69, 0x6f, 0x7b, 0x7d, 0x80, 0x7e, 0x7a, 0x81, 0x7f, 0x7f, 0x7a, 0x76, 0x74, 0x6e, 0x67, 0x67, 0x6c, 0x6d, 0x66, 0x61, 0x61, 0x62, 0x5d, 0x56, 0x52, 0x5b, 0x57, 0x53, 0x54, 0x59, 0x60, 0x66, 0x69, 0x68, 0x58, 0x49, 0x46, 0x4b, 0x52, 0x59, 0x5e, 0x64, 0x5b, 0x58, 0x5c, 0x5c, 0x55, 0x53, 0x56, 0x54, 0x57, 0x5a, 0x5a, 0x5b, 0x5f, 0x62, 0x63, 0x5e, 0x5d, 0x5e, 0x5e, 0x5b, 0x55, 0x50, 0x4e, 0x53, 0x59, 0x61, 0x67, 0x69, 0x6a, 0x6c, 0x6f, 0x60, 0x60, 0x5f, 0x5f, 0x61, 0x63, 0x64, 0x65, 0x65, 0x5f, 0x61, 0x68, 0x6c, 0x70, 0x6f, 0x67, 0x68, 0x67, 0x69, 0x6d, 0x6a, 0x66, 0x6a, 0x74, 0x78, 0x76, 0x7a, 0x7f, 0x7b, 0x71, 0x6e, 0x73, 0x7a, 0x78, 0x77, 0x73, 0x6f, 0x6d, 0x6b, 0x66, 0x56, 0x54, 0x50, 0x4b, 0x47, 0x45, 0x45, 0x46, 0x43, 0x41, 0x40, 0x3f, 0x3d, 0x3a, 0x3b, 0x3d, 0x41, 0x43, 0x44, 0x45, 0x45, 0x46, 0x48, 0x49, 0x4a, 0x4a, 0x4a, 0x4b, 0x4a, 0x4a, 0x49, 0x49, 0x4b, 0x4a, 0x49, 0x47, 0x47, 0x47, 0x47, 0x48, 0x43, 0x45, 0x4a, 0x4b, 0x49, 0x54, 0x79, 0x9e, 0xb2, 0xba, 0xbc, 0xb6, 0xb2, 0xb2, 0xaf, 0xa9, 0xad, 0xae, 0xae, 0xae, 0xad, 0xaa, 0xa6, 0xa3, 0xa2, 0xa2, 0xa2, 0xa4, 0xa7, 0xaa, 0xab, 0xab, 0xac, 0xac, 0xac, 0xab, 0xa9, 0xa7, 0xa7, 0xa7, 0xa5, 0xa4, 0xa2, 0xa0, 0x9f, 0x9d, 0x9a, 0x98, 0x9a, 0x93, 0x8e, 0x90, 0x97, 0x9a, 0x94, 0x8c, 0x89, 0x7b, 0x80, 0xa3, 0xc5, 0xd3, 0xd2, 0xcd, 0xc9, 0xc9, 0xc9, 0xc8, 0xc9, 0xcb, 0xca, 0xc7, 0xcb, 0xca, 0xc6, 0xc0, 0xbd, 0xbb, 0xb8, 0xb5, 0xba, 0xb6, 0xae, 0xa5, 0x9d, 0x98, 0x95, 0x93, 0x96, 0x98, 0x9b, 0x9e, 0xa2, 0xa7, 0xad, 0xb1, 0xb6, 0xb9, 0xbd, 0xc2, 0xc6, 0xc9, 0xcc, 0xcd, 0xd0, 0xd0, 0xc7, 0xbe, 0xb5, 0xa9, 0xa2, 0xa5, 0xaa, 0xa2, 0xa0, 0xa8, 0xae, 0xaf, 0xb4, 0xbc, 0xbb, 0xbd, 0xbe, 0xbf, 0xc2, 0xc1, 0xb9, 0xb7, 0x6a, 0x35, 0x7f, 0x83, 0x60, 0xd0, 0xe2, 0xe4, 0x9e, 0x67, 0xbd, 0xc2, 0xb4, 0xb9, 0xd7, 0xe2, 0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe5, 0xe5, 0xe6, 0xa1, 0x92, 0xe0, 0xaf, 0x55, 0x86, 0xc3, 0xcb, 0xd7, 0xd7, 0xd5, 0xd2, 0xd2, 0xd5, 0xd6, 0xd5, 0xde, 0xc0, 0x9d, 0xa5, 0xa0, 0xa2, 0xa3, 0xa2, 0xa3, 0xa1, 0x9f, 0x9f, 0x9f, 0x9e, 0x9f, 0x9f, 0x74, 0x97, 0xd4, 0xdb, 0xd6, 0xbd, 0xb4, 0xc3, 0xd9, 0xd9, 0xd3, 0xbe, 0xb7, 0xc5, 0xdc, 0xbd, 0x79, 0x91, 0x9b, 0x99, 0x91, 0x91, 0x92, 0x90, 0x91, 0x8e, 0x9e, 0xce, 0xd1, 0xcb, 0xca, 0xca, 0xc8, 0xbb, 0xc0, 0x7b, 0x85, 0xb6, 0xa5, 0x95, 0x63, 0x46, 0x41, 0x4a, 0x43, 0x40, 0x45, 0x3f, 0x45, 0x43, 0x40, 0x3f, 0x42, 0x4a, 0x53, 0x58, 0x56, 0x63, 0x71, 0x75, 0x74, 0x76, 0x7e, 0x86, 0x87, 0x83, 0x84, 0x84, 0x76, 0x64, 0x65, 0x72, 0x61, 0x62, 0x68, 0x74, 0x7b, 0x79, 0x71, 0x6c, 0x69, 0x6a, 0x6e, 0x74, 0x7a, 0x79, 0x74, 0x6f, 0x70, 0x68, 0x66, 0x70, 0x7c, 0x7c, 0x70, 0x65, 0x6a, 0x77, 0x73, 0x70, 0x7a, 0x74, 0x66, 0x69, 0x77, 0x76, 0x72, 0x6e, 0x6d, 0x6e, 0x6d, 0x6b, 0x71, 0x6e, 0x63, 0x4e, 0x39, 0x33, 0x3d, 0x4b, 0x5e, 0x63, 0x60, 0x59, 0x4e, 0x3e, 0x35, 0x37, 0x4e, 0x5a, 0x65, 0x66, 0x64, 0x65, 0x66, 0x66, 0x6a, 0x6c, 0x6f, 0x6f, 0x6c, 0x68, 0x63, 0x61, 0x5b, 0x57, 0x4d, 0x42, 0x3e, 0x42, 0x49, 0x4d, 0x49, 0x45, 0x3f, 0x3b, 0x3d, 0x46, 0x50, 0x55, 0x54, 0x5a, 0x67, 0x6b, 0x5a, 0x40, 0x3a, 0x43, 0x47, 0x46, 0x47, 0x49, 0x48, 0x45, 0x46, 0x49, 0x50, 0x53, 0x57, 0x54, 0x48, 0x3e, 0x43, 0x50, 0x56, 0x4c, 0x3f, 0x45, 0x61, 0x79, 0x7e, 0x7e, 0x60, 0x5b, 0x68, 0x83, 0x8e, 0x7e, 0x69, 0x5f, 0x4a, 0x50, 0x4e, 0x46, 0x43, 0x44, 0x3b, 0x2d, 0x34, 0x30, 0x32, 0x38, 0x39, 0x34, 0x31, 0x32, 0x29, 0x20, 0x1c, 0x1e, 0x1b, 0x16, 0x1c, 0x29, 0x38, 0x47, 0x5f, 0x74, 0x77, 0x66, 0x4b, 0x37, 0x41, 0x37, 0x38, 0x40, 0x3b, 0x2d, 0x2e, 0x3d, 0x4c, 0x4a, 0x43, 0x4a, 0x6d, 0x8f, 0x87, 0x6a, 0x6f, 0x6b, 0x61, 0x56, 0x4f, 0x4c, 0x4b, 0x4a, 0x48, 0x4c, 0x51, 0x53, 0x57, 0x5c, 0x60, 0x61, 0x5a, 0x5c, 0x5d, 0x5a, 0x55, 0x55, 0x5c, 0x65, 0x50, 0x5b, 0x6c, 0x7a, 0x7a, 0x6d, 0x5d, 0x53, 0x62, 0x65, 0x65, 0x5f, 0x57, 0x57, 0x5f, 0x67, 0x71, 0x65, 0x72, 0x76, 0x77, 0x72, 0x5c, 0x60, 0x69, 0x6e, 0x71, 0x72, 0x77, 0x80, 0x83, 0x82, 0x71, 0x7f, 0x84, 0x8c, 0x89, 0x81, 0x81, 0x78, 0x79, 0x78, 0x79, 0x78, 0x72, 0x6a, 0x64, 0x62, 0x63, 0x64, 0x67, 0x68, 0x61, 0x58, 0x58, 0x5d, 0x5c, 0x58, 0x54, 0x55, 0x5a, 0x60, 0x63, 0x64, 0x58, 0x52, 0x4f, 0x50, 0x4c, 0x49, 0x4f, 0x5a, 0x6a, 0x61, 0x5a, 0x59, 0x58, 0x54, 0x54, 0x56, 0x4f, 0x52, 0x54, 0x54, 0x56, 0x5b, 0x5e, 0x5e, 0x5b, 0x5a, 0x5a, 0x5b, 0x59, 0x54, 0x51, 0x51, 0x58, 0x54, 0x53, 0x59, 0x62, 0x66, 0x62, 0x5c, 0x5f, 0x5e, 0x5d, 0x5e, 0x5f, 0x60, 0x60, 0x5f, 0x5d, 0x57, 0x5b, 0x63, 0x67, 0x6a, 0x69, 0x64, 0x64, 0x62, 0x62, 0x63, 0x62, 0x63, 0x6b, 0x74, 0x79, 0x75, 0x74, 0x75, 0x72, 0x6d, 0x6d, 0x71, 0x73, 0x72, 0x76, 0x74, 0x6b, 0x68, 0x6a, 0x68, 0x65, 0x61, 0x5a, 0x52, 0x4b, 0x45, 0x40, 0x3e, 0x44, 0x41, 0x3f, 0x3f, 0x3e, 0x3b, 0x3b, 0x3d, 0x43, 0x44, 0x46, 0x46, 0x47, 0x48, 0x4a, 0x4c, 0x4a, 0x4a, 0x4b, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4f, 0x4e, 0x4b, 0x49, 0x48, 0x48, 0x48, 0x49, 0x45, 0x46, 0x49, 0x4b, 0x46, 0x46, 0x55, 0x68, 0x8f, 0xab, 0xc0, 0xbe, 0xb6, 0xb5, 0xb3, 0xae, 0xae, 0xae, 0xae, 0xad, 0xab, 0xa8, 0xa5, 0xa3, 0xa5, 0xa3, 0xa1, 0xa0, 0xa3, 0xa9, 0xac, 0xab, 0xaa, 0xab, 0xab, 0xaa, 0xa8, 0xa6, 0xa6, 0xa6, 0xa6, 0xa3, 0x9f, 0x9d, 0x9d, 0x9e, 0x9f, 0x9f, 0x9e, 0x98, 0x90, 0x8d, 0x90, 0x93, 0x90, 0x8a, 0x7f, 0x7f, 0x98, 0xbc, 0xcc, 0xcc, 0xca, 0xc8, 0xc7, 0xc5, 0xc4, 0xc4, 0xc5, 0xc7, 0xc8, 0xc8, 0xc8, 0xc7, 0xc3, 0xbc, 0xb9, 0xb9, 0xb8, 0xb6, 0xb9, 0xb3, 0xa9, 0xa0, 0x9b, 0x9a, 0x97, 0x92, 0x97, 0x99, 0x9c, 0x9e, 0xa0, 0xa3, 0xa7, 0xab, 0xb6, 0xba, 0xbf, 0xc3, 0xc6, 0xc7, 0xc8, 0xc9, 0xd0, 0xd0, 0xc7, 0xb9, 0xac, 0x9f, 0x9c, 0xa5, 0xa8, 0xa2, 0xa0, 0xa7, 0xae, 0xb0, 0xb3, 0xb5, 0xbc, 0xc1, 0xc5, 0xbd, 0xbf, 0xbe, 0xb8, 0xcb, 0x97, 0x2c, 0x47, 0x46, 0x58, 0xd8, 0xe1, 0xed, 0xce, 0x69, 0xa1, 0xc1, 0xba, 0xc8, 0xe0, 0xe8, 0xe4, 0xe5, 0xe6, 0xe6, 0xe5, 0xe5, 0xe6, 0xe7, 0x7f, 0x6a, 0xd6, 0x9a, 0x4f, 0x9b, 0xd1, 0xc8, 0xd5, 0xd7, 0xd6, 0xd3, 0xd2, 0xd4, 0xd6, 0xd6, 0xdc, 0xbd, 0x9a, 0xa1, 0x9c, 0x9f, 0xa1, 0xa0, 0xa4, 0xa0, 0x9e, 0x9e, 0x9d, 0x9d, 0x9f, 0xa2, 0x86, 0x8a, 0xd4, 0xe1, 0xd7, 0xc0, 0xbe, 0xcc, 0xcc, 0xef, 0xe0, 0xba, 0xb7, 0xb6, 0xc7, 0xbe, 0x7a, 0x9a, 0x9d, 0x9a, 0x8f, 0x91, 0x91, 0x90, 0x92, 0x8c, 0x9b, 0xcd, 0xd1, 0xca, 0xc8, 0xc7, 0xc7, 0xb2, 0xc8, 0x8c, 0x66, 0x8e, 0x98, 0x8e, 0x56, 0x45, 0x42, 0x47, 0x42, 0x41, 0x43, 0x40, 0x42, 0x3d, 0x3b, 0x46, 0x5c, 0x6e, 0x71, 0x6c, 0x68, 0x70, 0x77, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x83, 0x90, 0x8b, 0x74, 0x6e, 0x78, 0x72, 0x5e, 0x5b, 0x5e, 0x65, 0x6f, 0x75, 0x73, 0x6e, 0x6b, 0x66, 0x6d, 0x76, 0x7b, 0x7c, 0x7b, 0x7b, 0x7c, 0x73, 0x6f, 0x70, 0x78, 0x7c, 0x77, 0x6a, 0x61, 0x68, 0x6a, 0x67, 0x6a, 0x6c, 0x5f, 0x54, 0x5b, 0x6d, 0x6b, 0x69, 0x69, 0x6d, 0x6f, 0x6b, 0x65, 0x66, 0x67, 0x60, 0x57, 0x5e, 0x6f, 0x74, 0x6d, 0x63, 0x65, 0x61, 0x5b, 0x53, 0x44, 0x37, 0x37, 0x45, 0x50, 0x5e, 0x69, 0x69, 0x62, 0x5f, 0x60, 0x68, 0x64, 0x5e, 0x59, 0x57, 0x58, 0x5b, 0x5c, 0x6f, 0x71, 0x73, 0x72, 0x6e, 0x64, 0x53, 0x44, 0x2f, 0x2d, 0x2d, 0x32, 0x39, 0x3f, 0x3f, 0x3d, 0x43, 0x4c, 0x5d, 0x6d, 0x71, 0x68, 0x5a, 0x52, 0x4e, 0x51, 0x59, 0x63, 0x66, 0x60, 0x56, 0x51, 0x4f, 0x4d, 0x45, 0x3f, 0x4a, 0x60, 0x6c, 0x6b, 0x64, 0x76, 0x80, 0x7e, 0x7c, 0x7b, 0x7e, 0x85, 0x84, 0x80, 0x79, 0x6f, 0x67, 0x5f, 0x54, 0x4a, 0x4a, 0x55, 0x57, 0x4b, 0x43, 0x47, 0x4b, 0x4a, 0x3b, 0x35, 0x2d, 0x28, 0x23, 0x1e, 0x1c, 0x1d, 0x16, 0x1f, 0x25, 0x26, 0x29, 0x30, 0x36, 0x37, 0x34, 0x36, 0x3c, 0x3e, 0x32, 0x23, 0x25, 0x32, 0x42, 0x4d, 0x4a, 0x32, 0x1f, 0x25, 0x39, 0x47, 0x6a, 0x72, 0x71, 0x6b, 0x72, 0x7d, 0x71, 0x5a, 0x64, 0x65, 0x63, 0x5d, 0x5a, 0x5a, 0x59, 0x56, 0x50, 0x53, 0x56, 0x58, 0x5c, 0x60, 0x5e, 0x59, 0x5b, 0x5f, 0x60, 0x5a, 0x53, 0x54, 0x5d, 0x65, 0x76, 0x7a, 0x7e, 0x79, 0x6a, 0x5b, 0x58, 0x5c, 0x65, 0x63, 0x61, 0x5e, 0x5c, 0x5d, 0x5f, 0x62, 0x5d, 0x53, 0x66, 0x6d, 0x74, 0x73, 0x5a, 0x5b, 0x56, 0x67, 0x74, 0x71, 0x6a, 0x6d, 0x79, 0x82, 0x7c, 0x80, 0x78, 0x77, 0x76, 0x76, 0x7e, 0x7b, 0x73, 0x76, 0x79, 0x76, 0x72, 0x6d, 0x66, 0x60, 0x5e, 0x61, 0x67, 0x69, 0x63, 0x5d, 0x61, 0x6c, 0x61, 0x5c, 0x56, 0x55, 0x5a, 0x5e, 0x5f, 0x5e, 0x53, 0x54, 0x5d, 0x6a, 0x6a, 0x5e, 0x57, 0x5a, 0x5b, 0x58, 0x54, 0x53, 0x53, 0x53, 0x51, 0x50, 0x51, 0x54, 0x57, 0x58, 0x5b, 0x5f, 0x5f, 0x5d, 0x59, 0x57, 0x57, 0x58, 0x57, 0x54, 0x53, 0x54, 0x5c, 0x5a, 0x5a, 0x5d, 0x62, 0x64, 0x61, 0x5d, 0x60, 0x5e, 0x5c, 0x5c, 0x5e, 0x61, 0x62, 0x62, 0x5e, 0x59, 0x5d, 0x64, 0x64, 0x64, 0x66, 0x64, 0x62, 0x63, 0x62, 0x5f, 0x5d, 0x61, 0x6c, 0x77, 0x78, 0x75, 0x70, 0x6b, 0x69, 0x69, 0x6c, 0x6e, 0x6e, 0x66, 0x68, 0x6c, 0x6a, 0x6f, 0x73, 0x6d, 0x6c, 0x68, 0x63, 0x5d, 0x56, 0x4f, 0x46, 0x40, 0x45, 0x42, 0x3f, 0x3f, 0x3e, 0x3c, 0x3c, 0x3d, 0x45, 0x46, 0x47, 0x47, 0x48, 0x49, 0x4c, 0x4e, 0x4e, 0x4e, 0x4f, 0x50, 0x51, 0x51, 0x51, 0x51, 0x50, 0x4f, 0x4f, 0x4e, 0x4d, 0x4d, 0x4d, 0x4d, 0x53, 0x4b, 0x46, 0x47, 0x49, 0x49, 0x49, 0x49, 0x65, 0x82, 0xa0, 0xad, 0xb1, 0xb4, 0xb6, 0xb4, 0xb1, 0xb0, 0xaf, 0xad, 0xaa, 0xa8, 0xa6, 0xa5, 0xa5, 0xa3, 0xa0, 0x9e, 0xa2, 0xa9, 0xab, 0xaa, 0xa8, 0xa9, 0xab, 0xaa, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa3, 0xa0, 0x9e, 0x9e, 0x9f, 0x9f, 0x9f, 0x9d, 0xa0, 0x9e, 0x96, 0x8e, 0x8b, 0x8a, 0x89, 0x79, 0x88, 0xa9, 0xbf, 0xbe, 0xbd, 0xc3, 0xc2, 0xc2, 0xc1, 0xc2, 0xc3, 0xc3, 0xc4, 0xc6, 0xc8, 0xc7, 0xc6, 0xc3, 0xbd, 0xb9, 0xb8, 0xb7, 0xb5, 0xb3, 0xae, 0xa5, 0x9c, 0x9a, 0x9b, 0x99, 0x95, 0x99, 0x9b, 0x9d, 0x9d, 0x9c, 0x9e, 0xa2, 0xa6, 0xb4, 0xb9, 0xc0, 0xc5, 0xc7, 0xc7, 0xc7, 0xc7, 0xca, 0xcc, 0xc4, 0xb8, 0xac, 0x9f, 0x9c, 0xa4, 0xa7, 0xa7, 0xa8, 0xab, 0xae, 0xaf, 0xae, 0xac, 0xac, 0xb5, 0xb8, 0xb9, 0xbc, 0xc3, 0xc3, 0xb3, 0x72, 0x39, 0x44, 0x32, 0x61, 0xd7, 0xe0, 0xea, 0xe4, 0x9a, 0x7a, 0xbf, 0xce, 0xdb, 0xe7, 0xe8, 0xe4, 0xe5, 0xe5, 0xe5, 0xe4, 0xe4, 0xe6, 0xe7, 0xa6, 0x95, 0xcb, 0x6f, 0x5a, 0xb4, 0xd5, 0xc8, 0xd2, 0xd6, 0xd8, 0xd5, 0xd2, 0xd2, 0xd5, 0xd6, 0xdb, 0xbc, 0x98, 0x9e, 0x99, 0x9c, 0x9e, 0x9e, 0xa0, 0x9d, 0x9c, 0x9d, 0x9d, 0x9b, 0x9d, 0xa1, 0x8b, 0x82, 0xe9, 0xeb, 0xbc, 0xb3, 0xc4, 0xb8, 0xca, 0xe3, 0xd6, 0xbc, 0xbf, 0xc6, 0xd3, 0xaf, 0x83, 0x9d, 0x95, 0x98, 0x8f, 0x8e, 0x8f, 0x92, 0x91, 0x8c, 0x9d, 0xcf, 0xd2, 0xc9, 0xc8, 0xc9, 0xc0, 0xb1, 0xba, 0xa3, 0x6e, 0x83, 0x99, 0x7c, 0x4b, 0x46, 0x44, 0x44, 0x43, 0x42, 0x43, 0x43, 0x3d, 0x40, 0x49, 0x5b, 0x72, 0x82, 0x81, 0x79, 0x79, 0x78, 0x77, 0x78, 0x7c, 0x7d, 0x76, 0x6c, 0x78, 0x77, 0x79, 0x7e, 0x7d, 0x78, 0x73, 0x72, 0x61, 0x61, 0x66, 0x6f, 0x74, 0x74, 0x72, 0x72, 0x6b, 0x72, 0x7a, 0x7e, 0x7e, 0x7b, 0x7a, 0x7a, 0x76, 0x78, 0x7c, 0x7d, 0x78, 0x6e, 0x67, 0x65, 0x64, 0x5f, 0x5e, 0x61, 0x5f, 0x59, 0x5b, 0x64, 0x71, 0x6a, 0x61, 0x62, 0x6b, 0x74, 0x73, 0x6c, 0x63, 0x5b, 0x57, 0x5f, 0x6c, 0x6c, 0x5b, 0x49, 0x55, 0x5a, 0x59, 0x53, 0x4b, 0x3e, 0x37, 0x3b, 0x43, 0x4e, 0x5c, 0x63, 0x61, 0x5c, 0x5a, 0x5b, 0x5c, 0x58, 0x56, 0x58, 0x61, 0x6c, 0x75, 0x7b, 0x83, 0x8b, 0x95, 0x9d, 0x9e, 0x95, 0x81, 0x70, 0x66, 0x53, 0x3e, 0x34, 0x34, 0x35, 0x30, 0x2a, 0x26, 0x3d, 0x50, 0x52, 0x56, 0x62, 0x67, 0x64, 0x87, 0x7c, 0x72, 0x72, 0x76, 0x76, 0x71, 0x6e, 0x5b, 0x54, 0x51, 0x5e, 0x79, 0x90, 0x97, 0x94, 0x9b, 0x96, 0x84, 0x75, 0x76, 0x7d, 0x84, 0x8c, 0x8d, 0x88, 0x79, 0x67, 0x5c, 0x58, 0x53, 0x4c, 0x48, 0x36, 0x23, 0x1f, 0x28, 0x2f, 0x2d, 0x27, 0x1f, 0x21, 0x21, 0x22, 0x24, 0x27, 0x26, 0x24, 0x1e, 0x21, 0x1f, 0x1a, 0x1e, 0x2c, 0x3d, 0x46, 0x58, 0x48, 0x2f, 0x1b, 0x1a, 0x28, 0x36, 0x3c, 0x3e, 0x46, 0x37, 0x1f, 0x2d, 0x5c, 0x78, 0x74, 0x59, 0x51, 0x57, 0x6f, 0x81, 0x76, 0x53, 0x36, 0x50, 0x57, 0x5e, 0x62, 0x66, 0x6b, 0x6c, 0x69, 0x61, 0x5e, 0x58, 0x54, 0x58, 0x60, 0x62, 0x60, 0x59, 0x5c, 0x5e, 0x5f, 0x64, 0x6f, 0x7b, 0x81, 0x7b, 0x6d, 0x62, 0x62, 0x66, 0x64, 0x5f, 0x5b, 0x60, 0x5c, 0x5a, 0x5d, 0x62, 0x66, 0x64, 0x61, 0x57, 0x54, 0x6f, 0x74, 0x76, 0x75, 0x5e, 0x62, 0x64, 0x6e, 0x72, 0x6b, 0x66, 0x6d, 0x7a, 0x84, 0x82, 0x86, 0x7f, 0x80, 0x7e, 0x7c, 0x7f, 0x79, 0x72, 0x77, 0x77, 0x73, 0x70, 0x71, 0x6e, 0x68, 0x62, 0x5f, 0x60, 0x64, 0x63, 0x60, 0x63, 0x6a, 0x63, 0x5a, 0x50, 0x4b, 0x4d, 0x50, 0x51, 0x50, 0x59, 0x51, 0x53, 0x62, 0x68, 0x5d, 0x4e, 0x48, 0x45, 0x48, 0x4b, 0x4d, 0x51, 0x53, 0x50, 0x4b, 0x4e, 0x51, 0x55, 0x57, 0x5b, 0x5d, 0x5b, 0x57, 0x55, 0x53, 0x52, 0x53, 0x52, 0x50, 0x50, 0x52, 0x55, 0x5d, 0x65, 0x65, 0x5f, 0x5c, 0x60, 0x66, 0x68, 0x64, 0x5f, 0x5d, 0x5d, 0x5f, 0x60, 0x61, 0x5c, 0x58, 0x5c, 0x61, 0x5e, 0x5d, 0x60, 0x60, 0x5e, 0x61, 0x61, 0x5c, 0x59, 0x5f, 0x6d, 0x78, 0x7a, 0x78, 0x73, 0x6c, 0x69, 0x6c, 0x6d, 0x6c, 0x72, 0x68, 0x6a, 0x6e, 0x6c, 0x75, 0x80, 0x7f, 0x6e, 0x6c, 0x6a, 0x68, 0x65, 0x5e, 0x54, 0x4d, 0x48, 0x45, 0x43, 0x43, 0x42, 0x40, 0x3f, 0x40, 0x45, 0x46, 0x48, 0x48, 0x49, 0x4a, 0x4d, 0x4f, 0x55, 0x55, 0x55, 0x55, 0x55, 0x54, 0x54, 0x53, 0x52, 0x52, 0x51, 0x50, 0x4f, 0x4d, 0x4c, 0x4b, 0x4a, 0x4c, 0x4e, 0x4c, 0x47, 0x45, 0x49, 0x4d, 0x46, 0x57, 0x73, 0x8f, 0xa4, 0xb0, 0xb4, 0xb5, 0xb4, 0xb4, 0xb2, 0xae, 0xab, 0xa9, 0xa8, 0xa8, 0xa4, 0xa3, 0x9f, 0x9d, 0xa1, 0xa8, 0xaa, 0xa8, 0xa9, 0xab, 0xad, 0xad, 0xac, 0xab, 0xaa, 0xaa, 0xa5, 0xa4, 0xa4, 0xa3, 0xa2, 0x9f, 0x9b, 0x98, 0x9f, 0xa0, 0x9e, 0x99, 0x96, 0x91, 0x85, 0x7a, 0x78, 0x8d, 0xab, 0xb5, 0xae, 0xb4, 0xbf, 0xba, 0xbb, 0xbd, 0xc1, 0xc5, 0xc6, 0xc5, 0xc5, 0xc7, 0xc8, 0xc8, 0xc5, 0xbf, 0xba, 0xb7, 0xb4, 0xb1, 0xad, 0xaa, 0xa3, 0x9a, 0x98, 0x9b, 0x9b, 0x99, 0x98, 0x9a, 0x9c, 0x9d, 0x9e, 0xa2, 0xa8, 0xad, 0xb4, 0xbb, 0xc3, 0xc9, 0xcc, 0xcc, 0xcc, 0xcc, 0xc6, 0xc9, 0xc4, 0xbb, 0xb1, 0xa4, 0x9f, 0xa6, 0xb3, 0xb2, 0xae, 0xa8, 0xa8, 0xad, 0xb1, 0xb2, 0xb2, 0xbb, 0xb3, 0xbb, 0xbd, 0xc6, 0xc0, 0x7b, 0x36, 0x50, 0x6a, 0x4c, 0x82, 0xe0, 0xe1, 0xdc, 0xe3, 0xca, 0x5d, 0xc0, 0xe3, 0xe9, 0xea, 0xe2, 0xe3, 0xe4, 0xe5, 0xe5, 0xe4, 0xe4, 0xe5, 0xe7, 0xd5, 0xd6, 0xc1, 0x48, 0x76, 0xcb, 0xcc, 0xc5, 0xd0, 0xd6, 0xd9, 0xd6, 0xd1, 0xd1, 0xd4, 0xd7, 0xdd, 0xbd, 0x98, 0x9e, 0x98, 0x9b, 0x9d, 0x9d, 0x9d, 0x9a, 0x9b, 0x9d, 0x9d, 0x9a, 0x9b, 0x9f, 0x91, 0x7d, 0xe2, 0xb8, 0x5d, 0x78, 0xb8, 0xa1, 0x6e, 0x8d, 0xdd, 0xd4, 0x71, 0x80, 0xe0, 0xb2, 0x89, 0x9a, 0x8a, 0x95, 0x90, 0x8d, 0x8d, 0x96, 0x8e, 0x8b, 0x9e, 0xd2, 0xd2, 0xc9, 0xc9, 0xcd, 0xb9, 0xb8, 0xaa, 0xb1, 0x86, 0x91, 0xa7, 0x6a, 0x44, 0x48, 0x45, 0x41, 0x43, 0x43, 0x42, 0x44, 0x47, 0x56, 0x67, 0x73, 0x78, 0x79, 0x74, 0x6e, 0x6b, 0x70, 0x74, 0x73, 0x74, 0x77, 0x78, 0x75, 0x78, 0x71, 0x6d, 0x74, 0x85, 0x8d, 0x85, 0x78, 0x69, 0x66, 0x65, 0x6a, 0x6e, 0x6e, 0x6c, 0x6c, 0x77, 0x78, 0x7a, 0x7e, 0x81, 0x7f, 0x77, 0x70, 0x7b, 0x76, 0x73, 0x76, 0x79, 0x76, 0x6f, 0x6b, 0x66, 0x62, 0x66, 0x69, 0x62, 0x5e, 0x60, 0x62, 0x6f, 0x61, 0x50, 0x4d, 0x5b, 0x6a, 0x6f, 0x6c, 0x63, 0x56, 0x5b, 0x6e, 0x68, 0x49, 0x3b, 0x44, 0x40, 0x4a, 0x4d, 0x49, 0x40, 0x36, 0x36, 0x41, 0x47, 0x48, 0x4b, 0x52, 0x5d, 0x63, 0x5d, 0x54, 0x53, 0x58, 0x63, 0x71, 0x7e, 0x84, 0x84, 0x82, 0x79, 0x83, 0x8f, 0x97, 0x9c, 0x9d, 0x9a, 0x96, 0x8d, 0x81, 0x6f, 0x5c, 0x48, 0x37, 0x2c, 0x27, 0x24, 0x2d, 0x3e, 0x4e, 0x55, 0x56, 0x5b, 0x63, 0x5a, 0x61, 0x6b, 0x70, 0x69, 0x58, 0x49, 0x41, 0x38, 0x40, 0x5f, 0x89, 0x98, 0x8f, 0x8e, 0x9b, 0x96, 0x9d, 0x9d, 0x99, 0x96, 0x8a, 0x7c, 0x77, 0x75, 0x80, 0x8c, 0x89, 0x75, 0x5f, 0x59, 0x60, 0x4e, 0x3b, 0x2f, 0x33, 0x34, 0x2d, 0x28, 0x2c, 0x35, 0x3c, 0x42, 0x45, 0x4b, 0x52, 0x52, 0x4d, 0x46, 0x40, 0x3e, 0x42, 0x3f, 0x3c, 0x45, 0x53, 0x53, 0x57, 0x60, 0x6b, 0x6c, 0x5b, 0x3f, 0x29, 0x41, 0x49, 0x54, 0x5b, 0x5d, 0x5a, 0x55, 0x51, 0x63, 0x55, 0x5a, 0x69, 0x5d, 0x3c, 0x33, 0x43, 0x5b, 0x56, 0x52, 0x54, 0x5b, 0x64, 0x6a, 0x6c, 0x67, 0x65, 0x61, 0x5f, 0x5e, 0x5e, 0x5e, 0x5e, 0x60, 0x5e, 0x61, 0x6d, 0x7c, 0x7e, 0x6f, 0x5d, 0x4e, 0x53, 0x5a, 0x60, 0x62, 0x62, 0x60, 0x5e, 0x65, 0x5f, 0x5a, 0x5d, 0x6a, 0x76, 0x74, 0x6b, 0x5b, 0x60, 0x63, 0x72, 0x72, 0x78, 0x72, 0x73, 0x74, 0x7c, 0x7c, 0x72, 0x6a, 0x6e, 0x77, 0x7b, 0x7c, 0x83, 0x8b, 0x91, 0x93, 0x8a, 0x75, 0x61, 0x64, 0x6a, 0x6e, 0x6f, 0x6e, 0x6f, 0x6f, 0x6e, 0x66, 0x5f, 0x60, 0x61, 0x5d, 0x5d, 0x62, 0x64, 0x6a, 0x64, 0x59, 0x4d, 0x49, 0x4d, 0x50, 0x4f, 0x56, 0x50, 0x4d, 0x53, 0x5b, 0x5b, 0x52, 0x49, 0x4a, 0x4b, 0x51, 0x54, 0x53, 0x55, 0x52, 0x47, 0x4d, 0x52, 0x54, 0x52, 0x56, 0x5e, 0x5d, 0x56, 0x52, 0x52, 0x57, 0x5b, 0x59, 0x53, 0x53, 0x57, 0x5a, 0x64, 0x6a, 0x63, 0x54, 0x4d, 0x55, 0x60, 0x68, 0x61, 0x58, 0x54, 0x54, 0x56, 0x5b, 0x60, 0x61, 0x65, 0x60, 0x5f, 0x5c, 0x57, 0x5d, 0x5b, 0x5e, 0x5a, 0x57, 0x57, 0x58, 0x5a, 0x61, 0x67, 0x6b, 0x68, 0x66, 0x66, 0x64, 0x63, 0x65, 0x69, 0x69, 0x66, 0x65, 0x69, 0x71, 0x78, 0x7b, 0x7b, 0x60, 0x61, 0x5f, 0x5b, 0x5b, 0x5f, 0x65, 0x69, 0x58, 0x4f, 0x47, 0x43, 0x3f, 0x3a, 0x3c, 0x42, 0x48, 0x48, 0x4a, 0x4e, 0x52, 0x54, 0x53, 0x51, 0x58, 0x59, 0x59, 0x5a, 0x5a, 0x5a, 0x59, 0x59, 0x59, 0x58, 0x57, 0x56, 0x54, 0x52, 0x51, 0x51, 0x4f, 0x4e, 0x4e, 0x4d, 0x4d, 0x4b, 0x49, 0x47, 0x48, 0x49, 0x4f, 0x5c, 0x71, 0x8a, 0xa2, 0xaf, 0xaf, 0xb4, 0xb5, 0xb0, 0xab, 0xaa, 0xa9, 0xa8, 0xa8, 0xa4, 0xa0, 0x9f, 0xa0, 0xa4, 0xaa, 0xb0, 0xa7, 0xa6, 0xa7, 0xaa, 0xae, 0xb0, 0xaf, 0xad, 0xa7, 0xa6, 0xa4, 0xa1, 0x9f, 0x9d, 0x9c, 0x9b, 0x9d, 0x9b, 0x9d, 0x99, 0x93, 0x95, 0x88, 0x6a, 0x7e, 0x93, 0xa3, 0xa8, 0xaa, 0xaa, 0xae, 0xb8, 0xb4, 0xbb, 0xc3, 0xcb, 0xd1, 0xd4, 0xd1, 0xcc, 0xc9, 0xcb, 0xc8, 0xbf, 0xb8, 0xb6, 0xb4, 0xb1, 0xa9, 0xa4, 0x9d, 0x9a, 0x9b, 0x9c, 0x9b, 0x9a, 0x97, 0x99, 0x9c, 0x9f, 0xa2, 0xa7, 0xac, 0xb0, 0xb5, 0xb8, 0xbd, 0xc1, 0xc5, 0xc8, 0xcc, 0xce, 0xcb, 0xc7, 0xc7, 0xc8, 0xbe, 0xb0, 0xad, 0xb4, 0xb8, 0xb8, 0xb8, 0xb4, 0xac, 0xa4, 0xa7, 0xae, 0xb5, 0xa8, 0xb9, 0xba, 0xb2, 0xc1, 0xcb, 0x79, 0x2a, 0x75, 0x8e, 0x52, 0xa2, 0xdc, 0xdd, 0xe1, 0xe7, 0xe1, 0x7e, 0x6c, 0xbd, 0xe0, 0xe3, 0xe5, 0xe4, 0xe3, 0xe4, 0xe4, 0xf2, 0xe3, 0xe7, 0xde, 0xea, 0xdb, 0x77, 0x49, 0xa1, 0xda, 0xc7, 0xca, 0xd6, 0xd7, 0xd6, 0xd3, 0xd3, 0xd5, 0xd6, 0xd5, 0xde, 0xbd, 0x9a, 0xa3, 0x9e, 0x9c, 0x9b, 0x99, 0x9a, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c, 0x9e, 0x9f, 0x98, 0x7a, 0xda, 0xa8, 0x48, 0x75, 0xcf, 0xa2, 0x71, 0x60, 0xa7, 0xd2, 0x75, 0x73, 0xce, 0xbf, 0x80, 0x96, 0x90, 0x91, 0x95, 0x8f, 0x94, 0x94, 0x90, 0x93, 0xa2, 0xce, 0xd1, 0xca, 0xc6, 0xc7, 0xca, 0xa9, 0xac, 0xaf, 0x97, 0x87, 0x96, 0x6b, 0x48, 0x47, 0x46, 0x44, 0x41, 0x42, 0x47, 0x4d, 0x5c, 0x76, 0x86, 0x7f, 0x79, 0x7c, 0x77, 0x6b, 0x68, 0x6f, 0x71, 0x6d, 0x6e, 0x78, 0x83, 0x88, 0x7d, 0x6b, 0x55, 0x65, 0x76, 0x92, 0x92, 0x93, 0x83, 0x6d, 0x60, 0x65, 0x69, 0x63, 0x60, 0x64, 0x6e, 0x72, 0x7a, 0x80, 0x7c, 0x73, 0x70, 0x74, 0x70, 0x6b, 0x6b, 0x71, 0x73, 0x70, 0x6d, 0x6e, 0x63, 0x64, 0x60, 0x5a, 0x59, 0x60, 0x68, 0x6c, 0x5d, 0x4f, 0x3f, 0x3d, 0x4b, 0x5b, 0x60, 0x5c, 0x59, 0x63, 0x6d, 0x6f, 0x5c, 0x59, 0x5d, 0x44, 0x1e, 0x32, 0x47, 0x46, 0x3b, 0x3e, 0x44, 0x41, 0x42, 0x3a, 0x3a, 0x46, 0x54, 0x58, 0x53, 0x4d, 0x52, 0x62, 0x6d, 0x76, 0x84, 0x89, 0x7f, 0x75, 0x75, 0x8a, 0x9b, 0x9c, 0x9c, 0xa0, 0x9a, 0x8e, 0x79, 0x73, 0x6e, 0x5c, 0x50, 0x4a, 0x3b, 0x36, 0x2b, 0x29, 0x2d, 0x3a, 0x4a, 0x52, 0x4f, 0x4a, 0x52, 0x4c, 0x4a, 0x4a, 0x45, 0x40, 0x4b, 0x5c, 0x6e, 0x75, 0x80, 0x87, 0x86, 0x85, 0x8c, 0x95, 0x99, 0x95, 0x98, 0x9c, 0x8d, 0x73, 0x6a, 0x70, 0x6e, 0x69, 0x6e, 0x7c, 0x83, 0x79, 0x68, 0x5d, 0x76, 0x8a, 0xa4, 0xb4, 0xb4, 0xae, 0xaa, 0xa9, 0xad, 0xaf, 0xb2, 0xb4, 0xb2, 0xac, 0xa7, 0xa4, 0x8c, 0x7b, 0x67, 0x5c, 0x58, 0x57, 0x55, 0x54, 0x58, 0x5d, 0x5e, 0x5b, 0x5d, 0x60, 0x5a, 0x4f, 0x74, 0x7f, 0x7d, 0x6e, 0x68, 0x6b, 0x62, 0x50, 0x46, 0x4d, 0x4d, 0x42, 0x36, 0x2f, 0x28, 0x20, 0x57, 0x58, 0x5b, 0x60, 0x65, 0x68, 0x68, 0x67, 0x69, 0x6e, 0x6f, 0x69, 0x5e, 0x58, 0x5a, 0x5f, 0x66, 0x6d, 0x73, 0x74, 0x6f, 0x66, 0x59, 0x4f, 0x4c, 0x4f, 0x53, 0x56, 0x58, 0x58, 0x56, 0x55, 0x59, 0x5c, 0x60, 0x65, 0x69, 0x69, 0x5f, 0x54, 0x4e, 0x55, 0x60, 0x78, 0x77, 0x74, 0x68, 0x6b, 0x69, 0x6f, 0x76, 0x76, 0x71, 0x6e, 0x73, 0x7a, 0x6e, 0x6a, 0x6b, 0x71, 0x75, 0x6f, 0x61, 0x56, 0x61, 0x66, 0x6b, 0x6e, 0x6f, 0x6f, 0x6c, 0x69, 0x65, 0x5c, 0x5c, 0x61, 0x60, 0x62, 0x6b, 0x71, 0x70, 0x67, 0x5f, 0x5b, 0x57, 0x52, 0x51, 0x52, 0x53, 0x4e, 0x47, 0x46, 0x4b, 0x51, 0x52, 0x50, 0x45, 0x44, 0x4a, 0x4f, 0x53, 0x57, 0x54, 0x49, 0x45, 0x4c, 0x52, 0x57, 0x5b, 0x5d, 0x56, 0x4d, 0x4b, 0x4f, 0x58, 0x5f, 0x5e, 0x58, 0x58, 0x5c, 0x6c, 0x62, 0x55, 0x4d, 0x49, 0x4a, 0x4e, 0x51, 0x53, 0x58, 0x5f, 0x5f, 0x56, 0x50, 0x59, 0x67, 0x6c, 0x6c, 0x63, 0x65, 0x67, 0x65, 0x66, 0x5e, 0x5a, 0x59, 0x59, 0x5a, 0x5a, 0x5a, 0x5f, 0x65, 0x6f, 0x6e, 0x6c, 0x67, 0x63, 0x62, 0x67, 0x6f, 0x69, 0x67, 0x66, 0x69, 0x6e, 0x70, 0x6f, 0x6d, 0x62, 0x61, 0x5d, 0x58, 0x55, 0x56, 0x5a, 0x5c, 0x69, 0x63, 0x5a, 0x52, 0x4a, 0x44, 0x41, 0x42, 0x4c, 0x4c, 0x4e, 0x52, 0x56, 0x59, 0x5a, 0x59, 0x5c, 0x5c, 0x5d, 0x5e, 0x5e, 0x5e, 0x5d, 0x5c, 0x5c, 0x5b, 0x5a, 0x58, 0x56, 0x55, 0x54, 0x53, 0x51, 0x50, 0x4f, 0x4f, 0x4f, 0x4e, 0x4c, 0x4b, 0x4a, 0x4a, 0x4a, 0x4c, 0x51, 0x5c, 0x6a, 0x73, 0x8f, 0x9a, 0xa5, 0xa9, 0xaa, 0xad, 0xae, 0xad, 0xae, 0xae, 0xac, 0xa8, 0xa4, 0xa2, 0xa1, 0xa1, 0xa0, 0xa1, 0xa2, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa3, 0xa1, 0xa0, 0x9f, 0x9e, 0x9e, 0x9c, 0x99, 0x9b, 0x99, 0x92, 0x90, 0x82, 0x69, 0x7e, 0x92, 0xa0, 0xa3, 0xa3, 0xa2, 0xa7, 0xb2, 0xb9, 0xba, 0xbc, 0xc0, 0xc7, 0xce, 0xce, 0xca, 0xc7, 0xc8, 0xc5, 0xbe, 0xb8, 0xb5, 0xb2, 0xaf, 0xa2, 0x9e, 0x9a, 0x99, 0x9b, 0x9e, 0x9e, 0x9e, 0x9b, 0x9c, 0x9d, 0x9f, 0xa1, 0xa5, 0xaa, 0xad, 0xb7, 0xbb, 0xc0, 0xc6, 0xcb, 0xcf, 0xd1, 0xd3, 0xcf, 0xcc, 0xcd, 0xce, 0xc5, 0xb8, 0xb6, 0xbd, 0xbe, 0xbc, 0xbb, 0xb9, 0xb2, 0xac, 0xac, 0xb0, 0xad, 0xb0, 0xae, 0xb0, 0xc1, 0xba, 0xc3, 0xb9, 0x48, 0x46, 0x53, 0x46, 0xbb, 0xf1, 0xe6, 0xdd, 0xde, 0xe7, 0x9f, 0x45, 0x67, 0xf1, 0xee, 0xdd, 0xe7, 0xe5, 0xf1, 0xe3, 0xc7, 0xde, 0xe8, 0xe6, 0xe3, 0xa9, 0x52, 0x6f, 0xc1, 0xd5, 0xd0, 0xc3, 0xd6, 0xd7, 0xd6, 0xd3, 0xd3, 0xd6, 0xd7, 0xd6, 0xe0, 0xbe, 0x9a, 0xa2, 0x9d, 0x9b, 0x9a, 0x99, 0x9a, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c, 0x9d, 0x9e, 0x99, 0x7b, 0xd2, 0xaf, 0x58, 0x78, 0xd5, 0xa8, 0x7e, 0x77, 0x9f, 0xcc, 0x86, 0x7a, 0xb5, 0xbe, 0x7e, 0x95, 0x93, 0x94, 0x97, 0x91, 0x95, 0x93, 0x92, 0x93, 0x9f, 0xca, 0xcf, 0xca, 0xc7, 0xc8, 0xbf, 0xad, 0xab, 0xab, 0x9a, 0x74, 0x6f, 0x59, 0x40, 0x44, 0x47, 0x47, 0x44, 0x47, 0x50, 0x59, 0x6d, 0x77, 0x7e, 0x7e, 0x7d, 0x7b, 0x71, 0x65, 0x61, 0x68, 0x6e, 0x6f, 0x73, 0x7b, 0x82, 0x84, 0x7d, 0x71, 0x61, 0x6c, 0x73, 0x85, 0x84, 0x86, 0x86, 0x75, 0x62, 0x5a, 0x5c, 0x63, 0x69, 0x6d, 0x6d, 0x75, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x6e, 0x72, 0x6b, 0x66, 0x67, 0x6a, 0x6a, 0x69, 0x68, 0x63, 0x66, 0x69, 0x6f, 0x77, 0x7c, 0x77, 0x6e, 0x5c, 0x40, 0x29, 0x2e, 0x43, 0x53, 0x5c, 0x61, 0x65, 0x63, 0x66, 0x6d, 0x67, 0x63, 0x57, 0x31, 0x23, 0x36, 0x51, 0x5c, 0x58, 0x57, 0x54, 0x4c, 0x37, 0x33, 0x2d, 0x2e, 0x38, 0x42, 0x43, 0x3f, 0x3e, 0x50, 0x5f, 0x6a, 0x77, 0x7c, 0x79, 0x78, 0x6c, 0x73, 0x7f, 0x85, 0x85, 0x8a, 0x8f, 0x8b, 0x8c, 0x72, 0x5a, 0x45, 0x44, 0x4c, 0x46, 0x45, 0x3a, 0x35, 0x33, 0x38, 0x3e, 0x40, 0x40, 0x41, 0x3c, 0x48, 0x51, 0x4e, 0x4b, 0x50, 0x5c, 0x64, 0x67, 0x67, 0x68, 0x67, 0x64, 0x66, 0x6f, 0x7a, 0x79, 0x70, 0x68, 0x6a, 0x6f, 0x70, 0x6f, 0x6f, 0x6d, 0x66, 0x64, 0x6a, 0x74, 0x81, 0x93, 0xa3, 0x8e, 0x99, 0xa5, 0xa8, 0xa1, 0x98, 0x92, 0x90, 0x9a, 0x9e, 0xa5, 0xad, 0xb4, 0xb8, 0xbc, 0xbe, 0xb1, 0xac, 0x9d, 0x87, 0x72, 0x62, 0x50, 0x43, 0x3a, 0x3a, 0x3d, 0x43, 0x4a, 0x53, 0x5e, 0x66, 0x5f, 0x5c, 0x57, 0x50, 0x48, 0x41, 0x3e, 0x3f, 0x42, 0x3d, 0x36, 0x30, 0x28, 0x20, 0x19, 0x15, 0x5c, 0x60, 0x65, 0x69, 0x6b, 0x6c, 0x6c, 0x6c, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x6f, 0x6d, 0x6c, 0x74, 0x78, 0x77, 0x6c, 0x5d, 0x54, 0x50, 0x4f, 0x43, 0x46, 0x4b, 0x4e, 0x51, 0x52, 0x54, 0x56, 0x5b, 0x5f, 0x63, 0x62, 0x5f, 0x5b, 0x57, 0x52, 0x58, 0x5c, 0x5e, 0x71, 0x73, 0x76, 0x68, 0x63, 0x5a, 0x5f, 0x6c, 0x78, 0x78, 0x72, 0x73, 0x7b, 0x72, 0x6a, 0x6a, 0x76, 0x7c, 0x73, 0x64, 0x5b, 0x57, 0x5d, 0x64, 0x68, 0x6c, 0x6e, 0x6a, 0x65, 0x6a, 0x5c, 0x5a, 0x62, 0x63, 0x65, 0x6d, 0x73, 0x70, 0x66, 0x61, 0x65, 0x62, 0x58, 0x53, 0x56, 0x51, 0x51, 0x4e, 0x48, 0x48, 0x4d, 0x4e, 0x4c, 0x4b, 0x47, 0x4a, 0x50, 0x55, 0x5c, 0x5b, 0x51, 0x4f, 0x50, 0x53, 0x57, 0x5a, 0x59, 0x54, 0x50, 0x4c, 0x4b, 0x4f, 0x59, 0x5d, 0x5c, 0x5d, 0x60, 0x56, 0x4a, 0x41, 0x46, 0x4f, 0x51, 0x4b, 0x44, 0x53, 0x51, 0x4f, 0x4e, 0x4d, 0x52, 0x5e, 0x6b, 0x62, 0x62, 0x5b, 0x63, 0x6d, 0x6e, 0x6d, 0x5f, 0x4b, 0x54, 0x62, 0x6c, 0x6b, 0x63, 0x5b, 0x59, 0x61, 0x64, 0x68, 0x6a, 0x6d, 0x6f, 0x70, 0x71, 0x63, 0x64, 0x67, 0x6b, 0x6f, 0x70, 0x6d, 0x6b, 0x68, 0x65, 0x60, 0x5b, 0x56, 0x55, 0x57, 0x59, 0x5d, 0x63, 0x68, 0x69, 0x65, 0x5f, 0x55, 0x4d, 0x4e, 0x4e, 0x50, 0x54, 0x59, 0x5d, 0x5f, 0x5f, 0x61, 0x62, 0x63, 0x63, 0x63, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5c, 0x5a, 0x58, 0x57, 0x56, 0x54, 0x53, 0x51, 0x51, 0x51, 0x51, 0x51, 0x50, 0x50, 0x50, 0x4f, 0x4b, 0x47, 0x48, 0x4e, 0x53, 0x67, 0x78, 0x8d, 0x9c, 0xa3, 0xa8, 0xab, 0xac, 0xa7, 0xac, 0xad, 0xa7, 0xa3, 0xa3, 0xa4, 0xa3, 0xa1, 0xa2, 0xa2, 0xa0, 0x9d, 0x9d, 0x9f, 0xa2, 0xa3, 0xa3, 0xa2, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0x9c, 0x96, 0x98, 0x9a, 0x93, 0x89, 0x7b, 0x6b, 0x81, 0x93, 0x9f, 0xa0, 0xa0, 0xa0, 0xa6, 0xb0, 0xbe, 0xbd, 0xbc, 0xbf, 0xc7, 0xce, 0xce, 0xca, 0xc4, 0xc4, 0xc1, 0xbb, 0xb7, 0xb4, 0xaf, 0xaa, 0x9d, 0x9b, 0x98, 0x99, 0x9c, 0x9f, 0xa0, 0xa0, 0x9e, 0x9f, 0x9f, 0xa0, 0xa3, 0xa7, 0xac, 0xb0, 0xb5, 0xb8, 0xbd, 0xc4, 0xcb, 0xd0, 0xd3, 0xd4, 0xd2, 0xd0, 0xd2, 0xd4, 0xcd, 0xc2, 0xc1, 0xc8, 0xc5, 0xc1, 0xbf, 0xbd, 0xba, 0xb5, 0xb1, 0xb0, 0xb0, 0xb7, 0xb9, 0xb4, 0xba, 0xbb, 0xc0, 0xab, 0x59, 0x35, 0x3c, 0x4e, 0xcb, 0xe2, 0xde, 0xe4, 0xe1, 0xe4, 0xda, 0x54, 0x5d, 0xd6, 0xde, 0xe9, 0xdf, 0xda, 0xe8, 0xc3, 0x79, 0xc6, 0xe6, 0xe2, 0xca, 0x6a, 0x4b, 0x9b, 0xd2, 0xcc, 0xca, 0xc4, 0xd5, 0xd7, 0xd6, 0xd4, 0xd4, 0xd6, 0xd7, 0xd6, 0xdf, 0xbd, 0x98, 0xa0, 0x9b, 0x9b, 0x9c, 0x9c, 0x9b, 0x9c, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9d, 0x99, 0x78, 0xba, 0xae, 0x65, 0x76, 0xd9, 0xb2, 0x7e, 0x85, 0x89, 0xbb, 0x8f, 0x7e, 0x91, 0xb9, 0x7d, 0x94, 0x97, 0x96, 0x97, 0x94, 0x96, 0x92, 0x95, 0x93, 0x9b, 0xc6, 0xcd, 0xca, 0xc8, 0xc9, 0xb8, 0xb6, 0xae, 0xac, 0xa1, 0x68, 0x4c, 0x4c, 0x57, 0x4d, 0x44, 0x45, 0x51, 0x5f, 0x67, 0x6a, 0x74, 0x76, 0x79, 0x7d, 0x7c, 0x75, 0x6b, 0x64, 0x5d, 0x63, 0x6b, 0x72, 0x79, 0x7f, 0x81, 0x80, 0x80, 0x79, 0x70, 0x75, 0x75, 0x7c, 0x7a, 0x7d, 0x80, 0x82, 0x7d, 0x74, 0x75, 0x7c, 0x7a, 0x70, 0x6f, 0x75, 0x74, 0x6e, 0x77, 0x89, 0x8c, 0x82, 0x67, 0x6a, 0x6c, 0x6c, 0x6c, 0x6b, 0x67, 0x63, 0x6c, 0x6a, 0x69, 0x6c, 0x74, 0x79, 0x78, 0x72, 0x5d, 0x3a, 0x21, 0x25, 0x32, 0x3b, 0x4a, 0x5c, 0x5a, 0x64, 0x71, 0x79, 0x6c, 0x5c, 0x4e, 0x2e, 0x2d, 0x2f, 0x38, 0x3e, 0x39, 0x34, 0x2f, 0x27, 0x31, 0x32, 0x2d, 0x29, 0x2f, 0x39, 0x3c, 0x37, 0x41, 0x46, 0x4c, 0x59, 0x69, 0x69, 0x5b, 0x52, 0x43, 0x3b, 0x4b, 0x6a, 0x7d, 0x81, 0x70, 0x54, 0x32, 0x27, 0x27, 0x28, 0x33, 0x41, 0x44, 0x4b, 0x3d, 0x36, 0x33, 0x35, 0x35, 0x32, 0x35, 0x3c, 0x39, 0x4e, 0x56, 0x4b, 0x48, 0x53, 0x53, 0x47, 0x45, 0x4a, 0x53, 0x58, 0x57, 0x53, 0x51, 0x53, 0x5b, 0x62, 0x66, 0x66, 0x69, 0x6c, 0x67, 0x5d, 0x57, 0x5b, 0x6f, 0x91, 0xaa, 0xac, 0x9d, 0x8f, 0x95, 0x8e, 0x82, 0x78, 0x76, 0x80, 0x91, 0x9f, 0x9b, 0x9f, 0xa5, 0xab, 0xae, 0xaf, 0xae, 0xac, 0xbd, 0xbd, 0xb2, 0xa1, 0x94, 0x89, 0x74, 0x5f, 0x4e, 0x3c, 0x2f, 0x2f, 0x30, 0x30, 0x3b, 0x4b, 0x4d, 0x4b, 0x4b, 0x4b, 0x43, 0x3a, 0x3c, 0x45, 0x44, 0x39, 0x30, 0x2b, 0x24, 0x1b, 0x1a, 0x20, 0x54, 0x5b, 0x63, 0x66, 0x65, 0x63, 0x62, 0x63, 0x67, 0x66, 0x68, 0x6f, 0x77, 0x7a, 0x75, 0x6f, 0x72, 0x71, 0x6b, 0x63, 0x5b, 0x57, 0x53, 0x50, 0x41, 0x47, 0x4e, 0x51, 0x50, 0x52, 0x57, 0x5c, 0x64, 0x66, 0x65, 0x5f, 0x59, 0x55, 0x54, 0x55, 0x51, 0x57, 0x59, 0x6b, 0x7b, 0x8e, 0x7f, 0x6d, 0x5d, 0x60, 0x6a, 0x74, 0x78, 0x75, 0x72, 0x72, 0x76, 0x6f, 0x6e, 0x77, 0x81, 0x7d, 0x6e, 0x61, 0x5d, 0x63, 0x6a, 0x6d, 0x6e, 0x6f, 0x6d, 0x6a, 0x69, 0x58, 0x56, 0x62, 0x66, 0x65, 0x68, 0x6a, 0x6a, 0x61, 0x5d, 0x5f, 0x5d, 0x55, 0x4f, 0x50, 0x4e, 0x51, 0x4e, 0x48, 0x48, 0x4f, 0x51, 0x4f, 0x4b, 0x45, 0x44, 0x46, 0x47, 0x4d, 0x50, 0x4b, 0x4e, 0x4c, 0x4f, 0x55, 0x59, 0x56, 0x53, 0x51, 0x48, 0x49, 0x52, 0x63, 0x6c, 0x66, 0x59, 0x51, 0x50, 0x4c, 0x4f, 0x5b, 0x64, 0x60, 0x56, 0x4e, 0x51, 0x51, 0x51, 0x52, 0x57, 0x5b, 0x58, 0x52, 0x4e, 0x53, 0x50, 0x59, 0x63, 0x66, 0x65, 0x57, 0x55, 0x55, 0x58, 0x5d, 0x5f, 0x5f, 0x60, 0x62, 0x6b, 0x6b, 0x6a, 0x6b, 0x6e, 0x70, 0x69, 0x60, 0x5e, 0x61, 0x65, 0x6a, 0x6e, 0x6f, 0x6e, 0x6c, 0x6c, 0x68, 0x63, 0x60, 0x5d, 0x5b, 0x5d, 0x60, 0x59, 0x64, 0x6d, 0x71, 0x71, 0x70, 0x67, 0x5d, 0x50, 0x51, 0x53, 0x57, 0x5b, 0x5f, 0x62, 0x64, 0x66, 0x66, 0x67, 0x68, 0x67, 0x67, 0x66, 0x65, 0x63, 0x62, 0x61, 0x5f, 0x5e, 0x5c, 0x5b, 0x5a, 0x58, 0x56, 0x54, 0x53, 0x53, 0x54, 0x53, 0x53, 0x4c, 0x4d, 0x4e, 0x4d, 0x4b, 0x4b, 0x4c, 0x4e, 0x45, 0x51, 0x63, 0x72, 0x81, 0x92, 0xa4, 0xb0, 0xa9, 0xaf, 0xb0, 0xa7, 0xa2, 0xa4, 0xa7, 0xa6, 0xa6, 0xa5, 0xa4, 0xa1, 0x9e, 0x9d, 0x9f, 0xa1, 0xa1, 0xa0, 0xa0, 0xa0, 0xa0, 0xa1, 0xa1, 0xa1, 0x9e, 0x97, 0x97, 0x9b, 0x94, 0x82, 0x74, 0x6e, 0x83, 0x92, 0x9b, 0x9d, 0xa2, 0xa4, 0xa7, 0xae, 0xb9, 0xbe, 0xc4, 0xca, 0xd0, 0xd2, 0xce, 0xc9, 0xc2, 0xc0, 0xbc, 0xb8, 0xb4, 0xaf, 0xa9, 0xa4, 0x9d, 0x9b, 0x9a, 0x9a, 0x9d, 0x9f, 0xa0, 0xa0, 0x9f, 0x9f, 0xa0, 0xa2, 0xa5, 0xab, 0xb2, 0xb7, 0xb1, 0xb2, 0xb5, 0xbb, 0xc3, 0xca, 0xce, 0xd0, 0xd3, 0xd3, 0xd6, 0xd8, 0xd2, 0xc9, 0xc9, 0xce, 0xcd, 0xc9, 0xc5, 0xc4, 0xc3, 0xbf, 0xb9, 0xb4, 0xba, 0xbc, 0xc3, 0xbd, 0xb9, 0xbf, 0x9e, 0x54, 0x42, 0x4c, 0x42, 0x5e, 0xe2, 0xe8, 0xe6, 0xe6, 0xde, 0xe4, 0xbc, 0x34, 0x48, 0xc5, 0xea, 0xe5, 0xef, 0xea, 0xec, 0xae, 0x4e, 0xb1, 0xed, 0xd6, 0x85, 0x45, 0x7c, 0xc1, 0xcf, 0xcc, 0xbb, 0xcb, 0xd4, 0xd6, 0xd6, 0xd4, 0xd4, 0xd7, 0xd8, 0xd7, 0xdb, 0xb9, 0x95, 0x9e, 0x9a, 0x9c, 0x9f, 0xa0, 0x9d, 0x9d, 0x9e, 0x9d, 0x9d, 0x9c, 0x9d, 0x9d, 0x9d, 0x77, 0x9e, 0xa8, 0x6a, 0x6e, 0xd8, 0xbe, 0x78, 0x88, 0x79, 0xaf, 0x8d, 0x84, 0x7f, 0xb7, 0x7f, 0x91, 0x99, 0x96, 0x94, 0x95, 0x96, 0x92, 0x95, 0x91, 0x99, 0xc4, 0xcd, 0xcb, 0xc8, 0xc8, 0xba, 0xbb, 0xb0, 0xae, 0xa5, 0x6f, 0x48, 0x4d, 0x41, 0x41, 0x47, 0x59, 0x6f, 0x7b, 0x76, 0x6b, 0x6d, 0x75, 0x7e, 0x80, 0x7b, 0x74, 0x6e, 0x6c, 0x61, 0x62, 0x68, 0x72, 0x7c, 0x81, 0x81, 0x80, 0x7d, 0x75, 0x6f, 0x72, 0x75, 0x77, 0x75, 0x74, 0x74, 0x7c, 0x7b, 0x72, 0x72, 0x7a, 0x7a, 0x71, 0x6f, 0x73, 0x6f, 0x69, 0x71, 0x84, 0x8a, 0x83, 0x71, 0x76, 0x75, 0x6c, 0x64, 0x65, 0x66, 0x64, 0x64, 0x69, 0x6f, 0x72, 0x73, 0x75, 0x78, 0x7b, 0x65, 0x50, 0x3f, 0x38, 0x30, 0x2c, 0x3f, 0x59, 0x6c, 0x68, 0x65, 0x70, 0x75, 0x71, 0x63, 0x42, 0x2d, 0x33, 0x3d, 0x37, 0x24, 0x28, 0x48, 0x65, 0x6d, 0x5e, 0x48, 0x37, 0x2f, 0x30, 0x33, 0x34, 0x39, 0x39, 0x3b, 0x48, 0x58, 0x55, 0x46, 0x3f, 0x36, 0x2d, 0x38, 0x4d, 0x59, 0x65, 0x66, 0x56, 0x55, 0x4e, 0x52, 0x51, 0x4e, 0x4a, 0x3d, 0x3d, 0x37, 0x30, 0x2e, 0x32, 0x30, 0x2a, 0x2b, 0x33, 0x57, 0x5c, 0x50, 0x3c, 0x41, 0x55, 0x55, 0x43, 0x38, 0x3a, 0x3d, 0x3f, 0x3f, 0x3e, 0x40, 0x42, 0x3e, 0x43, 0x44, 0x43, 0x49, 0x57, 0x5f, 0x5e, 0x5c, 0x6c, 0x85, 0x97, 0x95, 0x83, 0x6f, 0x65, 0x3c, 0x3b, 0x3c, 0x3f, 0x45, 0x4d, 0x56, 0x5b, 0x59, 0x5b, 0x60, 0x69, 0x79, 0x8d, 0x9d, 0xa5, 0xa1, 0xab, 0xb4, 0xb6, 0xb2, 0xa8, 0x95, 0x85, 0x6f, 0x53, 0x39, 0x2f, 0x2a, 0x24, 0x24, 0x29, 0x30, 0x34, 0x32, 0x27, 0x1b, 0x17, 0x1a, 0x1e, 0x31, 0x2f, 0x2e, 0x2a, 0x23, 0x1e, 0x23, 0x2b, 0x5b, 0x65, 0x70, 0x75, 0x72, 0x6d, 0x6a, 0x69, 0x65, 0x6a, 0x6f, 0x6f, 0x6b, 0x67, 0x65, 0x65, 0x65, 0x68, 0x6a, 0x69, 0x65, 0x5d, 0x51, 0x46, 0x4a, 0x52, 0x5a, 0x5a, 0x54, 0x52, 0x56, 0x5c, 0x61, 0x63, 0x66, 0x66, 0x60, 0x57, 0x4f, 0x4a, 0x4d, 0x58, 0x66, 0x84, 0x8e, 0x92, 0x7a, 0x6a, 0x6e, 0x6f, 0x6e, 0x6d, 0x71, 0x74, 0x6f, 0x67, 0x70, 0x6b, 0x62, 0x62, 0x6e, 0x79, 0x73, 0x65, 0x60, 0x65, 0x69, 0x67, 0x63, 0x62, 0x62, 0x62, 0x5f, 0x50, 0x51, 0x60, 0x67, 0x65, 0x62, 0x5e, 0x5d, 0x59, 0x53, 0x4f, 0x4f, 0x4f, 0x4b, 0x47, 0x49, 0x46, 0x3f, 0x3a, 0x41, 0x4f, 0x59, 0x5b, 0x4d, 0x46, 0x43, 0x40, 0x3b, 0x3f, 0x48, 0x4a, 0x49, 0x4c, 0x56, 0x61, 0x66, 0x61, 0x59, 0x54, 0x4b, 0x4b, 0x51, 0x59, 0x5b, 0x55, 0x50, 0x4f, 0x6b, 0x61, 0x5b, 0x5d, 0x5f, 0x5b, 0x56, 0x55, 0x4f, 0x53, 0x51, 0x49, 0x4a, 0x50, 0x4e, 0x47, 0x4f, 0x55, 0x4f, 0x50, 0x54, 0x58, 0x5e, 0x57, 0x58, 0x52, 0x4e, 0x50, 0x54, 0x59, 0x5d, 0x61, 0x70, 0x75, 0x73, 0x6c, 0x69, 0x6b, 0x69, 0x64, 0x5b, 0x5d, 0x60, 0x63, 0x65, 0x66, 0x68, 0x69, 0x6b, 0x65, 0x61, 0x5f, 0x5f, 0x5e, 0x61, 0x65, 0x71, 0x72, 0x6e, 0x66, 0x63, 0x66, 0x66, 0x62, 0x56, 0x57, 0x5a, 0x5d, 0x60, 0x64, 0x68, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x66, 0x65, 0x63, 0x62, 0x61, 0x60, 0x5f, 0x5e, 0x5c, 0x59, 0x58, 0x57, 0x57, 0x57, 0x56, 0x53, 0x52, 0x51, 0x52, 0x53, 0x52, 0x4f, 0x4d, 0x4c, 0x4b, 0x49, 0x49, 0x4f, 0x61, 0x78, 0x8a, 0xa2, 0xab, 0xb0, 0xad, 0xa8, 0xa6, 0xa5, 0xa2, 0xa7, 0xa4, 0xa1, 0x9f, 0x9f, 0x9f, 0x9e, 0x9d, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa1, 0xa0, 0x9a, 0x98, 0x9d, 0x95, 0x7e, 0x71, 0x74, 0x83, 0x8d, 0x93, 0x98, 0xa1, 0xa6, 0xa5, 0xa8, 0xb2, 0xbd, 0xca, 0xd1, 0xd2, 0xd1, 0xcc, 0xc8, 0xc0, 0xbd, 0xb8, 0xb4, 0xb0, 0xa9, 0xa2, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9d, 0x9f, 0xa1, 0xa1, 0xa0, 0xa1, 0xa2, 0xa3, 0xa7, 0xad, 0xb4, 0xb8, 0xb1, 0xb0, 0xb1, 0xb4, 0xbb, 0xc3, 0xcb, 0xcf, 0xd3, 0xd4, 0xd8, 0xda, 0xd5, 0xce, 0xcd, 0xd2, 0xd5, 0xd1, 0xcd, 0xcc, 0xcc, 0xc9, 0xc2, 0xbc, 0xbc, 0xbd, 0xb9, 0xbb, 0xc8, 0xc4, 0x7c, 0x2d, 0x70, 0x91, 0x50, 0x74, 0xe9, 0xd5, 0xbf, 0xad, 0xb3, 0xb8, 0x6e, 0x4f, 0x36, 0x9c, 0xe6, 0xe0, 0xe4, 0xe2, 0xe1, 0xb4, 0x72, 0xbb, 0xe5, 0xa2, 0x41, 0x5a, 0xb7, 0xd7, 0xcd, 0xce, 0xbd, 0xc6, 0xd3, 0xd5, 0xd5, 0xd4, 0xd5, 0xd7, 0xd8, 0xd7, 0xdb, 0xb9, 0x95, 0x9e, 0x9a, 0x9c, 0x9e, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9d, 0xa2, 0x7b, 0x8b, 0xac, 0x6f, 0x69, 0xc9, 0xbf, 0x79, 0x88, 0x79, 0xb1, 0x85, 0x88, 0x7f, 0xb6, 0x85, 0x8d, 0x97, 0x94, 0x90, 0x94, 0x95, 0x93, 0x93, 0x8f, 0x97, 0xc4, 0xce, 0xcc, 0xc8, 0xc6, 0xbf, 0xb7, 0xad, 0xac, 0xa1, 0x7e, 0x5b, 0x5b, 0x54, 0x5e, 0x6b, 0x75, 0x7b, 0x7d, 0x79, 0x73, 0x69, 0x76, 0x81, 0x83, 0x7f, 0x7b, 0x75, 0x6e, 0x64, 0x62, 0x65, 0x70, 0x7a, 0x7f, 0x82, 0x86, 0x7b, 0x6d, 0x64, 0x65, 0x70, 0x73, 0x71, 0x6c, 0x65, 0x6c, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x6c, 0x6f, 0x70, 0x6e, 0x69, 0x68, 0x6a, 0x6b, 0x6a, 0x6f, 0x70, 0x6c, 0x63, 0x5d, 0x56, 0x49, 0x3c, 0x51, 0x5d, 0x6c, 0x75, 0x74, 0x6d, 0x69, 0x67, 0x74, 0x70, 0x69, 0x5c, 0x4b, 0x46, 0x55, 0x68, 0x6b, 0x5d, 0x4a, 0x4d, 0x55, 0x59, 0x5a, 0x4c, 0x42, 0x3b, 0x3a, 0x35, 0x2c, 0x34, 0x51, 0x69, 0x57, 0x44, 0x35, 0x35, 0x36, 0x33, 0x35, 0x3d, 0x49, 0x4c, 0x47, 0x40, 0x38, 0x2f, 0x2f, 0x39, 0x4a, 0x6d, 0x97, 0x9b, 0x7a, 0x5c, 0x4a, 0x3b, 0x39, 0x29, 0x25, 0x26, 0x33, 0x3e, 0x38, 0x38, 0x3c, 0x33, 0x2e, 0x2e, 0x2b, 0x22, 0x1f, 0x22, 0x30, 0x38, 0x39, 0x38, 0x44, 0x53, 0x4e, 0x3d, 0x39, 0x38, 0x36, 0x32, 0x2e, 0x2d, 0x2d, 0x2d, 0x31, 0x2f, 0x34, 0x45, 0x5c, 0x6f, 0x79, 0x7b, 0x7b, 0x85, 0x8e, 0x8a, 0x75, 0x5d, 0x4f, 0x4b, 0x61, 0x60, 0x60, 0x64, 0x6a, 0x6f, 0x72, 0x73, 0x76, 0x77, 0x78, 0x77, 0x7a, 0x7e, 0x7d, 0x7a, 0x82, 0x90, 0xa5, 0xb3, 0xae, 0x9e, 0x93, 0x91, 0x8a, 0x78, 0x5e, 0x49, 0x3b, 0x30, 0x27, 0x21, 0x23, 0x28, 0x2c, 0x2a, 0x2a, 0x31, 0x3f, 0x4b, 0x50, 0x56, 0x5a, 0x58, 0x54, 0x4f, 0x46, 0x3d, 0x58, 0x5d, 0x62, 0x61, 0x5e, 0x5e, 0x62, 0x67, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x6d, 0x6a, 0x66, 0x6d, 0x72, 0x74, 0x6f, 0x65, 0x5c, 0x53, 0x4d, 0x51, 0x57, 0x5d, 0x5d, 0x58, 0x55, 0x59, 0x5e, 0x5b, 0x5b, 0x5f, 0x65, 0x66, 0x60, 0x58, 0x53, 0x61, 0x68, 0x7a, 0x98, 0x8f, 0x7a, 0x65, 0x69, 0x71, 0x71, 0x6b, 0x66, 0x6a, 0x73, 0x73, 0x6d, 0x66, 0x64, 0x5c, 0x59, 0x66, 0x78, 0x76, 0x67, 0x5a, 0x5e, 0x60, 0x5d, 0x5b, 0x5d, 0x5f, 0x5f, 0x5d, 0x54, 0x57, 0x60, 0x60, 0x5c, 0x57, 0x50, 0x4c, 0x4c, 0x48, 0x46, 0x4b, 0x53, 0x53, 0x4d, 0x46, 0x40, 0x3b, 0x3d, 0x45, 0x4e, 0x54, 0x56, 0x50, 0x48, 0x45, 0x41, 0x3a, 0x3d, 0x49, 0x4f, 0x51, 0x53, 0x57, 0x5c, 0x5f, 0x5f, 0x5a, 0x56, 0x5e, 0x61, 0x66, 0x66, 0x5f, 0x59, 0x5e, 0x68, 0x6f, 0x5f, 0x52, 0x53, 0x56, 0x55, 0x54, 0x56, 0x5a, 0x51, 0x47, 0x43, 0x4a, 0x57, 0x5d, 0x5e, 0x5e, 0x61, 0x54, 0x4e, 0x50, 0x59, 0x68, 0x67, 0x56, 0x53, 0x52, 0x56, 0x5a, 0x5a, 0x59, 0x59, 0x60, 0x76, 0x84, 0x7b, 0x6d, 0x69, 0x6c, 0x6c, 0x56, 0x59, 0x5c, 0x5e, 0x60, 0x64, 0x69, 0x6d, 0x6c, 0x64, 0x5e, 0x5e, 0x5e, 0x5f, 0x62, 0x68, 0x6f, 0x6d, 0x67, 0x60, 0x5c, 0x5d, 0x5f, 0x5e, 0x57, 0x5a, 0x5d, 0x61, 0x64, 0x67, 0x6b, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66, 0x65, 0x63, 0x61, 0x60, 0x60, 0x5f, 0x5d, 0x5c, 0x60, 0x5d, 0x5a, 0x5a, 0x5c, 0x5b, 0x56, 0x52, 0x5a, 0x56, 0x51, 0x4b, 0x46, 0x46, 0x4d, 0x55, 0x6f, 0x7c, 0x8e, 0x9d, 0xa6, 0xa8, 0xa9, 0xaa, 0xa4, 0xa2, 0xa0, 0xa1, 0xa2, 0xa2, 0x9f, 0x9c, 0x9f, 0x9f, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0xa1, 0x9d, 0x99, 0x9b, 0x93, 0x7b, 0x6f, 0x79, 0x83, 0x8b, 0x8f, 0x94, 0xa1, 0xa7, 0xa8, 0xaa, 0xb6, 0xc2, 0xcd, 0xd1, 0xcf, 0xcd, 0xcb, 0xca, 0xbd, 0xb9, 0xb4, 0xb1, 0xab, 0xa3, 0x9e, 0x9b, 0x9b, 0x9b, 0x9a, 0x9b, 0x9d, 0xa0, 0xa3, 0xa5, 0xa4, 0xa4, 0xa5, 0xa5, 0xa7, 0xab, 0xb0, 0xb4, 0xb6, 0xb6, 0xb4, 0xb5, 0xb8, 0xc0, 0xca, 0xd1, 0xd3, 0xd6, 0xdb, 0xdc, 0xd7, 0xd2, 0xd2, 0xd5, 0xd6, 0xd5, 0xd2, 0xcf, 0xce, 0xcc, 0xc7, 0xc1, 0xbc, 0xb7, 0xbb, 0xbc, 0xbc, 0xc9, 0x8c, 0x38, 0x52, 0x6d, 0x3e, 0xa2, 0xc8, 0x73, 0x4b, 0x50, 0x51, 0x39, 0x3d, 0x95, 0x6f, 0x70, 0xdb, 0xf4, 0xea, 0xe3, 0xe7, 0xe7, 0xd9, 0xe1, 0xbf, 0x58, 0x4f, 0x9d, 0xce, 0xd2, 0xc6, 0xc3, 0xca, 0xbf, 0xd1, 0xd3, 0xd4, 0xd3, 0xd5, 0xd7, 0xd8, 0xd7, 0xde, 0xbd, 0x98, 0xa1, 0x9b, 0x9a, 0x9a, 0x9a, 0x9e, 0x9d, 0x9d, 0x9d, 0x9e, 0x9f, 0x9e, 0x9d, 0xa0, 0x7f, 0x81, 0xb7, 0x72, 0x66, 0xaf, 0xb2, 0x7b, 0x82, 0x7c, 0xb5, 0x7a, 0x82, 0x7c, 0xb2, 0x8d, 0x89, 0x93, 0x93, 0x8e, 0x93, 0x92, 0x93, 0x90, 0x8d, 0x97, 0xc5, 0xce, 0xcc, 0xc7, 0xc6, 0xc3, 0xb5, 0xac, 0xab, 0x9d, 0x88, 0x6c, 0x72, 0x8c, 0x8b, 0x85, 0x7d, 0x7b, 0x7e, 0x7e, 0x7a, 0x69, 0x73, 0x7c, 0x80, 0x82, 0x80, 0x74, 0x67, 0x66, 0x62, 0x65, 0x6f, 0x77, 0x7b, 0x83, 0x8c, 0x85, 0x72, 0x65, 0x62, 0x72, 0x74, 0x75, 0x6e, 0x6a, 0x70, 0x78, 0x7d, 0x7c, 0x78, 0x75, 0x74, 0x73, 0x6f, 0x6a, 0x66, 0x60, 0x5e, 0x68, 0x74, 0x74, 0x6a, 0x5f, 0x5c, 0x5f, 0x5a, 0x46, 0x33, 0x33, 0x37, 0x41, 0x50, 0x5f, 0x6e, 0x7d, 0x87, 0x7c, 0x7e, 0x7a, 0x6f, 0x68, 0x6b, 0x75, 0x7d, 0x82, 0x81, 0x74, 0x6d, 0x62, 0x55, 0x58, 0x57, 0x4d, 0x40, 0x3a, 0x3b, 0x38, 0x37, 0x39, 0x37, 0x2d, 0x1c, 0x19, 0x29, 0x34, 0x33, 0x39, 0x46, 0x3d, 0x42, 0x3d, 0x35, 0x35, 0x3e, 0x52, 0x67, 0x89, 0x81, 0x64, 0x3b, 0x20, 0x1b, 0x20, 0x26, 0x27, 0x23, 0x29, 0x2d, 0x3e, 0x52, 0x55, 0x59, 0x46, 0x3e, 0x36, 0x31, 0x2e, 0x29, 0x25, 0x23, 0x1f, 0x30, 0x44, 0x50, 0x56, 0x58, 0x53, 0x4c, 0x41, 0x43, 0x43, 0x3e, 0x38, 0x33, 0x2e, 0x2a, 0x2a, 0x35, 0x4c, 0x64, 0x6b, 0x62, 0x58, 0x57, 0x5e, 0x60, 0x62, 0x5f, 0x57, 0x4c, 0x43, 0x3e, 0x41, 0x4b, 0x5d, 0x71, 0x80, 0x85, 0x82, 0x7e, 0x76, 0x79, 0x7a, 0x76, 0x72, 0x6b, 0x5f, 0x53, 0x40, 0x39, 0x3d, 0x52, 0x69, 0x7a, 0x8b, 0x9a, 0x91, 0x8f, 0x80, 0x67, 0x51, 0x45, 0x3b, 0x32, 0x3d, 0x3b, 0x43, 0x4c, 0x49, 0x3e, 0x3f, 0x49, 0x51, 0x5a, 0x63, 0x6d, 0x77, 0x76, 0x62, 0x4b, 0x5f, 0x61, 0x62, 0x60, 0x5e, 0x60, 0x68, 0x6f, 0x6c, 0x65, 0x61, 0x69, 0x76, 0x7d, 0x7a, 0x74, 0x79, 0x78, 0x73, 0x69, 0x62, 0x61, 0x61, 0x61, 0x57, 0x58, 0x59, 0x59, 0x58, 0x59, 0x5a, 0x5c, 0x5b, 0x58, 0x5a, 0x60, 0x65, 0x64, 0x62, 0x62, 0x62, 0x69, 0x74, 0x86, 0x79, 0x6f, 0x67, 0x72, 0x69, 0x68, 0x65, 0x63, 0x66, 0x6e, 0x76, 0x7a, 0x67, 0x62, 0x59, 0x58, 0x64, 0x72, 0x71, 0x67, 0x65, 0x65, 0x65, 0x64, 0x67, 0x6b, 0x6c, 0x69, 0x60, 0x5f, 0x62, 0x60, 0x56, 0x52, 0x51, 0x4d, 0x4b, 0x48, 0x48, 0x4e, 0x55, 0x59, 0x58, 0x56, 0x49, 0x44, 0x43, 0x4a, 0x4e, 0x4d, 0x4c, 0x4e, 0x4a, 0x41, 0x3e, 0x3c, 0x36, 0x38, 0x43, 0x48, 0x4f, 0x4f, 0x4b, 0x48, 0x4d, 0x57, 0x5c, 0x5c, 0x4a, 0x51, 0x5d, 0x67, 0x65, 0x5b, 0x54, 0x54, 0x5f, 0x56, 0x54, 0x5c, 0x60, 0x5c, 0x5b, 0x5e, 0x58, 0x4d, 0x50, 0x63, 0x6c, 0x66, 0x63, 0x69, 0x68, 0x67, 0x56, 0x50, 0x57, 0x64, 0x72, 0x6d, 0x67, 0x61, 0x5a, 0x55, 0x53, 0x55, 0x5d, 0x65, 0x68, 0x82, 0x90, 0x81, 0x6b, 0x61, 0x60, 0x5e, 0x55, 0x59, 0x5c, 0x5e, 0x61, 0x65, 0x6c, 0x72, 0x6e, 0x64, 0x5d, 0x5e, 0x5f, 0x60, 0x65, 0x6d, 0x61, 0x61, 0x64, 0x67, 0x67, 0x63, 0x61, 0x61, 0x57, 0x5b, 0x60, 0x65, 0x68, 0x6b, 0x6f, 0x72, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x67, 0x66, 0x63, 0x61, 0x5f, 0x5f, 0x60, 0x60, 0x5f, 0x5d, 0x57, 0x58, 0x5c, 0x5f, 0x5d, 0x57, 0x52, 0x52, 0x4a, 0x4f, 0x5f, 0x74, 0x85, 0x90, 0x9b, 0xa6, 0xa0, 0xa2, 0xa4, 0xa6, 0xa7, 0xa5, 0xa3, 0xa1, 0xa1, 0xa1, 0xa0, 0x9f, 0x9e, 0x9d, 0x9d, 0x9d, 0x9f, 0x9e, 0x99, 0x98, 0x90, 0x78, 0x6e, 0x7b, 0x80, 0x89, 0x8d, 0x93, 0xa0, 0xab, 0xb1, 0xb9, 0xc1, 0xc9, 0xd0, 0xd0, 0xcd, 0xca, 0xc8, 0xc7, 0xb8, 0xb5, 0xb1, 0xae, 0xa7, 0x9f, 0x9b, 0x9c, 0x9b, 0x9a, 0x9a, 0x9a, 0x9c, 0x9f, 0xa3, 0xa6, 0xa8, 0xa9, 0xa9, 0xa9, 0xaa, 0xac, 0xaf, 0xb2, 0xb8, 0xb9, 0xb8, 0xb6, 0xb6, 0xbc, 0xc6, 0xce, 0xd1, 0xd5, 0xdb, 0xdc, 0xd9, 0xd5, 0xd5, 0xd8, 0xd6, 0xd8, 0xd7, 0xd2, 0xcf, 0xce, 0xcb, 0xc7, 0xc2, 0xb8, 0xc2, 0xc1, 0xad, 0xb5, 0x80, 0x3b, 0x3f, 0x3d, 0x32, 0xa7, 0x6d, 0x4a, 0x68, 0x94, 0x87, 0x40, 0x3f, 0x42, 0x3e, 0x36, 0xaa, 0xe3, 0xea, 0xdf, 0xe3, 0xea, 0xd7, 0xa6, 0x63, 0x3c, 0x94, 0xca, 0xcc, 0xc6, 0xc2, 0xbc, 0xca, 0xc2, 0xd0, 0xd2, 0xd3, 0xd3, 0xd4, 0xd7, 0xd8, 0xd6, 0xe1, 0xc0, 0x9c, 0xa5, 0x9f, 0x9c, 0x99, 0x97, 0x9d, 0x9c, 0x9b, 0x9c, 0x9d, 0x9e, 0x9e, 0x9c, 0x9c, 0x81, 0x7c, 0xc2, 0x74, 0x69, 0x9b, 0xac, 0x7c, 0x7a, 0x7b, 0xb7, 0x7b, 0x7d, 0x7a, 0xb8, 0x93, 0x85, 0x91, 0x94, 0x90, 0x92, 0x8f, 0x92, 0x8f, 0x8d, 0x97, 0xc4, 0xcd, 0xca, 0xc7, 0xc7, 0xc4, 0xba, 0xae, 0xac, 0x9d, 0x84, 0x69, 0x87, 0x88, 0x86, 0x82, 0x7f, 0x82, 0x83, 0x79, 0x6c, 0x69, 0x6e, 0x78, 0x82, 0x83, 0x7a, 0x6f, 0x6a, 0x6b, 0x68, 0x6c, 0x76, 0x79, 0x79, 0x80, 0x8c, 0x8d, 0x79, 0x6e, 0x64, 0x72, 0x71, 0x75, 0x71, 0x7a, 0x7a, 0x76, 0x71, 0x6f, 0x74, 0x7c, 0x81, 0x78, 0x74, 0x6f, 0x68, 0x61, 0x63, 0x71, 0x82, 0x85, 0x74, 0x62, 0x5d, 0x60, 0x63, 0x62, 0x60, 0x5f, 0x57, 0x4d, 0x48, 0x4a, 0x58, 0x6e, 0x82, 0x7f, 0x7c, 0x73, 0x6a, 0x68, 0x70, 0x7b, 0x83, 0x7b, 0x7b, 0x70, 0x70, 0x68, 0x4e, 0x3b, 0x2d, 0x2d, 0x35, 0x41, 0x3e, 0x2f, 0x2e, 0x3e, 0x4b, 0x61, 0x4c, 0x3c, 0x38, 0x33, 0x2b, 0x30, 0x3c, 0x4c, 0x55, 0x53, 0x4b, 0x4d, 0x55, 0x60, 0x6b, 0x76, 0x5e, 0x35, 0x28, 0x3d, 0x43, 0x35, 0x2f, 0x14, 0x1d, 0x2c, 0x2a, 0x31, 0x42, 0x47, 0x4c, 0x4f, 0x4e, 0x4b, 0x46, 0x43, 0x42, 0x3e, 0x39, 0x36, 0x3c, 0x3e, 0x3c, 0x3a, 0x3f, 0x4b, 0x54, 0x56, 0x57, 0x53, 0x49, 0x42, 0x3f, 0x3f, 0x3e, 0x42, 0x50, 0x61, 0x63, 0x4f, 0x36, 0x2f, 0x34, 0x49, 0x4e, 0x4d, 0x42, 0x3a, 0x44, 0x5f, 0x76, 0x7e, 0x77, 0x70, 0x6a, 0x68, 0x67, 0x65, 0x63, 0x71, 0x71, 0x6b, 0x65, 0x65, 0x69, 0x68, 0x62, 0x47, 0x35, 0x26, 0x27, 0x32, 0x3d, 0x47, 0x4d, 0x69, 0x6d, 0x6c, 0x67, 0x66, 0x6b, 0x6a, 0x64, 0x4f, 0x51, 0x5b, 0x66, 0x63, 0x55, 0x4c, 0x4c, 0x48, 0x4e, 0x5a, 0x6c, 0x7d, 0x80, 0x76, 0x69, 0x57, 0x60, 0x69, 0x6e, 0x6d, 0x69, 0x67, 0x67, 0x67, 0x66, 0x66, 0x69, 0x6e, 0x73, 0x77, 0x78, 0x72, 0x6e, 0x68, 0x65, 0x68, 0x6c, 0x6b, 0x67, 0x63, 0x5d, 0x57, 0x55, 0x57, 0x58, 0x56, 0x54, 0x5c, 0x5a, 0x5c, 0x63, 0x65, 0x61, 0x5c, 0x5b, 0x5c, 0x6a, 0x6b, 0x6b, 0x63, 0x6c, 0x64, 0x5c, 0x67, 0x64, 0x64, 0x65, 0x64, 0x65, 0x70, 0x7d, 0x7e, 0x6e, 0x5c, 0x57, 0x61, 0x6e, 0x75, 0x75, 0x70, 0x6c, 0x67, 0x66, 0x6b, 0x6e, 0x69, 0x62, 0x5e, 0x63, 0x68, 0x5f, 0x50, 0x4f, 0x55, 0x56, 0x5a, 0x52, 0x52, 0x5c, 0x60, 0x5a, 0x53, 0x53, 0x50, 0x46, 0x43, 0x4a, 0x4c, 0x4a, 0x4e, 0x57, 0x4d, 0x43, 0x40, 0x40, 0x3b, 0x3c, 0x44, 0x47, 0x47, 0x4c, 0x4e, 0x4f, 0x5a, 0x6b, 0x73, 0x72, 0x63, 0x56, 0x4f, 0x56, 0x62, 0x67, 0x65, 0x63, 0x54, 0x55, 0x5b, 0x62, 0x5d, 0x52, 0x52, 0x5b, 0x4f, 0x47, 0x53, 0x68, 0x5f, 0x45, 0x49, 0x65, 0x6e, 0x69, 0x57, 0x53, 0x5d, 0x68, 0x6e, 0x60, 0x64, 0x64, 0x63, 0x5f, 0x58, 0x54, 0x59, 0x60, 0x73, 0x82, 0x82, 0x6f, 0x5f, 0x60, 0x65, 0x64, 0x5a, 0x5d, 0x60, 0x60, 0x5f, 0x61, 0x67, 0x6c, 0x6d, 0x62, 0x5b, 0x5c, 0x5f, 0x61, 0x67, 0x70, 0x6c, 0x69, 0x6a, 0x6e, 0x6e, 0x68, 0x66, 0x69, 0x5a, 0x5f, 0x65, 0x6a, 0x6e, 0x72, 0x75, 0x78, 0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x71, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x6d, 0x69, 0x66, 0x67, 0x64, 0x5f, 0x5c, 0x5d, 0x59, 0x4f, 0x4b, 0x54, 0x5e, 0x68, 0x79, 0x8b, 0x9c, 0xa1, 0xa6, 0xa9, 0xa8, 0xa6, 0xa4, 0xa4, 0xa3, 0xa3, 0xa1, 0x9f, 0x9e, 0x9d, 0x9c, 0x9c, 0x9d, 0x9e, 0x99, 0x95, 0x8d, 0x76, 0x6d, 0x7b, 0x79, 0x84, 0x8a, 0x90, 0x9d, 0xab, 0xb9, 0xc6, 0xc6, 0xcb, 0xcf, 0xce, 0xcb, 0xc7, 0xc3, 0xbe, 0xb5, 0xb2, 0xaf, 0xac, 0xa5, 0x9d, 0x9b, 0x9e, 0x9c, 0x9b, 0x9a, 0x99, 0x9a, 0x9d, 0xa1, 0xa5, 0xab, 0xac, 0xac, 0xac, 0xad, 0xaf, 0xb2, 0xb4, 0xb6, 0xb8, 0xb8, 0xb5, 0xb3, 0xb7, 0xc0, 0xc8, 0xce, 0xd3, 0xd9, 0xdc, 0xd9, 0xd5, 0xd6, 0xd9, 0xdb, 0xde, 0xde, 0xd8, 0xd3, 0xd3, 0xd2, 0xcf, 0xca, 0xc4, 0xb7, 0xbf, 0xbc, 0x90, 0x3b, 0x31, 0x3d, 0x3f, 0x52, 0xa7, 0x31, 0x67, 0x9b, 0x8e, 0x6a, 0x56, 0x70, 0x43, 0x42, 0x39, 0x57, 0xb0, 0xd0, 0xd1, 0xda, 0xc9, 0x8f, 0x4f, 0x3b, 0x92, 0xc0, 0xc9, 0xc9, 0xc6, 0xca, 0xc5, 0xbf, 0xc8, 0xcf, 0xd1, 0xd3, 0xd2, 0xd4, 0xd7, 0xd7, 0xd6, 0xe0, 0xc0, 0x9e, 0xa8, 0xa2, 0x9e, 0x9b, 0x98, 0x9b, 0x9a, 0x99, 0x9a, 0x9d, 0x9e, 0x9d, 0x9c, 0x9b, 0x84, 0x7c, 0xc9, 0x76, 0x70, 0x96, 0xb1, 0x7f, 0x78, 0x7c, 0xbd, 0x87, 0x83, 0x80, 0xca, 0x97, 0x82, 0x90, 0x96, 0x92, 0x93, 0x8d, 0x91, 0x8f, 0x8d, 0x96, 0xc3, 0xcb, 0xc9, 0xc7, 0xc9, 0xc1, 0xbe, 0xae, 0xab, 0x9c, 0x79, 0x5b, 0x91, 0x8f, 0x91, 0x8d, 0x80, 0x77, 0x73, 0x6d, 0x66, 0x69, 0x6e, 0x7d, 0x8a, 0x84, 0x73, 0x6f, 0x77, 0x71, 0x70, 0x75, 0x7e, 0x7d, 0x77, 0x7d, 0x8a, 0x87, 0x76, 0x6d, 0x60, 0x69, 0x65, 0x6e, 0x6d, 0x71, 0x78, 0x7a, 0x74, 0x72, 0x76, 0x77, 0x74, 0x78, 0x7b, 0x7c, 0x74, 0x69, 0x63, 0x66, 0x6c, 0x64, 0x65, 0x6a, 0x6d, 0x67, 0x5c, 0x57, 0x59, 0x5d, 0x60, 0x62, 0x5c, 0x51, 0x50, 0x61, 0x75, 0x83, 0x7b, 0x6e, 0x61, 0x5a, 0x5f, 0x6f, 0x7e, 0x86, 0x95, 0x97, 0x96, 0x83, 0x63, 0x5a, 0x5a, 0x68, 0x5e, 0x54, 0x49, 0x42, 0x4a, 0x59, 0x5f, 0x59, 0x58, 0x5b, 0x5d, 0x52, 0x3f, 0x31, 0x2e, 0x4d, 0x69, 0x77, 0x70, 0x65, 0x60, 0x62, 0x68, 0x3c, 0x37, 0x27, 0x30, 0x4e, 0x48, 0x32, 0x34, 0x45, 0x40, 0x3a, 0x2c, 0x33, 0x4d, 0x54, 0x56, 0x58, 0x5f, 0x62, 0x5e, 0x5b, 0x5a, 0x53, 0x4a, 0x3f, 0x40, 0x3e, 0x3a, 0x38, 0x3d, 0x43, 0x47, 0x50, 0x5b, 0x63, 0x61, 0x57, 0x4a, 0x3d, 0x32, 0x3c, 0x45, 0x4b, 0x46, 0x35, 0x25, 0x21, 0x25, 0x35, 0x3b, 0x43, 0x4b, 0x53, 0x5a, 0x60, 0x62, 0x62, 0x61, 0x5f, 0x5d, 0x59, 0x50, 0x46, 0x3e, 0x3e, 0x47, 0x4f, 0x52, 0x53, 0x4f, 0x41, 0x32, 0x44, 0x58, 0x6c, 0x6e, 0x60, 0x50, 0x47, 0x44, 0x44, 0x43, 0x47, 0x58, 0x72, 0x87, 0x8b, 0x86, 0x8a, 0x8e, 0x8b, 0x81, 0x7a, 0x78, 0x70, 0x65, 0x6b, 0x69, 0x6b, 0x6f, 0x6c, 0x62, 0x5e, 0x61, 0x62, 0x6b, 0x6f, 0x69, 0x63, 0x65, 0x6d, 0x73, 0x77, 0x78, 0x74, 0x6f, 0x73, 0x7c, 0x7d, 0x78, 0x6e, 0x5f, 0x56, 0x5a, 0x63, 0x64, 0x60, 0x5e, 0x5c, 0x58, 0x55, 0x53, 0x50, 0x4e, 0x4f, 0x52, 0x53, 0x59, 0x5f, 0x64, 0x6a, 0x6f, 0x69, 0x60, 0x61, 0x66, 0x69, 0x69, 0x6a, 0x6e, 0x6c, 0x68, 0x69, 0x6f, 0x6c, 0x5f, 0x58, 0x60, 0x6d, 0x74, 0x76, 0x6a, 0x60, 0x61, 0x64, 0x65, 0x6a, 0x71, 0x6b, 0x6a, 0x66, 0x60, 0x5d, 0x60, 0x67, 0x6c, 0x69, 0x63, 0x57, 0x4c, 0x4d, 0x56, 0x5b, 0x59, 0x4f, 0x54, 0x5b, 0x60, 0x63, 0x63, 0x60, 0x5c, 0x50, 0x54, 0x63, 0x68, 0x56, 0x45, 0x45, 0x4c, 0x53, 0x46, 0x3c, 0x3a, 0x3b, 0x3e, 0x45, 0x4c, 0x48, 0x4a, 0x47, 0x46, 0x51, 0x62, 0x6a, 0x67, 0x63, 0x54, 0x47, 0x47, 0x51, 0x5b, 0x62, 0x66, 0x69, 0x68, 0x66, 0x61, 0x57, 0x4d, 0x4a, 0x4b, 0x44, 0x50, 0x5a, 0x50, 0x46, 0x44, 0x4b, 0x63, 0x69, 0x65, 0x5d, 0x5e, 0x67, 0x65, 0x59, 0x53, 0x50, 0x5f, 0x6c, 0x69, 0x5d, 0x57, 0x57, 0x59, 0x6b, 0x73, 0x6d, 0x67, 0x5d, 0x56, 0x5e, 0x5e, 0x5c, 0x58, 0x58, 0x5d, 0x62, 0x64, 0x64, 0x64, 0x69, 0x6b, 0x6d, 0x68, 0x5c, 0x53, 0x55, 0x5d, 0x60, 0x66, 0x67, 0x62, 0x61, 0x67, 0x6d, 0x6d, 0x63, 0x63, 0x65, 0x6a, 0x6f, 0x74, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x70, 0x6e, 0x6a, 0x68, 0x63, 0x5c, 0x56, 0x55, 0x5a, 0x5f, 0x77, 0x86, 0x99, 0xa6, 0xa9, 0xa8, 0xa7, 0xa8, 0xa7, 0xa3, 0x9f, 0x9f, 0xa0, 0xa0, 0x9d, 0x9a, 0x9d, 0x9b, 0x94, 0x99, 0x84, 0x6b, 0x72, 0x72, 0x7e, 0x81, 0x89, 0x95, 0xa2, 0xb0, 0xbd, 0xc7, 0xd0, 0xce, 0xcd, 0xce, 0xce, 0xc8, 0xbe, 0xb6, 0xb1, 0xae, 0xa9, 0xa3, 0x9d, 0x9a, 0x99, 0x9a, 0x9f, 0xa0, 0x9f, 0x9d, 0x9c, 0x9e, 0xa3, 0xa7, 0xa9, 0xaa, 0xab, 0xad, 0xb0, 0xb2, 0xb4, 0xb4, 0xba, 0xba, 0xb9, 0xb8, 0xb5, 0xb6, 0xbc, 0xc4, 0xce, 0xd1, 0xcf, 0xde, 0xdc, 0xc7, 0xcb, 0xd9, 0xd6, 0xd3, 0xd5, 0xdb, 0xda, 0xd3, 0xd0, 0xd3, 0xcd, 0xc4, 0xc1, 0xbd, 0xbc, 0x7f, 0x3e, 0x61, 0x6a, 0x36, 0x9a, 0x83, 0x37, 0x85, 0x88, 0x87, 0x5a, 0x6a, 0x93, 0x85, 0x3d, 0x3b, 0x36, 0x46, 0x52, 0x5b, 0x57, 0x4d, 0x45, 0x55, 0x90, 0xc7, 0xc9, 0xcb, 0xc7, 0xc6, 0xc7, 0xc1, 0xbd, 0xc0, 0xcf, 0xd0, 0xd3, 0xd6, 0xd8, 0xd8, 0xd8, 0xd7, 0xde, 0xc3, 0x9c, 0xa1, 0xa1, 0xa2, 0x9e, 0x9b, 0x97, 0x98, 0x9a, 0x9c, 0x9e, 0x9f, 0x9f, 0x9f, 0xa6, 0x86, 0x8f, 0xd4, 0x76, 0x77, 0x8d, 0xc4, 0x7f, 0x7f, 0x84, 0xcc, 0x93, 0x7e, 0x86, 0xcd, 0x99, 0x91, 0x8c, 0x94, 0x9a, 0x91, 0x8b, 0x94, 0x8c, 0x8b, 0x97, 0xc0, 0xce, 0xd0, 0xc5, 0xc8, 0xc7, 0xb3, 0xac, 0xae, 0x95, 0x6d, 0x67, 0x7c, 0x81, 0x8c, 0x89, 0x76, 0x6f, 0x77, 0x79, 0x6f, 0x75, 0x79, 0x82, 0x86, 0x82, 0x81, 0x7f, 0x77, 0x73, 0x66, 0x73, 0x81, 0x78, 0x76, 0x7f, 0x7e, 0x7e, 0x72, 0x6b, 0x6b, 0x68, 0x63, 0x6a, 0x77, 0x76, 0x7b, 0x72, 0x74, 0x6e, 0x74, 0x75, 0x84, 0x8e, 0x94, 0x80, 0x76, 0x6b, 0x5c, 0x63, 0x64, 0x65, 0x6a, 0x71, 0x73, 0x66, 0x55, 0x50, 0x55, 0x50, 0x4d, 0x52, 0x5a, 0x55, 0x4c, 0x59, 0x70, 0x82, 0x7e, 0x6c, 0x56, 0x4b, 0x48, 0x4e, 0x59, 0x73, 0x7c, 0x80, 0x7d, 0x7d, 0x81, 0x80, 0x7b, 0x74, 0x5e, 0x62, 0x61, 0x62, 0x65, 0x76, 0x6d, 0x67, 0x66, 0x75, 0x7c, 0x6b, 0x5a, 0x4f, 0x43, 0x4b, 0x50, 0x55, 0x59, 0x5a, 0x54, 0x43, 0x32, 0x2e, 0x20, 0x25, 0x48, 0x45, 0x3f, 0x35, 0x3e, 0x5a, 0x5f, 0x60, 0x61, 0x6b, 0x79, 0x78, 0x6c, 0x71, 0x73, 0x6b, 0x5a, 0x4c, 0x49, 0x48, 0x46, 0x46, 0x46, 0x40, 0x37, 0x36, 0x3d, 0x41, 0x3f, 0x3e, 0x40, 0x3b, 0x2f, 0x2a, 0x33, 0x40, 0x47, 0x54, 0x5a, 0x4d, 0x30, 0x22, 0x30, 0x42, 0x47, 0x42, 0x45, 0x46, 0x40, 0x39, 0x3a, 0x47, 0x56, 0x56, 0x57, 0x54, 0x4e, 0x48, 0x44, 0x40, 0x3c, 0x3f, 0x39, 0x46, 0x52, 0x4d, 0x52, 0x67, 0x75, 0x82, 0x75, 0x72, 0x6b, 0x68, 0x71, 0x7c, 0x74, 0x68, 0x5c, 0x63, 0x80, 0x93, 0x90, 0x8e, 0x94, 0x91, 0x9d, 0x9c, 0x8e, 0x86, 0x88, 0x80, 0x71, 0x72, 0x7b, 0x87, 0x8e, 0x88, 0x78, 0x67, 0x5e, 0x69, 0x6e, 0x6f, 0x6c, 0x6d, 0x74, 0x79, 0x79, 0x7e, 0x81, 0x7f, 0x77, 0x73, 0x74, 0x72, 0x6e, 0x62, 0x5d, 0x59, 0x57, 0x56, 0x55, 0x57, 0x59, 0x59, 0x57, 0x56, 0x56, 0x55, 0x53, 0x53, 0x55, 0x55, 0x5a, 0x62, 0x6a, 0x70, 0x71, 0x6b, 0x63, 0x5d, 0x61, 0x60, 0x5d, 0x5d, 0x62, 0x65, 0x64, 0x6a, 0x72, 0x74, 0x6c, 0x65, 0x69, 0x72, 0x78, 0x73, 0x6a, 0x61, 0x5e, 0x5d, 0x5d, 0x60, 0x63, 0x61, 0x5e, 0x5b, 0x5d, 0x64, 0x6d, 0x71, 0x72, 0x60, 0x53, 0x45, 0x44, 0x4f, 0x58, 0x56, 0x4e, 0x51, 0x49, 0x43, 0x4a, 0x5c, 0x6c, 0x70, 0x6d, 0x67, 0x57, 0x4e, 0x4a, 0x41, 0x3d, 0x44, 0x4b, 0x42, 0x48, 0x4b, 0x49, 0x49, 0x4c, 0x4c, 0x49, 0x4f, 0x4f, 0x4c, 0x4b, 0x52, 0x5d, 0x61, 0x60, 0x5f, 0x5e, 0x5c, 0x57, 0x51, 0x4e, 0x54, 0x5d, 0x60, 0x67, 0x6e, 0x6d, 0x60, 0x4f, 0x47, 0x46, 0x4b, 0x4d, 0x4f, 0x46, 0x42, 0x43, 0x43, 0x52, 0x62, 0x66, 0x65, 0x65, 0x67, 0x62, 0x5a, 0x5a, 0x60, 0x61, 0x62, 0x63, 0x62, 0x61, 0x5f, 0x5e, 0x67, 0x66, 0x5c, 0x5c, 0x5e, 0x60, 0x67, 0x62, 0x61, 0x5b, 0x59, 0x5c, 0x62, 0x66, 0x6a, 0x6d, 0x6d, 0x6e, 0x71, 0x72, 0x6c, 0x63, 0x5d, 0x5e, 0x5e, 0x61, 0x60, 0x5b, 0x5d, 0x67, 0x6f, 0x71, 0x64, 0x66, 0x69, 0x6d, 0x72, 0x77, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82, 0x80, 0x7d, 0x7b, 0x78, 0x76, 0x72, 0x6f, 0x6b, 0x67, 0x63, 0x61, 0x54, 0x60, 0x76, 0x8e, 0xa1, 0xab, 0xac, 0xa9, 0xa1, 0xa9, 0xae, 0xaa, 0x9f, 0x99, 0x9d, 0xa3, 0x99, 0x97, 0x93, 0x97, 0x81, 0x69, 0x6e, 0x70, 0x7f, 0x85, 0x90, 0x9d, 0xaa, 0xb7, 0xc5, 0xce, 0xd2, 0xd0, 0xce, 0xcc, 0xc9, 0xc3, 0xbb, 0xb5, 0xb3, 0xaf, 0xa8, 0xa1, 0x9c, 0x99, 0x98, 0x98, 0x9f, 0xa0, 0xa1, 0xa1, 0xa1, 0xa3, 0xa8, 0xac, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xb1, 0xb3, 0xb5, 0xb8, 0xb8, 0xb8, 0xb8, 0xb6, 0xb6, 0xbb, 0xc1, 0xc7, 0xd8, 0xdf, 0xcd, 0xca, 0xd6, 0xd5, 0xd4, 0xd6, 0xd3, 0xd3, 0xd8, 0xdb, 0xd9, 0xd4, 0xd1, 0xd1, 0xd2, 0xd2, 0xc8, 0xc9, 0x9a, 0x49, 0x3e, 0x3e, 0x41, 0xb6, 0x7d, 0x44, 0x82, 0x8d, 0x80, 0x49, 0x7c, 0x8b, 0x84, 0x6a, 0x2a, 0x44, 0x3a, 0x42, 0x4b, 0x44, 0x3a, 0x51, 0x90, 0xc5, 0xca, 0xc6, 0xc9, 0xc6, 0xc5, 0xc6, 0xc1, 0xbf, 0xc4, 0xd3, 0xd3, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xd9, 0xde, 0xc2, 0x9b, 0xa0, 0xa1, 0xa3, 0xa0, 0x9e, 0x9a, 0x9a, 0x9a, 0x9a, 0x9b, 0x9d, 0x9e, 0x9e, 0x9e, 0x81, 0x84, 0xc2, 0x80, 0x83, 0x9c, 0xd8, 0x82, 0x82, 0x7f, 0xb4, 0x95, 0x91, 0x70, 0x60, 0x6c, 0x86, 0x94, 0x90, 0x90, 0x93, 0x92, 0x91, 0x93, 0x8d, 0x98, 0xc1, 0xcd, 0xce, 0xc4, 0xc9, 0xc1, 0xb5, 0xb0, 0xac, 0x94, 0x74, 0x6a, 0x74, 0x7b, 0x7e, 0x83, 0x86, 0x83, 0x7e, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x74, 0x70, 0x79, 0x85, 0x87, 0x71, 0x5c, 0x68, 0x7e, 0x75, 0x6a, 0x73, 0x7c, 0x78, 0x74, 0x6c, 0x66, 0x67, 0x6d, 0x70, 0x71, 0x75, 0x71, 0x64, 0x6c, 0x6e, 0x75, 0x73, 0x7e, 0x78, 0x81, 0x76, 0x74, 0x71, 0x69, 0x72, 0x76, 0x66, 0x65, 0x67, 0x6c, 0x6a, 0x5f, 0x51, 0x49, 0x43, 0x32, 0x2d, 0x3b, 0x48, 0x4c, 0x56, 0x64, 0x6f, 0x75, 0x6d, 0x5b, 0x50, 0x4e, 0x54, 0x60, 0x58, 0x4a, 0x56, 0x73, 0x75, 0x5e, 0x5b, 0x6e, 0x70, 0x52, 0x4c, 0x47, 0x4b, 0x53, 0x6b, 0x6b, 0x6a, 0x6a, 0x78, 0x81, 0x77, 0x6b, 0x5f, 0x51, 0x53, 0x52, 0x4f, 0x4a, 0x46, 0x41, 0x38, 0x2f, 0x34, 0x27, 0x2b, 0x43, 0x47, 0x43, 0x39, 0x35, 0x48, 0x51, 0x62, 0x71, 0x76, 0x72, 0x6b, 0x68, 0x6b, 0x75, 0x78, 0x6f, 0x5f, 0x50, 0x41, 0x34, 0x42, 0x3f, 0x41, 0x43, 0x38, 0x27, 0x25, 0x30, 0x39, 0x33, 0x28, 0x23, 0x2a, 0x3d, 0x53, 0x5f, 0x80, 0x61, 0x3b, 0x2b, 0x37, 0x4c, 0x52, 0x4c, 0x53, 0x59, 0x60, 0x66, 0x67, 0x63, 0x5c, 0x57, 0x4c, 0x40, 0x2f, 0x22, 0x26, 0x3b, 0x53, 0x63, 0x67, 0x65, 0x6a, 0x72, 0x7f, 0x93, 0x93, 0x7d, 0x73, 0x68, 0x69, 0x6e, 0x74, 0x78, 0x6e, 0x56, 0x5d, 0x65, 0x6f, 0x6e, 0x60, 0x54, 0x5b, 0x6a, 0x80, 0x70, 0x69, 0x70, 0x75, 0x72, 0x71, 0x75, 0x6b, 0x52, 0x3f, 0x41, 0x4d, 0x52, 0x53, 0x54, 0x74, 0x76, 0x73, 0x70, 0x79, 0x86, 0x88, 0x80, 0x7a, 0x80, 0x81, 0x77, 0x6d, 0x68, 0x64, 0x61, 0x5f, 0x60, 0x5e, 0x59, 0x56, 0x56, 0x57, 0x56, 0x5b, 0x5a, 0x5c, 0x60, 0x62, 0x61, 0x61, 0x63, 0x5e, 0x5e, 0x62, 0x68, 0x6b, 0x67, 0x62, 0x5f, 0x71, 0x73, 0x71, 0x6a, 0x67, 0x6a, 0x6d, 0x6d, 0x72, 0x7c, 0x7f, 0x76, 0x6b, 0x68, 0x69, 0x6b, 0x67, 0x64, 0x5d, 0x58, 0x59, 0x5d, 0x5f, 0x5e, 0x60, 0x61, 0x63, 0x67, 0x6a, 0x68, 0x64, 0x60, 0x4f, 0x53, 0x59, 0x5c, 0x58, 0x53, 0x54, 0x59, 0x58, 0x53, 0x54, 0x60, 0x70, 0x76, 0x6f, 0x64, 0x50, 0x4a, 0x4d, 0x52, 0x4c, 0x45, 0x46, 0x47, 0x47, 0x57, 0x5d, 0x53, 0x4e, 0x55, 0x54, 0x4c, 0x52, 0x4f, 0x4d, 0x4d, 0x4f, 0x51, 0x51, 0x50, 0x4e, 0x4c, 0x4d, 0x4f, 0x50, 0x53, 0x58, 0x5e, 0x61, 0x60, 0x60, 0x5b, 0x51, 0x48, 0x45, 0x47, 0x51, 0x4f, 0x4e, 0x45, 0x45, 0x4b, 0x4f, 0x62, 0x6c, 0x6e, 0x6a, 0x66, 0x67, 0x61, 0x59, 0x5a, 0x54, 0x56, 0x5c, 0x61, 0x60, 0x5e, 0x63, 0x6b, 0x66, 0x65, 0x5b, 0x5e, 0x64, 0x65, 0x67, 0x5d, 0x65, 0x60, 0x5b, 0x5b, 0x5b, 0x5b, 0x5c, 0x5d, 0x69, 0x63, 0x5f, 0x5f, 0x5e, 0x5a, 0x54, 0x51, 0x5a, 0x5e, 0x60, 0x61, 0x65, 0x6d, 0x71, 0x71, 0x66, 0x68, 0x6c, 0x71, 0x76, 0x7a, 0x7d, 0x7e, 0x7e, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x83, 0x85, 0x86, 0x86, 0x87, 0x89, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x8f, 0x8c, 0x8a, 0x8b, 0x87, 0x83, 0x82, 0x81, 0x7d, 0x75, 0x6e, 0x6a, 0x64, 0x5e, 0x60, 0x6e, 0x81, 0x93, 0x9d, 0xaf, 0xac, 0xa9, 0xa9, 0xa9, 0xa6, 0xa0, 0x9a, 0x9b, 0x9a, 0x97, 0x95, 0x7b, 0x63, 0x68, 0x6d, 0x7e, 0x89, 0x97, 0xa5, 0xb0, 0xbb, 0xc7, 0xcf, 0xd3, 0xd1, 0xce, 0xc8, 0xc1, 0xbb, 0xb5, 0xb3, 0xb1, 0xab, 0xa3, 0x9d, 0x9a, 0x99, 0x99, 0x98, 0x9b, 0x9e, 0xa0, 0xa1, 0xa3, 0xa6, 0xab, 0xaf, 0xb0, 0xb2, 0xb6, 0xb7, 0xb7, 0xb7, 0xb8, 0xb9, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb6, 0xba, 0xbe, 0xce, 0xcc, 0xdc, 0xd6, 0xd1, 0xd2, 0xca, 0xd8, 0xd7, 0xca, 0xb5, 0xa2, 0x97, 0x8f, 0x85, 0x7b, 0x6e, 0x5f, 0x5b, 0x58, 0x60, 0x54, 0x37, 0x43, 0x38, 0x6e, 0xdf, 0x7c, 0x61, 0x87, 0x8b, 0x64, 0x54, 0x94, 0x8d, 0x80, 0x85, 0x34, 0x86, 0xa9, 0x50, 0x2e, 0x42, 0x80, 0xae, 0xcf, 0xd3, 0xb9, 0xc3, 0xc6, 0xc5, 0xc4, 0xc5, 0xc1, 0xc1, 0xc9, 0xd5, 0xd5, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdf, 0xc3, 0x9c, 0xa1, 0xa1, 0xa4, 0xa3, 0xa2, 0xa1, 0xa0, 0x9e, 0x9d, 0x9d, 0x9e, 0x9f, 0xa0, 0xa2, 0x8d, 0x68, 0x70, 0x60, 0x80, 0x78, 0x73, 0x72, 0x92, 0x60, 0x4b, 0x69, 0x93, 0x6b, 0x41, 0x67, 0x8a, 0x9a, 0x8f, 0x8b, 0x93, 0x94, 0x8e, 0x92, 0x87, 0x93, 0xc0, 0xcc, 0xcd, 0xc6, 0xcd, 0xc1, 0xb8, 0xaa, 0x9a, 0x88, 0x79, 0x76, 0x7a, 0x7e, 0x7d, 0x83, 0x8b, 0x89, 0x7d, 0x75, 0x75, 0x79, 0x77, 0x77, 0x72, 0x6b, 0x71, 0x7c, 0x7e, 0x73, 0x62, 0x6b, 0x7e, 0x76, 0x6c, 0x71, 0x78, 0x72, 0x75, 0x6d, 0x63, 0x6c, 0x81, 0x84, 0x77, 0x6e, 0x6a, 0x60, 0x6c, 0x70, 0x76, 0x73, 0x7e, 0x83, 0x81, 0x71, 0x6d, 0x6d, 0x65, 0x60, 0x5a, 0x63, 0x6f, 0x76, 0x70, 0x62, 0x58, 0x54, 0x54, 0x3b, 0x2a, 0x25, 0x34, 0x44, 0x4b, 0x51, 0x59, 0x69, 0x79, 0x7b, 0x6b, 0x5c, 0x52, 0x4e, 0x50, 0x4c, 0x58, 0x5a, 0x4f, 0x4d, 0x58, 0x5a, 0x52, 0x47, 0x39, 0x44, 0x48, 0x4a, 0x48, 0x5e, 0x64, 0x65, 0x69, 0x74, 0x7b, 0x76, 0x72, 0x6d, 0x63, 0x5f, 0x55, 0x48, 0x3d, 0x39, 0x37, 0x2f, 0x26, 0x24, 0x20, 0x32, 0x4b, 0x61, 0x64, 0x60, 0x53, 0x36, 0x30, 0x39, 0x52, 0x5f, 0x5d, 0x62, 0x70, 0x72, 0x77, 0x76, 0x6b, 0x62, 0x5f, 0x60, 0x5f, 0x59, 0x66, 0x72, 0x72, 0x66, 0x52, 0x3d, 0x30, 0x23, 0x20, 0x20, 0x27, 0x33, 0x45, 0x59, 0x67, 0x5d, 0x3a, 0x1a, 0x16, 0x26, 0x38, 0x46, 0x4f, 0x44, 0x4f, 0x56, 0x53, 0x51, 0x58, 0x64, 0x6c, 0x6c, 0x72, 0x7b, 0x82, 0x89, 0x90, 0x92, 0x91, 0x90, 0x86, 0x82, 0x7d, 0x6f, 0x5c, 0x46, 0x30, 0x3b, 0x43, 0x49, 0x45, 0x39, 0x42, 0x53, 0x5a, 0x66, 0x6f, 0x7b, 0x86, 0x91, 0x97, 0x91, 0x87, 0x6c, 0x70, 0x75, 0x75, 0x6e, 0x64, 0x5f, 0x5f, 0x53, 0x4d, 0x46, 0x44, 0x49, 0x55, 0x66, 0x73, 0x71, 0x73, 0x6e, 0x6b, 0x76, 0x86, 0x87, 0x7c, 0x74, 0x79, 0x7a, 0x73, 0x6a, 0x65, 0x63, 0x61, 0x66, 0x66, 0x64, 0x61, 0x64, 0x67, 0x63, 0x5a, 0x5c, 0x5b, 0x5d, 0x62, 0x65, 0x67, 0x68, 0x6a, 0x66, 0x61, 0x5f, 0x63, 0x63, 0x60, 0x60, 0x63, 0x6e, 0x72, 0x70, 0x68, 0x63, 0x63, 0x63, 0x60, 0x67, 0x70, 0x76, 0x71, 0x6a, 0x67, 0x6a, 0x6c, 0x64, 0x62, 0x5c, 0x56, 0x5b, 0x66, 0x69, 0x64, 0x5a, 0x5e, 0x61, 0x60, 0x59, 0x51, 0x4f, 0x51, 0x62, 0x59, 0x55, 0x57, 0x5a, 0x59, 0x5a, 0x5d, 0x66, 0x6b, 0x72, 0x78, 0x77, 0x6f, 0x66, 0x61, 0x5a, 0x4f, 0x4e, 0x52, 0x50, 0x4e, 0x4f, 0x4f, 0x46, 0x53, 0x58, 0x4e, 0x4b, 0x51, 0x52, 0x4b, 0x4f, 0x4d, 0x4e, 0x52, 0x55, 0x55, 0x56, 0x58, 0x54, 0x4e, 0x4d, 0x53, 0x5b, 0x5d, 0x5a, 0x57, 0x4d, 0x4f, 0x53, 0x57, 0x56, 0x4f, 0x47, 0x43, 0x4c, 0x4e, 0x51, 0x45, 0x40, 0x45, 0x53, 0x71, 0x7b, 0x74, 0x66, 0x61, 0x66, 0x65, 0x5d, 0x5b, 0x4e, 0x51, 0x5b, 0x66, 0x65, 0x5f, 0x62, 0x6c, 0x69, 0x6a, 0x60, 0x5e, 0x5d, 0x5d, 0x62, 0x5e, 0x5a, 0x5c, 0x64, 0x70, 0x7a, 0x7e, 0x81, 0x83, 0x73, 0x6c, 0x65, 0x63, 0x63, 0x61, 0x5c, 0x57, 0x56, 0x60, 0x6c, 0x74, 0x79, 0x78, 0x71, 0x69, 0x65, 0x68, 0x6e, 0x74, 0x79, 0x7d, 0x80, 0x81, 0x82, 0x82, 0x84, 0x85, 0x87, 0x87, 0x88, 0x88, 0x87, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8f, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x94, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x98, 0x97, 0x97, 0x98, 0x99, 0x98, 0x96, 0x94, 0x98, 0x93, 0x8d, 0x8c, 0x8e, 0x8d, 0x88, 0x83, 0x83, 0x7e, 0x74, 0x68, 0x5f, 0x5f, 0x67, 0x6f, 0x90, 0x9b, 0xa7, 0xac, 0xaa, 0xa4, 0xa1, 0xa1, 0x9e, 0x9b, 0x99, 0x8f, 0x71, 0x5d, 0x65, 0x70, 0x80, 0x8e, 0xa0, 0xac, 0xb6, 0xbf, 0xc8, 0xce, 0xd1, 0xcf, 0xcb, 0xc3, 0xba, 0xb3, 0xb1, 0xb0, 0xab, 0xa5, 0x9d, 0x99, 0x99, 0x9b, 0x9c, 0x9b, 0x9a, 0x9d, 0xa1, 0xa3, 0xa5, 0xa9, 0xae, 0xb2, 0xae, 0xb4, 0xbb, 0xc0, 0xc0, 0xbe, 0xbd, 0xbd, 0xb8, 0xb6, 0xb6, 0xb8, 0xb8, 0xb7, 0xb9, 0xbd, 0xc3, 0xc2, 0xca, 0xcd, 0xcf, 0xca, 0xac, 0x90, 0x5f, 0x5f, 0x56, 0x4a, 0x48, 0x4e, 0x52, 0x4f, 0x57, 0x47, 0x48, 0x47, 0x46, 0x47, 0x46, 0x56, 0x63, 0x9c, 0xdc, 0x67, 0x6d, 0x93, 0x89, 0x58, 0x72, 0x8f, 0x8e, 0x89, 0x91, 0x52, 0x9a, 0xe9, 0xc2, 0x47, 0x48, 0xaa, 0xcd, 0xc1, 0xbf, 0xc1, 0xc1, 0xc5, 0xc4, 0xc3, 0xc3, 0xc0, 0xc2, 0xcc, 0xd2, 0xd3, 0xd4, 0xd6, 0xd7, 0xd8, 0xd9, 0xd9, 0xe0, 0xc5, 0x9d, 0xa1, 0xa1, 0xa4, 0xa4, 0xa3, 0xa4, 0xa3, 0xa2, 0xa0, 0x9f, 0x9e, 0x9e, 0x9e, 0xa4, 0x99, 0x5e, 0x42, 0x61, 0x95, 0x75, 0x40, 0x7a, 0xa6, 0x7c, 0x56, 0x7e, 0xa1, 0x91, 0x7d, 0x8b, 0x94, 0x93, 0x8d, 0x90, 0x93, 0x91, 0x91, 0x90, 0x84, 0x94, 0xc4, 0xce, 0xcd, 0xc8, 0xcd, 0xc5, 0xb7, 0xa3, 0x90, 0x81, 0x78, 0x77, 0x7a, 0x78, 0x7c, 0x7f, 0x80, 0x81, 0x80, 0x7c, 0x78, 0x73, 0x74, 0x78, 0x73, 0x69, 0x68, 0x6d, 0x6c, 0x5e, 0x5c, 0x63, 0x68, 0x64, 0x64, 0x65, 0x5e, 0x70, 0x73, 0x6b, 0x63, 0x70, 0x88, 0x88, 0x77, 0x62, 0x6c, 0x6c, 0x75, 0x74, 0x79, 0x76, 0x80, 0x8a, 0x86, 0x77, 0x6f, 0x6d, 0x66, 0x60, 0x5d, 0x68, 0x6a, 0x67, 0x63, 0x65, 0x69, 0x66, 0x5c, 0x39, 0x44, 0x59, 0x69, 0x65, 0x52, 0x48, 0x4a, 0x54, 0x6b, 0x78, 0x75, 0x6f, 0x65, 0x55, 0x4c, 0x60, 0x68, 0x6b, 0x64, 0x58, 0x4c, 0x3f, 0x34, 0x3d, 0x3d, 0x52, 0x53, 0x48, 0x3c, 0x55, 0x69, 0x6a, 0x6f, 0x73, 0x73, 0x73, 0x77, 0x76, 0x70, 0x63, 0x53, 0x41, 0x3b, 0x3e, 0x3d, 0x30, 0x23, 0x1e, 0x25, 0x47, 0x62, 0x7c, 0x79, 0x78, 0x6a, 0x5c, 0x3d, 0x2b, 0x38, 0x49, 0x4e, 0x57, 0x64, 0x6a, 0x73, 0x77, 0x71, 0x68, 0x65, 0x67, 0x69, 0x7b, 0x84, 0x88, 0x88, 0x88, 0x80, 0x67, 0x4c, 0x37, 0x31, 0x2b, 0x27, 0x22, 0x22, 0x2d, 0x3b, 0x26, 0x1c, 0x16, 0x14, 0x14, 0x1a, 0x2f, 0x46, 0x67, 0x5e, 0x4d, 0x41, 0x44, 0x4d, 0x4e, 0x48, 0x66, 0x6c, 0x71, 0x70, 0x6a, 0x5d, 0x4d, 0x41, 0x3b, 0x36, 0x35, 0x34, 0x2a, 0x23, 0x2a, 0x36, 0x45, 0x44, 0x3b, 0x3b, 0x40, 0x5d, 0x6f, 0x78, 0x82, 0x88, 0x8a, 0x87, 0x8a, 0x96, 0x9e, 0xa0, 0xa1, 0x99, 0x8b, 0x82, 0x81, 0x7b, 0x64, 0x49, 0x4a, 0x51, 0x50, 0x47, 0x49, 0x5b, 0x6e, 0x77, 0x60, 0x63, 0x62, 0x60, 0x68, 0x76, 0x79, 0x71, 0x76, 0x76, 0x75, 0x6f, 0x6b, 0x68, 0x67, 0x67, 0x66, 0x69, 0x6a, 0x6a, 0x6f, 0x73, 0x6e, 0x66, 0x5f, 0x5a, 0x57, 0x59, 0x5b, 0x5d, 0x60, 0x64, 0x67, 0x63, 0x62, 0x66, 0x67, 0x66, 0x6a, 0x71, 0x73, 0x76, 0x74, 0x6e, 0x6a, 0x6d, 0x6e, 0x6c, 0x69, 0x6e, 0x70, 0x6b, 0x64, 0x61, 0x63, 0x65, 0x6b, 0x69, 0x60, 0x59, 0x60, 0x6e, 0x71, 0x6b, 0x67, 0x64, 0x62, 0x63, 0x63, 0x66, 0x6d, 0x75, 0x64, 0x60, 0x62, 0x68, 0x69, 0x63, 0x5e, 0x5e, 0x5a, 0x5b, 0x5e, 0x60, 0x63, 0x6b, 0x7c, 0x8c, 0x7f, 0x63, 0x4f, 0x50, 0x57, 0x5b, 0x55, 0x49, 0x41, 0x47, 0x4d, 0x52, 0x55, 0x58, 0x58, 0x54, 0x57, 0x55, 0x54, 0x54, 0x51, 0x4d, 0x4c, 0x4e, 0x4b, 0x4c, 0x51, 0x59, 0x5d, 0x5a, 0x54, 0x51, 0x4e, 0x52, 0x59, 0x5d, 0x5a, 0x54, 0x52, 0x53, 0x54, 0x56, 0x5a, 0x4e, 0x43, 0x41, 0x4b, 0x68, 0x76, 0x70, 0x64, 0x60, 0x66, 0x67, 0x62, 0x61, 0x62, 0x5b, 0x5c, 0x67, 0x6d, 0x67, 0x61, 0x60, 0x66, 0x64, 0x55, 0x52, 0x53, 0x57, 0x64, 0x64, 0x62, 0x63, 0x66, 0x6a, 0x6a, 0x64, 0x5e, 0x5c, 0x61, 0x61, 0x61, 0x62, 0x62, 0x5d, 0x55, 0x4e, 0x59, 0x65, 0x76, 0x83, 0x85, 0x7d, 0x6d, 0x61, 0x63, 0x68, 0x6f, 0x76, 0x7b, 0x7f, 0x82, 0x85, 0x86, 0x87, 0x88, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x91, 0x93, 0x95, 0x97, 0x97, 0x96, 0x96, 0x98, 0x9a, 0x9c, 0x9d, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0x9f, 0xa0, 0x9f, 0x9e, 0x9e, 0x9e, 0x9f, 0x9e, 0x9d, 0x9b, 0x9e, 0x9b, 0x98, 0x96, 0x95, 0x95, 0x93, 0x92, 0x8a, 0x8c, 0x8b, 0x84, 0x78, 0x6c, 0x65, 0x62, 0x69, 0x73, 0x83, 0x92, 0x9d, 0xa3, 0xa5, 0xa5, 0xa0, 0x9c, 0x9b, 0x89, 0x69, 0x5b, 0x66, 0x79, 0x87, 0x97, 0xa9, 0xb6, 0xbe, 0xc7, 0xcd, 0xd0, 0xce, 0xcc, 0xc6, 0xbe, 0xb6, 0xb1, 0xaf, 0xaf, 0xa7, 0xa1, 0x9a, 0x97, 0x98, 0x9b, 0x9d, 0x9c, 0x9e, 0xa1, 0xa5, 0xa7, 0xaa, 0xae, 0xb3, 0xb7, 0xb7, 0xbb, 0xc1, 0xc4, 0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xc0, 0xbd, 0xbd, 0xbc, 0xba, 0xb9, 0xbb, 0xc3, 0xcf, 0xcf, 0xcf, 0x99, 0x57, 0x4b, 0x3e, 0x5a, 0x70, 0x85, 0x90, 0x9b, 0xab, 0xb6, 0xb9, 0xc1, 0xc4, 0xd0, 0xcf, 0xd0, 0xe1, 0xe0, 0xd1, 0xd6, 0xee, 0xeb, 0x70, 0x70, 0x99, 0x7d, 0x55, 0x91, 0x7c, 0x85, 0x8d, 0x97, 0x63, 0x9f, 0xe5, 0xba, 0x39, 0x4d, 0xba, 0xd4, 0xc7, 0xc8, 0xcb, 0xc2, 0xc6, 0xc4, 0xc2, 0xc2, 0xbf, 0xc1, 0xcb, 0xcf, 0xd1, 0xd5, 0xd8, 0xda, 0xda, 0xda, 0xd9, 0xdf, 0xc4, 0x9d, 0xa0, 0x9f, 0xa1, 0xa1, 0xa1, 0xa0, 0xa1, 0xa1, 0xa1, 0x9f, 0x9d, 0x9b, 0x99, 0x96, 0x93, 0x70, 0x62, 0x80, 0x95, 0x83, 0x75, 0x93, 0x91, 0x98, 0x9b, 0x96, 0x8d, 0x99, 0x8f, 0x9a, 0x94, 0x8b, 0x8d, 0x96, 0x95, 0x90, 0x93, 0x8f, 0x84, 0x99, 0xca, 0xce, 0xcc, 0xc7, 0xc9, 0xc5, 0xb4, 0xa2, 0x97, 0x8a, 0x7a, 0x6f, 0x6c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x72, 0x71, 0x72, 0x6a, 0x5f, 0x61, 0x69, 0x6a, 0x69, 0x6b, 0x70, 0x73, 0x75, 0x79, 0x76, 0x6d, 0x70, 0x70, 0x6c, 0x6b, 0x75, 0x7e, 0x76, 0x66, 0x5c, 0x6e, 0x71, 0x77, 0x76, 0x7e, 0x75, 0x75, 0x78, 0x7a, 0x76, 0x6c, 0x68, 0x66, 0x67, 0x71, 0x74, 0x72, 0x6a, 0x61, 0x63, 0x67, 0x60, 0x53, 0x3f, 0x53, 0x6b, 0x70, 0x5d, 0x48, 0x47, 0x51, 0x76, 0x7c, 0x75, 0x6c, 0x6e, 0x71, 0x6c, 0x68, 0x70, 0x65, 0x5e, 0x5b, 0x51, 0x44, 0x46, 0x52, 0x55, 0x4e, 0x4e, 0x3b, 0x2c, 0x25, 0x48, 0x67, 0x6f, 0x6d, 0x65, 0x61, 0x6b, 0x76, 0x6e, 0x5f, 0x57, 0x4a, 0x3e, 0x3c, 0x41, 0x42, 0x39, 0x31, 0x28, 0x33, 0x5a, 0x71, 0x7e, 0x71, 0x73, 0x6e, 0x70, 0x57, 0x45, 0x4a, 0x57, 0x5b, 0x59, 0x58, 0x5c, 0x5c, 0x57, 0x4c, 0x44, 0x4b, 0x5c, 0x6a, 0x79, 0x75, 0x7f, 0x94, 0x99, 0x83, 0x64, 0x51, 0x48, 0x42, 0x3d, 0x3a, 0x32, 0x27, 0x20, 0x21, 0x21, 0x20, 0x1f, 0x1c, 0x19, 0x19, 0x20, 0x27, 0x3b, 0x51, 0x65, 0x67, 0x5d, 0x54, 0x50, 0x4e, 0x42, 0x3d, 0x34, 0x2c, 0x2c, 0x32, 0x37, 0x39, 0x32, 0x3d, 0x41, 0x3e, 0x44, 0x4f, 0x54, 0x53, 0x47, 0x4d, 0x48, 0x55, 0x5e, 0x75, 0x6d, 0x67, 0x6a, 0x74, 0x7d, 0x7d, 0x75, 0x6f, 0x6f, 0x73, 0x78, 0x6e, 0x6a, 0x73, 0x7e, 0x7d, 0x73, 0x69, 0x56, 0x4e, 0x46, 0x48, 0x59, 0x73, 0x8c, 0x9b, 0x59, 0x5e, 0x61, 0x61, 0x66, 0x6e, 0x72, 0x71, 0x76, 0x72, 0x6c, 0x67, 0x64, 0x62, 0x62, 0x61, 0x62, 0x69, 0x6f, 0x70, 0x70, 0x72, 0x74, 0x75, 0x6c, 0x63, 0x5b, 0x57, 0x57, 0x58, 0x5b, 0x5f, 0x67, 0x67, 0x6a, 0x6c, 0x6b, 0x69, 0x6b, 0x6e, 0x66, 0x66, 0x63, 0x5e, 0x60, 0x68, 0x6d, 0x6d, 0x76, 0x75, 0x71, 0x6a, 0x62, 0x5c, 0x5a, 0x5a, 0x6c, 0x6a, 0x64, 0x5e, 0x63, 0x70, 0x76, 0x74, 0x62, 0x57, 0x54, 0x60, 0x6f, 0x74, 0x72, 0x6f, 0x5e, 0x69, 0x76, 0x79, 0x70, 0x66, 0x65, 0x69, 0x6b, 0x62, 0x5c, 0x5c, 0x5e, 0x62, 0x69, 0x71, 0x76, 0x65, 0x5d, 0x62, 0x67, 0x69, 0x62, 0x56, 0x4e, 0x48, 0x46, 0x4d, 0x53, 0x56, 0x5a, 0x5e, 0x5a, 0x5a, 0x58, 0x54, 0x4f, 0x4d, 0x4e, 0x4f, 0x4a, 0x42, 0x3f, 0x46, 0x52, 0x5a, 0x5b, 0x5a, 0x65, 0x67, 0x68, 0x62, 0x56, 0x4e, 0x53, 0x5c, 0x5d, 0x59, 0x5b, 0x53, 0x4e, 0x48, 0x46, 0x58, 0x6b, 0x6e, 0x6a, 0x65, 0x64, 0x5f, 0x5b, 0x5e, 0x60, 0x5c, 0x5a, 0x5f, 0x61, 0x5e, 0x5e, 0x60, 0x5e, 0x5e, 0x54, 0x58, 0x5e, 0x60, 0x61, 0x57, 0x52, 0x52, 0x55, 0x5a, 0x5c, 0x5a, 0x5a, 0x5b, 0x65, 0x66, 0x66, 0x65, 0x64, 0x65, 0x65, 0x63, 0x62, 0x6c, 0x79, 0x83, 0x82, 0x78, 0x6a, 0x60, 0x64, 0x69, 0x71, 0x77, 0x7c, 0x80, 0x85, 0x88, 0x8b, 0x8b, 0x8c, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x91, 0x92, 0x92, 0x93, 0x93, 0x95, 0x97, 0x99, 0x9b, 0x9b, 0x9b, 0x9c, 0x9d, 0x9e, 0xa0, 0xa1, 0xa0, 0xa1, 0xa2, 0xa2, 0xa3, 0xa4, 0xa5, 0xa5, 0xa7, 0xa6, 0xa5, 0xa5, 0xa6, 0xa5, 0xa3, 0xa2, 0xa1, 0xa2, 0xa2, 0xa1, 0x9e, 0x9a, 0x98, 0x97, 0x98, 0x92, 0x8c, 0x8a, 0x89, 0x85, 0x7d, 0x76, 0x6f, 0x64, 0x5c, 0x64, 0x7b, 0x91, 0x9c, 0x9e, 0xa4, 0xa1, 0xa4, 0x8c, 0x68, 0x5c, 0x67, 0x7d, 0x8c, 0x9d, 0xae, 0xba, 0xc3, 0xcb, 0xd0, 0xd0, 0xcb, 0xc6, 0xc0, 0xb9, 0xb5, 0xb1, 0xad, 0xab, 0xa4, 0x9f, 0x99, 0x97, 0x97, 0x9a, 0x9b, 0x9c, 0x9e, 0xa1, 0xa5, 0xa7, 0xaa, 0xaf, 0xb5, 0xba, 0xbd, 0xbe, 0xc0, 0xc3, 0xc8, 0xcc, 0xd0, 0xd2, 0xd0, 0xcb, 0xc7, 0xc5, 0xc3, 0xbf, 0xbb, 0xba, 0xb0, 0xbb, 0xbf, 0xcb, 0x82, 0x37, 0x6c, 0xa1, 0xc6, 0xda, 0xeb, 0xee, 0xed, 0xf1, 0xf6, 0xf7, 0xf7, 0xf1, 0xf3, 0xee, 0xdf, 0xdf, 0xe5, 0xdf, 0xda, 0xe6, 0xd8, 0x74, 0x61, 0x97, 0x77, 0x63, 0x91, 0x83, 0x92, 0x8e, 0x86, 0x58, 0xc0, 0xf6, 0xb4, 0x3f, 0x5f, 0xbc, 0xc5, 0xbe, 0xc3, 0xc3, 0xc3, 0xc6, 0xc3, 0xc1, 0xc2, 0xbf, 0xc0, 0xc8, 0xcf, 0xd2, 0xd6, 0xdb, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xc1, 0x9b, 0x9e, 0x9d, 0x9f, 0x9e, 0x9e, 0x9f, 0xa0, 0xa2, 0xa2, 0xa1, 0x9f, 0x9c, 0x9a, 0x9f, 0xa5, 0x9d, 0x98, 0x9d, 0x97, 0x95, 0xa6, 0xa4, 0x9b, 0x9e, 0x9f, 0x9a, 0x8c, 0x9a, 0x93, 0x91, 0x95, 0x93, 0x92, 0x98, 0x96, 0x8f, 0x8d, 0x83, 0x7f, 0x9b, 0xcb, 0xcb, 0xcc, 0xc9, 0xc7, 0xc3, 0xae, 0x9d, 0x9a, 0x93, 0x83, 0x75, 0x72, 0x75, 0x6f, 0x71, 0x7c, 0x7d, 0x75, 0x74, 0x7c, 0x77, 0x75, 0x74, 0x6c, 0x62, 0x63, 0x6a, 0x6a, 0x6f, 0x69, 0x68, 0x72, 0x7c, 0x7c, 0x78, 0x76, 0x70, 0x6f, 0x74, 0x7e, 0x84, 0x7e, 0x70, 0x66, 0x64, 0x6f, 0x6c, 0x73, 0x76, 0x7f, 0x6f, 0x67, 0x71, 0x69, 0x65, 0x61, 0x6b, 0x72, 0x6b, 0x6f, 0x86, 0x8a, 0x88, 0x7c, 0x73, 0x6f, 0x67, 0x5f, 0x5f, 0x6b, 0x79, 0x7d, 0x78, 0x76, 0x81, 0x8f, 0x83, 0x85, 0x7f, 0x79, 0x76, 0x6b, 0x58, 0x4f, 0x5d, 0x70, 0x74, 0x64, 0x5a, 0x5d, 0x56, 0x47, 0x54, 0x4b, 0x47, 0x39, 0x38, 0x36, 0x4c, 0x5e, 0x6d, 0x6a, 0x58, 0x52, 0x66, 0x74, 0x65, 0x4e, 0x4d, 0x47, 0x41, 0x3e, 0x3e, 0x3f, 0x42, 0x46, 0x42, 0x4e, 0x6a, 0x77, 0x72, 0x63, 0x64, 0x65, 0x68, 0x68, 0x69, 0x6d, 0x74, 0x79, 0x77, 0x71, 0x56, 0x59, 0x5c, 0x5c, 0x5b, 0x5f, 0x67, 0x6d, 0x6e, 0x76, 0x83, 0x8b, 0x85, 0x6f, 0x55, 0x45, 0x34, 0x2b, 0x25, 0x2c, 0x37, 0x39, 0x32, 0x2b, 0x23, 0x22, 0x1e, 0x1b, 0x1d, 0x20, 0x1e, 0x19, 0x1b, 0x27, 0x3b, 0x51, 0x5c, 0x58, 0x48, 0x39, 0x38, 0x39, 0x3a, 0x3e, 0x46, 0x50, 0x55, 0x55, 0x5e, 0x5f, 0x5a, 0x54, 0x4a, 0x36, 0x28, 0x29, 0x56, 0x74, 0x77, 0x78, 0x65, 0x6b, 0x62, 0x69, 0x6b, 0x5b, 0x50, 0x55, 0x60, 0x69, 0x6e, 0x71, 0x61, 0x65, 0x5f, 0x4c, 0x3f, 0x41, 0x49, 0x4d, 0x5d, 0x45, 0x45, 0x6d, 0x96, 0xa0, 0x98, 0x91, 0x5f, 0x62, 0x67, 0x69, 0x69, 0x6a, 0x6e, 0x72, 0x71, 0x6c, 0x66, 0x61, 0x5e, 0x5d, 0x5d, 0x5f, 0x63, 0x64, 0x67, 0x6a, 0x6b, 0x6d, 0x72, 0x77, 0x78, 0x6d, 0x61, 0x5b, 0x5a, 0x5a, 0x5d, 0x61, 0x67, 0x6b, 0x6c, 0x69, 0x65, 0x64, 0x64, 0x64, 0x64, 0x63, 0x5f, 0x5b, 0x5f, 0x67, 0x6b, 0x69, 0x66, 0x65, 0x64, 0x65, 0x65, 0x64, 0x63, 0x62, 0x66, 0x68, 0x67, 0x62, 0x61, 0x68, 0x70, 0x74, 0x6a, 0x5d, 0x5b, 0x6c, 0x7e, 0x7f, 0x72, 0x67, 0x73, 0x6c, 0x64, 0x62, 0x67, 0x6d, 0x6c, 0x68, 0x5a, 0x53, 0x56, 0x65, 0x71, 0x70, 0x69, 0x64, 0x64, 0x60, 0x63, 0x67, 0x66, 0x6b, 0x75, 0x78, 0x5f, 0x53, 0x49, 0x47, 0x49, 0x4c, 0x53, 0x59, 0x56, 0x5a, 0x5c, 0x58, 0x5a, 0x62, 0x6a, 0x6e, 0x62, 0x54, 0x48, 0x48, 0x52, 0x5b, 0x5f, 0x61, 0x68, 0x69, 0x6d, 0x71, 0x6c, 0x62, 0x57, 0x51, 0x58, 0x50, 0x4e, 0x4b, 0x4b, 0x48, 0x45, 0x55, 0x69, 0x6c, 0x68, 0x62, 0x5f, 0x58, 0x52, 0x55, 0x52, 0x55, 0x57, 0x55, 0x51, 0x53, 0x5b, 0x62, 0x5c, 0x64, 0x64, 0x6b, 0x6b, 0x63, 0x5c, 0x4d, 0x49, 0x49, 0x4c, 0x52, 0x56, 0x58, 0x5b, 0x5f, 0x6b, 0x69, 0x63, 0x5c, 0x5d, 0x66, 0x6f, 0x74, 0x6d, 0x72, 0x79, 0x7d, 0x7a, 0x72, 0x6b, 0x67, 0x68, 0x6e, 0x75, 0x7a, 0x7e, 0x82, 0x87, 0x8b, 0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x97, 0x97, 0x98, 0x9b, 0x9e, 0xa0, 0x9f, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa4, 0xa5, 0xa5, 0xa6, 0xa7, 0xa8, 0xa8, 0xa9, 0xa9, 0xac, 0xab, 0xaa, 0xa9, 0xa9, 0xa9, 0xa7, 0xa6, 0xa5, 0xa5, 0xa6, 0xa5, 0xa3, 0x9f, 0x9c, 0x99, 0x98, 0x95, 0x93, 0x95, 0x96, 0x91, 0x88, 0x7f, 0x7c, 0x77, 0x6e, 0x64, 0x61, 0x6c, 0x7f, 0x8f, 0x94, 0x96, 0xa2, 0x8d, 0x6a, 0x60, 0x6a, 0x82, 0x94, 0xa3, 0xb2, 0xba, 0xc2, 0xca, 0xcc, 0xca, 0xc6, 0xbf, 0xb7, 0xb3, 0xb2, 0xb0, 0xa9, 0xa3, 0x9f, 0x9c, 0x99, 0x97, 0x97, 0x99, 0x9c, 0x9e, 0x9d, 0x9f, 0xa3, 0xa6, 0xa9, 0xaf, 0xb7, 0xbc, 0xbf, 0xbf, 0xc0, 0xc4, 0xca, 0xcf, 0xd0, 0xd0, 0xcf, 0xcb, 0xca, 0xcb, 0xcb, 0xc6, 0xc0, 0xbd, 0xc8, 0xcb, 0xc0, 0xba, 0x96, 0x8f, 0xca, 0xe3, 0xe7, 0xee, 0xf4, 0xf2, 0xef, 0xf0, 0xf2, 0xf3, 0xed, 0xdf, 0xe4, 0xf3, 0xe7, 0xd6, 0xdb, 0xe4, 0xda, 0xe2, 0xe3, 0x84, 0x55, 0x93, 0x79, 0x6f, 0x81, 0x8d, 0x91, 0x80, 0x6c, 0x6c, 0xd1, 0xe9, 0xa3, 0x37, 0x66, 0xca, 0xd1, 0xc4, 0xc5, 0xc8, 0xc3, 0xc5, 0xc2, 0xc1, 0xc3, 0xc0, 0xbf, 0xc6, 0xd1, 0xd3, 0xd7, 0xda, 0xdc, 0xdd, 0xdc, 0xdb, 0xd9, 0xc0, 0x9b, 0xa0, 0x9e, 0xa0, 0x9f, 0x9f, 0xa1, 0xa1, 0xa2, 0xa3, 0xa3, 0xa1, 0xa0, 0x9f, 0x95, 0x9e, 0x9c, 0x96, 0x94, 0x98, 0x97, 0x9a, 0x8f, 0xa1, 0x97, 0x8a, 0x99, 0x94, 0x92, 0x8d, 0x90, 0x97, 0x97, 0x94, 0x96, 0x93, 0x8d, 0x8c, 0x83, 0x83, 0xa3, 0xcf, 0xc9, 0xcd, 0xcd, 0xc7, 0xc2, 0xaf, 0x9f, 0x9e, 0x9d, 0x91, 0x82, 0x7a, 0x6a, 0x6a, 0x71, 0x7d, 0x7f, 0x7b, 0x7c, 0x83, 0x78, 0x76, 0x77, 0x72, 0x6a, 0x6c, 0x70, 0x6e, 0x78, 0x70, 0x67, 0x6c, 0x7a, 0x7f, 0x7b, 0x78, 0x72, 0x73, 0x7c, 0x88, 0x8b, 0x80, 0x76, 0x73, 0x75, 0x74, 0x6b, 0x74, 0x76, 0x77, 0x69, 0x6a, 0x73, 0x69, 0x69, 0x6b, 0x7d, 0x88, 0x77, 0x75, 0x6e, 0x65, 0x5e, 0x62, 0x6f, 0x74, 0x66, 0x54, 0x58, 0x66, 0x7c, 0x91, 0x9d, 0x9c, 0x94, 0x8d, 0x88, 0x7d, 0x68, 0x57, 0x50, 0x4c, 0x50, 0x5c, 0x78, 0x7c, 0x75, 0x63, 0x52, 0x4a, 0x46, 0x41, 0x47, 0x4d, 0x59, 0x58, 0x63, 0x5a, 0x58, 0x54, 0x65, 0x6c, 0x5f, 0x51, 0x61, 0x72, 0x6e, 0x63, 0x5a, 0x51, 0x48, 0x45, 0x43, 0x44, 0x47, 0x4c, 0x58, 0x66, 0x74, 0x76, 0x63, 0x5b, 0x53, 0x4d, 0x48, 0x52, 0x58, 0x56, 0x55, 0x59, 0x5a, 0x56, 0x5e, 0x58, 0x52, 0x53, 0x59, 0x5f, 0x62, 0x63, 0x6b, 0x76, 0x76, 0x66, 0x5a, 0x58, 0x55, 0x4e, 0x3d, 0x2e, 0x1d, 0x17, 0x21, 0x2e, 0x34, 0x32, 0x2d, 0x2b, 0x29, 0x26, 0x24, 0x25, 0x26, 0x27, 0x1a, 0x21, 0x31, 0x43, 0x4f, 0x58, 0x65, 0x72, 0x6f, 0x6e, 0x6c, 0x68, 0x65, 0x60, 0x57, 0x4f, 0x42, 0x34, 0x28, 0x2a, 0x24, 0x13, 0x20, 0x48, 0x6f, 0x82, 0x73, 0x6f, 0x60, 0x6e, 0x61, 0x67, 0x53, 0x4f, 0x4b, 0x4b, 0x49, 0x45, 0x43, 0x43, 0x5e, 0x58, 0x44, 0x30, 0x33, 0x46, 0x4a, 0x3f, 0x30, 0x51, 0x7c, 0x8e, 0x7a, 0x5d, 0x5d, 0x6e, 0x62, 0x63, 0x66, 0x6a, 0x67, 0x62, 0x63, 0x69, 0x71, 0x6d, 0x69, 0x66, 0x62, 0x61, 0x64, 0x68, 0x66, 0x5c, 0x56, 0x5d, 0x65, 0x69, 0x6b, 0x6e, 0x77, 0x6c, 0x60, 0x5a, 0x59, 0x5a, 0x5d, 0x61, 0x64, 0x69, 0x69, 0x62, 0x5e, 0x61, 0x65, 0x65, 0x6a, 0x69, 0x65, 0x62, 0x64, 0x69, 0x66, 0x60, 0x5d, 0x5b, 0x5d, 0x62, 0x66, 0x65, 0x61, 0x5e, 0x66, 0x6b, 0x6c, 0x65, 0x5b, 0x5a, 0x62, 0x6a, 0x6d, 0x60, 0x5b, 0x67, 0x76, 0x7a, 0x75, 0x71, 0x65, 0x71, 0x7b, 0x7a, 0x75, 0x71, 0x6a, 0x63, 0x68, 0x5e, 0x5a, 0x62, 0x69, 0x65, 0x5b, 0x55, 0x5c, 0x5a, 0x62, 0x69, 0x6a, 0x6e, 0x71, 0x6e, 0x6c, 0x67, 0x61, 0x5d, 0x5b, 0x5b, 0x5c, 0x5d, 0x62, 0x67, 0x63, 0x57, 0x53, 0x59, 0x60, 0x60, 0x52, 0x56, 0x5b, 0x5a, 0x55, 0x53, 0x5a, 0x63, 0x71, 0x65, 0x5f, 0x6b, 0x7c, 0x80, 0x73, 0x66, 0x5d, 0x54, 0x51, 0x4b, 0x4a, 0x4b, 0x4f, 0x66, 0x69, 0x66, 0x5c, 0x58, 0x5d, 0x5b, 0x53, 0x52, 0x58, 0x57, 0x53, 0x51, 0x54, 0x5a, 0x5b, 0x58, 0x60, 0x6d, 0x6e, 0x6e, 0x64, 0x5a, 0x5d, 0x59, 0x55, 0x55, 0x57, 0x5b, 0x5c, 0x5c, 0x5d, 0x60, 0x68, 0x67, 0x61, 0x5c, 0x5d, 0x66, 0x6e, 0x70, 0x74, 0x77, 0x7b, 0x7b, 0x76, 0x70, 0x6e, 0x6e, 0x6d, 0x72, 0x78, 0x7d, 0x80, 0x83, 0x89, 0x8d, 0x8f, 0x90, 0x91, 0x93, 0x95, 0x96, 0x97, 0x97, 0x97, 0x98, 0x99, 0x9b, 0x9c, 0x9f, 0xa3, 0xa6, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae, 0xae, 0xac, 0xab, 0xaa, 0xaa, 0xa9, 0xa8, 0xa6, 0xa8, 0xa6, 0xa4, 0xa4, 0xa3, 0xa2, 0xa0, 0x9e, 0x9a, 0x9b, 0x99, 0x96, 0x93, 0x91, 0x91, 0x93, 0x88, 0x84, 0x7f, 0x7a, 0x76, 0x70, 0x69, 0x64, 0x74, 0x7b, 0x93, 0x86, 0x69, 0x65, 0x70, 0x8b, 0x9e, 0xaa, 0xb6, 0xbc, 0xc2, 0xc9, 0xc9, 0xc4, 0xc2, 0xb9, 0xb0, 0xad, 0xaf, 0xad, 0xa4, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x98, 0x9a, 0x9e, 0xa1, 0x9e, 0xa1, 0xa4, 0xa7, 0xab, 0xb2, 0xbb, 0xc1, 0xc5, 0xc4, 0xc5, 0xc8, 0xcb, 0xc9, 0xc3, 0xbd, 0xc7, 0xc6, 0xc7, 0xcd, 0xd0, 0xcc, 0xc5, 0xc0, 0xc5, 0xbc, 0xc1, 0xc2, 0xa5, 0x9f, 0xc7, 0xe2, 0xe6, 0xe8, 0xec, 0xf0, 0xf3, 0xf3, 0xef, 0xeb, 0xd6, 0xcc, 0xcc, 0xe0, 0xec, 0xeb, 0xe8, 0xdc, 0xda, 0xdd, 0xe6, 0x7f, 0x42, 0x91, 0x8a, 0x87, 0x8d, 0x87, 0x61, 0x52, 0x5a, 0xb3, 0xe9, 0xe1, 0xab, 0x3f, 0x6d, 0xca, 0xcf, 0xc4, 0xc1, 0xc2, 0xc2, 0xc4, 0xc1, 0xc0, 0xc4, 0xc1, 0xc0, 0xc5, 0xd2, 0xd4, 0xd6, 0xd8, 0xd9, 0xda, 0xdb, 0xdb, 0xd9, 0xc1, 0x9d, 0xa2, 0xa1, 0xa3, 0xa2, 0xa3, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa2, 0x9f, 0x9a, 0x9c, 0x98, 0xa1, 0x9d, 0x96, 0x9c, 0x9a, 0x98, 0x9b, 0x98, 0x8d, 0x97, 0x99, 0x98, 0x92, 0x8c, 0x8f, 0x93, 0x8d, 0x8b, 0x94, 0x94, 0x96, 0xb4, 0xd8, 0xcc, 0xcf, 0xce, 0xc4, 0xc0, 0xb5, 0xac, 0xab, 0xaa, 0x9c, 0x82, 0x6e, 0x81, 0x8a, 0x8b, 0x82, 0x7b, 0x7a, 0x77, 0x70, 0x74, 0x70, 0x6d, 0x6a, 0x67, 0x70, 0x7b, 0x7d, 0x81, 0x80, 0x71, 0x67, 0x77, 0x88, 0x83, 0x76, 0x77, 0x77, 0x7c, 0x83, 0x81, 0x78, 0x74, 0x76, 0x83, 0x7c, 0x72, 0x7c, 0x75, 0x6e, 0x68, 0x78, 0x75, 0x79, 0x85, 0x7d, 0x7a, 0x77, 0x67, 0x6f, 0x73, 0x6e, 0x6a, 0x6c, 0x71, 0x73, 0x6f, 0x68, 0x63, 0x69, 0x77, 0x89, 0x97, 0x96, 0x87, 0x78, 0x79, 0x7a, 0x75, 0x6e, 0x61, 0x4f, 0x4b, 0x56, 0x4f, 0x5b, 0x60, 0x55, 0x4b, 0x46, 0x40, 0x38, 0x47, 0x54, 0x61, 0x5c, 0x61, 0x52, 0x49, 0x40, 0x4d, 0x64, 0x5e, 0x48, 0x4c, 0x60, 0x70, 0x7a, 0x71, 0x60, 0x4f, 0x4c, 0x50, 0x4f, 0x49, 0x44, 0x44, 0x59, 0x65, 0x6a, 0x5b, 0x63, 0x58, 0x4a, 0x3c, 0x45, 0x4a, 0x48, 0x48, 0x4c, 0x4d, 0x49, 0x42, 0x45, 0x52, 0x69, 0x7b, 0x7b, 0x6b, 0x5a, 0x55, 0x5a, 0x64, 0x6c, 0x67, 0x5a, 0x54, 0x56, 0x5a, 0x5f, 0x60, 0x5b, 0x57, 0x54, 0x4c, 0x43, 0x43, 0x3c, 0x36, 0x31, 0x2b, 0x24, 0x23, 0x27, 0x2e, 0x1f, 0x17, 0x1f, 0x29, 0x2f, 0x37, 0x41, 0x42, 0x43, 0x43, 0x44, 0x46, 0x46, 0x42, 0x3c, 0x2e, 0x2b, 0x1f, 0x1a, 0x1a, 0x14, 0x1f, 0x3c, 0x5b, 0x6e, 0x5f, 0x63, 0x5c, 0x6e, 0x5b, 0x5c, 0x46, 0x42, 0x39, 0x31, 0x2d, 0x2d, 0x2d, 0x2c, 0x26, 0x28, 0x3a, 0x57, 0x63, 0x57, 0x44, 0x3b, 0x55, 0x6b, 0x77, 0x6d, 0x5f, 0x5e, 0x61, 0x61, 0x69, 0x68, 0x67, 0x66, 0x61, 0x5c, 0x5f, 0x65, 0x67, 0x69, 0x6a, 0x67, 0x65, 0x64, 0x63, 0x62, 0x5f, 0x56, 0x53, 0x5b, 0x63, 0x66, 0x67, 0x69, 0x65, 0x61, 0x5c, 0x58, 0x5a, 0x5d, 0x5e, 0x5b, 0x66, 0x67, 0x67, 0x65, 0x64, 0x64, 0x62, 0x5e, 0x65, 0x61, 0x61, 0x65, 0x68, 0x68, 0x69, 0x6b, 0x64, 0x64, 0x64, 0x68, 0x6f, 0x72, 0x6b, 0x62, 0x64, 0x73, 0x7a, 0x6e, 0x5e, 0x5b, 0x66, 0x71, 0x75, 0x6a, 0x5f, 0x60, 0x6e, 0x7a, 0x78, 0x6f, 0x72, 0x78, 0x7c, 0x76, 0x67, 0x58, 0x53, 0x55, 0x52, 0x55, 0x58, 0x5a, 0x5c, 0x5b, 0x54, 0x4b, 0x5c, 0x5a, 0x5c, 0x5f, 0x5f, 0x5d, 0x5f, 0x64, 0x69, 0x6c, 0x74, 0x7b, 0x79, 0x6f, 0x68, 0x68, 0x6f, 0x72, 0x6a, 0x5b, 0x56, 0x5e, 0x62, 0x5e, 0x54, 0x4b, 0x45, 0x48, 0x4d, 0x51, 0x57, 0x5e, 0x61, 0x66, 0x69, 0x68, 0x6e, 0x7a, 0x80, 0x7e, 0x72, 0x6d, 0x65, 0x5e, 0x56, 0x55, 0x5b, 0x63, 0x67, 0x63, 0x5c, 0x56, 0x52, 0x53, 0x56, 0x59, 0x4f, 0x50, 0x55, 0x5e, 0x63, 0x61, 0x5c, 0x59, 0x5f, 0x69, 0x70, 0x6a, 0x61, 0x65, 0x7a, 0x8f, 0x8b, 0x76, 0x63, 0x60, 0x66, 0x69, 0x66, 0x62, 0x72, 0x73, 0x6e, 0x65, 0x65, 0x6d, 0x72, 0x71, 0x78, 0x7a, 0x79, 0x73, 0x6d, 0x6b, 0x6e, 0x72, 0x71, 0x72, 0x74, 0x79, 0x80, 0x86, 0x8b, 0x8d, 0x8f, 0x94, 0x97, 0x97, 0x97, 0x99, 0x9a, 0x99, 0x9a, 0x9d, 0x9f, 0x9f, 0xa1, 0xa5, 0xa9, 0xa9, 0xaa, 0xab, 0xad, 0xad, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xaf, 0xaf, 0xae, 0xad, 0xac, 0xab, 0xa9, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa5, 0xa3, 0x9f, 0x9d, 0x9d, 0x9c, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x94, 0x8d, 0x8c, 0x8a, 0x87, 0x84, 0x80, 0x7a, 0x77, 0x72, 0x6f, 0x5a, 0x58, 0x62, 0x66, 0x7b, 0x91, 0xa4, 0xb1, 0xbe, 0xc4, 0xc9, 0xcc, 0xc7, 0xc0, 0xbb, 0xb1, 0xaa, 0xab, 0xac, 0xa6, 0x9e, 0x99, 0x99, 0x99, 0x99, 0x97, 0x97, 0x99, 0x9e, 0xa3, 0xa3, 0xa6, 0xa8, 0xa9, 0xaa, 0xb0, 0xb9, 0xc1, 0xc7, 0xc5, 0xc5, 0xc9, 0xca, 0xc4, 0xb9, 0xb1, 0xbc, 0xc3, 0xc7, 0xd4, 0xd5, 0xc9, 0xc4, 0xbb, 0xc0, 0xbd, 0xbf, 0xbe, 0xab, 0xa0, 0xbc, 0xe5, 0xdc, 0xe4, 0xea, 0xe7, 0xe1, 0xdc, 0xd6, 0xd1, 0xce, 0xc5, 0xd1, 0xd5, 0xf5, 0xe5, 0xe3, 0xda, 0xde, 0xe2, 0xe1, 0xa5, 0x3b, 0x86, 0x84, 0x7f, 0x59, 0x4c, 0x44, 0x6a, 0xb8, 0xeb, 0xef, 0xe8, 0xa7, 0x32, 0x6c, 0xc9, 0xc3, 0xcd, 0xbd, 0xc7, 0xc6, 0xc1, 0xbd, 0xbd, 0xba, 0xb7, 0xbd, 0xc7, 0xd4, 0xd5, 0xd7, 0xda, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xc7, 0x9d, 0xa0, 0xa2, 0x97, 0xa2, 0x9b, 0x9a, 0x9b, 0x9d, 0xa0, 0xa1, 0xa0, 0x9e, 0x9c, 0x9f, 0xa2, 0xa2, 0x9e, 0x9c, 0x9c, 0x9e, 0x9d, 0xa0, 0x9d, 0x9a, 0x99, 0x9b, 0x9b, 0x99, 0x96, 0x9f, 0xa3, 0xab, 0xb5, 0xbd, 0xc2, 0xc3, 0xc2, 0xc0, 0xcd, 0xd5, 0xd1, 0xce, 0xce, 0xca, 0xc4, 0xc6, 0xc2, 0xbb, 0xb0, 0xa0, 0x8f, 0x86, 0x84, 0x7e, 0x8a, 0x91, 0x89, 0x80, 0x7e, 0x7f, 0x7f, 0x70, 0x6f, 0x6f, 0x79, 0x87, 0x88, 0x83, 0x84, 0x88, 0x85, 0x78, 0x6b, 0x74, 0x87, 0x84, 0x72, 0x6e, 0x71, 0x77, 0x7b, 0x77, 0x6f, 0x70, 0x77, 0x80, 0x75, 0x73, 0x72, 0x64, 0x5d, 0x68, 0x77, 0x6a, 0x6a, 0x77, 0x88, 0x88, 0x7f, 0x88, 0x9b, 0x92, 0x7f, 0x79, 0x7e, 0x7c, 0x7b, 0x74, 0x65, 0x69, 0x66, 0x6b, 0x77, 0x7d, 0x77, 0x6e, 0x6a, 0x5e, 0x56, 0x49, 0x4e, 0x58, 0x49, 0x3d, 0x4b, 0x74, 0x7b, 0x6d, 0x53, 0x3f, 0x2e, 0x2d, 0x3b, 0x49, 0x4d, 0x56, 0x60, 0x64, 0x5f, 0x52, 0x47, 0x41, 0x4a, 0x4f, 0x4a, 0x46, 0x48, 0x4a, 0x4a, 0x4b, 0x5f, 0x65, 0x54, 0x47, 0x4d, 0x53, 0x51, 0x42, 0x48, 0x57, 0x5e, 0x5f, 0x68, 0x60, 0x45, 0x30, 0x37, 0x3b, 0x39, 0x3b, 0x3d, 0x38, 0x2f, 0x34, 0x3a, 0x74, 0x8f, 0x85, 0x4e, 0x39, 0x4e, 0x46, 0x55, 0x6e, 0x82, 0x80, 0x6f, 0x62, 0x5f, 0x68, 0x5f, 0x5a, 0x5f, 0x63, 0x5e, 0x55, 0x4f, 0x50, 0x48, 0x42, 0x42, 0x3e, 0x35, 0x31, 0x32, 0x2d, 0x2d, 0x2c, 0x27, 0x21, 0x1d, 0x20, 0x25, 0x23, 0x2a, 0x2f, 0x2d, 0x2d, 0x2d, 0x2a, 0x26, 0x15, 0x16, 0x18, 0x17, 0x14, 0x17, 0x25, 0x34, 0x40, 0x41, 0x49, 0x50, 0x53, 0x5e, 0x6b, 0x6e, 0x51, 0x3e, 0x2f, 0x39, 0x31, 0x3e, 0x3d, 0x3a, 0x3a, 0x34, 0x42, 0x4d, 0x3f, 0x3a, 0x52, 0x6c, 0x71, 0x6d, 0x68, 0x64, 0x5d, 0x57, 0x58, 0x5d, 0x64, 0x68, 0x6c, 0x6c, 0x65, 0x5e, 0x5f, 0x64, 0x64, 0x65, 0x65, 0x64, 0x64, 0x65, 0x67, 0x67, 0x6b, 0x62, 0x5c, 0x5f, 0x65, 0x6a, 0x72, 0x7b, 0x7d, 0x7c, 0x73, 0x60, 0x51, 0x50, 0x58, 0x61, 0x65, 0x67, 0x67, 0x66, 0x66, 0x65, 0x60, 0x5a, 0x56, 0x54, 0x56, 0x5c, 0x63, 0x67, 0x68, 0x68, 0x6b, 0x71, 0x77, 0x76, 0x72, 0x6b, 0x63, 0x5b, 0x5e, 0x66, 0x6b, 0x68, 0x61, 0x61, 0x6a, 0x73, 0x75, 0x6d, 0x61, 0x5a, 0x5f, 0x6a, 0x71, 0x71, 0x75, 0x79, 0x7c, 0x7a, 0x71, 0x69, 0x67, 0x68, 0x68, 0x5f, 0x5c, 0x62, 0x61, 0x56, 0x52, 0x56, 0x4e, 0x5e, 0x64, 0x5b, 0x59, 0x62, 0x63, 0x5c, 0x5c, 0x5b, 0x5d, 0x63, 0x64, 0x5f, 0x5d, 0x5f, 0x5f, 0x65, 0x64, 0x5c, 0x58, 0x5b, 0x5d, 0x5b, 0x49, 0x49, 0x4b, 0x4f, 0x52, 0x57, 0x60, 0x69, 0x69, 0x69, 0x67, 0x65, 0x66, 0x69, 0x68, 0x65, 0x68, 0x5d, 0x54, 0x53, 0x59, 0x60, 0x65, 0x69, 0x68, 0x61, 0x59, 0x55, 0x56, 0x57, 0x55, 0x52, 0x5f, 0x5a, 0x57, 0x5c, 0x61, 0x64, 0x64, 0x64, 0x62, 0x65, 0x66, 0x63, 0x5d, 0x5c, 0x5f, 0x64, 0x66, 0x61, 0x60, 0x66, 0x6d, 0x6f, 0x6e, 0x6e, 0x72, 0x74, 0x71, 0x6a, 0x69, 0x6e, 0x6e, 0x6b, 0x6e, 0x6b, 0x69, 0x69, 0x68, 0x68, 0x6a, 0x6e, 0x72, 0x74, 0x79, 0x7e, 0x84, 0x89, 0x8e, 0x90, 0x91, 0x95, 0x97, 0x98, 0x98, 0x9b, 0x9c, 0x9b, 0x9e, 0xa1, 0xa3, 0xa2, 0xa4, 0xa8, 0xab, 0xab, 0xac, 0xad, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xaf, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa8, 0xa7, 0xa6, 0xa5, 0xa4, 0xa2, 0x9f, 0x9d, 0x9d, 0x9a, 0x98, 0x96, 0x96, 0x96, 0x96, 0x95, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x89, 0x85, 0x82, 0x7f, 0x76, 0x58, 0x53, 0x62, 0x6c, 0x84, 0x9b, 0xaa, 0xb5, 0xc0, 0xc4, 0xc6, 0xc8, 0xc4, 0xbd, 0xb4, 0xb0, 0xad, 0xad, 0xa9, 0xa2, 0x9c, 0x9a, 0x95, 0x97, 0x98, 0x97, 0x96, 0x97, 0x9a, 0x9d, 0xa4, 0xa6, 0xa8, 0xa8, 0xaa, 0xb0, 0xb9, 0xc0, 0xca, 0xc9, 0xc8, 0xc8, 0xc6, 0xbe, 0xb4, 0xad, 0xb0, 0xb6, 0xbb, 0xcd, 0xd2, 0xc9, 0xc8, 0xc3, 0xbe, 0xb8, 0xb7, 0xb6, 0xa6, 0x98, 0xa9, 0xc7, 0xd7, 0xda, 0xd6, 0xcb, 0xc1, 0xbf, 0xc1, 0xc3, 0xc6, 0xbf, 0xc9, 0xcb, 0xec, 0xe4, 0xe5, 0xdc, 0xde, 0xd3, 0xe9, 0xb8, 0x3c, 0x84, 0x92, 0x58, 0x64, 0x96, 0xc6, 0xde, 0xe4, 0xdd, 0xdd, 0xe9, 0x9e, 0x31, 0x75, 0xc9, 0xb6, 0xbc, 0xb7, 0xb4, 0xb4, 0xb0, 0xaf, 0xb2, 0xb2, 0xb3, 0xbb, 0xc6, 0xd4, 0xd5, 0xd8, 0xdb, 0xdc, 0xdd, 0xdd, 0xdd, 0xe1, 0xc8, 0x9d, 0x9e, 0xa2, 0x9c, 0xa7, 0xa1, 0xa3, 0xa3, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e, 0x9e, 0x9d, 0xa1, 0xa3, 0xa2, 0xa2, 0xa4, 0xa6, 0xa6, 0xb0, 0xb0, 0xb1, 0xb7, 0xbf, 0xc7, 0xcc, 0xcd, 0xd3, 0xd3, 0xd3, 0xd2, 0xd0, 0xcc, 0xc7, 0xc3, 0xc8, 0xcf, 0xd2, 0xcf, 0xcd, 0xce, 0xcd, 0xca, 0xc3, 0xc6, 0xc4, 0xba, 0xa9, 0x96, 0x85, 0x7c, 0x70, 0x7e, 0x8d, 0x93, 0x95, 0x96, 0x90, 0x88, 0x71, 0x75, 0x71, 0x70, 0x7a, 0x85, 0x8b, 0x90, 0x90, 0x90, 0x84, 0x74, 0x77, 0x85, 0x83, 0x74, 0x72, 0x74, 0x77, 0x79, 0x75, 0x6f, 0x6a, 0x6a, 0x6c, 0x6d, 0x6a, 0x61, 0x60, 0x6f, 0x78, 0x71, 0x69, 0x72, 0x82, 0x88, 0x7a, 0x69, 0x6f, 0x81, 0x83, 0x75, 0x6d, 0x6c, 0x6a, 0x69, 0x67, 0x63, 0x6e, 0x65, 0x57, 0x4f, 0x4f, 0x51, 0x4f, 0x4c, 0x52, 0x4c, 0x4c, 0x4b, 0x46, 0x4c, 0x64, 0x7c, 0x71, 0x6c, 0x58, 0x3d, 0x2c, 0x2b, 0x3c, 0x52, 0x65, 0x62, 0x61, 0x62, 0x61, 0x58, 0x49, 0x3d, 0x3f, 0x3b, 0x3b, 0x3f, 0x40, 0x3c, 0x3b, 0x3d, 0x56, 0x65, 0x6a, 0x5c, 0x51, 0x54, 0x59, 0x58, 0x4a, 0x4b, 0x4d, 0x49, 0x4c, 0x61, 0x66, 0x55, 0x2c, 0x29, 0x27, 0x27, 0x23, 0x1e, 0x25, 0x31, 0x35, 0x4f, 0x85, 0x96, 0x89, 0x65, 0x47, 0x46, 0x69, 0x69, 0x6d, 0x71, 0x6e, 0x66, 0x66, 0x6b, 0x6e, 0x73, 0x78, 0x77, 0x6d, 0x64, 0x65, 0x6c, 0x62, 0x69, 0x64, 0x55, 0x4d, 0x4e, 0x49, 0x3f, 0x3d, 0x3e, 0x40, 0x3f, 0x3b, 0x34, 0x2d, 0x2a, 0x20, 0x1d, 0x1a, 0x19, 0x18, 0x17, 0x19, 0x1c, 0x1c, 0x18, 0x14, 0x11, 0x10, 0x16, 0x27, 0x37, 0x42, 0x3b, 0x3e, 0x4a, 0x54, 0x58, 0x50, 0x41, 0x36, 0x36, 0x35, 0x3c, 0x2c, 0x30, 0x34, 0x3f, 0x4e, 0x59, 0x61, 0x53, 0x35, 0x2d, 0x44, 0x5d, 0x6b, 0x72, 0x73, 0x6c, 0x66, 0x6a, 0x75, 0x7c, 0x62, 0x66, 0x6c, 0x6b, 0x64, 0x5f, 0x62, 0x68, 0x65, 0x62, 0x5f, 0x5d, 0x5d, 0x5e, 0x5f, 0x5f, 0x5e, 0x5e, 0x62, 0x69, 0x6b, 0x6b, 0x70, 0x76, 0x7e, 0x88, 0x8c, 0x80, 0x6b, 0x5d, 0x5a, 0x5b, 0x60, 0x60, 0x60, 0x61, 0x64, 0x63, 0x5c, 0x54, 0x50, 0x51, 0x53, 0x58, 0x61, 0x6a, 0x6e, 0x6e, 0x6b, 0x78, 0x81, 0x7d, 0x6f, 0x64, 0x5f, 0x5e, 0x5e, 0x5d, 0x61, 0x69, 0x6b, 0x6a, 0x6d, 0x73, 0x75, 0x6f, 0x65, 0x5a, 0x58, 0x5e, 0x67, 0x6d, 0x67, 0x64, 0x5e, 0x59, 0x58, 0x5d, 0x65, 0x6a, 0x68, 0x60, 0x5d, 0x5e, 0x58, 0x4b, 0x46, 0x4b, 0x57, 0x55, 0x54, 0x58, 0x60, 0x67, 0x6b, 0x6c, 0x63, 0x60, 0x5f, 0x62, 0x60, 0x5a, 0x59, 0x5b, 0x57, 0x5f, 0x65, 0x63, 0x5d, 0x58, 0x54, 0x51, 0x4d, 0x57, 0x63, 0x6e, 0x75, 0x79, 0x77, 0x73, 0x67, 0x5e, 0x57, 0x56, 0x5a, 0x5e, 0x62, 0x65, 0x61, 0x59, 0x54, 0x58, 0x60, 0x63, 0x61, 0x5f, 0x58, 0x5b, 0x5e, 0x5b, 0x57, 0x56, 0x5c, 0x62, 0x5d, 0x56, 0x51, 0x53, 0x5a, 0x61, 0x65, 0x69, 0x65, 0x62, 0x5d, 0x57, 0x54, 0x53, 0x55, 0x57, 0x5b, 0x5b, 0x5b, 0x5b, 0x59, 0x58, 0x5d, 0x63, 0x63, 0x67, 0x6a, 0x6b, 0x6e, 0x73, 0x72, 0x6d, 0x68, 0x61, 0x60, 0x68, 0x6e, 0x6e, 0x6e, 0x72, 0x70, 0x75, 0x7d, 0x83, 0x88, 0x8c, 0x90, 0x93, 0x92, 0x96, 0x99, 0x99, 0x9a, 0x9d, 0x9f, 0x9f, 0xa2, 0xa5, 0xa7, 0xa6, 0xa7, 0xab, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb1, 0xb2, 0xb3, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb0, 0xb1, 0xb0, 0xb0, 0xae, 0xac, 0xab, 0xa9, 0xa8, 0xa9, 0xa7, 0xa5, 0xa4, 0xa3, 0xa1, 0x9f, 0x9d, 0x9c, 0x99, 0x95, 0x94, 0x94, 0x95, 0x96, 0x96, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8d, 0x8a, 0x88, 0x88, 0x7b, 0x58, 0x53, 0x65, 0x75, 0x8e, 0xa3, 0xb1, 0xba, 0xc1, 0xc3, 0xc3, 0xc3, 0xbf, 0xb8, 0xac, 0xae, 0xb0, 0xad, 0xa5, 0x9c, 0x99, 0x9b, 0x96, 0x99, 0x9b, 0x9c, 0x9b, 0x9a, 0x9c, 0x9e, 0xa6, 0xa7, 0xa7, 0xa8, 0xab, 0xb1, 0xb9, 0xbe, 0xc8, 0xc8, 0xc9, 0xc8, 0xc3, 0xb8, 0xaa, 0xa0, 0x9f, 0xa2, 0xa7, 0xbf, 0xc9, 0xc2, 0xc5, 0xc5, 0xc2, 0xb9, 0xb3, 0xac, 0x9e, 0x97, 0xaf, 0xcf, 0xd0, 0xcd, 0xc6, 0xbf, 0xbb, 0xbc, 0xbc, 0xbb, 0xc3, 0xbf, 0xc5, 0xc4, 0xe5, 0xe6, 0xe9, 0xe0, 0xdc, 0xd7, 0xe5, 0xcb, 0x66, 0x56, 0x5c, 0x63, 0xc0, 0xcf, 0xd7, 0xd7, 0xd9, 0xda, 0xdf, 0xe9, 0x81, 0x2b, 0x7d, 0xc4, 0xaf, 0xb3, 0xbd, 0xb0, 0xba, 0xb7, 0xb5, 0xb7, 0xb8, 0xba, 0xc2, 0xcb, 0xd4, 0xd6, 0xd9, 0xdb, 0xdd, 0xdd, 0xdd, 0xdc, 0xe6, 0xcd, 0xa4, 0xa1, 0xa5, 0xa2, 0xad, 0xa7, 0x9e, 0x9e, 0x9f, 0x9e, 0x9d, 0x9e, 0xa2, 0xa5, 0xa6, 0xad, 0xb7, 0xc0, 0xca, 0xd5, 0xdd, 0xe0, 0xda, 0xd7, 0xd4, 0xd4, 0xd6, 0xd9, 0xda, 0xda, 0xd8, 0xd7, 0xd6, 0xd5, 0xd3, 0xd0, 0xcc, 0xc9, 0xcc, 0xce, 0xcf, 0xd0, 0xcf, 0xce, 0xcd, 0xcc, 0xc1, 0xc3, 0xc0, 0xb3, 0xa2, 0x93, 0x87, 0x7f, 0x7e, 0x82, 0x87, 0x8a, 0x8e, 0x8d, 0x80, 0x72, 0x81, 0x8d, 0x8a, 0x7d, 0x7a, 0x7c, 0x7a, 0x79, 0x8f, 0x93, 0x8a, 0x77, 0x73, 0x7e, 0x80, 0x77, 0x75, 0x78, 0x7a, 0x7c, 0x7d, 0x7b, 0x73, 0x6b, 0x57, 0x6f, 0x80, 0x73, 0x62, 0x67, 0x6f, 0x6a, 0x7a, 0x82, 0x89, 0x83, 0x72, 0x6b, 0x79, 0x8d, 0x87, 0x84, 0x78, 0x68, 0x5d, 0x58, 0x60, 0x6e, 0x6f, 0x70, 0x6c, 0x65, 0x63, 0x63, 0x59, 0x4c, 0x47, 0x42, 0x54, 0x67, 0x6c, 0x79, 0x7d, 0x6b, 0x5a, 0x52, 0x49, 0x3e, 0x38, 0x46, 0x5f, 0x6f, 0x79, 0x6e, 0x5f, 0x55, 0x4e, 0x42, 0x31, 0x24, 0x22, 0x24, 0x31, 0x41, 0x40, 0x39, 0x43, 0x57, 0x6e, 0x72, 0x73, 0x74, 0x77, 0x79, 0x72, 0x69, 0x79, 0x7c, 0x7b, 0x72, 0x70, 0x7d, 0x7e, 0x6e, 0x55, 0x40, 0x2d, 0x2a, 0x2d, 0x2d, 0x2e, 0x32, 0x45, 0x5c, 0x7e, 0x8d, 0x84, 0x75, 0x58, 0x4f, 0x4a, 0x49, 0x53, 0x69, 0x7e, 0x89, 0x8c, 0x8d, 0x85, 0x90, 0x91, 0x88, 0x8a, 0x99, 0x9f, 0x99, 0x89, 0x84, 0x7b, 0x6f, 0x61, 0x58, 0x58, 0x5c, 0x5e, 0x58, 0x4e, 0x43, 0x39, 0x2d, 0x20, 0x17, 0x18, 0x16, 0x13, 0x14, 0x1b, 0x26, 0x2d, 0x2e, 0x1e, 0x1b, 0x17, 0x14, 0x12, 0x15, 0x1f, 0x28, 0x2c, 0x1e, 0x1c, 0x27, 0x36, 0x3e, 0x35, 0x23, 0x15, 0x22, 0x24, 0x29, 0x2d, 0x3f, 0x49, 0x56, 0x6b, 0x70, 0x5f, 0x3f, 0x2e, 0x2e, 0x34, 0x37, 0x53, 0x6c, 0x81, 0x86, 0x81, 0x7c, 0x6f, 0x62, 0x5c, 0x5d, 0x5d, 0x5b, 0x57, 0x57, 0x5e, 0x64, 0x63, 0x5e, 0x5a, 0x58, 0x58, 0x58, 0x58, 0x5a, 0x5c, 0x62, 0x6c, 0x76, 0x78, 0x75, 0x74, 0x76, 0x83, 0x89, 0x8c, 0x87, 0x7d, 0x73, 0x6a, 0x64, 0x64, 0x62, 0x5f, 0x60, 0x65, 0x67, 0x62, 0x5b, 0x54, 0x59, 0x5a, 0x59, 0x5c, 0x64, 0x6b, 0x6e, 0x68, 0x75, 0x7d, 0x76, 0x66, 0x5d, 0x5e, 0x62, 0x5f, 0x5a, 0x5e, 0x6b, 0x71, 0x6d, 0x6b, 0x6f, 0x71, 0x6b, 0x62, 0x5c, 0x5b, 0x5d, 0x5e, 0x5d, 0x63, 0x61, 0x5c, 0x58, 0x5a, 0x63, 0x6d, 0x73, 0x58, 0x62, 0x65, 0x5d, 0x55, 0x53, 0x53, 0x51, 0x50, 0x52, 0x5f, 0x72, 0x7a, 0x72, 0x68, 0x65, 0x5e, 0x61, 0x68, 0x6b, 0x66, 0x5f, 0x61, 0x68, 0x65, 0x69, 0x6e, 0x6e, 0x67, 0x5f, 0x58, 0x55, 0x51, 0x56, 0x5f, 0x6d, 0x7f, 0x89, 0x83, 0x76, 0x6a, 0x5e, 0x57, 0x5c, 0x62, 0x66, 0x6b, 0x72, 0x86, 0x80, 0x7a, 0x74, 0x6d, 0x64, 0x5f, 0x5e, 0x69, 0x6e, 0x70, 0x69, 0x5d, 0x58, 0x5c, 0x63, 0x5a, 0x56, 0x54, 0x56, 0x59, 0x5c, 0x60, 0x64, 0x63, 0x65, 0x64, 0x5c, 0x53, 0x52, 0x5a, 0x63, 0x62, 0x62, 0x62, 0x61, 0x60, 0x64, 0x6d, 0x75, 0x76, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x74, 0x6c, 0x65, 0x5d, 0x5e, 0x6a, 0x6f, 0x68, 0x63, 0x66, 0x6c, 0x73, 0x7d, 0x84, 0x88, 0x8c, 0x90, 0x94, 0x94, 0x98, 0x9b, 0x9b, 0x9d, 0xa1, 0xa3, 0xa3, 0xa4, 0xa7, 0xa9, 0xa9, 0xab, 0xaf, 0xb1, 0xb1, 0xb0, 0xb1, 0xb2, 0xb2, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb3, 0xb3, 0xb3, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xad, 0xab, 0xaa, 0xa9, 0xa9, 0xa7, 0xa5, 0xa3, 0xa1, 0xa0, 0x9e, 0x9d, 0x9b, 0x98, 0x96, 0x94, 0x94, 0x95, 0x95, 0x94, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8b, 0x89, 0x87, 0x7c, 0x5c, 0x59, 0x6e, 0x7e, 0x94, 0xa4, 0xb6, 0xbd, 0xc3, 0xc3, 0xc1, 0xbe, 0xb8, 0xb2, 0xab, 0xae, 0xae, 0xa9, 0x9f, 0x98, 0x97, 0x9a, 0x99, 0x9b, 0x9e, 0x9f, 0x9e, 0x9f, 0xa1, 0xa3, 0xa8, 0xa7, 0xa7, 0xa9, 0xad, 0xb4, 0xba, 0xbf, 0xc1, 0xc3, 0xc4, 0xc5, 0xc1, 0xb5, 0xa3, 0x93, 0x97, 0x97, 0x9c, 0xb6, 0xc3, 0xbe, 0xc1, 0xc2, 0xc4, 0xc0, 0xba, 0xa9, 0x91, 0x88, 0xa0, 0xc0, 0xc9, 0xbf, 0xb6, 0xb7, 0xc0, 0xc5, 0xc1, 0xb9, 0xc5, 0xc6, 0xca, 0xca, 0xe8, 0xf2, 0xf6, 0xed, 0xeb, 0xee, 0xe5, 0xe4, 0xb4, 0x5e, 0x5c, 0xb0, 0xe1, 0xe2, 0xe1, 0xe2, 0xe8, 0xeb, 0xe7, 0xe3, 0x81, 0x4c, 0x92, 0xc1, 0xb8, 0xb7, 0xc3, 0xb8, 0xbb, 0xb8, 0xb7, 0xb8, 0xb9, 0xbb, 0xc1, 0xc8, 0xd5, 0xd7, 0xd9, 0xdb, 0xdd, 0xdd, 0xdc, 0xdb, 0xdc, 0xcb, 0xaf, 0xac, 0xb0, 0xb1, 0xba, 0xb7, 0xc6, 0xc8, 0xca, 0xca, 0xca, 0xcd, 0xd2, 0xd7, 0xdd, 0xe0, 0xe0, 0xde, 0xdc, 0xdc, 0xda, 0xd7, 0xe0, 0xde, 0xdb, 0xda, 0xda, 0xdb, 0xda, 0xd9, 0xda, 0xd8, 0xd4, 0xd2, 0xcf, 0xcc, 0xc9, 0xc7, 0xcc, 0xcb, 0xcd, 0xd2, 0xd3, 0xce, 0xc9, 0xc7, 0xc5, 0xc1, 0xbc, 0xb3, 0xa3, 0x93, 0x8c, 0x8d, 0x9a, 0x99, 0x98, 0x9a, 0x9e, 0x9d, 0x90, 0x82, 0x66, 0x77, 0x7f, 0x7f, 0x83, 0x87, 0x88, 0x8a, 0x91, 0x96, 0x8c, 0x76, 0x6a, 0x71, 0x77, 0x75, 0x69, 0x70, 0x76, 0x7a, 0x7e, 0x81, 0x7a, 0x71, 0x6f, 0x69, 0x67, 0x65, 0x62, 0x6a, 0x78, 0x7e, 0x7b, 0x80, 0x7f, 0x76, 0x6d, 0x72, 0x82, 0x91, 0x90, 0x8c, 0x77, 0x63, 0x5e, 0x5c, 0x63, 0x73, 0x61, 0x64, 0x63, 0x5e, 0x5b, 0x59, 0x54, 0x4d, 0x57, 0x64, 0x78, 0x80, 0x7c, 0x7d, 0x71, 0x59, 0x46, 0x3c, 0x3d, 0x41, 0x41, 0x4b, 0x55, 0x51, 0x42, 0x42, 0x45, 0x4d, 0x52, 0x4a, 0x36, 0x25, 0x24, 0x27, 0x31, 0x3a, 0x37, 0x38, 0x52, 0x72, 0x8e, 0x8c, 0x87, 0x7b, 0x6e, 0x68, 0x6d, 0x75, 0x78, 0x7e, 0x84, 0x85, 0x86, 0x8f, 0x96, 0x95, 0x9a, 0x9c, 0x92, 0x77, 0x5d, 0x4b, 0x40, 0x37, 0x3b, 0x3e, 0x4d, 0x73, 0x7c, 0x7b, 0x63, 0x5f, 0x78, 0x77, 0x79, 0x81, 0x85, 0x83, 0x7f, 0x7d, 0x88, 0x84, 0x8f, 0xa4, 0xa8, 0x92, 0x77, 0x6a, 0x56, 0x3f, 0x36, 0x49, 0x62, 0x69, 0x64, 0x5e, 0x47, 0x3e, 0x2f, 0x24, 0x21, 0x23, 0x23, 0x22, 0x20, 0x23, 0x1e, 0x18, 0x1f, 0x2c, 0x2a, 0x1e, 0x10, 0x12, 0x16, 0x18, 0x19, 0x1e, 0x26, 0x2d, 0x32, 0x27, 0x21, 0x20, 0x1f, 0x22, 0x21, 0x19, 0x18, 0x1d, 0x17, 0x20, 0x40, 0x55, 0x4c, 0x43, 0x53, 0x60, 0x50, 0x2e, 0x23, 0x2b, 0x38, 0x44, 0x50, 0x51, 0x4d, 0x48, 0x48, 0x4d, 0x49, 0x42, 0x63, 0x61, 0x5d, 0x59, 0x59, 0x5c, 0x60, 0x61, 0x57, 0x54, 0x54, 0x57, 0x59, 0x5a, 0x5c, 0x5f, 0x68, 0x69, 0x6b, 0x6e, 0x6f, 0x71, 0x75, 0x7a, 0x7a, 0x80, 0x87, 0x88, 0x86, 0x7f, 0x75, 0x6c, 0x69, 0x63, 0x5b, 0x59, 0x5f, 0x64, 0x62, 0x5c, 0x5c, 0x65, 0x6a, 0x65, 0x5b, 0x57, 0x5a, 0x5f, 0x68, 0x71, 0x75, 0x6d, 0x62, 0x5c, 0x5c, 0x5e, 0x5d, 0x56, 0x5a, 0x67, 0x6c, 0x68, 0x69, 0x72, 0x71, 0x65, 0x5b, 0x5b, 0x60, 0x62, 0x5b, 0x53, 0x58, 0x61, 0x6a, 0x6d, 0x6e, 0x70, 0x71, 0x70, 0x66, 0x6e, 0x6b, 0x5a, 0x4c, 0x4d, 0x53, 0x55, 0x59, 0x6b, 0x77, 0x75, 0x73, 0x73, 0x6a, 0x5b, 0x6a, 0x71, 0x79, 0x76, 0x68, 0x5d, 0x61, 0x6d, 0x78, 0x75, 0x6f, 0x6a, 0x65, 0x62, 0x62, 0x62, 0x61, 0x5f, 0x5d, 0x63, 0x76, 0x8a, 0x91, 0x8d, 0x7d, 0x73, 0x6f, 0x73, 0x73, 0x6d, 0x6c, 0x72, 0x7a, 0x75, 0x72, 0x74, 0x78, 0x7e, 0x85, 0x8c, 0x7a, 0x74, 0x6c, 0x69, 0x6a, 0x6a, 0x66, 0x62, 0x66, 0x66, 0x67, 0x67, 0x65, 0x62, 0x64, 0x68, 0x64, 0x6a, 0x6e, 0x68, 0x5d, 0x56, 0x58, 0x5d, 0x62, 0x64, 0x68, 0x6d, 0x73, 0x78, 0x7c, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x81, 0x80, 0x79, 0x72, 0x6d, 0x69, 0x6c, 0x76, 0x74, 0x66, 0x5e, 0x5f, 0x6b, 0x72, 0x7c, 0x84, 0x89, 0x8d, 0x91, 0x95, 0x96, 0x9a, 0x9d, 0x9e, 0xa0, 0xa3, 0xa5, 0xa5, 0xa4, 0xa7, 0xaa, 0xab, 0xad, 0xb1, 0xb3, 0xb3, 0xb1, 0xb2, 0xb3, 0xb4, 0xb3, 0xb3, 0xb5, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb4, 0xb4, 0xb4, 0xb4, 0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xab, 0xab, 0xa9, 0xa7, 0xa4, 0xa2, 0xa1, 0x9f, 0x9d, 0x9c, 0x9a, 0x99, 0x97, 0x97, 0x96, 0x95, 0x93, 0x91, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x8e, 0x8c, 0x86, 0x7e, 0x62, 0x61, 0x77, 0x86, 0x9a, 0xa8, 0xb7, 0xbc, 0xc2, 0xc2, 0xbf, 0xb9, 0xb2, 0xac, 0xae, 0xad, 0xa8, 0xa0, 0x99, 0x96, 0x97, 0x99, 0x98, 0x99, 0x9b, 0x9c, 0x9c, 0x9f, 0xa4, 0xa8, 0xa9, 0xa9, 0xaa, 0xac, 0xb0, 0xb6, 0xbc, 0xbf, 0xc0, 0xbf, 0xbe, 0xbe, 0xbe, 0xb7, 0xa5, 0x93, 0x96, 0x95, 0x98, 0xb1, 0xbf, 0xbc, 0xc0, 0xc0, 0xb8, 0xbd, 0xc1, 0xb8, 0xa4, 0x96, 0x9b, 0xaa, 0xb8, 0xae, 0xa5, 0xa7, 0xb1, 0xbb, 0xbf, 0xbf, 0xbd, 0xc3, 0xc7, 0xc7, 0xe1, 0xed, 0xf0, 0xe9, 0xee, 0xe8, 0xe5, 0xe8, 0xda, 0xac, 0xb8, 0xd9, 0xe3, 0xe6, 0xe7, 0xe3, 0xdd, 0xe0, 0xe7, 0xea, 0xb1, 0x97, 0xb5, 0xc2, 0xc2, 0xba, 0xbf, 0xbd, 0xb9, 0xb8, 0xb9, 0xbc, 0xc0, 0xc5, 0xcb, 0xd0, 0xd7, 0xd8, 0xd9, 0xdb, 0xdb, 0xdb, 0xdb, 0xda, 0xe6, 0xe1, 0xd7, 0xd9, 0xdc, 0xdf, 0xe6, 0xe5, 0xe3, 0xe5, 0xe7, 0xe5, 0xe3, 0xe2, 0xe5, 0xe8, 0xe1, 0xe3, 0xe3, 0xe2, 0xe1, 0xe1, 0xdf, 0xdc, 0xd8, 0xd9, 0xd9, 0xdb, 0xdc, 0xdc, 0xda, 0xd9, 0xd8, 0xd5, 0xd1, 0xce, 0xcc, 0xca, 0xc8, 0xc7, 0xcd, 0xcb, 0xcd, 0xd2, 0xd3, 0xce, 0xc8, 0xc5, 0xbf, 0xb8, 0xb6, 0xb4, 0xa3, 0x8b, 0x82, 0x88, 0x94, 0x96, 0x99, 0x9c, 0x9d, 0x97, 0x89, 0x7d, 0x7f, 0x82, 0x7f, 0x7c, 0x7c, 0x7a, 0x7c, 0x85, 0x98, 0x9c, 0x8f, 0x75, 0x64, 0x67, 0x6e, 0x6e, 0x68, 0x72, 0x7a, 0x7c, 0x7e, 0x7f, 0x7b, 0x74, 0x6b, 0x63, 0x69, 0x75, 0x76, 0x72, 0x71, 0x71, 0x70, 0x7c, 0x82, 0x7b, 0x71, 0x6e, 0x73, 0x76, 0x7e, 0x76, 0x60, 0x57, 0x64, 0x69, 0x66, 0x6a, 0x6e, 0x68, 0x63, 0x5e, 0x57, 0x52, 0x55, 0x5b, 0x78, 0x8c, 0x8c, 0x7d, 0x75, 0x67, 0x51, 0x43, 0x42, 0x39, 0x40, 0x4d, 0x52, 0x55, 0x4d, 0x3a, 0x29, 0x27, 0x29, 0x30, 0x38, 0x38, 0x2f, 0x25, 0x2c, 0x28, 0x24, 0x27, 0x34, 0x52, 0x7b, 0x9a, 0x9d, 0x93, 0x8a, 0x83, 0x7a, 0x6d, 0x63, 0x5f, 0x66, 0x70, 0x80, 0x8d, 0x90, 0x8c, 0x90, 0x9b, 0xa5, 0xa7, 0xa9, 0xae, 0xb6, 0xb3, 0x9c, 0x82, 0x70, 0x55, 0x3c, 0x56, 0x69, 0x79, 0x74, 0x75, 0x70, 0x6d, 0x67, 0x5c, 0x52, 0x54, 0x62, 0x71, 0x80, 0x8f, 0x92, 0x7c, 0x5e, 0x4c, 0x49, 0x4a, 0x45, 0x48, 0x47, 0x47, 0x4e, 0x52, 0x45, 0x30, 0x27, 0x27, 0x26, 0x25, 0x2b, 0x36, 0x3f, 0x42, 0x35, 0x30, 0x2b, 0x2b, 0x30, 0x31, 0x2a, 0x21, 0x33, 0x38, 0x3c, 0x3c, 0x3b, 0x3d, 0x43, 0x48, 0x43, 0x3c, 0x38, 0x30, 0x24, 0x1f, 0x1f, 0x1b, 0x1c, 0x16, 0x1b, 0x39, 0x5e, 0x57, 0x3d, 0x31, 0x50, 0x51, 0x3b, 0x22, 0x20, 0x27, 0x30, 0x3d, 0x46, 0x46, 0x4b, 0x53, 0x56, 0x50, 0x45, 0x3e, 0x64, 0x64, 0x62, 0x61, 0x62, 0x63, 0x5f, 0x5a, 0x53, 0x52, 0x55, 0x5a, 0x5b, 0x57, 0x58, 0x5c, 0x65, 0x65, 0x64, 0x62, 0x62, 0x66, 0x6d, 0x72, 0x6f, 0x7b, 0x87, 0x8a, 0x88, 0x82, 0x7c, 0x78, 0x72, 0x6b, 0x62, 0x5d, 0x61, 0x66, 0x65, 0x61, 0x66, 0x73, 0x7f, 0x7c, 0x6a, 0x57, 0x53, 0x57, 0x65, 0x69, 0x6b, 0x68, 0x64, 0x62, 0x60, 0x5d, 0x5a, 0x56, 0x59, 0x62, 0x65, 0x65, 0x6d, 0x7a, 0x78, 0x69, 0x5b, 0x5b, 0x62, 0x66, 0x61, 0x5c, 0x57, 0x61, 0x6b, 0x6d, 0x6e, 0x70, 0x6f, 0x6c, 0x73, 0x6a, 0x5f, 0x53, 0x48, 0x46, 0x53, 0x62, 0x77, 0x6e, 0x62, 0x5e, 0x67, 0x71, 0x6f, 0x66, 0x78, 0x79, 0x79, 0x72, 0x63, 0x5a, 0x61, 0x6f, 0x73, 0x6d, 0x60, 0x52, 0x4c, 0x4f, 0x56, 0x59, 0x62, 0x64, 0x65, 0x65, 0x69, 0x73, 0x7e, 0x84, 0x87, 0x7e, 0x77, 0x72, 0x6d, 0x69, 0x6f, 0x79, 0x80, 0x78, 0x73, 0x76, 0x7b, 0x7b, 0x77, 0x73, 0x6a, 0x66, 0x62, 0x62, 0x67, 0x6a, 0x69, 0x67, 0x68, 0x6b, 0x6f, 0x71, 0x6f, 0x6c, 0x6e, 0x73, 0x6c, 0x69, 0x64, 0x5e, 0x5a, 0x58, 0x57, 0x57, 0x5e, 0x60, 0x61, 0x64, 0x6a, 0x70, 0x72, 0x71, 0x6f, 0x6e, 0x70, 0x76, 0x80, 0x84, 0x82, 0x7e, 0x74, 0x73, 0x78, 0x7e, 0x7a, 0x70, 0x6b, 0x6e, 0x71, 0x76, 0x7e, 0x85, 0x8a, 0x8e, 0x93, 0x96, 0x97, 0x9c, 0xa0, 0xa1, 0xa3, 0xa6, 0xa7, 0xa6, 0xa4, 0xa8, 0xab, 0xac, 0xae, 0xb1, 0xb3, 0xb3, 0xb2, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb6, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb4, 0xb1, 0xb1, 0xb0, 0xb0, 0xae, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa4, 0xa2, 0xa1, 0x9f, 0x9c, 0x9b, 0x99, 0x98, 0x98, 0x97, 0x97, 0x94, 0x91, 0x8f, 0x8f, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x8f, 0x8e, 0x89, 0x82, 0x67, 0x67, 0x7f, 0x90, 0xa3, 0xae, 0xb6, 0xba, 0xbe, 0xbf, 0xbb, 0xb4, 0xae, 0xaa, 0xb0, 0xab, 0xa2, 0x99, 0x95, 0x97, 0x99, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0xa0, 0xa7, 0xac, 0xab, 0xad, 0xaf, 0xb1, 0xb3, 0xb7, 0xbc, 0xbf, 0xc4, 0xc1, 0xbc, 0xb9, 0xbb, 0xba, 0xad, 0x9f, 0x91, 0x90, 0x8f, 0xa3, 0xb2, 0xb5, 0xbb, 0xb9, 0xb9, 0xbd, 0xc2, 0xc5, 0xc2, 0xb9, 0xb0, 0xab, 0xa2, 0xa3, 0xa6, 0xab, 0xb0, 0xb9, 0xc5, 0xcf, 0xc9, 0xd0, 0xd0, 0xd0, 0xde, 0xe5, 0xe3, 0xde, 0xdf, 0xdd, 0xe0, 0xd9, 0xd9, 0xd6, 0xe1, 0xd2, 0xd8, 0xd5, 0xd9, 0xdd, 0xde, 0xe0, 0xdb, 0xcf, 0xd4, 0xcb, 0xc6, 0xc1, 0xc4, 0xbf, 0xc3, 0xc9, 0xc8, 0xc9, 0xcb, 0xce, 0xd3, 0xd7, 0xdc, 0xde, 0xdb, 0xdb, 0xdb, 0xda, 0xda, 0xda, 0xda, 0xda, 0xdc, 0xe0, 0xe2, 0xe2, 0xe2, 0xe2, 0xe3, 0xe2, 0xe5, 0xe6, 0xe7, 0xe6, 0xe3, 0xe1, 0xe2, 0xe3, 0xe9, 0xe9, 0xe7, 0xe4, 0xe2, 0xe1, 0xde, 0xd9, 0xdf, 0xe0, 0xe0, 0xde, 0xdb, 0xd7, 0xd2, 0xcf, 0xcd, 0xcb, 0xc9, 0xc8, 0xc9, 0xca, 0xcb, 0xcb, 0xd1, 0xd0, 0xcf, 0xcf, 0xcf, 0xce, 0xca, 0xc7, 0xc2, 0xb8, 0xb1, 0xaa, 0x98, 0x82, 0x7e, 0x86, 0xa1, 0xa1, 0x9f, 0x9a, 0x92, 0x8a, 0x83, 0x7e, 0x8a, 0x8a, 0x87, 0x86, 0x88, 0x83, 0x84, 0x8f, 0x90, 0x92, 0x86, 0x70, 0x63, 0x67, 0x6f, 0x70, 0x70, 0x78, 0x7e, 0x7e, 0x7a, 0x76, 0x71, 0x6e, 0x75, 0x76, 0x7a, 0x75, 0x6c, 0x6f, 0x77, 0x79, 0x6f, 0x81, 0x8c, 0x83, 0x71, 0x67, 0x69, 0x6e, 0x6e, 0x71, 0x6e, 0x67, 0x66, 0x65, 0x66, 0x69, 0x64, 0x58, 0x4e, 0x4c, 0x4c, 0x50, 0x5e, 0x6d, 0x82, 0x90, 0x84, 0x6f, 0x66, 0x51, 0x36, 0x30, 0x2b, 0x2d, 0x3c, 0x4d, 0x52, 0x4b, 0x37, 0x22, 0x20, 0x20, 0x23, 0x2d, 0x3c, 0x4a, 0x52, 0x55, 0x48, 0x47, 0x3d, 0x2d, 0x2a, 0x3c, 0x59, 0x6d, 0x73, 0x72, 0x79, 0x86, 0x8d, 0x88, 0x7d, 0x76, 0x74, 0x78, 0x7c, 0x7f, 0x7b, 0x71, 0x73, 0x85, 0x87, 0x89, 0x93, 0xa0, 0xa5, 0xa3, 0xa6, 0xad, 0xa9, 0x8a, 0x5b, 0x55, 0x67, 0x80, 0x85, 0x7a, 0x69, 0x61, 0x56, 0x50, 0x50, 0x54, 0x57, 0x59, 0x5e, 0x55, 0x43, 0x3a, 0x4e, 0x6e, 0x79, 0x70, 0x74, 0x7a, 0x78, 0x68, 0x52, 0x3f, 0x36, 0x33, 0x38, 0x43, 0x4d, 0x50, 0x51, 0x52, 0x4e, 0x48, 0x4d, 0x40, 0x3f, 0x4e, 0x53, 0x4c, 0x4e, 0x5b, 0x69, 0x71, 0x78, 0x79, 0x74, 0x6e, 0x68, 0x63, 0x57, 0x4c, 0x41, 0x37, 0x2b, 0x28, 0x28, 0x24, 0x1e, 0x14, 0x2b, 0x54, 0x67, 0x47, 0x3b, 0x48, 0x51, 0x3c, 0x22, 0x17, 0x1c, 0x1e, 0x1b, 0x1c, 0x23, 0x25, 0x2c, 0x32, 0x30, 0x2b, 0x2d, 0x32, 0x56, 0x5b, 0x5f, 0x60, 0x62, 0x61, 0x5b, 0x54, 0x5b, 0x5c, 0x61, 0x65, 0x5f, 0x55, 0x51, 0x54, 0x5c, 0x63, 0x68, 0x68, 0x66, 0x69, 0x71, 0x78, 0x82, 0x83, 0x81, 0x79, 0x74, 0x77, 0x7d, 0x82, 0x79, 0x75, 0x6f, 0x6c, 0x6f, 0x73, 0x71, 0x6c, 0x6c, 0x78, 0x88, 0x8b, 0x79, 0x62, 0x5c, 0x63, 0x67, 0x65, 0x61, 0x5f, 0x61, 0x63, 0x61, 0x5c, 0x58, 0x58, 0x5e, 0x64, 0x65, 0x63, 0x69, 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x5f, 0x61, 0x66, 0x6c, 0x73, 0x76, 0x75, 0x70, 0x71, 0x77, 0x78, 0x75, 0x69, 0x61, 0x5a, 0x5a, 0x5d, 0x63, 0x6c, 0x75, 0x69, 0x57, 0x4f, 0x5d, 0x6f, 0x73, 0x6e, 0x6c, 0x6c, 0x65, 0x60, 0x5e, 0x5e, 0x60, 0x69, 0x73, 0x81, 0x85, 0x7f, 0x72, 0x6a, 0x70, 0x78, 0x7a, 0x78, 0x7e, 0x87, 0x8a, 0x86, 0x80, 0x81, 0x84, 0x87, 0x82, 0x7a, 0x70, 0x67, 0x67, 0x75, 0x84, 0x84, 0x7f, 0x7d, 0x7f, 0x81, 0x7d, 0x75, 0x70, 0x6e, 0x6f, 0x6f, 0x6b, 0x65, 0x61, 0x61, 0x62, 0x62, 0x65, 0x6b, 0x73, 0x75, 0x73, 0x71, 0x71, 0x6e, 0x65, 0x59, 0x53, 0x54, 0x58, 0x5c, 0x5d, 0x5c, 0x63, 0x6a, 0x6c, 0x6f, 0x75, 0x79, 0x7a, 0x79, 0x75, 0x76, 0x7d, 0x87, 0x8b, 0x89, 0x85, 0x77, 0x76, 0x75, 0x75, 0x73, 0x71, 0x73, 0x77, 0x79, 0x7c, 0x80, 0x85, 0x8a, 0x8f, 0x93, 0x96, 0x98, 0x9d, 0xa2, 0xa3, 0xa5, 0xa7, 0xa7, 0xa6, 0xa6, 0xaa, 0xad, 0xad, 0xae, 0xb1, 0xb2, 0xb1, 0xb1, 0xb3, 0xb4, 0xb4, 0xb4, 0xb4, 0xb5, 0xb6, 0xb7, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb3, 0xb3, 0xb2, 0xb0, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa6, 0xa4, 0xa3, 0xa1, 0x9f, 0x9b, 0x99, 0x98, 0x97, 0x96, 0x95, 0x95, 0x93, 0x91, 0x90, 0x8d, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8d, 0x8c, 0x8a, 0x83, 0x68, 0x6c, 0x88, 0x9b, 0xa8, 0xae, 0xb6, 0xb7, 0xb9, 0xb9, 0xb6, 0xb1, 0xad, 0xac, 0xad, 0xa8, 0x9e, 0x95, 0x94, 0x99, 0x9c, 0x9b, 0x9c, 0x9d, 0x9d, 0x9d, 0x9f, 0xa3, 0xa9, 0xae, 0xae, 0xb2, 0xb5, 0xb7, 0xb6, 0xb7, 0xba, 0xbd, 0xc4, 0xc5, 0xc2, 0xbd, 0xbc, 0xbb, 0xb2, 0xa7, 0x94, 0x93, 0x8d, 0x99, 0xa8, 0xb2, 0xbc, 0xb7, 0xc5, 0xc4, 0xc4, 0xc5, 0xc8, 0xc5, 0xb9, 0xac, 0xa9, 0xaa, 0xaf, 0xb5, 0xbb, 0xc1, 0xcc, 0xd7, 0xe0, 0xe7, 0xe6, 0xe5, 0xea, 0xed, 0xea, 0xe9, 0xe4, 0xe8, 0xea, 0xdf, 0xe4, 0xdc, 0xd8, 0xda, 0xe2, 0xde, 0xe1, 0xe0, 0xd9, 0xdd, 0xe2, 0xdc, 0xd3, 0xd5, 0xc8, 0xc8, 0xc5, 0xc9, 0xcf, 0xd1, 0xd0, 0xd2, 0xd4, 0xd6, 0xd9, 0xdc, 0xdd, 0xdd, 0xdf, 0xde, 0xdc, 0xdb, 0xda, 0xda, 0xdb, 0xdb, 0xde, 0xe3, 0xe8, 0xe4, 0xe2, 0xe2, 0xdd, 0xda, 0xd6, 0xd6, 0xd5, 0xd5, 0xd5, 0xd5, 0xd6, 0xd6, 0xdc, 0xdd, 0xdc, 0xdb, 0xdd, 0xdf, 0xdf, 0xdc, 0xd7, 0xd8, 0xd9, 0xd9, 0xd8, 0xd5, 0xd3, 0xd2, 0xd6, 0xd3, 0xd0, 0xcd, 0xcb, 0xca, 0xc9, 0xc8, 0xcf, 0xd2, 0xd2, 0xcf, 0xcd, 0xcd, 0xc9, 0xc3, 0xc6, 0xc1, 0xb7, 0xa8, 0x97, 0x8d, 0x8f, 0x95, 0x9c, 0x99, 0x93, 0x8a, 0x81, 0x7c, 0x7d, 0x7f, 0x86, 0x90, 0x93, 0x92, 0x90, 0x89, 0x83, 0x84, 0x7d, 0x7f, 0x78, 0x6a, 0x66, 0x6f, 0x76, 0x75, 0x6f, 0x71, 0x75, 0x76, 0x72, 0x6b, 0x67, 0x68, 0x71, 0x72, 0x79, 0x7e, 0x84, 0x8a, 0x82, 0x6e, 0x75, 0x80, 0x85, 0x7d, 0x6f, 0x6a, 0x73, 0x7d, 0x82, 0x8a, 0x8e, 0x7e, 0x65, 0x5b, 0x63, 0x68, 0x5b, 0x4b, 0x3a, 0x36, 0x44, 0x5c, 0x74, 0x84, 0x7c, 0x7e, 0x74, 0x5b, 0x41, 0x31, 0x35, 0x42, 0x38, 0x45, 0x4e, 0x50, 0x4a, 0x39, 0x27, 0x20, 0x21, 0x29, 0x36, 0x44, 0x4d, 0x51, 0x52, 0x51, 0x4f, 0x54, 0x50, 0x3d, 0x2c, 0x2c, 0x3a, 0x46, 0x42, 0x58, 0x6f, 0x73, 0x66, 0x5f, 0x6b, 0x7d, 0x78, 0x78, 0x6c, 0x64, 0x6b, 0x77, 0x89, 0xa0, 0x98, 0x88, 0x81, 0x8d, 0x9f, 0xa9, 0xad, 0xaf, 0x96, 0x8e, 0x76, 0x6e, 0x7f, 0x89, 0x89, 0x6b, 0x5f, 0x58, 0x54, 0x59, 0x60, 0x5d, 0x4b, 0x39, 0x2f, 0x26, 0x38, 0x58, 0x57, 0x3c, 0x3e, 0x5b, 0x61, 0x54, 0x53, 0x63, 0x6e, 0x6c, 0x6a, 0x6d, 0x74, 0x7d, 0x84, 0x82, 0x7c, 0x76, 0x6c, 0x61, 0x59, 0x57, 0x5c, 0x64, 0x62, 0x5e, 0x6b, 0x7f, 0x92, 0x97, 0x9b, 0x9c, 0x9b, 0x96, 0x8b, 0x7f, 0x69, 0x5b, 0x4e, 0x42, 0x36, 0x31, 0x2e, 0x28, 0x30, 0x29, 0x43, 0x56, 0x56, 0x37, 0x38, 0x43, 0x23, 0x1b, 0x19, 0x19, 0x12, 0x10, 0x19, 0x21, 0x1e, 0x24, 0x29, 0x29, 0x27, 0x27, 0x2b, 0x2f, 0x57, 0x5f, 0x67, 0x69, 0x6b, 0x6b, 0x68, 0x63, 0x64, 0x66, 0x6d, 0x71, 0x68, 0x5a, 0x53, 0x56, 0x54, 0x5e, 0x66, 0x65, 0x63, 0x69, 0x77, 0x84, 0x8b, 0x88, 0x81, 0x79, 0x73, 0x6f, 0x69, 0x64, 0x6a, 0x69, 0x67, 0x68, 0x6c, 0x6f, 0x6b, 0x66, 0x68, 0x6f, 0x7f, 0x88, 0x7c, 0x67, 0x64, 0x6f, 0x71, 0x69, 0x5e, 0x56, 0x57, 0x5b, 0x5a, 0x56, 0x53, 0x59, 0x62, 0x68, 0x66, 0x5f, 0x5d, 0x60, 0x70, 0x6d, 0x69, 0x61, 0x58, 0x57, 0x64, 0x73, 0x79, 0x79, 0x74, 0x6d, 0x6e, 0x72, 0x6f, 0x67, 0x6b, 0x6d, 0x6a, 0x65, 0x69, 0x6f, 0x66, 0x55, 0x4b, 0x56, 0x5a, 0x56, 0x59, 0x68, 0x77, 0x7b, 0x7d, 0x6e, 0x61, 0x60, 0x65, 0x67, 0x68, 0x6a, 0x69, 0x7b, 0x86, 0x80, 0x7c, 0x82, 0x89, 0x89, 0x88, 0x89, 0x90, 0x99, 0x99, 0x91, 0x8c, 0x8d, 0x89, 0x8e, 0x8e, 0x85, 0x77, 0x70, 0x75, 0x7f, 0x8d, 0x88, 0x81, 0x79, 0x71, 0x6f, 0x74, 0x7b, 0x7f, 0x7b, 0x78, 0x78, 0x79, 0x77, 0x70, 0x6a, 0x65, 0x67, 0x6e, 0x78, 0x7c, 0x76, 0x6c, 0x64, 0x67, 0x64, 0x5f, 0x5b, 0x58, 0x58, 0x5b, 0x5d, 0x63, 0x75, 0x86, 0x89, 0x84, 0x7e, 0x7a, 0x77, 0x70, 0x6e, 0x70, 0x7c, 0x8b, 0x93, 0x92, 0x90, 0x8b, 0x85, 0x7c, 0x74, 0x71, 0x73, 0x77, 0x79, 0x7f, 0x80, 0x81, 0x85, 0x8a, 0x8f, 0x92, 0x94, 0x98, 0x9e, 0xa3, 0xa5, 0xa6, 0xa8, 0xa7, 0xa5, 0xa9, 0xac, 0xaf, 0xae, 0xae, 0xb0, 0xb1, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb5, 0xb6, 0xb5, 0xb3, 0xb1, 0xae, 0xab, 0xa9, 0xa7, 0xa7, 0xa6, 0xa5, 0xa3, 0xa2, 0x9f, 0x9b, 0x98, 0x97, 0x95, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8b, 0x8a, 0x88, 0x81, 0x69, 0x70, 0x91, 0xa2, 0xa9, 0xa8, 0xb6, 0xb5, 0xb5, 0xb4, 0xb1, 0xae, 0xae, 0xaf, 0xa9, 0xa5, 0x9c, 0x94, 0x94, 0x9a, 0x9e, 0x9d, 0x9c, 0x9d, 0x9e, 0x9e, 0x9f, 0xa3, 0xa8, 0xad, 0xb1, 0xb5, 0xba, 0xba, 0xb8, 0xb6, 0xb9, 0xbc, 0xbe, 0xc5, 0xc8, 0xc4, 0xbf, 0xbb, 0xb2, 0xa7, 0xa3, 0xa2, 0x97, 0x9d, 0xac, 0xba, 0xc5, 0xc0, 0xbd, 0xc2, 0xc8, 0xcd, 0xd1, 0xd2, 0xca, 0xc0, 0xc8, 0xba, 0xae, 0xad, 0xb5, 0xbf, 0xc9, 0xd1, 0xd9, 0xe0, 0xe0, 0xe4, 0xe9, 0xed, 0xec, 0xf2, 0xf3, 0xe9, 0xf1, 0xee, 0xec, 0xe5, 0xdf, 0xe7, 0xde, 0xdb, 0xe0, 0xdf, 0xd4, 0xd4, 0xd7, 0xce, 0xd0, 0xd6, 0xce, 0xd8, 0xc8, 0xcf, 0xd4, 0xcb, 0xd1, 0xd3, 0xd6, 0xd9, 0xdd, 0xe0, 0xe0, 0xde, 0xe3, 0xe1, 0xde, 0xdb, 0xda, 0xda, 0xdc, 0xdc, 0xdd, 0xe1, 0xe7, 0xe3, 0xe3, 0xe7, 0xe0, 0xdd, 0xdc, 0xda, 0xd8, 0xd7, 0xd7, 0xd8, 0xd8, 0xd8, 0xd7, 0xd8, 0xd7, 0xd7, 0xda, 0xde, 0xde, 0xdc, 0xcf, 0xd0, 0xd2, 0xd2, 0xd2, 0xd2, 0xd3, 0xd3, 0xd0, 0xce, 0xcc, 0xcb, 0xcb, 0xcb, 0xca, 0xca, 0xc8, 0xd1, 0xd5, 0xd1, 0xce, 0xcd, 0xc6, 0xbc, 0xae, 0xb7, 0xb5, 0xa5, 0x98, 0x95, 0x94, 0x90, 0x98, 0x97, 0x93, 0x8b, 0x7d, 0x71, 0x6c, 0x6b, 0x76, 0x88, 0x8e, 0x87, 0x84, 0x81, 0x7c, 0x79, 0x76, 0x79, 0x73, 0x6a, 0x6b, 0x74, 0x79, 0x76, 0x74, 0x73, 0x76, 0x7c, 0x7b, 0x75, 0x73, 0x76, 0x7b, 0x7e, 0x85, 0x83, 0x79, 0x77, 0x79, 0x76, 0x81, 0x84, 0x85, 0x83, 0x80, 0x81, 0x87, 0x8d, 0xa3, 0x9b, 0x92, 0x7e, 0x63, 0x5d, 0x60, 0x5b, 0x4d, 0x49, 0x46, 0x4a, 0x5d, 0x73, 0x79, 0x74, 0x7e, 0x62, 0x54, 0x4f, 0x40, 0x3c, 0x3e, 0x37, 0x3b, 0x49, 0x47, 0x39, 0x2c, 0x21, 0x22, 0x33, 0x44, 0x49, 0x50, 0x58, 0x62, 0x70, 0x7f, 0x8a, 0x81, 0x78, 0x66, 0x52, 0x43, 0x3f, 0x41, 0x44, 0x4c, 0x5c, 0x6e, 0x71, 0x60, 0x43, 0x26, 0x15, 0x2f, 0x43, 0x4b, 0x52, 0x69, 0x7b, 0x80, 0x86, 0x87, 0x8c, 0x8f, 0x94, 0x9f, 0xab, 0xab, 0xa2, 0xa6, 0x9e, 0x88, 0x78, 0x82, 0x7e, 0x87, 0x71, 0x56, 0x58, 0x58, 0x55, 0x4f, 0x46, 0x3c, 0x34, 0x1f, 0x1f, 0x1d, 0x1b, 0x1d, 0x27, 0x35, 0x3f, 0x51, 0x65, 0x77, 0x7c, 0x7b, 0x7d, 0x7f, 0x7d, 0x78, 0x78, 0x71, 0x62, 0x57, 0x52, 0x4a, 0x41, 0x4e, 0x63, 0x71, 0x6a, 0x64, 0x70, 0x85, 0x93, 0x87, 0x7c, 0x6b, 0x5c, 0x57, 0x55, 0x4c, 0x41, 0x48, 0x46, 0x4a, 0x4a, 0x41, 0x3a, 0x34, 0x2b, 0x2c, 0x32, 0x4b, 0x4a, 0x48, 0x3b, 0x3b, 0x29, 0x20, 0x12, 0x13, 0x1b, 0x18, 0x19, 0x1a, 0x14, 0x1a, 0x1f, 0x1f, 0x1b, 0x1e, 0x27, 0x28, 0x22, 0x5b, 0x57, 0x58, 0x61, 0x69, 0x6b, 0x6a, 0x6a, 0x65, 0x6b, 0x7c, 0x8a, 0x81, 0x68, 0x58, 0x57, 0x5f, 0x68, 0x67, 0x68, 0x73, 0x75, 0x75, 0x7e, 0x85, 0x72, 0x6e, 0x7b, 0x87, 0x90, 0x88, 0x71, 0x6a, 0x6c, 0x6b, 0x67, 0x69, 0x6e, 0x6c, 0x65, 0x5c, 0x62, 0x72, 0x74, 0x77, 0x78, 0x6a, 0x63, 0x60, 0x62, 0x60, 0x5a, 0x56, 0x58, 0x5a, 0x5a, 0x5c, 0x5c, 0x5f, 0x62, 0x5e, 0x5a, 0x5e, 0x67, 0x6e, 0x67, 0x5e, 0x5a, 0x58, 0x59, 0x5d, 0x62, 0x64, 0x6d, 0x6f, 0x6a, 0x6a, 0x71, 0x72, 0x6c, 0x70, 0x70, 0x73, 0x76, 0x73, 0x68, 0x5b, 0x52, 0x51, 0x55, 0x5f, 0x67, 0x67, 0x68, 0x73, 0x82, 0x7d, 0x84, 0x87, 0x81, 0x74, 0x66, 0x5d, 0x59, 0x5b, 0x5f, 0x64, 0x69, 0x6f, 0x75, 0x7d, 0x82, 0x8a, 0x8c, 0x8b, 0x85, 0x7c, 0x7b, 0x88, 0x98, 0xa6, 0x9f, 0x96, 0x8d, 0x85, 0x80, 0x7e, 0x7f, 0x8a, 0x95, 0x9d, 0x96, 0x88, 0x7d, 0x7a, 0x7b, 0x88, 0x8b, 0x87, 0x79, 0x6d, 0x6b, 0x6d, 0x6d, 0x6b, 0x6d, 0x75, 0x7d, 0x7b, 0x70, 0x63, 0x5d, 0x66, 0x6d, 0x6d, 0x67, 0x6a, 0x75, 0x75, 0x6b, 0x65, 0x6c, 0x6d, 0x69, 0x6a, 0x6f, 0x6e, 0x67, 0x6d, 0x71, 0x77, 0x7a, 0x7d, 0x86, 0x94, 0x9e, 0xa3, 0x97, 0x89, 0x7d, 0x76, 0x76, 0x7e, 0x86, 0x88, 0x81, 0x78, 0x85, 0x8d, 0x8c, 0x96, 0x9a, 0x9c, 0x9e, 0xa1, 0xa4, 0xa5, 0xa7, 0xa9, 0xaa, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xb1, 0xb2, 0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb8, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb4, 0xb4, 0xb3, 0xb3, 0xb2, 0xb1, 0xb0, 0xae, 0xac, 0xaa, 0xa9, 0xa7, 0xa3, 0xa0, 0x9e, 0x9b, 0x98, 0x96, 0x97, 0x95, 0x94, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8d, 0x78, 0x6f, 0x78, 0x95, 0xa9, 0xaa, 0xb5, 0xba, 0xb5, 0xaf, 0xad, 0xac, 0xab, 0xaa, 0xab, 0x9f, 0x9c, 0x98, 0x95, 0x96, 0x98, 0x9a, 0x9b, 0x9c, 0x9f, 0xa2, 0xa2, 0xa1, 0xa3, 0xa9, 0xaf, 0xaf, 0xb3, 0xb7, 0xba, 0xba, 0xba, 0xbb, 0xbc, 0xc4, 0xc8, 0xcc, 0xcd, 0xca, 0xc4, 0xbe, 0xbb, 0xb4, 0xb4, 0xb0, 0xad, 0xb7, 0xc7, 0xce, 0xcd, 0xcd, 0xce, 0xcb, 0xcd, 0xd7, 0xdb, 0xd8, 0xd7, 0xcf, 0xcc, 0xc5, 0xbe, 0xba, 0xbd, 0xc5, 0xcd, 0xd8, 0xdd, 0xe3, 0xe9, 0xec, 0xee, 0xef, 0xef, 0xe9, 0xe9, 0xe8, 0xe6, 0xe3, 0xe1, 0xe1, 0xe1, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xdb, 0xd6, 0xd2, 0xcd, 0xcd, 0xcd, 0xcc, 0xcc, 0xcd, 0xcf, 0xd0, 0xd1, 0xd6, 0xda, 0xdd, 0xe0, 0xe3, 0xe2, 0xe0, 0xe2, 0xe1, 0xdf, 0xdd, 0xdc, 0xdc, 0xdb, 0xdb, 0xda, 0xdb, 0xdd, 0xdf, 0xe0, 0xe0, 0xdf, 0xdf, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xda, 0xda, 0xd9, 0xd7, 0xd3, 0xcf, 0xd0, 0xd4, 0xd7, 0xd7, 0xd5, 0xd8, 0xd5, 0xd2, 0xd3, 0xd4, 0xd3, 0xd0, 0xce, 0xcc, 0xcb, 0xcc, 0xc8, 0xc2, 0xc5, 0xca, 0xc7, 0xd0, 0xd1, 0xc6, 0xd3, 0xd0, 0xab, 0x90, 0x7a, 0x6d, 0x7e, 0x98, 0xab, 0xa1, 0xa6, 0x93, 0x8c, 0x94, 0x9b, 0x8f, 0x78, 0x70, 0x74, 0x78, 0x7a, 0x79, 0x70, 0x72, 0x83, 0x91, 0x90, 0x87, 0x82, 0x82, 0x7d, 0x70, 0x66, 0x6c, 0x7b, 0x7d, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x80, 0x83, 0x82, 0x7f, 0x7c, 0x74, 0x6f, 0x75, 0x80, 0x84, 0x7e, 0x75, 0x84, 0x8a, 0x8f, 0x91, 0x91, 0x94, 0x96, 0x96, 0x99, 0x93, 0x89, 0x77, 0x62, 0x59, 0x59, 0x56, 0x53, 0x43, 0x46, 0x5e, 0x71, 0x75, 0x6d, 0x60, 0x54, 0x49, 0x42, 0x3f, 0x37, 0x2e, 0x33, 0x40, 0x47, 0x43, 0x36, 0x24, 0x1b, 0x26, 0x41, 0x57, 0x5b, 0x64, 0x6a, 0x6a, 0x6d, 0x74, 0x74, 0x6e, 0x69, 0x6d, 0x6c, 0x6a, 0x69, 0x5e, 0x4e, 0x47, 0x55, 0x63, 0x70, 0x6f, 0x62, 0x50, 0x3f, 0x34, 0x25, 0x31, 0x3f, 0x44, 0x42, 0x47, 0x5a, 0x6d, 0x85, 0x85, 0x81, 0x7b, 0x7e, 0x8d, 0x9e, 0xa9, 0xa4, 0x96, 0x8d, 0x86, 0x81, 0x85, 0x80, 0x6d, 0x42, 0x33, 0x2e, 0x2c, 0x23, 0x25, 0x2c, 0x2a, 0x20, 0x1f, 0x1f, 0x20, 0x1e, 0x1c, 0x20, 0x27, 0x37, 0x39, 0x3b, 0x46, 0x50, 0x49, 0x49, 0x5d, 0x6c, 0x79, 0x85, 0x83, 0x76, 0x68, 0x62, 0x62, 0x64, 0x66, 0x6d, 0x79, 0x83, 0x82, 0x73, 0x65, 0x54, 0x4b, 0x41, 0x3c, 0x42, 0x59, 0x68, 0x66, 0x6b, 0x6b, 0x68, 0x5f, 0x53, 0x4a, 0x47, 0x48, 0x48, 0x3b, 0x31, 0x36, 0x42, 0x42, 0x32, 0x21, 0x1f, 0x19, 0x14, 0x13, 0x11, 0x0f, 0x10, 0x14, 0x19, 0x1a, 0x1a, 0x1a, 0x1a, 0x19, 0x16, 0x14, 0x74, 0x65, 0x58, 0x5a, 0x64, 0x69, 0x67, 0x64, 0x5d, 0x63, 0x74, 0x83, 0x80, 0x6f, 0x62, 0x5f, 0x70, 0x6d, 0x61, 0x5f, 0x70, 0x7e, 0x88, 0x95, 0x72, 0x67, 0x69, 0x71, 0x75, 0x79, 0x75, 0x66, 0x5d, 0x6c, 0x7c, 0x7b, 0x6a, 0x59, 0x55, 0x59, 0x59, 0x52, 0x58, 0x60, 0x71, 0x7d, 0x72, 0x6b, 0x64, 0x65, 0x68, 0x6b, 0x6c, 0x69, 0x64, 0x60, 0x5c, 0x63, 0x67, 0x65, 0x60, 0x5e, 0x5e, 0x5d, 0x62, 0x63, 0x66, 0x66, 0x62, 0x5b, 0x59, 0x5a, 0x64, 0x67, 0x6e, 0x72, 0x6e, 0x68, 0x69, 0x6f, 0x6c, 0x6e, 0x6e, 0x67, 0x5d, 0x59, 0x5f, 0x67, 0x6b, 0x71, 0x7d, 0x88, 0x86, 0x7b, 0x73, 0x73, 0x7d, 0x7f, 0x7c, 0x75, 0x6f, 0x6d, 0x6d, 0x6b, 0x5a, 0x5e, 0x65, 0x6a, 0x6e, 0x71, 0x73, 0x75, 0x78, 0x7f, 0x85, 0x81, 0x7a, 0x79, 0x82, 0x8c, 0x92, 0x92, 0x93, 0x93, 0x8e, 0x85, 0x7a, 0x73, 0x7f, 0x8a, 0x97, 0x9d, 0x9c, 0x97, 0x8d, 0x85, 0x81, 0x86, 0x89, 0x86, 0x7f, 0x79, 0x72, 0x6d, 0x6d, 0x70, 0x77, 0x7c, 0x7a, 0x71, 0x6b, 0x6a, 0x79, 0x80, 0x8d, 0x97, 0x96, 0x89, 0x79, 0x6f, 0x66, 0x65, 0x62, 0x63, 0x6d, 0x78, 0x77, 0x6f, 0x57, 0x60, 0x6d, 0x78, 0x7f, 0x85, 0x8b, 0x8f, 0x9a, 0x9a, 0x9a, 0x97, 0x93, 0x92, 0x9a, 0xa2, 0x9a, 0x8e, 0x80, 0x88, 0x8f, 0x8d, 0x94, 0x96, 0x9b, 0x9d, 0xa1, 0xa3, 0xa5, 0xa7, 0xa9, 0xab, 0xad, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb5, 0xb4, 0xb3, 0xb2, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa8, 0xa5, 0xa2, 0x9f, 0x9c, 0x9a, 0x97, 0x95, 0x95, 0x94, 0x93, 0x92, 0x93, 0x93, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x88, 0x76, 0x73, 0x80, 0x9b, 0xad, 0xac, 0xb4, 0xba, 0xb9, 0xb3, 0xab, 0xaa, 0xad, 0xab, 0xa6, 0x9a, 0x98, 0x95, 0x94, 0x96, 0x98, 0x9a, 0x9b, 0x9d, 0xa1, 0xa5, 0xa7, 0xa6, 0xa7, 0xaa, 0xae, 0xb2, 0xb5, 0xbb, 0xbf, 0xc1, 0xc2, 0xc1, 0xc1, 0xc6, 0xc9, 0xcd, 0xcf, 0xcd, 0xc9, 0xc5, 0xc2, 0xbb, 0xb9, 0xb6, 0xb6, 0xbf, 0xcb, 0xd2, 0xd2, 0xd8, 0xd9, 0xd5, 0xd4, 0xdb, 0xdc, 0xd9, 0xda, 0xd9, 0xd7, 0xd3, 0xce, 0xcb, 0xcc, 0xd1, 0xd5, 0xd6, 0xd9, 0xde, 0xe2, 0xe4, 0xe6, 0xe7, 0xe9, 0xe3, 0xe4, 0xe3, 0xe1, 0xde, 0xdd, 0xdc, 0xdd, 0xdd, 0xdb, 0xda, 0xd9, 0xd7, 0xd6, 0xd3, 0xd2, 0xcb, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, 0xd0, 0xd2, 0xd5, 0xd8, 0xdc, 0xdd, 0xdf, 0xe2, 0xe1, 0xdf, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdc, 0xdd, 0xde, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xda, 0xda, 0xda, 0xd7, 0xd5, 0xd5, 0xd7, 0xd8, 0xd8, 0xd6, 0xd9, 0xd5, 0xd1, 0xd0, 0xcf, 0xcf, 0xce, 0xce, 0xcc, 0xc6, 0xc6, 0xc8, 0xc3, 0xc2, 0xca, 0xd1, 0xcd, 0xd3, 0xd2, 0xc9, 0xa8, 0x82, 0x7a, 0x7b, 0x72, 0x77, 0x8f, 0xa4, 0xa8, 0xb1, 0xab, 0xad, 0xb3, 0xa3, 0x87, 0x76, 0x7b, 0x81, 0x7e, 0x7a, 0x78, 0x74, 0x7a, 0x8d, 0x9a, 0x98, 0x90, 0x8b, 0x95, 0x91, 0x87, 0x76, 0x6e, 0x79, 0x85, 0x83, 0x6a, 0x6f, 0x75, 0x7b, 0x82, 0x8a, 0x90, 0x92, 0x8a, 0x85, 0x85, 0x8c, 0x8e, 0x84, 0x74, 0x69, 0x7c, 0x7b, 0x7a, 0x7f, 0x8a, 0x96, 0x9b, 0x9a, 0x97, 0x91, 0x88, 0x75, 0x5b, 0x4b, 0x40, 0x35, 0x38, 0x49, 0x65, 0x74, 0x6c, 0x60, 0x58, 0x50, 0x45, 0x3b, 0x34, 0x35, 0x36, 0x35, 0x3a, 0x42, 0x3b, 0x2f, 0x21, 0x1c, 0x22, 0x33, 0x47, 0x54, 0x45, 0x53, 0x51, 0x43, 0x4b, 0x6a, 0x7c, 0x78, 0x6a, 0x6d, 0x6b, 0x66, 0x62, 0x58, 0x4f, 0x4e, 0x52, 0x60, 0x6b, 0x6e, 0x6e, 0x68, 0x53, 0x3d, 0x31, 0x44, 0x4a, 0x44, 0x52, 0x76, 0x8d, 0x8d, 0x8e, 0x9a, 0x96, 0x77, 0x55, 0x50, 0x69, 0x84, 0x8d, 0x8b, 0x88, 0x7f, 0x75, 0x76, 0x7d, 0x7f, 0x6b, 0x43, 0x22, 0x1a, 0x1f, 0x24, 0x27, 0x26, 0x23, 0x27, 0x2d, 0x2f, 0x29, 0x22, 0x23, 0x27, 0x2f, 0x44, 0x46, 0x3a, 0x3d, 0x43, 0x42, 0x43, 0x49, 0x45, 0x46, 0x56, 0x6d, 0x7d, 0x7f, 0x7a, 0x6d, 0x7d, 0x8a, 0x82, 0x65, 0x4b, 0x43, 0x48, 0x46, 0x35, 0x45, 0x71, 0x89, 0x8e, 0xa1, 0xb8, 0xb4, 0xaa, 0x8f, 0x6f, 0x60, 0x5e, 0x55, 0x46, 0x2a, 0x2b, 0x31, 0x3d, 0x45, 0x41, 0x32, 0x23, 0x1e, 0x1b, 0x1b, 0x1e, 0x1e, 0x1d, 0x1f, 0x23, 0x22, 0x1f, 0x1d, 0x1b, 0x16, 0x11, 0x12, 0x17, 0x75, 0x68, 0x5d, 0x5d, 0x63, 0x67, 0x66, 0x65, 0x67, 0x69, 0x70, 0x77, 0x78, 0x70, 0x66, 0x60, 0x57, 0x57, 0x55, 0x5e, 0x72, 0x7a, 0x76, 0x75, 0x65, 0x60, 0x63, 0x69, 0x6a, 0x69, 0x62, 0x56, 0x5e, 0x5f, 0x66, 0x6d, 0x69, 0x5d, 0x58, 0x5b, 0x5f, 0x58, 0x5e, 0x62, 0x6b, 0x73, 0x70, 0x74, 0x6b, 0x66, 0x67, 0x6f, 0x73, 0x70, 0x6b, 0x6a, 0x67, 0x6b, 0x65, 0x57, 0x54, 0x5d, 0x64, 0x63, 0x64, 0x68, 0x6d, 0x6c, 0x65, 0x5e, 0x5e, 0x62, 0x5f, 0x60, 0x66, 0x6d, 0x6e, 0x6d, 0x71, 0x78, 0x79, 0x74, 0x6e, 0x6c, 0x6d, 0x6e, 0x6c, 0x69, 0x79, 0x78, 0x7c, 0x84, 0x85, 0x7b, 0x6f, 0x6a, 0x70, 0x76, 0x7a, 0x78, 0x7b, 0x81, 0x81, 0x7b, 0x79, 0x76, 0x71, 0x6b, 0x68, 0x6b, 0x71, 0x77, 0x91, 0x98, 0x9b, 0x96, 0x95, 0x9e, 0xa9, 0xb0, 0xb1, 0xa6, 0x97, 0x8d, 0x8d, 0x93, 0x9b, 0x9f, 0xa0, 0x98, 0x8e, 0x89, 0x8c, 0x93, 0x94, 0x90, 0x8b, 0x88, 0x87, 0x88, 0x89, 0x89, 0x8b, 0x8d, 0x89, 0x8c, 0x91, 0x91, 0x8b, 0x83, 0x80, 0x81, 0x84, 0x8a, 0x8f, 0x8b, 0x7e, 0x72, 0x6f, 0x71, 0x6b, 0x69, 0x68, 0x6b, 0x76, 0x81, 0x82, 0x7b, 0x8a, 0x88, 0x85, 0x82, 0x81, 0x82, 0x85, 0x86, 0x85, 0x8f, 0x9b, 0x9e, 0x97, 0x8e, 0x8d, 0x91, 0xa0, 0x91, 0x7f, 0x85, 0x8e, 0x8f, 0x96, 0x96, 0x9a, 0x9c, 0xa0, 0xa3, 0xa5, 0xa7, 0xaa, 0xac, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb4, 0xb3, 0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa8, 0xa5, 0xa1, 0x9e, 0x9c, 0x99, 0x96, 0x94, 0x95, 0x94, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x87, 0x75, 0x77, 0x86, 0x9e, 0xaf, 0xaf, 0xb5, 0xb6, 0xb8, 0xb4, 0xaa, 0xa9, 0xae, 0xaa, 0xa0, 0x95, 0x94, 0x93, 0x94, 0x97, 0x99, 0x9a, 0x9b, 0x9d, 0xa2, 0xa8, 0xab, 0xab, 0xab, 0xad, 0xaf, 0xb3, 0xb6, 0xbb, 0xc1, 0xc6, 0xc7, 0xc5, 0xc4, 0xc6, 0xc9, 0xce, 0xd1, 0xd2, 0xd1, 0xd0, 0xcf, 0xc6, 0xc1, 0xbd, 0xc2, 0xc9, 0xd0, 0xd5, 0xd9, 0xd7, 0xd9, 0xd6, 0xd5, 0xda, 0xdb, 0xda, 0xdf, 0xe0, 0xdf, 0xdd, 0xda, 0xd8, 0xd7, 0xd6, 0xd7, 0xd4, 0xd5, 0xd7, 0xd8, 0xd9, 0xda, 0xdc, 0xde, 0xde, 0xdf, 0xdf, 0xde, 0xdc, 0xdb, 0xdb, 0xdb, 0xdb, 0xd9, 0xd6, 0xd2, 0xce, 0xcd, 0xcd, 0xce, 0xcc, 0xcc, 0xcd, 0xce, 0xcf, 0xd2, 0xd6, 0xd9, 0xd9, 0xdc, 0xde, 0xdd, 0xdf, 0xe1, 0xe1, 0xdf, 0xdd, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdd, 0xdd, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xdb, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0xdb, 0xdc, 0xdc, 0xdb, 0xda, 0xd9, 0xd8, 0xd7, 0xd7, 0xd9, 0xd7, 0xd5, 0xd3, 0xd1, 0xcf, 0xce, 0xcd, 0xcd, 0xc7, 0xc4, 0xc6, 0xc8, 0xc7, 0xc6, 0xc6, 0xcc, 0xca, 0xd3, 0xbe, 0x90, 0x71, 0x67, 0x6b, 0x6b, 0x70, 0x90, 0xa0, 0xa3, 0x9d, 0x98, 0x9a, 0x96, 0x8e, 0x84, 0x86, 0x91, 0x8e, 0x81, 0x7b, 0x78, 0x77, 0x7d, 0x87, 0x8d, 0x8b, 0x86, 0x84, 0x8e, 0x8e, 0x90, 0x85, 0x73, 0x72, 0x76, 0x6d, 0x77, 0x7e, 0x85, 0x86, 0x87, 0x8a, 0x8f, 0x91, 0xa6, 0x9c, 0x95, 0x96, 0x95, 0x8f, 0x8d, 0x90, 0xa3, 0x98, 0x8c, 0x8a, 0x93, 0x9c, 0x99, 0x91, 0x91, 0x8c, 0x83, 0x6c, 0x50, 0x44, 0x46, 0x46, 0x53, 0x63, 0x75, 0x74, 0x61, 0x53, 0x4b, 0x41, 0x3d, 0x36, 0x32, 0x35, 0x3b, 0x3c, 0x3a, 0x38, 0x2c, 0x1e, 0x11, 0x0f, 0x13, 0x18, 0x1f, 0x26, 0x2f, 0x41, 0x58, 0x66, 0x6a, 0x69, 0x66, 0x62, 0x67, 0x5d, 0x54, 0x59, 0x66, 0x69, 0x5e, 0x52, 0x53, 0x54, 0x4f, 0x4f, 0x62, 0x79, 0x79, 0x69, 0x63, 0x68, 0x79, 0x8f, 0x9c, 0x9d, 0x9d, 0xa0, 0xa7, 0xad, 0xb1, 0xac, 0x9e, 0x8a, 0x75, 0x66, 0x4f, 0x55, 0x54, 0x4f, 0x4e, 0x56, 0x6d, 0x87, 0x6f, 0x58, 0x3e, 0x32, 0x2a, 0x1c, 0x16, 0x1f, 0x1f, 0x2a, 0x38, 0x41, 0x40, 0x3a, 0x38, 0x3a, 0x39, 0x36, 0x2b, 0x2c, 0x41, 0x52, 0x53, 0x51, 0x49, 0x4d, 0x4e, 0x4a, 0x47, 0x4c, 0x59, 0x65, 0x6f, 0x61, 0x54, 0x4d, 0x49, 0x4a, 0x54, 0x61, 0x76, 0x8d, 0xa2, 0xa4, 0xa7, 0xb3, 0xaf, 0x99, 0x92, 0x73, 0x55, 0x47, 0x3e, 0x34, 0x33, 0x3a, 0x3c, 0x44, 0x50, 0x58, 0x56, 0x4a, 0x3b, 0x31, 0x37, 0x3a, 0x40, 0x46, 0x48, 0x47, 0x48, 0x4b, 0x43, 0x38, 0x2e, 0x29, 0x23, 0x1d, 0x1c, 0x1f, 0x6a, 0x6a, 0x68, 0x63, 0x5d, 0x5e, 0x67, 0x6f, 0x75, 0x71, 0x6d, 0x6b, 0x6e, 0x6e, 0x67, 0x5f, 0x61, 0x58, 0x50, 0x53, 0x63, 0x6f, 0x72, 0x72, 0x6d, 0x68, 0x68, 0x6f, 0x76, 0x73, 0x66, 0x57, 0x55, 0x58, 0x5b, 0x58, 0x4e, 0x48, 0x50, 0x5c, 0x64, 0x63, 0x6f, 0x71, 0x70, 0x71, 0x6e, 0x77, 0x73, 0x67, 0x60, 0x63, 0x67, 0x67, 0x6b, 0x72, 0x7d, 0x7b, 0x6e, 0x5e, 0x5c, 0x69, 0x76, 0x79, 0x75, 0x76, 0x77, 0x75, 0x6e, 0x68, 0x68, 0x6b, 0x63, 0x67, 0x66, 0x63, 0x6c, 0x7b, 0x80, 0x7b, 0x6c, 0x73, 0x79, 0x78, 0x78, 0x81, 0x8f, 0x9a, 0x7c, 0x74, 0x70, 0x72, 0x75, 0x74, 0x70, 0x6e, 0x71, 0x7d, 0x85, 0x87, 0x8d, 0x96, 0x96, 0x8f, 0x85, 0x83, 0x7e, 0x78, 0x75, 0x7b, 0x88, 0x94, 0x91, 0x97, 0x98, 0x95, 0x9c, 0xac, 0xb5, 0xb5, 0xb0, 0xae, 0xab, 0xaa, 0xa9, 0xa7, 0x9f, 0x97, 0xa5, 0xa1, 0x9b, 0x9b, 0xa1, 0xa7, 0xa5, 0xa0, 0x9c, 0x9c, 0xa2, 0xa9, 0xa8, 0x9e, 0x97, 0x96, 0xa1, 0xa5, 0xa9, 0xa9, 0xa3, 0x9b, 0x96, 0x94, 0x97, 0x9d, 0x98, 0x89, 0x85, 0x92, 0x9c, 0x9d, 0x8c, 0x8e, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8c, 0x87, 0x88, 0x8d, 0x94, 0x9b, 0x9d, 0x9b, 0x97, 0x91, 0x97, 0xa0, 0xa4, 0xa0, 0x9d, 0xa1, 0xa7, 0xa0, 0x90, 0x7c, 0x81, 0x8c, 0x90, 0x98, 0x97, 0x99, 0x9c, 0x9f, 0xa2, 0xa5, 0xa7, 0xab, 0xad, 0xad, 0xae, 0xaf, 0xb1, 0xb2, 0xb3, 0xb4, 0xb4, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb5, 0xb4, 0xb3, 0xb1, 0xaf, 0xad, 0xac, 0xab, 0xa8, 0xa6, 0xa2, 0x9f, 0x9d, 0x9a, 0x97, 0x95, 0x96, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x76, 0x7a, 0x89, 0x9d, 0xae, 0xb1, 0xb6, 0xb0, 0xb2, 0xb1, 0xad, 0xac, 0xab, 0xa4, 0x9b, 0x95, 0x95, 0x96, 0x98, 0x9b, 0x9c, 0x9c, 0x9c, 0x9e, 0xa3, 0xa9, 0xad, 0xae, 0xaf, 0xb1, 0xb3, 0xb7, 0xb8, 0xbb, 0xc1, 0xc6, 0xc9, 0xc9, 0xc7, 0xc5, 0xc9, 0xce, 0xd2, 0xd5, 0xd7, 0xd9, 0xda, 0xd1, 0xc7, 0xc2, 0xc7, 0xcc, 0xcf, 0xd5, 0xdd, 0xde, 0xe2, 0xe0, 0xdf, 0xe1, 0xdf, 0xe0, 0xe7, 0xe0, 0xde, 0xdc, 0xda, 0xd8, 0xd4, 0xd0, 0xcd, 0xcd, 0xcf, 0xd0, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd8, 0xd9, 0xda, 0xda, 0xda, 0xd9, 0xda, 0xdb, 0xdb, 0xda, 0xd6, 0xd0, 0xcb, 0xc8, 0xc8, 0xc9, 0xce, 0xcf, 0xd1, 0xd2, 0xd4, 0xd7, 0xdc, 0xdf, 0xdc, 0xde, 0xdf, 0xde, 0xde, 0xe1, 0xe1, 0xdf, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xde, 0xdd, 0xdd, 0xdd, 0xdc, 0xdc, 0xdd, 0xdd, 0xdb, 0xdd, 0xdd, 0xdc, 0xd9, 0xd7, 0xd7, 0xd7, 0xd5, 0xd7, 0xd7, 0xd6, 0xd3, 0xd1, 0xcd, 0xca, 0xc4, 0xcc, 0xcd, 0xcb, 0xce, 0xd0, 0xd1, 0xd2, 0xce, 0xc3, 0xcc, 0xae, 0x80, 0x74, 0x70, 0x73, 0x79, 0x81, 0xa0, 0x9c, 0x9a, 0x93, 0x9c, 0xa3, 0x90, 0x89, 0x7c, 0x77, 0x82, 0x8a, 0x8c, 0x90, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x8a, 0x8e, 0x81, 0x78, 0x78, 0x74, 0x6c, 0x77, 0x84, 0x7f, 0x73, 0x81, 0x8c, 0x8b, 0x87, 0x87, 0x8a, 0x8c, 0x9f, 0x95, 0x90, 0x92, 0x92, 0x92, 0x9c, 0xa9, 0x98, 0x90, 0x86, 0x84, 0x8c, 0x92, 0x8e, 0x86, 0x8a, 0x88, 0x80, 0x66, 0x48, 0x46, 0x5b, 0x6b, 0x76, 0x6f, 0x69, 0x5f, 0x51, 0x4b, 0x47, 0x3f, 0x3e, 0x3d, 0x3d, 0x3f, 0x3f, 0x38, 0x2c, 0x21, 0x19, 0x17, 0x18, 0x1b, 0x1b, 0x1b, 0x26, 0x33, 0x5b, 0x59, 0x5b, 0x5e, 0x57, 0x4d, 0x51, 0x5d, 0x4f, 0x4c, 0x4a, 0x45, 0x40, 0x43, 0x4d, 0x51, 0x4d, 0x51, 0x53, 0x5a, 0x6e, 0x83, 0x84, 0x79, 0x6d, 0x78, 0x82, 0x86, 0x89, 0x8e, 0x8f, 0x8c, 0x9c, 0x8f, 0x7d, 0x6c, 0x5f, 0x56, 0x4c, 0x45, 0x3a, 0x3f, 0x3a, 0x37, 0x3a, 0x3a, 0x44, 0x5b, 0x65, 0x56, 0x3c, 0x31, 0x38, 0x35, 0x2d, 0x31, 0x20, 0x29, 0x37, 0x45, 0x4d, 0x4c, 0x47, 0x43, 0x40, 0x3e, 0x3e, 0x44, 0x4c, 0x52, 0x5e, 0x6c, 0x77, 0x72, 0x6b, 0x66, 0x64, 0x64, 0x64, 0x64, 0x56, 0x49, 0x41, 0x46, 0x4f, 0x5e, 0x79, 0x93, 0x9f, 0xa3, 0xad, 0xb7, 0xb7, 0xa4, 0x74, 0x41, 0x2f, 0x34, 0x2f, 0x2e, 0x47, 0x6c, 0x79, 0x6e, 0x6f, 0x6b, 0x64, 0x5b, 0x56, 0x57, 0x5d, 0x62, 0x5e, 0x65, 0x6f, 0x75, 0x77, 0x75, 0x74, 0x75, 0x75, 0x6d, 0x63, 0x5a, 0x53, 0x4a, 0x3e, 0x33, 0x6c, 0x72, 0x73, 0x69, 0x5c, 0x5a, 0x65, 0x71, 0x6e, 0x6b, 0x66, 0x65, 0x6b, 0x70, 0x6b, 0x62, 0x5b, 0x56, 0x57, 0x5e, 0x68, 0x71, 0x74, 0x72, 0x81, 0x7b, 0x75, 0x75, 0x7a, 0x77, 0x6c, 0x63, 0x51, 0x55, 0x55, 0x53, 0x55, 0x5b, 0x5f, 0x5f, 0x66, 0x64, 0x6e, 0x73, 0x78, 0x7b, 0x73, 0x75, 0x79, 0x6c, 0x64, 0x64, 0x65, 0x65, 0x6d, 0x77, 0x80, 0x7e, 0x78, 0x71, 0x6d, 0x6e, 0x71, 0x73, 0x78, 0x79, 0x7b, 0x7e, 0x7c, 0x75, 0x6f, 0x6d, 0x73, 0x78, 0x77, 0x6f, 0x71, 0x7b, 0x7e, 0x7a, 0x60, 0x63, 0x6d, 0x82, 0x99, 0x9f, 0x8d, 0x77, 0x74, 0x6f, 0x6c, 0x6c, 0x6e, 0x6d, 0x6c, 0x6b, 0x6f, 0x75, 0x76, 0x71, 0x73, 0x7e, 0x85, 0x86, 0x82, 0x8a, 0x92, 0x91, 0x8b, 0x87, 0x8a, 0x8e, 0x88, 0x8f, 0x96, 0x9f, 0xaf, 0xbd, 0xbd, 0xb4, 0xb8, 0xb0, 0xa5, 0x9f, 0xa5, 0xb2, 0xba, 0xbc, 0xae, 0xb5, 0xbc, 0xc1, 0xc2, 0xc0, 0xba, 0xb4, 0xc2, 0xb9, 0xb0, 0xa9, 0x9e, 0x96, 0x96, 0x9c, 0x93, 0x98, 0x9e, 0xa3, 0xa3, 0x9f, 0x98, 0x92, 0x92, 0x98, 0x97, 0x94, 0x9b, 0xa4, 0x9e, 0x8e, 0x92, 0x93, 0x95, 0x97, 0x98, 0x9a, 0x9e, 0xa3, 0x9f, 0x9d, 0x9b, 0x9e, 0xa1, 0x9f, 0x97, 0x90, 0x9f, 0x9b, 0x97, 0x95, 0x96, 0x9a, 0xa2, 0xaa, 0xa5, 0x96, 0x81, 0x83, 0x8c, 0x8f, 0x97, 0x94, 0x99, 0x9b, 0x9e, 0xa1, 0xa4, 0xa7, 0xab, 0xad, 0xad, 0xae, 0xb0, 0xb1, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb9, 0xb9, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb5, 0xb4, 0xb2, 0xb0, 0xae, 0xac, 0xaa, 0xaa, 0xa8, 0xa5, 0xa2, 0x9e, 0x9c, 0x99, 0x97, 0x95, 0x94, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x89, 0x86, 0x75, 0x7f, 0x8f, 0x9e, 0xad, 0xaf, 0xb1, 0xae, 0xac, 0xad, 0xb0, 0xad, 0xa2, 0x99, 0x96, 0x99, 0x9a, 0x9b, 0x9e, 0xa1, 0xa2, 0xa1, 0x9f, 0xa1, 0xa4, 0xa9, 0xac, 0xae, 0xb1, 0xb4, 0xb7, 0xbd, 0xbd, 0xbd, 0xc1, 0xc6, 0xca, 0xcb, 0xcb, 0xc7, 0xca, 0xcf, 0xd3, 0xd5, 0xd7, 0xda, 0xdb, 0xd8, 0xcb, 0xc3, 0xc5, 0xc8, 0xc8, 0xcf, 0xda, 0xe0, 0xe3, 0xe1, 0xdf, 0xdc, 0xd5, 0xd3, 0xdb, 0xdb, 0xd9, 0xd6, 0xd2, 0xce, 0xc9, 0xc4, 0xc1, 0xc1, 0xc3, 0xc7, 0xc9, 0xcb, 0xcc, 0xce, 0xcf, 0xd1, 0xd3, 0xd5, 0xd6, 0xd6, 0xd6, 0xd7, 0xd8, 0xda, 0xda, 0xd8, 0xd4, 0xcf, 0xcc, 0xcc, 0xcd, 0xd0, 0xd1, 0xd3, 0xd4, 0xd6, 0xd9, 0xdd, 0xdf, 0xdd, 0xdf, 0xdf, 0xde, 0xde, 0xe1, 0xe2, 0xe0, 0xe1, 0xe1, 0xe0, 0xe0, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xdf, 0xde, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xde, 0xda, 0xdc, 0xde, 0xdd, 0xda, 0xd7, 0xd7, 0xd8, 0xd1, 0xd4, 0xd3, 0xd0, 0xcf, 0xce, 0xcb, 0xc6, 0xc2, 0xc5, 0xc1, 0xb7, 0xac, 0xa1, 0xac, 0xc8, 0xd1, 0xca, 0xc9, 0x96, 0x65, 0x71, 0x8d, 0xa3, 0xc4, 0xbe, 0xbd, 0x94, 0x84, 0x84, 0x94, 0x98, 0x9c, 0x9c, 0x91, 0x89, 0x91, 0x98, 0x90, 0x86, 0x7c, 0x81, 0x83, 0x7f, 0x7b, 0x7e, 0x86, 0x8e, 0x9a, 0x8e, 0x86, 0x7b, 0x6f, 0x70, 0x76, 0x74, 0x70, 0x80, 0x8a, 0x85, 0x7b, 0x79, 0x7d, 0x80, 0x7b, 0x88, 0xa0, 0xb3, 0xb0, 0x9c, 0x8a, 0x84, 0x84, 0x82, 0x7f, 0x7e, 0x83, 0x89, 0x8b, 0x89, 0x8b, 0x87, 0x7d, 0x66, 0x4e, 0x4f, 0x63, 0x6f, 0x68, 0x5c, 0x57, 0x53, 0x46, 0x3d, 0x40, 0x43, 0x42, 0x44, 0x46, 0x44, 0x3c, 0x2f, 0x20, 0x16, 0x16, 0x17, 0x19, 0x19, 0x14, 0x14, 0x21, 0x30, 0x32, 0x3c, 0x3f, 0x37, 0x32, 0x37, 0x3c, 0x3b, 0x4c, 0x43, 0x42, 0x42, 0x42, 0x50, 0x63, 0x69, 0x60, 0x5e, 0x5c, 0x59, 0x57, 0x55, 0x53, 0x52, 0x65, 0x5f, 0x5d, 0x62, 0x6a, 0x71, 0x7b, 0x85, 0x77, 0x70, 0x62, 0x50, 0x3e, 0x32, 0x2f, 0x31, 0x37, 0x42, 0x49, 0x4f, 0x53, 0x49, 0x45, 0x50, 0x5a, 0x61, 0x51, 0x3c, 0x3a, 0x3b, 0x39, 0x3c, 0x38, 0x3a, 0x42, 0x50, 0x5d, 0x61, 0x59, 0x4f, 0x42, 0x48, 0x4f, 0x54, 0x5a, 0x60, 0x5e, 0x54, 0x40, 0x38, 0x36, 0x42, 0x54, 0x5d, 0x58, 0x4f, 0x46, 0x3f, 0x41, 0x50, 0x60, 0x70, 0x8a, 0xa2, 0xab, 0xa8, 0xab, 0xa0, 0x77, 0x4a, 0x32, 0x2a, 0x32, 0x27, 0x30, 0x51, 0x6e, 0x76, 0x76, 0x78, 0x70, 0x6d, 0x68, 0x66, 0x67, 0x6b, 0x70, 0x73, 0x75, 0x7f, 0x8a, 0x91, 0x92, 0x90, 0x8f, 0x8d, 0x8e, 0x92, 0x8c, 0x7b, 0x6c, 0x63, 0x54, 0x44, 0x69, 0x73, 0x7b, 0x7a, 0x72, 0x6b, 0x66, 0x64, 0x62, 0x61, 0x62, 0x67, 0x6d, 0x6e, 0x67, 0x5e, 0x59, 0x51, 0x4f, 0x52, 0x57, 0x68, 0x7a, 0x7f, 0x87, 0x85, 0x78, 0x6c, 0x68, 0x62, 0x5e, 0x62, 0x64, 0x5b, 0x52, 0x56, 0x6a, 0x7c, 0x78, 0x6a, 0x6e, 0x70, 0x79, 0x73, 0x70, 0x73, 0x6e, 0x72, 0x76, 0x70, 0x6e, 0x71, 0x72, 0x71, 0x73, 0x78, 0x7d, 0x7d, 0x7b, 0x76, 0x6f, 0x69, 0x67, 0x67, 0x6d, 0x6a, 0x6c, 0x74, 0x7c, 0x7e, 0x7d, 0x7b, 0x7b, 0x80, 0x87, 0x88, 0x7f, 0x76, 0x78, 0x80, 0x7a, 0x79, 0x75, 0x6e, 0x70, 0x79, 0x81, 0x83, 0x74, 0x73, 0x71, 0x70, 0x71, 0x73, 0x76, 0x78, 0x83, 0x86, 0x86, 0x82, 0x7f, 0x82, 0x86, 0x88, 0x8a, 0x93, 0x9c, 0x9c, 0x94, 0x88, 0x81, 0x7e, 0x85, 0x89, 0x90, 0x9d, 0xb1, 0xc2, 0xc5, 0xc0, 0xb1, 0xb0, 0xac, 0xaa, 0xb1, 0xbd, 0xc2, 0xc2, 0xbc, 0xc0, 0xc2, 0xbc, 0xb5, 0xb2, 0xb4, 0xb5, 0xb2, 0xb6, 0xba, 0xbb, 0xb3, 0xa6, 0x9d, 0x9a, 0xa3, 0xa7, 0xab, 0xae, 0xb0, 0xaf, 0xa9, 0xa3, 0x94, 0x9c, 0xa5, 0xa7, 0xa1, 0x98, 0x95, 0x97, 0x94, 0x8b, 0x87, 0x8d, 0x96, 0x9c, 0xa1, 0xa5, 0xa2, 0x9c, 0x98, 0x9a, 0xa2, 0xa7, 0xa7, 0xa4, 0xa0, 0x9b, 0x99, 0x9e, 0xa2, 0xa0, 0x9a, 0x96, 0x9c, 0x92, 0x81, 0x83, 0x8a, 0x8e, 0x96, 0x95, 0x99, 0x9b, 0x9e, 0xa1, 0xa3, 0xa7, 0xaa, 0xad, 0xac, 0xad, 0xaf, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb6, 0xb7, 0xb7, 0xb8, 0xb8, 0xb8, 0xb7, 0xb8, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb3, 0xb2, 0xb0, 0xae, 0xab, 0xaa, 0xa8, 0xa8, 0xa6, 0xa3, 0xa0, 0x9d, 0x9a, 0x98, 0x95, 0x93, 0x90, 0x8f, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x80, 0x72, 0x84, 0x99, 0xa2, 0xac, 0xab, 0xa9, 0xae, 0xaa, 0xab, 0xb0, 0xa9, 0x99, 0x90, 0x92, 0x9b, 0x9d, 0x9f, 0xa3, 0xa7, 0xa8, 0xa8, 0xa7, 0xa6, 0xa8, 0xab, 0xad, 0xb0, 0xb3, 0xb7, 0xba, 0xc0, 0xbe, 0xbd, 0xbe, 0xc1, 0xc4, 0xc6, 0xc8, 0xc9, 0xcc, 0xd0, 0xd2, 0xd4, 0xd4, 0xd6, 0xd6, 0xd9, 0xcc, 0xc2, 0xc0, 0xbf, 0xc0, 0xc6, 0xd0, 0xd1, 0xd4, 0xd5, 0xd4, 0xd1, 0xc7, 0xc3, 0xca, 0xd0, 0xcf, 0xcc, 0xc8, 0xc3, 0xbf, 0xbb, 0xb9, 0xb7, 0xba, 0xbf, 0xc4, 0xc7, 0xca, 0xcd, 0xcf, 0xd0, 0xd2, 0xd4, 0xd5, 0xd5, 0xd5, 0xd6, 0xd6, 0xd6, 0xd7, 0xd7, 0xd7, 0xd6, 0xd5, 0xd6, 0xd6, 0xd1, 0xd3, 0xd5, 0xd6, 0xd7, 0xd9, 0xda, 0xdc, 0xdd, 0xdf, 0xdf, 0xde, 0xdf, 0xe1, 0xe2, 0xe0, 0xe0, 0xe0, 0xe0, 0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdd, 0xde, 0xde, 0xdf, 0xdf, 0xe0, 0xe0, 0xe0, 0xdf, 0xde, 0xdd, 0xdd, 0xdc, 0xdd, 0xde, 0xde, 0xda, 0xdc, 0xdd, 0xdc, 0xda, 0xd8, 0xd8, 0xd8, 0xd4, 0xd4, 0xd0, 0xcb, 0xcb, 0xcd, 0xca, 0xc5, 0xbe, 0xa3, 0x89, 0x85, 0x7f, 0x6d, 0x7d, 0xac, 0xd0, 0xd2, 0xc0, 0x84, 0x5e, 0x7d, 0xaa, 0xbf, 0xc4, 0xbe, 0xb8, 0x95, 0x87, 0x8f, 0x90, 0x86, 0x87, 0x90, 0x88, 0x78, 0x77, 0x7e, 0x7e, 0x7c, 0x7e, 0x8a, 0x91, 0x8b, 0x83, 0x83, 0x88, 0x8d, 0x81, 0x84, 0x83, 0x7e, 0x76, 0x6f, 0x6e, 0x74, 0x76, 0x86, 0x8e, 0x84, 0x78, 0x76, 0x7d, 0x81, 0x9c, 0x9e, 0xa1, 0xa1, 0x9b, 0x94, 0x92, 0x95, 0x90, 0x8f, 0x8a, 0x84, 0x82, 0x85, 0x88, 0x89, 0x94, 0x87, 0x78, 0x69, 0x60, 0x67, 0x72, 0x74, 0x5b, 0x4c, 0x48, 0x4a, 0x44, 0x3e, 0x42, 0x47, 0x48, 0x49, 0x4a, 0x45, 0x39, 0x2b, 0x23, 0x22, 0x26, 0x20, 0x1a, 0x18, 0x1b, 0x23, 0x2a, 0x2e, 0x37, 0x37, 0x34, 0x2f, 0x31, 0x3b, 0x48, 0x50, 0x3d, 0x2b, 0x2f, 0x46, 0x5e, 0x74, 0x75, 0x62, 0x61, 0x58, 0x4d, 0x49, 0x4d, 0x5b, 0x75, 0x8b, 0x73, 0x55, 0x4b, 0x5f, 0x6b, 0x61, 0x61, 0x6e, 0x6a, 0x5f, 0x52, 0x4a, 0x47, 0x47, 0x49, 0x4b, 0x54, 0x5c, 0x5f, 0x59, 0x4d, 0x3e, 0x39, 0x3f, 0x5d, 0x75, 0x74, 0x52, 0x35, 0x2e, 0x33, 0x37, 0x40, 0x42, 0x4a, 0x59, 0x6b, 0x75, 0x6f, 0x66, 0x55, 0x40, 0x3a, 0x49, 0x56, 0x56, 0x44, 0x2e, 0x28, 0x2e, 0x36, 0x3f, 0x45, 0x4a, 0x4d, 0x4f, 0x3f, 0x35, 0x39, 0x56, 0x78, 0x8b, 0x91, 0x91, 0x96, 0x8b, 0x75, 0x5a, 0x4c, 0x4f, 0x48, 0x33, 0x43, 0x5c, 0x6d, 0x6a, 0x69, 0x6f, 0x6b, 0x5e, 0x71, 0x74, 0x79, 0x7d, 0x7b, 0x74, 0x6b, 0x65, 0x81, 0x8b, 0x96, 0x9d, 0xa0, 0xa1, 0xa0, 0x9d, 0x98, 0x9b, 0x8f, 0x73, 0x5f, 0x5c, 0x5f, 0x5f, 0x67, 0x74, 0x82, 0x86, 0x82, 0x77, 0x6a, 0x5f, 0x62, 0x61, 0x64, 0x69, 0x6c, 0x69, 0x61, 0x5c, 0x50, 0x53, 0x63, 0x71, 0x70, 0x73, 0x73, 0x6b, 0x78, 0x79, 0x6d, 0x64, 0x66, 0x64, 0x62, 0x69, 0x73, 0x6f, 0x69, 0x63, 0x62, 0x66, 0x6a, 0x6c, 0x74, 0x7b, 0x81, 0x72, 0x68, 0x6c, 0x6a, 0x6d, 0x6b, 0x69, 0x69, 0x6d, 0x72, 0x77, 0x77, 0x76, 0x85, 0x89, 0x86, 0x7a, 0x73, 0x75, 0x77, 0x77, 0x6d, 0x6a, 0x6c, 0x76, 0x81, 0x87, 0x88, 0x89, 0x7f, 0x84, 0x8d, 0x91, 0x8a, 0x80, 0x7e, 0x83, 0x84, 0x81, 0x7b, 0x76, 0x7c, 0x87, 0x8a, 0x86, 0x8c, 0x8c, 0x8a, 0x89, 0x8a, 0x8f, 0x94, 0x96, 0x8b, 0x8e, 0x95, 0x9c, 0x9b, 0x92, 0x89, 0x85, 0x8c, 0x90, 0x96, 0x9c, 0x9e, 0x9d, 0x9a, 0x97, 0x9f, 0x9c, 0x9a, 0x9f, 0xa9, 0xb3, 0xb9, 0xbb, 0xae, 0xb0, 0xac, 0xa6, 0xa5, 0xa9, 0xa7, 0xa2, 0xa4, 0xa9, 0xad, 0xab, 0xa7, 0xa7, 0xa8, 0xa9, 0xb6, 0xb6, 0xb3, 0xb0, 0xb0, 0xb4, 0xb7, 0xb7, 0xa4, 0xa4, 0xa1, 0x9a, 0x97, 0x99, 0x9a, 0x98, 0x8d, 0x9d, 0xab, 0xa9, 0x9c, 0x96, 0xa4, 0xb6, 0xa9, 0x9e, 0x97, 0x99, 0x9a, 0x97, 0x95, 0x97, 0x94, 0x96, 0x9c, 0xa7, 0xb0, 0xb0, 0xa6, 0x9d, 0x88, 0x89, 0x92, 0xa2, 0xad, 0xa8, 0x99, 0x8c, 0x8a, 0x86, 0x7c, 0x81, 0x88, 0x8c, 0x97, 0x97, 0x9a, 0x9b, 0x9e, 0xa0, 0xa3, 0xa6, 0xaa, 0xad, 0xab, 0xad, 0xaf, 0xb1, 0xb3, 0xb4, 0xb4, 0xb4, 0xb6, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb7, 0xb8, 0xb9, 0xb8, 0xb8, 0xb6, 0xb6, 0xb4, 0xb3, 0xb1, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa6, 0xa3, 0x9f, 0x9c, 0x9a, 0x97, 0x94, 0x92, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8c, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x7e, 0x71, 0x87, 0x9d, 0xa3, 0xac, 0xab, 0xa6, 0xab, 0xaa, 0xab, 0xa9, 0xa0, 0x95, 0x91, 0x94, 0x9a, 0x9c, 0xa0, 0xa5, 0xab, 0xaf, 0xb0, 0xb0, 0xac, 0xae, 0xb0, 0xb2, 0xb4, 0xb7, 0xb9, 0xbb, 0xbf, 0xbf, 0xbe, 0xbd, 0xbd, 0xbe, 0xc0, 0xc1, 0xc7, 0xca, 0xce, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd7, 0xcd, 0xc2, 0xbb, 0xb8, 0xb9, 0xbe, 0xc4, 0xcb, 0xd0, 0xd2, 0xd5, 0xd3, 0xc7, 0xc0, 0xc6, 0xc7, 0xc9, 0xc9, 0xc7, 0xc2, 0xbe, 0xbb, 0xbb, 0xbb, 0xbd, 0xbf, 0xc2, 0xc5, 0xc9, 0xcd, 0xd0, 0xd3, 0xd4, 0xd6, 0xd6, 0xd5, 0xd4, 0xd4, 0xd4, 0xd3, 0xd2, 0xd3, 0xd4, 0xd7, 0xda, 0xdb, 0xdb, 0xd7, 0xd9, 0xdc, 0xdc, 0xdc, 0xdb, 0xdb, 0xdb, 0xdd, 0xdf, 0xe0, 0xdf, 0xdf, 0xe1, 0xe0, 0xde, 0xdd, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdc, 0xde, 0xde, 0xde, 0xde, 0xde, 0xdf, 0xe0, 0xe0, 0xdf, 0xde, 0xdd, 0xdc, 0xdc, 0xdd, 0xdd, 0xde, 0xdb, 0xdb, 0xdb, 0xd9, 0xd8, 0xd6, 0xd5, 0xd5, 0xd4, 0xd4, 0xd1, 0xcc, 0xcd, 0xce, 0xc7, 0xbc, 0x98, 0x81, 0x69, 0x6c, 0x76, 0x71, 0x87, 0xb9, 0xcd, 0xd7, 0xb4, 0x7c, 0x6e, 0x98, 0xc1, 0xc1, 0xbe, 0xc1, 0xc1, 0xab, 0x93, 0x92, 0x81, 0x73, 0x72, 0x88, 0x95, 0x94, 0x8f, 0x87, 0x7e, 0x7b, 0x7e, 0x8d, 0x96, 0x8d, 0x80, 0x7b, 0x7b, 0x7b, 0x82, 0x84, 0x78, 0x6f, 0x6f, 0x64, 0x5e, 0x6a, 0x6e, 0x82, 0x90, 0x8b, 0x82, 0x84, 0x8c, 0x8f, 0x95, 0x9b, 0xa0, 0x9e, 0x99, 0x95, 0x8f, 0x8a, 0x85, 0x84, 0x81, 0x80, 0x83, 0x87, 0x87, 0x84, 0x93, 0x88, 0x7f, 0x78, 0x73, 0x76, 0x77, 0x70, 0x57, 0x46, 0x3e, 0x41, 0x45, 0x4b, 0x4e, 0x4b, 0x4f, 0x4d, 0x4d, 0x49, 0x3a, 0x29, 0x25, 0x2b, 0x27, 0x25, 0x24, 0x2d, 0x43, 0x57, 0x59, 0x51, 0x38, 0x33, 0x36, 0x40, 0x46, 0x44, 0x46, 0x4c, 0x49, 0x42, 0x51, 0x64, 0x6a, 0x72, 0x72, 0x60, 0x5c, 0x52, 0x46, 0x40, 0x46, 0x57, 0x6a, 0x77, 0x69, 0x5c, 0x44, 0x31, 0x36, 0x47, 0x49, 0x3e, 0x45, 0x48, 0x4b, 0x49, 0x41, 0x3a, 0x3c, 0x42, 0x3f, 0x42, 0x46, 0x42, 0x3a, 0x3e, 0x47, 0x4b, 0x63, 0x67, 0x5f, 0x46, 0x34, 0x38, 0x3d, 0x37, 0x37, 0x3f, 0x4b, 0x57, 0x62, 0x68, 0x66, 0x60, 0x5a, 0x47, 0x44, 0x47, 0x3a, 0x2b, 0x27, 0x26, 0x29, 0x27, 0x28, 0x30, 0x39, 0x3d, 0x39, 0x34, 0x37, 0x46, 0x61, 0x7a, 0x86, 0x84, 0x7c, 0x77, 0x6d, 0x63, 0x5f, 0x59, 0x48, 0x39, 0x31, 0x2c, 0x39, 0x47, 0x5b, 0x66, 0x62, 0x5d, 0x67, 0x77, 0x76, 0x77, 0x75, 0x6e, 0x68, 0x67, 0x6c, 0x72, 0x83, 0x8b, 0x95, 0x9c, 0xa1, 0xa5, 0xa4, 0xa0, 0x9e, 0x93, 0x83, 0x73, 0x68, 0x67, 0x6c, 0x72, 0x74, 0x7e, 0x86, 0x82, 0x79, 0x71, 0x6c, 0x68, 0x67, 0x64, 0x64, 0x69, 0x6a, 0x65, 0x62, 0x61, 0x65, 0x65, 0x72, 0x7a, 0x74, 0x73, 0x72, 0x67, 0x65, 0x67, 0x62, 0x68, 0x7d, 0x84, 0x80, 0x83, 0x81, 0x75, 0x6e, 0x72, 0x76, 0x72, 0x6c, 0x69, 0x70, 0x70, 0x72, 0x67, 0x6c, 0x7b, 0x73, 0x6a, 0x62, 0x5e, 0x59, 0x5b, 0x66, 0x72, 0x76, 0x74, 0x7c, 0x89, 0x8b, 0x7d, 0x77, 0x81, 0x85, 0x80, 0x7a, 0x7c, 0x84, 0x8f, 0x94, 0x91, 0x89, 0x83, 0x87, 0x8c, 0x8d, 0x89, 0x8b, 0x8f, 0x88, 0x7b, 0x86, 0x94, 0x9c, 0x95, 0x8b, 0x8a, 0x8e, 0x90, 0x99, 0x9d, 0xa0, 0xa1, 0xa1, 0xa0, 0x9d, 0x9a, 0x94, 0x95, 0x9f, 0xad, 0xb0, 0xa3, 0x95, 0x8f, 0x96, 0x96, 0x9b, 0xa5, 0xb0, 0xb3, 0xad, 0xa7, 0xac, 0xa7, 0xa1, 0x9c, 0x95, 0x8d, 0x89, 0x89, 0x94, 0x9a, 0x9c, 0x9b, 0x9e, 0xa5, 0xa7, 0xa3, 0xa7, 0xa7, 0xa4, 0xa0, 0xa0, 0xa4, 0xa8, 0xaa, 0xab, 0xaa, 0xa5, 0x9f, 0xa1, 0xa6, 0xa6, 0xa1, 0xa2, 0xa0, 0x97, 0x89, 0x83, 0x87, 0x8f, 0x94, 0x94, 0xa6, 0xb0, 0xa9, 0xa2, 0xa3, 0xa2, 0x9b, 0x95, 0x93, 0x98, 0x9e, 0x9c, 0x94, 0x95, 0x9c, 0xa2, 0xa1, 0xa5, 0xad, 0xb7, 0xb9, 0xb5, 0xaf, 0x9b, 0x97, 0x9a, 0xa4, 0xad, 0xa9, 0x9c, 0x91, 0x83, 0x83, 0x7d, 0x82, 0x87, 0x8a, 0x96, 0x97, 0x9a, 0x9c, 0x9e, 0xa0, 0xa3, 0xa6, 0xaa, 0xac, 0xab, 0xac, 0xaf, 0xb1, 0xb3, 0xb4, 0xb4, 0xb4, 0xb7, 0xb7, 0xb7, 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xb5, 0xb6, 0xb7, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb6, 0xb5, 0xb2, 0xb0, 0xad, 0xac, 0xab, 0xaa, 0xa7, 0xa4, 0xa1, 0x9d, 0x9b, 0x98, 0x95, 0x94, 0x93, 0x91, 0x8f, 0x8e, 0x8d, 0x8c, 0x8a, 0x88, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x88, 0x88, 0x80, 0x71, 0x87, 0x9c, 0xa0, 0xab, 0xad, 0xa9, 0xa6, 0xaa, 0xaa, 0xa3, 0x9a, 0x96, 0x97, 0x99, 0x97, 0x99, 0x9e, 0xa6, 0xad, 0xb3, 0xb5, 0xb6, 0xb1, 0xb2, 0xb5, 0xb7, 0xb8, 0xb9, 0xba, 0xba, 0xc1, 0xc2, 0xc3, 0xc1, 0xbe, 0xbd, 0xbe, 0xbf, 0xc2, 0xc6, 0xcb, 0xd0, 0xd3, 0xd5, 0xd6, 0xd8, 0xd4, 0xcd, 0xc2, 0xba, 0xb5, 0xb5, 0xb8, 0xbc, 0xca, 0xce, 0xd0, 0xd2, 0xcf, 0xc0, 0xb6, 0xba, 0xc6, 0xca, 0xcd, 0xcd, 0xc9, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc5, 0xc8, 0xcc, 0xcf, 0xd2, 0xd4, 0xd5, 0xd4, 0xd2, 0xd0, 0xcf, 0xce, 0xd1, 0xcf, 0xce, 0xd0, 0xd4, 0xd8, 0xda, 0xda, 0xde, 0xe0, 0xe3, 0xe3, 0xe2, 0xe0, 0xde, 0xde, 0xdd, 0xe0, 0xe1, 0xdf, 0xdf, 0xe0, 0xdf, 0xdd, 0xdc, 0xdd, 0xde, 0xdf, 0xdf, 0xdf, 0xde, 0xde, 0xde, 0xde, 0xdd, 0xdd, 0xdd, 0xde, 0xde, 0xdf, 0xdf, 0xde, 0xdd, 0xdc, 0xdc, 0xdc, 0xdd, 0xde, 0xda, 0xd9, 0xd8, 0xd6, 0xd5, 0xd3, 0xd2, 0xd1, 0xce, 0xd0, 0xd0, 0xcf, 0xd0, 0xcd, 0xc0, 0xaf, 0x71, 0x7f, 0x7c, 0x72, 0x70, 0x71, 0x8e, 0xbf, 0xcc, 0xde, 0xb1, 0x79, 0x76, 0xa4, 0xd0, 0xc8, 0xb8, 0xbc, 0xba, 0xaa, 0x89, 0x8e, 0x8a, 0x91, 0x90, 0x90, 0x8b, 0x8a, 0x8d, 0x88, 0x7f, 0x7e, 0x88, 0x98, 0xa0, 0x96, 0x87, 0x81, 0x80, 0x7e, 0x76, 0x7c, 0x73, 0x77, 0x88, 0x7a, 0x62, 0x66, 0x6d, 0x85, 0x96, 0x92, 0x86, 0x83, 0x83, 0x81, 0x9b, 0x9e, 0x9c, 0x94, 0x91, 0x95, 0x96, 0x91, 0x89, 0x88, 0x88, 0x8d, 0x96, 0x9a, 0x94, 0x8b, 0x87, 0x8b, 0x92, 0x8f, 0x7f, 0x70, 0x61, 0x52, 0x41, 0x3c, 0x3b, 0x3d, 0x43, 0x4f, 0x56, 0x50, 0x53, 0x4f, 0x4e, 0x4b, 0x3b, 0x25, 0x1f, 0x25, 0x1c, 0x1d, 0x1e, 0x24, 0x33, 0x3e, 0x31, 0x1d, 0x1d, 0x2e, 0x3e, 0x49, 0x5e, 0x73, 0x77, 0x6d, 0x60, 0x4b, 0x4b, 0x56, 0x5c, 0x69, 0x6c, 0x5a, 0x51, 0x4a, 0x3d, 0x37, 0x44, 0x59, 0x62, 0x60, 0x55, 0x48, 0x34, 0x27, 0x27, 0x2f, 0x37, 0x3a, 0x38, 0x34, 0x33, 0x35, 0x35, 0x31, 0x2f, 0x31, 0x2f, 0x2e, 0x37, 0x3c, 0x3d, 0x4a, 0x53, 0x4a, 0x41, 0x4e, 0x5e, 0x54, 0x38, 0x2e, 0x2f, 0x26, 0x44, 0x52, 0x5e, 0x5f, 0x5b, 0x56, 0x51, 0x4c, 0x45, 0x47, 0x4b, 0x41, 0x36, 0x3b, 0x3b, 0x28, 0x28, 0x28, 0x2b, 0x31, 0x36, 0x37, 0x32, 0x2d, 0x43, 0x54, 0x67, 0x6f, 0x6d, 0x68, 0x67, 0x68, 0x6a, 0x60, 0x5c, 0x53, 0x3e, 0x2d, 0x2a, 0x2a, 0x41, 0x3f, 0x3a, 0x37, 0x3d, 0x47, 0x49, 0x45, 0x42, 0x4e, 0x5a, 0x5e, 0x5c, 0x60, 0x6d, 0x79, 0x7a, 0x82, 0x89, 0x8f, 0x96, 0x9b, 0x9a, 0x95, 0x8b, 0x79, 0x71, 0x7c, 0x83, 0x77, 0x67, 0x5f, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x74, 0x6a, 0x60, 0x60, 0x68, 0x70, 0x70, 0x68, 0x61, 0x5e, 0x5f, 0x5e, 0x5d, 0x64, 0x70, 0x75, 0x70, 0x6c, 0x6c, 0x75, 0x7b, 0x79, 0x6d, 0x69, 0x6f, 0x6c, 0x62, 0x73, 0x78, 0x7b, 0x79, 0x78, 0x79, 0x78, 0x75, 0x75, 0x72, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x72, 0x67, 0x64, 0x64, 0x6a, 0x73, 0x7b, 0x80, 0x81, 0x89, 0x89, 0x8c, 0x90, 0x91, 0x8c, 0x89, 0x87, 0x8f, 0x98, 0xa2, 0xa5, 0x9e, 0x93, 0x8c, 0x8b, 0x94, 0x9a, 0xa0, 0xa0, 0x97, 0x8c, 0x87, 0x88, 0x8f, 0x94, 0x95, 0x8d, 0x84, 0x84, 0x8d, 0x95, 0xa2, 0x92, 0x95, 0xa3, 0xa5, 0xa2, 0x98, 0x89, 0x8c, 0x8a, 0x8f, 0x95, 0x91, 0x90, 0x93, 0x93, 0x99, 0xa5, 0xad, 0xad, 0xad, 0xb2, 0xb4, 0xb2, 0xac, 0xa9, 0xa6, 0x9d, 0x8c, 0x7f, 0x82, 0x8e, 0x9b, 0x9e, 0xa4, 0xa3, 0xab, 0xac, 0x97, 0x8f, 0x9b, 0xa5, 0xa8, 0xa7, 0xaa, 0xa8, 0xa2, 0xa2, 0xa8, 0xa6, 0xa5, 0xa5, 0xa4, 0xa4, 0xa8, 0xab, 0xa2, 0x9c, 0x90, 0x80, 0x76, 0x78, 0x82, 0x8b, 0x98, 0x97, 0xa2, 0xae, 0xa8, 0x99, 0x9e, 0xb0, 0xa5, 0x94, 0x90, 0x98, 0x99, 0x98, 0x9a, 0x9c, 0x9b, 0xa1, 0xab, 0xb3, 0xb7, 0xb6, 0xb0, 0xaa, 0xa3, 0x9c, 0x97, 0x9c, 0xa3, 0xa2, 0x98, 0x8d, 0x87, 0x84, 0x7e, 0x7e, 0x88, 0x8e, 0x91, 0x98, 0x9a, 0x9b, 0x9e, 0xa1, 0xa4, 0xa8, 0xaa, 0xab, 0xad, 0xaf, 0xb1, 0xb2, 0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb9, 0xba, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb7, 0xb7, 0xb7, 0xb7, 0xb5, 0xb4, 0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0xa9, 0xa8, 0xa5, 0xa3, 0xa0, 0x9e, 0x9b, 0x98, 0x95, 0x92, 0x91, 0x8f, 0x8d, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x87, 0x88, 0x89, 0x88, 0x89, 0x8b, 0x8b, 0x89, 0x78, 0x7d, 0x88, 0x97, 0xa1, 0xa6, 0xa9, 0xac, 0xaa, 0xae, 0xa8, 0x9b, 0x95, 0x9a, 0x9b, 0x96, 0x9a, 0x9b, 0x9c, 0xa0, 0xa7, 0xb0, 0xb7, 0xb9, 0xb6, 0xb7, 0xb7, 0xb6, 0xb9, 0xbe, 0xc0, 0xbf, 0xc4, 0xc3, 0xc2, 0xc2, 0xc2, 0xc3, 0xc3, 0xc4, 0xc5, 0xc7, 0xcb, 0xcf, 0xd0, 0xd0, 0xd0, 0xd1, 0xd1, 0xce, 0xc8, 0xbf, 0xb7, 0xb4, 0xb5, 0xb8, 0xc0, 0xc3, 0xca, 0xd1, 0xd0, 0xc5, 0xb9, 0xb1, 0xb4, 0xbf, 0xcd, 0xd3, 0xcf, 0xc8, 0xc4, 0xc4, 0xc9, 0xc7, 0xc4, 0xc2, 0xc2, 0xc5, 0xc8, 0xca, 0xcd, 0xcc, 0xcb, 0xcd, 0xce, 0xce, 0xcc, 0xca, 0xcc, 0xcc, 0xd0, 0xd5, 0xd6, 0xd3, 0xd5, 0xd9, 0xda, 0xdf, 0xe2, 0xdf, 0xd9, 0xd5, 0xd6, 0xd8, 0xdd, 0xe2, 0xe0, 0xdd, 0xdf, 0xe0, 0xde, 0xe0, 0xdb, 0xda, 0xda, 0xdc, 0xdd, 0xdf, 0xdf, 0xde, 0xdd, 0xe0, 0xe1, 0xdf, 0xdf, 0xe1, 0xe0, 0xdc, 0xda, 0xdb, 0xdc, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xd7, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd3, 0xd1, 0xd1, 0xd4, 0xce, 0xce, 0xcc, 0xd1, 0xc2, 0x87, 0x7b, 0x76, 0x76, 0x80, 0x9a, 0xb3, 0xc0, 0xd0, 0xce, 0xd6, 0xad, 0x6e, 0x7d, 0xb5, 0xc5, 0xc4, 0xbb, 0xba, 0xb6, 0xa5, 0x8f, 0x88, 0x8c, 0x8d, 0x8c, 0x8b, 0x8e, 0x90, 0x89, 0x7e, 0x7b, 0x81, 0x8a, 0x8e, 0x97, 0x92, 0x7d, 0x75, 0x80, 0x8b, 0x90, 0x8b, 0x77, 0x73, 0x6b, 0x5d, 0x62, 0x5d, 0x67, 0x7c, 0x8e, 0x95, 0x92, 0x85, 0x7b, 0x7b, 0x92, 0x9f, 0x9e, 0x94, 0x96, 0x9a, 0x90, 0x85, 0x8b, 0x86, 0x83, 0x8a, 0x92, 0x94, 0x92, 0x8f, 0x92, 0x9d, 0xa0, 0x92, 0x7b, 0x68, 0x5b, 0x54, 0x3b, 0x31, 0x34, 0x43, 0x4f, 0x57, 0x5b, 0x58, 0x59, 0x5a, 0x55, 0x45, 0x2e, 0x1d, 0x1b, 0x20, 0x1e, 0x21, 0x26, 0x29, 0x29, 0x24, 0x1a, 0x12, 0x1a, 0x21, 0x33, 0x47, 0x50, 0x53, 0x5f, 0x6d, 0x82, 0x7c, 0x7c, 0x7a, 0x6e, 0x61, 0x5a, 0x55, 0x57, 0x4b, 0x44, 0x46, 0x50, 0x5c, 0x5b, 0x4d, 0x46, 0x40, 0x36, 0x2f, 0x2f, 0x32, 0x30, 0x2a, 0x23, 0x2d, 0x34, 0x2a, 0x20, 0x28, 0x35, 0x36, 0x3d, 0x45, 0x4d, 0x50, 0x4f, 0x4a, 0x46, 0x44, 0x3b, 0x4b, 0x55, 0x5d, 0x49, 0x4c, 0x5e, 0x7e, 0x8e, 0x89, 0x86, 0x7e, 0x6d, 0x5d, 0x4d, 0x3e, 0x43, 0x44, 0x43, 0x40, 0x3a, 0x33, 0x2d, 0x2a, 0x29, 0x33, 0x2d, 0x1f, 0x1a, 0x1a, 0x25, 0x39, 0x46, 0x42, 0x4e, 0x56, 0x6a, 0x6e, 0x67, 0x4e, 0x55, 0x5c, 0x56, 0x3c, 0x20, 0x14, 0x17, 0x1c, 0x28, 0x31, 0x3d, 0x41, 0x3e, 0x38, 0x33, 0x30, 0x39, 0x4b, 0x59, 0x59, 0x56, 0x5a, 0x62, 0x67, 0x64, 0x78, 0x86, 0x84, 0x83, 0x89, 0x8a, 0x84, 0x75, 0x71, 0x71, 0x70, 0x69, 0x63, 0x66, 0x6f, 0x73, 0x78, 0x78, 0x6e, 0x61, 0x5c, 0x5e, 0x61, 0x6c, 0x6b, 0x67, 0x61, 0x5b, 0x5a, 0x5e, 0x61, 0x6a, 0x70, 0x7a, 0x7f, 0x78, 0x6c, 0x6a, 0x6f, 0x85, 0x8b, 0x89, 0x7b, 0x70, 0x6f, 0x6e, 0x6a, 0x61, 0x68, 0x71, 0x79, 0x81, 0x86, 0x85, 0x7f, 0x7b, 0x7e, 0x81, 0x80, 0x7b, 0x75, 0x70, 0x6e, 0x79, 0x75, 0x75, 0x7a, 0x7e, 0x7e, 0x7e, 0x80, 0x89, 0x8b, 0x8d, 0x8c, 0x87, 0x82, 0x84, 0x8a, 0x95, 0x95, 0x97, 0x9b, 0x9f, 0x9d, 0x98, 0x94, 0x99, 0x9c, 0xa0, 0xa0, 0x99, 0x90, 0x8c, 0x8c, 0x92, 0x90, 0x8f, 0x92, 0x94, 0x93, 0x8f, 0x8b, 0x90, 0x9d, 0xad, 0xaf, 0xa5, 0xa3, 0xac, 0xb2, 0xa6, 0x9d, 0x99, 0x97, 0x95, 0x99, 0x9d, 0x99, 0xa4, 0xa9, 0xab, 0xa9, 0xaa, 0xaf, 0xb1, 0xae, 0xa5, 0x9d, 0x98, 0x9a, 0x98, 0x8e, 0x86, 0x84, 0x90, 0x8d, 0x9a, 0xa5, 0xa6, 0x92, 0x7e, 0x88, 0x7e, 0x8e, 0x96, 0x93, 0x8f, 0x8b, 0x8b, 0x92, 0x92, 0x92, 0x93, 0x96, 0x9b, 0x9f, 0xa4, 0xa7, 0xac, 0xa7, 0xa0, 0x9c, 0x9a, 0x97, 0x91, 0x8c, 0x7b, 0x7c, 0x82, 0x87, 0x87, 0x88, 0x93, 0xa0, 0x9a, 0xa0, 0xa7, 0xa2, 0x94, 0x93, 0x9c, 0xa0, 0xa9, 0xaf, 0xae, 0xa4, 0x9f, 0xa2, 0xa6, 0xa5, 0x92, 0x8c, 0x88, 0x8c, 0x96, 0x99, 0x8d, 0x7f, 0x81, 0x81, 0x7d, 0x7f, 0x88, 0x8e, 0x92, 0x99, 0x99, 0x9b, 0x9d, 0xa0, 0xa4, 0xa7, 0xaa, 0xab, 0xab, 0xad, 0xae, 0xaf, 0xb0, 0xb2, 0xb4, 0xb6, 0xb6, 0xb8, 0xb9, 0xbb, 0xbb, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb7, 0xb7, 0xb6, 0xb4, 0xb3, 0xb2, 0xb0, 0xaf, 0xac, 0xab, 0xa9, 0xa8, 0xa6, 0xa3, 0x9f, 0x9c, 0x9a, 0x98, 0x96, 0x95, 0x92, 0x90, 0x8d, 0x8c, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8a, 0x86, 0x73, 0x7d, 0x8c, 0x9b, 0xa4, 0xa6, 0xa8, 0xa9, 0xb1, 0xae, 0xa4, 0x9a, 0x98, 0x9c, 0x9d, 0x99, 0x9b, 0x9a, 0x9a, 0x9c, 0xa2, 0xad, 0xb7, 0xbd, 0xbc, 0xbd, 0xbc, 0xbb, 0xbc, 0xc0, 0xc1, 0xc0, 0xc6, 0xc7, 0xc8, 0xc9, 0xc9, 0xc9, 0xc8, 0xc7, 0xc4, 0xc3, 0xc6, 0xcc, 0xcf, 0xcd, 0xcd, 0xcf, 0xcc, 0xcb, 0xc8, 0xc3, 0xbd, 0xb8, 0xb7, 0xb6, 0xb6, 0xbb, 0xc5, 0xd0, 0xd1, 0xc8, 0xbb, 0xb3, 0xb9, 0xb5, 0xbc, 0xcc, 0xd1, 0xca, 0xc8, 0xce, 0xc9, 0xc8, 0xc8, 0xc8, 0xc9, 0xc9, 0xc8, 0xc8, 0xcb, 0xcb, 0xcd, 0xcf, 0xd1, 0xd1, 0xcf, 0xcc, 0xcd, 0xcc, 0xcd, 0xd1, 0xd1, 0xcf, 0xcf, 0xd2, 0xd2, 0xd4, 0xd5, 0xd4, 0xd3, 0xd6, 0xdd, 0xe2, 0xdc, 0xdf, 0xe1, 0xe2, 0xe1, 0xe1, 0xe0, 0xe0, 0xde, 0xdd, 0xdd, 0xdd, 0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xe0, 0xe0, 0xde, 0xde, 0xe0, 0xe0, 0xdd, 0xdc, 0xdd, 0xde, 0xde, 0xdd, 0xdc, 0xdb, 0xda, 0xdb, 0xd9, 0xd8, 0xd7, 0xd7, 0xd7, 0xd5, 0xd4, 0xd5, 0xd7, 0xd2, 0xd3, 0xd3, 0xd5, 0xbf, 0x81, 0x74, 0x7f, 0x9a, 0xb7, 0xc6, 0xbf, 0xbd, 0xcd, 0xc7, 0xc9, 0xa0, 0x65, 0x77, 0xb5, 0xc3, 0xb5, 0xbb, 0xb8, 0xb6, 0xad, 0x9b, 0x8e, 0x89, 0x87, 0x8b, 0x8b, 0x8a, 0x86, 0x7e, 0x77, 0x79, 0x7f, 0x80, 0x81, 0x88, 0x84, 0x74, 0x6e, 0x77, 0x80, 0x8a, 0x84, 0x77, 0x7d, 0x76, 0x63, 0x66, 0x66, 0x6c, 0x7f, 0x8e, 0x90, 0x8a, 0x7d, 0x78, 0x7f, 0x75, 0x84, 0x8e, 0x8d, 0x89, 0x83, 0x80, 0x85, 0x95, 0x8d, 0x84, 0x83, 0x86, 0x88, 0x8a, 0x8c, 0x9b, 0x96, 0x88, 0x75, 0x67, 0x60, 0x59, 0x51, 0x3d, 0x32, 0x35, 0x47, 0x53, 0x59, 0x5a, 0x57, 0x58, 0x5b, 0x56, 0x42, 0x2a, 0x1c, 0x1c, 0x21, 0x20, 0x23, 0x23, 0x1e, 0x17, 0x14, 0x16, 0x18, 0x16, 0x14, 0x1a, 0x28, 0x35, 0x3d, 0x44, 0x4a, 0x52, 0x54, 0x5c, 0x65, 0x70, 0x7c, 0x7b, 0x6f, 0x51, 0x48, 0x41, 0x46, 0x55, 0x5b, 0x51, 0x46, 0x3f, 0x3f, 0x38, 0x2a, 0x20, 0x22, 0x2a, 0x31, 0x37, 0x2a, 0x21, 0x1c, 0x17, 0x1e, 0x30, 0x3c, 0x3a, 0x39, 0x46, 0x5b, 0x62, 0x5a, 0x57, 0x5d, 0x79, 0x76, 0x75, 0x7d, 0x7a, 0x7a, 0x7c, 0x87, 0x8e, 0x8d, 0x8b, 0x80, 0x70, 0x65, 0x55, 0x40, 0x2a, 0x28, 0x25, 0x23, 0x23, 0x22, 0x21, 0x20, 0x2c, 0x2c, 0x26, 0x25, 0x29, 0x28, 0x22, 0x20, 0x2e, 0x2f, 0x3f, 0x48, 0x5d, 0x63, 0x64, 0x52, 0x3f, 0x3a, 0x2e, 0x20, 0x16, 0x13, 0x13, 0x12, 0x17, 0x1c, 0x23, 0x28, 0x2b, 0x2a, 0x29, 0x29, 0x2b, 0x36, 0x3e, 0x43, 0x49, 0x53, 0x59, 0x59, 0x4e, 0x57, 0x5b, 0x58, 0x5b, 0x66, 0x6e, 0x6e, 0x77, 0x68, 0x5e, 0x62, 0x6c, 0x71, 0x74, 0x77, 0x5b, 0x67, 0x6f, 0x69, 0x5b, 0x54, 0x56, 0x5b, 0x5a, 0x61, 0x66, 0x64, 0x5d, 0x59, 0x5c, 0x61, 0x60, 0x68, 0x74, 0x7b, 0x77, 0x70, 0x72, 0x79, 0x66, 0x6b, 0x6f, 0x71, 0x70, 0x6d, 0x68, 0x63, 0x61, 0x67, 0x71, 0x7e, 0x89, 0x8b, 0x80, 0x74, 0x71, 0x7b, 0x86, 0x89, 0x86, 0x84, 0x86, 0x89, 0x7b, 0x78, 0x7a, 0x7f, 0x7b, 0x6e, 0x65, 0x65, 0x7f, 0x85, 0x8c, 0x8d, 0x89, 0x8a, 0x94, 0xa0, 0xa5, 0xa1, 0x9f, 0xa1, 0xa7, 0xab, 0xab, 0xa8, 0x9b, 0x9c, 0x9e, 0xa1, 0x9e, 0x97, 0x92, 0x90, 0x93, 0x84, 0x7b, 0x82, 0x8e, 0x92, 0x8d, 0x88, 0x8c, 0x94, 0x98, 0x9f, 0xaf, 0xbb, 0xb7, 0xaf, 0xab, 0xa5, 0x9f, 0x98, 0x95, 0xa0, 0xab, 0xaa, 0xa9, 0xac, 0xad, 0xab, 0xab, 0xad, 0xa9, 0xa2, 0xb1, 0xac, 0xa8, 0xa3, 0x9a, 0x90, 0x8c, 0x8e, 0x7f, 0x98, 0xaf, 0xae, 0xb0, 0xaf, 0x96, 0x86, 0x90, 0x9f, 0xa6, 0xa2, 0x9d, 0x96, 0x92, 0x96, 0x9e, 0x9d, 0x9b, 0x9a, 0x9c, 0x9e, 0xa0, 0xa1, 0x97, 0x93, 0x92, 0x98, 0xa2, 0xa9, 0xaa, 0xa8, 0xa1, 0x9e, 0x93, 0x86, 0x82, 0x89, 0x92, 0x96, 0x97, 0xa9, 0xb6, 0xaa, 0x99, 0x9f, 0xad, 0xaf, 0xa5, 0x9f, 0x96, 0x97, 0xab, 0xbd, 0xb4, 0x9e, 0x97, 0x9c, 0x9a, 0x8f, 0x87, 0x85, 0x7f, 0x77, 0x79, 0x7d, 0x7d, 0x7e, 0x87, 0x8c, 0x90, 0x98, 0x99, 0x9a, 0x9d, 0xa0, 0xa3, 0xa7, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb2, 0xb6, 0xb9, 0xb7, 0xb8, 0xba, 0xbb, 0xbc, 0xbb, 0xb9, 0xb8, 0xba, 0xb9, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5, 0xb3, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0xa9, 0xa8, 0xa7, 0xa4, 0x9f, 0x9c, 0x9a, 0x99, 0x97, 0x97, 0x92, 0x90, 0x8d, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x82, 0x85, 0x88, 0x89, 0x8a, 0x8b, 0x88, 0x83, 0x72, 0x81, 0x94, 0xa1, 0xa6, 0xa6, 0xa6, 0xa7, 0xb1, 0xa7, 0x9b, 0x95, 0x97, 0x9a, 0x9b, 0x99, 0x9b, 0x9b, 0x9c, 0x9e, 0xa3, 0xac, 0xb7, 0xbf, 0xc4, 0xc5, 0xc5, 0xc3, 0xc3, 0xc5, 0xc6, 0xc4, 0xc6, 0xc8, 0xcb, 0xcd, 0xcd, 0xcc, 0xc9, 0xc8, 0xc4, 0xbf, 0xc1, 0xc9, 0xcd, 0xc9, 0xc8, 0xcb, 0xca, 0xc9, 0xc8, 0xc6, 0xc2, 0xbc, 0xb5, 0xb0, 0xad, 0xb1, 0xba, 0xc5, 0xc8, 0xc3, 0xbb, 0xb7, 0xbd, 0xb4, 0xb4, 0xbf, 0xca, 0xcc, 0xcc, 0xce, 0xc7, 0xc7, 0xc9, 0xcd, 0xcf, 0xce, 0xcb, 0xc8, 0xc9, 0xcb, 0xce, 0xd1, 0xd3, 0xd3, 0xd1, 0xcf, 0xcc, 0xcb, 0xcd, 0xd0, 0xd0, 0xce, 0xcd, 0xce, 0xcf, 0xcf, 0xce, 0xcd, 0xcc, 0xcd, 0xcf, 0xd2, 0xde, 0xdb, 0xe1, 0xe5, 0xe3, 0xe2, 0xe3, 0xe1, 0xe1, 0xe0, 0xdf, 0xdf, 0xe0, 0xe0, 0xdf, 0xde, 0xdd, 0xde, 0xde, 0xdc, 0xdc, 0xde, 0xdf, 0xde, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xdc, 0xda, 0xd7, 0xd6, 0xd6, 0xd7, 0xd7, 0xd6, 0xd5, 0xd6, 0xd3, 0xd4, 0xd6, 0xd5, 0xb5, 0x76, 0x7a, 0xa5, 0xc6, 0xce, 0xcc, 0xc8, 0xc5, 0xc5, 0xd0, 0xb9, 0x8e, 0x64, 0x7a, 0xb7, 0xcc, 0xc6, 0xb6, 0xb6, 0xb5, 0xae, 0x9e, 0x8e, 0x86, 0x84, 0x85, 0x87, 0x86, 0x7e, 0x77, 0x77, 0x7b, 0x7d, 0x82, 0x80, 0x83, 0x82, 0x79, 0x78, 0x7f, 0x83, 0x84, 0x81, 0x83, 0x92, 0x89, 0x6b, 0x62, 0x62, 0x5d, 0x76, 0x8d, 0x96, 0x8e, 0x7b, 0x72, 0x79, 0x8b, 0x84, 0x7d, 0x7e, 0x80, 0x79, 0x7a, 0x87, 0x95, 0x97, 0x97, 0x93, 0x8a, 0x84, 0x87, 0x8d, 0x9b, 0x9c, 0x8d, 0x6f, 0x59, 0x57, 0x60, 0x65, 0x3f, 0x35, 0x3b, 0x4f, 0x5a, 0x5b, 0x5b, 0x59, 0x56, 0x59, 0x50, 0x38, 0x21, 0x18, 0x1b, 0x21, 0x23, 0x1e, 0x1a, 0x1e, 0x24, 0x26, 0x21, 0x1b, 0x1a, 0x19, 0x1a, 0x22, 0x2d, 0x34, 0x36, 0x34, 0x34, 0x3d, 0x3c, 0x31, 0x30, 0x3d, 0x41, 0x39, 0x3e, 0x40, 0x40, 0x4d, 0x62, 0x60, 0x4d, 0x44, 0x49, 0x4f, 0x4f, 0x42, 0x33, 0x2b, 0x2c, 0x30, 0x2c, 0x19, 0x0d, 0x0f, 0x16, 0x26, 0x39, 0x41, 0x27, 0x2b, 0x41, 0x5f, 0x6a, 0x5d, 0x4e, 0x49, 0x54, 0x50, 0x5b, 0x6b, 0x7e, 0x80, 0x85, 0x87, 0x8b, 0x8f, 0x90, 0x87, 0x7c, 0x77, 0x67, 0x4d, 0x41, 0x3b, 0x34, 0x31, 0x2f, 0x2d, 0x28, 0x23, 0x2a, 0x28, 0x2d, 0x33, 0x33, 0x2f, 0x27, 0x1d, 0x22, 0x1d, 0x28, 0x2f, 0x42, 0x47, 0x46, 0x32, 0x23, 0x18, 0x0d, 0x0b, 0x0e, 0x12, 0x12, 0x13, 0x11, 0x12, 0x15, 0x19, 0x1d, 0x1e, 0x1c, 0x1a, 0x1b, 0x1d, 0x1f, 0x26, 0x34, 0x41, 0x43, 0x3e, 0x44, 0x42, 0x3d, 0x39, 0x3d, 0x48, 0x53, 0x59, 0x51, 0x56, 0x5e, 0x60, 0x57, 0x48, 0x41, 0x42, 0x64, 0x6b, 0x71, 0x6f, 0x6a, 0x65, 0x63, 0x61, 0x56, 0x5c, 0x66, 0x6d, 0x70, 0x6d, 0x69, 0x66, 0x5b, 0x5a, 0x5e, 0x67, 0x6f, 0x73, 0x75, 0x77, 0x72, 0x6d, 0x6c, 0x75, 0x7e, 0x7b, 0x70, 0x66, 0x5e, 0x63, 0x6f, 0x82, 0x92, 0x92, 0x83, 0x73, 0x76, 0x79, 0x7a, 0x75, 0x6e, 0x6c, 0x71, 0x77, 0x7c, 0x7d, 0x86, 0x91, 0x8e, 0x7f, 0x75, 0x75, 0x81, 0x86, 0x8d, 0x90, 0x8f, 0x8e, 0x93, 0x9b, 0x9f, 0xa3, 0xa5, 0xa5, 0xa6, 0xa9, 0xab, 0xad, 0xa2, 0xa0, 0xa1, 0xa4, 0xa3, 0x9d, 0x98, 0x96, 0x83, 0x7e, 0x83, 0x92, 0x9e, 0x9b, 0x93, 0x8e, 0x7b, 0x82, 0x7b, 0x74, 0x7b, 0x7f, 0x7d, 0x83, 0xa8, 0xaa, 0xa9, 0x9f, 0x97, 0xa1, 0xad, 0xad, 0xaf, 0xb0, 0xae, 0xaa, 0xa9, 0xa9, 0xa7, 0xa3, 0xa7, 0xa9, 0xa9, 0xa1, 0x92, 0x87, 0x8b, 0x93, 0x99, 0x8f, 0x8b, 0x88, 0x8f, 0x91, 0x89, 0x90, 0x96, 0x9f, 0xa4, 0xaa, 0xb4, 0xb4, 0xac, 0xa8, 0x9f, 0x9f, 0x9e, 0x9a, 0x99, 0x9c, 0xa1, 0xa3, 0xa2, 0x9c, 0x96, 0x91, 0x8f, 0x90, 0x94, 0x99, 0x9d, 0xa0, 0x9f, 0x9c, 0x9b, 0x97, 0x8e, 0x83, 0x8d, 0x94, 0x97, 0x90, 0x8f, 0x9d, 0xa6, 0x9f, 0x8d, 0x8e, 0x8f, 0x96, 0xa5, 0xae, 0xa4, 0x93, 0x92, 0x9d, 0x9e, 0x91, 0x88, 0x89, 0x8a, 0x85, 0x76, 0x7e, 0x7f, 0x7f, 0x85, 0x89, 0x8d, 0x95, 0x98, 0x99, 0x9c, 0x9f, 0xa3, 0xa6, 0xa8, 0xaa, 0xab, 0xac, 0xae, 0xb0, 0xb2, 0xb4, 0xb7, 0xb9, 0xb5, 0xb7, 0xb9, 0xbb, 0xbb, 0xba, 0xb9, 0xb8, 0xbb, 0xb9, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb5, 0xb3, 0xb3, 0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa9, 0xa8, 0xa5, 0xa1, 0x9e, 0x9b, 0x99, 0x97, 0x95, 0x91, 0x8f, 0x8c, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x84, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x86, 0x81, 0x77, 0x88, 0x9a, 0xa3, 0xa5, 0xa6, 0xa7, 0xa7, 0xa9, 0x9d, 0x94, 0x94, 0x97, 0x98, 0x99, 0x9b, 0x9b, 0x9d, 0xa1, 0xa5, 0xa8, 0xad, 0xb4, 0xbc, 0xc7, 0xca, 0xcb, 0xca, 0xc9, 0xcb, 0xcc, 0xcb, 0xc7, 0xc9, 0xcc, 0xcd, 0xce, 0xcd, 0xcb, 0xca, 0xcb, 0xc3, 0xc3, 0xcc, 0xd0, 0xcb, 0xc9, 0xcd, 0xcb, 0xc9, 0xc8, 0xc7, 0xc3, 0xbc, 0xb3, 0xac, 0xae, 0xae, 0xb0, 0xb5, 0xb8, 0xba, 0xbb, 0xbe, 0xc0, 0xc2, 0xbf, 0xba, 0xc1, 0xcf, 0xd1, 0xc9, 0xc7, 0xc7, 0xc9, 0xcc, 0xd0, 0xd2, 0xd0, 0xcd, 0xcb, 0xcd, 0xcf, 0xd1, 0xd3, 0xd3, 0xd2, 0xd1, 0xce, 0xce, 0xcf, 0xcf, 0xcd, 0xcc, 0xcd, 0xcf, 0xce, 0xd0, 0xd3, 0xd8, 0xde, 0xe3, 0xe7, 0xe8, 0xe4, 0xdd, 0xe0, 0xe4, 0xe2, 0xe3, 0xe5, 0xe1, 0xe3, 0xe2, 0xe1, 0xe0, 0xe0, 0xe0, 0xde, 0xdd, 0xdc, 0xdc, 0xdb, 0xda, 0xda, 0xdc, 0xdd, 0xdd, 0xdf, 0xde, 0xdd, 0xdc, 0xdb, 0xdc, 0xdc, 0xdc, 0xda, 0xd9, 0xd7, 0xd6, 0xd6, 0xd6, 0xd6, 0xd5, 0xd3, 0xd5, 0xd4, 0xd3, 0xd5, 0xd2, 0xab, 0x70, 0x8a, 0xc0, 0xd6, 0xc8, 0xbf, 0xc6, 0xca, 0xbe, 0xb5, 0x91, 0x76, 0x67, 0x69, 0x75, 0x73, 0x70, 0xa7, 0xb1, 0xae, 0x9c, 0x89, 0x7d, 0x7a, 0x7e, 0x7a, 0x80, 0x80, 0x79, 0x77, 0x7b, 0x7c, 0x78, 0x75, 0x71, 0x73, 0x76, 0x76, 0x7d, 0x85, 0x86, 0x7f, 0x7f, 0x87, 0x92, 0x87, 0x6a, 0x5c, 0x5c, 0x62, 0x72, 0x81, 0x88, 0x84, 0x7a, 0x7c, 0x8b, 0x83, 0x8a, 0x8d, 0x87, 0x77, 0x69, 0x76, 0x94, 0x8d, 0x8d, 0x8d, 0x8d, 0x88, 0x82, 0x80, 0x81, 0x79, 0x73, 0x62, 0x50, 0x4f, 0x5a, 0x5b, 0x53, 0x3b, 0x36, 0x42, 0x55, 0x5b, 0x59, 0x5a, 0x5b, 0x59, 0x56, 0x47, 0x2e, 0x1b, 0x19, 0x1f, 0x22, 0x24, 0x1c, 0x19, 0x24, 0x31, 0x34, 0x2a, 0x1f, 0x18, 0x1b, 0x1b, 0x1a, 0x1c, 0x22, 0x27, 0x29, 0x30, 0x3a, 0x37, 0x2e, 0x32, 0x40, 0x49, 0x4a, 0x40, 0x49, 0x4b, 0x57, 0x6a, 0x5e, 0x45, 0x41, 0x48, 0x4b, 0x4d, 0x4a, 0x40, 0x34, 0x28, 0x21, 0x23, 0x1f, 0x1c, 0x1b, 0x24, 0x34, 0x36, 0x28, 0x1d, 0x23, 0x2e, 0x3f, 0x54, 0x64, 0x65, 0x5f, 0x44, 0x47, 0x59, 0x5a, 0x5a, 0x45, 0x45, 0x47, 0x61, 0x66, 0x70, 0x77, 0x7b, 0x81, 0x7a, 0x69, 0x62, 0x5a, 0x4f, 0x45, 0x3d, 0x37, 0x32, 0x2e, 0x2d, 0x27, 0x2f, 0x39, 0x3a, 0x3f, 0x44, 0x3e, 0x3d, 0x2f, 0x30, 0x32, 0x44, 0x46, 0x41, 0x2b, 0x18, 0x10, 0x0c, 0x0e, 0x0f, 0x0e, 0x11, 0x15, 0x13, 0x14, 0x17, 0x1a, 0x1c, 0x1a, 0x16, 0x13, 0x1c, 0x1b, 0x1b, 0x20, 0x2a, 0x33, 0x32, 0x2b, 0x2c, 0x28, 0x25, 0x25, 0x28, 0x2e, 0x38, 0x41, 0x4c, 0x47, 0x44, 0x44, 0x43, 0x3e, 0x3b, 0x3a, 0x74, 0x74, 0x71, 0x6b, 0x68, 0x69, 0x6b, 0x6b, 0x68, 0x5f, 0x58, 0x5b, 0x67, 0x6d, 0x6a, 0x64, 0x58, 0x53, 0x52, 0x5b, 0x69, 0x75, 0x7d, 0x80, 0x7e, 0x74, 0x6e, 0x71, 0x75, 0x72, 0x6a, 0x64, 0x62, 0x63, 0x6d, 0x80, 0x90, 0x8f, 0x7e, 0x6e, 0x73, 0x70, 0x6c, 0x68, 0x68, 0x6e, 0x77, 0x7e, 0x85, 0x85, 0x8a, 0x90, 0x8b, 0x7e, 0x77, 0x78, 0x83, 0x86, 0x8e, 0x99, 0x9e, 0x9d, 0x99, 0x97, 0x91, 0x9a, 0xa4, 0xaa, 0xaf, 0xb3, 0xb4, 0xb3, 0xb2, 0xac, 0xa5, 0xa1, 0x9c, 0x98, 0x97, 0x98, 0x9b, 0x98, 0x95, 0x8e, 0x80, 0x75, 0x74, 0x7b, 0x87, 0x99, 0xa6, 0xae, 0xac, 0x97, 0x85, 0x86, 0x8b, 0x90, 0x97, 0x99, 0x9c, 0xa8, 0xaf, 0xa8, 0xaf, 0xad, 0xa7, 0xa0, 0x9d, 0xa1, 0xa6, 0xa9, 0x94, 0x97, 0x99, 0x99, 0x94, 0x91, 0x95, 0x9b, 0x90, 0x8b, 0x8d, 0x90, 0xa0, 0xac, 0xab, 0xb5, 0xc4, 0xc6, 0xc1, 0xc0, 0xc5, 0xc1, 0xb4, 0xad, 0xb7, 0xb9, 0xb5, 0xab, 0xa4, 0xa5, 0xaa, 0xae, 0xa7, 0xa2, 0x9e, 0x9b, 0x96, 0x8f, 0x8d, 0x8e, 0x8b, 0x81, 0x79, 0x7a, 0x7e, 0x80, 0x81, 0x82, 0x91, 0x87, 0x84, 0x89, 0x93, 0x9e, 0x9c, 0x8d, 0x8c, 0x85, 0x84, 0x8f, 0x9d, 0xa0, 0x99, 0x92, 0x91, 0x94, 0x91, 0x8c, 0x90, 0x95, 0x8a, 0x78, 0x7b, 0x83, 0x84, 0x81, 0x85, 0x89, 0x8c, 0x92, 0x97, 0x99, 0x9b, 0x9e, 0xa2, 0xa5, 0xa8, 0xa9, 0xaa, 0xad, 0xb0, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb6, 0xb8, 0xba, 0xbc, 0xbb, 0xbb, 0xba, 0xba, 0xb9, 0xb8, 0xb7, 0xb8, 0xb7, 0xb6, 0xb5, 0xb4, 0xb3, 0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa9, 0xa8, 0xa6, 0xa4, 0xa1, 0x9e, 0x9a, 0x96, 0x93, 0x8f, 0x8d, 0x8b, 0x89, 0x88, 0x88, 0x87, 0x86, 0x88, 0x88, 0x87, 0x86, 0x88, 0x88, 0x85, 0x7f, 0x7e, 0x8f, 0x9d, 0xa2, 0xa3, 0xa8, 0xab, 0xaa, 0x9e, 0x97, 0x94, 0x98, 0x9a, 0x99, 0x9c, 0xa2, 0x9f, 0xa0, 0xa3, 0xa7, 0xa8, 0xaa, 0xb0, 0xb8, 0xc4, 0xc9, 0xcc, 0xcc, 0xcc, 0xcf, 0xd1, 0xd0, 0xcc, 0xcd, 0xcd, 0xce, 0xce, 0xce, 0xce, 0xce, 0xd4, 0xcc, 0xca, 0xd1, 0xd4, 0xd0, 0xce, 0xd0, 0xce, 0xcb, 0xc8, 0xc7, 0xc6, 0xc0, 0xb8, 0xb1, 0xb1, 0xad, 0xab, 0xab, 0xae, 0xb3, 0xba, 0xc1, 0xc0, 0xc8, 0xc9, 0xc1, 0xc1, 0xcb, 0xd1, 0xcf, 0xce, 0xcc, 0xcb, 0xcb, 0xce, 0xd1, 0xd3, 0xd3, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd3, 0xd4, 0xd2, 0xd1, 0xcf, 0xcb, 0xc9, 0xcd, 0xd3, 0xd8, 0xe0, 0xe3, 0xe7, 0xec, 0xed, 0xea, 0xe4, 0xdf, 0xe8, 0xe5, 0xe3, 0xe2, 0xe1, 0xe2, 0xe2, 0xdf, 0xe2, 0xe1, 0xe0, 0xdf, 0xdf, 0xdf, 0xde, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xdb, 0xdb, 0xdc, 0xdd, 0xdd, 0xdc, 0xdb, 0xda, 0xda, 0xdb, 0xdc, 0xdc, 0xd8, 0xd7, 0xd7, 0xd8, 0xd8, 0xd7, 0xd6, 0xd4, 0xd4, 0xd8, 0xda, 0xd5, 0xd6, 0xd1, 0xa6, 0x74, 0x91, 0xbe, 0xcf, 0xcf, 0xca, 0xc3, 0xbf, 0xad, 0x80, 0x69, 0x69, 0x6f, 0x70, 0x6d, 0x6a, 0x73, 0x9c, 0xaf, 0xa9, 0x89, 0x71, 0x67, 0x69, 0x71, 0x76, 0x7b, 0x7b, 0x75, 0x75, 0x7c, 0x7b, 0x74, 0x6b, 0x66, 0x68, 0x6b, 0x6e, 0x7a, 0x85, 0x86, 0x7b, 0x7c, 0x83, 0x83, 0x79, 0x69, 0x5f, 0x61, 0x67, 0x71, 0x7d, 0x87, 0x88, 0x7e, 0x7e, 0x8c, 0xab, 0x97, 0x76, 0x5f, 0x5b, 0x63, 0x78, 0x90, 0x95, 0x86, 0x7b, 0x7d, 0x86, 0x88, 0x82, 0x7b, 0x82, 0x8e, 0x87, 0x68, 0x4c, 0x45, 0x45, 0x41, 0x33, 0x36, 0x47, 0x57, 0x57, 0x55, 0x58, 0x5a, 0x5c, 0x52, 0x3d, 0x27, 0x1c, 0x1f, 0x24, 0x26, 0x26, 0x23, 0x23, 0x26, 0x27, 0x24, 0x22, 0x22, 0x26, 0x25, 0x22, 0x20, 0x24, 0x2e, 0x38, 0x3c, 0x35, 0x30, 0x26, 0x2a, 0x3c, 0x42, 0x3c, 0x3b, 0x5a, 0x60, 0x57, 0x55, 0x5d, 0x51, 0x41, 0x45, 0x54, 0x53, 0x54, 0x54, 0x50, 0x47, 0x3b, 0x32, 0x26, 0x29, 0x2e, 0x32, 0x36, 0x3e, 0x36, 0x22, 0x1d, 0x1e, 0x20, 0x2b, 0x41, 0x59, 0x63, 0x62, 0x55, 0x4f, 0x5b, 0x61, 0x6c, 0x57, 0x49, 0x3c, 0x37, 0x36, 0x45, 0x5d, 0x72, 0x85, 0x92, 0x92, 0x87, 0x81, 0x76, 0x6a, 0x5f, 0x57, 0x54, 0x53, 0x3f, 0x2b, 0x24, 0x2b, 0x31, 0x3f, 0x4a, 0x46, 0x42, 0x33, 0x30, 0x2b, 0x36, 0x38, 0x3d, 0x31, 0x1c, 0x16, 0x13, 0x15, 0x14, 0x0f, 0x0e, 0x11, 0x10, 0x13, 0x17, 0x19, 0x1a, 0x1a, 0x1a, 0x1b, 0x19, 0x1b, 0x1c, 0x1d, 0x1f, 0x1f, 0x1d, 0x1a, 0x12, 0x12, 0x14, 0x18, 0x1c, 0x20, 0x2b, 0x35, 0x3b, 0x3f, 0x3d, 0x2d, 0x19, 0x11, 0x1e, 0x2f, 0x6f, 0x74, 0x76, 0x71, 0x6b, 0x6c, 0x72, 0x77, 0x71, 0x6c, 0x64, 0x5c, 0x59, 0x5b, 0x61, 0x66, 0x60, 0x5f, 0x5e, 0x5e, 0x61, 0x6a, 0x76, 0x7f, 0x81, 0x84, 0x88, 0x87, 0x7d, 0x71, 0x6a, 0x69, 0x66, 0x63, 0x68, 0x75, 0x80, 0x7d, 0x6f, 0x62, 0x62, 0x5f, 0x5e, 0x63, 0x6e, 0x79, 0x81, 0x84, 0x88, 0x85, 0x83, 0x80, 0x7a, 0x74, 0x73, 0x75, 0x7a, 0x7c, 0x86, 0x94, 0x9f, 0x9f, 0x99, 0x95, 0x8e, 0x97, 0xa2, 0xaf, 0xbc, 0xc4, 0xc0, 0xb7, 0xb4, 0xaa, 0x9e, 0x91, 0x88, 0x85, 0x8b, 0x93, 0x8a, 0x89, 0x82, 0x74, 0x6d, 0x7a, 0x98, 0xb2, 0xab, 0x98, 0x86, 0x88, 0x94, 0x98, 0x98, 0x9c, 0x90, 0x8f, 0x96, 0xa5, 0xb6, 0xc3, 0xbe, 0xac, 0x97, 0x99, 0x9a, 0x9a, 0x99, 0x99, 0x9a, 0x9c, 0x9b, 0x9d, 0x9c, 0x95, 0x8d, 0x8e, 0x99, 0xa4, 0xae, 0xb6, 0xae, 0x91, 0x8f, 0xa3, 0xa7, 0xaa, 0xab, 0xb4, 0xb6, 0xb5, 0xb8, 0xba, 0xba, 0xbe, 0xbd, 0xbf, 0xb9, 0xac, 0xa1, 0x9f, 0xa1, 0xa1, 0xa1, 0x99, 0x96, 0x9b, 0x9f, 0x9b, 0x94, 0x91, 0x80, 0x7f, 0x8b, 0x9f, 0xa4, 0x97, 0x88, 0x82, 0x7e, 0x74, 0x76, 0x85, 0x91, 0x95, 0x8c, 0x7e, 0x87, 0x7c, 0x7c, 0x8e, 0xa1, 0xa3, 0x99, 0x92, 0x99, 0x9e, 0x9e, 0x99, 0x94, 0x8c, 0x7b, 0x6a, 0x81, 0x89, 0x87, 0x82, 0x85, 0x8a, 0x8e, 0x93, 0x96, 0x98, 0x9a, 0x9e, 0xa1, 0xa4, 0xa7, 0xa8, 0xa9, 0xac, 0xb0, 0xb2, 0xb3, 0xb2, 0xb2, 0xb2, 0xb6, 0xb7, 0xb9, 0xba, 0xbc, 0xbc, 0xbc, 0xbc, 0xba, 0xb8, 0xb7, 0xb7, 0xb7, 0xb7, 0xb5, 0xb4, 0xb3, 0xb2, 0xb0, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa8, 0xa7, 0xa5, 0xa3, 0xa0, 0x9b, 0x96, 0x92, 0x8e, 0x8c, 0x89, 0x88, 0x88, 0x88, 0x87, 0x87, 0x8a, 0x89, 0x88, 0x87, 0x88, 0x89, 0x85, 0x7f, 0x84, 0x93, 0x9f, 0xa1, 0xa4, 0xac, 0xad, 0xa8, 0x95, 0x94, 0x96, 0x9a, 0x9b, 0x9b, 0x9f, 0xa6, 0xa8, 0xa4, 0xa3, 0xa5, 0xa6, 0xa8, 0xaf, 0xb8, 0xc0, 0xc5, 0xca, 0xcb, 0xcc, 0xcf, 0xd1, 0xd1, 0xce, 0xce, 0xcd, 0xcc, 0xcc, 0xcd, 0xcd, 0xce, 0xd3, 0xcf, 0xcd, 0xcf, 0xd0, 0xcf, 0xce, 0xcf, 0xd0, 0xcd, 0xca, 0xc9, 0xc9, 0xc7, 0xc2, 0xbe, 0xb1, 0xac, 0xa9, 0xa7, 0xa7, 0xaa, 0xb1, 0xb8, 0xb9, 0xba, 0xc0, 0xc5, 0xc2, 0xbe, 0xc6, 0xd3, 0xd4, 0xd2, 0xcf, 0xcc, 0xcd, 0xcf, 0xd3, 0xd6, 0xd9, 0xd8, 0xd6, 0xd4, 0xd2, 0xd2, 0xd4, 0xd6, 0xd1, 0xd0, 0xcd, 0xcb, 0xcf, 0xd7, 0xdc, 0xde, 0xcd, 0xbf, 0xad, 0xa3, 0xa9, 0xbd, 0xd5, 0xe6, 0xd9, 0xe6, 0xe6, 0xde, 0xdf, 0xe0, 0xdc, 0xdd, 0xdf, 0xde, 0xdd, 0xde, 0xdf, 0xdf, 0xde, 0xdd, 0xdf, 0xdd, 0xdd, 0xde, 0xde, 0xdc, 0xdc, 0xde, 0xdc, 0xdb, 0xda, 0xd9, 0xd9, 0xd9, 0xda, 0xda, 0xd8, 0xd8, 0xd8, 0xd9, 0xda, 0xd9, 0xd6, 0xd4, 0xd4, 0xd8, 0xdb, 0xd3, 0xd6, 0xd0, 0xa1, 0x75, 0x91, 0xc4, 0xd0, 0xcb, 0xca, 0xc5, 0xb4, 0x89, 0x77, 0x70, 0x71, 0x69, 0x63, 0x64, 0x69, 0x7a, 0xa7, 0xb6, 0xa8, 0x85, 0x70, 0x67, 0x64, 0x6a, 0x7b, 0x80, 0x7e, 0x76, 0x74, 0x79, 0x7b, 0x78, 0x7b, 0x76, 0x72, 0x6e, 0x6a, 0x73, 0x7e, 0x7f, 0x7c, 0x7f, 0x8d, 0x8c, 0x82, 0x74, 0x62, 0x60, 0x63, 0x6c, 0x7b, 0x8c, 0x8e, 0x7c, 0x72, 0x79, 0x77, 0x80, 0x7e, 0x74, 0x6e, 0x72, 0x84, 0x9a, 0x91, 0x8c, 0x89, 0x8b, 0x8c, 0x89, 0x84, 0x81, 0x80, 0x83, 0x76, 0x62, 0x5c, 0x60, 0x54, 0x3f, 0x34, 0x3d, 0x4f, 0x59, 0x56, 0x56, 0x5a, 0x5a, 0x57, 0x47, 0x32, 0x23, 0x1f, 0x21, 0x25, 0x26, 0x28, 0x27, 0x29, 0x2e, 0x2d, 0x25, 0x20, 0x1f, 0x1f, 0x1f, 0x23, 0x30, 0x3f, 0x48, 0x48, 0x44, 0x3a, 0x32, 0x27, 0x2e, 0x41, 0x43, 0x43, 0x51, 0x5f, 0x5f, 0x52, 0x48, 0x4e, 0x52, 0x53, 0x5b, 0x55, 0x58, 0x5c, 0x5d, 0x55, 0x48, 0x3d, 0x38, 0x32, 0x2b, 0x30, 0x3a, 0x3d, 0x3d, 0x3c, 0x38, 0x31, 0x29, 0x29, 0x34, 0x3f, 0x40, 0x3f, 0x41, 0x44, 0x54, 0x6e, 0x76, 0x6d, 0x58, 0x58, 0x60, 0x5d, 0x4c, 0x43, 0x44, 0x42, 0x41, 0x46, 0x48, 0x56, 0x5d, 0x68, 0x70, 0x73, 0x71, 0x6f, 0x6d, 0x67, 0x56, 0x46, 0x3b, 0x31, 0x2f, 0x35, 0x3a, 0x48, 0x3e, 0x3c, 0x2d, 0x2a, 0x28, 0x37, 0x39, 0x22, 0x19, 0x12, 0x13, 0x18, 0x19, 0x15, 0x11, 0x15, 0x16, 0x16, 0x16, 0x16, 0x18, 0x1c, 0x20, 0x14, 0x18, 0x1b, 0x1a, 0x16, 0x12, 0x11, 0x11, 0x12, 0x13, 0x15, 0x17, 0x18, 0x1c, 0x25, 0x2e, 0x3a, 0x35, 0x32, 0x38, 0x41, 0x42, 0x3a, 0x31, 0x73, 0x7b, 0x80, 0x7d, 0x77, 0x77, 0x7c, 0x7f, 0x74, 0x79, 0x7b, 0x75, 0x6a, 0x65, 0x68, 0x6f, 0x70, 0x71, 0x6d, 0x64, 0x5b, 0x59, 0x5f, 0x66, 0x77, 0x84, 0x8d, 0x88, 0x77, 0x68, 0x62, 0x61, 0x66, 0x61, 0x62, 0x6c, 0x75, 0x75, 0x6e, 0x67, 0x64, 0x61, 0x5f, 0x63, 0x69, 0x6b, 0x68, 0x64, 0x63, 0x65, 0x66, 0x65, 0x68, 0x6f, 0x74, 0x76, 0x7a, 0x7c, 0x81, 0x88, 0x8a, 0x88, 0x85, 0x84, 0x93, 0x9a, 0xa1, 0xa5, 0xab, 0xaf, 0xa9, 0xa0, 0x99, 0x95, 0x8d, 0x82, 0x79, 0x79, 0x84, 0x91, 0x8f, 0x95, 0x94, 0x8c, 0x8b, 0x98, 0xaa, 0xb4, 0xa7, 0x9a, 0x91, 0x8e, 0x8d, 0x94, 0x9c, 0x9d, 0x95, 0x8d, 0x90, 0x9d, 0xa6, 0xa8, 0x9c, 0x89, 0x85, 0x88, 0x8f, 0x96, 0x99, 0x98, 0x94, 0x91, 0x9d, 0x9e, 0x9b, 0x91, 0x87, 0x85, 0x8b, 0x92, 0x99, 0x9d, 0xab, 0xb1, 0xb0, 0xa2, 0x92, 0x9b, 0x9e, 0xad, 0xb5, 0xb3, 0xb0, 0xac, 0xac, 0xb2, 0xb0, 0xb4, 0xb3, 0xad, 0xac, 0xaf, 0xb0, 0xad, 0xb1, 0xa7, 0xa0, 0x9e, 0x98, 0x8a, 0x7e, 0x7a, 0x73, 0x73, 0x7f, 0x92, 0x99, 0x90, 0x87, 0x85, 0x80, 0x7a, 0x80, 0x90, 0x9b, 0x9e, 0x94, 0x84, 0x6f, 0x7d, 0x8f, 0x96, 0x8f, 0x84, 0x83, 0x87, 0x8e, 0x9b, 0xa3, 0x9c, 0x8c, 0x7f, 0x79, 0x78, 0x83, 0x8a, 0x86, 0x7f, 0x84, 0x8b, 0x8f, 0x94, 0x96, 0x97, 0x9a, 0x9d, 0xa0, 0xa4, 0xa6, 0xa8, 0xaa, 0xac, 0xaf, 0xb1, 0xb2, 0xb2, 0xb3, 0xb3, 0xb7, 0xb7, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbb, 0xb9, 0xb8, 0xb6, 0xb6, 0xb6, 0xb6, 0xb5, 0xb3, 0xb1, 0xb0, 0xae, 0xac, 0xaa, 0xa8, 0xa7, 0xa6, 0xa8, 0xa6, 0xa4, 0xa2, 0xa0, 0x9c, 0x99, 0x96, 0x8f, 0x8c, 0x89, 0x87, 0x87, 0x87, 0x87, 0x86, 0x89, 0x89, 0x88, 0x89, 0x8b, 0x8c, 0x87, 0x80, 0x8b, 0x99, 0xa2, 0xa3, 0xa7, 0xae, 0xa8, 0x9b, 0x93, 0x95, 0x98, 0x9b, 0x9d, 0xa0, 0xa4, 0xa9, 0xb1, 0xab, 0xa9, 0xac, 0xad, 0xae, 0xb4, 0xbc, 0xc0, 0xc6, 0xcb, 0xcc, 0xcc, 0xcf, 0xd0, 0xd1, 0xcf, 0xce, 0xcd, 0xcc, 0xcc, 0xcc, 0xcc, 0xcd, 0xce, 0xd0, 0xcf, 0xcc, 0xcc, 0xcf, 0xd0, 0xce, 0xd1, 0xcf, 0xcd, 0xcc, 0xcc, 0xcc, 0xc9, 0xc7, 0xb9, 0xb4, 0xad, 0xa7, 0xa3, 0xa2, 0xa6, 0xac, 0xb2, 0xaf, 0xb3, 0xbd, 0xbc, 0xb4, 0xb9, 0xc6, 0xd0, 0xd0, 0xd0, 0xce, 0xcc, 0xcd, 0xd1, 0xd5, 0xd9, 0xd9, 0xd8, 0xd5, 0xd3, 0xd2, 0xd3, 0xd4, 0xd0, 0xd0, 0xd0, 0xd3, 0xd9, 0xd8, 0xcc, 0xbe, 0x95, 0x94, 0x92, 0x90, 0x90, 0x91, 0x94, 0x95, 0xb1, 0xd8, 0xe2, 0xd9, 0xde, 0xdd, 0xd7, 0xde, 0xdc, 0xdb, 0xdb, 0xdd, 0xdf, 0xe0, 0xe0, 0xdf, 0xdf, 0xdd, 0xdd, 0xdf, 0xde, 0xdb, 0xda, 0xdc, 0xdc, 0xdc, 0xdb, 0xda, 0xd9, 0xd8, 0xd8, 0xd7, 0xd8, 0xd8, 0xd7, 0xd7, 0xd8, 0xd8, 0xd7, 0xd5, 0xd3, 0xd5, 0xd8, 0xcf, 0xd4, 0xce, 0x99, 0x6f, 0x96, 0xd0, 0xd2, 0xc2, 0xc2, 0xc7, 0xb4, 0x77, 0x69, 0x6d, 0x71, 0x69, 0x67, 0x64, 0x66, 0x7f, 0xba, 0xb3, 0x94, 0x7b, 0x77, 0x6d, 0x61, 0x66, 0x78, 0x80, 0x83, 0x7d, 0x76, 0x75, 0x79, 0x7c, 0x7f, 0x7b, 0x75, 0x6a, 0x5f, 0x65, 0x72, 0x76, 0x7b, 0x7b, 0x90, 0x95, 0x8c, 0x79, 0x5f, 0x5f, 0x6f, 0x6d, 0x70, 0x7a, 0x7c, 0x70, 0x70, 0x81, 0x9d, 0x92, 0x7f, 0x75, 0x79, 0x7b, 0x7e, 0x85, 0x84, 0x89, 0x8f, 0x92, 0x8c, 0x82, 0x7b, 0x7a, 0x78, 0x82, 0x7b, 0x63, 0x58, 0x5b, 0x54, 0x43, 0x39, 0x44, 0x54, 0x58, 0x55, 0x59, 0x5c, 0x55, 0x4d, 0x3c, 0x2d, 0x27, 0x25, 0x23, 0x23, 0x27, 0x2b, 0x2a, 0x2e, 0x37, 0x37, 0x30, 0x29, 0x28, 0x34, 0x35, 0x40, 0x52, 0x5c, 0x58, 0x4d, 0x47, 0x4c, 0x4c, 0x42, 0x41, 0x46, 0x3d, 0x3d, 0x54, 0x4e, 0x50, 0x4d, 0x4a, 0x52, 0x5e, 0x62, 0x5e, 0x59, 0x5a, 0x5e, 0x5f, 0x58, 0x4b, 0x43, 0x41, 0x44, 0x39, 0x37, 0x3b, 0x3b, 0x3f, 0x45, 0x47, 0x52, 0x47, 0x3f, 0x40, 0x43, 0x43, 0x46, 0x4c, 0x40, 0x3a, 0x3e, 0x5a, 0x6b, 0x6e, 0x5e, 0x54, 0x4b, 0x3e, 0x36, 0x32, 0x2c, 0x2c, 0x30, 0x2e, 0x31, 0x3c, 0x4f, 0x63, 0x73, 0x7b, 0x7d, 0x7c, 0x7e, 0x7d, 0x75, 0x67, 0x55, 0x42, 0x3f, 0x49, 0x4c, 0x45, 0x49, 0x3e, 0x39, 0x33, 0x3f, 0x40, 0x35, 0x2b, 0x1e, 0x18, 0x1b, 0x20, 0x1f, 0x1a, 0x1c, 0x1a, 0x17, 0x16, 0x16, 0x18, 0x1a, 0x1a, 0x1d, 0x1d, 0x1e, 0x1d, 0x1b, 0x18, 0x17, 0x18, 0x13, 0x14, 0x13, 0x11, 0x12, 0x15, 0x19, 0x1b, 0x21, 0x22, 0x22, 0x1f, 0x1a, 0x17, 0x15, 0x14, 0x80, 0x7d, 0x76, 0x6e, 0x6a, 0x6d, 0x71, 0x73, 0x71, 0x6d, 0x6b, 0x70, 0x76, 0x76, 0x6e, 0x65, 0x62, 0x64, 0x64, 0x61, 0x5f, 0x61, 0x65, 0x68, 0x65, 0x6e, 0x73, 0x6f, 0x6b, 0x6e, 0x74, 0x78, 0x7d, 0x74, 0x6e, 0x70, 0x72, 0x6d, 0x66, 0x62, 0x67, 0x68, 0x6f, 0x7b, 0x88, 0x90, 0x90, 0x8c, 0x6e, 0x74, 0x77, 0x76, 0x79, 0x81, 0x83, 0x7f, 0x7f, 0x82, 0x88, 0x8b, 0x8a, 0x8b, 0x91, 0x98, 0xa0, 0xa9, 0xac, 0xa2, 0x96, 0x90, 0x8c, 0x87, 0x7c, 0x7f, 0x82, 0x7f, 0x79, 0x7a, 0x87, 0x95, 0x9b, 0x9b, 0x91, 0x83, 0x82, 0x89, 0x8a, 0x84, 0x85, 0x88, 0x96, 0xa0, 0xa3, 0xac, 0xac, 0x9c, 0x8f, 0x8b, 0x93, 0x9e, 0xa1, 0x9f, 0x9a, 0x91, 0x8e, 0x8a, 0x88, 0x8d, 0x95, 0x9a, 0x9c, 0x9c, 0x93, 0x91, 0x91, 0x97, 0x9e, 0x9a, 0x8a, 0x79, 0x82, 0x96, 0xaa, 0xad, 0xb8, 0xbb, 0xa4, 0x95, 0x90, 0xa2, 0xaf, 0xb4, 0xb5, 0xaf, 0xa7, 0xa8, 0xa4, 0xa7, 0xa6, 0xa4, 0xa7, 0xab, 0xa7, 0x9f, 0x9f, 0xa2, 0xa8, 0xab, 0x9f, 0x8d, 0x82, 0x82, 0x7b, 0x7d, 0x84, 0x8d, 0x8f, 0x87, 0x7e, 0x7a, 0x84, 0x7e, 0x81, 0x8b, 0x95, 0x9a, 0x8e, 0x7a, 0x71, 0x80, 0x8d, 0x8f, 0x8b, 0x89, 0x86, 0x83, 0x8b, 0x90, 0x91, 0x8a, 0x7d, 0x72, 0x71, 0x74, 0x81, 0x87, 0x82, 0x7b, 0x81, 0x8a, 0x8f, 0x94, 0x96, 0x97, 0x99, 0x9d, 0xa0, 0xa3, 0xa6, 0xa7, 0xac, 0xad, 0xb0, 0xb1, 0xb2, 0xb3, 0xb5, 0xb7, 0xb6, 0xb6, 0xb5, 0xb5, 0xb6, 0xb6, 0xb8, 0xb8, 0xb8, 0xb7, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xaf, 0xae, 0xad, 0xab, 0xa9, 0xa7, 0xa5, 0xa4, 0xa8, 0xa5, 0xa3, 0xa0, 0x9f, 0x9d, 0x9b, 0x99, 0x90, 0x8d, 0x8a, 0x87, 0x86, 0x86, 0x86, 0x85, 0x86, 0x88, 0x89, 0x8b, 0x8e, 0x8f, 0x88, 0x80, 0x91, 0x9e, 0xa6, 0xa6, 0xa9, 0xad, 0xa0, 0x8d, 0x98, 0x9b, 0x9c, 0x9e, 0xa2, 0xa7, 0xab, 0xad, 0xb6, 0xb1, 0xb1, 0xb7, 0xb9, 0xb8, 0xb9, 0xbf, 0xc3, 0xc9, 0xce, 0xcf, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd2, 0xd1, 0xd1, 0xd0, 0xcf, 0xcf, 0xcf, 0xce, 0xd4, 0xd4, 0xce, 0xce, 0xd4, 0xd6, 0xd3, 0xd3, 0xd1, 0xcf, 0xce, 0xcd, 0xcc, 0xca, 0xc9, 0xc9, 0xc1, 0xb5, 0xab, 0xa2, 0x9e, 0xa2, 0xa8, 0xb2, 0xb2, 0xb3, 0xb4, 0xb5, 0xb5, 0xb5, 0xb6, 0xc7, 0xca, 0xce, 0xce, 0xcc, 0xcd, 0xd0, 0xd4, 0xd6, 0xd7, 0xd7, 0xd5, 0xd2, 0xd0, 0xd0, 0xd1, 0xd4, 0xd4, 0xd6, 0xdb, 0xdc, 0xcb, 0xa7, 0x87, 0x8b, 0x8d, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0xc7, 0xdc, 0xd4, 0xdc, 0xdb, 0xd5, 0xe2, 0xda, 0xda, 0xda, 0xdc, 0xdf, 0xe1, 0xe1, 0xe1, 0xde, 0xdb, 0xdc, 0xde, 0xdd, 0xd9, 0xd7, 0xd9, 0xde, 0xdd, 0xdc, 0xdb, 0xd9, 0xd7, 0xd6, 0xd5, 0xd8, 0xd6, 0xd4, 0xd4, 0xd5, 0xd6, 0xd6, 0xd6, 0xd5, 0xd4, 0xd6, 0xcd, 0xd6, 0xd0, 0x96, 0x6b, 0x9c, 0xc9, 0xcb, 0xca, 0xcd, 0xc6, 0xb6, 0x86, 0x6f, 0x68, 0x62, 0x5f, 0x66, 0x66, 0x73, 0xa1, 0xbf, 0xa2, 0x75, 0x66, 0x73, 0x6b, 0x5a, 0x5d, 0x6a, 0x78, 0x83, 0x81, 0x75, 0x6f, 0x72, 0x79, 0x74, 0x73, 0x71, 0x65, 0x5b, 0x64, 0x76, 0x7d, 0x75, 0x6b, 0x7c, 0x85, 0x80, 0x70, 0x5d, 0x68, 0x6b, 0x6a, 0x6f, 0x7b, 0x7d, 0x71, 0x73, 0x86, 0x93, 0x86, 0x75, 0x70, 0x76, 0x7c, 0x88, 0x9a, 0x93, 0x88, 0x81, 0x86, 0x8d, 0x8b, 0x7f, 0x74, 0x6f, 0x72, 0x66, 0x53, 0x54, 0x5d, 0x4f, 0x34, 0x3a, 0x46, 0x52, 0x52, 0x50, 0x58, 0x59, 0x4d, 0x49, 0x3a, 0x2f, 0x2f, 0x2e, 0x27, 0x26, 0x2b, 0x2f, 0x32, 0x37, 0x35, 0x2a, 0x22, 0x2c, 0x3c, 0x4d, 0x4b, 0x4e, 0x52, 0x49, 0x39, 0x31, 0x32, 0x34, 0x3c, 0x39, 0x3f, 0x49, 0x3b, 0x2c, 0x35, 0x46, 0x4e, 0x56, 0x59, 0x5e, 0x65, 0x5b, 0x45, 0x4a, 0x41, 0x39, 0x38, 0x3b, 0x3b, 0x3c, 0x3e, 0x3c, 0x3c, 0x3c, 0x3a, 0x40, 0x55, 0x63, 0x5f, 0x59, 0x5e, 0x5b, 0x53, 0x4f, 0x51, 0x4b, 0x42, 0x44, 0x4c, 0x52, 0x61, 0x55, 0x50, 0x47, 0x4f, 0x4f, 0x50, 0x55, 0x58, 0x5b, 0x66, 0x6c, 0x67, 0x66, 0x5f, 0x56, 0x52, 0x55, 0x5a, 0x5d, 0x5f, 0x63, 0x6a, 0x6c, 0x72, 0x75, 0x66, 0x57, 0x5a, 0x61, 0x5c, 0x67, 0x6b, 0x75, 0x71, 0x75, 0x6c, 0x52, 0x4a, 0x38, 0x23, 0x1a, 0x1d, 0x1f, 0x1e, 0x19, 0x16, 0x15, 0x17, 0x1b, 0x1c, 0x19, 0x15, 0x1d, 0x19, 0x16, 0x16, 0x17, 0x17, 0x15, 0x14, 0x0f, 0x12, 0x12, 0x11, 0x14, 0x18, 0x17, 0x12, 0x17, 0x1a, 0x1c, 0x1c, 0x1b, 0x1a, 0x19, 0x18, 0x7a, 0x78, 0x70, 0x66, 0x68, 0x71, 0x77, 0x76, 0x70, 0x67, 0x61, 0x64, 0x68, 0x68, 0x65, 0x63, 0x69, 0x68, 0x66, 0x62, 0x60, 0x62, 0x67, 0x6b, 0x76, 0x7a, 0x77, 0x6e, 0x6c, 0x77, 0x84, 0x8b, 0x83, 0x77, 0x78, 0x8b, 0x97, 0x88, 0x6b, 0x56, 0x68, 0x76, 0x85, 0x8c, 0x8b, 0x89, 0x8c, 0x90, 0x94, 0x8d, 0x84, 0x7f, 0x81, 0x83, 0x82, 0x7e, 0x83, 0x84, 0x86, 0x88, 0x8e, 0x94, 0x96, 0x95, 0x91, 0x95, 0x98, 0x98, 0x94, 0x91, 0x92, 0x94, 0x90, 0x8f, 0x8a, 0x81, 0x7e, 0x86, 0x96, 0xa2, 0xb2, 0xa5, 0x91, 0x82, 0x83, 0x8c, 0x8f, 0x8b, 0x88, 0x82, 0x7f, 0x85, 0x8d, 0x92, 0x92, 0x91, 0x91, 0x8f, 0x91, 0x9b, 0xa6, 0xa9, 0xa4, 0x9f, 0xa8, 0xa0, 0x90, 0x81, 0x7d, 0x8a, 0xa0, 0xb0, 0xac, 0xac, 0xa8, 0xa0, 0x9a, 0x97, 0x98, 0x98, 0x9d, 0x9a, 0x9e, 0xab, 0xb7, 0xb7, 0xac, 0xa1, 0xa2, 0xa4, 0xab, 0xb2, 0xad, 0xa3, 0xa5, 0xaf, 0xa9, 0xa8, 0xa7, 0xa5, 0xa1, 0x9c, 0x98, 0x97, 0x8f, 0x8d, 0x8b, 0x88, 0x85, 0x83, 0x83, 0x84, 0x74, 0x7d, 0x88, 0x8f, 0x8f, 0x8c, 0x87, 0x83, 0x78, 0x7d, 0x87, 0x92, 0x96, 0x8d, 0x7e, 0x74, 0x7d, 0x88, 0x93, 0x96, 0x94, 0x8f, 0x87, 0x7e, 0x82, 0x95, 0x8e, 0x81, 0x75, 0x83, 0x82, 0x84, 0x80, 0x80, 0x7f, 0x7f, 0x85, 0x8e, 0x91, 0x90, 0x92, 0x97, 0x9c, 0xa0, 0xa1, 0xa3, 0xa5, 0xa7, 0xab, 0xae, 0xb1, 0xb4, 0xb5, 0xb6, 0xb7, 0xb7, 0xb6, 0xb8, 0xba, 0xbc, 0xbd, 0xbd, 0xbc, 0xbb, 0xbb, 0xb9, 0xb6, 0xb4, 0xb1, 0xb0, 0xaf, 0xaf, 0xab, 0xa9, 0xa6, 0xa5, 0xa5, 0xa6, 0xa6, 0xa6, 0xa2, 0xa1, 0xa0, 0x9e, 0x9d, 0x9c, 0x9c, 0x9b, 0x98, 0x93, 0x8c, 0x87, 0x86, 0x87, 0x87, 0x87, 0x8b, 0x88, 0x88, 0x8c, 0x8d, 0x89, 0x83, 0x7f, 0x8f, 0x9f, 0xa5, 0xa8, 0xae, 0xa5, 0x92, 0x8d, 0x98, 0x9a, 0x9e, 0xa1, 0xa5, 0xa8, 0xac, 0xaf, 0xb8, 0xb9, 0xb9, 0xb8, 0xb7, 0xb9, 0xbd, 0xc1, 0xc6, 0xca, 0xcf, 0xd2, 0xd3, 0xd3, 0xd2, 0xd2, 0xd3, 0xd3, 0xd4, 0xd4, 0xd3, 0xd2, 0xd1, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd3, 0xd2, 0xd3, 0xd3, 0xcf, 0xd0, 0xd0, 0xcd, 0xcc, 0xcb, 0xc7, 0xc3, 0xc0, 0xc1, 0xbb, 0xaf, 0xa6, 0xa4, 0xa1, 0x9d, 0xa6, 0xa9, 0xae, 0xb0, 0xb1, 0xb3, 0xb8, 0xbc, 0xc9, 0xce, 0xd4, 0xd4, 0xd1, 0xce, 0xd0, 0xd3, 0xd0, 0xd0, 0xd2, 0xd2, 0xcf, 0xcb, 0xce, 0xd5, 0xd4, 0xe3, 0xe0, 0xde, 0xc7, 0x9b, 0x8a, 0x8c, 0x8b, 0x87, 0x82, 0x8a, 0x84, 0x86, 0x7e, 0x84, 0x84, 0xab, 0xe1, 0xd8, 0xda, 0xdb, 0xdb, 0xd8, 0xda, 0xdb, 0xd0, 0xb7, 0xae, 0xba, 0xe6, 0xdd, 0xd9, 0xdc, 0xdb, 0xd5, 0xd2, 0xd6, 0xdb, 0xdd, 0xdc, 0xdc, 0xdb, 0xda, 0xd8, 0xd6, 0xd6, 0xd6, 0xd8, 0xd7, 0xd7, 0xd8, 0xd6, 0xd2, 0xd3, 0xd7, 0xd1, 0xd2, 0xd4, 0xcd, 0xd1, 0xcd, 0x9c, 0x6b, 0x9c, 0xc9, 0xc5, 0xc6, 0xcb, 0xbd, 0xb9, 0xa9, 0x8a, 0x82, 0x65, 0x5a, 0x7a, 0x99, 0xa9, 0xbb, 0xb2, 0x7e, 0x68, 0x81, 0x81, 0x6f, 0x69, 0x5b, 0x69, 0x73, 0x7e, 0x7f, 0x74, 0x6a, 0x6b, 0x72, 0x75, 0x6b, 0x6c, 0x67, 0x70, 0x68, 0x6f, 0x70, 0x66, 0x69, 0x74, 0x80, 0x7b, 0x6b, 0x62, 0x65, 0x6c, 0x69, 0x6f, 0x79, 0x7c, 0x77, 0x79, 0x82, 0x8c, 0x7f, 0x70, 0x6e, 0x79, 0x8a, 0x99, 0x9f, 0x8d, 0x8a, 0x89, 0x8c, 0x8d, 0x8b, 0x87, 0x86, 0x84, 0x78, 0x66, 0x5d, 0x64, 0x64, 0x4b, 0x2c, 0x39, 0x41, 0x48, 0x4a, 0x4f, 0x54, 0x52, 0x4b, 0x4a, 0x4e, 0x49, 0x37, 0x2a, 0x2b, 0x2e, 0x2d, 0x33, 0x3b, 0x3a, 0x2d, 0x22, 0x24, 0x2c, 0x31, 0x37, 0x37, 0x3b, 0x3d, 0x31, 0x25, 0x28, 0x34, 0x2b, 0x30, 0x3c, 0x45, 0x42, 0x37, 0x31, 0x33, 0x3e, 0x53, 0x58, 0x59, 0x57, 0x53, 0x4e, 0x3b, 0x2d, 0x3a, 0x5b, 0x79, 0x82, 0x7f, 0x77, 0x6d, 0x68, 0x62, 0x56, 0x4a, 0x47, 0x52, 0x61, 0x6b, 0x6c, 0x68, 0x5e, 0x51, 0x48, 0x45, 0x45, 0x44, 0x52, 0x50, 0x53, 0x57, 0x54, 0x4a, 0x3f, 0x3a, 0x42, 0x41, 0x48, 0x56, 0x60, 0x62, 0x65, 0x69, 0x65, 0x62, 0x5e, 0x60, 0x6f, 0x7f, 0x80, 0x78, 0x70, 0x69, 0x6a, 0x62, 0x6e, 0x6e, 0x79, 0x7a, 0x7d, 0x82, 0x8c, 0x94, 0x99, 0x9c, 0x9f, 0xa3, 0x9b, 0x99, 0x90, 0x80, 0x73, 0x69, 0x60, 0x58, 0x54, 0x54, 0x51, 0x47, 0x36, 0x26, 0x1c, 0x1a, 0x1e, 0x18, 0x15, 0x19, 0x1d, 0x1c, 0x1a, 0x1a, 0x15, 0x15, 0x14, 0x11, 0x12, 0x14, 0x16, 0x16, 0x1b, 0x1d, 0x21, 0x23, 0x20, 0x1b, 0x1c, 0x1f, 0x85, 0x7c, 0x6e, 0x66, 0x70, 0x84, 0x91, 0x92, 0x91, 0x7e, 0x6d, 0x6d, 0x76, 0x78, 0x72, 0x6b, 0x5a, 0x5f, 0x64, 0x67, 0x68, 0x6a, 0x6d, 0x6f, 0x80, 0x89, 0x8e, 0x88, 0x82, 0x82, 0x83, 0x81, 0x82, 0x7b, 0x7a, 0x7d, 0x77, 0x69, 0x60, 0x60, 0x7a, 0x78, 0x7a, 0x85, 0x94, 0x9e, 0x9f, 0x9c, 0x8d, 0x8a, 0x81, 0x7a, 0x82, 0x90, 0x95, 0x8f, 0x88, 0x89, 0x88, 0x86, 0x89, 0x90, 0x96, 0x99, 0x97, 0x9a, 0x9e, 0x9f, 0x9e, 0x9a, 0x98, 0x97, 0x9b, 0x97, 0x90, 0x87, 0x82, 0x89, 0x9d, 0xae, 0xb4, 0x9a, 0x84, 0x84, 0x8f, 0x94, 0x95, 0x96, 0x8d, 0x85, 0x7f, 0x80, 0x84, 0x88, 0x8a, 0x8c, 0x92, 0x8c, 0x87, 0x88, 0x8f, 0x97, 0x9d, 0xa0, 0x9c, 0x9b, 0x96, 0x90, 0x8d, 0x8e, 0x8c, 0x88, 0x92, 0x94, 0x96, 0x99, 0x9a, 0x9a, 0x97, 0x93, 0x95, 0x98, 0x9c, 0x9d, 0x9b, 0x9d, 0xa4, 0xac, 0x9d, 0xa2, 0xa5, 0xa2, 0x99, 0x94, 0x98, 0x9e, 0xa4, 0xa1, 0x9e, 0x99, 0x92, 0x8e, 0x92, 0x9a, 0x98, 0x98, 0x96, 0x90, 0x8b, 0x85, 0x7a, 0x70, 0x67, 0x6f, 0x77, 0x79, 0x7a, 0x7c, 0x7b, 0x79, 0x6d, 0x79, 0x8f, 0xa1, 0x9d, 0x8b, 0x80, 0x80, 0x97, 0x9b, 0xa1, 0xa6, 0xa7, 0x9d, 0x86, 0x72, 0x80, 0x8c, 0x87, 0x86, 0x7f, 0x83, 0x7e, 0x84, 0x8d, 0x90, 0x8e, 0x86, 0x81, 0x85, 0x8e, 0x94, 0x95, 0x99, 0x9e, 0xa1, 0xa3, 0xa4, 0xa7, 0xa9, 0xae, 0xb1, 0xb4, 0xb6, 0xb6, 0xb7, 0xb8, 0xb9, 0xb9, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb3, 0xb3, 0xb5, 0xb4, 0xb2, 0xb0, 0xae, 0xac, 0xab, 0xab, 0xa8, 0xa6, 0xa4, 0xa2, 0xa0, 0x9f, 0x9e, 0x9d, 0x9e, 0x9d, 0x9b, 0x99, 0x98, 0x97, 0x98, 0x98, 0x98, 0x94, 0x8e, 0x89, 0x86, 0x86, 0x87, 0x87, 0x8c, 0x89, 0x89, 0x8b, 0x8c, 0x89, 0x86, 0x85, 0x97, 0x9f, 0xa5, 0xa9, 0xa8, 0x97, 0x8f, 0x9a, 0x9a, 0x9d, 0xa1, 0xa4, 0xa7, 0xaa, 0xad, 0xaf, 0xb5, 0xb8, 0xbb, 0xbc, 0xbc, 0xbd, 0xc1, 0xc5, 0xc8, 0xca, 0xcd, 0xce, 0xce, 0xce, 0xce, 0xcf, 0xcf, 0xd0, 0xd1, 0xd2, 0xd2, 0xd2, 0xd2, 0xd2, 0xd0, 0xd1, 0xd2, 0xd1, 0xd0, 0xcf, 0xd0, 0xd0, 0xd0, 0xd2, 0xd3, 0xd0, 0xce, 0xce, 0xcc, 0xca, 0xce, 0xc1, 0xab, 0x99, 0x93, 0x97, 0x9e, 0xa1, 0x9a, 0xa0, 0xa8, 0xaf, 0xb5, 0xbc, 0xc4, 0xc9, 0xcf, 0xd4, 0xd8, 0xd8, 0xd4, 0xd0, 0xcf, 0xcf, 0xd0, 0xcf, 0xd0, 0xd1, 0xcf, 0xce, 0xd1, 0xd6, 0xd8, 0xe3, 0xe7, 0xce, 0xa7, 0x8e, 0x8c, 0x97, 0x96, 0xac, 0xba, 0xc3, 0xc0, 0xbe, 0x96, 0x79, 0x77, 0xa3, 0xda, 0xd5, 0xd8, 0xdb, 0xdb, 0xda, 0xe1, 0xd1, 0xab, 0x89, 0x81, 0x86, 0xb0, 0xd6, 0xda, 0xda, 0xda, 0xdc, 0xde, 0xdf, 0xdb, 0xd7, 0xd9, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd9, 0xd6, 0xd5, 0xd6, 0xd4, 0xd0, 0xd1, 0xd4, 0xd2, 0xd0, 0xd3, 0xce, 0xd3, 0xd3, 0xa5, 0x70, 0xa5, 0xd3, 0xcb, 0xc0, 0xc4, 0xc4, 0xcb, 0xc1, 0xc1, 0xac, 0x74, 0x57, 0x7f, 0xb1, 0xc1, 0xc2, 0xa2, 0x6f, 0x6c, 0x97, 0x8e, 0x6a, 0x67, 0x68, 0x6f, 0x71, 0x74, 0x77, 0x78, 0x79, 0x78, 0x78, 0x6f, 0x6b, 0x6e, 0x70, 0x73, 0x68, 0x64, 0x60, 0x6c, 0x72, 0x7f, 0x85, 0x7a, 0x67, 0x62, 0x69, 0x61, 0x67, 0x73, 0x7c, 0x7b, 0x72, 0x6e, 0x71, 0x76, 0x73, 0x70, 0x71, 0x76, 0x80, 0x89, 0x90, 0x87, 0x86, 0x89, 0x90, 0x93, 0x90, 0x8b, 0x88, 0x6d, 0x6e, 0x70, 0x70, 0x68, 0x56, 0x3f, 0x2f, 0x32, 0x3e, 0x46, 0x46, 0x4a, 0x53, 0x54, 0x4f, 0x53, 0x52, 0x49, 0x3c, 0x32, 0x32, 0x33, 0x33, 0x33, 0x39, 0x37, 0x2a, 0x20, 0x20, 0x26, 0x29, 0x1e, 0x24, 0x29, 0x28, 0x25, 0x27, 0x2d, 0x31, 0x32, 0x36, 0x3e, 0x45, 0x3f, 0x32, 0x2b, 0x2c, 0x3f, 0x4d, 0x4d, 0x4e, 0x54, 0x57, 0x4e, 0x34, 0x3e, 0x49, 0x63, 0x78, 0x7d, 0x7d, 0x80, 0x81, 0x81, 0x88, 0x8d, 0x8e, 0x8b, 0x88, 0x83, 0x7f, 0x84, 0x80, 0x77, 0x6a, 0x5b, 0x4d, 0x3e, 0x33, 0x25, 0x1d, 0x23, 0x39, 0x46, 0x3f, 0x31, 0x2b, 0x35, 0x4b, 0x64, 0x72, 0x76, 0x6e, 0x56, 0x3f, 0x2e, 0x43, 0x58, 0x5b, 0x51, 0x4c, 0x56, 0x63, 0x5f, 0x5b, 0x67, 0x76, 0x98, 0xa3, 0xab, 0xa4, 0x98, 0x93, 0x90, 0x94, 0x9f, 0xa9, 0xaf, 0xb2, 0xac, 0xab, 0xab, 0xae, 0xb2, 0xb3, 0xad, 0xa5, 0xae, 0xa8, 0x9f, 0x97, 0x92, 0x8c, 0x85, 0x7f, 0x6e, 0x61, 0x50, 0x40, 0x31, 0x24, 0x19, 0x13, 0x14, 0x13, 0x15, 0x18, 0x1b, 0x1a, 0x17, 0x14, 0x1c, 0x1f, 0x21, 0x20, 0x1d, 0x1b, 0x1b, 0x1b, 0x84, 0x74, 0x60, 0x5a, 0x6a, 0x83, 0x92, 0x95, 0x80, 0x73, 0x69, 0x6d, 0x78, 0x7a, 0x72, 0x68, 0x72, 0x6a, 0x5f, 0x58, 0x59, 0x64, 0x74, 0x7f, 0x82, 0x8b, 0x91, 0x8e, 0x88, 0x82, 0x7c, 0x75, 0x7e, 0x80, 0x84, 0x84, 0x7a, 0x6f, 0x71, 0x7c, 0x81, 0x87, 0x8f, 0x93, 0x93, 0x90, 0x8c, 0x8a, 0x94, 0x97, 0x94, 0x8f, 0x96, 0xa0, 0x9a, 0x8a, 0x87, 0x8d, 0x92, 0x95, 0x98, 0x9b, 0x9d, 0x9c, 0xa2, 0xa3, 0xa0, 0x9a, 0x93, 0x91, 0x96, 0x9c, 0x97, 0x93, 0x86, 0x78, 0x79, 0x89, 0x98, 0x9d, 0x88, 0x83, 0x85, 0x8f, 0x93, 0x8f, 0x8b, 0x8c, 0x81, 0x7d, 0x7b, 0x7d, 0x82, 0x87, 0x8c, 0x91, 0x92, 0x8d, 0x87, 0x85, 0x88, 0x91, 0x9b, 0xa2, 0xaa, 0xa4, 0x98, 0x8e, 0x90, 0x96, 0x93, 0x89, 0x8d, 0x93, 0x9b, 0x9d, 0x99, 0x93, 0x8e, 0x8d, 0x97, 0x96, 0x95, 0x97, 0x9c, 0xa2, 0xa7, 0xa8, 0xaf, 0xba, 0xbf, 0xb6, 0xa7, 0x9f, 0x9b, 0x99, 0xab, 0xa6, 0xa1, 0x9a, 0x8f, 0x88, 0x8f, 0x9c, 0x8f, 0x8f, 0x8e, 0x8c, 0x8f, 0x91, 0x88, 0x7d, 0x78, 0x7f, 0x82, 0x7f, 0x80, 0x84, 0x82, 0x7c, 0x74, 0x7e, 0x8f, 0x95, 0x86, 0x75, 0x7c, 0x90, 0x9b, 0x98, 0x98, 0x9d, 0xa4, 0xa3, 0x95, 0x86, 0x83, 0x80, 0x79, 0x86, 0x88, 0x85, 0x75, 0x78, 0x83, 0x7f, 0x7b, 0x7a, 0x81, 0x8b, 0x91, 0x92, 0x96, 0x9a, 0x9f, 0xa2, 0xa3, 0xa5, 0xa8, 0xaa, 0xad, 0xaf, 0xb1, 0xb3, 0xb4, 0xb4, 0xb5, 0xb6, 0xb5, 0xb5, 0xb4, 0xb4, 0xb4, 0xb5, 0xb7, 0xb7, 0xb8, 0xb7, 0xb7, 0xb5, 0xb4, 0xb2, 0xb1, 0xb0, 0xac, 0xaa, 0xa7, 0xa4, 0xa1, 0x9e, 0x9a, 0x98, 0x99, 0x98, 0x95, 0x94, 0x93, 0x94, 0x95, 0x97, 0x99, 0x96, 0x92, 0x8d, 0x89, 0x87, 0x87, 0x88, 0x8c, 0x8a, 0x8a, 0x8b, 0x8a, 0x88, 0x8a, 0x8d, 0x9a, 0xa4, 0xa9, 0xa6, 0x9c, 0x8f, 0x91, 0xa0, 0x9e, 0xa1, 0xa5, 0xa9, 0xab, 0xad, 0xaf, 0xb1, 0xb5, 0xba, 0xc0, 0xc1, 0xc0, 0xc0, 0xc3, 0xc7, 0xca, 0xcb, 0xcb, 0xcb, 0xcb, 0xcc, 0xcf, 0xd1, 0xd0, 0xd1, 0xd1, 0xd1, 0xd2, 0xd2, 0xd2, 0xd3, 0xd2, 0xd3, 0xd3, 0xd1, 0xd0, 0xcf, 0xd0, 0xd1, 0xd1, 0xd4, 0xd5, 0xd3, 0xd1, 0xd1, 0xcf, 0xcd, 0xc5, 0xba, 0xad, 0xa6, 0xa2, 0x9b, 0x93, 0x8e, 0x9c, 0xa2, 0xac, 0xb5, 0xbe, 0xc7, 0xd0, 0xd6, 0xd5, 0xd8, 0xdb, 0xdc, 0xd9, 0xd5, 0xd2, 0xd0, 0xd2, 0xd0, 0xcf, 0xd0, 0xd1, 0xd2, 0xd5, 0xd9, 0xdd, 0xdf, 0xe3, 0xb2, 0x88, 0x86, 0x89, 0x9f, 0xc9, 0xd8, 0xda, 0xd4, 0xd2, 0xd5, 0xa3, 0x7e, 0x6e, 0xa1, 0xd5, 0xd4, 0xd7, 0xdb, 0xdc, 0xdc, 0xd9, 0xba, 0x8e, 0x81, 0x82, 0x79, 0x8a, 0xd4, 0xd6, 0xd3, 0xd2, 0xd6, 0xda, 0xdb, 0xdb, 0xdb, 0xda, 0xd8, 0xd7, 0xd7, 0xd9, 0xda, 0xd9, 0xd8, 0xd9, 0xd6, 0xd3, 0xd2, 0xd2, 0xd0, 0xcf, 0xd1, 0xd2, 0xcc, 0xd1, 0xce, 0xd3, 0xd8, 0xac, 0x72, 0x9f, 0xcd, 0xcc, 0xc2, 0xc3, 0xc0, 0xc8, 0xc6, 0xc8, 0xad, 0x71, 0x58, 0x89, 0xbc, 0xc3, 0xb9, 0x9d, 0x6d, 0x76, 0xa7, 0x96, 0x6e, 0x70, 0x74, 0x74, 0x6d, 0x67, 0x6b, 0x7b, 0x89, 0x86, 0x7c, 0x77, 0x78, 0x78, 0x7c, 0x76, 0x73, 0x6b, 0x6a, 0x6e, 0x6f, 0x77, 0x82, 0x80, 0x73, 0x67, 0x63, 0x63, 0x6e, 0x7c, 0x80, 0x7a, 0x6f, 0x68, 0x66, 0x6f, 0x75, 0x79, 0x78, 0x73, 0x73, 0x78, 0x7e, 0x85, 0x83, 0x84, 0x89, 0x8a, 0x84, 0x7c, 0x77, 0x6b, 0x6c, 0x75, 0x7c, 0x6e, 0x4d, 0x30, 0x24, 0x35, 0x43, 0x4a, 0x47, 0x4b, 0x59, 0x5f, 0x5b, 0x5b, 0x58, 0x51, 0x45, 0x35, 0x29, 0x28, 0x2d, 0x37, 0x3b, 0x38, 0x2d, 0x24, 0x22, 0x23, 0x23, 0x21, 0x2a, 0x28, 0x1d, 0x1a, 0x23, 0x26, 0x20, 0x2e, 0x32, 0x3a, 0x40, 0x3c, 0x31, 0x2a, 0x2a, 0x32, 0x3c, 0x3a, 0x42, 0x56, 0x64, 0x5e, 0x41, 0x36, 0x3c, 0x4e, 0x60, 0x66, 0x71, 0x84, 0x91, 0x81, 0x79, 0x69, 0x58, 0x52, 0x5a, 0x67, 0x70, 0x77, 0x7a, 0x7c, 0x7b, 0x75, 0x6a, 0x59, 0x4b, 0x43, 0x36, 0x33, 0x3c, 0x3c, 0x30, 0x2b, 0x31, 0x46, 0x54, 0x5e, 0x59, 0x4c, 0x3d, 0x2c, 0x1d, 0x38, 0x4b, 0x65, 0x75, 0x74, 0x6e, 0x74, 0x7f, 0x7e, 0x81, 0x8c, 0x93, 0x9f, 0x9c, 0x9a, 0x92, 0x98, 0x90, 0x84, 0x7d, 0x7c, 0x7e, 0x7e, 0x7e, 0x85, 0x85, 0x85, 0x83, 0x7f, 0x80, 0x89, 0x93, 0x96, 0xa3, 0xac, 0xab, 0xa5, 0xa2, 0xa0, 0x9f, 0xa0, 0x97, 0x8b, 0x7f, 0x70, 0x55, 0x31, 0x14, 0x15, 0x14, 0x16, 0x18, 0x17, 0x15, 0x1a, 0x23, 0x1f, 0x25, 0x29, 0x28, 0x29, 0x2a, 0x25, 0x1e, 0x7f, 0x7d, 0x7d, 0x84, 0x91, 0x96, 0x8d, 0x80, 0x7b, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x72, 0x6e, 0x6e, 0x72, 0x76, 0x78, 0x77, 0x83, 0x84, 0x84, 0x83, 0x85, 0x88, 0x86, 0x82, 0x80, 0x7e, 0x81, 0x85, 0x82, 0x7d, 0x7d, 0x82, 0x81, 0x93, 0xa5, 0xa7, 0x9b, 0x91, 0x92, 0x97, 0x9f, 0xa2, 0xa5, 0xa9, 0xae, 0xab, 0x9b, 0x89, 0x86, 0x8b, 0x90, 0x94, 0x97, 0x99, 0x96, 0x91, 0x97, 0x9b, 0x9a, 0x93, 0x89, 0x88, 0x92, 0x9c, 0xac, 0xa9, 0x96, 0x80, 0x82, 0x92, 0x8e, 0x7a, 0x7f, 0x89, 0x8d, 0x88, 0x88, 0x91, 0x98, 0x98, 0x88, 0x86, 0x85, 0x84, 0x81, 0x7d, 0x7d, 0x7f, 0x89, 0x89, 0x87, 0x85, 0x85, 0x87, 0x88, 0x88, 0x93, 0x97, 0x99, 0x9b, 0xa1, 0xa5, 0x97, 0x85, 0x7c, 0x7d, 0x82, 0x8a, 0x91, 0x95, 0x97, 0x98, 0x8f, 0x8d, 0x90, 0x99, 0xa6, 0xaa, 0xa1, 0x95, 0x91, 0x9c, 0xa6, 0xa6, 0xa0, 0x9e, 0xa2, 0xa7, 0xa9, 0xa0, 0x9b, 0x99, 0x92, 0x88, 0x88, 0x91, 0x93, 0x90, 0x8e, 0x8f, 0x90, 0x8b, 0x82, 0x7c, 0x84, 0x88, 0x89, 0x87, 0x8b, 0x90, 0x88, 0x7b, 0x74, 0x86, 0x9b, 0x9f, 0x8e, 0x7d, 0x82, 0x91, 0x91, 0x92, 0x94, 0x99, 0xa0, 0xa4, 0xa3, 0xa0, 0x87, 0x7e, 0x73, 0x87, 0x93, 0x94, 0x7f, 0x7b, 0x82, 0x7c, 0x78, 0x7c, 0x87, 0x8f, 0x8f, 0x8a, 0x96, 0x99, 0x9d, 0xa0, 0xa1, 0xa3, 0xa7, 0xaa, 0xaa, 0xac, 0xaf, 0xb1, 0xb2, 0xb3, 0xb5, 0xb6, 0xb5, 0xb6, 0xb8, 0xba, 0xbc, 0xbf, 0xc1, 0xc2, 0xc1, 0xc1, 0xc1, 0xc1, 0xc0, 0xbe, 0xbc, 0xbb, 0xb7, 0xb5, 0xb2, 0xaf, 0xac, 0xa7, 0xa2, 0x9f, 0x99, 0x97, 0x94, 0x92, 0x92, 0x93, 0x96, 0x97, 0x98, 0x99, 0x98, 0x94, 0x8f, 0x8a, 0x89, 0x88, 0x8a, 0x8b, 0x8c, 0x8c, 0x8a, 0x88, 0x8d, 0x93, 0x99, 0xa9, 0xab, 0x9c, 0x92, 0x94, 0x99, 0x9b, 0xa1, 0xa5, 0xaa, 0xae, 0xb0, 0xb2, 0xb3, 0xb4, 0xb9, 0xbe, 0xc4, 0xc5, 0xc2, 0xc1, 0xc4, 0xc7, 0xcb, 0xcb, 0xcc, 0xcc, 0xcd, 0xd0, 0xd4, 0xd6, 0xd5, 0xd4, 0xd4, 0xd2, 0xd1, 0xd1, 0xd0, 0xd0, 0xd1, 0xd2, 0xd2, 0xd1, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd3, 0xd2, 0xd2, 0xd1, 0xcc, 0xc6, 0xc2, 0xb6, 0xad, 0xac, 0xac, 0xa8, 0xa4, 0xa5, 0xb1, 0xb5, 0xbc, 0xc3, 0xc9, 0xcf, 0xd5, 0xd9, 0xd6, 0xd7, 0xd9, 0xdb, 0xdc, 0xdb, 0xd9, 0xd7, 0xd6, 0xd3, 0xd0, 0xd1, 0xd4, 0xd7, 0xd9, 0xdb, 0xdf, 0xda, 0xcc, 0x95, 0x81, 0x89, 0x85, 0xa9, 0xde, 0xdf, 0xda, 0xd6, 0xd8, 0xd3, 0x96, 0x77, 0x70, 0xaa, 0xd6, 0xd5, 0xd6, 0xda, 0xdb, 0xdd, 0xd6, 0xa0, 0x77, 0x82, 0x86, 0x7a, 0x7e, 0xce, 0xdb, 0xda, 0xdb, 0xda, 0xd6, 0xd2, 0xd5, 0xdb, 0xdf, 0xdc, 0xd8, 0xd8, 0xda, 0xdb, 0xd9, 0xd6, 0xd8, 0xd4, 0xd1, 0xd0, 0xd1, 0xd1, 0xd0, 0xd0, 0xd3, 0xca, 0xcf, 0xcc, 0xd0, 0xd5, 0xa8, 0x6d, 0x8a, 0xbd, 0xce, 0xce, 0xcc, 0xbe, 0xbd, 0xc0, 0xbd, 0x9e, 0x6e, 0x6a, 0x9c, 0xbe, 0xbd, 0xba, 0x98, 0x69, 0x6a, 0x8f, 0x81, 0x6a, 0x70, 0x68, 0x68, 0x72, 0x73, 0x68, 0x60, 0x66, 0x6e, 0x71, 0x80, 0x88, 0x86, 0x89, 0x77, 0x75, 0x6a, 0x6b, 0x69, 0x6b, 0x73, 0x7e, 0x81, 0x77, 0x67, 0x5d, 0x66, 0x71, 0x7a, 0x79, 0x76, 0x73, 0x6f, 0x6b, 0x6f, 0x75, 0x79, 0x75, 0x6e, 0x6c, 0x72, 0x79, 0x87, 0x82, 0x7f, 0x80, 0x7f, 0x78, 0x6f, 0x69, 0x6c, 0x70, 0x78, 0x7c, 0x6e, 0x52, 0x3e, 0x38, 0x42, 0x4c, 0x4e, 0x48, 0x4f, 0x61, 0x69, 0x64, 0x55, 0x58, 0x5c, 0x59, 0x46, 0x31, 0x2f, 0x3a, 0x3a, 0x3c, 0x3a, 0x32, 0x2b, 0x26, 0x22, 0x1e, 0x1e, 0x27, 0x26, 0x1b, 0x1b, 0x26, 0x2d, 0x29, 0x3f, 0x40, 0x43, 0x42, 0x38, 0x28, 0x1e, 0x1b, 0x21, 0x2c, 0x2a, 0x35, 0x50, 0x6a, 0x71, 0x5d, 0x46, 0x3e, 0x42, 0x4b, 0x50, 0x5b, 0x6f, 0x7c, 0x88, 0x85, 0x78, 0x62, 0x4a, 0x3b, 0x33, 0x31, 0x46, 0x63, 0x80, 0x85, 0x77, 0x6a, 0x69, 0x6e, 0x68, 0x63, 0x61, 0x61, 0x54, 0x3f, 0x32, 0x31, 0x26, 0x2b, 0x36, 0x3d, 0x36, 0x2b, 0x2e, 0x3a, 0x45, 0x46, 0x4c, 0x57, 0x62, 0x66, 0x61, 0x5a, 0x65, 0x6b, 0x74, 0x76, 0x76, 0x72, 0x73, 0x73, 0x66, 0x5b, 0x46, 0x2d, 0x1e, 0x22, 0x31, 0x3d, 0x3f, 0x4d, 0x5f, 0x66, 0x5d, 0x4e, 0x47, 0x49, 0x52, 0x52, 0x53, 0x5e, 0x76, 0x8b, 0x8e, 0x85, 0x82, 0x7e, 0x7f, 0x88, 0x90, 0x82, 0x58, 0x31, 0x1c, 0x16, 0x15, 0x1a, 0x1c, 0x18, 0x18, 0x1b, 0x1e, 0x24, 0x27, 0x29, 0x2f, 0x31, 0x26, 0x15, 0xa7, 0xa1, 0x9b, 0x99, 0x9e, 0xa2, 0xa0, 0x9b, 0x95, 0x92, 0x8b, 0x81, 0x7a, 0x7b, 0x83, 0x8a, 0x82, 0x7c, 0x77, 0x7a, 0x81, 0x85, 0x83, 0x7e, 0x72, 0x6f, 0x6e, 0x74, 0x81, 0x8d, 0x90, 0x8e, 0x94, 0x8b, 0x83, 0x83, 0x83, 0x81, 0x7f, 0x7f, 0x91, 0x93, 0x96, 0x95, 0x93, 0x95, 0x9b, 0xa1, 0x9d, 0x9b, 0xa2, 0xb2, 0xba, 0xb3, 0xa6, 0x9d, 0x97, 0x93, 0x8d, 0x8c, 0x91, 0x96, 0x95, 0x90, 0x96, 0x98, 0x9b, 0x9b, 0x96, 0x8f, 0x89, 0x85, 0x8b, 0x8b, 0x87, 0x84, 0x8d, 0x97, 0x91, 0x81, 0x73, 0x82, 0x8f, 0x95, 0x9c, 0xa0, 0x96, 0x86, 0x78, 0x7b, 0x80, 0x85, 0x87, 0x89, 0x8e, 0x93, 0x9b, 0x9b, 0x98, 0x93, 0x91, 0x8f, 0x8a, 0x84, 0x8f, 0x95, 0x9a, 0xa0, 0xad, 0xbd, 0xc1, 0xbc, 0x9b, 0x8b, 0x7e, 0x7e, 0x86, 0x8b, 0x8c, 0x8b, 0x98, 0xa1, 0xa8, 0xa8, 0xa5, 0xa2, 0xa0, 0x9e, 0xa3, 0x9f, 0x9b, 0x96, 0x8c, 0x86, 0x90, 0x9f, 0xa6, 0x9d, 0x9a, 0xa1, 0xa5, 0xa3, 0xa2, 0xa4, 0x9a, 0x94, 0x94, 0x97, 0x90, 0x7f, 0x75, 0x76, 0x87, 0x87, 0x84, 0x85, 0x8d, 0x93, 0x89, 0x7a, 0x73, 0x80, 0x87, 0x7e, 0x75, 0x7b, 0x8b, 0x96, 0x8a, 0x8e, 0x97, 0x9f, 0xa1, 0x9b, 0x92, 0x8b, 0x98, 0x95, 0x89, 0x90, 0x90, 0x91, 0x80, 0x7d, 0x7b, 0x7c, 0x7e, 0x81, 0x83, 0x87, 0x8d, 0x91, 0x95, 0x98, 0x9c, 0x9e, 0xa0, 0xa3, 0xa7, 0xab, 0xad, 0xaf, 0xb2, 0xb5, 0xb7, 0xb9, 0xbb, 0xbd, 0xc0, 0xc1, 0xc3, 0xc5, 0xc6, 0xc6, 0xc6, 0xc5, 0xc6, 0xc7, 0xc7, 0xc7, 0xc6, 0xc5, 0xc4, 0xc3, 0xc1, 0xc0, 0xbd, 0xbb, 0xb8, 0xb3, 0xae, 0xab, 0xa1, 0x9e, 0x9a, 0x96, 0x94, 0x94, 0x95, 0x97, 0x97, 0x9a, 0x9c, 0x9a, 0x94, 0x8e, 0x89, 0x88, 0x89, 0x8b, 0x8d, 0x8d, 0x8b, 0x8a, 0x90, 0x97, 0xa2, 0xa4, 0xa0, 0x93, 0x8f, 0x98, 0xa0, 0x9e, 0xa5, 0xa9, 0xae, 0xb2, 0xb4, 0xb6, 0xb7, 0xb8, 0xbd, 0xc1, 0xc5, 0xc6, 0xc4, 0xc3, 0xc6, 0xc9, 0xcb, 0xcd, 0xce, 0xcf, 0xd0, 0xd2, 0xd4, 0xd6, 0xd4, 0xd3, 0xd2, 0xd1, 0xd0, 0xce, 0xcd, 0xcc, 0xcd, 0xce, 0xcf, 0xcf, 0xce, 0xce, 0xd0, 0xd1, 0xd4, 0xd2, 0xd0, 0xd0, 0xd2, 0xd0, 0xc6, 0xbc, 0xbc, 0xb6, 0xb5, 0xba, 0xbf, 0xc0, 0xc5, 0xcb, 0xc6, 0xc8, 0xca, 0xcd, 0xcf, 0xd2, 0xd5, 0xd7, 0xd6, 0xd5, 0xd5, 0xd7, 0xd9, 0xdc, 0xdc, 0xdc, 0xd9, 0xd6, 0xd3, 0xd2, 0xd4, 0xd8, 0xd9, 0xd9, 0xdc, 0xda, 0xb3, 0x81, 0x85, 0x88, 0x88, 0xc0, 0xd8, 0xd7, 0xd5, 0xd3, 0xda, 0xd4, 0x90, 0x75, 0x74, 0xb3, 0xd4, 0xd3, 0xd2, 0xd6, 0xd8, 0xdb, 0xd8, 0x95, 0x76, 0x85, 0x7c, 0x78, 0x83, 0xc1, 0xce, 0xd0, 0xd5, 0xd9, 0xd8, 0xd6, 0xd7, 0xda, 0xdf, 0xdb, 0xd8, 0xd7, 0xd9, 0xda, 0xd8, 0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xd1, 0xd2, 0xd2, 0xd0, 0xd6, 0xcc, 0xcf, 0xcb, 0xce, 0xcb, 0x9c, 0x67, 0x85, 0xbd, 0xd0, 0xc7, 0xc8, 0xc7, 0xc5, 0xc3, 0xc3, 0x9f, 0x6c, 0x6c, 0x9e, 0xbd, 0xbc, 0xbd, 0x99, 0x64, 0x56, 0x74, 0x75, 0x6d, 0x71, 0x62, 0x69, 0x6d, 0x6b, 0x65, 0x67, 0x70, 0x74, 0x70, 0x68, 0x7d, 0x87, 0x8d, 0x7a, 0x76, 0x69, 0x68, 0x63, 0x6d, 0x78, 0x7b, 0x72, 0x67, 0x61, 0x61, 0x61, 0x69, 0x6d, 0x6d, 0x6f, 0x73, 0x72, 0x6d, 0x6d, 0x72, 0x76, 0x78, 0x79, 0x7c, 0x82, 0x88, 0x86, 0x81, 0x7f, 0x82, 0x83, 0x7d, 0x75, 0x6f, 0x6c, 0x76, 0x79, 0x6a, 0x51, 0x40, 0x3e, 0x41, 0x4e, 0x52, 0x4e, 0x48, 0x51, 0x64, 0x6a, 0x63, 0x56, 0x56, 0x5e, 0x64, 0x57, 0x3e, 0x32, 0x36, 0x39, 0x3b, 0x3a, 0x35, 0x2e, 0x26, 0x1e, 0x19, 0x1a, 0x20, 0x22, 0x1d, 0x1b, 0x22, 0x2d, 0x35, 0x44, 0x45, 0x45, 0x42, 0x39, 0x2d, 0x24, 0x21, 0x24, 0x2d, 0x27, 0x2a, 0x3e, 0x5d, 0x76, 0x73, 0x57, 0x42, 0x38, 0x3d, 0x42, 0x4a, 0x54, 0x59, 0x66, 0x6d, 0x72, 0x70, 0x6e, 0x74, 0x80, 0x89, 0x73, 0x5d, 0x45, 0x43, 0x58, 0x70, 0x77, 0x73, 0x76, 0x70, 0x67, 0x61, 0x60, 0x5c, 0x4f, 0x42, 0x3b, 0x31, 0x2e, 0x31, 0x2e, 0x27, 0x2a, 0x34, 0x3a, 0x43, 0x46, 0x43, 0x48, 0x55, 0x5d, 0x5b, 0x5a, 0x57, 0x53, 0x53, 0x50, 0x4f, 0x49, 0x46, 0x35, 0x48, 0x5d, 0x69, 0x6b, 0x6b, 0x6a, 0x69, 0x6d, 0x61, 0x53, 0x4c, 0x4d, 0x51, 0x57, 0x5c, 0x5d, 0x5c, 0x52, 0x41, 0x36, 0x38, 0x40, 0x45, 0x48, 0x41, 0x42, 0x54, 0x72, 0x89, 0x8b, 0x83, 0x5c, 0x42, 0x29, 0x20, 0x22, 0x22, 0x1e, 0x1b, 0x27, 0x28, 0x27, 0x29, 0x32, 0x37, 0x2b, 0x19, 0x9a, 0xa1, 0xab, 0xb2, 0xb2, 0xa9, 0x9b, 0x91, 0x91, 0x8d, 0x84, 0x7c, 0x7c, 0x81, 0x85, 0x86, 0x7e, 0x80, 0x85, 0x8c, 0x8e, 0x84, 0x72, 0x62, 0x6b, 0x6b, 0x70, 0x7d, 0x8f, 0x9b, 0x9e, 0x9c, 0x9a, 0x95, 0x91, 0x92, 0x92, 0x90, 0x8e, 0x8e, 0x87, 0x81, 0x7a, 0x76, 0x76, 0x7b, 0x81, 0x85, 0x9c, 0x9a, 0xa8, 0xbe, 0xc4, 0xb4, 0xa2, 0x9c, 0x97, 0x94, 0x90, 0x94, 0x9d, 0xa3, 0x9f, 0x97, 0x84, 0x83, 0x88, 0x97, 0xa9, 0xb0, 0xaa, 0xa1, 0x9b, 0x92, 0x91, 0x97, 0x91, 0x81, 0x78, 0x7c, 0x7b, 0x7d, 0x81, 0x85, 0x87, 0x88, 0x8d, 0x92, 0x87, 0x87, 0x88, 0x89, 0x88, 0x88, 0x8e, 0x94, 0x98, 0x95, 0x8d, 0x84, 0x83, 0x87, 0x88, 0x85, 0x94, 0x9c, 0xa3, 0xa4, 0xa1, 0x9c, 0x95, 0x90, 0x92, 0x89, 0x7e, 0x75, 0x6e, 0x6f, 0x7e, 0x8d, 0x94, 0x99, 0x97, 0x89, 0x7d, 0x7d, 0x84, 0x8a, 0x8b, 0x86, 0x85, 0x86, 0x7f, 0x78, 0x7f, 0x8d, 0x84, 0x7f, 0x7f, 0x89, 0x97, 0xa0, 0xa3, 0xa4, 0x9d, 0x95, 0x90, 0x8e, 0x84, 0x79, 0x7a, 0x84, 0x93, 0x8c, 0x86, 0x86, 0x8d, 0x8f, 0x86, 0x7a, 0x6f, 0x84, 0x93, 0x92, 0x8f, 0x91, 0x8e, 0x86, 0x89, 0x8a, 0x90, 0x9a, 0x9e, 0x95, 0x86, 0x7a, 0x7f, 0x89, 0x81, 0x7c, 0x6e, 0x70, 0x6c, 0x75, 0x7e, 0x7a, 0x79, 0x7c, 0x81, 0x87, 0x8e, 0x94, 0x96, 0x99, 0x9c, 0x9f, 0xa1, 0xa5, 0xaa, 0xae, 0xb0, 0xb2, 0xb5, 0xb8, 0xba, 0xbd, 0xc0, 0xc2, 0xc4, 0xc6, 0xc8, 0xca, 0xcb, 0xcb, 0xca, 0xc9, 0xca, 0xca, 0xca, 0xca, 0xc9, 0xc8, 0xc7, 0xc7, 0xc6, 0xc4, 0xc3, 0xc1, 0xbe, 0xbb, 0xb7, 0xb4, 0xae, 0xaa, 0xa5, 0x9f, 0x9b, 0x99, 0x98, 0x99, 0x9a, 0x9c, 0x9d, 0x9d, 0x98, 0x92, 0x8d, 0x89, 0x8b, 0x8c, 0x8e, 0x8e, 0x8c, 0x8c, 0x93, 0x9c, 0xad, 0x98, 0x8f, 0x93, 0x94, 0x99, 0xa4, 0xab, 0xac, 0xaf, 0xb3, 0xb6, 0xb8, 0xba, 0xbb, 0xbd, 0xbe, 0xc1, 0xc5, 0xc7, 0xc7, 0xc8, 0xc9, 0xcb, 0xcc, 0xcd, 0xcf, 0xcf, 0xce, 0xce, 0xce, 0xcf, 0xcd, 0xce, 0xcf, 0xcf, 0xcf, 0xce, 0xcd, 0xcd, 0xcd, 0xcf, 0xd1, 0xd1, 0xd1, 0xd2, 0xd2, 0xd3, 0xd4, 0xd2, 0xce, 0xce, 0xd2, 0xd1, 0xc8, 0xbe, 0xbc, 0xc4, 0xd1, 0xdc, 0xdf, 0xdb, 0xd7, 0xd6, 0xd1, 0xd1, 0xd0, 0xd0, 0xd1, 0xd3, 0xd5, 0xd6, 0xd7, 0xd6, 0xd4, 0xd4, 0xd6, 0xd8, 0xda, 0xdb, 0xda, 0xd9, 0xd5, 0xd3, 0xd4, 0xd7, 0xd8, 0xd6, 0xd8, 0xdd, 0xa1, 0x7d, 0x86, 0x80, 0x9b, 0xd9, 0xd7, 0xd9, 0xd7, 0xca, 0xcf, 0xce, 0x8a, 0x75, 0x74, 0xb8, 0xd0, 0xd1, 0xcf, 0xd5, 0xd5, 0xd8, 0xdb, 0x9e, 0x7f, 0x7b, 0x6d, 0x81, 0xab, 0xd3, 0xd1, 0xd1, 0xd1, 0xd2, 0xd6, 0xdb, 0xdd, 0xdb, 0xda, 0xd7, 0xd5, 0xd4, 0xd5, 0xd7, 0xd6, 0xd5, 0xd2, 0xd3, 0xd2, 0xd0, 0xd1, 0xd3, 0xd3, 0xd0, 0xd6, 0xcf, 0xcf, 0xcc, 0xcf, 0xc1, 0x8d, 0x65, 0x8d, 0xbf, 0xc0, 0x9f, 0xa8, 0xc6, 0xcb, 0xc1, 0xc1, 0x9b, 0x65, 0x64, 0x9d, 0xc1, 0xbb, 0xb2, 0x94, 0x63, 0x50, 0x70, 0x7d, 0x75, 0x75, 0x6b, 0x6e, 0x67, 0x62, 0x68, 0x79, 0x88, 0x84, 0x78, 0x72, 0x84, 0x8e, 0x8b, 0x7a, 0x74, 0x6b, 0x67, 0x60, 0x65, 0x69, 0x68, 0x64, 0x63, 0x62, 0x61, 0x62, 0x67, 0x6a, 0x6b, 0x6c, 0x6d, 0x68, 0x61, 0x5d, 0x60, 0x67, 0x6f, 0x77, 0x7c, 0x7e, 0x7e, 0x7f, 0x7c, 0x7c, 0x82, 0x85, 0x81, 0x77, 0x71, 0x73, 0x76, 0x6c, 0x57, 0x48, 0x47, 0x47, 0x42, 0x52, 0x51, 0x4d, 0x4b, 0x55, 0x63, 0x65, 0x5d, 0x57, 0x4f, 0x51, 0x60, 0x63, 0x52, 0x3f, 0x38, 0x40, 0x40, 0x3d, 0x38, 0x2f, 0x25, 0x1d, 0x17, 0x20, 0x23, 0x24, 0x21, 0x1a, 0x1a, 0x27, 0x35, 0x39, 0x3a, 0x3a, 0x39, 0x38, 0x37, 0x38, 0x39, 0x37, 0x3c, 0x32, 0x2d, 0x36, 0x50, 0x74, 0x81, 0x63, 0x47, 0x37, 0x3a, 0x3e, 0x41, 0x43, 0x43, 0x44, 0x4e, 0x56, 0x56, 0x52, 0x4e, 0x4d, 0x4d, 0x67, 0x65, 0x65, 0x6f, 0x81, 0x90, 0x93, 0x8f, 0x92, 0x8d, 0x7d, 0x6b, 0x65, 0x6b, 0x6b, 0x64, 0x51, 0x40, 0x2c, 0x27, 0x35, 0x45, 0x4b, 0x48, 0x5f, 0x6c, 0x67, 0x4c, 0x38, 0x3a, 0x42, 0x43, 0x45, 0x46, 0x43, 0x47, 0x43, 0x48, 0x45, 0x46, 0x5d, 0x56, 0x4a, 0x40, 0x46, 0x5c, 0x74, 0x80, 0x8f, 0x91, 0x94, 0x98, 0x9f, 0xa6, 0xa8, 0xa6, 0x89, 0x8c, 0x95, 0xa1, 0xa5, 0x95, 0x76, 0x5d, 0x3a, 0x2e, 0x24, 0x27, 0x39, 0x58, 0x79, 0x90, 0x99, 0x89, 0x70, 0x58, 0x45, 0x39, 0x32, 0x2e, 0x2c, 0x2a, 0x26, 0x28, 0x33, 0x3c, 0x39, 0x2f, 0xa3, 0xa7, 0xac, 0xae, 0xac, 0xa7, 0xa1, 0x9e, 0x91, 0x8e, 0x88, 0x84, 0x86, 0x89, 0x87, 0x83, 0x90, 0x8d, 0x89, 0x85, 0x82, 0x7d, 0x79, 0x75, 0x6e, 0x70, 0x76, 0x81, 0x8d, 0x95, 0x9a, 0x9c, 0x9a, 0x95, 0x93, 0x95, 0x98, 0x98, 0x97, 0x97, 0x97, 0x99, 0x9a, 0x97, 0x95, 0x96, 0x9d, 0xa3, 0x9f, 0xa3, 0xb2, 0xc3, 0xc2, 0xac, 0x94, 0x88, 0x89, 0x8b, 0x90, 0x99, 0xa4, 0xa8, 0xa0, 0x96, 0x9d, 0x98, 0x96, 0x99, 0x9f, 0xa1, 0x9b, 0x94, 0x8e, 0x83, 0x7e, 0x82, 0x7e, 0x73, 0x70, 0x76, 0x73, 0x7d, 0x88, 0x89, 0x82, 0x7c, 0x7f, 0x86, 0x79, 0x7a, 0x7d, 0x82, 0x86, 0x89, 0x91, 0x98, 0x95, 0x94, 0x8c, 0x7f, 0x7b, 0x80, 0x86, 0x87, 0x88, 0x8a, 0x8d, 0x8e, 0x8c, 0x8c, 0x96, 0xa0, 0xa7, 0xa5, 0x9d, 0x8b, 0x72, 0x66, 0x74, 0x89, 0x94, 0x91, 0x87, 0x7c, 0x79, 0x7e, 0x80, 0x7c, 0x84, 0x88, 0x8d, 0x8e, 0x86, 0x79, 0x72, 0x72, 0x78, 0x7b, 0x7e, 0x82, 0x88, 0x91, 0x96, 0x96, 0x99, 0x96, 0x8e, 0x82, 0x79, 0x78, 0x7e, 0x85, 0x89, 0x83, 0x80, 0x83, 0x85, 0x7f, 0x77, 0x72, 0x7c, 0x87, 0x8b, 0x85, 0x80, 0x80, 0x7f, 0x7b, 0x86, 0x86, 0x8b, 0x91, 0x92, 0x8d, 0x87, 0x85, 0x7b, 0x86, 0x81, 0x80, 0x77, 0x7e, 0x84, 0x96, 0x90, 0x86, 0x7f, 0x82, 0x88, 0x8c, 0x8d, 0x8e, 0x96, 0x98, 0x9c, 0x9f, 0xa1, 0xa6, 0xac, 0xb0, 0xb1, 0xb3, 0xb6, 0xb8, 0xba, 0xbd, 0xc0, 0xc3, 0xc2, 0xc4, 0xc6, 0xc8, 0xca, 0xcc, 0xcd, 0xcd, 0xcd, 0xcc, 0xcb, 0xca, 0xca, 0xc9, 0xc9, 0xc9, 0xc7, 0xc6, 0xc4, 0xc2, 0xc1, 0xbe, 0xbb, 0xb9, 0xb8, 0xb5, 0xb0, 0xaa, 0xa6, 0xa4, 0xa3, 0xa3, 0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x99, 0x94, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8c, 0x8f, 0x98, 0xa1, 0xa8, 0x90, 0x8c, 0x99, 0x9c, 0x9e, 0xaa, 0xb2, 0xb4, 0xb6, 0xb8, 0xba, 0xbb, 0xbd, 0xbe, 0xc0, 0xc0, 0xc3, 0xc7, 0xca, 0xcc, 0xcc, 0xca, 0xc8, 0xca, 0xcb, 0xcb, 0xcb, 0xc9, 0xc9, 0xc9, 0xca, 0xcd, 0xcf, 0xd1, 0xd3, 0xd4, 0xd4, 0xd3, 0xd2, 0xd1, 0xd3, 0xd6, 0xd7, 0xd6, 0xd6, 0xd5, 0xd6, 0xd3, 0xd2, 0xd0, 0xd0, 0xd3, 0xd6, 0xd4, 0xcf, 0xd5, 0xdc, 0xe1, 0xe2, 0xe2, 0xe2, 0xe0, 0xde, 0xd9, 0xd7, 0xd4, 0xd2, 0xd3, 0xd4, 0xd6, 0xd8, 0xda, 0xd9, 0xd8, 0xd7, 0xd7, 0xd8, 0xda, 0xdb, 0xdb, 0xdc, 0xd9, 0xd6, 0xd6, 0xd8, 0xd8, 0xd6, 0xd4, 0xdb, 0x93, 0x82, 0x84, 0x79, 0xb5, 0xdd, 0xd0, 0xd4, 0xdc, 0xd6, 0xd5, 0xc3, 0x75, 0x6a, 0x76, 0xbe, 0xcf, 0xd3, 0xd1, 0xd7, 0xd4, 0xd5, 0xdb, 0xb6, 0x91, 0x79, 0x7c, 0xa2, 0xd4, 0xd7, 0xcc, 0xd8, 0xdf, 0xda, 0xd6, 0xd9, 0xda, 0xd7, 0xd9, 0xd7, 0xd5, 0xd3, 0xd2, 0xd3, 0xd4, 0xd4, 0xd0, 0xd3, 0xd4, 0xd1, 0xd0, 0xd1, 0xd1, 0xcf, 0xcf, 0xcf, 0xcc, 0xcb, 0xd1, 0xb8, 0x81, 0x68, 0x87, 0xa2, 0x94, 0x76, 0x90, 0xbf, 0xc6, 0xbe, 0xb8, 0x91, 0x64, 0x70, 0xab, 0xc6, 0xb9, 0xb2, 0x80, 0x6c, 0x5e, 0x70, 0x7b, 0x74, 0x73, 0x6c, 0x67, 0x6c, 0x70, 0x6e, 0x68, 0x66, 0x6b, 0x71, 0x90, 0x98, 0x99, 0x85, 0x78, 0x6b, 0x64, 0x59, 0x5f, 0x5d, 0x5a, 0x5b, 0x64, 0x6a, 0x66, 0x5d, 0x64, 0x68, 0x6d, 0x6e, 0x6c, 0x68, 0x61, 0x5c, 0x6c, 0x6e, 0x75, 0x7f, 0x89, 0x8d, 0x88, 0x83, 0x7b, 0x75, 0x72, 0x76, 0x7c, 0x7b, 0x77, 0x73, 0x73, 0x6e, 0x63, 0x5e, 0x68, 0x73, 0x6d, 0x5d, 0x4d, 0x4c, 0x4c, 0x51, 0x5a, 0x5f, 0x5d, 0x57, 0x4c, 0x42, 0x45, 0x58, 0x67, 0x66, 0x5d, 0x59, 0x4d, 0x4a, 0x44, 0x3b, 0x2f, 0x24, 0x1c, 0x19, 0x18, 0x1e, 0x22, 0x21, 0x1f, 0x24, 0x33, 0x42, 0x43, 0x3f, 0x39, 0x33, 0x32, 0x37, 0x3e, 0x43, 0x4b, 0x4e, 0x44, 0x40, 0x40, 0x4c, 0x69, 0x79, 0x77, 0x5b, 0x47, 0x45, 0x41, 0x3c, 0x3b, 0x3b, 0x45, 0x44, 0x41, 0x3f, 0x43, 0x4b, 0x51, 0x53, 0x54, 0x55, 0x59, 0x63, 0x73, 0x80, 0x82, 0x7e, 0x82, 0x8a, 0x8d, 0x85, 0x7c, 0x77, 0x72, 0x6d, 0x62, 0x54, 0x46, 0x47, 0x55, 0x60, 0x60, 0x59, 0x71, 0x75, 0x6c, 0x55, 0x46, 0x4a, 0x52, 0x55, 0x69, 0x6c, 0x67, 0x6c, 0x64, 0x6c, 0x69, 0x6e, 0x5e, 0x6b, 0x78, 0x81, 0x89, 0x92, 0x94, 0x91, 0x92, 0xa0, 0xa7, 0xa1, 0x97, 0x91, 0x8b, 0x82, 0x84, 0x7f, 0x7b, 0x7a, 0x77, 0x76, 0x7f, 0x8a, 0x7a, 0x6c, 0x5d, 0x53, 0x4c, 0x4e, 0x5e, 0x71, 0x83, 0x93, 0x9f, 0x9c, 0x8b, 0x72, 0x55, 0x3f, 0x25, 0x24, 0x23, 0x24, 0x28, 0x2d, 0x2f, 0x30, 0xac, 0xac, 0xae, 0xaf, 0xac, 0xa8, 0xa5, 0xa5, 0xaa, 0xa5, 0x9a, 0x8c, 0x83, 0x82, 0x83, 0x81, 0x80, 0x89, 0x95, 0x9b, 0x9a, 0x96, 0x93, 0x91, 0x9b, 0x9c, 0x9f, 0xa2, 0xa6, 0xac, 0xb6, 0xbe, 0xb5, 0xa5, 0x93, 0x8d, 0x91, 0x97, 0x99, 0x99, 0x9e, 0x9d, 0x99, 0x95, 0x92, 0x93, 0x96, 0x99, 0xa0, 0xa5, 0xae, 0xb4, 0xb1, 0xa3, 0x92, 0x87, 0x95, 0x96, 0x98, 0x9d, 0xa4, 0xa8, 0xa4, 0x9e, 0x8c, 0x94, 0x9d, 0x9e, 0x99, 0x93, 0x91, 0x92, 0x93, 0x8a, 0x7a, 0x71, 0x77, 0x82, 0x81, 0x78, 0x7b, 0x82, 0x7e, 0x70, 0x6e, 0x77, 0x7a, 0x73, 0x71, 0x72, 0x76, 0x7a, 0x7b, 0x7a, 0x7b, 0x7e, 0x8d, 0x8f, 0x89, 0x7a, 0x6e, 0x6d, 0x6f, 0x6e, 0x6b, 0x74, 0x84, 0x90, 0x8c, 0x82, 0x80, 0x86, 0x90, 0x87, 0x7d, 0x77, 0x6e, 0x68, 0x6c, 0x76, 0x83, 0x86, 0x86, 0x84, 0x87, 0x8a, 0x83, 0x79, 0x73, 0x7e, 0x88, 0x8a, 0x89, 0x87, 0x82, 0x7c, 0x76, 0x81, 0x86, 0x7f, 0x79, 0x7a, 0x7b, 0x79, 0x79, 0x86, 0x8b, 0x83, 0x81, 0x87, 0x87, 0x80, 0x73, 0x72, 0x79, 0x82, 0x83, 0x79, 0x72, 0x72, 0x7a, 0x83, 0x89, 0x87, 0x7f, 0x77, 0x72, 0x70, 0x72, 0x7a, 0x83, 0x85, 0x7c, 0x72, 0x73, 0x79, 0x88, 0x85, 0x75, 0x74, 0x6c, 0x6f, 0x6d, 0x7b, 0x76, 0x78, 0x7d, 0x83, 0x84, 0x86, 0x8d, 0x96, 0x95, 0x97, 0x9b, 0x9e, 0xa1, 0xa6, 0xac, 0xb1, 0xb4, 0xb6, 0xb8, 0xba, 0xbc, 0xbe, 0xc1, 0xc4, 0xc5, 0xc5, 0xc5, 0xc6, 0xc7, 0xc9, 0xca, 0xcb, 0xcc, 0xcb, 0xca, 0xc9, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc7, 0xc5, 0xc3, 0xc2, 0xc0, 0xbe, 0xbc, 0xbd, 0xbb, 0xb7, 0xb3, 0xb0, 0xaf, 0xaf, 0xb0, 0xa9, 0xa7, 0xa4, 0xa2, 0xa0, 0x9e, 0x9b, 0x98, 0x94, 0x92, 0x8f, 0x8d, 0x8c, 0x90, 0x9b, 0xa5, 0x9a, 0x8e, 0x94, 0x9f, 0xa0, 0xa7, 0xb0, 0xaf, 0xba, 0xbb, 0xbc, 0xbd, 0xbd, 0xbe, 0xc0, 0xc1, 0xc4, 0xc6, 0xc9, 0xce, 0xd0, 0xcd, 0xc8, 0xc4, 0xc7, 0xc7, 0xc7, 0xc7, 0xc6, 0xc7, 0xc9, 0xcb, 0xd2, 0xd4, 0xd7, 0xda, 0xdb, 0xda, 0xd8, 0xd7, 0xd1, 0xd4, 0xd7, 0xd8, 0xd7, 0xd6, 0xd4, 0xd4, 0xd2, 0xd4, 0xd3, 0xd2, 0xd4, 0xda, 0xde, 0xe0, 0xd9, 0xdf, 0xe2, 0xe0, 0xe0, 0xe3, 0xe1, 0xdc, 0xe1, 0xde, 0xd9, 0xd5, 0xd5, 0xd6, 0xd7, 0xd8, 0xdc, 0xdd, 0xdd, 0xdc, 0xdb, 0xdb, 0xdc, 0xdd, 0xdd, 0xdf, 0xdd, 0xd9, 0xd8, 0xdb, 0xdb, 0xd8, 0xd3, 0xd5, 0x88, 0x87, 0x82, 0x79, 0xc7, 0xd0, 0xd7, 0xce, 0xd7, 0xdd, 0xda, 0xb9, 0x6d, 0x79, 0x7b, 0xc5, 0xd3, 0xd8, 0xd6, 0xdb, 0xd5, 0xd4, 0xcd, 0xd0, 0xc1, 0xb1, 0xc7, 0xd8, 0xdb, 0xa5, 0x81, 0xaa, 0xd1, 0xda, 0xd5, 0xd6, 0xd9, 0xd8, 0xdb, 0xda, 0xd8, 0xd4, 0xd1, 0xd0, 0xd1, 0xd2, 0xce, 0xd3, 0xd5, 0xd2, 0xcf, 0xd0, 0xcf, 0xcd, 0xc9, 0xcc, 0xc9, 0xc9, 0xd2, 0xb3, 0x79, 0x6b, 0x73, 0x79, 0x6c, 0x67, 0x94, 0xc1, 0xc5, 0xc5, 0xb4, 0x86, 0x60, 0x79, 0xaf, 0xb8, 0xad, 0xb8, 0x78, 0x85, 0x7d, 0x77, 0x79, 0x7a, 0x79, 0x6f, 0x6e, 0x65, 0x60, 0x66, 0x6d, 0x6f, 0x6b, 0x67, 0x76, 0x7f, 0x89, 0x7b, 0x7d, 0x72, 0x6b, 0x5a, 0x5d, 0x62, 0x65, 0x64, 0x66, 0x69, 0x65, 0x5e, 0x5d, 0x61, 0x68, 0x6d, 0x6b, 0x67, 0x65, 0x66, 0x67, 0x69, 0x6f, 0x7a, 0x84, 0x88, 0x83, 0x7d, 0x7b, 0x71, 0x69, 0x6c, 0x74, 0x7b, 0x7f, 0x80, 0x71, 0x6f, 0x6b, 0x6b, 0x72, 0x76, 0x6b, 0x5c, 0x43, 0x43, 0x49, 0x53, 0x5a, 0x5a, 0x55, 0x52, 0x48, 0x41, 0x40, 0x4a, 0x51, 0x51, 0x52, 0x55, 0x57, 0x51, 0x47, 0x3a, 0x2c, 0x20, 0x1a, 0x19, 0x17, 0x1f, 0x24, 0x21, 0x21, 0x2a, 0x39, 0x44, 0x47, 0x41, 0x38, 0x31, 0x34, 0x3f, 0x4d, 0x56, 0x58, 0x5a, 0x53, 0x52, 0x4c, 0x48, 0x57, 0x60, 0x68, 0x50, 0x41, 0x40, 0x3b, 0x38, 0x3d, 0x43, 0x51, 0x44, 0x34, 0x2c, 0x32, 0x3f, 0x49, 0x4c, 0x58, 0x5b, 0x58, 0x4d, 0x42, 0x43, 0x4d, 0x55, 0x55, 0x57, 0x5f, 0x6c, 0x78, 0x7c, 0x7a, 0x76, 0x6e, 0x5c, 0x52, 0x56, 0x5a, 0x57, 0x5e, 0x6b, 0x80, 0x7d, 0x73, 0x65, 0x5d, 0x62, 0x6e, 0x78, 0x6e, 0x66, 0x59, 0x67, 0x71, 0x85, 0x7f, 0x7d, 0x89, 0x9b, 0xa9, 0xa9, 0xa5, 0xa8, 0xad, 0xaf, 0x9a, 0x9c, 0x95, 0x8a, 0x8f, 0xa1, 0xaa, 0xa7, 0x9f, 0x95, 0x91, 0x94, 0x92, 0x87, 0x81, 0x83, 0x7f, 0x73, 0x6e, 0x70, 0x6b, 0x5d, 0x59, 0x5f, 0x5f, 0x6e, 0x82, 0x96, 0xa6, 0xa3, 0x82, 0x5f, 0x2d, 0x2e, 0x2f, 0x2e, 0x27, 0x20, 0x20, 0x24, 0xb0, 0xa7, 0xa3, 0xa4, 0xa0, 0x99, 0x9b, 0xa5, 0x9f, 0x9d, 0x9c, 0x9e, 0x9f, 0x9b, 0x91, 0x89, 0x92, 0x90, 0x91, 0x94, 0x94, 0x8b, 0x81, 0x7a, 0x87, 0x90, 0x92, 0x89, 0x85, 0x8e, 0x9b, 0xa0, 0x9c, 0x85, 0x79, 0x84, 0x94, 0x99, 0x97, 0x97, 0x92, 0x95, 0x98, 0x99, 0x9a, 0x9a, 0x9d, 0x9f, 0xa5, 0xa6, 0xac, 0xb1, 0xaa, 0x99, 0x8c, 0x88, 0x8d, 0x93, 0x9c, 0xa4, 0xab, 0xae, 0xae, 0xac, 0xa3, 0x9e, 0x9d, 0xa2, 0xa8, 0xaa, 0xaa, 0xab, 0xa3, 0x96, 0x86, 0x81, 0x8b, 0x96, 0x94, 0x8a, 0x7f, 0x75, 0x72, 0x7b, 0x7f, 0x79, 0x74, 0x75, 0x7e, 0x7a, 0x76, 0x73, 0x6f, 0x6d, 0x72, 0x79, 0x8b, 0x90, 0x8d, 0x7f, 0x70, 0x6a, 0x6a, 0x6a, 0x6c, 0x78, 0x89, 0x92, 0x90, 0x8b, 0x8c, 0x91, 0x8c, 0x8f, 0x8b, 0x7f, 0x72, 0x6d, 0x70, 0x73, 0x84, 0x8d, 0x94, 0x92, 0x8f, 0x8c, 0x82, 0x78, 0x6e, 0x72, 0x79, 0x7b, 0x7b, 0x81, 0x80, 0x76, 0x6f, 0x73, 0x6f, 0x72, 0x72, 0x71, 0x79, 0x78, 0x76, 0x7e, 0x7b, 0x7a, 0x84, 0x85, 0x82, 0x89, 0x81, 0x8b, 0x93, 0x90, 0x83, 0x75, 0x6c, 0x69, 0x79, 0x78, 0x76, 0x77, 0x79, 0x7a, 0x77, 0x73, 0x6e, 0x70, 0x77, 0x7c, 0x77, 0x6e, 0x71, 0x7b, 0x77, 0x79, 0x7a, 0x78, 0x77, 0x76, 0x72, 0x6d, 0x75, 0x76, 0x7b, 0x82, 0x86, 0x87, 0x8c, 0x92, 0x93, 0x96, 0x9b, 0x9f, 0xa4, 0xa9, 0xae, 0xb1, 0xb4, 0xb5, 0xb7, 0xb9, 0xbb, 0xbe, 0xc1, 0xc3, 0xc2, 0xc4, 0xc6, 0xc6, 0xc6, 0xc6, 0xc9, 0xcb, 0xcc, 0xcc, 0xcc, 0xcb, 0xcb, 0xca, 0xc9, 0xc9, 0xc7, 0xc7, 0xc7, 0xc6, 0xc4, 0xc2, 0xc0, 0xbf, 0xbc, 0xb9, 0xb6, 0xb3, 0xb3, 0xb3, 0xb3, 0xb2, 0xad, 0xab, 0xa9, 0xa8, 0xa7, 0xa5, 0xa3, 0xa1, 0x9c, 0x99, 0x93, 0x90, 0x95, 0x9d, 0x9f, 0x9c, 0x8d, 0x8e, 0x93, 0x9b, 0xa2, 0xa7, 0xaf, 0xb7, 0xbf, 0xc2, 0xc4, 0xc3, 0xc3, 0xc5, 0xc6, 0xc5, 0xc7, 0xca, 0xcd, 0xcd, 0xc9, 0xc6, 0xc5, 0xc5, 0xc3, 0xc3, 0xc4, 0xc6, 0xc8, 0xca, 0xcc, 0xcd, 0xd2, 0xd0, 0xd0, 0xd3, 0xd7, 0xd9, 0xd8, 0xd5, 0xd7, 0xd4, 0xd2, 0xd2, 0xd3, 0xd1, 0xcd, 0xc9, 0xd1, 0xd1, 0xcf, 0xcc, 0xca, 0xcd, 0xd5, 0xdc, 0xdb, 0xdc, 0xde, 0xdf, 0xdf, 0xdd, 0xdb, 0xd9, 0xdc, 0xd9, 0xd8, 0xda, 0xd8, 0xd3, 0xd1, 0xd2, 0xd8, 0xda, 0xdd, 0xdf, 0xdf, 0xdd, 0xda, 0xd8, 0xd8, 0xda, 0xdd, 0xe0, 0xe0, 0xde, 0xdb, 0xd8, 0xd3, 0xce, 0xa1, 0x77, 0x77, 0x80, 0xa1, 0xd9, 0xdb, 0xde, 0xc9, 0xcb, 0xbd, 0x94, 0x7e, 0x79, 0x85, 0xca, 0xdf, 0xda, 0xd4, 0xd2, 0xd9, 0xcf, 0xd0, 0xd1, 0xca, 0xce, 0xd6, 0xe2, 0xcc, 0x84, 0x83, 0x85, 0xc8, 0xde, 0xcb, 0xd6, 0xd4, 0xcb, 0xc1, 0xb0, 0xaa, 0xb3, 0xde, 0xcc, 0xd1, 0xd0, 0xcc, 0xd0, 0xd5, 0xd7, 0xd5, 0xd2, 0xcd, 0xca, 0xcd, 0xc6, 0xd1, 0xbf, 0xa2, 0x7c, 0x77, 0x6d, 0x69, 0x6e, 0x70, 0x68, 0x96, 0xbc, 0xc6, 0xc3, 0xbc, 0x90, 0x60, 0x90, 0xb2, 0xbc, 0xbc, 0xa8, 0x72, 0x85, 0xa8, 0xa0, 0x86, 0x71, 0x75, 0x68, 0x67, 0x6d, 0x65, 0x5c, 0x60, 0x5e, 0x5b, 0x61, 0x72, 0x6e, 0x72, 0x7b, 0x7c, 0x71, 0x64, 0x5d, 0x5e, 0x5c, 0x5d, 0x63, 0x6a, 0x6c, 0x67, 0x61, 0x5d, 0x68, 0x73, 0x73, 0x69, 0x5e, 0x58, 0x56, 0x62, 0x6b, 0x72, 0x80, 0x85, 0x7f, 0x80, 0x7a, 0x7a, 0x69, 0x68, 0x74, 0x7a, 0x7a, 0x7a, 0x79, 0x71, 0x77, 0x78, 0x7e, 0x71, 0x77, 0x6c, 0x62, 0x4d, 0x5f, 0x6a, 0x62, 0x57, 0x53, 0x51, 0x4d, 0x4c, 0x44, 0x3e, 0x3f, 0x3c, 0x37, 0x37, 0x3b, 0x4b, 0x4b, 0x41, 0x2f, 0x22, 0x20, 0x1c, 0x16, 0x11, 0x18, 0x1d, 0x1f, 0x22, 0x2d, 0x39, 0x42, 0x45, 0x3c, 0x31, 0x2b, 0x31, 0x3d, 0x46, 0x49, 0x4e, 0x4d, 0x4e, 0x4b, 0x45, 0x40, 0x43, 0x4a, 0x4a, 0x4b, 0x42, 0x36, 0x32, 0x33, 0x3d, 0x4c, 0x51, 0x55, 0x50, 0x4e, 0x56, 0x59, 0x50, 0x47, 0x45, 0x4f, 0x5d, 0x69, 0x72, 0x7a, 0x82, 0x87, 0x76, 0x68, 0x5f, 0x50, 0x42, 0x54, 0x6e, 0x70, 0x67, 0x60, 0x55, 0x4e, 0x51, 0x59, 0x5d, 0x5c, 0x5a, 0x68, 0x75, 0x79, 0x7a, 0x82, 0x8f, 0x99, 0x96, 0x8e, 0x7e, 0x74, 0x7a, 0x8f, 0xa2, 0xab, 0xa9, 0x97, 0x83, 0x7b, 0x7c, 0x80, 0x86, 0x8b, 0x96, 0x8b, 0x85, 0x86, 0x81, 0x71, 0x64, 0x61, 0x7a, 0x78, 0x77, 0x78, 0x73, 0x6f, 0x72, 0x7a, 0x75, 0x7e, 0x85, 0x80, 0x72, 0x67, 0x65, 0x68, 0x6b, 0x67, 0x64, 0x6f, 0x8d, 0xa5, 0x9d, 0x85, 0x61, 0x35, 0x1f, 0x26, 0x35, 0x4d, 0x5d, 0x58, 0xa9, 0xa8, 0xaa, 0xab, 0xa5, 0x9c, 0x9b, 0xa0, 0x9e, 0x9e, 0x9c, 0x96, 0x8f, 0x89, 0x85, 0x84, 0x84, 0x87, 0x8a, 0x88, 0x82, 0x7d, 0x81, 0x89, 0x89, 0x8a, 0x88, 0x81, 0x80, 0x83, 0x83, 0x81, 0x81, 0x89, 0x99, 0xad, 0xba, 0xbc, 0xb5, 0xaf, 0xa9, 0xa1, 0x97, 0x92, 0x95, 0x9d, 0xa4, 0xa8, 0xa7, 0xad, 0xb0, 0xaa, 0xa0, 0x99, 0x98, 0x99, 0xa5, 0x92, 0x8a, 0x98, 0xa6, 0xa4, 0xa0, 0xa1, 0xa4, 0xa6, 0xac, 0xb4, 0xb8, 0xb4, 0xa9, 0xa0, 0x9d, 0x90, 0x7f, 0x77, 0x7d, 0x84, 0x82, 0x7b, 0x73, 0x6e, 0x6e, 0x74, 0x74, 0x6e, 0x6d, 0x73, 0x84, 0x7c, 0x76, 0x77, 0x7a, 0x7b, 0x7b, 0x7d, 0x7f, 0x83, 0x81, 0x78, 0x72, 0x75, 0x7c, 0x7e, 0x84, 0x88, 0x8a, 0x88, 0x86, 0x8a, 0x93, 0x9a, 0xa4, 0xa3, 0xa1, 0x9c, 0x8d, 0x7b, 0x72, 0x72, 0x7c, 0x87, 0x8b, 0x84, 0x7a, 0x78, 0x79, 0x79, 0x7d, 0x74, 0x71, 0x73, 0x73, 0x76, 0x76, 0x70, 0x76, 0x74, 0x68, 0x64, 0x61, 0x62, 0x6f, 0x73, 0x81, 0x82, 0x78, 0x72, 0x78, 0x79, 0x77, 0x7e, 0x7c, 0x7d, 0x80, 0x80, 0x7c, 0x75, 0x6c, 0x66, 0x75, 0x79, 0x7a, 0x79, 0x7c, 0x82, 0x83, 0x81, 0x7d, 0x79, 0x72, 0x6c, 0x6a, 0x6d, 0x72, 0x76, 0x82, 0x82, 0x80, 0x7b, 0x77, 0x75, 0x74, 0x74, 0x70, 0x73, 0x78, 0x7e, 0x83, 0x88, 0x8e, 0x94, 0x95, 0x98, 0x9c, 0xa0, 0xa4, 0xa8, 0xac, 0xaf, 0xb2, 0xb4, 0xb6, 0xb9, 0xba, 0xbd, 0xbf, 0xc1, 0xc2, 0xc3, 0xc5, 0xc6, 0xc6, 0xc7, 0xc9, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xca, 0xc9, 0xc8, 0xc8, 0xc8, 0xc8, 0xc7, 0xc6, 0xc4, 0xc2, 0xc1, 0xc0, 0xbe, 0xbc, 0xb9, 0xb7, 0xb6, 0xb6, 0xb5, 0xb4, 0xb0, 0xae, 0xac, 0xaa, 0xa9, 0xa8, 0xa6, 0xa4, 0xa3, 0x9f, 0x98, 0x95, 0x97, 0x9a, 0x96, 0x8f, 0x8f, 0x90, 0x96, 0x9e, 0xa5, 0xab, 0xb3, 0xbb, 0xc4, 0xc8, 0xcb, 0xca, 0xc9, 0xc9, 0xc8, 0xc6, 0xcb, 0xca, 0xca, 0xcb, 0xcb, 0xcb, 0xc9, 0xc7, 0xc8, 0xc9, 0xcb, 0xcc, 0xcd, 0xcd, 0xcd, 0xcc, 0xcf, 0xcf, 0xd0, 0xd3, 0xd6, 0xd8, 0xd8, 0xd7, 0xd5, 0xd2, 0xce, 0xcd, 0xce, 0xcf, 0xcf, 0xcf, 0xcc, 0xcc, 0xcb, 0xc9, 0xc7, 0xc8, 0xcc, 0xcf, 0xcf, 0xd0, 0xd2, 0xd3, 0xd5, 0xd5, 0xd5, 0xd5, 0xd7, 0xd5, 0xd5, 0xd7, 0xd6, 0xd2, 0xd1, 0xd3, 0xd4, 0xd6, 0xda, 0xdc, 0xdd, 0xdb, 0xd9, 0xd7, 0xd6, 0xd8, 0xdb, 0xde, 0xdf, 0xdf, 0xdd, 0xdc, 0xdc, 0xd3, 0xa8, 0x7f, 0x75, 0x75, 0x89, 0xb0, 0xc0, 0xc2, 0xac, 0x9b, 0x8e, 0x7b, 0x78, 0x80, 0x8a, 0xca, 0xda, 0xd7, 0xd7, 0xd4, 0xd9, 0xd1, 0xcd, 0xcc, 0xcb, 0xd3, 0xd7, 0xdd, 0xc6, 0x80, 0x84, 0x82, 0xba, 0xd0, 0xc7, 0xce, 0xb6, 0x93, 0x82, 0x80, 0x83, 0x97, 0xd1, 0xcc, 0xd2, 0xd0, 0xdf, 0xd5, 0xcd, 0xcf, 0xd0, 0xcd, 0xcb, 0xcc, 0xc8, 0xca, 0xcd, 0xa6, 0x7e, 0x64, 0x6e, 0x6c, 0x71, 0x6a, 0x6a, 0x6f, 0xa2, 0xc4, 0xc9, 0xc7, 0xbc, 0x8f, 0x65, 0x97, 0xbf, 0xbe, 0xb9, 0xa2, 0x67, 0x89, 0xaf, 0xa9, 0x90, 0x68, 0x65, 0x6f, 0x6d, 0x6f, 0x67, 0x5c, 0x5a, 0x5e, 0x67, 0x71, 0x6d, 0x6a, 0x6c, 0x75, 0x76, 0x6d, 0x62, 0x5c, 0x5b, 0x5b, 0x5c, 0x5f, 0x64, 0x66, 0x62, 0x5c, 0x5c, 0x64, 0x6c, 0x6e, 0x65, 0x59, 0x55, 0x57, 0x5d, 0x66, 0x6a, 0x74, 0x76, 0x74, 0x7b, 0x7a, 0x73, 0x70, 0x76, 0x7f, 0x82, 0x82, 0x7f, 0x78, 0x7c, 0x72, 0x6e, 0x6c, 0x70, 0x71, 0x68, 0x54, 0x51, 0x65, 0x6b, 0x59, 0x4d, 0x52, 0x53, 0x4b, 0x54, 0x4b, 0x43, 0x40, 0x3c, 0x37, 0x37, 0x3c, 0x4a, 0x48, 0x3c, 0x2a, 0x1f, 0x1e, 0x1c, 0x16, 0x15, 0x18, 0x1b, 0x1d, 0x24, 0x30, 0x39, 0x3d, 0x46, 0x39, 0x29, 0x21, 0x22, 0x29, 0x32, 0x37, 0x38, 0x3d, 0x40, 0x3e, 0x38, 0x36, 0x36, 0x37, 0x48, 0x53, 0x4e, 0x3a, 0x29, 0x26, 0x35, 0x48, 0x70, 0x81, 0x7e, 0x66, 0x58, 0x58, 0x5b, 0x5f, 0x4f, 0x5d, 0x66, 0x66, 0x68, 0x67, 0x58, 0x44, 0x35, 0x3a, 0x32, 0x2b, 0x3e, 0x5c, 0x68, 0x64, 0x64, 0x6e, 0x7d, 0x87, 0x86, 0x7b, 0x6d, 0x65, 0x54, 0x4a, 0x49, 0x5b, 0x73, 0x80, 0x82, 0x81, 0x8d, 0x91, 0x9b, 0xa7, 0xaa, 0xa3, 0x99, 0x92, 0x82, 0x8c, 0x90, 0x8f, 0x9a, 0xaa, 0xa8, 0x9a, 0x88, 0x72, 0x62, 0x68, 0x72, 0x70, 0x65, 0x5e, 0x50, 0x4d, 0x4a, 0x48, 0x48, 0x4d, 0x57, 0x61, 0x62, 0x62, 0x63, 0x66, 0x6b, 0x70, 0x75, 0x78, 0x7f, 0x83, 0x87, 0x89, 0x8c, 0x93, 0x9a, 0xa0, 0x94, 0x74, 0x5b, 0x55, 0x5b, 0x69, 0x6b, 0x5c, 0xa5, 0xa9, 0xac, 0xaa, 0xa7, 0xa6, 0xa8, 0xac, 0xa5, 0xa5, 0xa4, 0xa0, 0x9b, 0x94, 0x8f, 0x8d, 0x97, 0x91, 0x8b, 0x86, 0x83, 0x81, 0x83, 0x87, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x88, 0x86, 0x83, 0x89, 0x89, 0x89, 0x8e, 0x9b, 0xa9, 0xaa, 0xa5, 0x90, 0x99, 0xa3, 0xa6, 0xa1, 0x9d, 0x9b, 0x9d, 0xac, 0xbc, 0xc8, 0xc6, 0xbf, 0xba, 0xb3, 0xab, 0x96, 0x87, 0x81, 0x8b, 0x94, 0x95, 0x99, 0xa1, 0xa8, 0xa9, 0xa7, 0xa6, 0xa8, 0xa9, 0xa1, 0x97, 0x7e, 0x7f, 0x81, 0x85, 0x88, 0x83, 0x76, 0x69, 0x6c, 0x6d, 0x71, 0x73, 0x6c, 0x64, 0x68, 0x73, 0x82, 0x7b, 0x75, 0x76, 0x79, 0x7b, 0x7b, 0x7c, 0x89, 0x8e, 0x8f, 0x8b, 0x89, 0x8b, 0x8a, 0x87, 0x97, 0x93, 0x87, 0x79, 0x75, 0x7d, 0x87, 0x8c, 0x8b, 0x86, 0x87, 0x8d, 0x89, 0x7c, 0x76, 0x7a, 0x6d, 0x6e, 0x6d, 0x6d, 0x73, 0x7e, 0x83, 0x83, 0x61, 0x58, 0x5f, 0x72, 0x78, 0x74, 0x6e, 0x69, 0x67, 0x69, 0x61, 0x61, 0x60, 0x60, 0x6c, 0x6e, 0x78, 0x7a, 0x78, 0x7a, 0x81, 0x80, 0x7a, 0x7a, 0x85, 0x8b, 0x8f, 0x8b, 0x80, 0x78, 0x76, 0x77, 0x73, 0x7a, 0x7e, 0x7e, 0x7f, 0x83, 0x83, 0x80, 0x78, 0x79, 0x76, 0x74, 0x7e, 0x8c, 0x90, 0x8a, 0x79, 0x7c, 0x7e, 0x7c, 0x78, 0x73, 0x72, 0x72, 0x6e, 0x72, 0x76, 0x7a, 0x80, 0x8a, 0x91, 0x95, 0x97, 0x9a, 0x9d, 0xa1, 0xa4, 0xa7, 0xab, 0xad, 0xaf, 0xb2, 0xb5, 0xb8, 0xba, 0xbb, 0xbd, 0xbe, 0xc1, 0xc2, 0xc4, 0xc5, 0xc6, 0xc8, 0xca, 0xcb, 0xca, 0xca, 0xca, 0xca, 0xc9, 0xc9, 0xc8, 0xc7, 0xc9, 0xc8, 0xc6, 0xc5, 0xc3, 0xc2, 0xc2, 0xc1, 0xbf, 0xbd, 0xbb, 0xb9, 0xb8, 0xb7, 0xb6, 0xb5, 0xb1, 0xb0, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa5, 0xa6, 0xa2, 0x9d, 0x99, 0x99, 0x97, 0x8e, 0x84, 0x91, 0x94, 0x9b, 0xa3, 0xaa, 0xb0, 0xb9, 0xc0, 0xc6, 0xcb, 0xcf, 0xcf, 0xce, 0xce, 0xcc, 0xc9, 0xcb, 0xc8, 0xc5, 0xc7, 0xcd, 0xd0, 0xcf, 0xcc, 0xca, 0xcc, 0xcd, 0xcf, 0xcf, 0xce, 0xcc, 0xcb, 0xcd, 0xce, 0xd0, 0xd3, 0xd6, 0xd8, 0xd9, 0xda, 0xda, 0xd7, 0xd3, 0xd0, 0xd0, 0xd2, 0xd5, 0xd7, 0xd2, 0xd2, 0xd2, 0xd0, 0xcf, 0xcd, 0xcc, 0xcc, 0xcb, 0xcc, 0xcc, 0xce, 0xd1, 0xd4, 0xd7, 0xd9, 0xd0, 0xce, 0xcf, 0xd1, 0xd2, 0xd1, 0xd2, 0xd4, 0xd4, 0xd5, 0xd7, 0xd9, 0xd9, 0xd7, 0xd5, 0xd3, 0xd3, 0xd5, 0xd8, 0xdb, 0xdd, 0xde, 0xdf, 0xdf, 0xd3, 0xde, 0xc1, 0x8d, 0x7a, 0x81, 0x7b, 0x6c, 0x79, 0x7f, 0x7f, 0x74, 0x7a, 0x79, 0x70, 0x76, 0x92, 0xcd, 0xd6, 0xd5, 0xdd, 0xd7, 0xd8, 0xd6, 0xda, 0xbf, 0xbc, 0xd6, 0xe0, 0xdb, 0xbb, 0x7c, 0x80, 0x6f, 0xa9, 0xd5, 0xba, 0x8e, 0x77, 0x80, 0x7c, 0x7a, 0x74, 0x87, 0xca, 0xd0, 0xd2, 0xce, 0xcc, 0xce, 0xd2, 0xd5, 0xd5, 0xd3, 0xce, 0xca, 0xc2, 0xc4, 0xb6, 0x84, 0x65, 0x61, 0x6c, 0x62, 0x6c, 0x66, 0x73, 0x83, 0xae, 0xc0, 0xc2, 0xc4, 0xc2, 0x94, 0x6d, 0x98, 0xc7, 0xbd, 0xb7, 0x9b, 0x5d, 0x91, 0xb7, 0xab, 0x96, 0x6b, 0x63, 0x74, 0x71, 0x70, 0x6e, 0x64, 0x59, 0x5d, 0x6b, 0x72, 0x69, 0x68, 0x6c, 0x75, 0x77, 0x6e, 0x64, 0x5f, 0x5e, 0x60, 0x60, 0x60, 0x62, 0x65, 0x62, 0x5c, 0x59, 0x5d, 0x67, 0x6d, 0x66, 0x58, 0x55, 0x5a, 0x5f, 0x66, 0x65, 0x69, 0x69, 0x69, 0x77, 0x7a, 0x75, 0x77, 0x7d, 0x7f, 0x7c, 0x7e, 0x7b, 0x6f, 0x6f, 0x67, 0x6d, 0x65, 0x6c, 0x63, 0x65, 0x56, 0x5c, 0x5c, 0x5e, 0x5b, 0x51, 0x48, 0x4c, 0x56, 0x62, 0x57, 0x4c, 0x45, 0x3e, 0x39, 0x3a, 0x3f, 0x4d, 0x46, 0x37, 0x26, 0x1e, 0x1e, 0x1c, 0x18, 0x17, 0x17, 0x19, 0x1f, 0x2c, 0x3a, 0x41, 0x42, 0x3e, 0x34, 0x2c, 0x2e, 0x35, 0x3d, 0x46, 0x4e, 0x57, 0x5b, 0x5d, 0x59, 0x55, 0x50, 0x4b, 0x46, 0x4f, 0x64, 0x69, 0x52, 0x34, 0x24, 0x2f, 0x46, 0x72, 0x8b, 0x8c, 0x72, 0x62, 0x67, 0x73, 0x7d, 0x76, 0x6d, 0x5a, 0x45, 0x3a, 0x38, 0x32, 0x29, 0x48, 0x58, 0x56, 0x59, 0x76, 0x84, 0x7d, 0x7d, 0x80, 0x85, 0x7d, 0x69, 0x63, 0x6f, 0x7d, 0x81, 0x60, 0x53, 0x4d, 0x56, 0x62, 0x6c, 0x7d, 0x8d, 0x7f, 0x78, 0x71, 0x75, 0x82, 0x8b, 0x88, 0x80, 0x76, 0x78, 0x7e, 0x8a, 0x95, 0x94, 0x88, 0x7d, 0x6f, 0x7c, 0x87, 0x7d, 0x56, 0x29, 0x12, 0x10, 0x31, 0x3a, 0x4c, 0x66, 0x7e, 0x86, 0x7c, 0x6d, 0x6f, 0x6c, 0x6a, 0x6d, 0x75, 0x7b, 0x7d, 0x7c, 0x7c, 0x7e, 0x8a, 0x98, 0x99, 0x92, 0x92, 0x99, 0x8f, 0x87, 0x78, 0x6a, 0x68, 0x6d, 0x6b, 0x61, 0xaf, 0xaf, 0xa9, 0x9f, 0x9c, 0xa2, 0xa9, 0xab, 0xaa, 0xa2, 0x9a, 0x99, 0x9b, 0x9b, 0x94, 0x8d, 0x8c, 0x86, 0x83, 0x84, 0x87, 0x88, 0x89, 0x8b, 0x8c, 0x90, 0x95, 0x95, 0x8e, 0x86, 0x87, 0x8d, 0x95, 0x8f, 0x88, 0x87, 0x8e, 0x97, 0x98, 0x94, 0x97, 0x9c, 0xa1, 0x9f, 0x99, 0x92, 0x90, 0x90, 0x95, 0x9a, 0x9d, 0x9d, 0x9e, 0xa0, 0x9d, 0x97, 0x91, 0x95, 0x96, 0x92, 0x8f, 0x92, 0x96, 0x97, 0xa6, 0xad, 0xb1, 0xb0, 0xb1, 0xae, 0xa0, 0x8e, 0x84, 0x86, 0x8a, 0x90, 0x94, 0x95, 0x91, 0x8d, 0x82, 0x80, 0x7a, 0x6f, 0x5e, 0x56, 0x61, 0x73, 0x76, 0x73, 0x6e, 0x6a, 0x68, 0x69, 0x6e, 0x73, 0x74, 0x7c, 0x84, 0x89, 0x90, 0x97, 0x98, 0x94, 0x81, 0x80, 0x78, 0x71, 0x74, 0x81, 0x8a, 0x8b, 0x89, 0x83, 0x81, 0x84, 0x83, 0x7c, 0x76, 0x75, 0x72, 0x6d, 0x69, 0x6a, 0x76, 0x83, 0x87, 0x85, 0x7a, 0x6a, 0x6a, 0x75, 0x71, 0x65, 0x64, 0x69, 0x71, 0x75, 0x6f, 0x6d, 0x66, 0x5d, 0x61, 0x5e, 0x64, 0x67, 0x6e, 0x7a, 0x84, 0x83, 0x7c, 0x78, 0x82, 0x89, 0x8f, 0x8b, 0x81, 0x79, 0x78, 0x7a, 0x77, 0x79, 0x7f, 0x86, 0x85, 0x7d, 0x76, 0x73, 0x6b, 0x6f, 0x70, 0x71, 0x78, 0x81, 0x81, 0x7b, 0x85, 0x82, 0x81, 0x82, 0x7f, 0x7a, 0x78, 0x79, 0x8d, 0x8e, 0x8c, 0x87, 0x87, 0x8c, 0x8f, 0x8e, 0x97, 0x9a, 0x9d, 0xa1, 0xa4, 0xa7, 0xaa, 0xad, 0xae, 0xb1, 0xb5, 0xb8, 0xb9, 0xba, 0xbc, 0xbd, 0xc0, 0xc1, 0xc3, 0xc5, 0xc6, 0xc8, 0xc9, 0xca, 0xc9, 0xc9, 0xc9, 0xc9, 0xc9, 0xc8, 0xc8, 0xc7, 0xc9, 0xc8, 0xc6, 0xc4, 0xc3, 0xc2, 0xc2, 0xc2, 0xbe, 0xbd, 0xbb, 0xb9, 0xb8, 0xb7, 0xb5, 0xb3, 0xb1, 0xaf, 0xad, 0xab, 0xaa, 0xa9, 0xa6, 0xa5, 0xa4, 0xa2, 0x9f, 0x9b, 0x97, 0x91, 0x8a, 0x84, 0x94, 0x99, 0xa0, 0xa8, 0xad, 0xb4, 0xbc, 0xc3, 0xc3, 0xc8, 0xcd, 0xce, 0xce, 0xcf, 0xcf, 0xcd, 0xc9, 0xc6, 0xc3, 0xc6, 0xcd, 0xd3, 0xd4, 0xd4, 0xcc, 0xcd, 0xce, 0xcf, 0xce, 0xce, 0xcd, 0xcc, 0xcc, 0xce, 0xd1, 0xd3, 0xd5, 0xd7, 0xda, 0xdb, 0xdd, 0xdc, 0xd9, 0xd6, 0xd3, 0xd2, 0xd4, 0xd5, 0xd2, 0xd0, 0xcf, 0xcf, 0xce, 0xcc, 0xc9, 0xc6, 0xc3, 0xc2, 0xc0, 0xc0, 0xc3, 0xc6, 0xca, 0xcd, 0xc8, 0xc9, 0xca, 0xcd, 0xd0, 0xd2, 0xd4, 0xd6, 0xd7, 0xd7, 0xd7, 0xd7, 0xd5, 0xd3, 0xd0, 0xcf, 0xd1, 0xd2, 0xd4, 0xd7, 0xd9, 0xdc, 0xdd, 0xde, 0xd8, 0xd5, 0xcc, 0xb2, 0x88, 0x6b, 0x6f, 0x80, 0x7a, 0x73, 0x78, 0x73, 0x89, 0x89, 0x71, 0x6f, 0x9b, 0xd1, 0xd6, 0xd8, 0xe2, 0xd8, 0xd7, 0xd7, 0xb9, 0x89, 0x81, 0xa2, 0xad, 0xa5, 0x95, 0x7a, 0x78, 0x7f, 0xa0, 0x9d, 0x7e, 0x75, 0x79, 0x81, 0x86, 0x82, 0x77, 0x8e, 0xd0, 0xd5, 0xd0, 0xcb, 0xcb, 0xd9, 0xde, 0xd2, 0xc8, 0xcb, 0xcf, 0xcd, 0xc9, 0xc6, 0xa9, 0x77, 0x62, 0x6c, 0x73, 0x66, 0x68, 0x78, 0x9f, 0xae, 0xc1, 0xc0, 0xc2, 0xc9, 0xc9, 0x9f, 0x73, 0x8d, 0xc2, 0xbb, 0xb7, 0x96, 0x5f, 0x95, 0xbc, 0xab, 0x98, 0x7d, 0x77, 0x76, 0x6e, 0x6d, 0x72, 0x6b, 0x5a, 0x59, 0x61, 0x5f, 0x66, 0x68, 0x6f, 0x78, 0x79, 0x70, 0x66, 0x60, 0x59, 0x5c, 0x5c, 0x5a, 0x5b, 0x5e, 0x5c, 0x57, 0x57, 0x59, 0x65, 0x6f, 0x6a, 0x5b, 0x58, 0x5f, 0x66, 0x6c, 0x67, 0x68, 0x67, 0x69, 0x77, 0x79, 0x78, 0x73, 0x73, 0x73, 0x73, 0x78, 0x76, 0x6b, 0x61, 0x61, 0x6c, 0x6a, 0x67, 0x5d, 0x5e, 0x57, 0x61, 0x5a, 0x5a, 0x5e, 0x56, 0x4b, 0x52, 0x64, 0x6e, 0x63, 0x56, 0x4a, 0x41, 0x3d, 0x40, 0x46, 0x52, 0x46, 0x35, 0x26, 0x20, 0x1f, 0x1e, 0x1c, 0x1b, 0x1d, 0x22, 0x2a, 0x38, 0x44, 0x49, 0x47, 0x49, 0x3d, 0x34, 0x35, 0x3b, 0x42, 0x4c, 0x57, 0x5f, 0x5d, 0x5f, 0x66, 0x69, 0x63, 0x5c, 0x58, 0x55, 0x6b, 0x79, 0x70, 0x51, 0x34, 0x34, 0x4a, 0x73, 0x85, 0x87, 0x79, 0x73, 0x76, 0x79, 0x7d, 0x70, 0x57, 0x3c, 0x2f, 0x2a, 0x2e, 0x3e, 0x52, 0x6b, 0x6e, 0x6e, 0x73, 0x75, 0x6a, 0x6a, 0x7c, 0x8a, 0x90, 0x91, 0x8b, 0x86, 0x89, 0x8f, 0x92, 0x98, 0x84, 0x6e, 0x62, 0x5e, 0x5c, 0x5d, 0x61, 0x7d, 0x81, 0x7e, 0x76, 0x77, 0x78, 0x6a, 0x55, 0x54, 0x59, 0x60, 0x61, 0x56, 0x4c, 0x52, 0x60, 0x71, 0x54, 0x34, 0x23, 0x1f, 0x23, 0x2b, 0x33, 0x39, 0x56, 0x73, 0x7d, 0x79, 0x74, 0x71, 0x70, 0x66, 0x66, 0x66, 0x68, 0x6d, 0x73, 0x79, 0x7d, 0x7c, 0x74, 0x75, 0x83, 0x8b, 0x84, 0x7c, 0x7a, 0x7e, 0x89, 0x88, 0x7c, 0x75, 0x75, 0x79, 0x80, 0x9b, 0x9c, 0x98, 0x92, 0x96, 0xa1, 0xa7, 0xa6, 0x9f, 0x94, 0x88, 0x82, 0x84, 0x87, 0x85, 0x82, 0x82, 0x85, 0x8a, 0x8a, 0x85, 0x83, 0x89, 0x91, 0x90, 0x90, 0x90, 0x8b, 0x80, 0x77, 0x77, 0x7b, 0x77, 0x7c, 0x84, 0x89, 0x88, 0x87, 0x8d, 0x95, 0xa8, 0xa4, 0xa5, 0xad, 0xb3, 0xa8, 0x8e, 0x78, 0x65, 0x6b, 0x78, 0x85, 0x86, 0x7a, 0x6c, 0x65, 0x77, 0x80, 0x88, 0x8d, 0x96, 0xa1, 0xa7, 0xa6, 0xa1, 0xa6, 0xa7, 0xa3, 0xa2, 0xa2, 0x98, 0x8a, 0x7f, 0x7d, 0x7c, 0x7e, 0x83, 0x89, 0x8e, 0x92, 0x92, 0x92, 0x90, 0x84, 0x6f, 0x5e, 0x5d, 0x64, 0x6e, 0x6a, 0x63, 0x5d, 0x5c, 0x60, 0x66, 0x69, 0x7a, 0x7e, 0x7f, 0x7c, 0x7c, 0x7f, 0x7d, 0x77, 0x73, 0x75, 0x75, 0x75, 0x7c, 0x86, 0x89, 0x87, 0x81, 0x83, 0x84, 0x85, 0x8a, 0x90, 0x8e, 0x88, 0x87, 0x86, 0x80, 0x75, 0x6d, 0x70, 0x78, 0x7f, 0x7b, 0x70, 0x75, 0x7e, 0x73, 0x66, 0x6b, 0x78, 0x7f, 0x82, 0x7a, 0x75, 0x6b, 0x61, 0x65, 0x63, 0x5f, 0x5b, 0x5f, 0x69, 0x70, 0x72, 0x70, 0x6d, 0x75, 0x73, 0x74, 0x7b, 0x82, 0x81, 0x79, 0x70, 0x6d, 0x67, 0x6d, 0x7b, 0x7b, 0x6d, 0x64, 0x66, 0x81, 0x80, 0x7d, 0x7a, 0x78, 0x7b, 0x84, 0x8d, 0x99, 0x8c, 0x82, 0x81, 0x80, 0x7b, 0x78, 0x7a, 0x89, 0x89, 0x88, 0x86, 0x88, 0x8d, 0x90, 0x90, 0x96, 0x98, 0x9c, 0xa0, 0xa3, 0xa7, 0xab, 0xad, 0xaf, 0xb1, 0xb5, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbf, 0xc0, 0xc1, 0xc4, 0xc6, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc9, 0xc9, 0xc9, 0xc8, 0xc8, 0xc8, 0xc8, 0xc7, 0xc5, 0xc3, 0xc2, 0xc2, 0xc2, 0xc2, 0xbe, 0xbc, 0xba, 0xb9, 0xb7, 0xb6, 0xb3, 0xb2, 0xb0, 0xaf, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa4, 0xa1, 0xa1, 0xa0, 0x9a, 0x91, 0x8a, 0x88, 0x8a, 0x96, 0x9d, 0xa5, 0xab, 0xb0, 0xb6, 0xbe, 0xc3, 0xc4, 0xc8, 0xcb, 0xcb, 0xcc, 0xcf, 0xd0, 0xcf, 0xcb, 0xcb, 0xca, 0xcb, 0xce, 0xd2, 0xd6, 0xd8, 0xd4, 0xd3, 0xd1, 0xd0, 0xce, 0xce, 0xce, 0xce, 0xcb, 0xcd, 0xcf, 0xd0, 0xd2, 0xd4, 0xd6, 0xd8, 0xd8, 0xd8, 0xd9, 0xd8, 0xd5, 0xd2, 0xd0, 0xcf, 0xd1, 0xcf, 0xcc, 0xcb, 0xcc, 0xcb, 0xc9, 0xc6, 0xc3, 0xc0, 0xbd, 0xbb, 0xbc, 0xbe, 0xc2, 0xc4, 0xc7, 0xc9, 0xcc, 0xcf, 0xd3, 0xd7, 0xd9, 0xda, 0xd9, 0xd8, 0xd7, 0xd6, 0xd4, 0xd1, 0xcf, 0xce, 0xd0, 0xd1, 0xd2, 0xd3, 0xd5, 0xd7, 0xd9, 0xda, 0xdb, 0xd2, 0xd9, 0xde, 0xbf, 0x91, 0x75, 0x6c, 0x75, 0x6b, 0x80, 0x8d, 0xab, 0x98, 0x76, 0x72, 0xa4, 0xd3, 0xd8, 0xda, 0xe0, 0xd5, 0xd3, 0xd0, 0xa0, 0x7d, 0x72, 0x77, 0x73, 0x71, 0x75, 0x78, 0x7e, 0x74, 0x7b, 0x7f, 0x7b, 0x7b, 0x7b, 0x7d, 0x70, 0x7a, 0x80, 0xa2, 0xd6, 0xd4, 0xcd, 0xce, 0xd9, 0xd1, 0xbd, 0xa1, 0x90, 0x94, 0xa6, 0xb6, 0xc5, 0xc8, 0xae, 0x85, 0x70, 0x75, 0x73, 0x69, 0x63, 0x87, 0xbe, 0xc6, 0xc6, 0xbf, 0xc2, 0xc6, 0xca, 0xa7, 0x75, 0x83, 0xb9, 0xba, 0xb7, 0x92, 0x65, 0x88, 0xb5, 0xaf, 0x97, 0x80, 0x80, 0x75, 0x6f, 0x6b, 0x6e, 0x69, 0x5b, 0x5a, 0x5f, 0x59, 0x6b, 0x6c, 0x6f, 0x72, 0x70, 0x69, 0x62, 0x5e, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x64, 0x62, 0x5f, 0x5d, 0x5c, 0x64, 0x6c, 0x66, 0x59, 0x58, 0x60, 0x68, 0x6d, 0x68, 0x6a, 0x6c, 0x6f, 0x79, 0x77, 0x70, 0x65, 0x66, 0x71, 0x78, 0x7a, 0x74, 0x6a, 0x65, 0x63, 0x64, 0x6e, 0x63, 0x5f, 0x55, 0x50, 0x60, 0x67, 0x63, 0x54, 0x4c, 0x56, 0x63, 0x6a, 0x74, 0x6a, 0x5b, 0x4d, 0x44, 0x41, 0x46, 0x4c, 0x54, 0x46, 0x34, 0x29, 0x23, 0x20, 0x1e, 0x1d, 0x22, 0x28, 0x31, 0x3b, 0x45, 0x4c, 0x4c, 0x48, 0x55, 0x45, 0x35, 0x2f, 0x31, 0x3a, 0x49, 0x56, 0x62, 0x5b, 0x61, 0x75, 0x7e, 0x74, 0x6a, 0x68, 0x5b, 0x66, 0x76, 0x7f, 0x6e, 0x4b, 0x43, 0x56, 0x76, 0x83, 0x8a, 0x87, 0x80, 0x77, 0x77, 0x81, 0x68, 0x49, 0x2b, 0x23, 0x2a, 0x3a, 0x52, 0x68, 0x76, 0x69, 0x6a, 0x6b, 0x5b, 0x58, 0x70, 0x87, 0x8f, 0x85, 0x89, 0x98, 0x9c, 0x95, 0x9b, 0xac, 0x95, 0x92, 0x8a, 0x7e, 0x76, 0x6f, 0x63, 0x57, 0x42, 0x51, 0x64, 0x72, 0x7c, 0x84, 0x8b, 0x8e, 0x8e, 0x84, 0x73, 0x6b, 0x78, 0x87, 0x7d, 0x66, 0x2c, 0x2b, 0x2c, 0x2e, 0x32, 0x3d, 0x54, 0x69, 0x73, 0x74, 0x72, 0x6e, 0x6e, 0x6c, 0x60, 0x53, 0x5a, 0x56, 0x4e, 0x49, 0x46, 0x47, 0x49, 0x4b, 0x4e, 0x4a, 0x48, 0x4a, 0x4f, 0x56, 0x5e, 0x63, 0x71, 0x78, 0x78, 0x71, 0x6c, 0x68, 0x6c, 0x78, 0x85, 0x8c, 0x91, 0x95, 0x9b, 0xa0, 0x9f, 0x9a, 0x9b, 0x9e, 0xa2, 0xa1, 0x9e, 0x9a, 0x99, 0x99, 0x91, 0x8f, 0x8d, 0x8d, 0x8a, 0x88, 0x88, 0x8b, 0x91, 0x8d, 0x88, 0x85, 0x84, 0x83, 0x80, 0x7d, 0x82, 0x85, 0x8d, 0x95, 0x98, 0x97, 0x9d, 0xa5, 0x90, 0x89, 0x86, 0x8d, 0x99, 0x9c, 0x92, 0x87, 0x89, 0x84, 0x83, 0x84, 0x80, 0x7a, 0x7d, 0x85, 0x92, 0x92, 0x97, 0x9d, 0x9c, 0x99, 0x9e, 0xa9, 0xa2, 0x9f, 0x97, 0x8c, 0x8a, 0x8e, 0x90, 0x8e, 0x89, 0x84, 0x7f, 0x80, 0x82, 0x84, 0x87, 0x8a, 0x95, 0x91, 0x8b, 0x82, 0x77, 0x6d, 0x6b, 0x6e, 0x6d, 0x68, 0x60, 0x5d, 0x62, 0x68, 0x68, 0x65, 0x6c, 0x75, 0x7a, 0x79, 0x76, 0x73, 0x6d, 0x67, 0x74, 0x74, 0x74, 0x76, 0x77, 0x78, 0x78, 0x78, 0x8c, 0x8c, 0x84, 0x77, 0x76, 0x80, 0x82, 0x7d, 0x88, 0x84, 0x7b, 0x6f, 0x69, 0x6e, 0x7a, 0x85, 0x89, 0x86, 0x8c, 0x8d, 0x7a, 0x68, 0x66, 0x6a, 0x6d, 0x75, 0x73, 0x74, 0x6d, 0x64, 0x67, 0x64, 0x66, 0x5f, 0x63, 0x6c, 0x6c, 0x6b, 0x6b, 0x67, 0x6c, 0x6c, 0x6f, 0x75, 0x7a, 0x79, 0x74, 0x6f, 0x76, 0x6e, 0x72, 0x80, 0x82, 0x78, 0x76, 0x7e, 0x7b, 0x7c, 0x7b, 0x77, 0x72, 0x76, 0x85, 0x94, 0x8c, 0x81, 0x7e, 0x86, 0x89, 0x7f, 0x74, 0x70, 0x71, 0x71, 0x74, 0x7c, 0x84, 0x8b, 0x90, 0x95, 0x94, 0x97, 0x9b, 0x9f, 0xa2, 0xa6, 0xaa, 0xad, 0xaf, 0xb2, 0xb5, 0xb7, 0xb8, 0xba, 0xbb, 0xbc, 0xbe, 0xbe, 0xc0, 0xc2, 0xc5, 0xc7, 0xc6, 0xc6, 0xc7, 0xc7, 0xc7, 0xc8, 0xc8, 0xc7, 0xc7, 0xc7, 0xc6, 0xc5, 0xc4, 0xc3, 0xc2, 0xc1, 0xc1, 0xc1, 0xbf, 0xbd, 0xba, 0xb8, 0xb7, 0xb5, 0xb4, 0xb2, 0xb1, 0xb0, 0xae, 0xac, 0xab, 0xa9, 0xa7, 0xa6, 0xa2, 0xa3, 0xa1, 0x98, 0x8b, 0x83, 0x87, 0x8f, 0x96, 0x9f, 0xa8, 0xad, 0xb1, 0xb8, 0xbf, 0xc3, 0xc8, 0xcc, 0xcd, 0xcd, 0xcd, 0xcf, 0xd0, 0xd0, 0xd1, 0xd3, 0xd4, 0xd2, 0xd0, 0xd0, 0xd4, 0xd7, 0xd9, 0xd7, 0xd3, 0xd0, 0xcd, 0xcc, 0xcc, 0xcc, 0xcb, 0xcb, 0xcb, 0xcc, 0xcd, 0xcf, 0xd0, 0xd1, 0xd4, 0xd6, 0xd8, 0xda, 0xda, 0xd8, 0xd5, 0xd2, 0xd1, 0xce, 0xcb, 0xca, 0xcb, 0xcc, 0xcc, 0xcb, 0xcd, 0xca, 0xc7, 0xc5, 0xc4, 0xc5, 0xc8, 0xc9, 0xcc, 0xd0, 0xd3, 0xd5, 0xd8, 0xdb, 0xdd, 0xdc, 0xd7, 0xd6, 0xd5, 0xd3, 0xd2, 0xd1, 0xd1, 0xd1, 0xd0, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd2, 0xcd, 0xc8, 0xc5, 0xcc, 0xd7, 0xcc, 0xb3, 0xb4, 0xae, 0xc3, 0xca, 0xd0, 0x95, 0x6d, 0x69, 0xb1, 0xd5, 0xd7, 0xd8, 0xd9, 0xd2, 0xd1, 0xc2, 0x82, 0x7c, 0x77, 0x70, 0x7b, 0x85, 0x74, 0x66, 0x68, 0x76, 0x7b, 0x74, 0x73, 0x7b, 0x7c, 0x78, 0x8a, 0x9b, 0xa8, 0xc1, 0xd6, 0xcf, 0xcd, 0xce, 0xb5, 0x9c, 0x85, 0x7c, 0x74, 0x6e, 0x76, 0x88, 0xc5, 0xd5, 0xcb, 0xbe, 0xb5, 0xb2, 0x90, 0x73, 0x64, 0x87, 0xbe, 0xc1, 0xbf, 0xbe, 0xc2, 0xbd, 0xc3, 0xa7, 0x71, 0x81, 0xb5, 0xbd, 0xb7, 0x96, 0x6b, 0x6e, 0x98, 0xa9, 0x95, 0x72, 0x72, 0x6f, 0x78, 0x72, 0x6c, 0x65, 0x5f, 0x63, 0x6a, 0x69, 0x75, 0x72, 0x6e, 0x69, 0x64, 0x62, 0x61, 0x62, 0x6b, 0x67, 0x68, 0x6f, 0x72, 0x70, 0x6d, 0x6e, 0x67, 0x64, 0x65, 0x65, 0x5e, 0x55, 0x57, 0x5f, 0x63, 0x6a, 0x65, 0x68, 0x6c, 0x70, 0x78, 0x73, 0x67, 0x61, 0x69, 0x78, 0x7d, 0x78, 0x6b, 0x5e, 0x60, 0x62, 0x64, 0x71, 0x5b, 0x58, 0x53, 0x5a, 0x64, 0x62, 0x5a, 0x4b, 0x41, 0x48, 0x5d, 0x6f, 0x75, 0x6d, 0x5f, 0x50, 0x46, 0x44, 0x4a, 0x4f, 0x4f, 0x41, 0x32, 0x2a, 0x25, 0x1f, 0x1c, 0x1c, 0x21, 0x2d, 0x3d, 0x4a, 0x53, 0x56, 0x52, 0x4c, 0x46, 0x40, 0x38, 0x34, 0x36, 0x3d, 0x46, 0x4b, 0x42, 0x41, 0x51, 0x6b, 0x79, 0x74, 0x6e, 0x70, 0x6c, 0x6b, 0x74, 0x84, 0x7f, 0x62, 0x56, 0x64, 0x77, 0x84, 0x8d, 0x88, 0x77, 0x64, 0x66, 0x79, 0x71, 0x5c, 0x40, 0x33, 0x3f, 0x55, 0x5b, 0x54, 0x4f, 0x49, 0x53, 0x59, 0x53, 0x63, 0x7c, 0x80, 0x83, 0x8a, 0x91, 0x93, 0x95, 0x99, 0x9c, 0x9d, 0x98, 0xa1, 0x9f, 0x90, 0x80, 0x73, 0x61, 0x50, 0x40, 0x2d, 0x24, 0x2b, 0x2d, 0x28, 0x2e, 0x3e, 0x31, 0x36, 0x36, 0x2f, 0x2a, 0x28, 0x24, 0x1e, 0x25, 0x29, 0x33, 0x40, 0x48, 0x4a, 0x48, 0x48, 0x50, 0x54, 0x57, 0x55, 0x53, 0x53, 0x53, 0x53, 0x46, 0x44, 0x46, 0x4e, 0x57, 0x5a, 0x54, 0x4e, 0x44, 0x4c, 0x52, 0x52, 0x53, 0x54, 0x52, 0x4d, 0x44, 0x3e, 0x3e, 0x45, 0x4e, 0x56, 0x5c, 0x5e, 0x96, 0x9c, 0xa1, 0xa0, 0x9a, 0x91, 0x8a, 0x85, 0x87, 0x92, 0xa0, 0xa7, 0xa4, 0x9e, 0x99, 0x97, 0x92, 0x8a, 0x87, 0x8d, 0x95, 0x96, 0x90, 0x8a, 0x8e, 0x8f, 0x8f, 0x8e, 0x91, 0x95, 0x93, 0x8c, 0x88, 0x8f, 0x99, 0xa1, 0xa6, 0xa4, 0x9b, 0x91, 0x78, 0x7f, 0x8b, 0x97, 0x9f, 0xa4, 0xa5, 0xa5, 0x9e, 0x99, 0x96, 0x97, 0x9a, 0x98, 0x93, 0x8f, 0x7e, 0x7e, 0x84, 0x8b, 0x8d, 0x8f, 0x98, 0xa4, 0x9f, 0x9e, 0x9b, 0x95, 0x8f, 0x8c, 0x8b, 0x8b, 0x8b, 0x7f, 0x74, 0x71, 0x73, 0x76, 0x7a, 0x7d, 0x75, 0x68, 0x5a, 0x55, 0x59, 0x5e, 0x62, 0x63, 0x68, 0x6d, 0x70, 0x6e, 0x6c, 0x6c, 0x6b, 0x68, 0x74, 0x7c, 0x7f, 0x76, 0x6a, 0x61, 0x5a, 0x55, 0x6a, 0x68, 0x6b, 0x71, 0x71, 0x6e, 0x71, 0x77, 0x7a, 0x7c, 0x7b, 0x77, 0x79, 0x82, 0x8a, 0x8c, 0x81, 0x7c, 0x76, 0x72, 0x73, 0x7c, 0x89, 0x94, 0x92, 0x8c, 0x89, 0x82, 0x78, 0x79, 0x81, 0x83, 0x7f, 0x89, 0x8a, 0x8d, 0x87, 0x7d, 0x80, 0x7c, 0x71, 0x67, 0x6b, 0x72, 0x6d, 0x69, 0x6b, 0x67, 0x6a, 0x6f, 0x72, 0x6e, 0x66, 0x62, 0x65, 0x6a, 0x6e, 0x6f, 0x74, 0x78, 0x76, 0x72, 0x75, 0x7d, 0x7e, 0x81, 0x7f, 0x76, 0x70, 0x73, 0x7b, 0x80, 0x7b, 0x75, 0x7c, 0x8e, 0x93, 0x85, 0x76, 0x72, 0x7a, 0x75, 0x78, 0x84, 0x8a, 0x89, 0x8b, 0x91, 0x94, 0x96, 0x9a, 0x9e, 0xa1, 0xa5, 0xa9, 0xac, 0xb0, 0xb2, 0xb4, 0xb6, 0xb7, 0xb8, 0xbb, 0xbc, 0xbd, 0xbd, 0xbf, 0xc1, 0xc4, 0xc5, 0xc4, 0xc3, 0xc5, 0xc5, 0xc5, 0xc6, 0xc6, 0xc6, 0xc5, 0xc5, 0xc4, 0xc4, 0xc4, 0xc3, 0xc2, 0xc1, 0xc0, 0xbf, 0xc0, 0xbd, 0xb9, 0xb7, 0xb5, 0xb4, 0xb3, 0xb2, 0xb2, 0xb0, 0xae, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa5, 0xa3, 0xa0, 0x97, 0x8a, 0x83, 0x88, 0x92, 0x95, 0xa0, 0xaa, 0xae, 0xb2, 0xba, 0xc1, 0xc5, 0xc9, 0xcd, 0xd0, 0xd0, 0xd1, 0xd2, 0xd3, 0xd1, 0xd4, 0xd6, 0xd7, 0xd5, 0xd2, 0xd0, 0xd2, 0xd4, 0xd8, 0xd7, 0xd4, 0xd2, 0xd0, 0xcf, 0xce, 0xce, 0xcd, 0xcb, 0xc9, 0xca, 0xcb, 0xcc, 0xcc, 0xcb, 0xd0, 0xcf, 0xd0, 0xd2, 0xd4, 0xd6, 0xd4, 0xd3, 0xcc, 0xca, 0xc7, 0xc6, 0xc6, 0xc7, 0xc8, 0xc9, 0xcd, 0xcb, 0xca, 0xc8, 0xc9, 0xca, 0xcc, 0xcd, 0xd2, 0xd6, 0xd9, 0xd9, 0xda, 0xdc, 0xdb, 0xd8, 0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xcf, 0xcf, 0xcf, 0xd0, 0xd0, 0xd0, 0xd0, 0xd1, 0xd1, 0xd2, 0xd2, 0xd6, 0xd5, 0xda, 0xdf, 0xd6, 0xc8, 0xca, 0xd7, 0xcf, 0xc9, 0xce, 0xcb, 0xc7, 0x88, 0x7b, 0x82, 0xc3, 0xd9, 0xd7, 0xd5, 0xd3, 0xd2, 0xd3, 0xb5, 0x77, 0x7a, 0x7c, 0x8a, 0xbd, 0xcc, 0x98, 0x75, 0x77, 0x72, 0x71, 0x7f, 0x81, 0x76, 0x8e, 0xba, 0xbf, 0xca, 0xcb, 0xd0, 0xd1, 0xce, 0xc6, 0xb1, 0x84, 0x7a, 0x77, 0x7d, 0x7e, 0x76, 0x70, 0x71, 0xaa, 0xc5, 0xc7, 0xca, 0xce, 0xcb, 0x94, 0x66, 0x6e, 0x8a, 0xbd, 0xc2, 0xc1, 0xc2, 0xc6, 0xbf, 0xbe, 0xa2, 0x67, 0x82, 0xb4, 0xbf, 0xb9, 0xa6, 0x78, 0x63, 0x73, 0x8e, 0x97, 0x75, 0x6b, 0x6d, 0x79, 0x78, 0x6f, 0x65, 0x65, 0x67, 0x69, 0x6d, 0x73, 0x72, 0x6d, 0x66, 0x62, 0x62, 0x65, 0x68, 0x69, 0x60, 0x60, 0x6d, 0x72, 0x6b, 0x67, 0x6b, 0x6c, 0x6c, 0x6b, 0x68, 0x60, 0x5a, 0x5a, 0x5e, 0x61, 0x6a, 0x65, 0x65, 0x66, 0x6a, 0x74, 0x71, 0x69, 0x6c, 0x76, 0x7a, 0x74, 0x6e, 0x66, 0x5b, 0x59, 0x5e, 0x6c, 0x73, 0x60, 0x53, 0x57, 0x62, 0x61, 0x50, 0x48, 0x49, 0x3d, 0x32, 0x48, 0x6d, 0x76, 0x6f, 0x62, 0x53, 0x49, 0x48, 0x4d, 0x52, 0x48, 0x3b, 0x30, 0x2c, 0x26, 0x1e, 0x1a, 0x1c, 0x23, 0x32, 0x47, 0x58, 0x61, 0x60, 0x55, 0x4b, 0x39, 0x3c, 0x3a, 0x34, 0x33, 0x35, 0x33, 0x2e, 0x29, 0x34, 0x44, 0x55, 0x5f, 0x66, 0x6d, 0x72, 0x67, 0x66, 0x6c, 0x7b, 0x81, 0x73, 0x69, 0x70, 0x7f, 0x81, 0x7b, 0x72, 0x66, 0x54, 0x49, 0x4b, 0x50, 0x51, 0x4f, 0x4f, 0x5a, 0x61, 0x51, 0x38, 0x24, 0x2c, 0x3b, 0x4b, 0x59, 0x67, 0x6d, 0x6a, 0x74, 0x82, 0x81, 0x6a, 0x5d, 0x67, 0x73, 0x75, 0x82, 0x7d, 0x79, 0x7b, 0x82, 0x7f, 0x68, 0x50, 0x3e, 0x35, 0x35, 0x3f, 0x3e, 0x2e, 0x21, 0x1f, 0x25, 0x1f, 0x20, 0x29, 0x2a, 0x22, 0x1e, 0x22, 0x2e, 0x31, 0x3a, 0x4a, 0x5a, 0x64, 0x66, 0x67, 0x56, 0x47, 0x3a, 0x3b, 0x46, 0x50, 0x54, 0x54, 0x49, 0x4b, 0x4e, 0x51, 0x51, 0x4a, 0x3d, 0x33, 0x25, 0x32, 0x42, 0x51, 0x5f, 0x67, 0x66, 0x61, 0x67, 0x5b, 0x55, 0x50, 0x4b, 0x4f, 0x4c, 0x3c, 0x9b, 0xa0, 0xa3, 0xa0, 0x95, 0x8b, 0x89, 0x8c, 0xa0, 0xa2, 0xa6, 0xaa, 0xab, 0xaa, 0xa6, 0xa3, 0x9f, 0x9f, 0xa2, 0xa4, 0xa2, 0x9a, 0x92, 0x8f, 0x8a, 0x95, 0x9a, 0x94, 0x8e, 0x8f, 0x8c, 0x87, 0x88, 0x99, 0xa5, 0xa1, 0x9d, 0x9f, 0x9e, 0x98, 0x93, 0x8b, 0x82, 0x80, 0x89, 0x98, 0xa7, 0xb1, 0xb3, 0xa6, 0x96, 0x95, 0xa5, 0xb2, 0xaa, 0x98, 0x8a, 0x88, 0x85, 0x89, 0x9c, 0xae, 0xad, 0xa1, 0x94, 0x8c, 0x82, 0x77, 0x6f, 0x6d, 0x75, 0x7e, 0x76, 0x73, 0x76, 0x7f, 0x84, 0x7d, 0x71, 0x6a, 0x75, 0x79, 0x86, 0x9a, 0xa5, 0x99, 0x7c, 0x64, 0x60, 0x74, 0x83, 0x7f, 0x70, 0x67, 0x68, 0x6b, 0x79, 0x7c, 0x78, 0x6b, 0x64, 0x69, 0x75, 0x7c, 0x72, 0x6f, 0x71, 0x75, 0x70, 0x67, 0x69, 0x72, 0x73, 0x7b, 0x88, 0x90, 0x8f, 0x87, 0x81, 0x7f, 0x89, 0x90, 0x92, 0x8a, 0x7d, 0x7b, 0x89, 0x9a, 0x8d, 0x88, 0x84, 0x7b, 0x74, 0x75, 0x71, 0x65, 0x69, 0x70, 0x6f, 0x72, 0x72, 0x74, 0x83, 0x88, 0x7e, 0x6c, 0x66, 0x64, 0x5a, 0x5a, 0x64, 0x66, 0x76, 0x73, 0x6e, 0x68, 0x64, 0x63, 0x65, 0x67, 0x79, 0x86, 0x8d, 0x87, 0x7d, 0x7b, 0x7e, 0x7f, 0x7c, 0x81, 0x79, 0x6a, 0x67, 0x74, 0x7b, 0x78, 0x76, 0x6d, 0x70, 0x7e, 0x81, 0x76, 0x6f, 0x72, 0x6f, 0x6a, 0x70, 0x81, 0x8b, 0x89, 0x8c, 0x95, 0x94, 0x96, 0x9a, 0x9d, 0xa1, 0xa4, 0xa8, 0xaa, 0xb0, 0xb2, 0xb3, 0xb4, 0xb6, 0xb7, 0xba, 0xbc, 0xbd, 0xbd, 0xbe, 0xc1, 0xc4, 0xc5, 0xc3, 0xc1, 0xc3, 0xc3, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc1, 0xbf, 0xbe, 0xbf, 0xbc, 0xb8, 0xb5, 0xb3, 0xb3, 0xb2, 0xb1, 0xb1, 0xaf, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa5, 0xa6, 0xa3, 0x9e, 0x97, 0x8c, 0x86, 0x8b, 0x94, 0x94, 0xa0, 0xab, 0xaf, 0xb3, 0xbb, 0xc3, 0xc7, 0xc6, 0xcb, 0xd0, 0xd3, 0xd4, 0xd6, 0xd6, 0xd4, 0xd1, 0xd3, 0xd4, 0xd4, 0xd2, 0xd1, 0xd1, 0xd2, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd6, 0xd5, 0xd5, 0xd1, 0xcd, 0xca, 0xca, 0xcc, 0xcd, 0xcb, 0xc9, 0xc7, 0xc4, 0xc1, 0xc1, 0xc5, 0xc9, 0xca, 0xc9, 0xd1, 0xd0, 0xcf, 0xce, 0xcd, 0xce, 0xcf, 0xd0, 0xce, 0xce, 0xce, 0xce, 0xd0, 0xd1, 0xd3, 0xd4, 0xd5, 0xda, 0xdc, 0xda, 0xda, 0xdb, 0xd8, 0xd3, 0xd7, 0xd5, 0xd2, 0xcf, 0xcd, 0xcc, 0xcb, 0xcc, 0xd0, 0xd0, 0xd0, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd0, 0xd3, 0xd0, 0xd0, 0xd4, 0xd4, 0xcf, 0xce, 0xcb, 0xcb, 0xcf, 0xce, 0xcd, 0x8b, 0x84, 0x86, 0xd1, 0xdd, 0xd6, 0xd3, 0xcf, 0xd5, 0xd6, 0xaf, 0x81, 0x79, 0x75, 0x8c, 0xc8, 0xca, 0x86, 0x69, 0x6a, 0x7d, 0x7c, 0x84, 0xa6, 0xc3, 0xcd, 0xca, 0xc5, 0xcb, 0xc6, 0xc9, 0xcb, 0xd1, 0xbb, 0x88, 0x74, 0x7e, 0x7e, 0x74, 0x71, 0x77, 0x75, 0x6b, 0xa8, 0xcd, 0xce, 0xc7, 0xc2, 0xc5, 0x99, 0x74, 0x6c, 0x85, 0xba, 0xc2, 0xbe, 0xbb, 0xc0, 0xbc, 0xbe, 0x9d, 0x5d, 0x82, 0xb3, 0xbf, 0xbd, 0xb8, 0x89, 0x6a, 0x5c, 0x73, 0x9e, 0x8c, 0x74, 0x72, 0x6e, 0x76, 0x70, 0x67, 0x67, 0x61, 0x5a, 0x5d, 0x68, 0x6a, 0x6a, 0x66, 0x64, 0x65, 0x67, 0x69, 0x69, 0x5c, 0x5d, 0x6d, 0x73, 0x69, 0x64, 0x69, 0x6b, 0x6f, 0x73, 0x70, 0x6a, 0x64, 0x60, 0x5f, 0x64, 0x6e, 0x68, 0x63, 0x60, 0x63, 0x70, 0x6f, 0x6e, 0x79, 0x81, 0x76, 0x68, 0x6a, 0x6f, 0x6a, 0x63, 0x5d, 0x6d, 0x71, 0x70, 0x58, 0x57, 0x53, 0x51, 0x4b, 0x48, 0x45, 0x38, 0x31, 0x45, 0x62, 0x78, 0x72, 0x66, 0x57, 0x4c, 0x4b, 0x50, 0x55, 0x42, 0x37, 0x2f, 0x2d, 0x28, 0x1e, 0x1a, 0x1c, 0x30, 0x3e, 0x52, 0x62, 0x69, 0x62, 0x50, 0x40, 0x38, 0x3b, 0x36, 0x2c, 0x2b, 0x34, 0x38, 0x34, 0x3a, 0x46, 0x48, 0x3b, 0x32, 0x36, 0x3e, 0x41, 0x49, 0x51, 0x5b, 0x6b, 0x7a, 0x7a, 0x74, 0x76, 0x78, 0x6b, 0x58, 0x57, 0x66, 0x63, 0x49, 0x32, 0x31, 0x32, 0x33, 0x34, 0x34, 0x2f, 0x26, 0x1e, 0x0e, 0x18, 0x21, 0x36, 0x4f, 0x4f, 0x4b, 0x5a, 0x68, 0x66, 0x6a, 0x66, 0x4d, 0x34, 0x3e, 0x5a, 0x64, 0x6c, 0x7a, 0x82, 0x7e, 0x6e, 0x5e, 0x55, 0x60, 0x70, 0x72, 0x5b, 0x41, 0x35, 0x35, 0x35, 0x2f, 0x31, 0x2b, 0x1f, 0x1e, 0x26, 0x28, 0x23, 0x2b, 0x30, 0x3b, 0x46, 0x4f, 0x55, 0x58, 0x5a, 0x5e, 0x58, 0x53, 0x51, 0x4c, 0x4b, 0x53, 0x5e, 0x6a, 0x6b, 0x69, 0x5f, 0x52, 0x49, 0x48, 0x4b, 0x4d, 0x4b, 0x48, 0x43, 0x41, 0x49, 0x59, 0x66, 0x58, 0x58, 0x62, 0x63, 0x60, 0x73, 0x7c, 0x6a, 0xa2, 0x9f, 0x9c, 0x9b, 0x9c, 0x9e, 0x9f, 0xa0, 0xa0, 0xa0, 0xa2, 0xa4, 0xa6, 0xa6, 0xa5, 0xa3, 0xa7, 0xa9, 0xac, 0xa9, 0x99, 0x86, 0x7e, 0x81, 0x8c, 0x97, 0x9a, 0x90, 0x87, 0x85, 0x80, 0x78, 0x90, 0x99, 0xa1, 0xa0, 0x9c, 0x97, 0x91, 0x8b, 0x8b, 0x90, 0x94, 0x92, 0x8f, 0x8e, 0x8f, 0x90, 0x94, 0x8e, 0x8a, 0x8e, 0x96, 0x99, 0x94, 0x8d, 0x85, 0x85, 0x8b, 0x97, 0xa0, 0xa1, 0xa0, 0xa0, 0x8c, 0x83, 0x82, 0x87, 0x81, 0x73, 0x72, 0x7b, 0x82, 0x79, 0x7c, 0x88, 0x8f, 0x91, 0x8b, 0x81, 0x70, 0x72, 0x85, 0xa2, 0xad, 0x9b, 0x7e, 0x6d, 0x70, 0x8d, 0xa5, 0x9f, 0x85, 0x70, 0x6b, 0x6d, 0x7d, 0x86, 0x78, 0x67, 0x5f, 0x69, 0x7d, 0x7e, 0x82, 0x80, 0x79, 0x6d, 0x62, 0x5f, 0x66, 0x6d, 0x6d, 0x77, 0x8b, 0x91, 0x84, 0x80, 0x82, 0x7c, 0x93, 0x93, 0x88, 0x78, 0x75, 0x7f, 0x88, 0x88, 0x80, 0x83, 0x81, 0x79, 0x6f, 0x6a, 0x68, 0x67, 0x6f, 0x6e, 0x6a, 0x66, 0x6c, 0x77, 0x7e, 0x7d, 0x76, 0x7d, 0x87, 0x8d, 0x88, 0x80, 0x82, 0x8a, 0x7c, 0x6f, 0x64, 0x61, 0x5e, 0x5b, 0x60, 0x6a, 0x76, 0x7f, 0x87, 0x86, 0x7c, 0x71, 0x70, 0x74, 0x70, 0x74, 0x74, 0x70, 0x6f, 0x73, 0x74, 0x70, 0x69, 0x70, 0x76, 0x78, 0x7b, 0x7c, 0x72, 0x67, 0x62, 0x65, 0x72, 0x83, 0x8a, 0x88, 0x8b, 0x92, 0x94, 0x96, 0x9a, 0x9f, 0xa5, 0xa9, 0xab, 0xab, 0xae, 0xb0, 0xb2, 0xb3, 0xb4, 0xb6, 0xb9, 0xbb, 0xbb, 0xbd, 0xbe, 0xbf, 0xbf, 0xbf, 0xc1, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc3, 0xc4, 0xc4, 0xc2, 0xc2, 0xc2, 0xc2, 0xc1, 0xc1, 0xc0, 0xc0, 0xbc, 0xba, 0xb8, 0xb7, 0xb6, 0xb5, 0xb3, 0xb1, 0xaf, 0xae, 0xad, 0xac, 0xab, 0xaa, 0xa8, 0xa6, 0xa4, 0xa4, 0xa0, 0x98, 0x8e, 0x89, 0x8c, 0x92, 0x96, 0xa1, 0xaf, 0xb6, 0xb8, 0xbc, 0xc3, 0xcb, 0xc9, 0xcc, 0xd1, 0xd4, 0xd6, 0xd6, 0xd7, 0xd7, 0xd9, 0xd5, 0xd1, 0xd2, 0xd5, 0xd6, 0xd3, 0xd0, 0xd2, 0xd4, 0xd5, 0xd4, 0xd4, 0xd5, 0xd5, 0xd3, 0xd0, 0xcc, 0xc7, 0xc4, 0xc4, 0xc4, 0xc5, 0xc4, 0xc5, 0xc5, 0xc5, 0xc2, 0xc1, 0xc3, 0xca, 0xcf, 0xd0, 0xcf, 0xd0, 0xd1, 0xd3, 0xd2, 0xd0, 0xce, 0xd1, 0xd6, 0xda, 0xd9, 0xd5, 0xd4, 0xd8, 0xdd, 0xdb, 0xda, 0xd8, 0xd7, 0xd7, 0xd6, 0xd4, 0xd3, 0xd3, 0xd1, 0xce, 0xcc, 0xcc, 0xcd, 0xcf, 0xd0, 0xce, 0xd3, 0xd4, 0xd4, 0xd7, 0xd4, 0xd0, 0xd3, 0xd7, 0xd5, 0xd2, 0xd0, 0xd1, 0xd2, 0xd4, 0xd4, 0xd3, 0xd0, 0xcf, 0xd1, 0xce, 0x91, 0x7c, 0x87, 0xd0, 0xe1, 0xd0, 0xcd, 0xc9, 0xcf, 0xd4, 0x9f, 0x7d, 0x7b, 0x7f, 0x91, 0xd6, 0xc2, 0x82, 0x65, 0x77, 0x79, 0xa2, 0xc3, 0xd2, 0xd9, 0xc6, 0xc5, 0xce, 0xcd, 0xc6, 0xc1, 0xd3, 0xc8, 0x92, 0x76, 0x79, 0x7c, 0x77, 0x71, 0x7d, 0x78, 0x69, 0x65, 0xa3, 0xcd, 0xc8, 0xc6, 0xc6, 0xca, 0xa3, 0x77, 0x73, 0x88, 0xc8, 0xca, 0xc2, 0xc0, 0xc2, 0xb9, 0xbc, 0x82, 0x60, 0x88, 0xbe, 0xb9, 0xbe, 0xb6, 0x97, 0x62, 0x56, 0x91, 0xa4, 0x82, 0x75, 0x6e, 0x71, 0x6e, 0x6b, 0x5e, 0x69, 0x5d, 0x58, 0x50, 0x5c, 0x6b, 0x6e, 0x64, 0x63, 0x67, 0x67, 0x67, 0x61, 0x5a, 0x57, 0x69, 0x65, 0x6b, 0x61, 0x5c, 0x5a, 0x5d, 0x68, 0x62, 0x6a, 0x65, 0x6f, 0x6f, 0x75, 0x6b, 0x64, 0x66, 0x6a, 0x6f, 0x77, 0x80, 0x84, 0x7e, 0x6f, 0x6d, 0x68, 0x63, 0x6c, 0x6f, 0x68, 0x5d, 0x71, 0x62, 0x67, 0x55, 0x59, 0x55, 0x51, 0x51, 0x53, 0x4d, 0x39, 0x2b, 0x3c, 0x5a, 0x78, 0x6d, 0x65, 0x56, 0x46, 0x4b, 0x56, 0x53, 0x3f, 0x37, 0x31, 0x2c, 0x21, 0x16, 0x18, 0x22, 0x42, 0x5e, 0x71, 0x71, 0x6b, 0x5f, 0x4e, 0x43, 0x34, 0x30, 0x29, 0x25, 0x26, 0x29, 0x2a, 0x28, 0x35, 0x44, 0x46, 0x39, 0x39, 0x47, 0x4c, 0x43, 0x37, 0x2f, 0x30, 0x40, 0x57, 0x6d, 0x71, 0x67, 0x64, 0x59, 0x5b, 0x6f, 0x86, 0x87, 0x5f, 0x2d, 0x29, 0x20, 0x1d, 0x23, 0x25, 0x20, 0x1c, 0x1d, 0x14, 0x13, 0x1c, 0x2f, 0x3d, 0x40, 0x41, 0x44, 0x43, 0x42, 0x4c, 0x65, 0x7d, 0x85, 0x7c, 0x70, 0x62, 0x5c, 0x59, 0x5b, 0x58, 0x56, 0x61, 0x70, 0x75, 0x75, 0x69, 0x5b, 0x59, 0x55, 0x4a, 0x43, 0x3e, 0x31, 0x23, 0x1e, 0x20, 0x23, 0x22, 0x21, 0x27, 0x28, 0x31, 0x3f, 0x48, 0x4a, 0x4c, 0x51, 0x52, 0x55, 0x5a, 0x5b, 0x58, 0x51, 0x4b, 0x48, 0x3a, 0x3f, 0x42, 0x3f, 0x3c, 0x42, 0x4e, 0x58, 0x68, 0x65, 0x5f, 0x56, 0x4a, 0x3c, 0x34, 0x32, 0x3a, 0x4b, 0x53, 0x47, 0x3d, 0x3f, 0x44, 0x43, 0x94, 0x8f, 0x8b, 0x8b, 0x92, 0x99, 0x9f, 0xa1, 0x9b, 0x9d, 0xa0, 0xa2, 0xa5, 0xa7, 0xaa, 0xac, 0xaf, 0xa7, 0x9f, 0x98, 0x8f, 0x8b, 0x92, 0x9d, 0xac, 0xaa, 0x9f, 0x8f, 0x86, 0x8b, 0x94, 0x98, 0x9c, 0xa3, 0xa7, 0xa3, 0x9b, 0x96, 0x92, 0x8f, 0x91, 0x92, 0x95, 0x99, 0x9c, 0x9e, 0xa1, 0xa6, 0xa4, 0xa1, 0x9d, 0x9a, 0x97, 0x91, 0x8a, 0x84, 0x89, 0x8b, 0x8a, 0x8a, 0x93, 0x9d, 0x9b, 0x92, 0x89, 0x90, 0x91, 0x8d, 0x8e, 0x96, 0x98, 0x94, 0x86, 0x7d, 0x7b, 0x7f, 0x83, 0x89, 0x89, 0x81, 0x73, 0x74, 0x80, 0x92, 0x9a, 0x93, 0x86, 0x7e, 0x7d, 0x83, 0x89, 0x89, 0x82, 0x7a, 0x75, 0x75, 0x69, 0x6d, 0x66, 0x69, 0x6d, 0x72, 0x79, 0x74, 0x78, 0x70, 0x63, 0x56, 0x51, 0x57, 0x63, 0x6c, 0x84, 0x81, 0x83, 0x83, 0x7c, 0x79, 0x7f, 0x82, 0x8e, 0x8f, 0x89, 0x7e, 0x7d, 0x85, 0x89, 0x86, 0x87, 0x87, 0x7f, 0x72, 0x68, 0x67, 0x6e, 0x73, 0x6d, 0x6d, 0x71, 0x74, 0x6e, 0x64, 0x61, 0x66, 0x6a, 0x67, 0x65, 0x66, 0x67, 0x67, 0x6a, 0x6e, 0x6e, 0x63, 0x5b, 0x5a, 0x5e, 0x66, 0x71, 0x7c, 0x6f, 0x75, 0x7e, 0x83, 0x80, 0x79, 0x72, 0x6f, 0x76, 0x70, 0x6c, 0x71, 0x7e, 0x86, 0x80, 0x76, 0x79, 0x78, 0x79, 0x7b, 0x7d, 0x7a, 0x6f, 0x64, 0x62, 0x67, 0x74, 0x83, 0x8a, 0x8a, 0x8d, 0x92, 0x93, 0x95, 0x99, 0x9e, 0xa3, 0xa7, 0xa9, 0xa9, 0xac, 0xad, 0xaf, 0xb1, 0xb2, 0xb4, 0xb6, 0xb8, 0xba, 0xbb, 0xbd, 0xbe, 0xbe, 0xbf, 0xc0, 0xc2, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc3, 0xc4, 0xc4, 0xc3, 0xc3, 0xc2, 0xc1, 0xc0, 0xbe, 0xbd, 0xbd, 0xbb, 0xb9, 0xb8, 0xb7, 0xb7, 0xb6, 0xb4, 0xb3, 0xb0, 0xaf, 0xad, 0xad, 0xac, 0xab, 0xa9, 0xa7, 0xa7, 0xa7, 0xa3, 0x9c, 0x92, 0x8d, 0x90, 0x96, 0x9b, 0xa5, 0xb1, 0xb8, 0xbb, 0xbd, 0xc3, 0xc9, 0xcd, 0xd0, 0xd3, 0xd6, 0xd7, 0xd7, 0xd7, 0xd7, 0xd6, 0xd5, 0xd4, 0xd3, 0xd4, 0xd4, 0xd3, 0xd3, 0xd3, 0xd5, 0xd5, 0xd3, 0xd2, 0xd3, 0xd2, 0xcf, 0xce, 0xcb, 0xc7, 0xc5, 0xc6, 0xc7, 0xc8, 0xc8, 0xc9, 0xca, 0xca, 0xc9, 0xc8, 0xca, 0xcf, 0xd3, 0xdd, 0xdc, 0xda, 0xd9, 0xd9, 0xd7, 0xd4, 0xd1, 0xd5, 0xd7, 0xd9, 0xd9, 0xd9, 0xd9, 0xdb, 0xdc, 0xda, 0xd9, 0xd7, 0xd6, 0xd5, 0xd3, 0xd1, 0xcf, 0xcf, 0xce, 0xcd, 0xcd, 0xce, 0xd0, 0xd2, 0xd3, 0xd5, 0xd7, 0xd4, 0xd4, 0xdd, 0xe0, 0xdd, 0xdd, 0xdd, 0xdb, 0xd8, 0xd6, 0xd6, 0xd6, 0xd5, 0xd5, 0xd4, 0xd5, 0xd0, 0xd7, 0xd0, 0x90, 0x80, 0x88, 0xd0, 0xdf, 0xd4, 0xd3, 0xcf, 0xd1, 0xca, 0x8d, 0x7b, 0x7d, 0x7f, 0x9f, 0xdc, 0xca, 0x8d, 0x74, 0x76, 0x8c, 0xc6, 0xd5, 0xd5, 0xd4, 0xcc, 0xcd, 0xcf, 0xcb, 0xcc, 0xca, 0xcf, 0xac, 0x84, 0x72, 0x79, 0x7c, 0x8e, 0xac, 0xc7, 0xb2, 0x81, 0x6b, 0x9b, 0xcd, 0xc7, 0xc8, 0xc9, 0xcc, 0xae, 0x7b, 0x6d, 0x85, 0xc8, 0xcd, 0xc3, 0xc0, 0xc2, 0xbd, 0xb2, 0x73, 0x61, 0x85, 0xb8, 0xbb, 0xb6, 0xb7, 0xa2, 0x78, 0x6c, 0x97, 0x9f, 0x7e, 0x73, 0x6e, 0x66, 0x68, 0x6b, 0x65, 0x70, 0x62, 0x56, 0x49, 0x47, 0x57, 0x63, 0x68, 0x6a, 0x63, 0x5a, 0x58, 0x5b, 0x64, 0x64, 0x5f, 0x5b, 0x6a, 0x66, 0x54, 0x52, 0x56, 0x5d, 0x5a, 0x5b, 0x59, 0x5f, 0x61, 0x6a, 0x69, 0x6b, 0x71, 0x76, 0x78, 0x79, 0x7a, 0x71, 0x73, 0x6d, 0x6f, 0x6f, 0x6a, 0x6f, 0x6c, 0x58, 0x57, 0x76, 0x70, 0x72, 0x5b, 0x58, 0x51, 0x4d, 0x54, 0x60, 0x5f, 0x48, 0x33, 0x3b, 0x53, 0x74, 0x6d, 0x64, 0x54, 0x47, 0x4f, 0x56, 0x4d, 0x3b, 0x32, 0x30, 0x2e, 0x1e, 0x10, 0x23, 0x43, 0x5c, 0x71, 0x78, 0x6f, 0x6a, 0x5f, 0x4a, 0x38, 0x32, 0x2b, 0x24, 0x24, 0x2e, 0x3b, 0x43, 0x46, 0x42, 0x46, 0x46, 0x43, 0x47, 0x4e, 0x4f, 0x49, 0x3c, 0x38, 0x38, 0x3e, 0x4d, 0x63, 0x66, 0x57, 0x4c, 0x40, 0x3d, 0x48, 0x57, 0x5e, 0x51, 0x39, 0x29, 0x24, 0x22, 0x23, 0x23, 0x1e, 0x19, 0x17, 0x12, 0x13, 0x1b, 0x25, 0x29, 0x2a, 0x31, 0x3a, 0x4a, 0x4a, 0x51, 0x60, 0x6f, 0x76, 0x77, 0x75, 0x73, 0x6a, 0x65, 0x6c, 0x79, 0x7f, 0x7a, 0x73, 0x6d, 0x78, 0x7c, 0x7b, 0x79, 0x69, 0x4c, 0x38, 0x2e, 0x2c, 0x30, 0x34, 0x2f, 0x24, 0x26, 0x31, 0x3b, 0x3e, 0x41, 0x44, 0x4a, 0x4f, 0x4b, 0x44, 0x44, 0x48, 0x52, 0x5c, 0x5e, 0x5a, 0x59, 0x5b, 0x66, 0x60, 0x5a, 0x57, 0x57, 0x57, 0x56, 0x56, 0x55, 0x50, 0x48, 0x42, 0x45, 0x4c, 0x50, 0x50, 0x40, 0x4e, 0x5a, 0x58, 0x51, 0x4a, 0x41, 0x38, 0x8a, 0x86, 0x83, 0x86, 0x8f, 0x98, 0x9c, 0x9d, 0x9a, 0xa0, 0xa7, 0xab, 0xab, 0xa9, 0xa7, 0xa6, 0x9f, 0x9d, 0x9d, 0xa0, 0x9e, 0x99, 0x98, 0x9b, 0x96, 0x93, 0x8d, 0x85, 0x7e, 0x7c, 0x80, 0x85, 0x83, 0x8a, 0x90, 0x90, 0x90, 0x95, 0x9d, 0xa2, 0x96, 0x95, 0x96, 0x9b, 0x9c, 0x98, 0x91, 0x8d, 0x91, 0x95, 0x98, 0x96, 0x90, 0x8a, 0x86, 0x86, 0x88, 0x88, 0x89, 0x8c, 0x91, 0x91, 0x89, 0x80, 0x86, 0x90, 0x90, 0x88, 0x8d, 0x9a, 0x9a, 0x8f, 0x88, 0x7f, 0x77, 0x73, 0x74, 0x7f, 0x84, 0x7d, 0x71, 0x74, 0x78, 0x7e, 0x83, 0x87, 0x88, 0x88, 0x71, 0x6b, 0x6d, 0x78, 0x7d, 0x76, 0x6d, 0x6b, 0x65, 0x61, 0x59, 0x67, 0x75, 0x79, 0x7e, 0x77, 0x6d, 0x6e, 0x6c, 0x63, 0x5c, 0x5f, 0x6d, 0x7a, 0x8a, 0x83, 0x78, 0x74, 0x75, 0x76, 0x7e, 0x8b, 0x8a, 0x8e, 0x8d, 0x89, 0x8a, 0x8f, 0x8e, 0x87, 0x7d, 0x88, 0x90, 0x8d, 0x81, 0x78, 0x73, 0x71, 0x83, 0x85, 0x8b, 0x8e, 0x87, 0x79, 0x6c, 0x66, 0x5f, 0x60, 0x5e, 0x5c, 0x5c, 0x5e, 0x5e, 0x5d, 0x56, 0x52, 0x53, 0x5f, 0x6f, 0x76, 0x71, 0x68, 0x64, 0x60, 0x5d, 0x5e, 0x63, 0x67, 0x68, 0x66, 0x6a, 0x65, 0x63, 0x69, 0x71, 0x74, 0x74, 0x74, 0x79, 0x72, 0x6e, 0x6f, 0x72, 0x70, 0x6a, 0x65, 0x69, 0x70, 0x7c, 0x85, 0x8a, 0x8d, 0x8f, 0x90, 0x93, 0x96, 0x99, 0x9d, 0xa1, 0xa5, 0xa7, 0xa8, 0xaa, 0xac, 0xae, 0xb0, 0xb1, 0xb3, 0xb5, 0xb7, 0xb8, 0xba, 0xbb, 0xbd, 0xbd, 0xbe, 0xc0, 0xc2, 0xc1, 0xc1, 0xc1, 0xc2, 0xc2, 0xc3, 0xc3, 0xc3, 0xc3, 0xc3, 0xc2, 0xc0, 0xbe, 0xbc, 0xbb, 0xba, 0xb9, 0xb8, 0xb6, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb1, 0xaf, 0xae, 0xad, 0xad, 0xac, 0xaa, 0xa8, 0xa8, 0xa6, 0xa3, 0x9d, 0x93, 0x8d, 0x91, 0x98, 0xa0, 0xa7, 0xb2, 0xb9, 0xbc, 0xbf, 0xc2, 0xc5, 0xcb, 0xce, 0xd3, 0xd6, 0xd8, 0xd9, 0xda, 0xdb, 0xdb, 0xdc, 0xdc, 0xda, 0xd7, 0xd6, 0xd7, 0xd8, 0xd8, 0xd9, 0xd9, 0xd6, 0xd5, 0xd5, 0xd3, 0xd1, 0xd0, 0xcd, 0xca, 0xc8, 0xc9, 0xca, 0xcb, 0xcb, 0xcc, 0xcd, 0xcf, 0xcf, 0xcf, 0xd0, 0xd3, 0xd6, 0xd5, 0xd5, 0xd4, 0xd5, 0xd7, 0xd8, 0xd8, 0xd7, 0xda, 0xd9, 0xd9, 0xdb, 0xdd, 0xdd, 0xdb, 0xd8, 0xdb, 0xda, 0xd9, 0xd7, 0xd6, 0xd3, 0xcf, 0xcd, 0xcb, 0xcc, 0xcd, 0xce, 0xd0, 0xd3, 0xd5, 0xd6, 0xcd, 0xd9, 0xdd, 0xdb, 0xdc, 0xdc, 0xd9, 0xda, 0xda, 0xd8, 0xd6, 0xd5, 0xd4, 0xd4, 0xd2, 0xd1, 0xd6, 0xda, 0xd0, 0xda, 0xcb, 0x8b, 0x83, 0x8a, 0xce, 0xd7, 0xd3, 0xd3, 0xd2, 0xd6, 0xc2, 0x7e, 0x7d, 0x81, 0x7d, 0xaf, 0xdc, 0xc8, 0x8c, 0x74, 0x74, 0x96, 0xdb, 0xd9, 0xd1, 0xcc, 0xd0, 0xcf, 0xcc, 0xc7, 0xcf, 0xd4, 0xc2, 0x8a, 0x75, 0x71, 0x7e, 0x9c, 0xb7, 0xc3, 0xcd, 0xbf, 0x84, 0x60, 0x94, 0xd0, 0xc9, 0xcb, 0xca, 0xca, 0xb8, 0x7c, 0x6a, 0x84, 0xc7, 0xd1, 0xc3, 0xbf, 0xc0, 0xbf, 0xaa, 0x67, 0x65, 0x86, 0xb7, 0xbf, 0xb3, 0xba, 0xb0, 0x96, 0x8e, 0xa4, 0x9e, 0x7f, 0x74, 0x71, 0x68, 0x68, 0x66, 0x5e, 0x66, 0x5f, 0x58, 0x52, 0x4e, 0x5d, 0x6f, 0x7e, 0x81, 0x70, 0x5e, 0x5b, 0x5d, 0x61, 0x6b, 0x69, 0x69, 0x68, 0x66, 0x56, 0x4e, 0x54, 0x56, 0x58, 0x52, 0x55, 0x57, 0x5d, 0x54, 0x55, 0x56, 0x59, 0x60, 0x6a, 0x71, 0x73, 0x66, 0x6f, 0x6c, 0x6d, 0x6c, 0x68, 0x69, 0x5f, 0x65, 0x5e, 0x71, 0x62, 0x5b, 0x46, 0x49, 0x4b, 0x4c, 0x4f, 0x53, 0x4c, 0x34, 0x24, 0x33, 0x50, 0x6c, 0x6b, 0x62, 0x50, 0x49, 0x54, 0x54, 0x42, 0x3b, 0x36, 0x33, 0x2f, 0x24, 0x22, 0x3a, 0x59, 0x6f, 0x74, 0x69, 0x57, 0x52, 0x50, 0x44, 0x37, 0x23, 0x1f, 0x20, 0x2a, 0x3b, 0x4c, 0x55, 0x58, 0x53, 0x4b, 0x47, 0x4c, 0x54, 0x58, 0x5b, 0x5e, 0x54, 0x57, 0x59, 0x57, 0x5e, 0x6e, 0x6e, 0x5b, 0x49, 0x3d, 0x37, 0x35, 0x32, 0x34, 0x3a, 0x3b, 0x33, 0x36, 0x38, 0x37, 0x35, 0x33, 0x2e, 0x29, 0x29, 0x1b, 0x15, 0x21, 0x35, 0x3f, 0x3f, 0x3d, 0x37, 0x39, 0x43, 0x57, 0x6a, 0x76, 0x7a, 0x7b, 0x76, 0x83, 0x8a, 0x7d, 0x68, 0x5c, 0x5b, 0x5c, 0x75, 0x84, 0x86, 0x77, 0x66, 0x59, 0x54, 0x58, 0x59, 0x4a, 0x3b, 0x33, 0x30, 0x33, 0x3f, 0x4c, 0x56, 0x58, 0x54, 0x49, 0x42, 0x47, 0x54, 0x60, 0x53, 0x4b, 0x46, 0x47, 0x45, 0x3e, 0x38, 0x36, 0x42, 0x51, 0x6b, 0x81, 0x86, 0x7c, 0x71, 0x6d, 0x69, 0x6b, 0x6c, 0x6e, 0x73, 0x75, 0x6a, 0x5c, 0x66, 0x59, 0x4a, 0x45, 0x49, 0x4e, 0x4d, 0x4a, 0x8c, 0x8c, 0x8d, 0x92, 0x96, 0x99, 0x98, 0x95, 0x98, 0x9b, 0xa0, 0xa4, 0xa4, 0xa3, 0xa0, 0x9e, 0x97, 0x8f, 0x89, 0x8a, 0x8d, 0x91, 0x95, 0x99, 0x94, 0x95, 0x98, 0x98, 0x8e, 0x7d, 0x72, 0x6f, 0x7c, 0x8f, 0xa6, 0xb2, 0xad, 0x9f, 0x90, 0x87, 0x92, 0x94, 0x95, 0x97, 0x9d, 0xa0, 0x98, 0x8c, 0x74, 0x7c, 0x85, 0x89, 0x86, 0x84, 0x85, 0x87, 0x89, 0x7b, 0x76, 0x7e, 0x80, 0x7b, 0x82, 0x92, 0x96, 0x8f, 0x89, 0x8a, 0x8c, 0x8b, 0x88, 0x86, 0x7a, 0x7c, 0x82, 0x88, 0x8f, 0x98, 0x93, 0x81, 0x76, 0x79, 0x78, 0x74, 0x74, 0x79, 0x7c, 0x7b, 0x7a, 0x6c, 0x65, 0x69, 0x69, 0x64, 0x6b, 0x7b, 0x72, 0x6c, 0x5e, 0x64, 0x6f, 0x78, 0x85, 0x85, 0x8c, 0x85, 0x7e, 0x7c, 0x7d, 0x7e, 0x7c, 0x79, 0x6e, 0x7b, 0x7e, 0x7f, 0x83, 0x7d, 0x77, 0x7d, 0x89, 0x8c, 0x8c, 0x8b, 0x8d, 0x90, 0x8b, 0x82, 0x80, 0x89, 0x8d, 0x86, 0x7b, 0x77, 0x7a, 0x7e, 0x91, 0x94, 0x92, 0x90, 0x98, 0x9d, 0x8b, 0x71, 0x75, 0x7b, 0x7a, 0x6d, 0x61, 0x5c, 0x5b, 0x59, 0x5e, 0x5f, 0x62, 0x6a, 0x75, 0x78, 0x6e, 0x60, 0x55, 0x5a, 0x63, 0x6d, 0x77, 0x7d, 0x7c, 0x78, 0x65, 0x62, 0x64, 0x68, 0x6a, 0x69, 0x6f, 0x77, 0x77, 0x70, 0x6a, 0x68, 0x66, 0x62, 0x64, 0x6a, 0x6c, 0x74, 0x7d, 0x83, 0x88, 0x8e, 0x92, 0x92, 0x94, 0x96, 0x9a, 0x9d, 0xa0, 0xa3, 0xa5, 0xa7, 0xaa, 0xac, 0xaf, 0xb1, 0xb2, 0xb3, 0xb5, 0xb7, 0xb7, 0xb9, 0xbb, 0xbc, 0xbd, 0xbe, 0xc0, 0xc2, 0xc0, 0xc0, 0xc1, 0xc1, 0xc1, 0xc1, 0xc2, 0xc2, 0xc2, 0xc2, 0xc1, 0xc0, 0xbe, 0xbc, 0xba, 0xb9, 0xb8, 0xb7, 0xb5, 0xb4, 0xb4, 0xb4, 0xb2, 0xb1, 0xb0, 0xaf, 0xae, 0xad, 0xad, 0xac, 0xaa, 0xa8, 0xa8, 0xa5, 0xa3, 0x9e, 0x94, 0x8e, 0x92, 0x9a, 0xa2, 0xa8, 0xb1, 0xb9, 0xbd, 0xbf, 0xc0, 0xc1, 0xc4, 0xc8, 0xce, 0xd3, 0xd7, 0xda, 0xdd, 0xdf, 0xe0, 0xe0, 0xe0, 0xdd, 0xdb, 0xd9, 0xd9, 0xda, 0xda, 0xdc, 0xdb, 0xd8, 0xd7, 0xd7, 0xd6, 0xd4, 0xd4, 0xd2, 0xcf, 0xcd, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xce, 0xd0, 0xd1, 0xd1, 0xd2, 0xd4, 0xd6, 0xd2, 0xd2, 0xd3, 0xd6, 0xd9, 0xdc, 0xdf, 0xe0, 0xdd, 0xdb, 0xdb, 0xdc, 0xde, 0xdc, 0xd9, 0xd5, 0xdb, 0xda, 0xd9, 0xd8, 0xd6, 0xd3, 0xce, 0xcb, 0xca, 0xcc, 0xcf, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd3, 0xdd, 0xdf, 0xdb, 0xdc, 0xdc, 0xda, 0xdc, 0xdd, 0xdc, 0xdb, 0xdb, 0xdc, 0xdb, 0xda, 0xd8, 0xd8, 0xde, 0xd1, 0xda, 0xc0, 0x81, 0x82, 0x8e, 0xd3, 0xd3, 0xd0, 0xce, 0xcf, 0xd6, 0xb8, 0x77, 0x80, 0x81, 0x7b, 0xbb, 0xd9, 0xc5, 0x87, 0x6f, 0x77, 0x8f, 0xd4, 0xcf, 0xcd, 0xc9, 0xd2, 0xcc, 0xc6, 0xc8, 0xcc, 0xd5, 0xaa, 0x77, 0x6f, 0x7b, 0x99, 0xbd, 0xcf, 0xc1, 0xbb, 0xbc, 0x8c, 0x70, 0x90, 0xd2, 0xcd, 0xcc, 0xc9, 0xc6, 0xc0, 0x7d, 0x6e, 0x83, 0xc1, 0xd1, 0xc2, 0xc0, 0xbe, 0xc0, 0xa9, 0x67, 0x65, 0x8c, 0xbb, 0xbe, 0xb8, 0xb9, 0xb3, 0xa9, 0xa7, 0xac, 0x9e, 0x81, 0x71, 0x6d, 0x6b, 0x6d, 0x65, 0x5a, 0x5a, 0x58, 0x58, 0x5c, 0x5e, 0x61, 0x5f, 0x60, 0x61, 0x5b, 0x58, 0x5d, 0x60, 0x5b, 0x66, 0x65, 0x6f, 0x6c, 0x6e, 0x5f, 0x50, 0x56, 0x55, 0x5d, 0x53, 0x5a, 0x5a, 0x63, 0x6e, 0x6b, 0x61, 0x54, 0x51, 0x56, 0x5b, 0x5a, 0x67, 0x70, 0x6a, 0x65, 0x64, 0x66, 0x6b, 0x60, 0x53, 0x4e, 0x65, 0x60, 0x5b, 0x49, 0x48, 0x49, 0x42, 0x48, 0x51, 0x4d, 0x37, 0x26, 0x32, 0x4a, 0x63, 0x67, 0x5f, 0x4e, 0x4d, 0x58, 0x51, 0x39, 0x2c, 0x34, 0x32, 0x27, 0x26, 0x3a, 0x54, 0x62, 0x64, 0x69, 0x63, 0x5b, 0x53, 0x44, 0x31, 0x28, 0x23, 0x20, 0x21, 0x2a, 0x38, 0x46, 0x51, 0x57, 0x55, 0x4b, 0x43, 0x45, 0x4a, 0x50, 0x5c, 0x67, 0x71, 0x6c, 0x63, 0x55, 0x4f, 0x57, 0x59, 0x4e, 0x4a, 0x41, 0x40, 0x3d, 0x31, 0x2d, 0x37, 0x42, 0x47, 0x52, 0x5a, 0x59, 0x57, 0x58, 0x52, 0x4a, 0x3c, 0x36, 0x31, 0x32, 0x33, 0x34, 0x36, 0x39, 0x38, 0x2d, 0x29, 0x38, 0x51, 0x65, 0x6e, 0x70, 0x7e, 0x6e, 0x54, 0x3c, 0x36, 0x45, 0x5c, 0x6d, 0x75, 0x7b, 0x7d, 0x7f, 0x82, 0x75, 0x5c, 0x4c, 0x3c, 0x40, 0x40, 0x39, 0x38, 0x43, 0x53, 0x5d, 0x4f, 0x47, 0x44, 0x4b, 0x4f, 0x51, 0x55, 0x5d, 0x61, 0x58, 0x4e, 0x4c, 0x55, 0x5e, 0x5d, 0x56, 0x48, 0x4a, 0x50, 0x59, 0x5e, 0x63, 0x71, 0x80, 0x86, 0x7e, 0x73, 0x69, 0x60, 0x54, 0x45, 0x39, 0x2a, 0x20, 0x25, 0x43, 0x65, 0x76, 0x76, 0x71, 0x91, 0x94, 0x98, 0x9b, 0x9c, 0x9b, 0x99, 0x98, 0x96, 0x94, 0x93, 0x95, 0x9b, 0xa1, 0xa5, 0xa6, 0xa1, 0x97, 0x8b, 0x87, 0x8c, 0x94, 0x9d, 0xa3, 0x99, 0x96, 0x96, 0x97, 0x90, 0x84, 0x7f, 0x81, 0x88, 0x91, 0x9d, 0xa4, 0xa2, 0x9e, 0x9c, 0x9d, 0x99, 0xa0, 0x9e, 0x98, 0x9f, 0xac, 0xa8, 0x97, 0x75, 0x7b, 0x82, 0x85, 0x85, 0x82, 0x81, 0x81, 0x75, 0x75, 0x83, 0x93, 0x93, 0x8a, 0x90, 0xa2, 0xa3, 0x90, 0x83, 0x85, 0x86, 0x82, 0x82, 0x88, 0x8c, 0x87, 0x84, 0x85, 0x8c, 0x9a, 0x99, 0x89, 0x83, 0x83, 0x7d, 0x73, 0x70, 0x73, 0x73, 0x6e, 0x77, 0x6a, 0x66, 0x69, 0x61, 0x55, 0x5d, 0x72, 0x74, 0x7a, 0x72, 0x6f, 0x70, 0x78, 0x86, 0x86, 0x85, 0x85, 0x81, 0x74, 0x66, 0x5d, 0x5f, 0x63, 0x6d, 0x7f, 0x7f, 0x75, 0x74, 0x74, 0x77, 0x81, 0x8d, 0x8d, 0x8b, 0x87, 0x86, 0x86, 0x7f, 0x77, 0x82, 0x87, 0x88, 0x7d, 0x73, 0x73, 0x7e, 0x87, 0x80, 0x7f, 0x7a, 0x7c, 0x8b, 0x96, 0x87, 0x6e, 0x7e, 0x81, 0x7c, 0x6e, 0x64, 0x65, 0x69, 0x6b, 0x6e, 0x6f, 0x6b, 0x65, 0x63, 0x66, 0x6a, 0x6c, 0x76, 0x7c, 0x7f, 0x7a, 0x73, 0x6e, 0x6a, 0x66, 0x64, 0x60, 0x62, 0x6b, 0x71, 0x71, 0x71, 0x74, 0x7e, 0x7c, 0x7a, 0x74, 0x67, 0x5d, 0x61, 0x6c, 0x6d, 0x75, 0x7c, 0x81, 0x86, 0x8d, 0x93, 0x95, 0x95, 0x97, 0x9b, 0x9d, 0x9f, 0xa2, 0xa4, 0xa7, 0xa9, 0xac, 0xae, 0xb1, 0xb2, 0xb3, 0xb5, 0xb6, 0xb6, 0xb8, 0xba, 0xbb, 0xbc, 0xbd, 0xbf, 0xc1, 0xbf, 0xbf, 0xbf, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xbe, 0xbc, 0xba, 0xb9, 0xba, 0xb8, 0xb6, 0xb5, 0xb4, 0xb3, 0xb1, 0xb0, 0xaf, 0xae, 0xad, 0xad, 0xac, 0xac, 0xaa, 0xa8, 0xaa, 0xa6, 0xa4, 0xa0, 0x98, 0x91, 0x95, 0x9e, 0xa3, 0xa9, 0xb1, 0xb8, 0xbd, 0xc0, 0xc1, 0xc2, 0xc2, 0xc6, 0xca, 0xcf, 0xd2, 0xd5, 0xd8, 0xda, 0xdb, 0xda, 0xd8, 0xd8, 0xd9, 0xd9, 0xd8, 0xd8, 0xd9, 0xda, 0xda, 0xd7, 0xd7, 0xd8, 0xd8, 0xd6, 0xd7, 0xd6, 0xd4, 0xd2, 0xd0, 0xcf, 0xcf, 0xcf, 0xce, 0xcf, 0xd0, 0xd0, 0xd1, 0xd1, 0xd2, 0xd3, 0xd6, 0xd6, 0xd6, 0xd5, 0xd4, 0xd4, 0xd5, 0xd6, 0xd9, 0xdb, 0xdd, 0xdd, 0xdc, 0xda, 0xd9, 0xd8, 0xd9, 0xd8, 0xd7, 0xd7, 0xd5, 0xd2, 0xce, 0xca, 0xcd, 0xcf, 0xd1, 0xd2, 0xd2, 0xd1, 0xd1, 0xd2, 0xda, 0xd8, 0xce, 0xca, 0xd2, 0xd8, 0xd9, 0xdd, 0xdd, 0xdc, 0xdc, 0xdc, 0xdc, 0xdb, 0xd9, 0xd7, 0xd6, 0xdd, 0xd5, 0xdc, 0xb5, 0x7a, 0x7d, 0x91, 0xd9, 0xd4, 0xd2, 0xcc, 0xd2, 0xd4, 0xa9, 0x74, 0x7c, 0x79, 0x7c, 0xc5, 0xda, 0xca, 0x8b, 0x74, 0x7c, 0x86, 0xca, 0xd0, 0xd1, 0xc9, 0xd1, 0xcc, 0xc5, 0xcd, 0xc8, 0xc9, 0x8e, 0x73, 0x72, 0x8d, 0xc6, 0xc8, 0xc9, 0xc6, 0xc5, 0xc3, 0x85, 0x71, 0x88, 0xcc, 0xcf, 0xcb, 0xc8, 0xc7, 0xcb, 0x89, 0x71, 0x7d, 0xb5, 0xce, 0xc2, 0xc4, 0xbe, 0xc1, 0xa9, 0x6d, 0x61, 0x94, 0xbf, 0xb8, 0xbe, 0xb4, 0xb0, 0xae, 0xb1, 0xae, 0x9d, 0x7f, 0x66, 0x61, 0x64, 0x6f, 0x6f, 0x68, 0x5e, 0x58, 0x53, 0x58, 0x66, 0x6c, 0x69, 0x63, 0x64, 0x64, 0x62, 0x63, 0x6c, 0x6c, 0x6d, 0x5e, 0x72, 0x87, 0x8d, 0x71, 0x53, 0x57, 0x54, 0x5e, 0x55, 0x5c, 0x5b, 0x65, 0x66, 0x69, 0x67, 0x60, 0x5f, 0x62, 0x63, 0x5f, 0x68, 0x6e, 0x64, 0x5c, 0x60, 0x6e, 0x7e, 0x7a, 0x78, 0x66, 0x68, 0x5b, 0x4f, 0x41, 0x40, 0x44, 0x3d, 0x42, 0x49, 0x47, 0x37, 0x2b, 0x37, 0x4c, 0x5f, 0x66, 0x5f, 0x52, 0x54, 0x5a, 0x4c, 0x36, 0x36, 0x39, 0x31, 0x26, 0x2d, 0x48, 0x5f, 0x68, 0x6f, 0x6b, 0x63, 0x5a, 0x4b, 0x33, 0x26, 0x2b, 0x3b, 0x31, 0x27, 0x23, 0x25, 0x2e, 0x3d, 0x4b, 0x53, 0x51, 0x4c, 0x45, 0x41, 0x46, 0x53, 0x5d, 0x5e, 0x4c, 0x3c, 0x31, 0x2f, 0x3e, 0x51, 0x59, 0x55, 0x4a, 0x47, 0x45, 0x39, 0x33, 0x3c, 0x46, 0x5f, 0x6d, 0x79, 0x7a, 0x7b, 0x7d, 0x79, 0x70, 0x73, 0x6c, 0x62, 0x53, 0x42, 0x32, 0x28, 0x25, 0x2a, 0x20, 0x1c, 0x27, 0x39, 0x45, 0x47, 0x45, 0x2d, 0x26, 0x2d, 0x4b, 0x6a, 0x78, 0x78, 0x75, 0x6d, 0x6f, 0x65, 0x56, 0x4d, 0x47, 0x46, 0x4c, 0x45, 0x42, 0x42, 0x48, 0x4f, 0x50, 0x4c, 0x47, 0x47, 0x55, 0x6a, 0x7a, 0x7b, 0x6f, 0x5e, 0x52, 0x58, 0x5d, 0x59, 0x4d, 0x4a, 0x4f, 0x4a, 0x3c, 0x3a, 0x34, 0x34, 0x3b, 0x41, 0x3d, 0x37, 0x34, 0x31, 0x30, 0x34, 0x39, 0x37, 0x2e, 0x2b, 0x2f, 0x2c, 0x2e, 0x41, 0x61, 0x74, 0x6a, 0x56, 0x49, 0x97, 0x97, 0x97, 0x9a, 0x9d, 0xa1, 0xa3, 0xa5, 0x9e, 0x9f, 0xa1, 0xa6, 0xab, 0xae, 0xaf, 0xaf, 0xb0, 0xae, 0xaa, 0xa8, 0xa5, 0xa2, 0x9d, 0x9a, 0x92, 0x8c, 0x86, 0x83, 0x7e, 0x78, 0x79, 0x7d, 0x78, 0x7d, 0x84, 0x88, 0x87, 0x83, 0x82, 0x84, 0xa3, 0xaf, 0xb3, 0xab, 0xac, 0xb0, 0xa2, 0x8a, 0x78, 0x7b, 0x80, 0x84, 0x86, 0x86, 0x84, 0x83, 0x85, 0x82, 0x79, 0x6d, 0x6c, 0x7f, 0x9e, 0xb5, 0xa3, 0x95, 0x83, 0x79, 0x7a, 0x7f, 0x83, 0x84, 0x75, 0x6c, 0x69, 0x70, 0x82, 0x9c, 0xac, 0xa9, 0x88, 0x85, 0x7e, 0x75, 0x74, 0x78, 0x78, 0x75, 0x67, 0x61, 0x65, 0x70, 0x6a, 0x56, 0x52, 0x5c, 0x6e, 0x7f, 0x82, 0x83, 0x80, 0x7f, 0x84, 0x7d, 0x81, 0x89, 0x8d, 0x83, 0x71, 0x66, 0x68, 0x6f, 0x72, 0x78, 0x71, 0x63, 0x5f, 0x69, 0x7a, 0x8b, 0x95, 0x94, 0x90, 0x8b, 0x86, 0x82, 0x7a, 0x73, 0x65, 0x72, 0x7b, 0x78, 0x6e, 0x68, 0x69, 0x6c, 0x74, 0x6d, 0x6e, 0x79, 0x7f, 0x7a, 0x71, 0x6d, 0x71, 0x71, 0x71, 0x71, 0x73, 0x76, 0x75, 0x71, 0x78, 0x75, 0x74, 0x78, 0x7d, 0x7b, 0x73, 0x6b, 0x63, 0x69, 0x69, 0x60, 0x5a, 0x5e, 0x67, 0x6c, 0x5f, 0x65, 0x6e, 0x72, 0x70, 0x6b, 0x6a, 0x6d, 0x78, 0x7c, 0x7e, 0x78, 0x6b, 0x61, 0x63, 0x6a, 0x78, 0x7c, 0x82, 0x86, 0x89, 0x8b, 0x8e, 0x91, 0x94, 0x97, 0x9b, 0x9d, 0x9e, 0xa0, 0xa4, 0xa7, 0xa7, 0xaa, 0xad, 0xaf, 0xb0, 0xb1, 0xb3, 0xb4, 0xb6, 0xb7, 0xb9, 0xba, 0xbb, 0xbc, 0xbe, 0xbf, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbe, 0xbf, 0xbf, 0xbe, 0xbc, 0xba, 0xb9, 0xbb, 0xba, 0xb8, 0xb6, 0xb5, 0xb4, 0xb2, 0xb0, 0xaf, 0xae, 0xad, 0xad, 0xad, 0xac, 0xaa, 0xa8, 0xa9, 0xa5, 0xa3, 0xa1, 0x98, 0x91, 0x95, 0xa0, 0xa5, 0xab, 0xb2, 0xb9, 0xbe, 0xc0, 0xc2, 0xc4, 0xc6, 0xc8, 0xca, 0xcc, 0xcc, 0xcd, 0xce, 0xcf, 0xd3, 0xd2, 0xd2, 0xd4, 0xd7, 0xda, 0xda, 0xda, 0xd9, 0xdb, 0xdb, 0xd9, 0xd9, 0xdc, 0xdd, 0xdb, 0xd7, 0xd8, 0xd7, 0xd6, 0xd4, 0xd3, 0xd3, 0xd4, 0xd1, 0xd0, 0xcf, 0xcf, 0xce, 0xcf, 0xd0, 0xd0, 0xd4, 0xd4, 0xd4, 0xd2, 0xcf, 0xcd, 0xcd, 0xcd, 0xd3, 0xd7, 0xda, 0xdb, 0xd9, 0xd8, 0xd9, 0xdb, 0xd9, 0xd8, 0xd7, 0xd7, 0xd6, 0xd4, 0xd1, 0xcf, 0xce, 0xd1, 0xd3, 0xd3, 0xd1, 0xcf, 0xcf, 0xd0, 0xcf, 0xcf, 0xcc, 0xcd, 0xd0, 0xcd, 0xce, 0xd8, 0xda, 0xd9, 0xd7, 0xd6, 0xd5, 0xd4, 0xd1, 0xcf, 0xd3, 0xd8, 0xdb, 0xdc, 0xa8, 0x77, 0x78, 0x99, 0xd2, 0xcf, 0xd2, 0xcd, 0xda, 0xd4, 0x9c, 0x7b, 0x7a, 0x72, 0x89, 0xcb, 0xd8, 0xcb, 0x8a, 0x77, 0x7c, 0x82, 0xc8, 0xda, 0xd3, 0xc8, 0xcc, 0xca, 0xca, 0xd1, 0xc9, 0xb2, 0x7a, 0x73, 0x7a, 0xa5, 0xd2, 0xcc, 0xc6, 0xc3, 0xc4, 0xc9, 0x80, 0x67, 0x7c, 0xbd, 0xcf, 0xcb, 0xc9, 0xcb, 0xd3, 0x97, 0x6c, 0x73, 0xa7, 0xc8, 0xc1, 0xc7, 0xbf, 0xc4, 0xa9, 0x71, 0x66, 0x9f, 0xc5, 0xb7, 0xc3, 0xb4, 0xb3, 0xb2, 0xb6, 0xaf, 0x9f, 0x7f, 0x5e, 0x5d, 0x64, 0x74, 0x76, 0x73, 0x64, 0x5d, 0x55, 0x5a, 0x5d, 0x69, 0x6d, 0x6a, 0x6c, 0x6b, 0x66, 0x65, 0x66, 0x63, 0x65, 0x66, 0x77, 0x86, 0x83, 0x6b, 0x58, 0x56, 0x54, 0x5b, 0x59, 0x5b, 0x5c, 0x64, 0x68, 0x69, 0x67, 0x61, 0x5b, 0x59, 0x56, 0x53, 0x68, 0x6c, 0x60, 0x5b, 0x61, 0x72, 0x87, 0x87, 0x5c, 0x56, 0x69, 0x71, 0x6b, 0x58, 0x44, 0x3d, 0x3c, 0x39, 0x38, 0x33, 0x2a, 0x28, 0x38, 0x4d, 0x60, 0x66, 0x61, 0x5a, 0x5c, 0x56, 0x44, 0x35, 0x3a, 0x26, 0x18, 0x25, 0x44, 0x5f, 0x6b, 0x6e, 0x71, 0x62, 0x4b, 0x3a, 0x2c, 0x1f, 0x26, 0x3b, 0x42, 0x3a, 0x30, 0x29, 0x21, 0x20, 0x29, 0x34, 0x47, 0x4f, 0x50, 0x47, 0x3e, 0x3c, 0x3e, 0x3e, 0x2d, 0x1f, 0x1b, 0x23, 0x31, 0x49, 0x64, 0x73, 0x5f, 0x50, 0x48, 0x46, 0x40, 0x43, 0x51, 0x5b, 0x62, 0x70, 0x7d, 0x83, 0x88, 0x8e, 0x8e, 0x88, 0x81, 0x77, 0x6d, 0x68, 0x65, 0x5d, 0x4f, 0x44, 0x2c, 0x27, 0x23, 0x23, 0x23, 0x1f, 0x1b, 0x19, 0x1a, 0x1c, 0x2c, 0x42, 0x4c, 0x45, 0x3e, 0x3e, 0x35, 0x2e, 0x26, 0x2e, 0x45, 0x50, 0x4c, 0x47, 0x40, 0x35, 0x37, 0x48, 0x54, 0x55, 0x57, 0x5f, 0x61, 0x71, 0x7c, 0x7a, 0x75, 0x6a, 0x51, 0x37, 0x36, 0x4e, 0x5c, 0x53, 0x48, 0x45, 0x3e, 0x33, 0x29, 0x26, 0x24, 0x25, 0x26, 0x24, 0x20, 0x1b, 0x16, 0x27, 0x3e, 0x48, 0x3c, 0x27, 0x1b, 0x1a, 0x1e, 0x20, 0x2a, 0x39, 0x3c, 0x35, 0x34, 0x39, 0x98, 0x92, 0x8d, 0x90, 0x99, 0xa2, 0xa6, 0xa6, 0xa4, 0xa8, 0xad, 0xae, 0xac, 0xaa, 0xaa, 0xab, 0xb3, 0xb1, 0xac, 0xa4, 0x9b, 0x94, 0x8f, 0x8c, 0x99, 0x96, 0x93, 0x8d, 0x84, 0x7a, 0x73, 0x70, 0x6f, 0x6b, 0x69, 0x6c, 0x73, 0x7e, 0x8d, 0x99, 0x9b, 0xa7, 0xb2, 0xb4, 0xb2, 0xaa, 0x97, 0x84, 0x74, 0x76, 0x79, 0x7d, 0x80, 0x82, 0x81, 0x81, 0x8b, 0x88, 0x7d, 0x71, 0x75, 0x8c, 0xa3, 0xaf, 0x9b, 0x94, 0x87, 0x7c, 0x7c, 0x82, 0x81, 0x7b, 0x76, 0x75, 0x7e, 0x8a, 0x90, 0x93, 0x90, 0x86, 0x8a, 0x87, 0x81, 0x7a, 0x76, 0x75, 0x75, 0x75, 0x72, 0x69, 0x68, 0x6e, 0x6a, 0x60, 0x65, 0x73, 0x76, 0x7c, 0x7c, 0x84, 0x87, 0x81, 0x80, 0x77, 0x81, 0x76, 0x70, 0x76, 0x83, 0x86, 0x7b, 0x6d, 0x68, 0x66, 0x6e, 0x76, 0x74, 0x70, 0x73, 0x78, 0x8d, 0x8f, 0x8f, 0x8c, 0x87, 0x80, 0x77, 0x71, 0x7c, 0x82, 0x85, 0x7d, 0x73, 0x72, 0x77, 0x7c, 0x73, 0x6c, 0x6e, 0x78, 0x76, 0x69, 0x64, 0x6a, 0x71, 0x71, 0x76, 0x7c, 0x7d, 0x75, 0x6a, 0x63, 0x64, 0x62, 0x6a, 0x7a, 0x82, 0x77, 0x63, 0x54, 0x64, 0x70, 0x79, 0x77, 0x73, 0x70, 0x6a, 0x64, 0x66, 0x72, 0x79, 0x74, 0x69, 0x65, 0x69, 0x6f, 0x70, 0x71, 0x70, 0x6a, 0x67, 0x68, 0x6a, 0x6c, 0x74, 0x77, 0x7f, 0x88, 0x8b, 0x89, 0x8a, 0x8e, 0x93, 0x96, 0x9a, 0x9c, 0x9d, 0x9f, 0xa3, 0xa6, 0xa6, 0xa8, 0xab, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb4, 0xb6, 0xb7, 0xb8, 0xb8, 0xb9, 0xbb, 0xbc, 0xbd, 0xbd, 0xbd, 0xbd, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbd, 0xbe, 0xbe, 0xbd, 0xbb, 0xb9, 0xb7, 0xb9, 0xb8, 0xb6, 0xb5, 0xb4, 0xb3, 0xb2, 0xb0, 0xaf, 0xae, 0xad, 0xad, 0xad, 0xad, 0xab, 0xa9, 0xa8, 0xa3, 0xa1, 0xa0, 0x98, 0x90, 0x95, 0xa1, 0xa7, 0xac, 0xb4, 0xb9, 0xbc, 0xbe, 0xc2, 0xc4, 0xc5, 0xc7, 0xc9, 0xca, 0xca, 0xca, 0xca, 0xcb, 0xd0, 0xd1, 0xd3, 0xd5, 0xd6, 0xd8, 0xdb, 0xdd, 0xdb, 0xdd, 0xdd, 0xdb, 0xdc, 0xdf, 0xe0, 0xdf, 0xda, 0xdb, 0xdb, 0xd9, 0xd6, 0xd4, 0xd4, 0xd5, 0xd4, 0xd2, 0xce, 0xcc, 0xcb, 0xcb, 0xcd, 0xce, 0xd1, 0xd3, 0xd5, 0xd6, 0xd6, 0xd5, 0xd6, 0xd7, 0xcf, 0xd1, 0xd4, 0xd4, 0xd2, 0xd1, 0xd3, 0xd5, 0xd6, 0xd5, 0xd5, 0xd5, 0xd5, 0xd5, 0xd3, 0xd2, 0xce, 0xd1, 0xd3, 0xd3, 0xd0, 0xce, 0xcf, 0xd0, 0xcd, 0xc5, 0xc2, 0xce, 0xda, 0xd5, 0xd2, 0xdb, 0xe0, 0xde, 0xdb, 0xda, 0xd9, 0xd7, 0xd5, 0xd4, 0xd4, 0xd2, 0xdb, 0xd1, 0x94, 0x71, 0x76, 0xa8, 0xcd, 0xcd, 0xd1, 0xc9, 0xdb, 0xcd, 0x8d, 0x81, 0x7a, 0x70, 0x9c, 0xd0, 0xd3, 0xc7, 0x85, 0x77, 0x7b, 0x81, 0xc2, 0xdb, 0xce, 0xca, 0xca, 0xc7, 0xcd, 0xcc, 0xcd, 0x98, 0x74, 0x72, 0x84, 0xbf, 0xc6, 0xc9, 0xc8, 0xc2, 0xc0, 0xce, 0x89, 0x76, 0x72, 0xad, 0xd0, 0xc9, 0xc7, 0xc9, 0xce, 0x98, 0x65, 0x6a, 0x9d, 0xc6, 0xbf, 0xc7, 0xbc, 0xc3, 0xa3, 0x6b, 0x72, 0xa8, 0xc7, 0xbb, 0xbf, 0xb8, 0xba, 0xb5, 0xb8, 0xb0, 0xa1, 0x7f, 0x5e, 0x66, 0x6a, 0x79, 0x78, 0x77, 0x69, 0x66, 0x5d, 0x63, 0x6c, 0x6c, 0x65, 0x5f, 0x5f, 0x61, 0x69, 0x77, 0x76, 0x6f, 0x73, 0x87, 0x8a, 0x88, 0x7d, 0x73, 0x5b, 0x54, 0x55, 0x57, 0x5f, 0x5c, 0x61, 0x65, 0x61, 0x5f, 0x5d, 0x5d, 0x5d, 0x5e, 0x62, 0x68, 0x69, 0x6e, 0x66, 0x65, 0x69, 0x72, 0x7f, 0x7d, 0x68, 0x5e, 0x69, 0x71, 0x69, 0x5c, 0x4c, 0x4a, 0x41, 0x3c, 0x39, 0x38, 0x35, 0x35, 0x40, 0x4e, 0x63, 0x65, 0x61, 0x60, 0x5f, 0x4c, 0x37, 0x33, 0x31, 0x27, 0x2a, 0x46, 0x67, 0x76, 0x71, 0x69, 0x4d, 0x44, 0x33, 0x27, 0x25, 0x25, 0x2c, 0x39, 0x3a, 0x37, 0x37, 0x38, 0x33, 0x2c, 0x2c, 0x31, 0x36, 0x3d, 0x43, 0x43, 0x40, 0x39, 0x2f, 0x26, 0x20, 0x18, 0x19, 0x24, 0x33, 0x4a, 0x5c, 0x60, 0x58, 0x4c, 0x47, 0x46, 0x46, 0x51, 0x63, 0x6e, 0x74, 0x7c, 0x83, 0x88, 0x8d, 0x92, 0x93, 0x91, 0x95, 0x96, 0x91, 0x84, 0x73, 0x66, 0x5f, 0x5c, 0x55, 0x48, 0x39, 0x2d, 0x24, 0x1e, 0x1a, 0x1a, 0x1e, 0x1a, 0x1d, 0x29, 0x34, 0x3a, 0x3c, 0x3d, 0x3a, 0x3e, 0x3c, 0x39, 0x3a, 0x39, 0x3a, 0x41, 0x46, 0x5c, 0x70, 0x70, 0x62, 0x5b, 0x64, 0x71, 0x7f, 0x6f, 0x61, 0x63, 0x6b, 0x65, 0x4b, 0x31, 0x3c, 0x4b, 0x57, 0x54, 0x4b, 0x42, 0x3a, 0x34, 0x29, 0x2f, 0x31, 0x2b, 0x26, 0x26, 0x24, 0x20, 0x2f, 0x45, 0x54, 0x4c, 0x3b, 0x34, 0x37, 0x3b, 0x22, 0x1d, 0x1e, 0x29, 0x32, 0x38, 0x41, 0x4a, 0x93, 0x8a, 0x82, 0x86, 0x92, 0x9c, 0x9d, 0x9a, 0x9e, 0x9f, 0x9d, 0x95, 0x8e, 0x91, 0x9c, 0xa7, 0xa1, 0xa4, 0xa5, 0x9f, 0x96, 0x8d, 0x87, 0x83, 0x7e, 0x84, 0x8a, 0x8e, 0x8e, 0x8b, 0x86, 0x81, 0x7e, 0x7c, 0x7e, 0x83, 0x84, 0x82, 0x81, 0x82, 0x95, 0x96, 0x9a, 0x9b, 0x95, 0x87, 0x7a, 0x74, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x6f, 0x65, 0x5e, 0x64, 0x73, 0x81, 0x8f, 0x98, 0x83, 0x7f, 0x7c, 0x7d, 0x7e, 0x7b, 0x73, 0x6c, 0x6d, 0x6c, 0x78, 0x84, 0x88, 0x8a, 0x8d, 0x8a, 0x92, 0x8f, 0x89, 0x80, 0x75, 0x6a, 0x65, 0x64, 0x66, 0x65, 0x6c, 0x73, 0x6e, 0x64, 0x6c, 0x7d, 0x85, 0x78, 0x69, 0x74, 0x7e, 0x7b, 0x7c, 0x77, 0x71, 0x6f, 0x6c, 0x6b, 0x6e, 0x75, 0x7d, 0x83, 0x7e, 0x69, 0x6e, 0x80, 0x7e, 0x73, 0x73, 0x75, 0x77, 0x7d, 0x82, 0x83, 0x7f, 0x78, 0x6f, 0x69, 0x7c, 0x7f, 0x7d, 0x73, 0x69, 0x69, 0x71, 0x78, 0x6c, 0x68, 0x65, 0x65, 0x64, 0x60, 0x5c, 0x5a, 0x66, 0x69, 0x72, 0x7a, 0x78, 0x70, 0x6f, 0x73, 0x73, 0x78, 0x81, 0x84, 0x7a, 0x6d, 0x6d, 0x78, 0x72, 0x7b, 0x81, 0x81, 0x81, 0x80, 0x78, 0x6d, 0x6b, 0x6c, 0x67, 0x60, 0x5f, 0x66, 0x6b, 0x6a, 0x76, 0x70, 0x66, 0x5e, 0x62, 0x6d, 0x72, 0x6f, 0x5f, 0x63, 0x70, 0x82, 0x8a, 0x88, 0x8b, 0x92, 0x91, 0x95, 0x99, 0x9b, 0x9b, 0x9e, 0xa2, 0xa6, 0xa6, 0xa8, 0xac, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb9, 0xba, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbb, 0xbb, 0xbb, 0xbc, 0xbc, 0xbd, 0xbd, 0xbc, 0xb9, 0xb7, 0xb5, 0xb6, 0xb5, 0xb3, 0xb3, 0xb2, 0xb2, 0xb0, 0xaf, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xac, 0xaa, 0xab, 0xa5, 0xa4, 0xa3, 0x9c, 0x93, 0x98, 0xa4, 0xa7, 0xad, 0xb3, 0xb7, 0xb9, 0xbb, 0xbf, 0xc3, 0xc0, 0xc3, 0xc6, 0xc8, 0xca, 0xcb, 0xcd, 0xcf, 0xce, 0xd2, 0xd6, 0xd5, 0xd3, 0xd3, 0xd8, 0xdc, 0xda, 0xdc, 0xdc, 0xda, 0xdb, 0xde, 0xdf, 0xdf, 0xde, 0xdf, 0xde, 0xdb, 0xd7, 0xd4, 0xd3, 0xd3, 0xd5, 0xd2, 0xcd, 0xc9, 0xc8, 0xc8, 0xca, 0xcb, 0xc7, 0xcb, 0xcf, 0xd2, 0xd3, 0xd4, 0xd6, 0xd8, 0xce, 0xce, 0xce, 0xcd, 0xcc, 0xcb, 0xcb, 0xcb, 0xcf, 0xcf, 0xce, 0xce, 0xd0, 0xd0, 0xd0, 0xcf, 0xcc, 0xcf, 0xd2, 0xd2, 0xd0, 0xce, 0xd0, 0xd2, 0xd1, 0xab, 0x91, 0xaa, 0xd5, 0xe3, 0xdc, 0xd9, 0xdb, 0xda, 0xd8, 0xd7, 0xd6, 0xd6, 0xd5, 0xd4, 0xd8, 0xce, 0xd7, 0xc3, 0x81, 0x6b, 0x76, 0xb6, 0xd4, 0xd3, 0xd3, 0xc5, 0xd6, 0xc0, 0x7a, 0x7c, 0x78, 0x6e, 0xab, 0xd5, 0xd3, 0xc8, 0x87, 0x7f, 0x7f, 0x81, 0xba, 0xd5, 0xc8, 0xd0, 0xcd, 0xc5, 0xce, 0xc4, 0xd0, 0x87, 0x76, 0x6f, 0x8b, 0xd2, 0xd2, 0xc2, 0xc1, 0xcb, 0xc4, 0xbd, 0x70, 0x6c, 0x6f, 0xa6, 0xd2, 0xc8, 0xc3, 0xc3, 0xc3, 0x91, 0x60, 0x66, 0x9a, 0xc6, 0xbd, 0xc3, 0xb7, 0xbf, 0x9b, 0x5f, 0x79, 0xa9, 0xc3, 0xbc, 0xb7, 0xb9, 0xbb, 0xb3, 0xb6, 0xae, 0x9f, 0x7e, 0x5f, 0x70, 0x69, 0x79, 0x7a, 0x7f, 0x73, 0x71, 0x62, 0x64, 0x5f, 0x5e, 0x5e, 0x60, 0x5e, 0x53, 0x53, 0x62, 0x71, 0x76, 0x73, 0x76, 0x6b, 0x77, 0x70, 0x67, 0x5a, 0x4f, 0x53, 0x54, 0x63, 0x5e, 0x66, 0x68, 0x6a, 0x66, 0x64, 0x65, 0x61, 0x5b, 0x5c, 0x61, 0x69, 0x70, 0x6e, 0x72, 0x75, 0x75, 0x7a, 0x74, 0x62, 0x5a, 0x69, 0x78, 0x75, 0x6f, 0x64, 0x67, 0x5a, 0x48, 0x35, 0x2c, 0x2c, 0x37, 0x4d, 0x61, 0x63, 0x63, 0x60, 0x62, 0x5f, 0x44, 0x2c, 0x2f, 0x58, 0x73, 0x8e, 0x95, 0x8b, 0x79, 0x63, 0x52, 0x44, 0x3c, 0x28, 0x1a, 0x23, 0x34, 0x3f, 0x44, 0x39, 0x36, 0x38, 0x40, 0x42, 0x40, 0x42, 0x48, 0x3a, 0x3b, 0x42, 0x4e, 0x54, 0x4c, 0x3c, 0x30, 0x29, 0x21, 0x1b, 0x1c, 0x29, 0x45, 0x56, 0x55, 0x61, 0x59, 0x53, 0x4b, 0x41, 0x44, 0x4e, 0x53, 0x59, 0x58, 0x57, 0x55, 0x54, 0x54, 0x53, 0x52, 0x4e, 0x49, 0x47, 0x4d, 0x5a, 0x64, 0x62, 0x5c, 0x47, 0x46, 0x4b, 0x57, 0x5f, 0x56, 0x43, 0x33, 0x20, 0x23, 0x22, 0x1c, 0x1b, 0x20, 0x28, 0x2c, 0x35, 0x35, 0x2d, 0x27, 0x26, 0x23, 0x23, 0x2b, 0x40, 0x54, 0x59, 0x4f, 0x58, 0x6e, 0x6a, 0x51, 0x3f, 0x3f, 0x51, 0x66, 0x59, 0x39, 0x33, 0x46, 0x48, 0x41, 0x40, 0x45, 0x49, 0x45, 0x40, 0x3f, 0x39, 0x39, 0x33, 0x2e, 0x32, 0x3a, 0x35, 0x28, 0x3f, 0x56, 0x5a, 0x40, 0x2d, 0x36, 0x47, 0x4e, 0x45, 0x31, 0x20, 0x24, 0x30, 0x37, 0x34, 0x30, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x72, 0x6f, 0x72, 0x75, 0x74, 0x70, 0x6e, 0x6e, 0x70, 0x71, 0x73, 0x77, 0x7d, 0x80, 0x7d, 0x75, 0x6e, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x72, 0x72, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x75, 0x75, 0x73, 0x6e, 0x66, 0x61, 0x60, 0x61, 0x68, 0x66, 0x64, 0x63, 0x65, 0x68, 0x6c, 0x6e, 0x6d, 0x78, 0x84, 0x8a, 0x88, 0x86, 0x88, 0x8b, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x88, 0x88, 0x89, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x84, 0x85, 0x85, 0x84, 0x82, 0x7e, 0x7b, 0x79, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7f, 0x7b, 0x76, 0x75, 0x78, 0x7a, 0x7a, 0x79, 0x7e, 0x7d, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7f, 0x7d, 0x7f, 0x82, 0x84, 0x83, 0x81, 0x7d, 0x7a, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x81, 0x84, 0x84, 0x7f, 0x7a, 0x77, 0x77, 0x78, 0x79, 0x7c, 0x7f, 0x82, 0x84, 0x85, 0x84, 0x83, 0x82, 0x83, 0x85, 0x88, 0x89, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x84, 0x86, 0x88, 0x88, 0x86, 0x84, 0x82, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x85, 0x87, 0x87, 0x83, 0x7e, 0x7c, 0x7c, 0x7e, 0x7e, 0x82, 0x86, 0x87, 0x85, 0x83, 0x83, 0x85, 0x86, 0x84, 0x80, 0x7e, 0x7d, 0x7f, 0x81, 0x83, 0x87, 0x84, 0x81, 0x7e, 0x7c, 0x7b, 0x7c, 0x7d, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x73, 0x76, 0x75, 0x71, 0x6f, 0x70, 0x71, 0x70, 0x72, 0x77, 0x7c, 0x80, 0x7d, 0x76, 0x70, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6e, 0x70, 0x70, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x77, 0x78, 0x79, 0x79, 0x78, 0x76, 0x74, 0x73, 0x6e, 0x70, 0x6f, 0x6c, 0x68, 0x65, 0x66, 0x69, 0x6c, 0x6a, 0x68, 0x65, 0x64, 0x63, 0x64, 0x64, 0x6c, 0x76, 0x81, 0x87, 0x86, 0x85, 0x86, 0x88, 0x7b, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x84, 0x85, 0x85, 0x84, 0x82, 0x7f, 0x7b, 0x79, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7e, 0x7a, 0x76, 0x75, 0x78, 0x7b, 0x7c, 0x7b, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7f, 0x82, 0x84, 0x83, 0x80, 0x7d, 0x7a, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x81, 0x84, 0x83, 0x7e, 0x79, 0x76, 0x78, 0x7a, 0x7d, 0x80, 0x82, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7f, 0x80, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x84, 0x86, 0x88, 0x88, 0x86, 0x84, 0x82, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x85, 0x87, 0x86, 0x83, 0x7e, 0x7b, 0x7c, 0x7e, 0x7d, 0x81, 0x85, 0x86, 0x84, 0x82, 0x82, 0x84, 0x84, 0x82, 0x7f, 0x7c, 0x7c, 0x7d, 0x80, 0x81, 0x85, 0x83, 0x80, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x73, 0x6d, 0x6e, 0x6f, 0x71, 0x73, 0x74, 0x75, 0x76, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x73, 0x73, 0x72, 0x75, 0x78, 0x77, 0x73, 0x71, 0x72, 0x73, 0x71, 0x72, 0x75, 0x7b, 0x7f, 0x7e, 0x78, 0x73, 0x74, 0x71, 0x6e, 0x6c, 0x6d, 0x71, 0x75, 0x79, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x6a, 0x6d, 0x6e, 0x6d, 0x6b, 0x6b, 0x6f, 0x73, 0x73, 0x72, 0x6f, 0x6b, 0x67, 0x63, 0x60, 0x5e, 0x6d, 0x75, 0x7f, 0x84, 0x85, 0x84, 0x85, 0x86, 0x7a, 0x7c, 0x7e, 0x81, 0x84, 0x85, 0x86, 0x86, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x87, 0x87, 0x84, 0x85, 0x85, 0x85, 0x83, 0x80, 0x7c, 0x7a, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7c, 0x78, 0x75, 0x76, 0x7a, 0x7d, 0x7e, 0x7d, 0x80, 0x7f, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x82, 0x83, 0x82, 0x80, 0x7c, 0x7a, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x80, 0x82, 0x81, 0x7c, 0x78, 0x76, 0x79, 0x7e, 0x83, 0x85, 0x85, 0x83, 0x82, 0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x86, 0x82, 0x7c, 0x7a, 0x7b, 0x7d, 0x7c, 0x80, 0x84, 0x85, 0x82, 0x80, 0x80, 0x82, 0x81, 0x7f, 0x7c, 0x7a, 0x79, 0x7b, 0x7e, 0x80, 0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7e, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x6e, 0x70, 0x71, 0x72, 0x72, 0x73, 0x72, 0x6e, 0x6e, 0x70, 0x71, 0x73, 0x75, 0x76, 0x76, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x74, 0x74, 0x75, 0x78, 0x7a, 0x79, 0x76, 0x74, 0x74, 0x76, 0x72, 0x72, 0x74, 0x79, 0x7d, 0x7e, 0x7b, 0x77, 0x75, 0x71, 0x6d, 0x6b, 0x6d, 0x73, 0x7a, 0x7f, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x86, 0x86, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x71, 0x73, 0x74, 0x72, 0x70, 0x71, 0x75, 0x79, 0x7c, 0x7a, 0x78, 0x75, 0x71, 0x6c, 0x68, 0x66, 0x73, 0x78, 0x7f, 0x85, 0x87, 0x87, 0x86, 0x86, 0x7b, 0x7d, 0x80, 0x83, 0x85, 0x87, 0x87, 0x88, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x86, 0x84, 0x85, 0x86, 0x85, 0x84, 0x80, 0x7d, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x77, 0x75, 0x77, 0x7b, 0x7f, 0x7f, 0x7e, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x7f, 0x7c, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7d, 0x7f, 0x81, 0x80, 0x7b, 0x77, 0x77, 0x7b, 0x81, 0x87, 0x89, 0x87, 0x84, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x86, 0x86, 0x86, 0x86, 0x84, 0x83, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x80, 0x7b, 0x78, 0x7a, 0x7d, 0x7b, 0x7f, 0x83, 0x83, 0x81, 0x7e, 0x7f, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x79, 0x7c, 0x7e, 0x80, 0x7f, 0x7d, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x72, 0x72, 0x71, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x75, 0x76, 0x77, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x78, 0x7b, 0x7d, 0x7c, 0x79, 0x76, 0x77, 0x78, 0x74, 0x73, 0x74, 0x77, 0x7b, 0x7d, 0x7c, 0x79, 0x75, 0x72, 0x6e, 0x6c, 0x6e, 0x74, 0x7c, 0x81, 0x88, 0x88, 0x88, 0x88, 0x87, 0x85, 0x83, 0x81, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7e, 0x7e, 0x7d, 0x79, 0x75, 0x74, 0x77, 0x7b, 0x83, 0x82, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7c, 0x7e, 0x83, 0x88, 0x8b, 0x8b, 0x88, 0x86, 0x7d, 0x7f, 0x81, 0x84, 0x87, 0x88, 0x89, 0x89, 0x89, 0x89, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x79, 0x77, 0x76, 0x78, 0x7d, 0x80, 0x80, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7d, 0x7f, 0x7f, 0x7b, 0x77, 0x78, 0x7c, 0x82, 0x88, 0x8a, 0x88, 0x84, 0x82, 0x83, 0x81, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x83, 0x81, 0x82, 0x84, 0x85, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x84, 0x7e, 0x79, 0x77, 0x79, 0x7c, 0x7b, 0x7f, 0x83, 0x83, 0x80, 0x7d, 0x7d, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c, 0x7e, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x73, 0x72, 0x70, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x7d, 0x80, 0x7f, 0x7b, 0x79, 0x79, 0x7b, 0x78, 0x75, 0x74, 0x76, 0x7a, 0x7c, 0x7c, 0x7a, 0x75, 0x73, 0x70, 0x6e, 0x70, 0x74, 0x7a, 0x7d, 0x82, 0x83, 0x83, 0x83, 0x81, 0x7e, 0x7b, 0x7a, 0x7e, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x79, 0x86, 0x85, 0x82, 0x7c, 0x77, 0x75, 0x77, 0x7b, 0x89, 0x87, 0x83, 0x80, 0x80, 0x82, 0x85, 0x87, 0x84, 0x83, 0x85, 0x89, 0x8c, 0x8c, 0x88, 0x83, 0x7c, 0x7e, 0x80, 0x83, 0x85, 0x87, 0x88, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x86, 0x86, 0x85, 0x82, 0x80, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7a, 0x78, 0x77, 0x7a, 0x7e, 0x81, 0x80, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7a, 0x7c, 0x7e, 0x7e, 0x7b, 0x78, 0x7a, 0x7d, 0x81, 0x85, 0x87, 0x86, 0x84, 0x82, 0x84, 0x82, 0x80, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x82, 0x85, 0x88, 0x89, 0x89, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x83, 0x7d, 0x77, 0x75, 0x78, 0x7b, 0x7c, 0x7f, 0x83, 0x83, 0x80, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x79, 0x77, 0x78, 0x7a, 0x7d, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7d, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x72, 0x73, 0x75, 0x75, 0x74, 0x71, 0x6e, 0x6c, 0x6f, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x77, 0x77, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7c, 0x7f, 0x82, 0x81, 0x7d, 0x7b, 0x7b, 0x7d, 0x7b, 0x78, 0x74, 0x75, 0x78, 0x7b, 0x7c, 0x7b, 0x74, 0x74, 0x72, 0x72, 0x72, 0x74, 0x76, 0x77, 0x7d, 0x7e, 0x7f, 0x7e, 0x7c, 0x79, 0x75, 0x73, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x84, 0x84, 0x80, 0x7b, 0x75, 0x74, 0x77, 0x7b, 0x8c, 0x88, 0x80, 0x7b, 0x7a, 0x7e, 0x84, 0x89, 0x88, 0x85, 0x84, 0x87, 0x8b, 0x8a, 0x84, 0x7e, 0x77, 0x79, 0x7c, 0x7e, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x85, 0x86, 0x87, 0x87, 0x86, 0x83, 0x80, 0x7f, 0x7d, 0x7c, 0x7a, 0x78, 0x78, 0x7a, 0x7c, 0x7e, 0x7b, 0x79, 0x78, 0x7b, 0x7f, 0x81, 0x7f, 0x7d, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7a, 0x79, 0x7b, 0x7e, 0x7f, 0x7c, 0x79, 0x7c, 0x7d, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x84, 0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x80, 0x82, 0x86, 0x8a, 0x8c, 0x8d, 0x8c, 0x8c, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x82, 0x7c, 0x76, 0x74, 0x77, 0x7a, 0x7c, 0x80, 0x84, 0x84, 0x80, 0x7d, 0x7d, 0x7e, 0x7f, 0x7d, 0x7a, 0x79, 0x79, 0x7c, 0x7f, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x74, 0x75, 0x76, 0x76, 0x74, 0x70, 0x6d, 0x6a, 0x6f, 0x6f, 0x71, 0x72, 0x74, 0x76, 0x77, 0x77, 0x72, 0x72, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7d, 0x80, 0x83, 0x82, 0x7e, 0x7c, 0x7c, 0x7e, 0x7d, 0x79, 0x75, 0x74, 0x77, 0x7a, 0x7b, 0x7b, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x76, 0x72, 0x6f, 0x72, 0x73, 0x76, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x7f, 0x7c, 0x77, 0x73, 0x73, 0x77, 0x7c, 0x8e, 0x87, 0x7d, 0x75, 0x73, 0x77, 0x7f, 0x84, 0x89, 0x85, 0x82, 0x84, 0x88, 0x87, 0x80, 0x79, 0x73, 0x75, 0x77, 0x7a, 0x7d, 0x7e, 0x7f, 0x7f, 0x81, 0x81, 0x82, 0x83, 0x85, 0x86, 0x87, 0x87, 0x85, 0x86, 0x87, 0x87, 0x86, 0x84, 0x81, 0x7f, 0x7d, 0x7c, 0x79, 0x78, 0x78, 0x7a, 0x7d, 0x7f, 0x7c, 0x7a, 0x79, 0x7c, 0x7f, 0x81, 0x7f, 0x7c, 0x7b, 0x7c, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x79, 0x78, 0x7a, 0x7d, 0x7f, 0x7d, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x85, 0x80, 0x7f, 0x7d, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x80, 0x82, 0x87, 0x8b, 0x8e, 0x8f, 0x8f, 0x8e, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x85, 0x82, 0x7b, 0x75, 0x73, 0x76, 0x7a, 0x7d, 0x81, 0x84, 0x84, 0x81, 0x7e, 0x7d, 0x7e, 0x7f, 0x7e, 0x7b, 0x7a, 0x7a, 0x7d, 0x80, 0x82, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7e, 0x80, 0x81, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x6c, 0x6b, 0x69, 0x68, 0x69, 0x6c, 0x6f, 0x71, 0x7a, 0x77, 0x73, 0x70, 0x6d, 0x6d, 0x6e, 0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x7e, 0x82, 0x85, 0x87, 0x86, 0x83, 0x83, 0x85, 0x87, 0x83, 0x80, 0x7c, 0x79, 0x79, 0x7c, 0x80, 0x83, 0x7a, 0x79, 0x77, 0x75, 0x75, 0x75, 0x76, 0x77, 0x7a, 0x7c, 0x7c, 0x78, 0x72, 0x6d, 0x6c, 0x6d, 0x72, 0x74, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x80, 0x80, 0x80, 0x81, 0x83, 0x86, 0x8a, 0x8b, 0x8d, 0x89, 0x83, 0x7f, 0x7e, 0x81, 0x85, 0x88, 0x89, 0x87, 0x87, 0x89, 0x8a, 0x87, 0x81, 0x7c, 0x72, 0x79, 0x80, 0x82, 0x80, 0x82, 0x88, 0x8f, 0x83, 0x87, 0x8c, 0x8c, 0x89, 0x85, 0x84, 0x84, 0x88, 0x85, 0x82, 0x82, 0x83, 0x81, 0x7d, 0x79, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x84, 0x86, 0x87, 0x7d, 0x7e, 0x81, 0x83, 0x86, 0x88, 0x8a, 0x8b, 0x84, 0x82, 0x7f, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x87, 0x87, 0x87, 0x84, 0x80, 0x7c, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7e, 0x82, 0x84, 0x84, 0x81, 0x7e, 0x7b, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x80, 0x82, 0x80, 0x7e, 0x7b, 0x79, 0x79, 0x7a, 0x7c, 0x7e, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7b, 0x79, 0x76, 0x74, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6c, 0x70, 0x72, 0x79, 0x76, 0x72, 0x6f, 0x6d, 0x6c, 0x6d, 0x6e, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x7a, 0x7c, 0x80, 0x82, 0x84, 0x83, 0x7f, 0x7e, 0x80, 0x82, 0x82, 0x7f, 0x7b, 0x78, 0x78, 0x7a, 0x7d, 0x80, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7c, 0x7e, 0x80, 0x80, 0x81, 0x81, 0x7d, 0x76, 0x72, 0x71, 0x72, 0x72, 0x74, 0x76, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x82, 0x82, 0x83, 0x85, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x88, 0x82, 0x7e, 0x7d, 0x7f, 0x83, 0x85, 0x86, 0x85, 0x85, 0x86, 0x87, 0x85, 0x7f, 0x79, 0x75, 0x82, 0x92, 0x9b, 0x9d, 0x9d, 0xa0, 0xa3, 0x9b, 0x9e, 0xa0, 0x9e, 0x98, 0x92, 0x8f, 0x8f, 0x90, 0x8e, 0x8d, 0x8e, 0x8e, 0x8b, 0x85, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x85, 0x83, 0x80, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7c, 0x7e, 0x80, 0x7e, 0x7c, 0x79, 0x78, 0x77, 0x78, 0x7a, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x69, 0x68, 0x68, 0x68, 0x6a, 0x6d, 0x71, 0x73, 0x76, 0x74, 0x71, 0x6e, 0x6c, 0x6b, 0x6c, 0x6c, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x6f, 0x70, 0x76, 0x75, 0x74, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7f, 0x81, 0x82, 0x7f, 0x7b, 0x79, 0x7a, 0x7c, 0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x77, 0x79, 0x7a, 0x72, 0x73, 0x75, 0x78, 0x7d, 0x81, 0x85, 0x87, 0x85, 0x86, 0x85, 0x81, 0x7b, 0x77, 0x77, 0x78, 0x73, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x81, 0x83, 0x86, 0x88, 0x89, 0x88, 0x86, 0x85, 0x88, 0x85, 0x81, 0x7d, 0x7c, 0x7d, 0x80, 0x82, 0x84, 0x83, 0x83, 0x84, 0x85, 0x83, 0x7d, 0x77, 0x76, 0x88, 0xa0, 0xb1, 0xb7, 0xb6, 0xb6, 0xb7, 0xb5, 0xb6, 0xb5, 0xb0, 0xa7, 0x9f, 0x9b, 0x9a, 0x98, 0x98, 0x99, 0x9b, 0x9b, 0x96, 0x8d, 0x86, 0x7c, 0x7d, 0x7e, 0x80, 0x82, 0x86, 0x88, 0x8a, 0x87, 0x86, 0x84, 0x82, 0x81, 0x81, 0x81, 0x81, 0x8d, 0x8c, 0x8c, 0x8a, 0x87, 0x84, 0x81, 0x7f, 0x86, 0x84, 0x81, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x84, 0x84, 0x83, 0x81, 0x7e, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x7a, 0x7c, 0x7e, 0x7c, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x73, 0x72, 0x67, 0x67, 0x68, 0x69, 0x6c, 0x6f, 0x72, 0x74, 0x74, 0x72, 0x70, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6a, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x76, 0x75, 0x73, 0x72, 0x73, 0x74, 0x76, 0x78, 0x80, 0x81, 0x82, 0x7f, 0x7a, 0x77, 0x77, 0x79, 0x7c, 0x7b, 0x78, 0x76, 0x74, 0x74, 0x75, 0x75, 0x71, 0x72, 0x75, 0x78, 0x7b, 0x7f, 0x82, 0x83, 0x84, 0x85, 0x84, 0x80, 0x7b, 0x78, 0x78, 0x7a, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7e, 0x80, 0x83, 0x85, 0x85, 0x83, 0x7f, 0x7d, 0x84, 0x82, 0x7e, 0x7c, 0x7a, 0x7b, 0x7d, 0x7e, 0x85, 0x83, 0x83, 0x85, 0x86, 0x83, 0x7d, 0x78, 0x75, 0x85, 0x9a, 0xaa, 0xb0, 0xb3, 0xb6, 0xb9, 0xbb, 0xbb, 0xb9, 0xb2, 0xa9, 0xa2, 0x9e, 0x9e, 0x99, 0x9a, 0x9d, 0xa0, 0x9f, 0x98, 0x8d, 0x84, 0x7b, 0x7c, 0x7e, 0x81, 0x85, 0x8a, 0x8e, 0x90, 0x98, 0x97, 0x95, 0x94, 0x94, 0x95, 0x96, 0x97, 0xa0, 0xa0, 0x9f, 0x9e, 0x9b, 0x97, 0x94, 0x91, 0x86, 0x84, 0x81, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x81, 0x82, 0x84, 0x84, 0x82, 0x7e, 0x7a, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x77, 0x76, 0x75, 0x74, 0x75, 0x77, 0x7a, 0x7b, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x68, 0x69, 0x6a, 0x6b, 0x6e, 0x71, 0x73, 0x74, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x76, 0x75, 0x73, 0x72, 0x73, 0x74, 0x76, 0x78, 0x82, 0x84, 0x84, 0x80, 0x7b, 0x77, 0x77, 0x79, 0x79, 0x79, 0x77, 0x76, 0x74, 0x73, 0x73, 0x72, 0x74, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x7c, 0x7d, 0x7d, 0x7a, 0x75, 0x74, 0x76, 0x79, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7a, 0x7d, 0x7e, 0x7e, 0x7b, 0x78, 0x76, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x86, 0x85, 0x85, 0x86, 0x87, 0x84, 0x7e, 0x79, 0x71, 0x7b, 0x86, 0x8e, 0x93, 0x9a, 0xa4, 0xad, 0xb0, 0xb0, 0xad, 0xa7, 0x9f, 0x99, 0x98, 0x99, 0x95, 0x96, 0x98, 0x9a, 0x98, 0x91, 0x85, 0x7c, 0x7a, 0x7b, 0x7d, 0x81, 0x86, 0x8b, 0x90, 0x92, 0x9b, 0x9b, 0x9a, 0x9a, 0x9d, 0xa0, 0xa4, 0xa6, 0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa2, 0x9f, 0x9d, 0x83, 0x82, 0x80, 0x7e, 0x7c, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x82, 0x80, 0x7e, 0x7b, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x75, 0x74, 0x73, 0x73, 0x74, 0x76, 0x79, 0x7b, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x75, 0x71, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x73, 0x74, 0x76, 0x75, 0x74, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x83, 0x84, 0x84, 0x81, 0x7b, 0x78, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x76, 0x76, 0x75, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x73, 0x74, 0x74, 0x72, 0x6f, 0x6f, 0x73, 0x77, 0x75, 0x75, 0x74, 0x73, 0x74, 0x74, 0x75, 0x76, 0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x85, 0x84, 0x84, 0x85, 0x86, 0x84, 0x7e, 0x78, 0x71, 0x75, 0x79, 0x7b, 0x7e, 0x88, 0x97, 0xa4, 0xa7, 0xa7, 0xa3, 0x9d, 0x95, 0x91, 0x91, 0x93, 0x91, 0x90, 0x90, 0x90, 0x8e, 0x87, 0x7d, 0x75, 0x79, 0x7a, 0x7c, 0x80, 0x84, 0x89, 0x8e, 0x90, 0x91, 0x90, 0x90, 0x91, 0x94, 0x99, 0x9e, 0xa1, 0x98, 0x9a, 0x9c, 0x9e, 0x9d, 0x9a, 0x97, 0x95, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x84, 0x82, 0x81, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x74, 0x74, 0x73, 0x73, 0x74, 0x77, 0x79, 0x7b, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x74, 0x70, 0x70, 0x6f, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x7a, 0x7c, 0x80, 0x82, 0x82, 0x7f, 0x7a, 0x76, 0x77, 0x78, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x75, 0x74, 0x76, 0x76, 0x76, 0x75, 0x73, 0x71, 0x6e, 0x6d, 0x6b, 0x6d, 0x6d, 0x6c, 0x6b, 0x6c, 0x72, 0x76, 0x76, 0x75, 0x74, 0x72, 0x72, 0x73, 0x74, 0x75, 0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77, 0x77, 0x75, 0x72, 0x70, 0x70, 0x71, 0x74, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x81, 0x80, 0x80, 0x81, 0x82, 0x80, 0x7a, 0x74, 0x74, 0x78, 0x7d, 0x7f, 0x82, 0x8c, 0x9b, 0xa8, 0xad, 0xab, 0xa6, 0x9d, 0x94, 0x8f, 0x8f, 0x90, 0x92, 0x90, 0x8c, 0x8a, 0x88, 0x82, 0x7a, 0x74, 0x78, 0x79, 0x7a, 0x7d, 0x81, 0x86, 0x89, 0x8c, 0x8a, 0x89, 0x87, 0x87, 0x89, 0x8d, 0x91, 0x94, 0x90, 0x92, 0x93, 0x94, 0x91, 0x8d, 0x89, 0x85, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x86, 0x83, 0x7f, 0x7c, 0x7d, 0x81, 0x86, 0x8a, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x85, 0x83, 0x82, 0x7e, 0x81, 0x84, 0x86, 0x85, 0x81, 0x7c, 0x78, 0x75, 0x74, 0x73, 0x73, 0x75, 0x78, 0x7b, 0x7d, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x74, 0x74, 0x74, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x75, 0x74, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x7e, 0x7d, 0x7f, 0x7f, 0x7c, 0x77, 0x74, 0x75, 0x76, 0x75, 0x76, 0x78, 0x7a, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x71, 0x70, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x6c, 0x72, 0x77, 0x76, 0x75, 0x73, 0x72, 0x71, 0x72, 0x73, 0x74, 0x78, 0x78, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x79, 0x76, 0x71, 0x6e, 0x6e, 0x71, 0x75, 0x79, 0x73, 0x74, 0x77, 0x7a, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7c, 0x7c, 0x7d, 0x7f, 0x7c, 0x76, 0x71, 0x77, 0x7f, 0x87, 0x8c, 0x90, 0x98, 0xa5, 0xb0, 0xb7, 0xb4, 0xad, 0xa2, 0x97, 0x90, 0x8f, 0x91, 0x95, 0x91, 0x8c, 0x89, 0x86, 0x81, 0x7b, 0x75, 0x77, 0x78, 0x79, 0x7c, 0x7f, 0x83, 0x86, 0x88, 0x8d, 0x8b, 0x87, 0x85, 0x85, 0x87, 0x8b, 0x8d, 0x92, 0x92, 0x93, 0x92, 0x8e, 0x88, 0x81, 0x7d, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x87, 0x83, 0x7d, 0x7a, 0x7c, 0x82, 0x8a, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x88, 0x86, 0x84, 0x7f, 0x83, 0x88, 0x8c, 0x8a, 0x85, 0x7d, 0x78, 0x76, 0x75, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x7e, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x74, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7d, 0x7e, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6a, 0x6b, 0x6b, 0x67, 0x63, 0x62, 0x64, 0x67, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x72, 0x76, 0x79, 0x7a, 0x77, 0x75, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x72, 0x74, 0x76, 0x78, 0x78, 0x77, 0x74, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x74, 0x71, 0x6c, 0x69, 0x67, 0x69, 0x6c, 0x6f, 0x73, 0x73, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x70, 0x6b, 0x6a, 0x6c, 0x6f, 0x70, 0x6f, 0x71, 0x73, 0x76, 0x75, 0x74, 0x75, 0x78, 0x7c, 0x75, 0x77, 0x79, 0x7a, 0x7a, 0x78, 0x76, 0x74, 0x7a, 0x81, 0x8c, 0x98, 0xa1, 0xa8, 0xac, 0xae, 0xb3, 0xb4, 0xb1, 0xa7, 0x9b, 0x94, 0x96, 0x9b, 0x99, 0x8f, 0x83, 0x7a, 0x77, 0x78, 0x78, 0x78, 0x74, 0x75, 0x78, 0x7b, 0x7f, 0x83, 0x86, 0x88, 0x8d, 0x8b, 0x89, 0x88, 0x8a, 0x90, 0x95, 0x99, 0x95, 0x94, 0x91, 0x8c, 0x86, 0x7f, 0x7a, 0x77, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x82, 0x80, 0x7f, 0x81, 0x85, 0x86, 0x85, 0x82, 0x7c, 0x81, 0x85, 0x87, 0x86, 0x84, 0x85, 0x87, 0x86, 0x84, 0x82, 0x80, 0x81, 0x83, 0x86, 0x88, 0x87, 0x84, 0x7f, 0x7c, 0x7c, 0x80, 0x85, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x87, 0x80, 0x7b, 0x7f, 0x87, 0x8a, 0x83, 0x7b, 0x73, 0x71, 0x70, 0x71, 0x75, 0x7b, 0x82, 0x86, 0x7e, 0x7c, 0x78, 0x75, 0x74, 0x75, 0x76, 0x78, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x74, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x6f, 0x6c, 0x68, 0x67, 0x69, 0x6c, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x6e, 0x70, 0x72, 0x71, 0x6e, 0x6e, 0x70, 0x73, 0x74, 0x75, 0x76, 0x77, 0x76, 0x74, 0x72, 0x71, 0x73, 0x75, 0x77, 0x78, 0x78, 0x76, 0x74, 0x72, 0x73, 0x72, 0x72, 0x71, 0x72, 0x73, 0x74, 0x75, 0x73, 0x72, 0x6f, 0x6d, 0x6d, 0x6e, 0x70, 0x72, 0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x71, 0x6d, 0x68, 0x68, 0x6b, 0x6e, 0x6f, 0x6f, 0x6d, 0x70, 0x72, 0x72, 0x71, 0x71, 0x74, 0x77, 0x72, 0x74, 0x77, 0x79, 0x79, 0x78, 0x76, 0x75, 0x75, 0x80, 0x8e, 0x99, 0xa1, 0xa8, 0xaf, 0xb6, 0xb3, 0xb3, 0xae, 0xa3, 0x97, 0x90, 0x93, 0x97, 0x95, 0x8e, 0x84, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x7a, 0x7e, 0x84, 0x8a, 0x8d, 0x91, 0x8e, 0x8a, 0x89, 0x8b, 0x90, 0x96, 0x98, 0x95, 0x92, 0x8e, 0x88, 0x82, 0x7d, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x80, 0x7e, 0x7e, 0x81, 0x85, 0x87, 0x86, 0x83, 0x83, 0x85, 0x86, 0x84, 0x80, 0x7e, 0x7f, 0x81, 0x82, 0x80, 0x7d, 0x7b, 0x7b, 0x7d, 0x7f, 0x81, 0x84, 0x82, 0x7d, 0x7b, 0x7b, 0x7f, 0x84, 0x87, 0x89, 0x89, 0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x87, 0x81, 0x7c, 0x7f, 0x86, 0x88, 0x82, 0x7a, 0x76, 0x74, 0x71, 0x70, 0x71, 0x74, 0x79, 0x7c, 0x7e, 0x7c, 0x79, 0x76, 0x75, 0x76, 0x77, 0x78, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x73, 0x75, 0x75, 0x72, 0x6e, 0x6c, 0x6e, 0x70, 0x72, 0x71, 0x6e, 0x6b, 0x68, 0x65, 0x62, 0x61, 0x6a, 0x6a, 0x69, 0x66, 0x63, 0x65, 0x6b, 0x6f, 0x70, 0x73, 0x76, 0x78, 0x76, 0x72, 0x6d, 0x6a, 0x74, 0x75, 0x76, 0x77, 0x76, 0x74, 0x72, 0x70, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x76, 0x77, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x72, 0x6c, 0x68, 0x64, 0x65, 0x69, 0x6d, 0x6f, 0x6f, 0x69, 0x6b, 0x6e, 0x6d, 0x6b, 0x6b, 0x6d, 0x70, 0x6e, 0x70, 0x73, 0x75, 0x77, 0x77, 0x77, 0x76, 0x72, 0x80, 0x8f, 0x96, 0x96, 0x99, 0xa3, 0xad, 0xb4, 0xb2, 0xab, 0x9e, 0x91, 0x8c, 0x8f, 0x95, 0x92, 0x8e, 0x88, 0x86, 0x85, 0x82, 0x7e, 0x7a, 0x78, 0x77, 0x76, 0x77, 0x7d, 0x85, 0x8e, 0x94, 0x97, 0x92, 0x8c, 0x8a, 0x8d, 0x92, 0x95, 0x97, 0x93, 0x8f, 0x89, 0x82, 0x7c, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7d, 0x7c, 0x7c, 0x80, 0x85, 0x88, 0x86, 0x84, 0x88, 0x88, 0x85, 0x7f, 0x79, 0x76, 0x78, 0x7b, 0x7d, 0x7b, 0x77, 0x74, 0x73, 0x74, 0x77, 0x78, 0x80, 0x7e, 0x7b, 0x79, 0x7a, 0x7e, 0x82, 0x85, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x86, 0x81, 0x7d, 0x7f, 0x84, 0x85, 0x7f, 0x79, 0x79, 0x76, 0x73, 0x6f, 0x6e, 0x6f, 0x70, 0x72, 0x7e, 0x7d, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x76, 0x77, 0x74, 0x70, 0x6e, 0x6f, 0x71, 0x70, 0x6f, 0x6e, 0x6c, 0x6a, 0x67, 0x64, 0x63, 0x68, 0x67, 0x64, 0x5f, 0x5d, 0x60, 0x68, 0x6f, 0x70, 0x73, 0x78, 0x7a, 0x79, 0x73, 0x6c, 0x67, 0x70, 0x71, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6d, 0x70, 0x73, 0x75, 0x75, 0x75, 0x74, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x72, 0x71, 0x69, 0x65, 0x61, 0x62, 0x66, 0x6b, 0x6d, 0x6d, 0x65, 0x68, 0x6a, 0x6a, 0x67, 0x65, 0x67, 0x69, 0x69, 0x6b, 0x6e, 0x71, 0x73, 0x74, 0x75, 0x75, 0x71, 0x7f, 0x8d, 0x8f, 0x89, 0x88, 0x92, 0x9e, 0xb5, 0xb2, 0xa9, 0x9a, 0x8d, 0x89, 0x8e, 0x95, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8b, 0x84, 0x7e, 0x7a, 0x78, 0x75, 0x75, 0x7c, 0x87, 0x93, 0x9a, 0x9d, 0x95, 0x8c, 0x8a, 0x8e, 0x93, 0x95, 0x94, 0x90, 0x8b, 0x83, 0x7c, 0x78, 0x77, 0x79, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x7b, 0x7f, 0x84, 0x87, 0x85, 0x82, 0x85, 0x84, 0x80, 0x79, 0x74, 0x73, 0x77, 0x7b, 0x7d, 0x7a, 0x76, 0x72, 0x70, 0x70, 0x72, 0x73, 0x7b, 0x7a, 0x78, 0x77, 0x78, 0x7b, 0x7f, 0x81, 0x83, 0x84, 0x86, 0x87, 0x89, 0x8b, 0x8d, 0x8d, 0x84, 0x81, 0x7e, 0x7f, 0x81, 0x81, 0x7c, 0x77, 0x78, 0x76, 0x74, 0x71, 0x70, 0x70, 0x71, 0x71, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x75, 0x76, 0x74, 0x70, 0x6d, 0x6e, 0x70, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x63, 0x5f, 0x5d, 0x61, 0x69, 0x71, 0x72, 0x75, 0x7a, 0x7c, 0x7b, 0x75, 0x6e, 0x69, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x69, 0x72, 0x70, 0x6c, 0x68, 0x64, 0x61, 0x60, 0x5f, 0x66, 0x68, 0x6c, 0x70, 0x72, 0x73, 0x73, 0x72, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x72, 0x71, 0x69, 0x65, 0x61, 0x61, 0x65, 0x69, 0x6b, 0x6b, 0x63, 0x66, 0x69, 0x68, 0x65, 0x62, 0x62, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x70, 0x70, 0x6c, 0x7a, 0x88, 0x8e, 0x8d, 0x91, 0x9c, 0xa7, 0xb5, 0xb1, 0xa6, 0x96, 0x89, 0x87, 0x90, 0x99, 0x96, 0x96, 0x96, 0x98, 0x97, 0x91, 0x88, 0x81, 0x7b, 0x78, 0x74, 0x75, 0x7c, 0x88, 0x95, 0x9d, 0xa1, 0x96, 0x8a, 0x88, 0x8d, 0x93, 0x94, 0x91, 0x8b, 0x86, 0x7f, 0x79, 0x75, 0x76, 0x78, 0x7a, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7e, 0x82, 0x83, 0x81, 0x7d, 0x7b, 0x7b, 0x79, 0x75, 0x72, 0x74, 0x7a, 0x7f, 0x7f, 0x7c, 0x78, 0x74, 0x71, 0x71, 0x72, 0x73, 0x77, 0x76, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7e, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x88, 0x89, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x79, 0x76, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x71, 0x74, 0x76, 0x74, 0x70, 0x6d, 0x6d, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x68, 0x67, 0x65, 0x61, 0x60, 0x63, 0x6b, 0x71, 0x73, 0x76, 0x79, 0x7b, 0x79, 0x75, 0x70, 0x6d, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x72, 0x70, 0x6b, 0x66, 0x61, 0x5e, 0x5b, 0x5a, 0x66, 0x67, 0x69, 0x6c, 0x6e, 0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x72, 0x6d, 0x68, 0x63, 0x62, 0x65, 0x68, 0x69, 0x68, 0x64, 0x68, 0x6b, 0x6a, 0x66, 0x62, 0x61, 0x62, 0x65, 0x65, 0x66, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x66, 0x6f, 0x7e, 0x8c, 0x99, 0xa6, 0xb3, 0xbb, 0xb0, 0xaa, 0x9e, 0x8e, 0x83, 0x84, 0x90, 0x9b, 0x9a, 0x99, 0x99, 0x99, 0x97, 0x91, 0x87, 0x7f, 0x79, 0x77, 0x75, 0x76, 0x7d, 0x88, 0x94, 0x9b, 0xa2, 0x95, 0x87, 0x85, 0x8c, 0x93, 0x92, 0x8e, 0x85, 0x82, 0x7d, 0x78, 0x76, 0x76, 0x77, 0x78, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7c, 0x7f, 0x7f, 0x7a, 0x76, 0x71, 0x73, 0x74, 0x74, 0x73, 0x76, 0x7c, 0x81, 0x82, 0x7f, 0x7a, 0x76, 0x74, 0x74, 0x75, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x77, 0x77, 0x79, 0x7b, 0x7d, 0x7f, 0x80, 0x81, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x6f, 0x71, 0x74, 0x77, 0x7a, 0x7c, 0x7e, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x72, 0x75, 0x77, 0x76, 0x71, 0x6e, 0x6e, 0x6f, 0x71, 0x71, 0x71, 0x6f, 0x6c, 0x68, 0x63, 0x60, 0x65, 0x66, 0x66, 0x64, 0x62, 0x65, 0x6a, 0x6f, 0x72, 0x73, 0x74, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x73, 0x71, 0x6e, 0x6a, 0x67, 0x64, 0x63, 0x62, 0x6a, 0x69, 0x69, 0x69, 0x6c, 0x70, 0x74, 0x76, 0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x6d, 0x67, 0x64, 0x65, 0x67, 0x67, 0x66, 0x67, 0x6b, 0x6e, 0x6c, 0x68, 0x64, 0x62, 0x62, 0x65, 0x64, 0x64, 0x63, 0x63, 0x62, 0x63, 0x63, 0x63, 0x65, 0x6e, 0x81, 0x97, 0xa8, 0xb0, 0xb2, 0xa7, 0xa1, 0x94, 0x85, 0x7b, 0x7f, 0x8d, 0x9a, 0x9b, 0x99, 0x96, 0x94, 0x91, 0x8a, 0x81, 0x79, 0x77, 0x76, 0x76, 0x79, 0x7f, 0x89, 0x92, 0x98, 0xa1, 0x92, 0x83, 0x81, 0x8a, 0x92, 0x91, 0x8c, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x7a, 0x79, 0x79, 0x7b, 0x7c, 0x7a, 0x74, 0x6f, 0x6c, 0x70, 0x74, 0x75, 0x75, 0x76, 0x79, 0x7d, 0x82, 0x7f, 0x7b, 0x77, 0x75, 0x75, 0x76, 0x77, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x74, 0x75, 0x77, 0x78, 0x78, 0x74, 0x77, 0x79, 0x78, 0x76, 0x74, 0x74, 0x75, 0x6e, 0x70, 0x74, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x79, 0x78, 0x74, 0x70, 0x70, 0x71, 0x74, 0x74, 0x72, 0x6e, 0x68, 0x61, 0x5b, 0x57, 0x62, 0x64, 0x66, 0x65, 0x64, 0x65, 0x69, 0x6d, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6c, 0x6a, 0x69, 0x6c, 0x71, 0x76, 0x7a, 0x73, 0x73, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x70, 0x69, 0x66, 0x66, 0x66, 0x66, 0x64, 0x69, 0x6d, 0x70, 0x6f, 0x6a, 0x65, 0x63, 0x63, 0x65, 0x64, 0x62, 0x61, 0x5f, 0x5f, 0x5e, 0x5e, 0x64, 0x60, 0x62, 0x72, 0x89, 0x98, 0x9a, 0x95, 0xa0, 0x9a, 0x8d, 0x7e, 0x75, 0x7a, 0x8b, 0x99, 0x9b, 0x97, 0x93, 0x8f, 0x8b, 0x84, 0x7b, 0x74, 0x75, 0x75, 0x77, 0x7a, 0x80, 0x89, 0x90, 0x95, 0xa0, 0x90, 0x81, 0x7f, 0x89, 0x91, 0x90, 0x8a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x77, 0x70, 0x6a, 0x6c, 0x71, 0x76, 0x77, 0x76, 0x75, 0x76, 0x78, 0x81, 0x7e, 0x7a, 0x76, 0x74, 0x75, 0x76, 0x78, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x71, 0x74, 0x77, 0x77, 0x74, 0x72, 0x73, 0x75, 0x6e, 0x70, 0x74, 0x77, 0x79, 0x79, 0x78, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x75, 0x77, 0x79, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x7b, 0x7a, 0x78, 0x72, 0x6d, 0x6b, 0x6d, 0x71, 0x71, 0x73, 0x72, 0x6e, 0x67, 0x63, 0x62, 0x63, 0x64, 0x65, 0x66, 0x68, 0x68, 0x68, 0x67, 0x67, 0x6c, 0x70, 0x74, 0x75, 0x73, 0x72, 0x74, 0x76, 0x6c, 0x6c, 0x6b, 0x6c, 0x6c, 0x6e, 0x70, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x70, 0x73, 0x75, 0x6f, 0x6d, 0x6d, 0x6f, 0x74, 0x77, 0x76, 0x74, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x6f, 0x6e, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x63, 0x6f, 0x6d, 0x6a, 0x67, 0x65, 0x64, 0x64, 0x64, 0x65, 0x66, 0x66, 0x66, 0x64, 0x62, 0x5f, 0x5d, 0x5d, 0x5d, 0x5f, 0x62, 0x66, 0x6a, 0x6e, 0x70, 0x76, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7d, 0x7f, 0x7a, 0x7b, 0x7d, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a, 0x76, 0x76, 0x77, 0x79, 0x7c, 0x7f, 0x81, 0x82, 0x90, 0x8e, 0x8b, 0x8a, 0x8b, 0x8a, 0x86, 0x82, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x73, 0x73, 0x72, 0x73, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x78, 0x76, 0x75, 0x70, 0x6f, 0x70, 0x71, 0x74, 0x78, 0x7c, 0x7e, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x78, 0x76, 0x72, 0x6e, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x74, 0x73, 0x72, 0x71, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x79, 0x77, 0x72, 0x6c, 0x69, 0x6b, 0x6e, 0x70, 0x72, 0x71, 0x6d, 0x67, 0x63, 0x63, 0x64, 0x63, 0x64, 0x65, 0x66, 0x67, 0x67, 0x66, 0x66, 0x6d, 0x71, 0x75, 0x76, 0x74, 0x73, 0x74, 0x76, 0x74, 0x73, 0x71, 0x6f, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6c, 0x6b, 0x6c, 0x6e, 0x71, 0x72, 0x6f, 0x6d, 0x6d, 0x70, 0x74, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x6f, 0x6d, 0x6a, 0x68, 0x66, 0x65, 0x64, 0x65, 0x67, 0x68, 0x68, 0x68, 0x67, 0x65, 0x62, 0x61, 0x62, 0x63, 0x63, 0x64, 0x66, 0x69, 0x6b, 0x6c, 0x69, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x6f, 0x71, 0x6d, 0x6f, 0x72, 0x75, 0x76, 0x77, 0x76, 0x76, 0x73, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x8b, 0x88, 0x84, 0x83, 0x85, 0x86, 0x84, 0x82, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x72, 0x74, 0x75, 0x76, 0x77, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x73, 0x72, 0x72, 0x73, 0x75, 0x79, 0x7c, 0x7e, 0x81, 0x80, 0x7d, 0x7b, 0x7a, 0x7a, 0x7c, 0x7d, 0x77, 0x74, 0x71, 0x6e, 0x6c, 0x6c, 0x6d, 0x6e, 0x68, 0x69, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x70, 0x71, 0x72, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x76, 0x70, 0x6a, 0x67, 0x69, 0x6b, 0x6f, 0x70, 0x70, 0x6d, 0x67, 0x64, 0x64, 0x65, 0x64, 0x65, 0x66, 0x67, 0x67, 0x67, 0x66, 0x65, 0x6e, 0x72, 0x76, 0x77, 0x75, 0x73, 0x74, 0x75, 0x7b, 0x79, 0x75, 0x71, 0x6e, 0x6b, 0x69, 0x69, 0x6c, 0x6b, 0x69, 0x69, 0x69, 0x6b, 0x6e, 0x6f, 0x6f, 0x6d, 0x6d, 0x70, 0x75, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6e, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x65, 0x65, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x65, 0x65, 0x68, 0x67, 0x67, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x65, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6b, 0x6c, 0x63, 0x65, 0x68, 0x6b, 0x6e, 0x70, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x83, 0x7e, 0x7a, 0x79, 0x7c, 0x80, 0x81, 0x81, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x75, 0x74, 0x74, 0x76, 0x78, 0x7b, 0x7d, 0x83, 0x81, 0x7e, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x70, 0x6a, 0x66, 0x67, 0x69, 0x6d, 0x6f, 0x70, 0x6d, 0x68, 0x66, 0x66, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x6e, 0x73, 0x78, 0x79, 0x76, 0x73, 0x73, 0x74, 0x78, 0x76, 0x73, 0x6f, 0x6c, 0x6a, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x69, 0x6b, 0x6c, 0x6f, 0x6d, 0x6d, 0x70, 0x75, 0x78, 0x78, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6c, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66, 0x67, 0x68, 0x67, 0x67, 0x67, 0x66, 0x65, 0x65, 0x68, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6b, 0x6b, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6f, 0x71, 0x72, 0x74, 0x74, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x79, 0x74, 0x6f, 0x6f, 0x74, 0x7a, 0x7e, 0x7f, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x74, 0x74, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x77, 0x76, 0x75, 0x74, 0x74, 0x76, 0x78, 0x7a, 0x81, 0x7f, 0x7b, 0x78, 0x75, 0x74, 0x75, 0x75, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x72, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x74, 0x75, 0x74, 0x70, 0x6a, 0x67, 0x68, 0x6a, 0x6c, 0x6f, 0x70, 0x6e, 0x6a, 0x68, 0x6a, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6f, 0x73, 0x78, 0x79, 0x76, 0x73, 0x71, 0x72, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x66, 0x66, 0x66, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6d, 0x6c, 0x6c, 0x6f, 0x74, 0x78, 0x78, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66, 0x66, 0x65, 0x64, 0x63, 0x62, 0x62, 0x62, 0x64, 0x64, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x76, 0x76, 0x76, 0x75, 0x72, 0x6f, 0x6c, 0x6b, 0x70, 0x6c, 0x69, 0x6b, 0x71, 0x78, 0x7c, 0x7d, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x74, 0x73, 0x73, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x72, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x77, 0x76, 0x74, 0x73, 0x73, 0x74, 0x76, 0x77, 0x7e, 0x7b, 0x78, 0x74, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x73, 0x74, 0x75, 0x72, 0x6d, 0x6a, 0x6b, 0x6c, 0x6c, 0x6f, 0x71, 0x70, 0x6d, 0x6c, 0x6d, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x73, 0x78, 0x79, 0x76, 0x71, 0x6f, 0x6f, 0x69, 0x69, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x66, 0x66, 0x66, 0x67, 0x67, 0x68, 0x69, 0x69, 0x6c, 0x6a, 0x6a, 0x6e, 0x73, 0x77, 0x77, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x69, 0x6a, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66, 0x64, 0x62, 0x61, 0x60, 0x60, 0x60, 0x63, 0x63, 0x63, 0x64, 0x65, 0x68, 0x6a, 0x6b, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x70, 0x6f, 0x6c, 0x6b, 0x6c, 0x6e, 0x71, 0x73, 0x77, 0x77, 0x77, 0x76, 0x73, 0x6f, 0x6b, 0x68, 0x69, 0x67, 0x67, 0x6b, 0x72, 0x78, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x73, 0x72, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x76, 0x78, 0x7b, 0x7c, 0x79, 0x77, 0x75, 0x74, 0x74, 0x76, 0x78, 0x79, 0x7c, 0x7a, 0x77, 0x73, 0x71, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x77, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x74, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7f, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x74, 0x74, 0x72, 0x74, 0x76, 0x74, 0x70, 0x6d, 0x6e, 0x70, 0x6d, 0x6f, 0x72, 0x71, 0x6f, 0x6e, 0x71, 0x73, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x6d, 0x72, 0x78, 0x78, 0x75, 0x70, 0x6d, 0x6c, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69, 0x66, 0x66, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x68, 0x68, 0x6c, 0x72, 0x76, 0x76, 0x74, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x70, 0x6f, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x69, 0x69, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x6c, 0x6a, 0x67, 0x64, 0x62, 0x61, 0x61, 0x61, 0x67, 0x66, 0x65, 0x63, 0x62, 0x61, 0x61, 0x62, 0x5d, 0x5e, 0x5f, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x62, 0x60, 0x5f, 0x5f, 0x62, 0x67, 0x6d, 0x70, 0x75, 0x75, 0x75, 0x74, 0x71, 0x6c, 0x68, 0x65, 0x65, 0x65, 0x68, 0x6f, 0x76, 0x7b, 0x7a, 0x79, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x73, 0x76, 0x79, 0x7b, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7c, 0x79, 0x76, 0x74, 0x74, 0x74, 0x75, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x72, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x7a, 0x7c, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7f, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x73, 0x71, 0x74, 0x76, 0x75, 0x72, 0x70, 0x71, 0x73, 0x6d, 0x70, 0x72, 0x72, 0x70, 0x70, 0x73, 0x76, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x6c, 0x72, 0x77, 0x78, 0x74, 0x6f, 0x6c, 0x6b, 0x73, 0x71, 0x6f, 0x6c, 0x6a, 0x68, 0x68, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x67, 0x67, 0x6b, 0x71, 0x75, 0x75, 0x74, 0x75, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66, 0x66, 0x66, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x69, 0x68, 0x70, 0x6e, 0x6a, 0x67, 0x64, 0x63, 0x62, 0x62, 0x6d, 0x6b, 0x67, 0x63, 0x5f, 0x5c, 0x5a, 0x59, 0x58, 0x59, 0x5a, 0x5b, 0x5b, 0x59, 0x57, 0x56, 0x52, 0x51, 0x51, 0x53, 0x59, 0x61, 0x69, 0x6e, 0x72, 0x72, 0x73, 0x71, 0x6e, 0x69, 0x65, 0x62, 0x63, 0x65, 0x6a, 0x72, 0x7a, 0x7d, 0x7a, 0x77, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x72, 0x75, 0x77, 0x79, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x81, 0x7f, 0x7c, 0x79, 0x78, 0x78, 0x78, 0x79, 0x76, 0x76, 0x77, 0x77, 0x78, 0x77, 0x77, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x74, 0x73, 0x71, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7e, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7e, 0x7d, 0x7a, 0x79, 0x79, 0x7b, 0x7e, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x74, 0x73, 0x72, 0x74, 0x74, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x68, 0x71, 0x72, 0x73, 0x73, 0x71, 0x6d, 0x69, 0x66, 0x70, 0x6e, 0x6b, 0x68, 0x66, 0x65, 0x66, 0x66, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6c, 0x6f, 0x70, 0x69, 0x6b, 0x6d, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x71, 0x70, 0x71, 0x74, 0x74, 0x71, 0x6e, 0x61, 0x61, 0x61, 0x62, 0x64, 0x67, 0x6a, 0x6c, 0x67, 0x6a, 0x6b, 0x67, 0x62, 0x63, 0x6b, 0x72, 0x68, 0x6a, 0x6c, 0x69, 0x65, 0x62, 0x63, 0x65, 0x66, 0x66, 0x66, 0x66, 0x64, 0x62, 0x60, 0x5e, 0x59, 0x5a, 0x5d, 0x5e, 0x5e, 0x5d, 0x5a, 0x59, 0x52, 0x4f, 0x4c, 0x4b, 0x4f, 0x58, 0x62, 0x68, 0x74, 0x76, 0x77, 0x72, 0x68, 0x5e, 0x58, 0x55, 0x5f, 0x60, 0x64, 0x6c, 0x75, 0x7c, 0x7d, 0x7c, 0x78, 0x77, 0x75, 0x73, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x72, 0x75, 0x77, 0x78, 0x7d, 0x7f, 0x80, 0x7f, 0x7d, 0x7d, 0x81, 0x84, 0x88, 0x83, 0x7c, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x78, 0x7e, 0x82, 0x81, 0x7b, 0x74, 0x6f, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x73, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x74, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x72, 0x73, 0x75, 0x75, 0x73, 0x6f, 0x6b, 0x68, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x66, 0x67, 0x67, 0x69, 0x68, 0x67, 0x66, 0x67, 0x69, 0x6b, 0x6d, 0x6a, 0x6b, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x71, 0x70, 0x72, 0x74, 0x74, 0x71, 0x6e, 0x67, 0x66, 0x64, 0x63, 0x63, 0x64, 0x65, 0x66, 0x68, 0x6a, 0x6a, 0x67, 0x62, 0x63, 0x6a, 0x70, 0x6e, 0x70, 0x70, 0x6d, 0x67, 0x63, 0x63, 0x64, 0x65, 0x64, 0x62, 0x60, 0x5f, 0x5e, 0x5d, 0x5d, 0x5f, 0x60, 0x61, 0x62, 0x60, 0x5d, 0x5a, 0x58, 0x54, 0x51, 0x4e, 0x4e, 0x52, 0x5a, 0x64, 0x6a, 0x71, 0x74, 0x74, 0x70, 0x67, 0x5e, 0x58, 0x56, 0x5d, 0x5e, 0x62, 0x6a, 0x73, 0x78, 0x79, 0x78, 0x78, 0x77, 0x75, 0x73, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x72, 0x74, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x80, 0x84, 0x87, 0x81, 0x7b, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x83, 0x89, 0x90, 0x95, 0x94, 0x8e, 0x85, 0x7f, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x73, 0x73, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x73, 0x72, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6a, 0x68, 0x66, 0x69, 0x6a, 0x6b, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x73, 0x74, 0x76, 0x76, 0x74, 0x71, 0x6d, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6a, 0x68, 0x66, 0x65, 0x65, 0x67, 0x68, 0x6a, 0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x74, 0x74, 0x72, 0x71, 0x73, 0x75, 0x75, 0x72, 0x6e, 0x6b, 0x6a, 0x67, 0x64, 0x62, 0x61, 0x60, 0x60, 0x6a, 0x6b, 0x6a, 0x66, 0x63, 0x64, 0x68, 0x6d, 0x70, 0x72, 0x73, 0x70, 0x6a, 0x65, 0x63, 0x64, 0x64, 0x62, 0x5e, 0x5a, 0x59, 0x5a, 0x5c, 0x5e, 0x69, 0x69, 0x68, 0x66, 0x63, 0x5e, 0x5a, 0x57, 0x58, 0x55, 0x53, 0x53, 0x57, 0x5e, 0x67, 0x6c, 0x6f, 0x72, 0x73, 0x6f, 0x67, 0x5f, 0x5b, 0x59, 0x5b, 0x5c, 0x60, 0x68, 0x71, 0x76, 0x76, 0x74, 0x77, 0x76, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x75, 0x77, 0x75, 0x78, 0x7b, 0x7b, 0x7a, 0x7c, 0x81, 0x85, 0x85, 0x80, 0x7a, 0x77, 0x78, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x8a, 0x91, 0x9a, 0xa0, 0x9f, 0x98, 0x8e, 0x87, 0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x81, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7b, 0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6b, 0x69, 0x67, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x72, 0x74, 0x74, 0x73, 0x70, 0x6c, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x6d, 0x6c, 0x69, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6d, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x75, 0x73, 0x72, 0x73, 0x75, 0x75, 0x72, 0x6e, 0x69, 0x68, 0x67, 0x65, 0x64, 0x62, 0x62, 0x61, 0x6b, 0x6b, 0x69, 0x66, 0x64, 0x65, 0x67, 0x69, 0x6a, 0x6d, 0x6f, 0x6e, 0x6a, 0x67, 0x66, 0x67, 0x67, 0x63, 0x5d, 0x59, 0x58, 0x5a, 0x5e, 0x61, 0x70, 0x6f, 0x6d, 0x6a, 0x65, 0x60, 0x5b, 0x58, 0x5b, 0x5a, 0x58, 0x59, 0x5c, 0x63, 0x6a, 0x6f, 0x70, 0x73, 0x74, 0x70, 0x6a, 0x63, 0x60, 0x60, 0x5d, 0x5f, 0x63, 0x6b, 0x72, 0x77, 0x76, 0x73, 0x76, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x75, 0x75, 0x77, 0x7a, 0x7b, 0x7b, 0x7d, 0x82, 0x86, 0x85, 0x80, 0x7a, 0x77, 0x78, 0x79, 0x79, 0x78, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7f, 0x86, 0x90, 0x97, 0x96, 0x8f, 0x84, 0x7d, 0x71, 0x72, 0x72, 0x73, 0x75, 0x76, 0x76, 0x77, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x79, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x76, 0x74, 0x73, 0x72, 0x72, 0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6d, 0x6c, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x71, 0x72, 0x71, 0x6e, 0x6b, 0x69, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x76, 0x76, 0x77, 0x72, 0x70, 0x6d, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x76, 0x73, 0x72, 0x73, 0x75, 0x74, 0x71, 0x6d, 0x63, 0x64, 0x65, 0x66, 0x67, 0x67, 0x67, 0x67, 0x6c, 0x6a, 0x67, 0x65, 0x66, 0x67, 0x67, 0x67, 0x5f, 0x64, 0x69, 0x6b, 0x69, 0x68, 0x69, 0x6b, 0x6b, 0x67, 0x61, 0x5d, 0x5c, 0x5f, 0x63, 0x66, 0x72, 0x71, 0x6e, 0x6b, 0x66, 0x62, 0x5e, 0x5c, 0x5f, 0x5e, 0x5d, 0x5e, 0x62, 0x68, 0x6d, 0x71, 0x73, 0x76, 0x77, 0x74, 0x6d, 0x68, 0x66, 0x66, 0x62, 0x64, 0x68, 0x6f, 0x77, 0x7a, 0x78, 0x75, 0x76, 0x75, 0x73, 0x71, 0x70, 0x70, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x76, 0x79, 0x7c, 0x7c, 0x7c, 0x7d, 0x82, 0x86, 0x84, 0x7e, 0x78, 0x76, 0x77, 0x79, 0x79, 0x77, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x74, 0x7a, 0x83, 0x8a, 0x89, 0x83, 0x79, 0x73, 0x71, 0x72, 0x72, 0x73, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7f, 0x81, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x72, 0x73, 0x74, 0x74, 0x76, 0x76, 0x77, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x70, 0x72, 0x71, 0x6f, 0x6c, 0x6a, 0x71, 0x72, 0x74, 0x75, 0x76, 0x77, 0x76, 0x76, 0x73, 0x72, 0x6f, 0x6d, 0x6d, 0x6d, 0x6f, 0x70, 0x72, 0x72, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x73, 0x71, 0x72, 0x74, 0x73, 0x6f, 0x6c, 0x61, 0x62, 0x65, 0x67, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x68, 0x64, 0x64, 0x67, 0x69, 0x68, 0x65, 0x5b, 0x60, 0x67, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6c, 0x69, 0x65, 0x63, 0x62, 0x63, 0x66, 0x68, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x62, 0x61, 0x61, 0x61, 0x61, 0x63, 0x66, 0x6b, 0x70, 0x72, 0x75, 0x77, 0x78, 0x74, 0x6f, 0x6a, 0x68, 0x69, 0x66, 0x67, 0x6c, 0x73, 0x7a, 0x7c, 0x79, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x77, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x7d, 0x80, 0x7e, 0x79, 0x73, 0x71, 0x72, 0x74, 0x74, 0x73, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x74, 0x79, 0x7f, 0x83, 0x83, 0x7f, 0x78, 0x74, 0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x72, 0x72, 0x71, 0x72, 0x74, 0x77, 0x7a, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x73, 0x72, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6e, 0x70, 0x73, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x74, 0x72, 0x70, 0x71, 0x72, 0x72, 0x6e, 0x6a, 0x64, 0x65, 0x68, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x66, 0x62, 0x64, 0x69, 0x6b, 0x69, 0x65, 0x60, 0x65, 0x6b, 0x6d, 0x6b, 0x69, 0x68, 0x69, 0x69, 0x68, 0x67, 0x66, 0x66, 0x66, 0x66, 0x66, 0x65, 0x65, 0x65, 0x65, 0x65, 0x66, 0x67, 0x67, 0x62, 0x63, 0x64, 0x66, 0x69, 0x6d, 0x71, 0x73, 0x74, 0x76, 0x76, 0x72, 0x6c, 0x67, 0x66, 0x67, 0x66, 0x68, 0x6c, 0x74, 0x7a, 0x7b, 0x77, 0x73, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x76, 0x78, 0x78, 0x76, 0x73, 0x72, 0x74, 0x77, 0x75, 0x70, 0x6a, 0x68, 0x6a, 0x6c, 0x6c, 0x6b, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x76, 0x78, 0x7b, 0x7d, 0x7d, 0x7b, 0x78, 0x76, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x6d, 0x6c, 0x6b, 0x6c, 0x6e, 0x71, 0x75, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x72, 0x73, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x71, 0x73, 0x76, 0x78, 0x78, 0x76, 0x73, 0x71, 0x70, 0x70, 0x71, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f, 0x74, 0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x74, 0x71, 0x6f, 0x70, 0x71, 0x71, 0x6d, 0x69, 0x68, 0x69, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x68, 0x69, 0x64, 0x61, 0x63, 0x69, 0x6c, 0x69, 0x65, 0x68, 0x6c, 0x71, 0x71, 0x6d, 0x68, 0x66, 0x66, 0x66, 0x67, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x5f, 0x60, 0x61, 0x62, 0x65, 0x67, 0x69, 0x6b, 0x63, 0x64, 0x65, 0x67, 0x6b, 0x6e, 0x71, 0x73, 0x72, 0x73, 0x73, 0x6f, 0x69, 0x64, 0x64, 0x64, 0x65, 0x67, 0x6b, 0x72, 0x78, 0x79, 0x75, 0x71, 0x74, 0x73, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x75, 0x72, 0x6e, 0x6c, 0x6d, 0x70, 0x6e, 0x69, 0x64, 0x62, 0x63, 0x65, 0x65, 0x64, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x69, 0x68, 0x67, 0x68, 0x6a, 0x6e, 0x72, 0x74, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x77, 0x75, 0x76, 0x77, 0x78, 0x78, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x73, 0x76, 0x78, 0x78, 0x75, 0x71, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x71, 0x6f, 0x6c, 0x69, 0x68, 0x69, 0x6b, 0x6c, 0x78, 0x77, 0x76, 0x75, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x63, 0x64, 0x66, 0x68, 0x69, 0x69, 0x68, 0x67, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x73, 0x72, 0x6c, 0x6a, 0x66, 0x64, 0x64, 0x66, 0x69, 0x6b, 0x64, 0x64, 0x64, 0x64, 0x65, 0x66, 0x68, 0x69, 0x66, 0x63, 0x5f, 0x5e, 0x61, 0x68, 0x6f, 0x74, 0x73, 0x73, 0x72, 0x70, 0x6d, 0x69, 0x65, 0x63, 0x60, 0x65, 0x6c, 0x73, 0x76, 0x76, 0x73, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x79, 0x7b, 0x7a, 0x76, 0x6f, 0x6b, 0x69, 0x6a, 0x67, 0x66, 0x64, 0x62, 0x61, 0x61, 0x62, 0x63, 0x64, 0x64, 0x64, 0x64, 0x63, 0x63, 0x63, 0x63, 0x63, 0x64, 0x64, 0x66, 0x6a, 0x6d, 0x71, 0x73, 0x72, 0x74, 0x76, 0x74, 0x71, 0x6f, 0x71, 0x73, 0x69, 0x6a, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x75, 0x79, 0x76, 0x73, 0x72, 0x73, 0x76, 0x7b, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x78, 0x75, 0x73, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x72, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x73, 0x76, 0x78, 0x78, 0x75, 0x72, 0x6f, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x70, 0x6f, 0x6c, 0x6a, 0x6a, 0x6b, 0x6d, 0x6e, 0x77, 0x76, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x64, 0x66, 0x67, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6b, 0x67, 0x64, 0x64, 0x66, 0x68, 0x6a, 0x65, 0x65, 0x64, 0x64, 0x64, 0x65, 0x66, 0x67, 0x65, 0x64, 0x63, 0x63, 0x65, 0x6a, 0x70, 0x73, 0x73, 0x73, 0x72, 0x70, 0x6d, 0x69, 0x66, 0x64, 0x61, 0x66, 0x6d, 0x73, 0x76, 0x76, 0x74, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x78, 0x7a, 0x7a, 0x76, 0x70, 0x6b, 0x6a, 0x6b, 0x69, 0x68, 0x66, 0x65, 0x64, 0x65, 0x65, 0x66, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66, 0x65, 0x65, 0x66, 0x67, 0x6a, 0x6d, 0x71, 0x73, 0x74, 0x76, 0x77, 0x74, 0x70, 0x6e, 0x6f, 0x71, 0x6c, 0x6c, 0x6e, 0x70, 0x72, 0x73, 0x75, 0x75, 0x76, 0x74, 0x71, 0x6f, 0x70, 0x73, 0x78, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7c, 0x79, 0x76, 0x74, 0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x74, 0x76, 0x78, 0x78, 0x75, 0x72, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6e, 0x70, 0x71, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x67, 0x68, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x67, 0x68, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6e, 0x6c, 0x69, 0x66, 0x65, 0x66, 0x68, 0x69, 0x67, 0x66, 0x65, 0x63, 0x63, 0x63, 0x63, 0x64, 0x66, 0x66, 0x67, 0x69, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x73, 0x72, 0x70, 0x6d, 0x6a, 0x67, 0x65, 0x65, 0x68, 0x6e, 0x73, 0x76, 0x76, 0x75, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x73, 0x74, 0x76, 0x78, 0x79, 0x76, 0x71, 0x6c, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x68, 0x67, 0x68, 0x6a, 0x6d, 0x71, 0x73, 0x76, 0x78, 0x78, 0x75, 0x70, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x75, 0x75, 0x76, 0x74, 0x72, 0x6e, 0x6c, 0x6d, 0x71, 0x75, 0x78, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7b, 0x78, 0x76, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x78, 0x77, 0x77, 0x75, 0x74, 0x73, 0x72, 0x72, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x75, 0x77, 0x78, 0x77, 0x76, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x69, 0x6f, 0x6d, 0x6a, 0x67, 0x66, 0x66, 0x68, 0x69, 0x69, 0x68, 0x66, 0x63, 0x62, 0x61, 0x61, 0x61, 0x67, 0x69, 0x6c, 0x6f, 0x71, 0x71, 0x71, 0x70, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x6a, 0x6c, 0x70, 0x74, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x74, 0x77, 0x79, 0x77, 0x72, 0x6d, 0x6c, 0x6c, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6b, 0x6a, 0x68, 0x68, 0x6a, 0x6d, 0x71, 0x73, 0x78, 0x79, 0x79, 0x75, 0x70, 0x6c, 0x6c, 0x6d, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x74, 0x72, 0x6f, 0x6d, 0x6e, 0x71, 0x76, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7c, 0x79, 0x77, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x77, 0x76, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x75, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6e, 0x6d, 0x6a, 0x68, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x69, 0x66, 0x64, 0x62, 0x61, 0x60, 0x60, 0x68, 0x6b, 0x6e, 0x71, 0x73, 0x72, 0x71, 0x70, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x70, 0x72, 0x73, 0x75, 0x76, 0x75, 0x75, 0x74, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x77, 0x79, 0x77, 0x72, 0x6e, 0x6c, 0x6c, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x6b, 0x6a, 0x68, 0x67, 0x69, 0x6d, 0x71, 0x74, 0x78, 0x7a, 0x7a, 0x76, 0x71, 0x6d, 0x6d, 0x6f, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x70, 0x74, 0x79, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x77, 0x77, 0x78, 0x77, 0x76, 0x75, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x67, 0x65, 0x63, 0x62, 0x61, 0x61, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x70, 0x74, 0x73, 0x73, 0x72, 0x73, 0x73, 0x75, 0x75, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x74, 0x77, 0x7a, 0x78, 0x73, 0x6d, 0x6a, 0x6a, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x6a, 0x69, 0x66, 0x66, 0x68, 0x6c, 0x72, 0x75, 0x77, 0x79, 0x7a, 0x77, 0x73, 0x70, 0x71, 0x73, 0x77, 0x76, 0x76, 0x74, 0x73, 0x72, 0x71, 0x70, 0x72, 0x70, 0x6f, 0x6e, 0x71, 0x76, 0x7c, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78, 0x7a, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x63, 0x63, 0x63, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x73, 0x73, 0x73, 0x73, 0x75, 0x78, 0x7a, 0x7c, 0x7e, 0x7c, 0x7a, 0x77, 0x74, 0x73, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x75, 0x78, 0x7b, 0x79, 0x73, 0x6d, 0x69, 0x68, 0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x73, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x68, 0x67, 0x64, 0x64, 0x67, 0x6c, 0x72, 0x76, 0x75, 0x78, 0x7a, 0x78, 0x75, 0x74, 0x76, 0x78, 0x77, 0x76, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6f, 0x75, 0x7c, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x73, 0x72, 0x71, 0x71, 0x72, 0x74, 0x76, 0x78, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x75, 0x73, 0x71, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x67, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6c, 0x6b, 0x69, 0x67, 0x65, 0x65, 0x64, 0x65, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x6d, 0x70, 0x72, 0x73, 0x73, 0x73, 0x74, 0x77, 0x7a, 0x7e, 0x80, 0x81, 0x7f, 0x7c, 0x78, 0x74, 0x72, 0x70, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x79, 0x7c, 0x7a, 0x73, 0x6c, 0x68, 0x67, 0x6a, 0x6b, 0x6e, 0x70, 0x72, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x67, 0x65, 0x63, 0x63, 0x66, 0x6c, 0x72, 0x77, 0x74, 0x77, 0x79, 0x79, 0x77, 0x76, 0x79, 0x7c, 0x77, 0x76, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x68, 0x67, 0x67, 0x68, 0x6d, 0x74, 0x7b, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7c, 0x79, 0x78, 0x73, 0x72, 0x71, 0x70, 0x70, 0x72, 0x74, 0x75, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6a, 0x69, 0x62, 0x64, 0x66, 0x69, 0x69, 0x67, 0x65, 0x63, 0x68, 0x68, 0x67, 0x66, 0x66, 0x66, 0x67, 0x67, 0x6c, 0x6d, 0x70, 0x72, 0x73, 0x72, 0x71, 0x70, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x78, 0x7a, 0x7a, 0x75, 0x6c, 0x64, 0x5f, 0x5e, 0x63, 0x64, 0x65, 0x67, 0x69, 0x6a, 0x6b, 0x6b, 0x68, 0x68, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x70, 0x6b, 0x6c, 0x6e, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x74, 0x76, 0x77, 0x78, 0x78, 0x78, 0x76, 0x74, 0x71, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b, 0x62, 0x62, 0x65, 0x6c, 0x74, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x74, 0x75, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x66, 0x67, 0x67, 0x67, 0x67, 0x66, 0x65, 0x65, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x78, 0x79, 0x7a, 0x75, 0x6c, 0x64, 0x60, 0x5f, 0x62, 0x63, 0x64, 0x66, 0x67, 0x68, 0x69, 0x69, 0x63, 0x63, 0x65, 0x66, 0x68, 0x69, 0x6b, 0x6b, 0x6a, 0x6b, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x63, 0x63, 0x65, 0x6c, 0x74, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6b, 0x68, 0x66, 0x65, 0x65, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x6f, 0x6c, 0x6a, 0x6a, 0x6c, 0x70, 0x72, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x73, 0x74, 0x78, 0x79, 0x79, 0x74, 0x6c, 0x65, 0x61, 0x60, 0x62, 0x62, 0x63, 0x63, 0x64, 0x65, 0x66, 0x67, 0x5d, 0x5e, 0x5f, 0x61, 0x62, 0x64, 0x65, 0x66, 0x69, 0x6b, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x73, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x65, 0x65, 0x66, 0x6c, 0x74, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x71, 0x72, 0x73, 0x74, 0x75, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x73, 0x6f, 0x6a, 0x65, 0x63, 0x65, 0x68, 0x6b, 0x6a, 0x6b, 0x6e, 0x70, 0x73, 0x74, 0x75, 0x75, 0x73, 0x70, 0x6a, 0x66, 0x66, 0x69, 0x6f, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x77, 0x79, 0x79, 0x74, 0x6c, 0x65, 0x62, 0x62, 0x62, 0x62, 0x62, 0x61, 0x62, 0x63, 0x63, 0x64, 0x5c, 0x5d, 0x5e, 0x5f, 0x61, 0x63, 0x64, 0x65, 0x69, 0x6a, 0x6d, 0x70, 0x72, 0x73, 0x74, 0x74, 0x70, 0x70, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x68, 0x66, 0x67, 0x6c, 0x74, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x77, 0x72, 0x6c, 0x66, 0x65, 0x67, 0x6a, 0x6d, 0x6b, 0x6d, 0x70, 0x72, 0x74, 0x75, 0x76, 0x76, 0x73, 0x6f, 0x69, 0x64, 0x64, 0x69, 0x6f, 0x73, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x77, 0x79, 0x78, 0x73, 0x6c, 0x66, 0x64, 0x64, 0x64, 0x63, 0x62, 0x61, 0x60, 0x61, 0x62, 0x63, 0x5f, 0x60, 0x61, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6a, 0x6b, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6a, 0x68, 0x68, 0x6c, 0x73, 0x79, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x75, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x73, 0x73, 0x73, 0x74, 0x77, 0x73, 0x6e, 0x6a, 0x68, 0x69, 0x6c, 0x6e, 0x6d, 0x6e, 0x71, 0x73, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6d, 0x68, 0x65, 0x66, 0x6a, 0x70, 0x74, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x77, 0x78, 0x77, 0x73, 0x6c, 0x67, 0x66, 0x66, 0x68, 0x66, 0x64, 0x61, 0x60, 0x61, 0x62, 0x63, 0x63, 0x64, 0x65, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x72, 0x70, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x70, 0x6d, 0x6a, 0x69, 0x6d, 0x73, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x73, 0x74, 0x74, 0x75, 0x73, 0x70, 0x6d, 0x6c, 0x6c, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x70, 0x6d, 0x6c, 0x6c, 0x6b, 0x69, 0x68, 0x6a, 0x6d, 0x71, 0x73, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x74, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x77, 0x78, 0x77, 0x72, 0x6c, 0x67, 0x67, 0x68, 0x6b, 0x69, 0x66, 0x63, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x6d, 0x73, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x75, 0x76, 0x78, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x75, 0x75, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x79, 0x77, 0x75, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x71, 0x72, 0x70, 0x6d, 0x6a, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6f, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x77, 0x78, 0x77, 0x72, 0x6b, 0x67, 0x67, 0x69, 0x6d, 0x6b, 0x67, 0x64, 0x62, 0x62, 0x63, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x71, 0x73, 0x74, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6c, 0x6a, 0x6d, 0x73, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x70, 0x6f, 0x6f, 0x70, 0x73, 0x77, 0x7a, 0x7d, 0x77, 0x75, 0x71, 0x6d, 0x6b, 0x6b, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6c, 0x6f, 0x72, 0x73, 0x76, 0x76, 0x74, 0x72, 0x6e, 0x6b, 0x69, 0x67, 0x6c, 0x6d, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x77, 0x76, 0x75, 0x73, 0x71, 0x6f, 0x6e, 0x6d, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x72, 0x70, 0x6f, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x77, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x77, 0x78, 0x78, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x71, 0x70, 0x70, 0x70, 0x72, 0x76, 0x79, 0x7b, 0x77, 0x75, 0x71, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6f, 0x72, 0x74, 0x75, 0x74, 0x73, 0x71, 0x6e, 0x6c, 0x6a, 0x69, 0x6c, 0x6d, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x73, 0x71, 0x71, 0x6e, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x72, 0x71, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x77, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7c, 0x7b, 0x79, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x73, 0x72, 0x71, 0x70, 0x71, 0x74, 0x76, 0x78, 0x77, 0x75, 0x71, 0x6e, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6f, 0x72, 0x74, 0x73, 0x73, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x74, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x76, 0x76, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x74, 0x73, 0x71, 0x70, 0x70, 0x72, 0x74, 0x75, 0x76, 0x75, 0x72, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6b, 0x6d, 0x6f, 0x72, 0x74, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x70, 0x72, 0x73, 0x76, 0x75, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x72, 0x72, 0x73, 0x75, 0x76, 0x76, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7c, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x73, 0x71, 0x70, 0x6f, 0x71, 0x72, 0x74, 0x76, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x6c, 0x6b, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x70, 0x73, 0x74, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x78, 0x78, 0x77, 0x76, 0x74, 0x73, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x75, 0x76, 0x79, 0x77, 0x76, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x75, 0x74, 0x73, 0x73, 0x73, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x74, 0x73, 0x71, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x76, 0x75, 0x73, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x70, 0x73, 0x75, 0x73, 0x71, 0x6f, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x73, 0x72, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x74, 0x73, 0x73, 0x73, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x78, 0x77, 0x75, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x75, 0x74, 0x73, 0x72, 0x73, 0x75, 0x77, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x73, 0x72, 0x70, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x6e, 0x6d, 0x6c, 0x6c, 0x6e, 0x70, 0x73, 0x75, 0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x6a, 0x6c, 0x6d, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x75, 0x74, 0x72, 0x72, 0x72, 0x75, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x72, 0x71, 0x6f, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x6e, 0x6d, 0x6c, 0x6c, 0x6e, 0x70, 0x73, 0x75, 0x75, 0x73, 0x6f, 0x6c, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x78, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x73, 0x72, 0x71, 0x70, 0x71, 0x72, 0x74, 0x75, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x75, 0x74, 0x72, 0x71, 0x72, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x78, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x71, 0x6f, 0x6e, 0x6d, 0x6e, 0x70, 0x73, 0x75, 0x76, 0x75, 0x73, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x73, 0x72, 0x70, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x73, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x74, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x72, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x75, 0x72, 0x6e, 0x6b, 0x6c, 0x70, 0x76, 0x7a, 0x7c, 0x7a, 0x78, 0x7a, 0x7d, 0x7e, 0x7d, 0x7a, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7d, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x72, 0x70, 0x6f, 0x6e, 0x6f, 0x71, 0x74, 0x76, 0x75, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x72, 0x72, 0x70, 0x6e, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x76, 0x75, 0x74, 0x70, 0x6f, 0x6f, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x76, 0x73, 0x6f, 0x6d, 0x6d, 0x71, 0x76, 0x7a, 0x7a, 0x78, 0x77, 0x79, 0x7c, 0x7e, 0x7d, 0x7b, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x73, 0x72, 0x70, 0x70, 0x70, 0x72, 0x75, 0x76, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6e, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x79, 0x79, 0x79, 0x78, 0x76, 0x74, 0x72, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x71, 0x6f, 0x70, 0x73, 0x77, 0x7a, 0x77, 0x75, 0x74, 0x77, 0x7b, 0x7e, 0x7d, 0x7b, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x72, 0x73, 0x75, 0x76, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x71, 0x6f, 0x6c, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x79, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x73, 0x78, 0x78, 0x78, 0x76, 0x74, 0x72, 0x6f, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x75, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x77, 0x75, 0x73, 0x72, 0x72, 0x75, 0x77, 0x79, 0x74, 0x72, 0x72, 0x75, 0x7a, 0x7d, 0x7d, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x75, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x6f, 0x6d, 0x6c, 0x6c, 0x6e, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x78, 0x78, 0x78, 0x78, 0x76, 0x74, 0x71, 0x70, 0x77, 0x77, 0x77, 0x75, 0x73, 0x71, 0x6e, 0x6d, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x73, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x78, 0x79, 0x73, 0x71, 0x71, 0x74, 0x7a, 0x7d, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x75, 0x71, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x70, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x76, 0x73, 0x70, 0x6e, 0x76, 0x76, 0x76, 0x75, 0x73, 0x71, 0x6f, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x70, 0x70, 0x71, 0x72, 0x74, 0x76, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x73, 0x72, 0x71, 0x74, 0x7a, 0x7d, 0x7d, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x75, 0x75, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x75, 0x75, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x6e, 0x70, 0x71, 0x73, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71, 0x72, 0x72, 0x74, 0x76, 0x78, 0x79, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x75, 0x73, 0x72, 0x75, 0x7a, 0x7d, 0x7c, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x76, 0x76, 0x75, 0x74, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x76, 0x75, 0x73, 0x71, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x77, 0x75, 0x73, 0x73, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x73, 0x75, 0x76, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x73, 0x72, 0x72, 0x73, 0x74, 0x76, 0x78, 0x79, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x74, 0x75, 0x76, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x74, 0x73, 0x76, 0x7a, 0x7d, 0x7c, 0x7a, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x71, 0x72, 0x75, 0x76, 0x76, 0x74, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x73, 0x73, 0x74, 0x75, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7a, 0x78, 0x75, 0x74, 0x70, 0x70, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x74, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x72, 0x75, 0x77, 0x79, 0x77, 0x75, 0x73, 0x72, 0x73, 0x74, 0x75, 0x70, 0x70, 0x71, 0x73, 0x74, 0x76, 0x77, 0x77, 0x74, 0x73, 0x71, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x72, 0x76, 0x79, 0x79, 0x75, 0x72, 0x71, 0x71, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x70, 0x71, 0x74, 0x76, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x72, 0x74, 0x76, 0x75, 0x74, 0x72, 0x70, 0x70, 0x71, 0x72, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x73, 0x76, 0x7a, 0x7a, 0x76, 0x73, 0x72, 0x73, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x74, 0x78, 0x7b, 0x7b, 0x77, 0x74, 0x74, 0x75, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7b, 0x7a, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x73, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x71, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x70, 0x72, 0x74, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x76, 0x79, 0x7c, 0x7b, 0x78, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x75, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6b, 0x6c, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x73, 0x75, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x76, 0x78, 0x79, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x76, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6f, 0x6f, 0x71, 0x74, 0x75, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x74, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x76, 0x79, 0x7c, 0x7b, 0x78, 0x76, 0x77, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x77, 0x77, 0x77, 0x76, 0x74, 0x72, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x77, 0x79, 0x7b, 0x7a, 0x77, 0x76, 0x78, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x76, 0x74, 0x73, 0x72, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x76, 0x73, 0x70, 0x6f, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6f, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x76, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x78, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x77, 0x79, 0x7a, 0x7c, 0x7c, 0x7a, 0x79, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x73, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x74, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x6a, 0x6b, 0x6c, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x78, 0x76, 0x75, 0x78, 0x7b, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x76, 0x77, 0x79, 0x79, 0x79, 0x78, 0x76, 0x75, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x77, 0x76, 0x74, 0x70, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x69, 0x6b, 0x6e, 0x70, 0x72, 0x72, 0x71, 0x70, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x70, 0x6c, 0x68, 0x66, 0x68, 0x68, 0x67, 0x65, 0x65, 0x62, 0x5f, 0x62, 0x68, 0x6e, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x72, 0x74, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x7d, 0x7f, 0x7e, 0x7a, 0x75, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x76, 0x73, 0x70, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x69, 0x6b, 0x6e, 0x71, 0x72, 0x72, 0x71, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x74, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x6f, 0x6b, 0x67, 0x66, 0x67, 0x68, 0x66, 0x64, 0x64, 0x61, 0x5f, 0x62, 0x68, 0x6f, 0x72, 0x73, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x70, 0x72, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x7d, 0x7b, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x76, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x6b, 0x6e, 0x71, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x6e, 0x6a, 0x66, 0x65, 0x67, 0x67, 0x65, 0x63, 0x63, 0x60, 0x5f, 0x63, 0x69, 0x6f, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x6e, 0x6c, 0x6a, 0x72, 0x73, 0x74, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x75, 0x73, 0x71, 0x73, 0x78, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x75, 0x74, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6f, 0x71, 0x73, 0x72, 0x72, 0x71, 0x6f, 0x6e, 0x6c, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x70, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6f, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6c, 0x69, 0x66, 0x65, 0x67, 0x67, 0x64, 0x61, 0x60, 0x5f, 0x5f, 0x64, 0x6a, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x69, 0x6b, 0x6c, 0x6e, 0x6d, 0x6c, 0x6a, 0x68, 0x6d, 0x6e, 0x71, 0x73, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x79, 0x70, 0x6d, 0x6c, 0x6e, 0x75, 0x7b, 0x7e, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6f, 0x72, 0x73, 0x73, 0x72, 0x71, 0x6e, 0x6d, 0x6a, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x73, 0x73, 0x73, 0x73, 0x71, 0x70, 0x6f, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6c, 0x69, 0x66, 0x66, 0x68, 0x67, 0x64, 0x61, 0x5e, 0x5e, 0x5f, 0x65, 0x6c, 0x70, 0x71, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6c, 0x6a, 0x68, 0x67, 0x69, 0x6c, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x6a, 0x68, 0x68, 0x6c, 0x74, 0x7c, 0x7f, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x6e, 0x6e, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6f, 0x72, 0x73, 0x73, 0x72, 0x71, 0x6e, 0x6c, 0x69, 0x67, 0x67, 0x68, 0x6b, 0x6d, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6c, 0x69, 0x67, 0x67, 0x69, 0x68, 0x64, 0x61, 0x5c, 0x5c, 0x5f, 0x66, 0x6d, 0x71, 0x70, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x6b, 0x6c, 0x6e, 0x6e, 0x6e, 0x6c, 0x69, 0x68, 0x61, 0x63, 0x68, 0x6b, 0x6d, 0x6d, 0x6c, 0x6b, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x64, 0x64, 0x67, 0x6e, 0x76, 0x7d, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x76, 0x76, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f, 0x72, 0x73, 0x73, 0x72, 0x72, 0x6f, 0x6c, 0x69, 0x66, 0x66, 0x68, 0x6b, 0x6d, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x70, 0x71, 0x71, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6a, 0x68, 0x69, 0x6a, 0x69, 0x65, 0x61, 0x5a, 0x5b, 0x5f, 0x66, 0x6e, 0x71, 0x70, 0x6d, 0x6f, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x69, 0x66, 0x65, 0x5b, 0x5f, 0x63, 0x68, 0x6a, 0x6a, 0x69, 0x67, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x5f, 0x61, 0x67, 0x70, 0x7a, 0x7e, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x70, 0x72, 0x73, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x70, 0x72, 0x74, 0x74, 0x73, 0x72, 0x6f, 0x6d, 0x69, 0x66, 0x66, 0x68, 0x6b, 0x6e, 0x71, 0x71, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x6c, 0x6a, 0x69, 0x6a, 0x6b, 0x6a, 0x66, 0x61, 0x59, 0x5b, 0x5f, 0x67, 0x6e, 0x71, 0x70, 0x6d, 0x6f, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x69, 0x69, 0x68, 0x66, 0x64, 0x62, 0x58, 0x5c, 0x61, 0x66, 0x68, 0x68, 0x67, 0x65, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x64, 0x62, 0x62, 0x5c, 0x60, 0x68, 0x73, 0x7c, 0x7f, 0x7c, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x74, 0x74, 0x72, 0x70, 0x6f, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x6f, 0x70, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6d, 0x6d, 0x6b, 0x67, 0x63, 0x60, 0x5e, 0x62, 0x67, 0x6d, 0x71, 0x73, 0x73, 0x72, 0x6e, 0x6d, 0x6b, 0x66, 0x62, 0x63, 0x68, 0x6c, 0x64, 0x65, 0x67, 0x6a, 0x6a, 0x65, 0x5b, 0x54, 0x5e, 0x5a, 0x5a, 0x61, 0x6a, 0x6a, 0x60, 0x55, 0x64, 0x6d, 0x73, 0x6f, 0x63, 0x59, 0x58, 0x5b, 0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x76, 0x76, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6e, 0x6f, 0x72, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x70, 0x6f, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6a, 0x66, 0x62, 0x5f, 0x5f, 0x62, 0x68, 0x6d, 0x71, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6a, 0x65, 0x61, 0x62, 0x66, 0x6a, 0x63, 0x64, 0x65, 0x68, 0x68, 0x64, 0x5b, 0x53, 0x5d, 0x5a, 0x59, 0x60, 0x67, 0x67, 0x5e, 0x54, 0x62, 0x6a, 0x70, 0x6d, 0x62, 0x59, 0x59, 0x5c, 0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x79, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6f, 0x70, 0x72, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x67, 0x6a, 0x6b, 0x6c, 0x6c, 0x69, 0x65, 0x61, 0x5e, 0x5f, 0x63, 0x68, 0x6d, 0x70, 0x71, 0x71, 0x70, 0x70, 0x6d, 0x68, 0x63, 0x60, 0x60, 0x63, 0x65, 0x61, 0x61, 0x62, 0x65, 0x65, 0x61, 0x59, 0x53, 0x5c, 0x59, 0x58, 0x5d, 0x63, 0x63, 0x5b, 0x53, 0x5f, 0x66, 0x6b, 0x68, 0x60, 0x5a, 0x59, 0x5c, 0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x7a, 0x76, 0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x70, 0x71, 0x72, 0x74, 0x74, 0x73, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x69, 0x66, 0x64, 0x68, 0x69, 0x6b, 0x6b, 0x69, 0x65, 0x60, 0x5e, 0x60, 0x63, 0x68, 0x6d, 0x70, 0x71, 0x70, 0x6f, 0x71, 0x6c, 0x65, 0x60, 0x5f, 0x5f, 0x60, 0x60, 0x5f, 0x5f, 0x5f, 0x61, 0x62, 0x5f, 0x59, 0x53, 0x59, 0x57, 0x57, 0x5a, 0x5e, 0x5e, 0x59, 0x53, 0x5d, 0x61, 0x65, 0x63, 0x5e, 0x5a, 0x5a, 0x5c, 0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6c, 0x68, 0x63, 0x60, 0x65, 0x67, 0x69, 0x69, 0x68, 0x65, 0x61, 0x5e, 0x61, 0x64, 0x68, 0x6d, 0x6f, 0x70, 0x6f, 0x6d, 0x71, 0x6a, 0x61, 0x5d, 0x5d, 0x5e, 0x5d, 0x5b, 0x5e, 0x5c, 0x5c, 0x5e, 0x5f, 0x5e, 0x59, 0x54, 0x55, 0x55, 0x55, 0x58, 0x5a, 0x5a, 0x58, 0x56, 0x5d, 0x5e, 0x5f, 0x5e, 0x5c, 0x5b, 0x5b, 0x5c, 0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x75, 0x75, 0x73, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6e, 0x70, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x6f, 0x6b, 0x66, 0x61, 0x5d, 0x62, 0x64, 0x66, 0x68, 0x68, 0x65, 0x62, 0x60, 0x62, 0x64, 0x69, 0x6d, 0x6f, 0x6f, 0x6d, 0x6c, 0x70, 0x67, 0x5c, 0x59, 0x5c, 0x5e, 0x5c, 0x58, 0x5d, 0x5b, 0x5a, 0x5b, 0x5d, 0x5d, 0x59, 0x55, 0x52, 0x53, 0x54, 0x56, 0x57, 0x58, 0x59, 0x59, 0x5e, 0x5d, 0x5c, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x74, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x71, 0x73, 0x73, 0x71, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x71, 0x6f, 0x6b, 0x65, 0x5f, 0x5b, 0x5e, 0x61, 0x64, 0x67, 0x67, 0x66, 0x64, 0x62, 0x62, 0x65, 0x69, 0x6d, 0x6e, 0x6e, 0x6c, 0x6b, 0x6e, 0x64, 0x59, 0x57, 0x5b, 0x5e, 0x5b, 0x56, 0x5d, 0x5b, 0x59, 0x5a, 0x5c, 0x5c, 0x5a, 0x57, 0x4f, 0x51, 0x53, 0x54, 0x55, 0x57, 0x5a, 0x5d, 0x60, 0x5d, 0x5a, 0x59, 0x5a, 0x5c, 0x5c, 0x5b, 0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x77, 0x76, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x6e, 0x70, 0x72, 0x74, 0x74, 0x72, 0x70, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x6f, 0x6b, 0x64, 0x5e, 0x59, 0x5c, 0x5f, 0x63, 0x66, 0x67, 0x67, 0x65, 0x63, 0x62, 0x65, 0x69, 0x6c, 0x6e, 0x6e, 0x6c, 0x6a, 0x6d, 0x62, 0x57, 0x55, 0x5b, 0x5f, 0x5b, 0x55, 0x5d, 0x5b, 0x58, 0x59, 0x5b, 0x5c, 0x5a, 0x58, 0x4d, 0x50, 0x53, 0x54, 0x54, 0x56, 0x5b, 0x60, 0x62, 0x5e, 0x59, 0x58, 0x5a, 0x5c, 0x5c, 0x5a, 0x5b, 0x63, 0x6f, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x77, 0x76, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x72, 0x71, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x71, 0x6f, 0x6c, 0x67, 0x62, 0x5d, 0x5a, 0x5a, 0x5c, 0x5f, 0x62, 0x64, 0x65, 0x64, 0x63, 0x67, 0x69, 0x6c, 0x6f, 0x70, 0x6f, 0x6e, 0x6c, 0x67, 0x62, 0x5b, 0x55, 0x54, 0x57, 0x5b, 0x5f, 0x51, 0x5c, 0x66, 0x66, 0x5c, 0x54, 0x53, 0x57, 0x5a, 0x57, 0x52, 0x4f, 0x4d, 0x4f, 0x52, 0x55, 0x60, 0x64, 0x66, 0x61, 0x59, 0x55, 0x58, 0x5d, 0x5f, 0x67, 0x72, 0x79, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x6f, 0x6c, 0x68, 0x64, 0x60, 0x5d, 0x5b, 0x5c, 0x5f, 0x62, 0x64, 0x64, 0x64, 0x63, 0x67, 0x69, 0x6c, 0x6f, 0x70, 0x6f, 0x6d, 0x6c, 0x66, 0x62, 0x5b, 0x56, 0x54, 0x57, 0x5b, 0x5e, 0x55, 0x5d, 0x65, 0x63, 0x5a, 0x54, 0x54, 0x58, 0x5b, 0x58, 0x53, 0x50, 0x4e, 0x50, 0x52, 0x54, 0x5e, 0x62, 0x66, 0x63, 0x5e, 0x5a, 0x5c, 0x5f, 0x5f, 0x67, 0x72, 0x7a, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6a, 0x66, 0x63, 0x61, 0x5d, 0x5e, 0x5f, 0x61, 0x62, 0x63, 0x63, 0x63, 0x69, 0x6a, 0x6d, 0x6f, 0x6f, 0x6f, 0x6d, 0x6c, 0x66, 0x62, 0x5c, 0x57, 0x55, 0x57, 0x5a, 0x5d, 0x5a, 0x5f, 0x62, 0x5f, 0x58, 0x54, 0x56, 0x5a, 0x5c, 0x59, 0x55, 0x52, 0x50, 0x51, 0x52, 0x53, 0x58, 0x5d, 0x63, 0x65, 0x62, 0x60, 0x5f, 0x60, 0x5f, 0x68, 0x73, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x74, 0x75, 0x76, 0x77, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x68, 0x67, 0x65, 0x60, 0x60, 0x60, 0x61, 0x61, 0x63, 0x64, 0x64, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x65, 0x62, 0x5d, 0x59, 0x57, 0x57, 0x59, 0x5b, 0x5e, 0x60, 0x60, 0x5c, 0x57, 0x55, 0x59, 0x5d, 0x5c, 0x5a, 0x58, 0x55, 0x53, 0x53, 0x53, 0x54, 0x52, 0x57, 0x5d, 0x62, 0x63, 0x62, 0x60, 0x5f, 0x60, 0x68, 0x73, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x74, 0x74, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x69, 0x68, 0x63, 0x63, 0x61, 0x61, 0x61, 0x63, 0x65, 0x66, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x64, 0x62, 0x5e, 0x5a, 0x58, 0x58, 0x58, 0x59, 0x61, 0x60, 0x5f, 0x5c, 0x59, 0x5a, 0x5d, 0x60, 0x5c, 0x5c, 0x5a, 0x59, 0x58, 0x57, 0x57, 0x56, 0x4e, 0x51, 0x56, 0x5c, 0x61, 0x62, 0x5f, 0x5d, 0x5f, 0x68, 0x73, 0x7b, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x66, 0x63, 0x62, 0x62, 0x63, 0x66, 0x68, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x63, 0x61, 0x5f, 0x5c, 0x59, 0x58, 0x57, 0x57, 0x60, 0x5f, 0x5e, 0x5e, 0x5f, 0x60, 0x61, 0x62, 0x5c, 0x5c, 0x5d, 0x5d, 0x5d, 0x5c, 0x5b, 0x5a, 0x52, 0x51, 0x52, 0x58, 0x5e, 0x61, 0x60, 0x5d, 0x5e, 0x67, 0x72, 0x7a, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x73, 0x73, 0x74, 0x75, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x73, 0x75, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x71, 0x6e, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x6c, 0x69, 0x65, 0x63, 0x62, 0x64, 0x68, 0x6a, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x63, 0x61, 0x5f, 0x5d, 0x5a, 0x58, 0x56, 0x56, 0x5e, 0x5e, 0x5f, 0x61, 0x65, 0x66, 0x65, 0x63, 0x5c, 0x5d, 0x5f, 0x61, 0x61, 0x61, 0x5f, 0x5f, 0x5a, 0x56, 0x53, 0x56, 0x5d, 0x63, 0x63, 0x61, 0x5c, 0x65, 0x71, 0x79, 0x7c, 0x7c, 0x7c, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x72, 0x73, 0x74, 0x75, 0x76, 0x75, 0x75, 0x74, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x71, 0x70, 0x70, 0x70, 0x70, 0x72, 0x73, 0x74, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x71, 0x73, 0x76, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x73, 0x71, 0x6e, 0x6b, 0x68, 0x67, 0x67, 0x67, 0x6e, 0x6b, 0x67, 0x63, 0x63, 0x65, 0x69, 0x6b, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x62, 0x61, 0x60, 0x5d, 0x5b, 0x58, 0x56, 0x55, 0x5d, 0x5d, 0x5f, 0x64, 0x68, 0x6a, 0x67, 0x63, 0x5b, 0x5d, 0x60, 0x63, 0x64, 0x63, 0x62, 0x61, 0x61, 0x5b, 0x55, 0x56, 0x5e, 0x65, 0x66, 0x64, 0x5c, 0x64, 0x70, 0x78, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6f, 0x71, 0x74, 0x77, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x75, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x69, 0x6f, 0x71, 0x6b, 0x61, 0x5e, 0x65, 0x6e, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x69, 0x64, 0x61, 0x5d, 0x5c, 0x5d, 0x5c, 0x59, 0x56, 0x58, 0x5c, 0x61, 0x63, 0x63, 0x64, 0x68, 0x6b, 0x61, 0x60, 0x60, 0x5f, 0x5e, 0x5c, 0x5b, 0x5a, 0x62, 0x62, 0x62, 0x63, 0x63, 0x63, 0x62, 0x62, 0x5f, 0x67, 0x72, 0x79, 0x7c, 0x7c, 0x7d, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x71, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x71, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x71, 0x6f, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6f, 0x71, 0x6c, 0x63, 0x60, 0x67, 0x6f, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x6a, 0x67, 0x64, 0x60, 0x60, 0x60, 0x60, 0x5d, 0x59, 0x59, 0x5e, 0x64, 0x67, 0x67, 0x67, 0x69, 0x6b, 0x63, 0x62, 0x61, 0x60, 0x5e, 0x5c, 0x5b, 0x5a, 0x61, 0x61, 0x62, 0x63, 0x63, 0x63, 0x63, 0x62, 0x60, 0x68, 0x72, 0x79, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x71, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x72, 0x74, 0x77, 0x77, 0x75, 0x75, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x70, 0x71, 0x6d, 0x66, 0x64, 0x69, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x6a, 0x6a, 0x66, 0x63, 0x63, 0x64, 0x63, 0x60, 0x5d, 0x5b, 0x61, 0x68, 0x6c, 0x6c, 0x6a, 0x6a, 0x6b, 0x66, 0x66, 0x64, 0x62, 0x5f, 0x5d, 0x5b, 0x5b, 0x5f, 0x60, 0x62, 0x63, 0x63, 0x63, 0x63, 0x62, 0x63, 0x6a, 0x74, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x74, 0x74, 0x72, 0x71, 0x6f, 0x6c, 0x6b, 0x6a, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x6b, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x71, 0x72, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x77, 0x75, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x70, 0x71, 0x6e, 0x6a, 0x68, 0x6c, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6a, 0x6a, 0x66, 0x63, 0x63, 0x64, 0x64, 0x61, 0x5e, 0x5d, 0x64, 0x6d, 0x71, 0x70, 0x6d, 0x6b, 0x6b, 0x6a, 0x69, 0x66, 0x63, 0x60, 0x5e, 0x5d, 0x5c, 0x5f, 0x60, 0x62, 0x64, 0x64, 0x64, 0x63, 0x62, 0x65, 0x6c, 0x75, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x6e, 0x6f, 0x70, 0x6e, 0x6d, 0x6c, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x68, 0x65, 0x62, 0x62, 0x63, 0x63, 0x61, 0x5d, 0x61, 0x67, 0x6f, 0x72, 0x71, 0x6e, 0x6c, 0x6c, 0x6e, 0x6c, 0x68, 0x65, 0x62, 0x60, 0x60, 0x60, 0x60, 0x62, 0x64, 0x66, 0x66, 0x65, 0x62, 0x61, 0x65, 0x6d, 0x76, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x73, 0x71, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x79, 0x78, 0x77, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6c, 0x68, 0x65, 0x62, 0x62, 0x64, 0x64, 0x61, 0x5f, 0x65, 0x69, 0x6e, 0x70, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6d, 0x6a, 0x66, 0x64, 0x63, 0x63, 0x64, 0x63, 0x65, 0x67, 0x69, 0x68, 0x65, 0x62, 0x60, 0x65, 0x6c, 0x76, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6c, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x72, 0x70, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x70, 0x71, 0x70, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x68, 0x65, 0x66, 0x67, 0x68, 0x65, 0x62, 0x68, 0x6b, 0x6d, 0x6c, 0x6a, 0x6a, 0x6d, 0x70, 0x70, 0x6e, 0x6a, 0x67, 0x65, 0x65, 0x66, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6a, 0x66, 0x62, 0x5f, 0x64, 0x6c, 0x75, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x70, 0x71, 0x72, 0x72, 0x72, 0x70, 0x6e, 0x6d, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x72, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6e, 0x6e, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x73, 0x74, 0x76, 0x78, 0x79, 0x78, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x71, 0x71, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x70, 0x6d, 0x6c, 0x6b, 0x6d, 0x70, 0x72, 0x70, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6e, 0x6b, 0x68, 0x69, 0x6b, 0x6b, 0x68, 0x66, 0x6b, 0x6b, 0x6b, 0x69, 0x67, 0x68, 0x6d, 0x72, 0x70, 0x6e, 0x6b, 0x68, 0x66, 0x67, 0x68, 0x6a, 0x69, 0x6b, 0x6c, 0x6d, 0x6b, 0x66, 0x61, 0x5e, 0x64, 0x6b, 0x75, 0x7b, 0x7d, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7e, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x6e, 0x6e, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x73, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6b, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x71, 0x71, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x72, 0x74, 0x77, 0x79, 0x7b, 0x7b, 0x7c, 0x78, 0x77, 0x76, 0x75, 0x73, 0x72, 0x71, 0x70, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x75, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x71, 0x71, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x70, 0x72, 0x72, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x69, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6c, 0x68, 0x66, 0x68, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x65, 0x62, 0x60, 0x65, 0x6d, 0x77, 0x7d, 0x7e, 0x7c, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x71, 0x70, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6f, 0x72, 0x75, 0x78, 0x7a, 0x7a, 0x7b, 0x78, 0x78, 0x77, 0x75, 0x74, 0x73, 0x72, 0x71, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6c, 0x68, 0x66, 0x68, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x68, 0x65, 0x61, 0x5f, 0x63, 0x6b, 0x76, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6a, 0x6c, 0x6f, 0x72, 0x75, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x6d, 0x6e, 0x6e, 0x6b, 0x67, 0x66, 0x68, 0x6a, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x63, 0x60, 0x5d, 0x61, 0x69, 0x74, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x67, 0x69, 0x6c, 0x70, 0x73, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6c, 0x6e, 0x6e, 0x6b, 0x67, 0x65, 0x67, 0x6a, 0x68, 0x69, 0x69, 0x68, 0x65, 0x62, 0x5e, 0x5c, 0x5f, 0x68, 0x73, 0x7a, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x66, 0x66, 0x67, 0x69, 0x6c, 0x6f, 0x72, 0x74, 0x75, 0x76, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6c, 0x6d, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6c, 0x6d, 0x6d, 0x6a, 0x66, 0x64, 0x66, 0x69, 0x67, 0x68, 0x68, 0x67, 0x65, 0x61, 0x5e, 0x5b, 0x5f, 0x68, 0x73, 0x7a, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6f, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6e, 0x6f, 0x70, 0x71, 0x70, 0x6e, 0x6c, 0x6a, 0x66, 0x66, 0x64, 0x63, 0x62, 0x62, 0x63, 0x63, 0x69, 0x6a, 0x6d, 0x70, 0x72, 0x74, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x76, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6b, 0x6c, 0x6c, 0x69, 0x65, 0x64, 0x66, 0x68, 0x67, 0x68, 0x68, 0x67, 0x65, 0x61, 0x5e, 0x5b, 0x61, 0x69, 0x74, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6d, 0x6e, 0x70, 0x71, 0x70, 0x6e, 0x6b, 0x69, 0x64, 0x63, 0x62, 0x61, 0x61, 0x62, 0x63, 0x64, 0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x69, 0x65, 0x63, 0x65, 0x68, 0x68, 0x68, 0x68, 0x68, 0x65, 0x62, 0x5e, 0x5c, 0x63, 0x6b, 0x76, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x6e, 0x6b, 0x69, 0x64, 0x63, 0x62, 0x61, 0x62, 0x63, 0x65, 0x66, 0x6e, 0x6f, 0x71, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x75, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6c, 0x6c, 0x69, 0x65, 0x63, 0x65, 0x67, 0x68, 0x69, 0x69, 0x68, 0x66, 0x62, 0x5e, 0x5c, 0x65, 0x6d, 0x77, 0x7d, 0x7e, 0x7c, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x73, 0x75, 0x77, 0x76, 0x74, 0x71, 0x6f, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x73, 0x72, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x71, 0x6e, 0x6d, 0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x70, 0x6b, 0x66, 0x61, 0x5e, 0x5a, 0x59, 0x5b, 0x62, 0x6a, 0x6f, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x73, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x6d, 0x70, 0x73, 0x73, 0x71, 0x71, 0x72, 0x75, 0x72, 0x73, 0x73, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6b, 0x6b, 0x6a, 0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x68, 0x66, 0x64, 0x63, 0x63, 0x63, 0x63, 0x71, 0x73, 0x77, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x76, 0x74, 0x73, 0x72, 0x70, 0x71, 0x74, 0x75, 0x75, 0x74, 0x72, 0x70, 0x73, 0x72, 0x71, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x74, 0x74, 0x71, 0x6a, 0x64, 0x5d, 0x5b, 0x59, 0x58, 0x5a, 0x5f, 0x65, 0x68, 0x6e, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x74, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x6f, 0x72, 0x74, 0x73, 0x70, 0x6f, 0x71, 0x73, 0x76, 0x74, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6b, 0x6b, 0x6a, 0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x67, 0x67, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x69, 0x68, 0x66, 0x65, 0x65, 0x65, 0x65, 0x72, 0x74, 0x78, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x6e, 0x6f, 0x72, 0x74, 0x74, 0x74, 0x72, 0x71, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6f, 0x72, 0x73, 0x75, 0x76, 0x78, 0x7a, 0x7a, 0x74, 0x6a, 0x62, 0x58, 0x58, 0x57, 0x57, 0x58, 0x5a, 0x5d, 0x5f, 0x65, 0x68, 0x6d, 0x72, 0x75, 0x76, 0x75, 0x75, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x73, 0x74, 0x72, 0x6f, 0x6d, 0x6e, 0x70, 0x78, 0x76, 0x73, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x69, 0x69, 0x69, 0x74, 0x76, 0x79, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x6d, 0x6e, 0x70, 0x72, 0x73, 0x73, 0x73, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x72, 0x6f, 0x6c, 0x6b, 0x6c, 0x70, 0x75, 0x78, 0x7a, 0x7b, 0x7d, 0x80, 0x7f, 0x77, 0x6b, 0x62, 0x56, 0x56, 0x56, 0x56, 0x56, 0x56, 0x56, 0x56, 0x5c, 0x60, 0x68, 0x6f, 0x74, 0x76, 0x76, 0x75, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x75, 0x71, 0x6c, 0x6a, 0x6b, 0x6d, 0x74, 0x77, 0x7b, 0x7d, 0x7d, 0x79, 0x75, 0x71, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x65, 0x65, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66, 0x65, 0x66, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x76, 0x77, 0x79, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x70, 0x6d, 0x6c, 0x6f, 0x73, 0x79, 0x7c, 0x7e, 0x7f, 0x80, 0x82, 0x81, 0x7a, 0x6f, 0x67, 0x58, 0x58, 0x57, 0x56, 0x54, 0x53, 0x52, 0x51, 0x56, 0x5a, 0x61, 0x68, 0x6e, 0x72, 0x74, 0x75, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x76, 0x74, 0x70, 0x6a, 0x68, 0x69, 0x6b, 0x6d, 0x77, 0x84, 0x8f, 0x90, 0x87, 0x7b, 0x72, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x68, 0x67, 0x67, 0x66, 0x64, 0x64, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x72, 0x72, 0x79, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x75, 0x74, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x70, 0x70, 0x71, 0x74, 0x79, 0x7d, 0x80, 0x81, 0x80, 0x81, 0x82, 0x82, 0x7d, 0x75, 0x6e, 0x5f, 0x5d, 0x59, 0x56, 0x53, 0x52, 0x52, 0x52, 0x54, 0x56, 0x5a, 0x60, 0x66, 0x6c, 0x71, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x75, 0x73, 0x6e, 0x69, 0x66, 0x68, 0x6a, 0x69, 0x76, 0x88, 0x96, 0x9a, 0x92, 0x84, 0x7a, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x66, 0x66, 0x64, 0x64, 0x65, 0x66, 0x66, 0x67, 0x67, 0x68, 0x6b, 0x6b, 0x6d, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x72, 0x72, 0x71, 0x71, 0x72, 0x73, 0x75, 0x76, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x75, 0x74, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x71, 0x74, 0x77, 0x7b, 0x7e, 0x81, 0x82, 0x83, 0x81, 0x7f, 0x7f, 0x80, 0x7f, 0x7a, 0x76, 0x68, 0x63, 0x5d, 0x56, 0x53, 0x52, 0x54, 0x55, 0x55, 0x55, 0x55, 0x58, 0x5e, 0x66, 0x6e, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x75, 0x72, 0x6d, 0x67, 0x65, 0x67, 0x6a, 0x6b, 0x75, 0x84, 0x90, 0x96, 0x94, 0x8d, 0x88, 0x74, 0x73, 0x70, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x66, 0x65, 0x65, 0x66, 0x66, 0x67, 0x68, 0x69, 0x69, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x76, 0x76, 0x73, 0x72, 0x72, 0x72, 0x73, 0x75, 0x77, 0x78, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x75, 0x76, 0x78, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x74, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x72, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x72, 0x71, 0x71, 0x71, 0x73, 0x74, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6e, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x71, 0x76, 0x7b, 0x7f, 0x82, 0x83, 0x83, 0x84, 0x81, 0x7d, 0x7d, 0x7f, 0x7f, 0x7e, 0x7b, 0x6d, 0x68, 0x5f, 0x57, 0x53, 0x53, 0x56, 0x59, 0x56, 0x54, 0x52, 0x53, 0x59, 0x62, 0x6c, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x73, 0x74, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x78, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x72, 0x6c, 0x67, 0x65, 0x67, 0x6b, 0x6f, 0x74, 0x7d, 0x87, 0x8e, 0x92, 0x93, 0x93, 0x77, 0x75, 0x72, 0x6f, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6a, 0x6c, 0x6d, 0x6f, 0x6f, 0x6f, 0x6d, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66, 0x65, 0x66, 0x66, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x71, 0x71, 0x72, 0x73, 0x74, 0x76, 0x76, 0x77, 0x73, 0x73, 0x72, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x76, 0x78, 0x7b, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x71, 0x74, 0x76, 0x76, 0x75, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x70, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x70, 0x71, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x72, 0x73, 0x7b, 0x7c, 0x7f, 0x81, 0x82, 0x83, 0x82, 0x81, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x82, 0x7a, 0x6d, 0x60, 0x57, 0x53, 0x54, 0x55, 0x59, 0x55, 0x50, 0x4e, 0x52, 0x5b, 0x65, 0x6c, 0x74, 0x76, 0x78, 0x76, 0x73, 0x72, 0x74, 0x77, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x79, 0x75, 0x6e, 0x69, 0x65, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x72, 0x80, 0x91, 0x99, 0x95, 0x8e, 0x8c, 0x82, 0x74, 0x6a, 0x68, 0x6a, 0x6d, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x71, 0x70, 0x6e, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x68, 0x67, 0x66, 0x66, 0x66, 0x66, 0x67, 0x68, 0x66, 0x66, 0x66, 0x67, 0x69, 0x6c, 0x70, 0x71, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x74, 0x74, 0x6f, 0x73, 0x77, 0x78, 0x77, 0x77, 0x79, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x76, 0x76, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x74, 0x76, 0x78, 0x78, 0x76, 0x74, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x72, 0x71, 0x71, 0x71, 0x71, 0x73, 0x75, 0x76, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x7e, 0x78, 0x70, 0x67, 0x5d, 0x56, 0x52, 0x55, 0x54, 0x53, 0x54, 0x57, 0x5c, 0x62, 0x65, 0x6f, 0x73, 0x76, 0x77, 0x75, 0x74, 0x76, 0x78, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x74, 0x70, 0x6b, 0x68, 0x66, 0x66, 0x66, 0x6c, 0x6b, 0x70, 0x7d, 0x8e, 0x97, 0x96, 0x90, 0x8f, 0x85, 0x78, 0x6e, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x71, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x68, 0x68, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x70, 0x72, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x70, 0x73, 0x77, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x75, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x74, 0x75, 0x77, 0x78, 0x78, 0x77, 0x75, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x71, 0x71, 0x71, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x83, 0x81, 0x79, 0x6b, 0x5e, 0x55, 0x54, 0x55, 0x56, 0x57, 0x59, 0x5b, 0x5c, 0x5d, 0x67, 0x6c, 0x73, 0x77, 0x77, 0x76, 0x77, 0x79, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x74, 0x73, 0x72, 0x70, 0x6c, 0x68, 0x64, 0x61, 0x67, 0x67, 0x6c, 0x79, 0x89, 0x94, 0x96, 0x94, 0x94, 0x8b, 0x7e, 0x75, 0x70, 0x6e, 0x6c, 0x6a, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f, 0x71, 0x72, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x75, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7c, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x75, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6f, 0x6f, 0x70, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x74, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x76, 0x79, 0x7b, 0x7e, 0x7f, 0x81, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x81, 0x85, 0x85, 0x80, 0x77, 0x6c, 0x65, 0x5c, 0x5a, 0x56, 0x54, 0x53, 0x55, 0x58, 0x5a, 0x5e, 0x65, 0x6f, 0x75, 0x76, 0x77, 0x77, 0x79, 0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x73, 0x75, 0x74, 0x70, 0x6a, 0x63, 0x5f, 0x63, 0x63, 0x68, 0x73, 0x82, 0x8f, 0x95, 0x96, 0x98, 0x90, 0x86, 0x7d, 0x78, 0x72, 0x6d, 0x69, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6c, 0x6c, 0x6d, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x73, 0x77, 0x7a, 0x7b, 0x79, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x74, 0x77, 0x7a, 0x7c, 0x7f, 0x81, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x6b, 0x63, 0x59, 0x50, 0x4d, 0x50, 0x56, 0x5b, 0x58, 0x5f, 0x69, 0x6f, 0x72, 0x73, 0x75, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x73, 0x76, 0x77, 0x74, 0x6d, 0x65, 0x60, 0x60, 0x61, 0x65, 0x6e, 0x7b, 0x88, 0x92, 0x97, 0x9a, 0x95, 0x8d, 0x86, 0x80, 0x79, 0x70, 0x6a, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x75, 0x79, 0x7c, 0x7c, 0x7a, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x83, 0x81, 0x7e, 0x7c, 0x7c, 0x7f, 0x83, 0x86, 0x78, 0x70, 0x64, 0x59, 0x53, 0x53, 0x57, 0x5a, 0x55, 0x5b, 0x62, 0x67, 0x69, 0x6c, 0x71, 0x74, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x74, 0x77, 0x78, 0x76, 0x70, 0x6a, 0x65, 0x60, 0x60, 0x63, 0x69, 0x73, 0x80, 0x8e, 0x96, 0x9a, 0x97, 0x92, 0x8e, 0x89, 0x80, 0x75, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x77, 0x7b, 0x7d, 0x7d, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x73, 0x71, 0x71, 0x71, 0x72, 0x72, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x80, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x80, 0x81, 0x82, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x88, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x80, 0x7c, 0x76, 0x6e, 0x66, 0x5e, 0x58, 0x55, 0x55, 0x59, 0x5c, 0x5f, 0x61, 0x65, 0x6c, 0x72, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x75, 0x77, 0x78, 0x76, 0x73, 0x6f, 0x6c, 0x61, 0x61, 0x62, 0x65, 0x6d, 0x7a, 0x89, 0x93, 0x98, 0x97, 0x95, 0x94, 0x8f, 0x86, 0x7a, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x70, 0x73, 0x75, 0x79, 0x7c, 0x7f, 0x7e, 0x7b, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x76, 0x77, 0x79, 0x7b, 0x7e, 0x80, 0x82, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x72, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x80, 0x81, 0x83, 0x85, 0x88, 0x8a, 0x8c, 0x8d, 0x8b, 0x8c, 0x8c, 0x8b, 0x89, 0x84, 0x7f, 0x7c, 0x82, 0x84, 0x84, 0x81, 0x77, 0x68, 0x59, 0x4f, 0x56, 0x58, 0x59, 0x59, 0x5b, 0x60, 0x69, 0x70, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x76, 0x77, 0x77, 0x76, 0x74, 0x72, 0x70, 0x62, 0x62, 0x62, 0x64, 0x6a, 0x76, 0x86, 0x91, 0x97, 0x97, 0x97, 0x97, 0x93, 0x8a, 0x7d, 0x73, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x70, 0x6f, 0x6e, 0x6d, 0x6f, 0x72, 0x75, 0x77, 0x7a, 0x7d, 0x7f, 0x7e, 0x7b, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x74, 0x75, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7f, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x85, 0x86, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x87, 0x86, 0x84, 0x83, 0x81, 0x81, 0x81, 0x82, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x74, 0x73, 0x72, 0x73, 0x76, 0x7c, 0x81, 0x85, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x85, 0x86, 0x87, 0x8a, 0x8b, 0x8d, 0x8d, 0x8d, 0x8b, 0x8a, 0x88, 0x84, 0x84, 0x84, 0x81, 0x7d, 0x77, 0x71, 0x6e, 0x57, 0x57, 0x58, 0x59, 0x5c, 0x5f, 0x62, 0x64, 0x6d, 0x6f, 0x71, 0x74, 0x76, 0x77, 0x77, 0x77, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x73, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x78, 0x79, 0x79, 0x75, 0x71, 0x6e, 0x64, 0x5e, 0x5d, 0x63, 0x66, 0x6b, 0x80, 0x97, 0x90, 0x94, 0x9b, 0x9e, 0x9a, 0x91, 0x86, 0x7e, 0x70, 0x6d, 0x6a, 0x6a, 0x6d, 0x6e, 0x6d, 0x6b, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x73, 0x76, 0x78, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x76, 0x77, 0x79, 0x79, 0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x80, 0x80, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x83, 0x82, 0x81, 0x81, 0x82, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x76, 0x76, 0x77, 0x7a, 0x7d, 0x81, 0x84, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x8a, 0x8b, 0x8d, 0x8e, 0x8f, 0x8f, 0x8e, 0x8e, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x79, 0x69, 0x65, 0x5e, 0x59, 0x57, 0x58, 0x5b, 0x5e, 0x66, 0x68, 0x6b, 0x6f, 0x72, 0x74, 0x76, 0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x78, 0x79, 0x79, 0x76, 0x72, 0x6f, 0x65, 0x5f, 0x5e, 0x63, 0x66, 0x6b, 0x7f, 0x96, 0x92, 0x95, 0x9a, 0x9c, 0x99, 0x92, 0x89, 0x84, 0x73, 0x6f, 0x6c, 0x6b, 0x6d, 0x6e, 0x6d, 0x6b, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x73, 0x76, 0x78, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x73, 0x75, 0x77, 0x79, 0x7c, 0x7d, 0x7e, 0x83, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7a, 0x7b, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x87, 0x88, 0x8b, 0x8e, 0x91, 0x92, 0x93, 0x94, 0x8c, 0x8b, 0x89, 0x86, 0x85, 0x84, 0x85, 0x85, 0x7e, 0x77, 0x6b, 0x5f, 0x58, 0x55, 0x55, 0x57, 0x5c, 0x5d, 0x61, 0x65, 0x6a, 0x6e, 0x72, 0x74, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x71, 0x70, 0x6f, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x78, 0x79, 0x79, 0x76, 0x73, 0x71, 0x67, 0x60, 0x5f, 0x64, 0x65, 0x6a, 0x7d, 0x94, 0x95, 0x96, 0x98, 0x99, 0x97, 0x93, 0x8f, 0x8c, 0x79, 0x74, 0x6f, 0x6d, 0x6d, 0x6e, 0x6d, 0x6b, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x6f, 0x70, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x73, 0x76, 0x77, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x74, 0x75, 0x77, 0x7a, 0x7d, 0x7f, 0x82, 0x83, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x81, 0x82, 0x82, 0x81, 0x81, 0x81, 0x82, 0x84, 0x84, 0x80, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x83, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x81, 0x83, 0x86, 0x8a, 0x8e, 0x91, 0x94, 0x95, 0x93, 0x90, 0x8c, 0x89, 0x86, 0x86, 0x87, 0x87, 0x86, 0x82, 0x7a, 0x71, 0x67, 0x5f, 0x59, 0x55, 0x53, 0x54, 0x57, 0x5a, 0x5f, 0x65, 0x6a, 0x6c, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x79, 0x77, 0x74, 0x72, 0x6a, 0x63, 0x60, 0x64, 0x65, 0x68, 0x7b, 0x91, 0x97, 0x97, 0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x80, 0x7a, 0x73, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x75, 0x76, 0x78, 0x7b, 0x7f, 0x82, 0x84, 0x85, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x89, 0x89, 0x88, 0x88, 0x86, 0x84, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7c, 0x7e, 0x80, 0x84, 0x87, 0x8b, 0x8e, 0x90, 0x97, 0x94, 0x8f, 0x8a, 0x86, 0x84, 0x83, 0x83, 0x83, 0x85, 0x86, 0x84, 0x7d, 0x72, 0x66, 0x5e, 0x54, 0x53, 0x53, 0x54, 0x57, 0x5b, 0x60, 0x63, 0x6c, 0x6d, 0x6f, 0x71, 0x74, 0x77, 0x78, 0x79, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x77, 0x76, 0x74, 0x6d, 0x65, 0x62, 0x65, 0x64, 0x66, 0x78, 0x8e, 0x98, 0x97, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x89, 0x81, 0x77, 0x71, 0x6e, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x70, 0x70, 0x71, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x75, 0x77, 0x79, 0x7c, 0x7f, 0x81, 0x84, 0x85, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x87, 0x87, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x8b, 0x89, 0x85, 0x81, 0x7e, 0x7d, 0x7c, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7d, 0x7f, 0x82, 0x85, 0x88, 0x89, 0x94, 0x93, 0x91, 0x8e, 0x8a, 0x86, 0x82, 0x80, 0x7f, 0x84, 0x8a, 0x8d, 0x8a, 0x81, 0x76, 0x6f, 0x61, 0x5e, 0x5a, 0x56, 0x55, 0x56, 0x59, 0x5b, 0x60, 0x62, 0x65, 0x6a, 0x6f, 0x73, 0x77, 0x79, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x70, 0x67, 0x64, 0x65, 0x64, 0x65, 0x76, 0x8b, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x90, 0x87, 0x7b, 0x73, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6d, 0x6f, 0x70, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x73, 0x72, 0x71, 0x70, 0x71, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x76, 0x77, 0x79, 0x7b, 0x7e, 0x80, 0x82, 0x83, 0x81, 0x81, 0x80, 0x80, 0x81, 0x83, 0x85, 0x86, 0x85, 0x86, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85, 0x87, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x88, 0x83, 0x7c, 0x75, 0x71, 0x71, 0x72, 0x74, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x84, 0x8d, 0x8f, 0x91, 0x92, 0x91, 0x8d, 0x88, 0x85, 0x83, 0x85, 0x87, 0x88, 0x87, 0x85, 0x82, 0x81, 0x74, 0x6f, 0x67, 0x5f, 0x59, 0x57, 0x58, 0x59, 0x56, 0x58, 0x5c, 0x60, 0x65, 0x69, 0x6d, 0x6f, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x72, 0x69, 0x65, 0x66, 0x63, 0x64, 0x74, 0x89, 0x95, 0x96, 0x98, 0x99, 0x99, 0x98, 0x96, 0x95, 0x96, 0x8c, 0x7f, 0x74, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x74, 0x73, 0x71, 0x70, 0x71, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x81, 0x84, 0x86, 0x88, 0x84, 0x85, 0x86, 0x87, 0x88, 0x8a, 0x8b, 0x8b, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x84, 0x82, 0x82, 0x82, 0x83, 0x83, 0x89, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x7e, 0x75, 0x6c, 0x67, 0x67, 0x6a, 0x6d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x80, 0x81, 0x82, 0x86, 0x8b, 0x91, 0x96, 0x97, 0x94, 0x8f, 0x8c, 0x89, 0x86, 0x82, 0x7f, 0x7f, 0x83, 0x88, 0x8c, 0x83, 0x7c, 0x71, 0x66, 0x5e, 0x59, 0x58, 0x59, 0x52, 0x53, 0x56, 0x59, 0x5d, 0x60, 0x63, 0x64, 0x71, 0x72, 0x73, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x73, 0x6a, 0x65, 0x66, 0x63, 0x63, 0x73, 0x88, 0x93, 0x95, 0x98, 0x9a, 0x9a, 0x98, 0x95, 0x93, 0x99, 0x8f, 0x80, 0x75, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x74, 0x73, 0x72, 0x71, 0x71, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x73, 0x79, 0x79, 0x7b, 0x7d, 0x80, 0x84, 0x87, 0x89, 0x83, 0x85, 0x87, 0x89, 0x8b, 0x8d, 0x8d, 0x8d, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x88, 0x88, 0x89, 0x89, 0x87, 0x85, 0x82, 0x80, 0x87, 0x88, 0x88, 0x89, 0x89, 0x88, 0x87, 0x86, 0x8a, 0x89, 0x87, 0x86, 0x85, 0x84, 0x84, 0x84, 0x87, 0x86, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x89, 0x87, 0x86, 0x84, 0x84, 0x84, 0x85, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x86, 0x88, 0x8a, 0x89, 0x83, 0x80, 0x84, 0x8d, 0x8f, 0x89, 0x82, 0x70, 0x68, 0x5d, 0x54, 0x4f, 0x51, 0x56, 0x5a, 0x59, 0x64, 0x73, 0x7d, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7f, 0x82, 0x82, 0x80, 0x80, 0x82, 0x84, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x82, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x96, 0x8b, 0x8b, 0x8b, 0x8a, 0x88, 0x85, 0x82, 0x80, 0x84, 0x86, 0x87, 0x84, 0x7a, 0x6b, 0x5d, 0x53, 0x55, 0x56, 0x58, 0x5a, 0x5a, 0x59, 0x57, 0x56, 0x60, 0x62, 0x65, 0x69, 0x6d, 0x70, 0x72, 0x73, 0x71, 0x73, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x73, 0x71, 0x69, 0x69, 0x67, 0x62, 0x5e, 0x64, 0x71, 0x7c, 0x92, 0x94, 0x97, 0x9a, 0x9a, 0x99, 0x97, 0x95, 0x99, 0x96, 0x8e, 0x7f, 0x70, 0x69, 0x6c, 0x71, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x79, 0x76, 0x75, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x70, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x78, 0x78, 0x79, 0x7b, 0x7e, 0x82, 0x85, 0x87, 0x83, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x8d, 0x8d, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x88, 0x89, 0x89, 0x89, 0x87, 0x85, 0x83, 0x82, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x88, 0x87, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x87, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x87, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x85, 0x86, 0x87, 0x89, 0x8a, 0x81, 0x82, 0x86, 0x8a, 0x8b, 0x85, 0x79, 0x70, 0x65, 0x60, 0x58, 0x51, 0x4d, 0x4e, 0x52, 0x54, 0x52, 0x5b, 0x67, 0x71, 0x77, 0x7b, 0x7f, 0x82, 0x7e, 0x80, 0x81, 0x80, 0x7d, 0x7d, 0x7f, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x84, 0x87, 0x8b, 0x8e, 0x91, 0x92, 0x92, 0x91, 0x91, 0x8f, 0x8c, 0x88, 0x85, 0x83, 0x84, 0x86, 0x87, 0x86, 0x81, 0x77, 0x6e, 0x67, 0x5e, 0x5c, 0x57, 0x54, 0x53, 0x55, 0x58, 0x5a, 0x58, 0x59, 0x5b, 0x5d, 0x5f, 0x60, 0x61, 0x62, 0x69, 0x6b, 0x6d, 0x70, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6d, 0x67, 0x67, 0x66, 0x61, 0x5e, 0x64, 0x71, 0x7d, 0x93, 0x95, 0x97, 0x99, 0x9a, 0x99, 0x97, 0x96, 0x98, 0x96, 0x8f, 0x83, 0x74, 0x6c, 0x6c, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x71, 0x76, 0x76, 0x77, 0x79, 0x7c, 0x7f, 0x82, 0x83, 0x83, 0x84, 0x86, 0x89, 0x8a, 0x8b, 0x8b, 0x8b, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x87, 0x89, 0x89, 0x89, 0x89, 0x88, 0x86, 0x85, 0x84, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x87, 0x88, 0x86, 0x85, 0x85, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x87, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x7b, 0x84, 0x8d, 0x8d, 0x83, 0x73, 0x64, 0x5c, 0x57, 0x55, 0x51, 0x4e, 0x4c, 0x4c, 0x4d, 0x4e, 0x4b, 0x50, 0x58, 0x5f, 0x66, 0x70, 0x7b, 0x83, 0x81, 0x82, 0x81, 0x7e, 0x7b, 0x7a, 0x7e, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x96, 0x95, 0x94, 0x92, 0x90, 0x8d, 0x8a, 0x88, 0x85, 0x86, 0x88, 0x89, 0x88, 0x85, 0x82, 0x80, 0x6e, 0x68, 0x5e, 0x55, 0x51, 0x53, 0x58, 0x5c, 0x56, 0x56, 0x56, 0x56, 0x56, 0x57, 0x57, 0x57, 0x5f, 0x60, 0x62, 0x64, 0x66, 0x67, 0x67, 0x67, 0x69, 0x6a, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x63, 0x64, 0x64, 0x60, 0x5e, 0x65, 0x73, 0x7f, 0x94, 0x96, 0x98, 0x99, 0x9a, 0x99, 0x97, 0x96, 0x96, 0x96, 0x92, 0x88, 0x7b, 0x71, 0x6c, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x72, 0x73, 0x74, 0x75, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x75, 0x74, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x74, 0x74, 0x75, 0x76, 0x79, 0x7b, 0x7e, 0x7f, 0x82, 0x83, 0x85, 0x87, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x87, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x89, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8b, 0x80, 0x89, 0x8e, 0x87, 0x74, 0x61, 0x57, 0x54, 0x4d, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4b, 0x49, 0x4b, 0x4d, 0x4f, 0x55, 0x61, 0x70, 0x7a, 0x82, 0x83, 0x82, 0x7f, 0x7c, 0x7b, 0x7f, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x8c, 0x8d, 0x8e, 0x7e, 0x79, 0x6f, 0x66, 0x5e, 0x5a, 0x58, 0x58, 0x59, 0x59, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x58, 0x59, 0x5a, 0x5c, 0x5d, 0x5e, 0x5e, 0x5f, 0x5f, 0x60, 0x60, 0x61, 0x62, 0x62, 0x62, 0x62, 0x60, 0x62, 0x62, 0x60, 0x5f, 0x68, 0x77, 0x84, 0x96, 0x97, 0x98, 0x99, 0x99, 0x98, 0x97, 0x96, 0x95, 0x95, 0x94, 0x8e, 0x84, 0x78, 0x6e, 0x69, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x74, 0x73, 0x73, 0x73, 0x74, 0x76, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x73, 0x73, 0x73, 0x74, 0x76, 0x78, 0x7b, 0x7c, 0x80, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87, 0x86, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x84, 0x85, 0x86, 0x87, 0x88, 0x87, 0x86, 0x86, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x8b, 0x8c, 0x86, 0x76, 0x62, 0x55, 0x53, 0x57, 0x4b, 0x4d, 0x4e, 0x4f, 0x4f, 0x4e, 0x4c, 0x4b, 0x4c, 0x4b, 0x49, 0x48, 0x4a, 0x53, 0x60, 0x6a, 0x7d, 0x80, 0x82, 0x81, 0x7f, 0x7f, 0x82, 0x84, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x84, 0x85, 0x86, 0x89, 0x8c, 0x8f, 0x91, 0x93, 0x8d, 0x8c, 0x8a, 0x89, 0x89, 0x8a, 0x8c, 0x8d, 0x89, 0x88, 0x85, 0x7e, 0x74, 0x68, 0x5d, 0x57, 0x5a, 0x59, 0x58, 0x58, 0x59, 0x5a, 0x5c, 0x5d, 0x57, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x59, 0x5a, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5e, 0x5e, 0x61, 0x62, 0x61, 0x62, 0x6c, 0x7c, 0x8a, 0x97, 0x98, 0x98, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x92, 0x8b, 0x80, 0x73, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x74, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x73, 0x74, 0x76, 0x78, 0x79, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x83, 0x83, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x87, 0x88, 0x85, 0x86, 0x88, 0x89, 0x8a, 0x89, 0x89, 0x89, 0x85, 0x87, 0x88, 0x8a, 0x8a, 0x88, 0x86, 0x85, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x84, 0x84, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x8e, 0x86, 0x77, 0x64, 0x55, 0x50, 0x53, 0x59, 0x4e, 0x4f, 0x50, 0x50, 0x50, 0x4e, 0x4d, 0x4c, 0x4d, 0x4d, 0x4b, 0x48, 0x47, 0x4c, 0x54, 0x5b, 0x70, 0x76, 0x7d, 0x81, 0x82, 0x81, 0x82, 0x84, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7d, 0x7e, 0x7f, 0x82, 0x86, 0x8a, 0x8e, 0x90, 0x8e, 0x8d, 0x8b, 0x89, 0x87, 0x87, 0x87, 0x87, 0x8d, 0x8f, 0x91, 0x8e, 0x86, 0x7a, 0x6c, 0x64, 0x5d, 0x5c, 0x59, 0x57, 0x56, 0x56, 0x57, 0x58, 0x59, 0x59, 0x58, 0x58, 0x58, 0x59, 0x5a, 0x5b, 0x58, 0x58, 0x58, 0x58, 0x59, 0x5b, 0x5c, 0x5d, 0x5e, 0x61, 0x63, 0x63, 0x66, 0x71, 0x83, 0x91, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x99, 0x97, 0x96, 0x95, 0x91, 0x87, 0x7b, 0x71, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x74, 0x73, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x75, 0x77, 0x78, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x83, 0x84, 0x85, 0x87, 0x88, 0x88, 0x87, 0x87, 0x88, 0x89, 0x8b, 0x8c, 0x8b, 0x89, 0x86, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x87, 0x87, 0x88, 0x88, 0x87, 0x85, 0x83, 0x81, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x86, 0x79, 0x66, 0x57, 0x51, 0x51, 0x53, 0x53, 0x52, 0x51, 0x50, 0x4e, 0x4d, 0x4c, 0x4b, 0x4b, 0x49, 0x4c, 0x4e, 0x4d, 0x4b, 0x4c, 0x50, 0x53, 0x5e, 0x68, 0x75, 0x7e, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x84, 0x86, 0x88, 0x8c, 0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x8b, 0x8d, 0x8f, 0x8f, 0x8d, 0x88, 0x82, 0x7f, 0x70, 0x6c, 0x67, 0x60, 0x5b, 0x58, 0x57, 0x56, 0x5a, 0x59, 0x58, 0x57, 0x57, 0x58, 0x5a, 0x5b, 0x5a, 0x5a, 0x59, 0x59, 0x59, 0x5b, 0x5d, 0x5e, 0x5e, 0x62, 0x65, 0x66, 0x6a, 0x76, 0x89, 0x97, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9c, 0x98, 0x96, 0x95, 0x94, 0x8e, 0x82, 0x78, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74, 0x76, 0x77, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x85, 0x87, 0x88, 0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x89, 0x8b, 0x8c, 0x8d, 0x8c, 0x89, 0x86, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x88, 0x88, 0x89, 0x88, 0x87, 0x84, 0x81, 0x80, 0x82, 0x83, 0x85, 0x86, 0x85, 0x84, 0x82, 0x81, 0x7c, 0x6d, 0x5b, 0x52, 0x52, 0x54, 0x50, 0x4c, 0x54, 0x52, 0x4f, 0x4b, 0x49, 0x49, 0x49, 0x4a, 0x45, 0x49, 0x4f, 0x51, 0x4f, 0x4f, 0x50, 0x51, 0x51, 0x5e, 0x6e, 0x7b, 0x80, 0x7f, 0x7d, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x85, 0x83, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x89, 0x8a, 0x8b, 0x8c, 0x8b, 0x89, 0x86, 0x85, 0x89, 0x89, 0x88, 0x89, 0x8c, 0x8f, 0x92, 0x94, 0x86, 0x81, 0x79, 0x6f, 0x66, 0x60, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x57, 0x56, 0x57, 0x59, 0x5a, 0x5c, 0x5c, 0x5a, 0x5a, 0x5a, 0x5c, 0x5d, 0x5f, 0x5f, 0x62, 0x66, 0x68, 0x6d, 0x79, 0x8c, 0x9a, 0x9b, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9e, 0x99, 0x95, 0x95, 0x96, 0x91, 0x86, 0x7d, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x76, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x77, 0x76, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x83, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x89, 0x86, 0x82, 0x82, 0x84, 0x86, 0x86, 0x84, 0x81, 0x8a, 0x89, 0x80, 0x82, 0x8b, 0x87, 0x78, 0x5b, 0x55, 0x4f, 0x50, 0x53, 0x54, 0x50, 0x4b, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x49, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d, 0x4c, 0x51, 0x5a, 0x65, 0x71, 0x7c, 0x84, 0x89, 0x80, 0x7f, 0x80, 0x83, 0x86, 0x87, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x83, 0x84, 0x87, 0x88, 0x89, 0x89, 0x88, 0x88, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8c, 0x8a, 0x87, 0x82, 0x7b, 0x75, 0x71, 0x61, 0x5f, 0x5c, 0x59, 0x58, 0x59, 0x5a, 0x5c, 0x5a, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x5f, 0x5b, 0x60, 0x69, 0x75, 0x81, 0x8d, 0x96, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x98, 0x99, 0x99, 0x98, 0x95, 0x91, 0x8c, 0x89, 0x77, 0x73, 0x6d, 0x6b, 0x6c, 0x6c, 0x6a, 0x68, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x71, 0x71, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x80, 0x81, 0x82, 0x84, 0x84, 0x85, 0x84, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x8c, 0x8c, 0x8b, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x8a, 0x86, 0x83, 0x82, 0x85, 0x86, 0x85, 0x83, 0x7e, 0x87, 0x88, 0x81, 0x82, 0x86, 0x7e, 0x6e, 0x58, 0x53, 0x4f, 0x4f, 0x53, 0x54, 0x50, 0x4b, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4d, 0x50, 0x56, 0x60, 0x6b, 0x76, 0x80, 0x85, 0x80, 0x7f, 0x7e, 0x80, 0x82, 0x82, 0x80, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x83, 0x85, 0x87, 0x88, 0x88, 0x88, 0x87, 0x84, 0x85, 0x85, 0x86, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x8a, 0x8b, 0x8a, 0x88, 0x84, 0x81, 0x7e, 0x7c, 0x78, 0x73, 0x6d, 0x69, 0x66, 0x65, 0x65, 0x64, 0x65, 0x65, 0x66, 0x67, 0x68, 0x69, 0x69, 0x71, 0x75, 0x7a, 0x82, 0x8a, 0x92, 0x97, 0x9a, 0x9b, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x98, 0x98, 0x99, 0x98, 0x96, 0x92, 0x8f, 0x8c, 0x7a, 0x74, 0x6f, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x75, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x80, 0x80, 0x82, 0x83, 0x85, 0x86, 0x87, 0x88, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x85, 0x81, 0x81, 0x82, 0x83, 0x81, 0x7f, 0x79, 0x81, 0x84, 0x82, 0x80, 0x7c, 0x6e, 0x5e, 0x53, 0x50, 0x4e, 0x4f, 0x51, 0x52, 0x4f, 0x4c, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x4a, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4e, 0x4f, 0x51, 0x58, 0x61, 0x6d, 0x78, 0x7f, 0x81, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x87, 0x87, 0x87, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89, 0x86, 0x88, 0x8b, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c, 0x8f, 0x8c, 0x88, 0x83, 0x80, 0x7e, 0x7e, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7f, 0x7f, 0x80, 0x81, 0x8c, 0x8d, 0x8f, 0x91, 0x94, 0x97, 0x99, 0x9a, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x97, 0x95, 0x92, 0x90, 0x7e, 0x78, 0x70, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6f, 0x70, 0x71, 0x73, 0x73, 0x73, 0x73, 0x72, 0x6d, 0x6e, 0x6f, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x70, 0x74, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x82, 0x7f, 0x7b, 0x7b, 0x7d, 0x7d, 0x7a, 0x78, 0x74, 0x79, 0x7e, 0x7f, 0x7b, 0x70, 0x5e, 0x4f, 0x4e, 0x4d, 0x4d, 0x4f, 0x50, 0x50, 0x4f, 0x4e, 0x4e, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4e, 0x4d, 0x4d, 0x50, 0x58, 0x63, 0x6f, 0x76, 0x82, 0x82, 0x81, 0x7e, 0x7c, 0x7c, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7d, 0x7e, 0x80, 0x81, 0x83, 0x85, 0x86, 0x86, 0x84, 0x84, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88, 0x86, 0x88, 0x8b, 0x8e, 0x90, 0x91, 0x91, 0x91, 0x8d, 0x8d, 0x8d, 0x8e, 0x90, 0x92, 0x94, 0x96, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x99, 0x97, 0x95, 0x94, 0x83, 0x7c, 0x73, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x72, 0x73, 0x75, 0x77, 0x77, 0x77, 0x77, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7f, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x79, 0x76, 0x74, 0x74, 0x76, 0x76, 0x73, 0x70, 0x73, 0x72, 0x75, 0x78, 0x72, 0x63, 0x51, 0x46, 0x4a, 0x4c, 0x4f, 0x50, 0x4f, 0x4e, 0x4e, 0x4e, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4e, 0x4c, 0x4a, 0x4b, 0x51, 0x5b, 0x65, 0x6b, 0x7f, 0x82, 0x84, 0x82, 0x7e, 0x7d, 0x80, 0x84, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7d, 0x7d, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e, 0x91, 0x94, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x98, 0x97, 0x97, 0x89, 0x81, 0x76, 0x6f, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x76, 0x79, 0x7b, 0x7b, 0x79, 0x76, 0x74, 0x72, 0x70, 0x6e, 0x70, 0x72, 0x72, 0x6f, 0x6c, 0x74, 0x6c, 0x6a, 0x6d, 0x67, 0x57, 0x49, 0x46, 0x49, 0x4d, 0x51, 0x51, 0x4f, 0x4c, 0x4d, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4d, 0x4b, 0x4a, 0x4b, 0x4f, 0x55, 0x5c, 0x61, 0x75, 0x7d, 0x84, 0x85, 0x81, 0x7e, 0x81, 0x85, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8a, 0x8e, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x98, 0x99, 0x9a, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x96, 0x96, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x8e, 0x85, 0x78, 0x70, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x70, 0x73, 0x74, 0x74, 0x72, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x73, 0x76, 0x78, 0x78, 0x76, 0x73, 0x71, 0x6f, 0x6d, 0x6d, 0x6f, 0x73, 0x73, 0x70, 0x6d, 0x77, 0x68, 0x60, 0x62, 0x5d, 0x4e, 0x46, 0x49, 0x49, 0x4e, 0x54, 0x53, 0x4f, 0x4b, 0x4c, 0x4f, 0x4d, 0x4c, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4f, 0x52, 0x56, 0x58, 0x68, 0x74, 0x81, 0x86, 0x81, 0x7d, 0x7f, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88, 0x8a, 0x8b, 0x8b, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8d, 0x8c, 0x8b, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x92, 0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x99, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x96, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x92, 0x88, 0x7a, 0x70, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6d, 0x6e, 0x71, 0x72, 0x71, 0x6f, 0x6d, 0x6b, 0x6a, 0x6b, 0x6b, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x70, 0x70, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x70, 0x72, 0x76, 0x78, 0x78, 0x76, 0x72, 0x70, 0x6f, 0x6e, 0x6e, 0x71, 0x74, 0x75, 0x73, 0x6f, 0x79, 0x66, 0x5a, 0x5b, 0x56, 0x49, 0x45, 0x4d, 0x49, 0x4f, 0x55, 0x55, 0x4f, 0x4a, 0x4b, 0x4f, 0x4d, 0x4c, 0x4b, 0x4b, 0x49, 0x49, 0x48, 0x47, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x4b, 0x4d, 0x4e, 0x50, 0x51, 0x52, 0x53, 0x5f, 0x6d, 0x7e, 0x84, 0x80, 0x7c, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x83, 0x81, 0x80, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x87, 0x8a, 0x8c, 0x8f, 0x90, 0x8c, 0x8e, 0x90, 0x92, 0x95, 0x97, 0x98, 0x98, 0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9c, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x99, 0x99, 0x98, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x8a, 0x7b, 0x71, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x73, 0x73, 0x74, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x70, 0x71, 0x73, 0x73, 0x72, 0x71, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f, 0x71, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x70, 0x71, 0x71, 0x73, 0x72, 0x71, 0x70, 0x70, 0x72, 0x73, 0x75, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x6e, 0x67, 0x5c, 0x51, 0x4a, 0x47, 0x49, 0x4a, 0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4c, 0x4c, 0x4b, 0x4a, 0x48, 0x47, 0x46, 0x46, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4d, 0x4f, 0x50, 0x4f, 0x5d, 0x71, 0x7e, 0x81, 0x80, 0x7f, 0x80, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x8c, 0x8d, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x99, 0x8e, 0x80, 0x75, 0x70, 0x6e, 0x6d, 0x6c, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x74, 0x74, 0x75, 0x76, 0x76, 0x78, 0x7a, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7d, 0x7d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x72, 0x72, 0x73, 0x73, 0x72, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6b, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x69, 0x5f, 0x53, 0x4a, 0x47, 0x49, 0x4b, 0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4c, 0x4b, 0x4b, 0x4a, 0x48, 0x47, 0x46, 0x46, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4d, 0x4f, 0x50, 0x50, 0x5a, 0x69, 0x77, 0x80, 0x82, 0x80, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x8c, 0x8c, 0x8e, 0x8f, 0x91, 0x93, 0x94, 0x95, 0x96, 0x96, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x99, 0x8f, 0x81, 0x76, 0x71, 0x6f, 0x6e, 0x6d, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7b, 0x7d, 0x7e, 0x7c, 0x7b, 0x79, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x71, 0x6c, 0x63, 0x56, 0x4c, 0x47, 0x48, 0x4b, 0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x47, 0x46, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x4a, 0x4b, 0x4c, 0x4e, 0x4f, 0x51, 0x54, 0x5d, 0x6d, 0x7d, 0x85, 0x82, 0x7c, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x8b, 0x8b, 0x8c, 0x8e, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x99, 0x8f, 0x81, 0x76, 0x72, 0x70, 0x70, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x72, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x72, 0x6f, 0x67, 0x5a, 0x4d, 0x47, 0x49, 0x4d, 0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4b, 0x4b, 0x4a, 0x49, 0x49, 0x48, 0x47, 0x47, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x4b, 0x4d, 0x4e, 0x51, 0x4e, 0x52, 0x62, 0x78, 0x85, 0x83, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x8b, 0x8d, 0x8e, 0x90, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x99, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x8f, 0x81, 0x77, 0x73, 0x72, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x6b, 0x6c, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6d, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x6d, 0x6d, 0x6e, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x70, 0x70, 0x6a, 0x5d, 0x4d, 0x46, 0x49, 0x4f, 0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4b, 0x4a, 0x49, 0x4a, 0x4a, 0x4b, 0x4c, 0x50, 0x4a, 0x4b, 0x5a, 0x71, 0x81, 0x84, 0x7f, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x81, 0x83, 0x83, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8c, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x8e, 0x81, 0x77, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6d, 0x6d, 0x6c, 0x6c, 0x6a, 0x68, 0x66, 0x64, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x68, 0x6e, 0x70, 0x6c, 0x5e, 0x4d, 0x45, 0x49, 0x51, 0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4b, 0x4d, 0x49, 0x4a, 0x56, 0x69, 0x7a, 0x83, 0x85, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x82, 0x83, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x8b, 0x8a, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x8c, 0x7f, 0x76, 0x72, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x6a, 0x6b, 0x6d, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6b, 0x6b, 0x6c, 0x6c, 0x6a, 0x68, 0x66, 0x65, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x6e, 0x6c, 0x69, 0x67, 0x6a, 0x6e, 0x6c, 0x5f, 0x4d, 0x45, 0x4a, 0x53, 0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4d, 0x54, 0x61, 0x71, 0x82, 0x8c, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x92, 0x92, 0x93, 0x94, 0x95, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x94, 0x8b, 0x7e, 0x75, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x76, 0x75, 0x74, 0x73, 0x74, 0x77, 0x79, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x75, 0x75, 0x6a, 0x6b, 0x6d, 0x6e, 0x70, 0x70, 0x70, 0x70, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6c, 0x6d, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x69, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x68, 0x69, 0x69, 0x6b, 0x6c, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x6e, 0x6d, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6b, 0x6c, 0x6b, 0x69, 0x67, 0x65, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x6e, 0x6b, 0x68, 0x66, 0x68, 0x6d, 0x6c, 0x5f, 0x4d, 0x45, 0x4a, 0x54, 0x51, 0x50, 0x4f, 0x4f, 0x4d, 0x4d, 0x4c, 0x4b, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x49, 0x4a, 0x47, 0x4b, 0x50, 0x54, 0x5c, 0x6c, 0x81, 0x90, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x93, 0x8a, 0x7d, 0x74, 0x71, 0x71, 0x72, 0x72, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x72, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x77, 0x75, 0x74, 0x73, 0x74, 0x77, 0x7a, 0x7c, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x69, 0x6b, 0x6d, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6e, 0x6d, 0x6b, 0x6b, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6a, 0x69, 0x67, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x6f, 0x6f, 0x6d, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x70, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x67, 0x5e, 0x56, 0x51, 0x4f, 0x4f, 0x50, 0x50, 0x4f, 0x4f, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x48, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4c, 0x4d, 0x4e, 0x50, 0x57, 0x68, 0x80, 0x92, 0x88, 0x87, 0x84, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x81, 0x81, 0x85, 0x86, 0x88, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x8d, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x92, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x92, 0x89, 0x7c, 0x73, 0x71, 0x72, 0x73, 0x73, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x78, 0x75, 0x76, 0x79, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6a, 0x6b, 0x6e, 0x70, 0x70, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x6f, 0x6f, 0x6d, 0x6b, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x6c, 0x67, 0x5f, 0x57, 0x52, 0x4f, 0x50, 0x50, 0x4f, 0x4e, 0x4e, 0x4d, 0x4c, 0x4c, 0x4b, 0x4b, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4b, 0x4d, 0x4e, 0x4f, 0x55, 0x66, 0x7d, 0x8f, 0x8a, 0x89, 0x86, 0x83, 0x81, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x87, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x90, 0x87, 0x7b, 0x73, 0x71, 0x71, 0x72, 0x72, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x77, 0x75, 0x75, 0x79, 0x7b, 0x7b, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6a, 0x6a, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6c, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6d, 0x68, 0x60, 0x59, 0x53, 0x51, 0x50, 0x51, 0x4d, 0x4d, 0x4c, 0x4c, 0x4b, 0x4b, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4c, 0x4d, 0x4e, 0x53, 0x62, 0x78, 0x89, 0x8d, 0x8c, 0x89, 0x86, 0x83, 0x81, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8c, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8c, 0x8c, 0x8b, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x92, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x8b, 0x83, 0x79, 0x72, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x79, 0x79, 0x7a, 0x78, 0x75, 0x73, 0x74, 0x78, 0x7b, 0x7b, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x6e, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x6b, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6a, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x6d, 0x68, 0x61, 0x5a, 0x54, 0x52, 0x51, 0x51, 0x4c, 0x4c, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x4b, 0x4c, 0x4d, 0x51, 0x5e, 0x72, 0x81, 0x90, 0x8e, 0x8c, 0x89, 0x85, 0x83, 0x81, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x84, 0x86, 0x88, 0x8b, 0x8e, 0x90, 0x92, 0x92, 0x8b, 0x8b, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x86, 0x7f, 0x76, 0x71, 0x70, 0x71, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x75, 0x72, 0x71, 0x73, 0x77, 0x7a, 0x7b, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x75, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x67, 0x69, 0x6b, 0x6d, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6b, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x6c, 0x68, 0x62, 0x5b, 0x55, 0x52, 0x51, 0x50, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x4b, 0x4d, 0x4d, 0x4f, 0x5a, 0x6c, 0x7a, 0x90, 0x8f, 0x8d, 0x8b, 0x87, 0x84, 0x82, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x88, 0x8a, 0x8d, 0x91, 0x93, 0x95, 0x96, 0x96, 0x8e, 0x8e, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x96, 0x97, 0x97, 0x97, 0x95, 0x93, 0x92, 0x82, 0x7c, 0x75, 0x71, 0x71, 0x72, 0x71, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x72, 0x73, 0x75, 0x77, 0x79, 0x79, 0x79, 0x78, 0x72, 0x70, 0x6e, 0x71, 0x76, 0x7a, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x6a, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x6d, 0x6c, 0x6b, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x67, 0x61, 0x5b, 0x55, 0x51, 0x50, 0x4f, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x4b, 0x4d, 0x4d, 0x4e, 0x58, 0x67, 0x74, 0x8f, 0x8f, 0x8e, 0x8c, 0x89, 0x86, 0x83, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x84, 0x83, 0x82, 0x83, 0x85, 0x87, 0x89, 0x8d, 0x8f, 0x92, 0x95, 0x97, 0x98, 0x97, 0x97, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x97, 0x96, 0x93, 0x90, 0x8e, 0x7e, 0x79, 0x74, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x6f, 0x6d, 0x6c, 0x6f, 0x75, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x69, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x6b, 0x6d, 0x6d, 0x6d, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6d, 0x6b, 0x6a, 0x69, 0x68, 0x69, 0x6a, 0x6b, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x69, 0x66, 0x60, 0x5a, 0x55, 0x51, 0x4e, 0x4d, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x4c, 0x4e, 0x4e, 0x4e, 0x56, 0x64, 0x70, 0x8d, 0x8d, 0x8d, 0x8c, 0x8a, 0x87, 0x84, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x85, 0x84, 0x83, 0x83, 0x85, 0x88, 0x8b, 0x8d, 0x92, 0x93, 0x96, 0x98, 0x99, 0x98, 0x97, 0x95, 0x93, 0x92, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x98, 0x95, 0x91, 0x8d, 0x8a, 0x7b, 0x77, 0x73, 0x73, 0x74, 0x75, 0x74, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x78, 0x79, 0x79, 0x78, 0x75, 0x74, 0x6d, 0x6b, 0x6a, 0x6e, 0x74, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x69, 0x69, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x66, 0x67, 0x6a, 0x6c, 0x6c, 0x6c, 0x6a, 0x69, 0x6b, 0x6b, 0x6d, 0x6e, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6b, 0x6b, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6a, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x68, 0x65, 0x60, 0x5a, 0x54, 0x50, 0x4e, 0x4c, 0x4b, 0x4b, 0x4b, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x4a, 0x4d, 0x4f, 0x4e, 0x4e, 0x55, 0x63, 0x6e, 0x8c, 0x8c, 0x8c, 0x8c, 0x8a, 0x88, 0x85, 0x83, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x86, 0x89, 0x8d, 0x90, 0x94, 0x96, 0x99, 0x9a, 0x9a, 0x98, 0x96, 0x94, 0x94, 0x93, 0x91, 0x90, 0x90, 0x90, 0x92, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x91, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x98, 0x94, 0x90, 0x8b, 0x88, 0x7a, 0x77, 0x73, 0x73, 0x75, 0x76, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x74, 0x72, 0x6c, 0x6a, 0x6a, 0x6d, 0x74, 0x79, 0x7b, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x6b, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x75, 0x73, 0x71, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6c, 0x6a, 0x6a, 0x6c, 0x6d, 0x6e, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x67, 0x63, 0x5c, 0x55, 0x4f, 0x4c, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4c, 0x4e, 0x4f, 0x4f, 0x4f, 0x54, 0x5c, 0x62, 0x82, 0x8c, 0x91, 0x8c, 0x8c, 0x90, 0x8b, 0x80, 0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x82, 0x82, 0x84, 0x85, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x83, 0x84, 0x86, 0x8a, 0x8d, 0x90, 0x93, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x96, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x92, 0x93, 0x95, 0x94, 0x94, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x9a, 0x98, 0x90, 0x85, 0x7c, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x77, 0x73, 0x70, 0x6b, 0x6c, 0x6f, 0x72, 0x77, 0x7b, 0x7f, 0x81, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x74, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x67, 0x63, 0x5c, 0x55, 0x4f, 0x4c, 0x4b, 0x4a, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4c, 0x4e, 0x4f, 0x4f, 0x4f, 0x54, 0x5b, 0x61, 0x80, 0x8c, 0x91, 0x8d, 0x8c, 0x8f, 0x8b, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x85, 0x85, 0x87, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x87, 0x89, 0x8c, 0x8f, 0x92, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x94, 0x94, 0x93, 0x93, 0x94, 0x95, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x99, 0x98, 0x91, 0x86, 0x7d, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7a, 0x78, 0x74, 0x70, 0x6e, 0x6a, 0x6c, 0x6e, 0x71, 0x75, 0x78, 0x7b, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x67, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6c, 0x6a, 0x6a, 0x67, 0x68, 0x69, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x68, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x66, 0x62, 0x5b, 0x54, 0x4e, 0x4b, 0x4a, 0x49, 0x4b, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4c, 0x4d, 0x4f, 0x4e, 0x4f, 0x53, 0x59, 0x5f, 0x7c, 0x8a, 0x92, 0x8e, 0x8c, 0x8f, 0x8b, 0x82, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x85, 0x86, 0x87, 0x88, 0x89, 0x88, 0x88, 0x87, 0x8a, 0x8b, 0x8d, 0x8f, 0x92, 0x95, 0x96, 0x98, 0x97, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x93, 0x93, 0x92, 0x91, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x95, 0x96, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x97, 0x99, 0x98, 0x91, 0x87, 0x7f, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x77, 0x74, 0x70, 0x6c, 0x6a, 0x6b, 0x6c, 0x6e, 0x71, 0x74, 0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x6c, 0x6c, 0x6d, 0x6c, 0x6c, 0x6a, 0x68, 0x67, 0x65, 0x65, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x65, 0x61, 0x5a, 0x53, 0x4d, 0x4a, 0x49, 0x49, 0x4c, 0x4c, 0x4c, 0x4b, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4b, 0x4d, 0x4f, 0x4e, 0x4e, 0x51, 0x57, 0x5c, 0x77, 0x88, 0x93, 0x8f, 0x8c, 0x8e, 0x8b, 0x83, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x87, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8f, 0x90, 0x91, 0x93, 0x95, 0x97, 0x98, 0x99, 0x98, 0x97, 0x95, 0x93, 0x91, 0x90, 0x90, 0x90, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x96, 0x97, 0x98, 0x97, 0x91, 0x87, 0x80, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x79, 0x77, 0x74, 0x71, 0x6d, 0x6a, 0x68, 0x6f, 0x70, 0x72, 0x74, 0x76, 0x78, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x69, 0x69, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x67, 0x67, 0x67, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6a, 0x68, 0x67, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6a, 0x6b, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x68, 0x68, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65, 0x62, 0x5e, 0x58, 0x51, 0x4d, 0x4a, 0x4a, 0x4a, 0x4d, 0x4d, 0x4c, 0x4b, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4d, 0x4e, 0x4e, 0x4e, 0x50, 0x55, 0x59, 0x70, 0x84, 0x92, 0x90, 0x8b, 0x8c, 0x89, 0x83, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x86, 0x86, 0x85, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e, 0x93, 0x93, 0x94, 0x95, 0x97, 0x98, 0x99, 0x9a, 0x97, 0x96, 0x93, 0x91, 0x8f, 0x8e, 0x8e, 0x8e, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x93, 0x94, 0x95, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x96, 0x96, 0x95, 0x8f, 0x86, 0x7f, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x78, 0x75, 0x71, 0x6e, 0x6b, 0x69, 0x69, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x68, 0x6b, 0x6c, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x68, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x68, 0x69, 0x68, 0x68, 0x67, 0x66, 0x65, 0x64, 0x64, 0x5f, 0x5b, 0x56, 0x50, 0x4c, 0x4b, 0x4b, 0x4b, 0x4e, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4c, 0x4e, 0x4e, 0x4d, 0x4f, 0x53, 0x57, 0x6a, 0x80, 0x91, 0x8f, 0x89, 0x89, 0x87, 0x82, 0x82, 0x84, 0x87, 0x89, 0x8b, 0x8b, 0x8b, 0x8a, 0x8d, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x95, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x99, 0x96, 0x94, 0x91, 0x8e, 0x8d, 0x8c, 0x8d, 0x8e, 0x91, 0x91, 0x93, 0x93, 0x94, 0x93, 0x93, 0x92, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x94, 0x92, 0x8d, 0x84, 0x7d, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x76, 0x72, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x75, 0x77, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x6b, 0x69, 0x67, 0x66, 0x66, 0x68, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x6f, 0x6e, 0x6e, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x68, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x65, 0x64, 0x63, 0x5b, 0x58, 0x53, 0x4f, 0x4c, 0x4b, 0x4c, 0x4d, 0x4f, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x49, 0x4c, 0x4e, 0x4e, 0x4d, 0x4e, 0x51, 0x55, 0x64, 0x7d, 0x90, 0x8f, 0x88, 0x87, 0x86, 0x81, 0x85, 0x88, 0x8b, 0x8f, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x94, 0x92, 0x8f, 0x8c, 0x8b, 0x8c, 0x8d, 0x8e, 0x90, 0x91, 0x93, 0x94, 0x95, 0x94, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x92, 0x92, 0x92, 0x92, 0x94, 0x95, 0x96, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x94, 0x92, 0x90, 0x8a, 0x80, 0x79, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x75, 0x73, 0x70, 0x6d, 0x6c, 0x6d, 0x6f, 0x70, 0x73, 0x75, 0x79, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x6b, 0x69, 0x67, 0x66, 0x66, 0x68, 0x6b, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x69, 0x6b, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x66, 0x66, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x65, 0x64, 0x63, 0x59, 0x56, 0x52, 0x4e, 0x4c, 0x4c, 0x4d, 0x4f, 0x4f, 0x4e, 0x4e, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x4a, 0x4a, 0x49, 0x4c, 0x4e, 0x4e, 0x4d, 0x4d, 0x50, 0x54, 0x61, 0x7b, 0x90, 0x8e, 0x86, 0x85, 0x85, 0x81, 0x88, 0x8a, 0x8e, 0x92, 0x94, 0x94, 0x93, 0x93, 0x91, 0x90, 0x90, 0x90, 0x91, 0x93, 0x96, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x93, 0x91, 0x8e, 0x8b, 0x8a, 0x8b, 0x8d, 0x8e, 0x90, 0x91, 0x93, 0x94, 0x95, 0x95, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93, 0x92, 0x92, 0x93, 0x94, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x99, 0x96, 0x93, 0x91, 0x8e, 0x88, 0x7e, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x74, 0x72, 0x6e, 0x6c, 0x6c, 0x6e, 0x71, 0x73, 0x70, 0x73, 0x76, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x67, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x69, 0x68, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x69, 0x69, 0x68, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x66, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x69, 0x67, 0x66, 0x66, 0x68, 0x6b, 0x6c, 0x6c, 0x6a, 0x67, 0x65, 0x54, 0x52, 0x50, 0x4e, 0x4d, 0x4d, 0x4e, 0x4e, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x47, 0x47, 0x46, 0x46, 0x45, 0x44, 0x44, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4d, 0x4f, 0x4f, 0x4d, 0x4c, 0x4f, 0x51, 0x60, 0x79, 0x8c, 0x8e, 0x8b, 0x8e, 0x8f, 0x8b, 0x91, 0x91, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x91, 0x92, 0x93, 0x94, 0x96, 0x97, 0x97, 0x98, 0x8c, 0x8f, 0x94, 0x97, 0x98, 0x96, 0x93, 0x90, 0x8c, 0x8d, 0x8b, 0x8a, 0x8d, 0x91, 0x90, 0x8a, 0x92, 0x94, 0x97, 0x99, 0x98, 0x96, 0x93, 0x90, 0x93, 0x95, 0x98, 0x9a, 0x9a, 0x9a, 0x98, 0x97, 0x92, 0x93, 0x92, 0x8f, 0x8b, 0x8b, 0x8f, 0x93, 0x90, 0x91, 0x93, 0x94, 0x96, 0x97, 0x98, 0x99, 0x9b, 0x97, 0x93, 0x92, 0x94, 0x96, 0x97, 0x97, 0x95, 0x8d, 0x8e, 0x95, 0x91, 0x81, 0x74, 0x72, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x67, 0x6b, 0x72, 0x78, 0x7c, 0x7d, 0x7c, 0x7b, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x67, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6b, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x68, 0x68, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6d, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x65, 0x66, 0x68, 0x6a, 0x69, 0x66, 0x63, 0x60, 0x53, 0x51, 0x4f, 0x4d, 0x4c, 0x4c, 0x4d, 0x4d, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x46, 0x46, 0x46, 0x45, 0x45, 0x45, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x4a, 0x4c, 0x4f, 0x4f, 0x4c, 0x4c, 0x4e, 0x51, 0x5f, 0x78, 0x8b, 0x8d, 0x8c, 0x8f, 0x90, 0x8c, 0x90, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x94, 0x96, 0x95, 0x96, 0x96, 0x97, 0x97, 0x95, 0x94, 0x95, 0x98, 0x9c, 0x9e, 0x9f, 0x9c, 0x99, 0x97, 0x97, 0x96, 0x93, 0x92, 0x95, 0x98, 0x98, 0x97, 0x97, 0x98, 0x9a, 0x9b, 0x9a, 0x9a, 0x99, 0x9a, 0x94, 0x96, 0x99, 0x9b, 0x99, 0x95, 0x92, 0x91, 0x97, 0x98, 0x99, 0x97, 0x94, 0x93, 0x93, 0x94, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x93, 0x94, 0x92, 0x8b, 0x83, 0x80, 0x82, 0x86, 0x86, 0x7f, 0x81, 0x8b, 0x8b, 0x7e, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d, 0x6a, 0x6d, 0x73, 0x78, 0x7b, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x69, 0x6a, 0x6b, 0x67, 0x66, 0x66, 0x65, 0x65, 0x65, 0x66, 0x67, 0x68, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6b, 0x6b, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x64, 0x66, 0x67, 0x67, 0x65, 0x61, 0x5d, 0x5a, 0x51, 0x50, 0x4f, 0x4d, 0x4c, 0x4c, 0x4c, 0x4c, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x49, 0x4c, 0x4f, 0x4e, 0x4c, 0x4c, 0x4e, 0x51, 0x5e, 0x76, 0x8b, 0x8d, 0x8c, 0x91, 0x92, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x91, 0x93, 0x94, 0x9a, 0x99, 0x97, 0x98, 0x98, 0x95, 0x8f, 0x8a, 0x91, 0x93, 0x95, 0x96, 0x96, 0x93, 0x90, 0x8e, 0x92, 0x8e, 0x8c, 0x8c, 0x8d, 0x8f, 0x92, 0x96, 0x92, 0x92, 0x91, 0x8e, 0x8c, 0x8c, 0x90, 0x94, 0x92, 0x96, 0x9b, 0x9a, 0x94, 0x8c, 0x86, 0x83, 0x80, 0x82, 0x85, 0x86, 0x84, 0x80, 0x7c, 0x79, 0x78, 0x77, 0x75, 0x73, 0x71, 0x71, 0x71, 0x71, 0x87, 0x8f, 0x91, 0x84, 0x6e, 0x63, 0x69, 0x74, 0x75, 0x6e, 0x72, 0x7f, 0x82, 0x7a, 0x74, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x77, 0x75, 0x74, 0x72, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6d, 0x70, 0x74, 0x78, 0x7b, 0x7b, 0x7a, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6d, 0x70, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x68, 0x67, 0x66, 0x65, 0x65, 0x66, 0x66, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x6a, 0x67, 0x68, 0x68, 0x67, 0x64, 0x5f, 0x5a, 0x56, 0x50, 0x4f, 0x4e, 0x4d, 0x4c, 0x4b, 0x4b, 0x4b, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x44, 0x44, 0x45, 0x46, 0x46, 0x47, 0x47, 0x48, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x49, 0x4c, 0x4e, 0x4e, 0x4c, 0x4b, 0x4e, 0x51, 0x5c, 0x75, 0x8a, 0x8d, 0x8d, 0x92, 0x94, 0x90, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x92, 0x94, 0x95, 0x9c, 0x99, 0x96, 0x96, 0x96, 0x90, 0x86, 0x7d, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x76, 0x74, 0x72, 0x77, 0x71, 0x70, 0x73, 0x73, 0x72, 0x77, 0x82, 0x85, 0x84, 0x7f, 0x76, 0x6e, 0x6d, 0x72, 0x79, 0x8b, 0x93, 0x99, 0x97, 0x8d, 0x80, 0x76, 0x72, 0x64, 0x66, 0x6b, 0x6f, 0x70, 0x6c, 0x64, 0x5d, 0x63, 0x61, 0x5f, 0x5d, 0x5c, 0x5d, 0x5f, 0x61, 0x7b, 0x8b, 0x93, 0x81, 0x62, 0x52, 0x5d, 0x6f, 0x6f, 0x68, 0x6a, 0x77, 0x7b, 0x75, 0x72, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x71, 0x70, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x70, 0x72, 0x76, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6d, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x67, 0x67, 0x68, 0x68, 0x69, 0x69, 0x68, 0x68, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x66, 0x67, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x69, 0x64, 0x5e, 0x59, 0x55, 0x4f, 0x4f, 0x4e, 0x4e, 0x4d, 0x4c, 0x4a, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x44, 0x44, 0x45, 0x46, 0x46, 0x47, 0x47, 0x48, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x49, 0x4c, 0x4e, 0x4e, 0x4c, 0x4b, 0x4e, 0x50, 0x5c, 0x75, 0x8a, 0x8e, 0x8d, 0x92, 0x95, 0x91, 0x8d, 0x8d, 0x8d, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x9a, 0x96, 0x92, 0x93, 0x93, 0x8b, 0x7d, 0x70, 0x64, 0x63, 0x62, 0x61, 0x5f, 0x5d, 0x5b, 0x5a, 0x5c, 0x56, 0x58, 0x62, 0x61, 0x5a, 0x62, 0x72, 0x80, 0x7e, 0x76, 0x68, 0x59, 0x54, 0x59, 0x61, 0x83, 0x8d, 0x97, 0x94, 0x86, 0x74, 0x67, 0x62, 0x60, 0x62, 0x68, 0x70, 0x75, 0x72, 0x69, 0x61, 0x61, 0x5f, 0x5c, 0x5b, 0x5c, 0x60, 0x64, 0x67, 0x73, 0x88, 0x95, 0x83, 0x61, 0x50, 0x5e, 0x74, 0x74, 0x6b, 0x6a, 0x74, 0x78, 0x71, 0x6f, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7b, 0x79, 0x77, 0x75, 0x72, 0x70, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x73, 0x74, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x67, 0x67, 0x68, 0x69, 0x69, 0x68, 0x67, 0x67, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x66, 0x67, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x6b, 0x6b, 0x6b, 0x68, 0x64, 0x5d, 0x57, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4c, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x45, 0x45, 0x45, 0x46, 0x46, 0x46, 0x47, 0x47, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x48, 0x4b, 0x4e, 0x4d, 0x4b, 0x4b, 0x4d, 0x50, 0x5d, 0x76, 0x8b, 0x8e, 0x8e, 0x92, 0x94, 0x91, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x99, 0x93, 0x8f, 0x91, 0x93, 0x8b, 0x78, 0x68, 0x5c, 0x5b, 0x58, 0x56, 0x54, 0x53, 0x52, 0x52, 0x53, 0x4d, 0x55, 0x65, 0x64, 0x59, 0x60, 0x74, 0x83, 0x83, 0x7c, 0x6a, 0x57, 0x4e, 0x53, 0x5a, 0x7c, 0x8a, 0x97, 0x95, 0x83, 0x6d, 0x5f, 0x5a, 0x5e, 0x5f, 0x65, 0x70, 0x7a, 0x7c, 0x74, 0x6c, 0x5e, 0x5b, 0x58, 0x56, 0x57, 0x5b, 0x61, 0x64, 0x71, 0x87, 0x94, 0x84, 0x64, 0x54, 0x62, 0x77, 0x7b, 0x70, 0x6d, 0x74, 0x76, 0x70, 0x6e, 0x73, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x77, 0x74, 0x71, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x69, 0x66, 0x67, 0x68, 0x69, 0x69, 0x68, 0x67, 0x66, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x65, 0x60, 0x5a, 0x54, 0x50, 0x50, 0x50, 0x51, 0x51, 0x4f, 0x4e, 0x4c, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x46, 0x46, 0x46, 0x45, 0x45, 0x45, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x48, 0x4b, 0x4d, 0x4d, 0x4b, 0x4b, 0x4d, 0x50, 0x5e, 0x77, 0x8c, 0x8e, 0x8e, 0x92, 0x94, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x93, 0x94, 0x95, 0x99, 0x93, 0x90, 0x93, 0x96, 0x8e, 0x79, 0x67, 0x59, 0x57, 0x54, 0x51, 0x50, 0x4f, 0x4f, 0x50, 0x53, 0x4e, 0x5c, 0x72, 0x71, 0x61, 0x66, 0x7d, 0x81, 0x83, 0x7f, 0x6f, 0x5b, 0x50, 0x55, 0x5d, 0x79, 0x8a, 0x9b, 0x99, 0x85, 0x6d, 0x5e, 0x58, 0x57, 0x57, 0x5c, 0x6a, 0x79, 0x7f, 0x7a, 0x73, 0x61, 0x5d, 0x56, 0x52, 0x50, 0x53, 0x57, 0x5b, 0x73, 0x85, 0x91, 0x82, 0x64, 0x55, 0x60, 0x72, 0x7c, 0x71, 0x6c, 0x73, 0x75, 0x70, 0x6f, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x76, 0x74, 0x71, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x68, 0x68, 0x68, 0x69, 0x6b, 0x6d, 0x6f, 0x70, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x67, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x66, 0x67, 0x66, 0x67, 0x68, 0x69, 0x69, 0x68, 0x66, 0x65, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6c, 0x6e, 0x6f, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x65, 0x65, 0x64, 0x62, 0x5d, 0x57, 0x51, 0x4d, 0x50, 0x51, 0x51, 0x51, 0x50, 0x4e, 0x4c, 0x4b, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x47, 0x47, 0x46, 0x46, 0x45, 0x44, 0x44, 0x47, 0x47, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4a, 0x48, 0x4b, 0x4d, 0x4d, 0x4b, 0x4a, 0x4d, 0x50, 0x5f, 0x78, 0x8c, 0x8f, 0x8e, 0x92, 0x93, 0x8f, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x95, 0x9b, 0x95, 0x91, 0x96, 0x9a, 0x91, 0x7c, 0x69, 0x54, 0x52, 0x4f, 0x4c, 0x4a, 0x4a, 0x4b, 0x4c, 0x51, 0x4e, 0x5f, 0x78, 0x77, 0x65, 0x6a, 0x82, 0x78, 0x7d, 0x7c, 0x6e, 0x5a, 0x50, 0x55, 0x5d, 0x7a, 0x8c, 0x9e, 0x9d, 0x88, 0x6f, 0x5f, 0x5a, 0x58, 0x57, 0x5c, 0x6b, 0x7d, 0x86, 0x84, 0x7d, 0x72, 0x6c, 0x64, 0x5c, 0x58, 0x59, 0x5c, 0x5e, 0x75, 0x84, 0x8d, 0x7f, 0x63, 0x54, 0x5b, 0x6a, 0x7a, 0x6e, 0x6a, 0x71, 0x74, 0x70, 0x71, 0x78, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x74, 0x72, 0x6f, 0x6c, 0x6a, 0x69, 0x69, 0x6a, 0x67, 0x67, 0x68, 0x69, 0x6c, 0x6e, 0x71, 0x72, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x77, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x67, 0x66, 0x65, 0x64, 0x65, 0x67, 0x68, 0x6a, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x69, 0x6a, 0x6b, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x65, 0x65, 0x65, 0x65, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6b, 0x6d, 0x6e, 0x6e, 0x6d, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x68, 0x66, 0x66, 0x66, 0x66, 0x67, 0x68, 0x6a, 0x6b, 0x67, 0x64, 0x5f, 0x5a, 0x55, 0x51, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4d, 0x4b, 0x4a, 0x4b, 0x4a, 0x49, 0x48, 0x47, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x46, 0x45, 0x44, 0x44, 0x45, 0x46, 0x47, 0x48, 0x48, 0x49, 0x4b, 0x4a, 0x49, 0x4c, 0x4f, 0x4f, 0x4d, 0x4a, 0x5a, 0x76, 0x8f, 0x93, 0x90, 0x93, 0x95, 0x93, 0x90, 0x90, 0x90, 0x91, 0x92, 0x94, 0x95, 0x96, 0x91, 0x93, 0x92, 0x90, 0x96, 0x96, 0x80, 0x66, 0x57, 0x56, 0x53, 0x4e, 0x4b, 0x4d, 0x53, 0x58, 0x63, 0x66, 0x6b, 0x71, 0x77, 0x7b, 0x7d, 0x7e, 0x80, 0x7d, 0x75, 0x66, 0x58, 0x52, 0x55, 0x5b, 0x77, 0x8f, 0x98, 0x95, 0x8b, 0x70, 0x58, 0x58, 0x56, 0x59, 0x61, 0x6d, 0x7b, 0x84, 0x88, 0x88, 0x75, 0x6c, 0x61, 0x5a, 0x58, 0x5a, 0x5b, 0x5b, 0x71, 0x87, 0x95, 0x86, 0x64, 0x4f, 0x55, 0x66, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x78, 0x76, 0x75, 0x71, 0x6f, 0x6c, 0x69, 0x68, 0x69, 0x6b, 0x6d, 0x68, 0x67, 0x66, 0x65, 0x67, 0x6a, 0x6e, 0x70, 0x70, 0x74, 0x79, 0x7a, 0x79, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x67, 0x67, 0x66, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66, 0x67, 0x67, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x68, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x66, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65, 0x66, 0x68, 0x69, 0x6a, 0x67, 0x64, 0x5f, 0x59, 0x54, 0x51, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4d, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x48, 0x48, 0x48, 0x49, 0x4a, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x46, 0x44, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x49, 0x4b, 0x4a, 0x4a, 0x4c, 0x4e, 0x4e, 0x4d, 0x4b, 0x5e, 0x79, 0x90, 0x93, 0x90, 0x94, 0x96, 0x93, 0x90, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x91, 0x94, 0x92, 0x91, 0x96, 0x96, 0x80, 0x65, 0x54, 0x53, 0x50, 0x4b, 0x49, 0x4a, 0x4e, 0x52, 0x67, 0x6a, 0x6e, 0x73, 0x78, 0x7b, 0x7d, 0x7e, 0x7e, 0x7a, 0x70, 0x61, 0x52, 0x4e, 0x53, 0x5a, 0x78, 0x90, 0x99, 0x95, 0x8b, 0x70, 0x58, 0x59, 0x57, 0x5a, 0x63, 0x6f, 0x7a, 0x80, 0x81, 0x7e, 0x6f, 0x67, 0x5d, 0x57, 0x56, 0x59, 0x5a, 0x5b, 0x6f, 0x85, 0x95, 0x86, 0x64, 0x50, 0x57, 0x68, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x70, 0x6e, 0x6b, 0x69, 0x68, 0x69, 0x6b, 0x6c, 0x68, 0x67, 0x66, 0x66, 0x67, 0x6a, 0x6d, 0x6f, 0x6f, 0x74, 0x79, 0x7a, 0x7a, 0x79, 0x7b, 0x7d, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x68, 0x68, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6b, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x67, 0x68, 0x65, 0x65, 0x66, 0x66, 0x66, 0x67, 0x67, 0x67, 0x68, 0x67, 0x67, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x68, 0x67, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x66, 0x66, 0x65, 0x65, 0x64, 0x64, 0x65, 0x66, 0x68, 0x69, 0x67, 0x64, 0x5e, 0x58, 0x54, 0x51, 0x4f, 0x4f, 0x4c, 0x4d, 0x4d, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x49, 0x48, 0x48, 0x48, 0x49, 0x4a, 0x4b, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x46, 0x44, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x49, 0x4c, 0x4b, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e, 0x4e, 0x63, 0x7b, 0x8f, 0x91, 0x90, 0x94, 0x95, 0x92, 0x90, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95, 0x95, 0x92, 0x95, 0x93, 0x92, 0x97, 0x96, 0x7f, 0x64, 0x51, 0x50, 0x4d, 0x4b, 0x4b, 0x4d, 0x4f, 0x52, 0x6e, 0x70, 0x73, 0x76, 0x79, 0x7c, 0x7d, 0x7e, 0x7d, 0x78, 0x6c, 0x5b, 0x4d, 0x4a, 0x51, 0x5a, 0x79, 0x90, 0x99, 0x94, 0x8b, 0x70, 0x58, 0x59, 0x59, 0x5d, 0x67, 0x72, 0x7b, 0x7d, 0x78, 0x73, 0x66, 0x5f, 0x57, 0x52, 0x54, 0x57, 0x5a, 0x5b, 0x6c, 0x83, 0x93, 0x85, 0x65, 0x52, 0x5a, 0x6b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x73, 0x72, 0x6e, 0x6d, 0x6a, 0x68, 0x68, 0x68, 0x6a, 0x6b, 0x68, 0x68, 0x66, 0x66, 0x67, 0x69, 0x6c, 0x6d, 0x6e, 0x73, 0x78, 0x7a, 0x7a, 0x79, 0x7b, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6d, 0x6b, 0x6a, 0x68, 0x66, 0x66, 0x66, 0x66, 0x63, 0x63, 0x63, 0x63, 0x64, 0x64, 0x64, 0x64, 0x66, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6c, 0x67, 0x66, 0x65, 0x65, 0x65, 0x66, 0x67, 0x68, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x68, 0x68, 0x69, 0x69, 0x68, 0x67, 0x66, 0x66, 0x66, 0x65, 0x65, 0x65, 0x64, 0x64, 0x64, 0x65, 0x67, 0x68, 0x67, 0x63, 0x5d, 0x57, 0x53, 0x50, 0x50, 0x50, 0x4c, 0x4d, 0x4d, 0x4d, 0x4d, 0x4c, 0x4b, 0x4a, 0x49, 0x48, 0x48, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4a, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x44, 0x45, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4c, 0x4d, 0x4d, 0x4d, 0x4c, 0x4d, 0x50, 0x53, 0x67, 0x7c, 0x8c, 0x8d, 0x8c, 0x91, 0x92, 0x8e, 0x90, 0x91, 0x92, 0x94, 0x94, 0x95, 0x95, 0x94, 0x93, 0x95, 0x94, 0x93, 0x98, 0x96, 0x7e, 0x62, 0x4e, 0x4d, 0x4e, 0x52, 0x57, 0x5c, 0x5e, 0x5f, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7e, 0x7e, 0x79, 0x6c, 0x5a, 0x4c, 0x4a, 0x53, 0x5c, 0x7b, 0x91, 0x99, 0x94, 0x8b, 0x70, 0x59, 0x59, 0x5d, 0x62, 0x6c, 0x78, 0x7e, 0x7c, 0x74, 0x6c, 0x60, 0x5a, 0x52, 0x50, 0x52, 0x56, 0x59, 0x5a, 0x6a, 0x81, 0x92, 0x85, 0x66, 0x54, 0x5d, 0x6f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7c, 0x7b, 0x7a, 0x78, 0x75, 0x73, 0x71, 0x70, 0x6c, 0x6b, 0x6a, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x68, 0x68, 0x67, 0x67, 0x67, 0x69, 0x6a, 0x6b, 0x6c, 0x71, 0x77, 0x7a, 0x7a, 0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x69, 0x68, 0x68, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x65, 0x66, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x62, 0x63, 0x63, 0x64, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x66, 0x65, 0x65, 0x64, 0x65, 0x66, 0x67, 0x68, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x67, 0x66, 0x66, 0x65, 0x66, 0x65, 0x64, 0x64, 0x64, 0x65, 0x66, 0x67, 0x67, 0x63, 0x5c, 0x56, 0x52, 0x50, 0x50, 0x51, 0x4d, 0x4e, 0x4e, 0x4e, 0x4d, 0x4c, 0x4a, 0x49, 0x48, 0x48, 0x47, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x46, 0x45, 0x45, 0x46, 0x47, 0x48, 0x49, 0x49, 0x4a, 0x4b, 0x4e, 0x4f, 0x4e, 0x4c, 0x4e, 0x54, 0x5a, 0x6b, 0x7c, 0x89, 0x88, 0x88, 0x8e, 0x8f, 0x89, 0x91, 0x92, 0x93, 0x95, 0x95, 0x95, 0x94, 0x93, 0x93, 0x96, 0x96, 0x94, 0x98, 0x96, 0x7d, 0x61, 0x4d, 0x4d, 0x52, 0x5c, 0x68, 0x71, 0x74, 0x73, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x81, 0x7c, 0x6f, 0x5f, 0x51, 0x4e, 0x57, 0x60, 0x7c, 0x93, 0x9a, 0x94, 0x8a, 0x6f, 0x59, 0x5a, 0x5f, 0x65, 0x70, 0x7b, 0x81, 0x7e, 0x75, 0x6d, 0x60, 0x5a, 0x53, 0x50, 0x52, 0x56, 0x58, 0x58, 0x68, 0x7f, 0x91, 0x85, 0x67, 0x56, 0x5f, 0x72, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7b, 0x7a, 0x78, 0x75, 0x73, 0x70, 0x6f, 0x6e, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x70, 0x77, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x68, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x67, 0x67, 0x66, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6b, 0x6b, 0x6d, 0x6c, 0x6a, 0x68, 0x66, 0x66, 0x66, 0x66, 0x63, 0x63, 0x63, 0x62, 0x62, 0x62, 0x62, 0x61, 0x62, 0x62, 0x62, 0x63, 0x64, 0x67, 0x69, 0x6a, 0x65, 0x65, 0x65, 0x65, 0x65, 0x67, 0x68, 0x69, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x67, 0x68, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x67, 0x66, 0x65, 0x65, 0x65, 0x65, 0x66, 0x67, 0x66, 0x62, 0x5c, 0x55, 0x51, 0x50, 0x50, 0x52, 0x51, 0x51, 0x50, 0x4f, 0x4e, 0x4b, 0x49, 0x48, 0x48, 0x47, 0x46, 0x45, 0x45, 0x45, 0x46, 0x46, 0x49, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47, 0x45, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x4b, 0x4f, 0x51, 0x4f, 0x4d, 0x50, 0x5a, 0x63, 0x72, 0x80, 0x88, 0x86, 0x87, 0x8e, 0x8e, 0x87, 0x91, 0x92, 0x94, 0x96, 0x96, 0x95, 0x94, 0x93, 0x94, 0x97, 0x97, 0x95, 0x99, 0x96, 0x7d, 0x60, 0x4e, 0x4f, 0x55, 0x64, 0x75, 0x81, 0x82, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x81, 0x7d, 0x74, 0x65, 0x57, 0x53, 0x5a, 0x61, 0x7e, 0x94, 0x9a, 0x94, 0x8a, 0x6f, 0x59, 0x5a, 0x5e, 0x63, 0x6d, 0x79, 0x80, 0x80, 0x78, 0x71, 0x65, 0x5f, 0x57, 0x54, 0x54, 0x56, 0x56, 0x56, 0x67, 0x7e, 0x90, 0x85, 0x67, 0x56, 0x61, 0x73, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x75, 0x72, 0x6f, 0x6e, 0x6d, 0x6d, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x68, 0x6e, 0x76, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x67, 0x68, 0x68, 0x69, 0x68, 0x67, 0x65, 0x64, 0x66, 0x65, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x66, 0x67, 0x67, 0x64, 0x64, 0x64, 0x63, 0x63, 0x62, 0x62, 0x62, 0x61, 0x61, 0x61, 0x61, 0x63, 0x65, 0x66, 0x68, 0x66, 0x65, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6d, 0x6c, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x68, 0x68, 0x67, 0x66, 0x66, 0x66, 0x67, 0x68, 0x66, 0x62, 0x5b, 0x54, 0x50, 0x50, 0x51, 0x52, 0x54, 0x54, 0x53, 0x51, 0x4e, 0x4b, 0x48, 0x47, 0x48, 0x47, 0x46, 0x44, 0x43, 0x42, 0x43, 0x43, 0x47, 0x47, 0x47, 0x47, 0x46, 0x46, 0x46, 0x46, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x46, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x4a, 0x4f, 0x53, 0x51, 0x4e, 0x52, 0x5f, 0x6a, 0x7b, 0x86, 0x8b, 0x88, 0x8a, 0x92, 0x91, 0x8a, 0x91, 0x93, 0x95, 0x97, 0x97, 0x95, 0x93, 0x92, 0x95, 0x98, 0x98, 0x96, 0x9a, 0x96, 0x7c, 0x5e, 0x4f, 0x4f, 0x56, 0x66, 0x79, 0x84, 0x83, 0x7e, 0x82, 0x81, 0x80, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x7e, 0x7c, 0x76, 0x69, 0x5b, 0x56, 0x59, 0x5f, 0x7f, 0x94, 0x9a, 0x93, 0x89, 0x6f, 0x59, 0x5b, 0x58, 0x5d, 0x66, 0x72, 0x7c, 0x7e, 0x7b, 0x76, 0x6d, 0x66, 0x5e, 0x59, 0x57, 0x57, 0x56, 0x54, 0x67, 0x7f, 0x90, 0x85, 0x67, 0x57, 0x61, 0x73, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x76, 0x74, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x69, 0x69, 0x69, 0x68, 0x68, 0x67, 0x66, 0x66, 0x67, 0x6d, 0x75, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x66, 0x67, 0x68, 0x69, 0x68, 0x66, 0x65, 0x63, 0x65, 0x65, 0x64, 0x64, 0x65, 0x67, 0x68, 0x69, 0x69, 0x69, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x67, 0x67, 0x68, 0x68, 0x65, 0x65, 0x65, 0x64, 0x64, 0x63, 0x63, 0x62, 0x60, 0x60, 0x60, 0x60, 0x61, 0x63, 0x65, 0x66, 0x66, 0x66, 0x65, 0x66, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x69, 0x68, 0x67, 0x66, 0x66, 0x67, 0x68, 0x68, 0x66, 0x62, 0x5b, 0x54, 0x50, 0x4f, 0x51, 0x53, 0x56, 0x56, 0x54, 0x52, 0x4f, 0x4b, 0x48, 0x46, 0x49, 0x47, 0x45, 0x43, 0x41, 0x41, 0x40, 0x40, 0x47, 0x46, 0x46, 0x46, 0x46, 0x45, 0x45, 0x45, 0x49, 0x49, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x45, 0x46, 0x47, 0x47, 0x49, 0x49, 0x4a, 0x4b, 0x49, 0x4f, 0x54, 0x52, 0x4f, 0x54, 0x62, 0x6f, 0x81, 0x8b, 0x8f, 0x8b, 0x8d, 0x95, 0x95, 0x8d, 0x91, 0x93, 0x95, 0x97, 0x97, 0x96, 0x93, 0x92, 0x95, 0x99, 0x98, 0x97, 0x9a, 0x96, 0x7c, 0x5e, 0x50, 0x50, 0x56, 0x65, 0x78, 0x81, 0x7e, 0x77, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x7a, 0x7a, 0x76, 0x6a, 0x5d, 0x56, 0x57, 0x5c, 0x80, 0x95, 0x9a, 0x93, 0x89, 0x6f, 0x59, 0x5b, 0x53, 0x57, 0x60, 0x6c, 0x77, 0x7c, 0x7b, 0x78, 0x73, 0x6c, 0x63, 0x5c, 0x5a, 0x58, 0x55, 0x53, 0x67, 0x7f, 0x91, 0x85, 0x68, 0x57, 0x61, 0x73, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x74, 0x72, 0x6f, 0x6d, 0x6b, 0x6b, 0x6b, 0x6c, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6c, 0x6c, 0x69, 0x69, 0x69, 0x68, 0x68, 0x67, 0x65, 0x65, 0x66, 0x6d, 0x75, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x65, 0x64, 0x62, 0x61, 0x62, 0x65, 0x68, 0x6a, 0x63, 0x65, 0x68, 0x6b, 0x6c, 0x6b, 0x69, 0x68, 0x65, 0x67, 0x69, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x6c, 0x6a, 0x67, 0x64, 0x62, 0x61, 0x61, 0x62, 0x62, 0x63, 0x64, 0x65, 0x65, 0x63, 0x62, 0x60, 0x5f, 0x5f, 0x60, 0x62, 0x63, 0x64, 0x65, 0x65, 0x64, 0x63, 0x63, 0x64, 0x66, 0x69, 0x6c, 0x6e, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x66, 0x61, 0x5c, 0x54, 0x4d, 0x4a, 0x4b, 0x4f, 0x52, 0x54, 0x56, 0x58, 0x58, 0x54, 0x4e, 0x48, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x41, 0x40, 0x40, 0x40, 0x41, 0x42, 0x44, 0x45, 0x46, 0x47, 0x49, 0x4a, 0x4a, 0x49, 0x47, 0x46, 0x45, 0x46, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x49, 0x50, 0x55, 0x54, 0x51, 0x56, 0x64, 0x70, 0x85, 0x87, 0x89, 0x8c, 0x8f, 0x90, 0x91, 0x91, 0x96, 0x95, 0x93, 0x92, 0x92, 0x94, 0x96, 0x98, 0x98, 0x9b, 0x99, 0x97, 0x99, 0x95, 0x7b, 0x5d, 0x52, 0x50, 0x53, 0x5e, 0x6f, 0x7d, 0x83, 0x83, 0x84, 0x7d, 0x78, 0x7a, 0x82, 0x85, 0x80, 0x79, 0x7a, 0x71, 0x66, 0x62, 0x64, 0x64, 0x61, 0x5d, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57, 0x56, 0x55, 0x59, 0x64, 0x73, 0x7d, 0x7e, 0x7c, 0x7a, 0x73, 0x71, 0x71, 0x67, 0x56, 0x51, 0x57, 0x64, 0x81, 0x93, 0x86, 0x70, 0x68, 0x6c, 0x70, 0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x79, 0x75, 0x71, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x69, 0x6d, 0x73, 0x79, 0x7c, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x74, 0x75, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x65, 0x64, 0x63, 0x62, 0x63, 0x65, 0x68, 0x6a, 0x65, 0x66, 0x69, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x66, 0x67, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x69, 0x6b, 0x69, 0x67, 0x64, 0x62, 0x62, 0x62, 0x62, 0x62, 0x63, 0x64, 0x65, 0x65, 0x63, 0x62, 0x61, 0x5f, 0x60, 0x60, 0x61, 0x63, 0x64, 0x65, 0x65, 0x63, 0x63, 0x63, 0x64, 0x66, 0x69, 0x6b, 0x6d, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x67, 0x67, 0x68, 0x66, 0x66, 0x66, 0x67, 0x67, 0x67, 0x68, 0x68, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x66, 0x66, 0x61, 0x5c, 0x55, 0x50, 0x4e, 0x4f, 0x53, 0x56, 0x5a, 0x5c, 0x5e, 0x5f, 0x5c, 0x57, 0x50, 0x4c, 0x48, 0x47, 0x47, 0x46, 0x45, 0x45, 0x44, 0x44, 0x43, 0x43, 0x42, 0x42, 0x43, 0x44, 0x46, 0x47, 0x46, 0x47, 0x48, 0x49, 0x49, 0x48, 0x47, 0x46, 0x46, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4a, 0x4b, 0x4c, 0x52, 0x56, 0x55, 0x54, 0x5c, 0x6b, 0x79, 0x87, 0x88, 0x8b, 0x8d, 0x90, 0x91, 0x92, 0x92, 0x96, 0x95, 0x94, 0x93, 0x93, 0x95, 0x97, 0x98, 0x98, 0x9a, 0x99, 0x97, 0x99, 0x94, 0x7a, 0x5d, 0x50, 0x4d, 0x4f, 0x58, 0x66, 0x71, 0x76, 0x77, 0x7a, 0x79, 0x79, 0x7b, 0x7f, 0x81, 0x80, 0x7e, 0x79, 0x70, 0x67, 0x64, 0x66, 0x67, 0x63, 0x5f, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57, 0x57, 0x55, 0x57, 0x61, 0x70, 0x7b, 0x7e, 0x7d, 0x73, 0x6d, 0x6d, 0x6f, 0x66, 0x57, 0x53, 0x5a, 0x63, 0x80, 0x93, 0x87, 0x72, 0x6a, 0x6f, 0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x75, 0x72, 0x6f, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x68, 0x6d, 0x72, 0x79, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x66, 0x65, 0x64, 0x63, 0x64, 0x65, 0x68, 0x69, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x65, 0x66, 0x67, 0x68, 0x69, 0x69, 0x68, 0x67, 0x67, 0x69, 0x68, 0x66, 0x64, 0x63, 0x62, 0x62, 0x62, 0x63, 0x64, 0x64, 0x65, 0x64, 0x63, 0x62, 0x61, 0x5f, 0x60, 0x61, 0x62, 0x63, 0x63, 0x64, 0x65, 0x63, 0x63, 0x63, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x67, 0x67, 0x68, 0x65, 0x65, 0x66, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6e, 0x6d, 0x6c, 0x6b, 0x69, 0x68, 0x66, 0x66, 0x61, 0x5e, 0x59, 0x55, 0x54, 0x57, 0x5b, 0x5d, 0x63, 0x65, 0x67, 0x68, 0x66, 0x61, 0x5c, 0x59, 0x50, 0x4f, 0x4e, 0x4c, 0x4a, 0x48, 0x47, 0x46, 0x47, 0x46, 0x45, 0x45, 0x45, 0x46, 0x47, 0x48, 0x47, 0x47, 0x48, 0x49, 0x49, 0x48, 0x47, 0x47, 0x46, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4b, 0x50, 0x53, 0x55, 0x55, 0x58, 0x64, 0x76, 0x84, 0x89, 0x8b, 0x8d, 0x8f, 0x92, 0x93, 0x93, 0x93, 0x97, 0x96, 0x94, 0x93, 0x93, 0x95, 0x97, 0x99, 0x98, 0x9a, 0x99, 0x96, 0x99, 0x94, 0x79, 0x5c, 0x4d, 0x4b, 0x4b, 0x50, 0x59, 0x61, 0x65, 0x66, 0x6d, 0x74, 0x7a, 0x7b, 0x78, 0x77, 0x7c, 0x81, 0x79, 0x72, 0x6a, 0x69, 0x6b, 0x6c, 0x68, 0x63, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57, 0x59, 0x55, 0x55, 0x5d, 0x6c, 0x78, 0x7e, 0x7f, 0x6e, 0x69, 0x6a, 0x6d, 0x66, 0x58, 0x55, 0x5c, 0x61, 0x7f, 0x94, 0x89, 0x75, 0x6e, 0x74, 0x78, 0x73, 0x75, 0x76, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7a, 0x76, 0x72, 0x6f, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x67, 0x68, 0x68, 0x68, 0x67, 0x67, 0x67, 0x67, 0x67, 0x6d, 0x72, 0x78, 0x7c, 0x7b, 0x7a, 0x7b, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x66, 0x66, 0x65, 0x64, 0x65, 0x66, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x65, 0x64, 0x67, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x65, 0x66, 0x66, 0x65, 0x64, 0x64, 0x63, 0x63, 0x63, 0x64, 0x64, 0x64, 0x64, 0x64, 0x63, 0x63, 0x62, 0x61, 0x61, 0x62, 0x62, 0x63, 0x64, 0x64, 0x65, 0x63, 0x64, 0x64, 0x65, 0x67, 0x69, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x68, 0x68, 0x64, 0x64, 0x65, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x62, 0x60, 0x5d, 0x5b, 0x5b, 0x5e, 0x61, 0x64, 0x67, 0x69, 0x6c, 0x6d, 0x6c, 0x69, 0x65, 0x63, 0x5c, 0x5b, 0x59, 0x57, 0x54, 0x51, 0x4f, 0x4e, 0x4b, 0x4a, 0x48, 0x46, 0x46, 0x45, 0x46, 0x46, 0x47, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4b, 0x4c, 0x50, 0x51, 0x53, 0x55, 0x5b, 0x6a, 0x7d, 0x8b, 0x8c, 0x8d, 0x8f, 0x92, 0x93, 0x94, 0x95, 0x95, 0x97, 0x96, 0x94, 0x93, 0x93, 0x95, 0x97, 0x99, 0x97, 0x9a, 0x98, 0x96, 0x98, 0x93, 0x78, 0x5a, 0x4e, 0x4c, 0x4b, 0x4d, 0x50, 0x54, 0x57, 0x58, 0x64, 0x71, 0x7c, 0x7a, 0x6f, 0x69, 0x70, 0x7a, 0x7c, 0x76, 0x71, 0x71, 0x75, 0x75, 0x6f, 0x69, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57, 0x5a, 0x55, 0x52, 0x59, 0x67, 0x75, 0x7c, 0x7e, 0x71, 0x6c, 0x6d, 0x70, 0x68, 0x59, 0x55, 0x5b, 0x5f, 0x7e, 0x94, 0x8b, 0x77, 0x72, 0x77, 0x7b, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x79, 0x73, 0x6e, 0x6a, 0x69, 0x69, 0x6a, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b, 0x69, 0x68, 0x67, 0x66, 0x65, 0x67, 0x67, 0x66, 0x66, 0x66, 0x67, 0x68, 0x68, 0x6e, 0x73, 0x79, 0x7b, 0x7b, 0x7a, 0x7c, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x67, 0x67, 0x66, 0x66, 0x66, 0x67, 0x68, 0x68, 0x6a, 0x6a, 0x69, 0x69, 0x68, 0x66, 0x65, 0x64, 0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66, 0x66, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x65, 0x64, 0x64, 0x64, 0x63, 0x63, 0x64, 0x63, 0x63, 0x63, 0x64, 0x64, 0x65, 0x65, 0x65, 0x64, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x64, 0x65, 0x66, 0x67, 0x69, 0x6a, 0x6b, 0x6b, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x68, 0x65, 0x63, 0x61, 0x60, 0x61, 0x63, 0x65, 0x67, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x6c, 0x6a, 0x68, 0x68, 0x67, 0x65, 0x62, 0x5f, 0x5d, 0x5b, 0x5a, 0x50, 0x4f, 0x4c, 0x49, 0x47, 0x45, 0x44, 0x44, 0x48, 0x48, 0x48, 0x47, 0x47, 0x48, 0x48, 0x48, 0x47, 0x48, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4f, 0x4f, 0x50, 0x55, 0x5f, 0x6f, 0x81, 0x8c, 0x8e, 0x8f, 0x91, 0x93, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x93, 0x92, 0x93, 0x94, 0x96, 0x98, 0x97, 0x9a, 0x98, 0x95, 0x97, 0x92, 0x77, 0x59, 0x50, 0x50, 0x4f, 0x4d, 0x4c, 0x4d, 0x50, 0x52, 0x62, 0x71, 0x7d, 0x79, 0x69, 0x5f, 0x65, 0x6f, 0x80, 0x7c, 0x79, 0x7a, 0x7e, 0x7d, 0x76, 0x6f, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57, 0x5a, 0x55, 0x52, 0x57, 0x65, 0x72, 0x78, 0x7a, 0x78, 0x73, 0x73, 0x75, 0x6b, 0x59, 0x53, 0x58, 0x5e, 0x7d, 0x94, 0x8b, 0x78, 0x72, 0x77, 0x7b, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x76, 0x71, 0x6c, 0x68, 0x67, 0x68, 0x69, 0x66, 0x67, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x68, 0x67, 0x66, 0x65, 0x64, 0x68, 0x67, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x70, 0x74, 0x79, 0x7b, 0x7a, 0x7a, 0x7b, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x65, 0x65, 0x68, 0x67, 0x66, 0x66, 0x66, 0x66, 0x67, 0x68, 0x64, 0x64, 0x66, 0x67, 0x68, 0x68, 0x67, 0x67, 0x66, 0x66, 0x64, 0x64, 0x63, 0x63, 0x64, 0x65, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66, 0x67, 0x67, 0x66, 0x67, 0x68, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x6a, 0x6a, 0x6b, 0x66, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x67, 0x67, 0x65, 0x64, 0x64, 0x65, 0x66, 0x67, 0x65, 0x66, 0x69, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6f, 0x6e, 0x6c, 0x6b, 0x69, 0x67, 0x65, 0x65, 0x5a, 0x58, 0x54, 0x4f, 0x4b, 0x47, 0x45, 0x44, 0x49, 0x48, 0x47, 0x47, 0x47, 0x47, 0x48, 0x49, 0x48, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4d, 0x50, 0x50, 0x52, 0x59, 0x65, 0x74, 0x83, 0x8b, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x92, 0x91, 0x91, 0x93, 0x95, 0x97, 0x97, 0x9a, 0x98, 0x95, 0x96, 0x91, 0x76, 0x58, 0x51, 0x52, 0x52, 0x4f, 0x4b, 0x4a, 0x4e, 0x52, 0x64, 0x71, 0x7c, 0x79, 0x6b, 0x61, 0x64, 0x6a, 0x82, 0x7e, 0x7d, 0x7f, 0x83, 0x80, 0x77, 0x6f, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57, 0x5a, 0x55, 0x52, 0x58, 0x64, 0x6f, 0x73, 0x72, 0x7a, 0x75, 0x75, 0x76, 0x6b, 0x59, 0x51, 0x56, 0x5d, 0x7d, 0x94, 0x8b, 0x77, 0x70, 0x74, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75, 0x73, 0x71, 0x6f, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x66, 0x66, 0x67, 0x67, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x65, 0x65, 0x64, 0x69, 0x68, 0x68, 0x69, 0x6b, 0x6f, 0x72, 0x75, 0x73, 0x77, 0x7a, 0x7b, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x67, 0x67, 0x69, 0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x66, 0x67, 0x67, 0x66, 0x65, 0x66, 0x68, 0x69, 0x6b, 0x63, 0x65, 0x67, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x67, 0x66, 0x64, 0x63, 0x63, 0x63, 0x65, 0x65, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x67, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x65, 0x64, 0x64, 0x63, 0x65, 0x68, 0x6b, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x67, 0x63, 0x5e, 0x58, 0x52, 0x4d, 0x49, 0x48, 0x49, 0x48, 0x47, 0x46, 0x46, 0x47, 0x48, 0x49, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4d, 0x4e, 0x53, 0x54, 0x57, 0x60, 0x6e, 0x7b, 0x85, 0x8a, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x96, 0x95, 0x95, 0x93, 0x92, 0x91, 0x90, 0x90, 0x92, 0x94, 0x95, 0x97, 0x9a, 0x97, 0x94, 0x96, 0x90, 0x75, 0x57, 0x4f, 0x52, 0x53, 0x4f, 0x4a, 0x49, 0x4e, 0x53, 0x66, 0x70, 0x7b, 0x7c, 0x74, 0x6e, 0x6d, 0x70, 0x80, 0x7d, 0x7c, 0x7f, 0x82, 0x7e, 0x74, 0x6a, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57, 0x58, 0x55, 0x54, 0x5a, 0x65, 0x6d, 0x6d, 0x6b, 0x73, 0x6e, 0x70, 0x73, 0x6a, 0x58, 0x51, 0x56, 0x5d, 0x7d, 0x93, 0x8a, 0x75, 0x6d, 0x70, 0x73, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x71, 0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x66, 0x66, 0x66, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65, 0x65, 0x6a, 0x6a, 0x6a, 0x6c, 0x70, 0x75, 0x79, 0x7c, 0x76, 0x79, 0x7c, 0x7b, 0x79, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x68, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x67, 0x67, 0x66, 0x66, 0x66, 0x67, 0x67, 0x67, 0x66, 0x66, 0x66, 0x67, 0x69, 0x6b, 0x6c, 0x63, 0x65, 0x67, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x67, 0x66, 0x64, 0x63, 0x63, 0x63, 0x65, 0x66, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x68, 0x6a, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6c, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x69, 0x69, 0x69, 0x69, 0x68, 0x68, 0x68, 0x68, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6b, 0x6a, 0x68, 0x66, 0x64, 0x63, 0x62, 0x64, 0x65, 0x69, 0x6c, 0x6e, 0x70, 0x70, 0x70, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6c, 0x66, 0x5f, 0x58, 0x52, 0x4d, 0x4b, 0x4a, 0x49, 0x47, 0x46, 0x46, 0x47, 0x49, 0x4a, 0x49, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4e, 0x56, 0x57, 0x5c, 0x67, 0x74, 0x80, 0x88, 0x8a, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x90, 0x8f, 0x8f, 0x91, 0x93, 0x94, 0x97, 0x99, 0x97, 0x94, 0x95, 0x90, 0x75, 0x57, 0x4c, 0x50, 0x52, 0x4e, 0x49, 0x48, 0x4e, 0x54, 0x68, 0x70, 0x79, 0x7e, 0x7d, 0x7a, 0x77, 0x77, 0x7d, 0x7a, 0x7a, 0x7d, 0x80, 0x7b, 0x70, 0x66, 0x82, 0x95, 0x99, 0x93, 0x8b, 0x71, 0x58, 0x57, 0x57, 0x55, 0x55, 0x5c, 0x66, 0x6c, 0x6a, 0x66, 0x6b, 0x67, 0x6a, 0x6f, 0x68, 0x58, 0x52, 0x58, 0x5e, 0x7d, 0x93, 0x89, 0x74, 0x6b, 0x6d, 0x6f, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x73, 0x70, 0x6f, 0x67, 0x69, 0x6c, 0x6f, 0x70, 0x6e, 0x6b, 0x69, 0x67, 0x67, 0x67, 0x66, 0x66, 0x65, 0x65, 0x65, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x6b, 0x6b, 0x6c, 0x6e, 0x72, 0x78, 0x7e, 0x81, 0x78, 0x7b, 0x7d, 0x7b, 0x78, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x68, 0x69, 0x68, 0x67, 0x66, 0x65, 0x64, 0x65, 0x67, 0x69, 0x6b, 0x6c, 0x6c, 0x6c, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x65, 0x65, 0x65, 0x66, 0x67, 0x67, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6d, 0x6c, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x68, 0x67, 0x67, 0x67, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x69, 0x6a, 0x6a, 0x69, 0x67, 0x62, 0x5e, 0x5b, 0x4d, 0x4c, 0x4a, 0x49, 0x48, 0x49, 0x4a, 0x4b, 0x48, 0x4a, 0x4c, 0x4e, 0x4f, 0x4e, 0x4c, 0x4b, 0x51, 0x56, 0x61, 0x6d, 0x78, 0x80, 0x86, 0x89, 0x8d, 0x90, 0x93, 0x95, 0x96, 0x95, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x93, 0x9e, 0x97, 0x93, 0x98, 0x9a, 0x8b, 0x6b, 0x51, 0x4c, 0x4d, 0x4e, 0x4d, 0x4c, 0x4f, 0x55, 0x5b, 0x69, 0x71, 0x7c, 0x83, 0x83, 0x7f, 0x7c, 0x7a, 0x83, 0x7d, 0x7d, 0x82, 0x7b, 0x6b, 0x64, 0x67, 0x82, 0x93, 0x96, 0x92, 0x8d, 0x74, 0x59, 0x55, 0x55, 0x53, 0x54, 0x5b, 0x67, 0x72, 0x7a, 0x7d, 0x78, 0x78, 0x75, 0x6e, 0x64, 0x5d, 0x59, 0x59, 0x5f, 0x79, 0x91, 0x8d, 0x74, 0x62, 0x65, 0x71, 0x79, 0x77, 0x74, 0x71, 0x6e, 0x6d, 0x6c, 0x6b, 0x69, 0x6b, 0x6e, 0x70, 0x70, 0x6e, 0x6c, 0x6a, 0x67, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x60, 0x62, 0x65, 0x68, 0x6b, 0x6d, 0x6e, 0x6e, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x65, 0x66, 0x67, 0x68, 0x68, 0x67, 0x66, 0x66, 0x64, 0x65, 0x67, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x65, 0x65, 0x66, 0x66, 0x67, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6c, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x67, 0x66, 0x67, 0x67, 0x69, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6c, 0x68, 0x64, 0x62, 0x59, 0x56, 0x53, 0x4f, 0x4b, 0x49, 0x48, 0x48, 0x47, 0x48, 0x4a, 0x4c, 0x4e, 0x4f, 0x50, 0x51, 0x50, 0x56, 0x61, 0x6d, 0x79, 0x81, 0x87, 0x89, 0x8e, 0x90, 0x93, 0x95, 0x96, 0x95, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x9a, 0x94, 0x91, 0x97, 0x9a, 0x8c, 0x6e, 0x54, 0x4b, 0x4c, 0x4c, 0x4a, 0x48, 0x4a, 0x50, 0x55, 0x6d, 0x73, 0x7b, 0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x81, 0x7d, 0x7d, 0x7f, 0x74, 0x64, 0x60, 0x67, 0x83, 0x93, 0x96, 0x91, 0x8c, 0x74, 0x59, 0x55, 0x57, 0x55, 0x54, 0x5a, 0x63, 0x6d, 0x73, 0x75, 0x6a, 0x6c, 0x6c, 0x67, 0x5e, 0x57, 0x53, 0x52, 0x5f, 0x7a, 0x92, 0x90, 0x77, 0x64, 0x64, 0x6e, 0x76, 0x74, 0x72, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x6b, 0x6d, 0x6f, 0x6f, 0x6d, 0x6a, 0x69, 0x68, 0x68, 0x69, 0x69, 0x69, 0x68, 0x67, 0x66, 0x64, 0x66, 0x69, 0x6c, 0x70, 0x72, 0x73, 0x74, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x63, 0x64, 0x66, 0x67, 0x67, 0x67, 0x67, 0x67, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6d, 0x6d, 0x6d, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x66, 0x66, 0x66, 0x67, 0x68, 0x68, 0x69, 0x69, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x6b, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x71, 0x6f, 0x6c, 0x6a, 0x68, 0x65, 0x60, 0x5a, 0x54, 0x4e, 0x4b, 0x49, 0x49, 0x48, 0x48, 0x49, 0x4b, 0x4f, 0x53, 0x56, 0x50, 0x57, 0x62, 0x6f, 0x7a, 0x83, 0x88, 0x8b, 0x8f, 0x90, 0x93, 0x95, 0x95, 0x95, 0x93, 0x92, 0x91, 0x92, 0x93, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x92, 0x91, 0x96, 0x98, 0x8b, 0x6f, 0x58, 0x50, 0x51, 0x51, 0x4f, 0x4e, 0x50, 0x56, 0x5b, 0x73, 0x76, 0x7a, 0x7a, 0x79, 0x7a, 0x7c, 0x7f, 0x7e, 0x7c, 0x7c, 0x79, 0x69, 0x58, 0x5a, 0x68, 0x83, 0x94, 0x96, 0x91, 0x8c, 0x74, 0x59, 0x56, 0x58, 0x56, 0x55, 0x59, 0x61, 0x68, 0x6d, 0x6e, 0x64, 0x67, 0x6a, 0x67, 0x60, 0x57, 0x52, 0x50, 0x5e, 0x79, 0x93, 0x92, 0x7b, 0x66, 0x62, 0x69, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6d, 0x6d, 0x6d, 0x6b, 0x69, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x67, 0x69, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x62, 0x63, 0x65, 0x66, 0x67, 0x68, 0x67, 0x67, 0x65, 0x66, 0x68, 0x6b, 0x6c, 0x6d, 0x6e, 0x6e, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x69, 0x69, 0x6a, 0x6a, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6c, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x73, 0x73, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70, 0x74, 0x71, 0x6d, 0x67, 0x61, 0x5c, 0x58, 0x56, 0x51, 0x4e, 0x4b, 0x48, 0x49, 0x4c, 0x50, 0x53, 0x52, 0x59, 0x64, 0x72, 0x7d, 0x86, 0x8a, 0x8c, 0x90, 0x91, 0x93, 0x94, 0x94, 0x94, 0x93, 0x92, 0x91, 0x92, 0x94, 0x95, 0x96, 0x97, 0x97, 0x97, 0x98, 0x94, 0x93, 0x97, 0x96, 0x88, 0x6e, 0x58, 0x4d, 0x4f, 0x50, 0x50, 0x51, 0x55, 0x5c, 0x61, 0x7a, 0x7a, 0x79, 0x76, 0x74, 0x76, 0x7c, 0x82, 0x7c, 0x79, 0x77, 0x70, 0x5d, 0x4e, 0x56, 0x68, 0x84, 0x94, 0x96, 0x91, 0x8c, 0x74, 0x5a, 0x57, 0x57, 0x55, 0x54, 0x59, 0x61, 0x69, 0x6d, 0x6e, 0x6a, 0x6e, 0x71, 0x6f, 0x67, 0x5d, 0x56, 0x53, 0x5d, 0x77, 0x91, 0x92, 0x7c, 0x66, 0x60, 0x63, 0x6d, 0x6c, 0x6b, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x69, 0x67, 0x66, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x68, 0x6a, 0x6e, 0x73, 0x77, 0x7a, 0x7c, 0x7d, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x62, 0x63, 0x65, 0x67, 0x68, 0x68, 0x68, 0x68, 0x66, 0x67, 0x69, 0x6b, 0x6d, 0x6e, 0x6e, 0x6e, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x67, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6e, 0x70, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6e, 0x6f, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x78, 0x77, 0x75, 0x72, 0x6f, 0x6c, 0x69, 0x68, 0x5e, 0x5a, 0x54, 0x4e, 0x4b, 0x4b, 0x4d, 0x4e, 0x55, 0x5d, 0x69, 0x76, 0x81, 0x88, 0x8c, 0x8e, 0x91, 0x92, 0x93, 0x93, 0x94, 0x93, 0x93, 0x93, 0x91, 0x93, 0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x99, 0x97, 0x96, 0x98, 0x95, 0x85, 0x6d, 0x5a, 0x4c, 0x4e, 0x51, 0x53, 0x55, 0x5b, 0x63, 0x6a, 0x7f, 0x7d, 0x78, 0x73, 0x70, 0x73, 0x7b, 0x82, 0x7b, 0x73, 0x6d, 0x64, 0x54, 0x49, 0x54, 0x68, 0x85, 0x95, 0x96, 0x90, 0x8b, 0x74, 0x5b, 0x58, 0x54, 0x53, 0x54, 0x5a, 0x63, 0x6b, 0x6f, 0x70, 0x6b, 0x6e, 0x71, 0x6d, 0x65, 0x5b, 0x54, 0x51, 0x5d, 0x76, 0x8e, 0x90, 0x7d, 0x68, 0x60, 0x62, 0x6c, 0x6b, 0x69, 0x68, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x69, 0x6d, 0x72, 0x76, 0x79, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x64, 0x65, 0x67, 0x68, 0x68, 0x68, 0x68, 0x67, 0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x6a, 0x6c, 0x6e, 0x70, 0x70, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x6b, 0x68, 0x62, 0x5b, 0x56, 0x53, 0x51, 0x51, 0x5a, 0x62, 0x6e, 0x7a, 0x85, 0x8b, 0x8e, 0x8e, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0x95, 0x97, 0x97, 0x96, 0x95, 0x94, 0x95, 0x95, 0x96, 0x99, 0x95, 0x87, 0x72, 0x62, 0x66, 0x68, 0x6b, 0x6c, 0x6e, 0x73, 0x7b, 0x81, 0x81, 0x7e, 0x79, 0x73, 0x6f, 0x72, 0x79, 0x80, 0x7c, 0x6d, 0x5e, 0x57, 0x4f, 0x4b, 0x56, 0x67, 0x86, 0x96, 0x96, 0x90, 0x8b, 0x74, 0x5b, 0x59, 0x54, 0x53, 0x54, 0x59, 0x62, 0x69, 0x6c, 0x6c, 0x61, 0x63, 0x65, 0x62, 0x5b, 0x55, 0x52, 0x51, 0x63, 0x79, 0x8e, 0x91, 0x80, 0x6e, 0x67, 0x68, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x68, 0x68, 0x69, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x6a, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x67, 0x68, 0x6a, 0x6c, 0x6e, 0x6f, 0x6f, 0x6f, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6d, 0x6d, 0x6b, 0x69, 0x68, 0x67, 0x67, 0x6a, 0x6c, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6b, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6a, 0x6a, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x72, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x70, 0x6c, 0x67, 0x62, 0x5f, 0x5d, 0x5f, 0x66, 0x72, 0x7e, 0x88, 0x8d, 0x8f, 0x8f, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x96, 0x97, 0x97, 0x95, 0x92, 0x90, 0x8a, 0x8d, 0x93, 0x98, 0x98, 0x8e, 0x7d, 0x71, 0x80, 0x81, 0x80, 0x7e, 0x7d, 0x7f, 0x84, 0x89, 0x81, 0x7f, 0x7a, 0x74, 0x6f, 0x71, 0x77, 0x7d, 0x7f, 0x66, 0x51, 0x4c, 0x4d, 0x50, 0x59, 0x66, 0x87, 0x96, 0x96, 0x90, 0x8b, 0x74, 0x5c, 0x5a, 0x56, 0x54, 0x54, 0x57, 0x5c, 0x61, 0x61, 0x60, 0x59, 0x5c, 0x5d, 0x5c, 0x5a, 0x5a, 0x5d, 0x60, 0x6d, 0x7f, 0x92, 0x94, 0x86, 0x77, 0x71, 0x73, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6b, 0x6c, 0x6d, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x6a, 0x6c, 0x6f, 0x73, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x78, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x67, 0x68, 0x69, 0x69, 0x69, 0x69, 0x68, 0x67, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x68, 0x6a, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x69, 0x68, 0x66, 0x65, 0x66, 0x68, 0x6b, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x6f, 0x6f, 0x6e, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6b, 0x6a, 0x6a, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6c, 0x6a, 0x69, 0x68, 0x69, 0x6a, 0x6b, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x73, 0x71, 0x72, 0x73, 0x75, 0x75, 0x75, 0x74, 0x74, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x72, 0x71, 0x78, 0x79, 0x78, 0x77, 0x74, 0x6f, 0x6b, 0x68, 0x62, 0x69, 0x75, 0x81, 0x8a, 0x8e, 0x8f, 0x8f, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x95, 0x96, 0x97, 0x96, 0x94, 0x90, 0x8e, 0x81, 0x86, 0x8f, 0x97, 0x9a, 0x93, 0x86, 0x7c, 0x7e, 0x7d, 0x7b, 0x76, 0x71, 0x6f, 0x73, 0x76, 0x81, 0x7f, 0x7b, 0x75, 0x70, 0x71, 0x76, 0x7b, 0x80, 0x62, 0x48, 0x45, 0x4d, 0x54, 0x5c, 0x65, 0x88, 0x96, 0x96, 0x90, 0x8b, 0x74, 0x5c, 0x5a, 0x59, 0x56, 0x54, 0x55, 0x57, 0x59, 0x57, 0x55, 0x5a, 0x5c, 0x5f, 0x60, 0x61, 0x66, 0x6e, 0x74, 0x74, 0x85, 0x96, 0x97, 0x8b, 0x7d, 0x7a, 0x7c, 0x71, 0x6f, 0x6d, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x6b, 0x6b, 0x6c, 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x6d, 0x6f, 0x72, 0x75, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x78, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x78, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x6d, 0x6c, 0x6b, 0x6a, 0x68, 0x66, 0x65, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6e, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x66, 0x66, 0x69, 0x6c, 0x6e, 0x68, 0x68, 0x68, 0x68, 0x69, 0x69, 0x69, 0x69, 0x67, 0x68, 0x6a, 0x6b, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6f, 0x70, 0x71, 0x72, 0x70, 0x70, 0x70, 0x6e, 0x6d, 0x6a, 0x68, 0x67, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x6a, 0x6b, 0x6d, 0x6f, 0x72, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x7b, 0x83, 0x88, 0x8a, 0x8b, 0x8e, 0x90, 0x93, 0x92, 0x91, 0x90, 0x90, 0x92, 0x93, 0x95, 0x96, 0x92, 0x8f, 0x94, 0x99, 0x95, 0x87, 0x7a, 0x69, 0x7a, 0x8f, 0x9a, 0x95, 0x87, 0x7a, 0x73, 0x76, 0x70, 0x67, 0x5f, 0x5e, 0x68, 0x77, 0x83, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x71, 0x67, 0x58, 0x4d, 0x4b, 0x52, 0x5d, 0x65, 0x93, 0x94, 0x95, 0x90, 0x86, 0x76, 0x67, 0x5d, 0x5a, 0x5c, 0x5f, 0x63, 0x68, 0x6c, 0x6f, 0x71, 0x6f, 0x75, 0x7d, 0x82, 0x86, 0x89, 0x8e, 0x92, 0x96, 0x95, 0x96, 0x9a, 0x9b, 0x95, 0x87, 0x7b, 0x73, 0x71, 0x6e, 0x6c, 0x6c, 0x6d, 0x6f, 0x71, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6a, 0x6c, 0x70, 0x75, 0x78, 0x79, 0x79, 0x79, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x69, 0x69, 0x6a, 0x6c, 0x6d, 0x6f, 0x70, 0x70, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6e, 0x6c, 0x6b, 0x6a, 0x69, 0x67, 0x65, 0x66, 0x67, 0x6a, 0x6c, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x69, 0x6a, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6c, 0x6a, 0x69, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6c, 0x6d, 0x70, 0x72, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x79, 0x7f, 0x87, 0x8c, 0x8e, 0x8f, 0x91, 0x93, 0x93, 0x92, 0x91, 0x91, 0x91, 0x92, 0x94, 0x95, 0x97, 0x93, 0x91, 0x95, 0x99, 0x96, 0x89, 0x7d, 0x68, 0x78, 0x8c, 0x98, 0x97, 0x8d, 0x82, 0x7c, 0x75, 0x71, 0x6a, 0x63, 0x61, 0x68, 0x74, 0x7d, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x7a, 0x72, 0x68, 0x61, 0x60, 0x67, 0x71, 0x78, 0x91, 0x92, 0x94, 0x92, 0x8c, 0x82, 0x78, 0x71, 0x75, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x85, 0x86, 0x85, 0x89, 0x8f, 0x92, 0x93, 0x94, 0x97, 0x9a, 0x9a, 0x97, 0x96, 0x98, 0x99, 0x93, 0x87, 0x7d, 0x73, 0x72, 0x6f, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6f, 0x70, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6e, 0x72, 0x76, 0x78, 0x79, 0x79, 0x79, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x76, 0x76, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x69, 0x69, 0x69, 0x6b, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x6f, 0x6f, 0x70, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x6a, 0x69, 0x67, 0x65, 0x65, 0x66, 0x67, 0x69, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7e, 0x84, 0x8b, 0x90, 0x92, 0x92, 0x94, 0x96, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x95, 0x97, 0x94, 0x93, 0x96, 0x9a, 0x97, 0x8c, 0x83, 0x69, 0x75, 0x86, 0x94, 0x9a, 0x96, 0x8e, 0x88, 0x87, 0x86, 0x82, 0x7d, 0x79, 0x7b, 0x81, 0x87, 0x85, 0x86, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x87, 0x84, 0x7f, 0x7c, 0x7d, 0x82, 0x89, 0x8e, 0x90, 0x91, 0x92, 0x93, 0x91, 0x8f, 0x8b, 0x89, 0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x96, 0x94, 0x98, 0x9b, 0x9b, 0x99, 0x98, 0x9a, 0x9c, 0x9d, 0x98, 0x93, 0x93, 0x93, 0x8f, 0x86, 0x7d, 0x74, 0x73, 0x71, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6e, 0x70, 0x72, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6f, 0x71, 0x75, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x68, 0x66, 0x65, 0x65, 0x66, 0x67, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6b, 0x6a, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x80, 0x86, 0x8d, 0x91, 0x92, 0x93, 0x94, 0x96, 0x94, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x97, 0x96, 0x95, 0x98, 0x9a, 0x97, 0x90, 0x89, 0x6c, 0x72, 0x7f, 0x8e, 0x9a, 0x9d, 0x98, 0x92, 0x94, 0x95, 0x96, 0x93, 0x8e, 0x8b, 0x8c, 0x8e, 0x8b, 0x8b, 0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x92, 0x94, 0x93, 0x91, 0x90, 0x90, 0x92, 0x94, 0x96, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x96, 0x96, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x93, 0x96, 0x98, 0x97, 0x94, 0x93, 0x95, 0x97, 0x9d, 0x96, 0x8e, 0x8c, 0x8c, 0x89, 0x81, 0x7a, 0x75, 0x74, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x73, 0x71, 0x70, 0x6e, 0x6e, 0x70, 0x71, 0x73, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x72, 0x74, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6f, 0x6e, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x67, 0x67, 0x67, 0x69, 0x69, 0x69, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x7f, 0x85, 0x8c, 0x90, 0x91, 0x91, 0x92, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x99, 0x97, 0x93, 0x8f, 0x72, 0x72, 0x77, 0x86, 0x96, 0x9e, 0x9b, 0x94, 0x8e, 0x92, 0x96, 0x95, 0x90, 0x8c, 0x8a, 0x8a, 0x8f, 0x90, 0x91, 0x92, 0x94, 0x95, 0x96, 0x96, 0x9a, 0x9a, 0x99, 0x98, 0x96, 0x94, 0x92, 0x91, 0x94, 0x92, 0x91, 0x90, 0x91, 0x93, 0x95, 0x96, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x93, 0x95, 0x94, 0x92, 0x92, 0x95, 0x98, 0x98, 0x91, 0x89, 0x86, 0x86, 0x84, 0x7c, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x75, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x68, 0x68, 0x69, 0x69, 0x6a, 0x6b, 0x6b, 0x6b, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6a, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6b, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74, 0x74, 0x73, 0x73, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79, 0x80, 0x86, 0x8c, 0x90, 0x90, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x97, 0x98, 0x98, 0x97, 0x96, 0x95, 0x94, 0x7a, 0x73, 0x70, 0x7c, 0x8f, 0x9a, 0x96, 0x8e, 0x8f, 0x94, 0x99, 0x9a, 0x97, 0x93, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x9a, 0x99, 0x98, 0x97, 0x94, 0x91, 0x8e, 0x8d, 0x94, 0x93, 0x91, 0x90, 0x90, 0x90, 0x91, 0x91, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x96, 0x98, 0x99, 0x97, 0x95, 0x94, 0x97, 0x9a, 0x94, 0x8d, 0x87, 0x85, 0x86, 0x83, 0x7b, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x81, 0x80, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6a, 0x6a, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x70, 0x71, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x74, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x73, 0x74, 0x75, 0x76, 0x75, 0x74, 0x73, 0x72, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x83, 0x88, 0x8f, 0x92, 0x92, 0x91, 0x92, 0x93, 0x94, 0x95, 0x97, 0x98, 0x99, 0x98, 0x97, 0x96, 0x94, 0x96, 0x98, 0x98, 0x96, 0x95, 0x96, 0x98, 0x82, 0x75, 0x6b, 0x74, 0x87, 0x93, 0x8e, 0x84, 0x8e, 0x94, 0x9a, 0x9d, 0x9c, 0x9a, 0x9a, 0x9b, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x90, 0x90, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x9a, 0x9b, 0x9a, 0x95, 0x90, 0x8d, 0x8f, 0x91, 0x92, 0x8d, 0x89, 0x89, 0x8b, 0x87, 0x7d, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x71, 0x73, 0x72, 0x70, 0x6e, 0x6e, 0x70, 0x72, 0x73, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x73, 0x76, 0x79, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6e, 0x71, 0x73, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x6e, 0x6f, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x70, 0x70, 0x71, 0x73, 0x74, 0x75, 0x76, 0x77, 0x75, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x73, 0x71, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x86, 0x8b, 0x91, 0x95, 0x94, 0x93, 0x94, 0x95, 0x95, 0x96, 0x97, 0x99, 0x99, 0x98, 0x97, 0x96, 0x94, 0x96, 0x98, 0x97, 0x95, 0x94, 0x97, 0x99, 0x87, 0x76, 0x69, 0x6f, 0x82, 0x8e, 0x88, 0x7c, 0x81, 0x86, 0x8d, 0x91, 0x91, 0x91, 0x93, 0x94, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x96, 0x8e, 0x8f, 0x92, 0x94, 0x95, 0x94, 0x92, 0x91, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x99, 0x98, 0x95, 0x8e, 0x86, 0x81, 0x81, 0x82, 0x92, 0x8e, 0x8c, 0x8e, 0x90, 0x8b, 0x80, 0x77, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x71, 0x71, 0x73, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x73, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x70, 0x72, 0x75, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x6e, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x74, 0x73, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x79, 0x77, 0x75, 0x73, 0x75, 0x77, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x78, 0x77, 0x76, 0x77, 0x7b, 0x7f, 0x88, 0x8a, 0x8e, 0x91, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x8f, 0x7e, 0x6d, 0x6a, 0x73, 0x7b, 0x7a, 0x74, 0x66, 0x7c, 0x95, 0x9d, 0x96, 0x90, 0x97, 0xa1, 0x96, 0x96, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x96, 0x95, 0x94, 0x93, 0x92, 0x8c, 0x90, 0x93, 0x93, 0x91, 0x90, 0x92, 0x94, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x9b, 0x99, 0x93, 0x8d, 0x89, 0x8b, 0x92, 0x98, 0x95, 0x8c, 0x87, 0x8b, 0x93, 0x90, 0x81, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x70, 0x6e, 0x6d, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x73, 0x75, 0x78, 0x7a, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x78, 0x7b, 0x7e, 0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x72, 0x74, 0x76, 0x75, 0x72, 0x71, 0x73, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x71, 0x70, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x79, 0x78, 0x76, 0x77, 0x7c, 0x80, 0x88, 0x8b, 0x8e, 0x92, 0x95, 0x96, 0x96, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x92, 0x88, 0x7b, 0x6f, 0x68, 0x66, 0x66, 0x5e, 0x69, 0x7b, 0x8b, 0x94, 0x98, 0x98, 0x98, 0x97, 0x97, 0x98, 0x98, 0x98, 0x97, 0x96, 0x96, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x92, 0x94, 0x95, 0x94, 0x92, 0x90, 0x91, 0x92, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x96, 0x92, 0x8d, 0x89, 0x8b, 0x91, 0x96, 0x89, 0x83, 0x80, 0x86, 0x8f, 0x8f, 0x82, 0x75, 0x72, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x73, 0x75, 0x78, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x78, 0x7b, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x75, 0x76, 0x76, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74, 0x70, 0x72, 0x74, 0x73, 0x70, 0x6f, 0x71, 0x74, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x79, 0x78, 0x77, 0x78, 0x7d, 0x82, 0x8a, 0x8c, 0x90, 0x93, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x9e, 0x9c, 0x96, 0x88, 0x77, 0x67, 0x5d, 0x59, 0x57, 0x57, 0x61, 0x78, 0x91, 0x9e, 0x99, 0x8f, 0x98, 0x98, 0x98, 0x98, 0x96, 0x94, 0x92, 0x91, 0x85, 0x85, 0x86, 0x87, 0x89, 0x8b, 0x8e, 0x8f, 0x96, 0x96, 0x95, 0x94, 0x92, 0x91, 0x91, 0x90, 0x92, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x93, 0x93, 0x92, 0x8f, 0x8c, 0x8c, 0x90, 0x95, 0x7e, 0x7a, 0x79, 0x81, 0x8a, 0x8b, 0x81, 0x76, 0x71, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6a, 0x6b, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x73, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x6f, 0x72, 0x74, 0x73, 0x71, 0x70, 0x72, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x78, 0x77, 0x7a, 0x7f, 0x84, 0x8c, 0x8e, 0x91, 0x94, 0x97, 0x97, 0x97, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x9c, 0x96, 0x8f, 0x8c, 0x88, 0x7c, 0x69, 0x59, 0x5a, 0x58, 0x5f, 0x75, 0x8f, 0x9d, 0x99, 0x8f, 0x99, 0x99, 0x98, 0x97, 0x94, 0x91, 0x8d, 0x8b, 0x81, 0x80, 0x81, 0x82, 0x86, 0x8a, 0x8f, 0x92, 0x92, 0x90, 0x8e, 0x8f, 0x91, 0x93, 0x92, 0x91, 0x93, 0x93, 0x93, 0x94, 0x95, 0x95, 0x96, 0x96, 0x92, 0x94, 0x94, 0x92, 0x8f, 0x8f, 0x93, 0x96, 0x7e, 0x7b, 0x7b, 0x81, 0x88, 0x87, 0x7e, 0x75, 0x6f, 0x70, 0x71, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x73, 0x74, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x6c, 0x6c, 0x6e, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x71, 0x70, 0x73, 0x75, 0x75, 0x72, 0x72, 0x74, 0x77, 0x74, 0x74, 0x72, 0x71, 0x71, 0x71, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x78, 0x7b, 0x81, 0x87, 0x8d, 0x90, 0x93, 0x96, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x96, 0x94, 0x92, 0x92, 0x8f, 0x84, 0x74, 0x67, 0x69, 0x6d, 0x75, 0x82, 0x8f, 0x96, 0x97, 0x95, 0x98, 0x98, 0x98, 0x96, 0x93, 0x8e, 0x89, 0x86, 0x84, 0x83, 0x82, 0x83, 0x87, 0x8d, 0x93, 0x97, 0x8a, 0x87, 0x85, 0x88, 0x8f, 0x95, 0x95, 0x94, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x95, 0x96, 0x96, 0x94, 0x91, 0x92, 0x96, 0x9a, 0x86, 0x85, 0x84, 0x87, 0x88, 0x84, 0x7a, 0x71, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x73, 0x74, 0x75, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x75, 0x76, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x75, 0x75, 0x74, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x72, 0x74, 0x74, 0x72, 0x71, 0x73, 0x76, 0x73, 0x72, 0x70, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7c, 0x7b, 0x79, 0x79, 0x7c, 0x83, 0x89, 0x8f, 0x91, 0x94, 0x97, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x92, 0x9b, 0xa2, 0x9b, 0x8a, 0x7c, 0x78, 0x7a, 0x7d, 0x85, 0x8e, 0x91, 0x90, 0x91, 0x95, 0x9a, 0x97, 0x97, 0x97, 0x95, 0x91, 0x8b, 0x86, 0x82, 0x8d, 0x8b, 0x88, 0x87, 0x8a, 0x8f, 0x96, 0x9a, 0x89, 0x84, 0x81, 0x85, 0x8f, 0x96, 0x97, 0x94, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x99, 0x98, 0x95, 0x91, 0x8e, 0x8f, 0x95, 0x9b, 0x8e, 0x8d, 0x8d, 0x8c, 0x89, 0x82, 0x77, 0x70, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x69, 0x6a, 0x6c, 0x6d, 0x6e, 0x6e, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x72, 0x71, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75, 0x73, 0x72, 0x71, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x73, 0x72, 0x71, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6d, 0x70, 0x70, 0x6e, 0x6d, 0x70, 0x73, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6f, 0x71, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x7d, 0x85, 0x8b, 0x91, 0x93, 0x96, 0x98, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x93, 0x9b, 0xa0, 0x99, 0x8a, 0x81, 0x84, 0x8b, 0x8e, 0x93, 0x98, 0x97, 0x93, 0x91, 0x94, 0x98, 0x95, 0x95, 0x96, 0x94, 0x90, 0x8a, 0x84, 0x80, 0x95, 0x91, 0x8d, 0x8a, 0x8b, 0x8f, 0x95, 0x9a, 0x92, 0x8a, 0x84, 0x87, 0x91, 0x97, 0x96, 0x91, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x99, 0x97, 0x90, 0x89, 0x86, 0x89, 0x91, 0x99, 0x8f, 0x8f, 0x8f, 0x8e, 0x89, 0x81, 0x77, 0x71, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x67, 0x68, 0x6a, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x71, 0x70, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6b, 0x6b, 0x67, 0x69, 0x6c, 0x6c, 0x6a, 0x6a, 0x6c, 0x6f, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6e, 0x70, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7d, 0x7c, 0x7a, 0x7a, 0x7e, 0x86, 0x8c, 0x91, 0x93, 0x96, 0x99, 0x9a, 0x9b, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x94, 0x92, 0x90, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x97, 0x97, 0x98, 0x97, 0x95, 0x94, 0x93, 0x94, 0x93, 0x94, 0x95, 0x94, 0x90, 0x8a, 0x83, 0x7f, 0x99, 0x95, 0x8f, 0x8a, 0x8a, 0x8e, 0x94, 0x98, 0x9b, 0x92, 0x89, 0x8b, 0x93, 0x97, 0x94, 0x8e, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x99, 0x94, 0x8c, 0x83, 0x7f, 0x83, 0x8d, 0x96, 0x8c, 0x8d, 0x8e, 0x8d, 0x88, 0x81, 0x78, 0x73, 0x6c, 0x6c, 0x6e, 0x6e, 0x6f, 0x6e, 0x6d, 0x6d, 0x66, 0x67, 0x69, 0x6b, 0x6c, 0x6b, 0x6a, 0x69, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x80, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x75, 0x75, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x73, 0x72, 0x70, 0x6f, 0x70, 0x73, 0x76, 0x78, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6f, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6e, 0x6f, 0x74, 0x72, 0x70, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x81, 0x89, 0x90, 0x95, 0x96, 0x98, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x96, 0x98, 0x9a, 0x9c, 0x96, 0x95, 0x94, 0x93, 0x92, 0x93, 0x93, 0x94, 0x9a, 0x98, 0x96, 0x94, 0x93, 0x94, 0x94, 0x95, 0x91, 0x91, 0x91, 0x90, 0x8c, 0x88, 0x83, 0x80, 0x7b, 0x82, 0x82, 0x7d, 0x83, 0x92, 0x99, 0x96, 0x94, 0x8f, 0x89, 0x87, 0x88, 0x8a, 0x8a, 0x89, 0x7d, 0x8a, 0x98, 0x9a, 0x94, 0x92, 0x9a, 0xa4, 0x8c, 0x91, 0x8b, 0x7a, 0x74, 0x80, 0x8e, 0x93, 0x8d, 0x8c, 0x8c, 0x8d, 0x8c, 0x87, 0x7f, 0x78, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6b, 0x6c, 0x6d, 0x6e, 0x6d, 0x6c, 0x6a, 0x69, 0x6b, 0x6c, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x73, 0x6a, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x79, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x76, 0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x6f, 0x6d, 0x6c, 0x6c, 0x6e, 0x71, 0x73, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6d, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6d, 0x6c, 0x6c, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x73, 0x72, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x81, 0x8a, 0x90, 0x94, 0x95, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x96, 0x97, 0x99, 0x9a, 0x99, 0x98, 0x97, 0x96, 0x95, 0x96, 0x96, 0x97, 0x98, 0x97, 0x96, 0x94, 0x94, 0x94, 0x95, 0x96, 0x95, 0x95, 0x95, 0x94, 0x91, 0x8d, 0x89, 0x87, 0x80, 0x86, 0x85, 0x80, 0x85, 0x93, 0x98, 0x93, 0x90, 0x8b, 0x85, 0x81, 0x81, 0x81, 0x81, 0x80, 0x7a, 0x88, 0x97, 0x99, 0x92, 0x8d, 0x8f, 0x94, 0x8d, 0x93, 0x8d, 0x7d, 0x77, 0x83, 0x91, 0x95, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x88, 0x7f, 0x78, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6b, 0x6a, 0x6d, 0x6e, 0x6e, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x6a, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x79, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x76, 0x76, 0x75, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x6e, 0x6d, 0x6b, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6c, 0x6c, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6a, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6e, 0x6d, 0x6d, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x72, 0x70, 0x6e, 0x6d, 0x6d, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x82, 0x8a, 0x91, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x97, 0x98, 0x98, 0x9b, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x99, 0x9a, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99, 0x97, 0x94, 0x91, 0x8f, 0x89, 0x8d, 0x8a, 0x83, 0x88, 0x94, 0x97, 0x90, 0x89, 0x85, 0x81, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7f, 0x89, 0x93, 0x95, 0x8d, 0x85, 0x82, 0x82, 0x8f, 0x96, 0x92, 0x82, 0x7d, 0x88, 0x94, 0x98, 0x8c, 0x8b, 0x8c, 0x8e, 0x8d, 0x88, 0x7f, 0x78, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x69, 0x69, 0x6b, 0x6c, 0x6d, 0x6d, 0x6c, 0x6c, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6b, 0x6d, 0x71, 0x75, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x75, 0x75, 0x74, 0x72, 0x71, 0x6f, 0x6e, 0x6e, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x6f, 0x6d, 0x6c, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6c, 0x6d, 0x6d, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x70, 0x6a, 0x6a, 0x6a, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6d, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x82, 0x8b, 0x91, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x96, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x96, 0x96, 0x97, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x98, 0x98, 0x99, 0x94, 0x94, 0x95, 0x95, 0x96, 0x98, 0x98, 0x99, 0x98, 0x98, 0x99, 0x99, 0x99, 0x97, 0x96, 0x95, 0x91, 0x93, 0x8e, 0x87, 0x8b, 0x96, 0x95, 0x8b, 0x82, 0x82, 0x80, 0x7d, 0x7c, 0x7d, 0x81, 0x85, 0x8e, 0x8f, 0x8f, 0x8c, 0x85, 0x80, 0x7e, 0x7e, 0x90, 0x98, 0x95, 0x87, 0x82, 0x8c, 0x97, 0x99, 0x8b, 0x8b, 0x8c, 0x8f, 0x8f, 0x89, 0x80, 0x78, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x68, 0x68, 0x6a, 0x6b, 0x6c, 0x6d, 0x6d, 0x6d, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x6c, 0x6e, 0x72, 0x76, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x74, 0x74, 0x73, 0x71, 0x70, 0x6f, 0x6e, 0x6d, 0x71, 0x71, 0x70, 0x70, 0x70, 0x71, 0x72, 0x73, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6b, 0x6b, 0x6e, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x73, 0x6b, 0x6b, 0x6b, 0x6c, 0x6c, 0x6c, 0x6d, 0x6d, 0x70, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x82, 0x8a, 0x91, 0x93, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x97, 0x97, 0x95, 0x94, 0x94, 0x94, 0x95, 0x96, 0x93, 0x94, 0x95, 0x96, 0x98, 0x98, 0x99, 0x99, 0x95, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x95, 0x96, 0x96, 0x8f, 0x88, 0x8e, 0x98, 0x94, 0x87, 0x7f, 0x81, 0x84, 0x84, 0x83, 0x87, 0x8f, 0x96, 0xa0, 0x97, 0x8b, 0x83, 0x80, 0x82, 0x84, 0x85, 0x8f, 0x98, 0x97, 0x8b, 0x86, 0x8f, 0x98, 0x99, 0x8b, 0x8c, 0x8e, 0x91, 0x91, 0x8b, 0x81, 0x7a, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6d, 0x6d, 0x6c, 0x6d, 0x6f, 0x73, 0x76, 0x78, 0x79, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x73, 0x73, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x71, 0x71, 0x72, 0x72, 0x73, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x72, 0x6d, 0x6d, 0x6d, 0x6d, 0x6e, 0x6e, 0x6e, 0x6e, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6d, 0x6d, 0x6e, 0x6c, 0x6c, 0x6b, 0x6b, 0x6c, 0x6e, 0x71, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x81, 0x89, 0x90, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x95, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x94, 0x94, 0x96, 0x98, 0x98, 0x99, 0x99, 0x98, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x98, 0x96, 0x8e, 0x88, 0x8f, 0x9a, 0x94, 0x85, 0x7e, 0x84, 0x89, 0x89, 0x89, 0x8d, 0x98, 0xa1, 0xa6, 0x98, 0x88, 0x81, 0x84, 0x8a, 0x8d, 0x8c, 0x8b, 0x96, 0x97, 0x8c, 0x87, 0x8f, 0x97, 0x97, 0x8c, 0x8d, 0x90, 0x93, 0x94, 0x8e, 0x84, 0x7b, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6a, 0x69, 0x69, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x71, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6b, 0x6e, 0x70, 0x73, 0x76, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6c, 0x6c, 0x6d, 0x6b, 0x6a, 0x6a, 0x6a, 0x6c, 0x6e, 0x72, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x80, 0x88, 0x8f, 0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x97, 0x98, 0x99, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x97, 0x98, 0x99, 0x99, 0x98, 0x97, 0x94, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x96, 0x94, 0x8b, 0x87, 0x90, 0x9b, 0x94, 0x83, 0x80, 0x86, 0x8c, 0x8a, 0x87, 0x8a, 0x95, 0x9f, 0x9d, 0x91, 0x86, 0x87, 0x8f, 0x95, 0x92, 0x8b, 0x88, 0x93, 0x96, 0x8c, 0x87, 0x8e, 0x95, 0x94, 0x8d, 0x8e, 0x92, 0x96, 0x96, 0x90, 0x86, 0x7d, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6b, 0x6b, 0x69, 0x68, 0x68, 0x69, 0x6b, 0x6c, 0x6f, 0x6f, 0x6e, 0x6d, 0x6c, 0x6b, 0x6a, 0x6a, 0x6e, 0x70, 0x74, 0x77, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6d, 0x6d, 0x6d, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6d, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6b, 0x6b, 0x6a, 0x69, 0x69, 0x69, 0x6f, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x6f, 0x6e, 0x6c, 0x6b, 0x6b, 0x6b, 0x6b, 0x6c, 0x6a, 0x6a, 0x69, 0x6a, 0x6b, 0x6e, 0x72, 0x74, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7f, 0x87, 0x8e, 0x96, 0x97, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x93, 0x94, 0x96, 0x98, 0x99, 0x99, 0x99, 0x98, 0x98, 0x97, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x96, 0x98, 0x99, 0x99, 0x98, 0x97, 0x96, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x92, 0x89, 0x85, 0x90, 0x9c, 0x94, 0x82, 0x82, 0x88, 0x8c, 0x89, 0x83, 0x84, 0x8e, 0x99, 0x91, 0x8a, 0x86, 0x8e, 0x9a, 0x9d, 0x92, 0x86, 0x85, 0x91, 0x94, 0x8b, 0x86, 0x8d, 0x93, 0x92, 0x8d, 0x8f, 0x93, 0x97, 0x98, 0x91, 0x87, 0x7e, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x6c, 0x6d, 0x6e, 0x6d, 0x6b, 0x6a, 0x68, 0x68, 0x69, 0x6a, 0x6b, 0x6e, 0x6d, 0x6d, 0x6c, 0x6b, 0x6b, 0x6a, 0x6a, 0x6f, 0x71, 0x74, 0x77, 0x79, 0x79, 0x79, 0x78, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7d, 0x7f, 0x80, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x91, 0x90, 0x8f, 0x8d, 0x8a, 0x86, 0x83, 0x81, 0x7c, 0x7e, 0x81, 0x83, 0x84, 0x83, 0x82, 0x81, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x78, 0x74, 0x72, 0x78, 0x77, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x78, 0x79, 0x7a, 0x79, 0x75, 0x74, 0x76, 0x78, 0x76, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x80, 0x81, 0x81, 0x7e, 0x79, 0x77, 0x78, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x80, 0x80, 0x81, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x86, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7c, 0x7a, 0x7a, 0x7c, 0x7f, 0x80, 0x7b, 0x7b, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x78, 0x77, 0x73, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7c, 0x7a, 0x79, 0x7b, 0x7f, 0x82, 0x81, 0x7f, 0x7c, 0x79, 0x76, 0x77, 0x7a, 0x7c, 0x7b, 0x7a, 0x77, 0x7a, 0x7f, 0x82, 0x82, 0x7f, 0x7b, 0x78, 0x7d, 0x7f, 0x82, 0x84, 0x86, 0x85, 0x84, 0x84, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x83, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x80, 0x80, 0x82, 0x84, 0x87, 0x89, 0x8a, 0x8b, 0x87, 0x87, 0x88, 0x88, 0x87, 0x86, 0x84, 0x83, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x90, 0x90, 0x8f, 0x8e, 0x8b, 0x88, 0x85, 0x84, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7e, 0x7f, 0x7f, 0x7f, 0x7d, 0x7a, 0x76, 0x74, 0x78, 0x77, 0x75, 0x74, 0x75, 0x76, 0x79, 0x7a, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x7b, 0x7c, 0x7c, 0x7a, 0x77, 0x75, 0x76, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x80, 0x81, 0x81, 0x7e, 0x7a, 0x77, 0x79, 0x7b, 0x79, 0x78, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7b, 0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x7e, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x7c, 0x7e, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x7a, 0x79, 0x7b, 0x80, 0x82, 0x81, 0x7f, 0x7d, 0x7a, 0x77, 0x78, 0x7b, 0x7d, 0x7d, 0x7b, 0x78, 0x7b, 0x7f, 0x82, 0x82, 0x7f, 0x7b, 0x79, 0x7a, 0x7b, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x90, 0x90, 0x90, 0x8f, 0x8d, 0x8b, 0x88, 0x87, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x82, 0x80, 0x7d, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7b, 0x78, 0x76, 0x78, 0x77, 0x75, 0x75, 0x76, 0x78, 0x7b, 0x7c, 0x84, 0x81, 0x7d, 0x7a, 0x78, 0x79, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x7c, 0x7a, 0x78, 0x76, 0x75, 0x76, 0x77, 0x78, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x80, 0x81, 0x81, 0x7e, 0x7a, 0x78, 0x7a, 0x7d, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x81, 0x86, 0x86, 0x86, 0x87, 0x88, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x79, 0x79, 0x7b, 0x80, 0x83, 0x82, 0x80, 0x7f, 0x7c, 0x79, 0x7a, 0x7d, 0x7f, 0x7e, 0x7c, 0x79, 0x7c, 0x80, 0x82, 0x82, 0x80, 0x7c, 0x79, 0x76, 0x78, 0x7b, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x8a, 0x89, 0x88, 0x86, 0x84, 0x82, 0x80, 0x7f, 0x83, 0x84, 0x84, 0x84, 0x84, 0x82, 0x81, 0x80, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x90, 0x90, 0x90, 0x90, 0x8e, 0x8d, 0x8b, 0x8a, 0x83, 0x80, 0x7b, 0x77, 0x76, 0x78, 0x7c, 0x7e, 0x81, 0x7f, 0x7b, 0x78, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x79, 0x77, 0x75, 0x77, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7c, 0x7e, 0x84, 0x80, 0x7a, 0x75, 0x74, 0x76, 0x7a, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7d, 0x79, 0x77, 0x78, 0x78, 0x78, 0x77, 0x7b, 0x7a, 0x77, 0x76, 0x75, 0x76, 0x78, 0x79, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x81, 0x81, 0x81, 0x7d, 0x79, 0x78, 0x7a, 0x7d, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x88, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x89, 0x89, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7f, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x79, 0x79, 0x7c, 0x80, 0x83, 0x83, 0x81, 0x80, 0x7d, 0x7b, 0x7b, 0x7f, 0x81, 0x80, 0x7e, 0x7c, 0x7e, 0x81, 0x83, 0x83, 0x80, 0x7d, 0x7a, 0x77, 0x79, 0x7c, 0x80, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x89, 0x88, 0x87, 0x85, 0x83, 0x82, 0x80, 0x80, 0x85, 0x85, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x87, 0x84, 0x7f, 0x7c, 0x7a, 0x7c, 0x7f, 0x82, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x74, 0x73, 0x77, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7c, 0x7e, 0x80, 0x7c, 0x76, 0x71, 0x70, 0x72, 0x76, 0x79, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x7e, 0x79, 0x74, 0x75, 0x79, 0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x82, 0x82, 0x80, 0x7c, 0x77, 0x76, 0x79, 0x7c, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7c, 0x7e, 0x80, 0x82, 0x84, 0x86, 0x86, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x87, 0x85, 0x83, 0x82, 0x81, 0x81, 0x81, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x79, 0x79, 0x7c, 0x81, 0x84, 0x83, 0x82, 0x81, 0x7e, 0x7c, 0x7c, 0x80, 0x82, 0x81, 0x7f, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x80, 0x7e, 0x7c, 0x7b, 0x7d, 0x80, 0x83, 0x85, 0x86, 0x85, 0x85, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x90, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x89, 0x87, 0x84, 0x81, 0x80, 0x81, 0x82, 0x84, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x79, 0x76, 0x75, 0x75, 0x76, 0x77, 0x75, 0x76, 0x78, 0x79, 0x78, 0x77, 0x75, 0x73, 0x78, 0x77, 0x75, 0x75, 0x76, 0x78, 0x7b, 0x7c, 0x7a, 0x77, 0x73, 0x71, 0x70, 0x72, 0x74, 0x76, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x7c, 0x76, 0x72, 0x75, 0x7e, 0x86, 0x87, 0x85, 0x79, 0x7b, 0x7e, 0x81, 0x81, 0x7e, 0x7b, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x83, 0x83, 0x80, 0x7b, 0x75, 0x73, 0x76, 0x7a, 0x77, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7c, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x82, 0x85, 0x87, 0x88, 0x89, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x81, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x7e, 0x7f, 0x80, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x79, 0x79, 0x7c, 0x81, 0x84, 0x84, 0x83, 0x82, 0x7f, 0x7c, 0x7d, 0x80, 0x82, 0x81, 0x7f, 0x80, 0x81, 0x83, 0x84, 0x83, 0x81, 0x7e, 0x7d, 0x7e, 0x80, 0x83, 0x86, 0x87, 0x87, 0x86, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x83, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x7f, 0x7f, 0x80, 0x82, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x91, 0x91, 0x91, 0x90, 0x8e, 0x8c, 0x8a, 0x89, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x7b, 0x7e, 0x82, 0x85, 0x85, 0x81, 0x7c, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x78, 0x77, 0x75, 0x74, 0x75, 0x76, 0x79, 0x7a, 0x76, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x76, 0x74, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x7d, 0x76, 0x72, 0x79, 0x87, 0x92, 0x94, 0x92, 0x7b, 0x80, 0x87, 0x8c, 0x8c, 0x88, 0x81, 0x7c, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x85, 0x84, 0x80, 0x79, 0x73, 0x70, 0x73, 0x76, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7e, 0x7d, 0x7b, 0x79, 0x7a, 0x7c, 0x7e, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x80, 0x80, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7f, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x83, 0x85, 0x87, 0x89, 0x8b, 0x8c, 0x8b, 0x8b, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x7a, 0x79, 0x79, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7a, 0x79, 0x79, 0x7c, 0x81, 0x85, 0x85, 0x83, 0x82, 0x7e, 0x7c, 0x7d, 0x80, 0x82, 0x81, 0x7f, 0x82, 0x83, 0x84, 0x84, 0x83, 0x81, 0x7f, 0x7e, 0x80, 0x81, 0x84, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x81, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x91, 0x91, 0x91, 0x90, 0x8e, 0x8c, 0x89, 0x88, 0x82, 0x83, 0x85, 0x86, 0x86, 0x84, 0x82, 0x81, 0x79, 0x7e, 0x85, 0x89, 0x89, 0x83, 0x7c, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x81, 0x7f, 0x7c, 0x7a, 0x79, 0x7b, 0x7d, 0x7e, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x77, 0x75, 0x74, 0x74, 0x75, 0x77, 0x78, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7f, 0x81, 0x82, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x7e, 0x77, 0x74, 0x7d, 0x8e, 0x9b, 0x9e, 0x9d, 0x7e, 0x85, 0x8e, 0x95, 0x95, 0x8f, 0x86, 0x7f, 0x77, 0x77, 0x76, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x86, 0x84, 0x80, 0x78, 0x71, 0x6f, 0x71, 0x74, 0x74, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7f, 0x7d, 0x7b, 0x79, 0x7a, 0x7c, 0x7e, 0x80, 0x80, 0x80, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x86, 0x88, 0x8a, 0x8c, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x89, 0x87, 0x84, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7a, 0x76, 0x73, 0x72, 0x72, 0x73, 0x75, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x7a, 0x79, 0x79, 0x7c, 0x82, 0x85, 0x85, 0x84, 0x81, 0x7e, 0x7c, 0x7c, 0x7f, 0x81, 0x81, 0x7f, 0x83, 0x83, 0x84, 0x84, 0x83, 0x81, 0x7f, 0x7e, 0x80, 0x81, 0x83, 0x84, 0x84, 0x83, 0x81, 0x80, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x8e, 0x90, 0x91, 0x92, 0x91, 0x8f, 0x8b, 0x89, 0x82, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x81, 0x83, 0x84, 0x82, 0x7d, 0x7a, 0x7a, 0x7b, 0x80, 0x7c, 0x79, 0x7c, 0x81, 0x82, 0x7d, 0x77, 0x80, 0x7c, 0x78, 0x78, 0x7b, 0x7d, 0x7d, 0x7b, 0x75, 0x77, 0x7b, 0x7d, 0x7d, 0x7b, 0x77, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x75, 0x74, 0x74, 0x76, 0x79, 0x7d, 0x81, 0x85, 0x88, 0x8a, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x7d, 0x7f, 0x82, 0x83, 0x82, 0x7f, 0x7b, 0x78, 0x77, 0x79, 0x7b, 0x7a, 0x78, 0x7a, 0x7e, 0x82, 0x83, 0x80, 0x7e, 0x7d, 0x7b, 0x76, 0x6e, 0x68, 0x74, 0x70, 0x6d, 0x6f, 0x74, 0x7a, 0x7d, 0x7e, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7e, 0x80, 0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7b, 0x7d, 0x7f, 0x80, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7f, 0x83, 0x87, 0x8a, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82, 0x81, 0x81, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x77, 0x7b, 0x7e, 0x7f, 0x7c, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x7b, 0x7f, 0x82, 0x80, 0x7e, 0x82, 0x7f, 0x7c, 0x7a, 0x7a, 0x7e, 0x83, 0x86, 0x81, 0x82, 0x82, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x89, 0x88, 0x87, 0x86, 0x84, 0x83, 0x81, 0x81, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x8f, 0x90, 0x91, 0x92, 0x90, 0x8d, 0x8a, 0x88, 0x83, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x83, 0x85, 0x86, 0x83, 0x7e, 0x7a, 0x7a, 0x7c, 0x7e, 0x79, 0x77, 0x79, 0x7e, 0x80, 0x7e, 0x7a, 0x80, 0x7c, 0x78, 0x77, 0x7a, 0x7c, 0x7c, 0x7b, 0x75, 0x77, 0x7a, 0x7d, 0x7d, 0x7a, 0x77, 0x75, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x74, 0x75, 0x77, 0x7a, 0x7d, 0x80, 0x82, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x75, 0x78, 0x7c, 0x7f, 0x80, 0x7f, 0x7c, 0x7a, 0x74, 0x75, 0x75, 0x74, 0x73, 0x75, 0x7b, 0x80, 0x8c, 0x82, 0x74, 0x69, 0x65, 0x64, 0x65, 0x65, 0x67, 0x64, 0x62, 0x64, 0x69, 0x6f, 0x72, 0x72, 0x75, 0x73, 0x72, 0x71, 0x73, 0x76, 0x7a, 0x7d, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7a, 0x7b, 0x7d, 0x7f, 0x82, 0x85, 0x88, 0x89, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x88, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x78, 0x7a, 0x7c, 0x7d, 0x7c, 0x7e, 0x81, 0x84, 0x87, 0x86, 0x87, 0x89, 0x8d, 0x8d, 0x89, 0x85, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x82, 0x82, 0x83, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x90, 0x91, 0x91, 0x90, 0x8e, 0x8b, 0x88, 0x86, 0x84, 0x85, 0x87, 0x88, 0x89, 0x89, 0x89, 0x89, 0x86, 0x88, 0x88, 0x84, 0x7f, 0x7b, 0x7b, 0x7d, 0x7c, 0x79, 0x75, 0x77, 0x7b, 0x7f, 0x81, 0x80, 0x7f, 0x7b, 0x77, 0x76, 0x79, 0x7b, 0x7b, 0x79, 0x75, 0x77, 0x7a, 0x7c, 0x7c, 0x7a, 0x77, 0x75, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x6f, 0x72, 0x76, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x76, 0x77, 0x77, 0x75, 0x74, 0x77, 0x7e, 0x84, 0x8e, 0x7f, 0x69, 0x58, 0x51, 0x53, 0x58, 0x5b, 0x5a, 0x58, 0x56, 0x59, 0x5f, 0x64, 0x66, 0x66, 0x6e, 0x6b, 0x68, 0x66, 0x68, 0x6e, 0x74, 0x79, 0x80, 0x81, 0x82, 0x82, 0x81, 0x7d, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x78, 0x7b, 0x7f, 0x84, 0x87, 0x89, 0x89, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7b, 0x7f, 0x86, 0x8d, 0x92, 0x96, 0x96, 0x97, 0x9a, 0x9b, 0x98, 0x92, 0x8c, 0x85, 0x88, 0x8c, 0x90, 0x90, 0x8d, 0x88, 0x85, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x87, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x91, 0x90, 0x90, 0x8f, 0x8c, 0x89, 0x86, 0x84, 0x85, 0x86, 0x88, 0x89, 0x89, 0x89, 0x89, 0x88, 0x88, 0x89, 0x89, 0x85, 0x7f, 0x7c, 0x7c, 0x7e, 0x7e, 0x7c, 0x79, 0x79, 0x7d, 0x82, 0x86, 0x88, 0x7f, 0x7b, 0x77, 0x76, 0x78, 0x7a, 0x79, 0x78, 0x76, 0x77, 0x79, 0x7b, 0x7b, 0x79, 0x77, 0x76, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x7e, 0x7c, 0x79, 0x76, 0x75, 0x76, 0x78, 0x79, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x7a, 0x79, 0x77, 0x75, 0x75, 0x75, 0x77, 0x78, 0x72, 0x74, 0x78, 0x7b, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7d, 0x7c, 0x7a, 0x7a, 0x7d, 0x84, 0x8a, 0x87, 0x7e, 0x71, 0x67, 0x61, 0x5d, 0x5a, 0x57, 0x58, 0x56, 0x56, 0x59, 0x60, 0x64, 0x65, 0x64, 0x6b, 0x68, 0x63, 0x62, 0x64, 0x6b, 0x73, 0x79, 0x7e, 0x80, 0x82, 0x82, 0x80, 0x7a, 0x75, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6c, 0x6b, 0x6c, 0x6d, 0x6f, 0x72, 0x73, 0x78, 0x7c, 0x82, 0x88, 0x8b, 0x8c, 0x8a, 0x89, 0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8d, 0x8d, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x78, 0x7b, 0x83, 0x8d, 0x96, 0x9a, 0x9a, 0x9b, 0x9c, 0x9f, 0x9f, 0x9b, 0x92, 0x8b, 0x89, 0x8e, 0x96, 0x9b, 0x9b, 0x95, 0x8d, 0x88, 0x84, 0x85, 0x85, 0x85, 0x84, 0x82, 0x81, 0x80, 0x81, 0x81, 0x83, 0x84, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x90, 0x8f, 0x8e, 0x8d, 0x8a, 0x87, 0x85, 0x84, 0x87, 0x88, 0x89, 0x89, 0x89, 0x89, 0x88, 0x87, 0x88, 0x89, 0x88, 0x83, 0x7e, 0x7b, 0x7d, 0x7f, 0x82, 0x82, 0x81, 0x81, 0x82, 0x85, 0x8a, 0x8e, 0x80, 0x7b, 0x77, 0x76, 0x78, 0x7a, 0x79, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7f, 0x82, 0x84, 0x84, 0x81, 0x7c, 0x78, 0x76, 0x76, 0x78, 0x7a, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7b, 0x7a, 0x7c, 0x81, 0x86, 0x85, 0x89, 0x8f, 0x93, 0x90, 0x83, 0x71, 0x63, 0x5e, 0x5d, 0x5e, 0x63, 0x69, 0x6d, 0x6d, 0x6c, 0x6c, 0x69, 0x66, 0x65, 0x69, 0x70, 0x78, 0x7d, 0x7c, 0x7d, 0x7f, 0x7f, 0x7c, 0x77, 0x71, 0x6d, 0x6b, 0x6b, 0x6b, 0x6b, 0x69, 0x68, 0x66, 0x65, 0x61, 0x60, 0x5f, 0x5f, 0x61, 0x65, 0x69, 0x6b, 0x7b, 0x7f, 0x85, 0x8b, 0x8e, 0x8e, 0x8c, 0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x8d, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x81, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7a, 0x79, 0x7e, 0x88, 0x92, 0x96, 0x97, 0x92, 0x92, 0x93, 0x95, 0x96, 0x92, 0x8a, 0x84, 0x8a, 0x90, 0x98, 0x9e, 0x9e, 0x98, 0x90, 0x8b, 0x86, 0x86, 0x86, 0x86, 0x85, 0x83, 0x81, 0x80, 0x80, 0x81, 0x82, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x8e, 0x8e, 0x8c, 0x8a, 0x88, 0x86, 0x85, 0x84, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x89, 0x87, 0x87, 0x86, 0x86, 0x85, 0x81, 0x7c, 0x7a, 0x7d, 0x80, 0x84, 0x87, 0x89, 0x89, 0x87, 0x87, 0x8a, 0x8d, 0x81, 0x7d, 0x78, 0x77, 0x78, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x71, 0x72, 0x75, 0x7a, 0x81, 0x89, 0x90, 0x94, 0x88, 0x83, 0x7d, 0x78, 0x76, 0x77, 0x7a, 0x7c, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x82, 0x80, 0x7c, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x76, 0x79, 0x7d, 0x7e, 0x7b, 0x7a, 0x7b, 0x7d, 0x8b, 0x96, 0xa7, 0xb3, 0xb2, 0xa1, 0x88, 0x75, 0x63, 0x63, 0x66, 0x6b, 0x72, 0x75, 0x74, 0x72, 0x6e, 0x6d, 0x6d, 0x6e, 0x72, 0x78, 0x7f, 0x82, 0x7e, 0x7e, 0x7e, 0x7d, 0x7a, 0x76, 0x71, 0x6f, 0x6c, 0x6c, 0x6c, 0x6b, 0x69, 0x67, 0x65, 0x63, 0x61, 0x5f, 0x5e, 0x5e, 0x60, 0x65, 0x6b, 0x6f, 0x82, 0x84, 0x88, 0x8b, 0x8d, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x7e, 0x7f, 0x7e, 0x7e, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7d, 0x85, 0x8f, 0x93, 0x8e, 0x88, 0x84, 0x83, 0x83, 0x85, 0x87, 0x86, 0x81, 0x7d, 0x87, 0x8a, 0x8f, 0x93, 0x94, 0x91, 0x8d, 0x8b, 0x87, 0x88, 0x88, 0x87, 0x86, 0x84, 0x82, 0x81, 0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x8c, 0x8b, 0x8a, 0x89, 0x87, 0x86, 0x85, 0x85, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x88, 0x87, 0x86, 0x82, 0x83, 0x81, 0x7e, 0x7a, 0x79, 0x7c, 0x80, 0x83, 0x89, 0x8e, 0x8e, 0x89, 0x85, 0x85, 0x88, 0x82, 0x7e, 0x79, 0x78, 0x79, 0x7b, 0x7a, 0x78, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x7b, 0x80, 0x86, 0x8b, 0x8f, 0x86, 0x82, 0x7b, 0x76, 0x74, 0x76, 0x7a, 0x7d, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x80, 0x7c, 0x78, 0x76, 0x77, 0x79, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x85, 0x8c, 0x8e, 0x8b, 0x86, 0x83, 0x82, 0x8b, 0x92, 0x9c, 0xa5, 0xa4, 0x97, 0x84, 0x76, 0x62, 0x62, 0x66, 0x6c, 0x73, 0x76, 0x74, 0x71, 0x6e, 0x70, 0x73, 0x77, 0x7b, 0x80, 0x83, 0x85, 0x84, 0x83, 0x80, 0x7e, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x71, 0x6f, 0x6c, 0x6b, 0x6d, 0x6b, 0x69, 0x69, 0x6c, 0x72, 0x79, 0x7d, 0x89, 0x89, 0x8a, 0x8a, 0x8c, 0x8d, 0x8e, 0x8f, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x86, 0x84, 0x83, 0x82, 0x81, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x82, 0x8c, 0x94, 0x91, 0x83, 0x76, 0x79, 0x76, 0x75, 0x77, 0x7b, 0x7e, 0x7d, 0x7c, 0x7f, 0x80, 0x80, 0x81, 0x83, 0x84, 0x86, 0x87, 0x89, 0x89, 0x89, 0x88, 0x86, 0x84, 0x82, 0x81, 0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x86, 0x86, 0x86, 0x8a, 0x8a, 0x8b, 0x8b, 0x8a, 0x88, 0x87, 0x86, 0x80, 0x80, 0x7f, 0x7c, 0x78, 0x78, 0x7c, 0x80, 0x81, 0x88, 0x90, 0x90, 0x89, 0x82, 0x81, 0x82, 0x83, 0x7f, 0x7a, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x87, 0x85, 0x81, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d, 0x84, 0x7f, 0x78, 0x73, 0x71, 0x74, 0x79, 0x7d, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x7f, 0x7b, 0x77, 0x75, 0x75, 0x78, 0x79, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7f, 0x80, 0x8f, 0x96, 0x9f, 0xa3, 0x9f, 0x98, 0x92, 0x8f, 0x84, 0x83, 0x83, 0x83, 0x82, 0x7c, 0x72, 0x6a, 0x5d, 0x5e, 0x62, 0x69, 0x70, 0x73, 0x70, 0x6d, 0x6e, 0x71, 0x76, 0x7b, 0x80, 0x83, 0x85, 0x86, 0x89, 0x87, 0x83, 0x7f, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7b, 0x79, 0x77, 0x74, 0x73, 0x7a, 0x77, 0x75, 0x75, 0x78, 0x7f, 0x86, 0x8b, 0x8d, 0x8c, 0x8a, 0x8a, 0x8a, 0x8c, 0x8e, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8a, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x88, 0x87, 0x85, 0x83, 0x82, 0x81, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7c, 0x7d, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7e, 0x85, 0x91, 0x98, 0x90, 0x7b, 0x69, 0x74, 0x70, 0x6e, 0x70, 0x75, 0x7a, 0x7d, 0x7d, 0x79, 0x77, 0x74, 0x73, 0x75, 0x7a, 0x7f, 0x83, 0x89, 0x89, 0x89, 0x88, 0x87, 0x85, 0x82, 0x81, 0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x89, 0x8a, 0x8a, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x88, 0x87, 0x86, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x82, 0x8a, 0x91, 0x90, 0x89, 0x81, 0x7f, 0x80, 0x7c, 0x78, 0x74, 0x75, 0x78, 0x7c, 0x7d, 0x7d, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x77, 0x78, 0x79, 0x77, 0x76, 0x78, 0x7e, 0x83, 0x94, 0x90, 0x88, 0x80, 0x79, 0x76, 0x74, 0x74, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x80, 0x84, 0x88, 0x89, 0x86, 0x83, 0x82, 0x82, 0x77, 0x7a, 0x7c, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x78, 0x79, 0x7a, 0x7c, 0x7f, 0x81, 0x83, 0x84, 0x8f, 0xa2, 0xb8, 0xbe, 0xb2, 0x9d, 0x8e, 0x86, 0x8a, 0x82, 0x77, 0x6d, 0x68, 0x63, 0x5f, 0x5c, 0x5e, 0x5d, 0x5f, 0x65, 0x6c, 0x72, 0x73, 0x72, 0x6c, 0x73, 0x7d, 0x83, 0x85, 0x84, 0x83, 0x84, 0x83, 0x84, 0x84, 0x83, 0x7f, 0x7a, 0x75, 0x72, 0x70, 0x6f, 0x76, 0x80, 0x7d, 0x6f, 0x6a, 0x70, 0x6c, 0x70, 0x76, 0x7d, 0x83, 0x87, 0x8a, 0x8b, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x83, 0x82, 0x80, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x7e, 0x8a, 0x9d, 0x9b, 0x86, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7f, 0x80, 0x7c, 0x76, 0x77, 0x7e, 0x86, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x84, 0x82, 0x81, 0x82, 0x84, 0x86, 0x87, 0x88, 0x87, 0x87, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x88, 0x89, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x87, 0x85, 0x82, 0x80, 0x80, 0x82, 0x84, 0x86, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x8a, 0x97, 0x9c, 0x97, 0x8c, 0x84, 0x80, 0x82, 0x7e, 0x7a, 0x7a, 0x7d, 0x80, 0x81, 0x80, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x7a, 0x7e, 0x81, 0x8f, 0x8b, 0x85, 0x7f, 0x7a, 0x77, 0x76, 0x76, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x82, 0x85, 0x85, 0x83, 0x82, 0x84, 0x86, 0x7d, 0x7a, 0x77, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x74, 0x76, 0x79, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x97, 0xa7, 0xb7, 0xba, 0xaf, 0x9e, 0x92, 0x8d, 0x87, 0x80, 0x76, 0x6f, 0x6c, 0x69, 0x66, 0x63, 0x5a, 0x5f, 0x68, 0x73, 0x7a, 0x7a, 0x73, 0x6c, 0x6d, 0x73, 0x7b, 0x7f, 0x80, 0x80, 0x82, 0x84, 0x83, 0x84, 0x84, 0x83, 0x7f, 0x79, 0x74, 0x70, 0x6e, 0x6d, 0x75, 0x7f, 0x7c, 0x6e, 0x6a, 0x6f, 0x6f, 0x72, 0x78, 0x7f, 0x84, 0x88, 0x8b, 0x8b, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7e, 0x7f, 0x8d, 0x9e, 0x9c, 0x88, 0x7a, 0x7a, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x75, 0x76, 0x7a, 0x7d, 0x80, 0x7d, 0x79, 0x7a, 0x80, 0x85, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x81, 0x82, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x84, 0x84, 0x84, 0x86, 0x87, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x85, 0x83, 0x81, 0x81, 0x82, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x84, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7e, 0x86, 0x90, 0x94, 0x91, 0x8b, 0x86, 0x84, 0x88, 0x84, 0x80, 0x80, 0x82, 0x84, 0x84, 0x83, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x86, 0x84, 0x81, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x82, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x83, 0x89, 0x8e, 0x8b, 0x7f, 0x74, 0x74, 0x7b, 0x81, 0x7e, 0x78, 0x78, 0x76, 0x74, 0x74, 0x75, 0x7a, 0x7e, 0x81, 0x9d, 0xa6, 0xaf, 0xae, 0xa4, 0x98, 0x92, 0x90, 0x85, 0x7e, 0x76, 0x71, 0x6f, 0x6e, 0x6c, 0x69, 0x59, 0x5e, 0x67, 0x72, 0x78, 0x77, 0x70, 0x6a, 0x6f, 0x73, 0x76, 0x78, 0x78, 0x7b, 0x7f, 0x83, 0x84, 0x85, 0x84, 0x82, 0x7e, 0x78, 0x72, 0x6e, 0x6d, 0x6c, 0x73, 0x7d, 0x7a, 0x6d, 0x69, 0x6f, 0x73, 0x76, 0x7c, 0x82, 0x87, 0x8a, 0x8c, 0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8b, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x85, 0x83, 0x81, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7d, 0x82, 0x91, 0x9f, 0x9d, 0x8d, 0x81, 0x80, 0x7a, 0x78, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x78, 0x7c, 0x7f, 0x80, 0x7e, 0x7e, 0x82, 0x85, 0x89, 0x87, 0x83, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x83, 0x85, 0x86, 0x86, 0x86, 0x85, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x83, 0x82, 0x82, 0x83, 0x85, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7d, 0x7c, 0x7c, 0x7f, 0x85, 0x89, 0x8a, 0x86, 0x82, 0x82, 0x83, 0x84, 0x83, 0x81, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7b, 0x79, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x82, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x86, 0x8f, 0x96, 0x9d, 0x8b, 0x78, 0x75, 0x7e, 0x84, 0x7e, 0x75, 0x7f, 0x7a, 0x73, 0x6e, 0x6f, 0x76, 0x7f, 0x85, 0x96, 0x99, 0x9c, 0x98, 0x91, 0x8b, 0x8a, 0x8b, 0x85, 0x7f, 0x77, 0x71, 0x6f, 0x6d, 0x69, 0x66, 0x5f, 0x5f, 0x61, 0x66, 0x6c, 0x70, 0x6f, 0x6c, 0x70, 0x72, 0x72, 0x72, 0x72, 0x76, 0x7d, 0x83, 0x85, 0x85, 0x85, 0x82, 0x7d, 0x77, 0x70, 0x6d, 0x6c, 0x6a, 0x71, 0x7b, 0x79, 0x6d, 0x6a, 0x70, 0x78, 0x7b, 0x80, 0x86, 0x8a, 0x8c, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x86, 0x85, 0x82, 0x7f, 0x7c, 0x7b, 0x7a, 0x7a, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x76, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x7c, 0x87, 0x98, 0xa3, 0xa0, 0x95, 0x8c, 0x8a, 0x82, 0x80, 0x7e, 0x7a, 0x77, 0x74, 0x71, 0x70, 0x7a, 0x7d, 0x80, 0x82, 0x83, 0x83, 0x84, 0x85, 0x8a, 0x87, 0x82, 0x7e, 0x7c, 0x7c, 0x7e, 0x80, 0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x87, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x86, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x82, 0x7e, 0x79, 0x78, 0x7b, 0x80, 0x85, 0x88, 0x86, 0x83, 0x7f, 0x7f, 0x80, 0x81, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x76, 0x78, 0x7c, 0x82, 0x82, 0x7e, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x86, 0x86, 0x85, 0x84, 0x84, 0x8a, 0x93, 0x9b, 0xaa, 0x96, 0x81, 0x7a, 0x80, 0x84, 0x7c, 0x73, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x86, 0x86, 0x86, 0x83, 0x80, 0x7e, 0x7f, 0x80, 0x86, 0x80, 0x77, 0x71, 0x6c, 0x68, 0x62, 0x5e, 0x65, 0x67, 0x6c, 0x74, 0x79, 0x79, 0x74, 0x6f, 0x70, 0x70, 0x70, 0x6e, 0x6f, 0x74, 0x7d, 0x84, 0x85, 0x85, 0x85, 0x82, 0x7e, 0x77, 0x71, 0x6d, 0x6c, 0x6a, 0x71, 0x7b, 0x79, 0x6e, 0x6c, 0x73, 0x7d, 0x80, 0x84, 0x89, 0x8c, 0x8e, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8e, 0x8e, 0x8f, 0x8f, 0x8f, 0x90, 0x8f, 0x8f, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8d, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x89, 0x87, 0x84, 0x81, 0x7e, 0x7b, 0x7a, 0x7a, 0x76, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x7a, 0x8d, 0xa0, 0xa7, 0xa5, 0x9f, 0x9b, 0x98, 0x92, 0x90, 0x8d, 0x89, 0x84, 0x7f, 0x7b, 0x79, 0x81, 0x81, 0x82, 0x84, 0x86, 0x87, 0x86, 0x85, 0x8b, 0x88, 0x84, 0x80, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x82, 0x82, 0x85, 0x8a, 0x8e, 0x8d, 0x87, 0x82, 0x80, 0x7d, 0x7a, 0x7a, 0x7c, 0x7c, 0x7a, 0x77, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x78, 0x7a, 0x83, 0x8c, 0x8e, 0x87, 0x80, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x87, 0x87, 0x87, 0x86, 0x86, 0x8a, 0x92, 0x98, 0xa5, 0x96, 0x85, 0x7e, 0x80, 0x81, 0x7c, 0x76, 0x75, 0x80, 0x8f, 0x99, 0x97, 0x8a, 0x78, 0x6b, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x87, 0x80, 0x78, 0x71, 0x6c, 0x66, 0x60, 0x5b, 0x67, 0x73, 0x84, 0x94, 0x99, 0x8f, 0x7d, 0x6e, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x75, 0x7d, 0x84, 0x85, 0x86, 0x85, 0x83, 0x7f, 0x79, 0x73, 0x6f, 0x6d, 0x6c, 0x72, 0x7c, 0x7a, 0x70, 0x6f, 0x77, 0x81, 0x84, 0x87, 0x8b, 0x8e, 0x8f, 0x8e, 0x8e, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x92, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8a, 0x86, 0x83, 0x7f, 0x7d, 0x7b, 0x7b, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x7a, 0x92, 0xa8, 0xad, 0xab, 0xab, 0xaa, 0xa7, 0xa7, 0xa5, 0xa2, 0x9d, 0x97, 0x92, 0x8d, 0x8a, 0x8d, 0x89, 0x85, 0x85, 0x87, 0x89, 0x88, 0x86, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x82, 0x82, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x89, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x84, 0x85, 0x86, 0x87, 0x88, 0x85, 0x85, 0x87, 0x8d, 0x91, 0x8f, 0x86, 0x7e, 0x7c, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x78, 0x75, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7d, 0x7d, 0x81, 0x8c, 0x98, 0x9c, 0x94, 0x8b, 0x7c, 0x7d, 0x7f, 0x80, 0x7f, 0x7c, 0x79, 0x77, 0x73, 0x74, 0x74, 0x76, 0x78, 0x7b, 0x7e, 0x7f, 0x83, 0x85, 0x86, 0x85, 0x84, 0x86, 0x8b, 0x90, 0x92, 0x8b, 0x84, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x82, 0x8c, 0x9a, 0xa3, 0x9f, 0x90, 0x7d, 0x70, 0x72, 0x75, 0x7a, 0x81, 0x86, 0x87, 0x84, 0x81, 0x84, 0x7f, 0x78, 0x73, 0x6f, 0x6b, 0x66, 0x61, 0x68, 0x77, 0x8e, 0xa1, 0xa5, 0x97, 0x7f, 0x6d, 0x6a, 0x6c, 0x6f, 0x71, 0x73, 0x77, 0x7f, 0x85, 0x85, 0x85, 0x86, 0x84, 0x80, 0x7b, 0x75, 0x72, 0x6f, 0x6d, 0x74, 0x7e, 0x7c, 0x73, 0x72, 0x7a, 0x84, 0x86, 0x89, 0x8c, 0x8e, 0x8f, 0x8e, 0x8d, 0x90, 0x90, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x93, 0x94, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8f, 0x8c, 0x89, 0x85, 0x81, 0x7e, 0x7d, 0x7c, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x97, 0xaf, 0xb2, 0xb0, 0xb5, 0xb8, 0xb4, 0xbb, 0xb9, 0xb6, 0xb2, 0xab, 0xa5, 0x9f, 0x9c, 0x99, 0x91, 0x87, 0x84, 0x87, 0x8a, 0x89, 0x88, 0x88, 0x8a, 0x8b, 0x8c, 0x8b, 0x88, 0x85, 0x83, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x81, 0x81, 0x83, 0x84, 0x86, 0x88, 0x89, 0x89, 0x89, 0x83, 0x7d, 0x7e, 0x82, 0x84, 0x81, 0x7d, 0x7a, 0x78, 0x76, 0x78, 0x7a, 0x7b, 0x78, 0x75, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x81, 0x86, 0x93, 0xa2, 0xa6, 0x9e, 0x94, 0x7e, 0x80, 0x81, 0x81, 0x80, 0x7c, 0x77, 0x74, 0x72, 0x73, 0x74, 0x76, 0x79, 0x7c, 0x7f, 0x81, 0x80, 0x82, 0x85, 0x84, 0x82, 0x82, 0x85, 0x88, 0x80, 0x80, 0x80, 0x7d, 0x7b, 0x7c, 0x80, 0x83, 0x97, 0x99, 0x9c, 0x9b, 0x97, 0x8f, 0x86, 0x81, 0x73, 0x77, 0x80, 0x8a, 0x92, 0x93, 0x8e, 0x88, 0x81, 0x7d, 0x78, 0x75, 0x73, 0x71, 0x6d, 0x69, 0x6a, 0x75, 0x86, 0x96, 0x9a, 0x8f, 0x7c, 0x6d, 0x68, 0x6b, 0x70, 0x73, 0x75, 0x7a, 0x80, 0x85, 0x85, 0x85, 0x86, 0x85, 0x81, 0x7c, 0x77, 0x73, 0x71, 0x6f, 0x75, 0x7f, 0x7e, 0x74, 0x74, 0x7d, 0x85, 0x87, 0x8a, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x90, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x91, 0x91, 0x90, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x90, 0x8e, 0x8a, 0x86, 0x82, 0x7f, 0x7d, 0x7d, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x99, 0xb3, 0xb5, 0xb4, 0xbc, 0xbf, 0xbb, 0xc7, 0xc6, 0xc3, 0xbe, 0xb8, 0xb1, 0xab, 0xa8, 0xa0, 0x96, 0x89, 0x84, 0x86, 0x8a, 0x8a, 0x88, 0x87, 0x8a, 0x8e, 0x91, 0x90, 0x8c, 0x87, 0x84, 0x86, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x84, 0x84, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x85, 0x87, 0x86, 0x83, 0x7d, 0x7a, 0x7a, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7b, 0x7d, 0x7f, 0x81, 0x7c, 0x76, 0x75, 0x7b, 0x89, 0x99, 0xa3, 0xa8, 0x9c, 0x8e, 0x89, 0x8b, 0x8b, 0x84, 0x7c, 0x80, 0x7c, 0x7b, 0x84, 0x90, 0x95, 0x90, 0x88, 0x79, 0x78, 0x76, 0x76, 0x77, 0x7b, 0x7e, 0x80, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x7a, 0x7c, 0x7c, 0x7a, 0x79, 0x7f, 0x8d, 0x98, 0xb7, 0xb9, 0xb5, 0xa5, 0x8d, 0x7a, 0x73, 0x73, 0x79, 0x73, 0x76, 0x88, 0x9f, 0xa5, 0x95, 0x83, 0x7d, 0x74, 0x6c, 0x6e, 0x78, 0x7f, 0x7d, 0x79, 0x7d, 0x7f, 0x82, 0x84, 0x82, 0x7c, 0x75, 0x70, 0x6f, 0x74, 0x7a, 0x7c, 0x7c, 0x7c, 0x7e, 0x80, 0x83, 0x84, 0x88, 0x8e, 0x95, 0x9d, 0xa4, 0xa8, 0x87, 0x82, 0x7a, 0x74, 0x72, 0x75, 0x79, 0x7d, 0x8b, 0x8b, 0x8c, 0x8c, 0x8c, 0x8d, 0x8d, 0x8d, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x89, 0x8a, 0x8b, 0x8a, 0x88, 0x84, 0x80, 0x7d, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x84, 0x9d, 0xb1, 0xb5, 0xb7, 0xbe, 0xc3, 0xc1, 0xc0, 0xc1, 0xc3, 0xc3, 0xc0, 0xba, 0xb4, 0xb0, 0xae, 0x9e, 0x8c, 0x84, 0x86, 0x89, 0x87, 0x83, 0x89, 0x8b, 0x8e, 0x8f, 0x90, 0x8e, 0x8c, 0x8b, 0x87, 0x84, 0x82, 0x83, 0x86, 0x88, 0x86, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x86, 0x87, 0x86, 0x82, 0x7c, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x78, 0x7a, 0x7b, 0x81, 0x7e, 0x7a, 0x7a, 0x80, 0x8c, 0x98, 0xa0, 0x9d, 0x92, 0x86, 0x82, 0x84, 0x84, 0x7e, 0x78, 0x78, 0x75, 0x77, 0x82, 0x90, 0x98, 0x95, 0x8f, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7c, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x79, 0x7b, 0x7b, 0x78, 0x76, 0x7c, 0x87, 0x91, 0xa4, 0xa8, 0xa6, 0x9a, 0x88, 0x7a, 0x77, 0x78, 0x7e, 0x77, 0x74, 0x7e, 0x8f, 0x98, 0x94, 0x8c, 0x8a, 0x82, 0x7d, 0x81, 0x8c, 0x95, 0x95, 0x92, 0x8a, 0x89, 0x8a, 0x8f, 0x93, 0x91, 0x8a, 0x84, 0x7d, 0x7f, 0x7f, 0x7c, 0x7a, 0x7a, 0x7e, 0x82, 0x84, 0x85, 0x88, 0x8b, 0x90, 0x96, 0x9b, 0x9e, 0x8a, 0x87, 0x82, 0x7f, 0x7e, 0x80, 0x83, 0x85, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8e, 0x8f, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0x93, 0x94, 0x95, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8a, 0x8b, 0x8b, 0x8b, 0x88, 0x85, 0x81, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x86, 0x9e, 0xb3, 0xb7, 0xb7, 0xbd, 0xbf, 0xbc, 0xb9, 0xba, 0xbc, 0xbd, 0xbc, 0xba, 0xb7, 0xb5, 0xaa, 0x9c, 0x8b, 0x84, 0x86, 0x8a, 0x88, 0x85, 0x88, 0x8b, 0x8e, 0x8f, 0x8e, 0x8b, 0x89, 0x88, 0x89, 0x86, 0x83, 0x84, 0x86, 0x88, 0x86, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x84, 0x85, 0x84, 0x80, 0x7b, 0x79, 0x7a, 0x7c, 0x7d, 0x7b, 0x79, 0x76, 0x75, 0x75, 0x76, 0x77, 0x7f, 0x7e, 0x7e, 0x80, 0x85, 0x8c, 0x94, 0x99, 0x8e, 0x86, 0x7c, 0x79, 0x7b, 0x7c, 0x78, 0x73, 0x79, 0x76, 0x78, 0x7f, 0x8a, 0x90, 0x8d, 0x88, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7d, 0x80, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x7b, 0x7b, 0x7a, 0x77, 0x75, 0x78, 0x80, 0x86, 0x8b, 0x8f, 0x91, 0x8b, 0x81, 0x7a, 0x7a, 0x7d, 0x7f, 0x7a, 0x74, 0x74, 0x7c, 0x86, 0x8e, 0x93, 0x8e, 0x88, 0x85, 0x8b, 0x96, 0xa0, 0xa2, 0xa1, 0x94, 0x8f, 0x8e, 0x98, 0xa6, 0xac, 0xa7, 0x9f, 0x97, 0x93, 0x8a, 0x80, 0x78, 0x78, 0x7e, 0x84, 0x87, 0x87, 0x87, 0x88, 0x89, 0x8b, 0x8d, 0x8e, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x8a, 0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8c, 0x8d, 0x8d, 0x8c, 0x89, 0x86, 0x82, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x88, 0xa1, 0xb6, 0xb9, 0xb7, 0xba, 0xba, 0xb5, 0xb6, 0xb7, 0xb7, 0xb7, 0xb8, 0xb9, 0xba, 0xba, 0xa3, 0x97, 0x8a, 0x84, 0x87, 0x8a, 0x89, 0x87, 0x88, 0x8c, 0x90, 0x90, 0x8d, 0x89, 0x87, 0x87, 0x8d, 0x89, 0x85, 0x85, 0x86, 0x87, 0x86, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x7c, 0x7e, 0x7f, 0x7d, 0x7a, 0x7b, 0x7f, 0x83, 0x81, 0x7f, 0x7c, 0x78, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7c, 0x7f, 0x82, 0x85, 0x89, 0x8b, 0x8d, 0x82, 0x7c, 0x76, 0x74, 0x76, 0x77, 0x75, 0x72, 0x81, 0x7d, 0x7b, 0x7c, 0x7f, 0x7e, 0x7a, 0x75, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7f, 0x81, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x7e, 0x7d, 0x7b, 0x78, 0x77, 0x78, 0x7b, 0x7e, 0x7a, 0x7d, 0x80, 0x7e, 0x7a, 0x78, 0x7a, 0x7d, 0x7a, 0x7a, 0x77, 0x73, 0x72, 0x79, 0x85, 0x8f, 0x82, 0x7f, 0x7d, 0x82, 0x8a, 0x92, 0x95, 0x95, 0x8e, 0x88, 0x88, 0x96, 0xac, 0xba, 0xb9, 0xb3, 0xb4, 0xab, 0x9a, 0x87, 0x7a, 0x77, 0x7d, 0x83, 0x89, 0x88, 0x86, 0x84, 0x82, 0x80, 0x7f, 0x7f, 0x75, 0x78, 0x7c, 0x80, 0x83, 0x84, 0x83, 0x83, 0x87, 0x88, 0x8a, 0x8c, 0x8e, 0x90, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x8f, 0x8f, 0x8e, 0x8d, 0x8a, 0x87, 0x84, 0x83, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x8a, 0xa2, 0xb6, 0xb7, 0xb4, 0xb5, 0xb4, 0xaf, 0xaa, 0xa9, 0xa6, 0xa5, 0xa4, 0xa6, 0xa8, 0xa9, 0x9a, 0x92, 0x89, 0x85, 0x87, 0x8a, 0x8a, 0x89, 0x8b, 0x91, 0x96, 0x96, 0x8f, 0x8a, 0x88, 0x89, 0x8f, 0x8b, 0x86, 0x85, 0x86, 0x87, 0x85, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x85, 0x84, 0x83, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x75, 0x77, 0x79, 0x79, 0x7a, 0x7d, 0x84, 0x89, 0x84, 0x82, 0x7e, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x77, 0x79, 0x7d, 0x80, 0x82, 0x83, 0x82, 0x81, 0x7b, 0x79, 0x75, 0x74, 0x75, 0x76, 0x76, 0x76, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x74, 0x70, 0x6e, 0x78, 0x79, 0x79, 0x7b, 0x7d, 0x80, 0x82, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x81, 0x7f, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x74, 0x76, 0x77, 0x77, 0x76, 0x77, 0x79, 0x7b, 0x74, 0x78, 0x7b, 0x78, 0x73, 0x74, 0x7b, 0x83, 0x79, 0x77, 0x76, 0x78, 0x7b, 0x7f, 0x81, 0x81, 0x81, 0x7c, 0x7c, 0x8b, 0xa2, 0xb3, 0xb8, 0xb6, 0xc5, 0xb9, 0xa5, 0x8f, 0x7e, 0x78, 0x7c, 0x82, 0x89, 0x88, 0x85, 0x82, 0x7e, 0x7b, 0x78, 0x76, 0x72, 0x76, 0x7c, 0x82, 0x86, 0x87, 0x86, 0x85, 0x87, 0x88, 0x8a, 0x8c, 0x8f, 0x91, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8e, 0x8c, 0x89, 0x87, 0x85, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x8b, 0xa1, 0xb3, 0xb2, 0xae, 0xaf, 0xaf, 0xab, 0x9d, 0x9b, 0x96, 0x92, 0x8f, 0x8d, 0x8d, 0x8e, 0x92, 0x8e, 0x89, 0x87, 0x87, 0x89, 0x8a, 0x8a, 0x8e, 0x97, 0x9e, 0x9d, 0x94, 0x8d, 0x8c, 0x8f, 0x91, 0x8c, 0x87, 0x84, 0x85, 0x86, 0x85, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x87, 0x85, 0x84, 0x81, 0x7f, 0x7c, 0x7a, 0x79, 0x74, 0x75, 0x77, 0x77, 0x78, 0x7c, 0x83, 0x89, 0x82, 0x80, 0x7e, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x6f, 0x70, 0x71, 0x72, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x81, 0x7e, 0x7b, 0x7c, 0x7e, 0x7d, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x75, 0x79, 0x7c, 0x7b, 0x77, 0x74, 0x75, 0x78, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7b, 0x83, 0x90, 0x9e, 0xa8, 0xad, 0xbd, 0xb4, 0xa4, 0x91, 0x82, 0x7c, 0x7e, 0x82, 0x88, 0x87, 0x85, 0x82, 0x7f, 0x7a, 0x77, 0x75, 0x7b, 0x7e, 0x84, 0x89, 0x8d, 0x8e, 0x8e, 0x8d, 0x88, 0x89, 0x8a, 0x8c, 0x8f, 0x91, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8d, 0x8b, 0x89, 0x88, 0x7e, 0x7d, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x8a, 0x9e, 0xac, 0xa9, 0xa5, 0xa9, 0xac, 0xaa, 0xa9, 0xa6, 0xa3, 0x9e, 0x99, 0x94, 0x91, 0x8f, 0x8c, 0x8b, 0x8a, 0x88, 0x87, 0x88, 0x89, 0x8a, 0x8f, 0x99, 0xa3, 0xa1, 0x97, 0x8f, 0x8f, 0x93, 0x90, 0x8b, 0x85, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x84, 0x84, 0x82, 0x7f, 0x7d, 0x7a, 0x79, 0x78, 0x7a, 0x7b, 0x7a, 0x77, 0x75, 0x77, 0x7c, 0x81, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x79, 0x7a, 0x7c, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7c, 0x79, 0x78, 0x76, 0x77, 0x78, 0x78, 0x76, 0x76, 0x79, 0x7b, 0x6f, 0x71, 0x74, 0x75, 0x75, 0x76, 0x79, 0x7c, 0x75, 0x76, 0x78, 0x7b, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x7c, 0x79, 0x77, 0x79, 0x7d, 0x7d, 0x78, 0x72, 0x78, 0x77, 0x76, 0x79, 0x7e, 0x82, 0x84, 0x84, 0x80, 0x7d, 0x79, 0x76, 0x76, 0x76, 0x76, 0x75, 0x79, 0x7a, 0x7c, 0x7c, 0x7b, 0x7c, 0x7e, 0x81, 0x85, 0x86, 0x87, 0x84, 0x82, 0x88, 0x94, 0x9f, 0xa2, 0x9f, 0x98, 0x8e, 0x85, 0x81, 0x83, 0x86, 0x86, 0x86, 0x85, 0x84, 0x81, 0x7e, 0x7a, 0x78, 0x7e, 0x80, 0x84, 0x87, 0x8a, 0x8c, 0x8d, 0x8d, 0x89, 0x8a, 0x8b, 0x8d, 0x8f, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x96, 0x95, 0x95, 0x96, 0x95, 0x93, 0x90, 0x8e, 0x8c, 0x8b, 0x8a, 0x85, 0x82, 0x7f, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x88, 0x9a, 0xa5, 0xa0, 0x9c, 0xa3, 0xab, 0xab, 0xb2, 0xb2, 0xb1, 0xae, 0xa9, 0xa4, 0x9e, 0x9b, 0x88, 0x89, 0x8a, 0x89, 0x87, 0x86, 0x87, 0x89, 0x8c, 0x98, 0xa4, 0xa2, 0x97, 0x8e, 0x90, 0x95, 0x8f, 0x89, 0x83, 0x81, 0x83, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x81, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x78, 0x77, 0x76, 0x81, 0x81, 0x7e, 0x78, 0x73, 0x72, 0x75, 0x79, 0x77, 0x76, 0x75, 0x74, 0x75, 0x77, 0x79, 0x7b, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x74, 0x76, 0x78, 0x78, 0x75, 0x75, 0x78, 0x7b, 0x7b, 0x7d, 0x7d, 0x7a, 0x75, 0x73, 0x74, 0x76, 0x74, 0x75, 0x78, 0x7b, 0x7d, 0x7f, 0x81, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x77, 0x74, 0x73, 0x77, 0x7c, 0x7c, 0x75, 0x6e, 0x79, 0x77, 0x77, 0x7b, 0x82, 0x89, 0x8b, 0x8c, 0x8b, 0x81, 0x75, 0x70, 0x72, 0x77, 0x78, 0x77, 0x73, 0x76, 0x7a, 0x7b, 0x7a, 0x7c, 0x80, 0x84, 0x91, 0x95, 0x94, 0x89, 0x7c, 0x7b, 0x87, 0x95, 0x8b, 0x8c, 0x8c, 0x89, 0x85, 0x84, 0x86, 0x89, 0x85, 0x85, 0x85, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x79, 0x7a, 0x7c, 0x7e, 0x81, 0x83, 0x85, 0x86, 0x8a, 0x8b, 0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x92, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x99, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x96, 0x96, 0x96, 0x97, 0x96, 0x94, 0x91, 0x8f, 0x8d, 0x8c, 0x8b, 0x8a, 0x87, 0x83, 0x7f, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x87, 0x98, 0xa0, 0x9a, 0x96, 0xa0, 0xaa, 0xad, 0xa5, 0xa7, 0xa8, 0xa8, 0xa5, 0x9f, 0x99, 0x95, 0x86, 0x88, 0x8b, 0x8a, 0x87, 0x85, 0x86, 0x88, 0x89, 0x96, 0xa2, 0xa1, 0x95, 0x8d, 0x8e, 0x94, 0x8d, 0x88, 0x82, 0x80, 0x82, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x81, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x84, 0x83, 0x81, 0x7f, 0x7c, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x81, 0x7e, 0x7a, 0x7a, 0x7b, 0x7b, 0x78, 0x75, 0x78, 0x77, 0x77, 0x7a, 0x7d, 0x7c, 0x77, 0x73, 0x76, 0x77, 0x78, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x78, 0x7f, 0x8b, 0x9b, 0xa9, 0xb2, 0xab, 0x98, 0x81, 0x75, 0x75, 0x78, 0x78, 0x75, 0x77, 0x76, 0x75, 0x74, 0x75, 0x79, 0x7c, 0x7e, 0x92, 0x91, 0x8e, 0x8b, 0x88, 0x85, 0x83, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x87, 0x87, 0x86, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x7e, 0x7b, 0x79, 0x7b, 0x81, 0x87, 0x8a, 0x8a, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x92, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x96, 0x95, 0x94, 0x92, 0x90, 0x8d, 0x8c, 0x88, 0x86, 0x82, 0x7e, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x8e, 0x94, 0x9a, 0x9e, 0x9e, 0x9f, 0xa0, 0xa2, 0x9d, 0x99, 0x95, 0x93, 0x93, 0x91, 0x8d, 0x89, 0x88, 0x87, 0x85, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x8e, 0x96, 0x96, 0x90, 0x8a, 0x8a, 0x8b, 0x8c, 0x8a, 0x88, 0x85, 0x83, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x83, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x81, 0x7e, 0x7b, 0x78, 0x76, 0x75, 0x81, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x7b, 0x82, 0x8b, 0x90, 0x8d, 0x85, 0x7e, 0x7f, 0x7c, 0x7a, 0x7a, 0x7c, 0x7b, 0x78, 0x74, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x77, 0x7c, 0x86, 0x93, 0x9f, 0xa6, 0xa1, 0x91, 0x7e, 0x75, 0x75, 0x78, 0x77, 0x74, 0x77, 0x76, 0x75, 0x74, 0x75, 0x77, 0x7a, 0x7c, 0x89, 0x88, 0x86, 0x84, 0x82, 0x80, 0x7e, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x87, 0x87, 0x86, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x7e, 0x7b, 0x79, 0x7b, 0x81, 0x87, 0x8a, 0x8a, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x91, 0x92, 0x92, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x95, 0x95, 0x94, 0x92, 0x90, 0x8e, 0x8c, 0x89, 0x87, 0x83, 0x7f, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x8c, 0x91, 0x97, 0x9a, 0x9b, 0x9b, 0x9d, 0x9f, 0x99, 0x91, 0x86, 0x7f, 0x7f, 0x83, 0x86, 0x88, 0x87, 0x87, 0x85, 0x85, 0x85, 0x86, 0x87, 0x88, 0x8b, 0x91, 0x95, 0x94, 0x8e, 0x8b, 0x8b, 0x8e, 0x8a, 0x88, 0x86, 0x84, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x80, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x86, 0x85, 0x82, 0x7f, 0x7b, 0x78, 0x75, 0x73, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7b, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7c, 0x75, 0x7a, 0x84, 0x90, 0x99, 0x9a, 0x94, 0x8e, 0x89, 0x84, 0x7e, 0x7a, 0x7a, 0x7a, 0x78, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7e, 0x7f, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x7d, 0x86, 0x8f, 0x94, 0x91, 0x86, 0x7a, 0x74, 0x76, 0x77, 0x75, 0x72, 0x77, 0x76, 0x75, 0x74, 0x74, 0x76, 0x78, 0x79, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x83, 0x86, 0x86, 0x86, 0x85, 0x82, 0x80, 0x7d, 0x7c, 0x7d, 0x7a, 0x79, 0x7c, 0x82, 0x88, 0x8a, 0x8a, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x94, 0x93, 0x90, 0x8e, 0x8d, 0x8b, 0x88, 0x84, 0x80, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x87, 0x8c, 0x92, 0x94, 0x94, 0x94, 0x96, 0x99, 0x94, 0x87, 0x77, 0x6c, 0x6d, 0x76, 0x80, 0x86, 0x87, 0x86, 0x86, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x90, 0x91, 0x91, 0x8e, 0x8a, 0x89, 0x8c, 0x90, 0x86, 0x85, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x81, 0x82, 0x82, 0x83, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x87, 0x86, 0x83, 0x7f, 0x7b, 0x77, 0x74, 0x72, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x79, 0x7d, 0x7f, 0x81, 0x82, 0x83, 0x7f, 0x7f, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x83, 0x83, 0x85, 0x8c, 0x95, 0x9c, 0x9f, 0xa0, 0x90, 0x89, 0x80, 0x7a, 0x78, 0x79, 0x79, 0x78, 0x79, 0x79, 0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x75, 0x74, 0x73, 0x76, 0x7a, 0x7f, 0x82, 0x81, 0x7c, 0x76, 0x74, 0x76, 0x76, 0x74, 0x71, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x77, 0x79, 0x7d, 0x80, 0x82, 0x86, 0x86, 0x85, 0x84, 0x82, 0x80, 0x7d, 0x7c, 0x7c, 0x7a, 0x79, 0x7d, 0x83, 0x89, 0x8b, 0x8a, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x8f, 0x8e, 0x8c, 0x89, 0x85, 0x81, 0x7d, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x82, 0x86, 0x8b, 0x8d, 0x8c, 0x8d, 0x8f, 0x91, 0x8e, 0x83, 0x75, 0x6d, 0x6e, 0x76, 0x7f, 0x84, 0x86, 0x86, 0x87, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8f, 0x8d, 0x89, 0x85, 0x83, 0x85, 0x89, 0x8d, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x85, 0x85, 0x85, 0x85, 0x84, 0x87, 0x86, 0x83, 0x7f, 0x7b, 0x77, 0x74, 0x72, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x70, 0x72, 0x75, 0x78, 0x7b, 0x7d, 0x7e, 0x7f, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x93, 0x91, 0x92, 0x97, 0x9e, 0xa3, 0xa4, 0xa3, 0x90, 0x88, 0x7f, 0x78, 0x77, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x75, 0x73, 0x72, 0x72, 0x74, 0x76, 0x78, 0x77, 0x75, 0x74, 0x74, 0x75, 0x75, 0x74, 0x72, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x73, 0x72, 0x72, 0x74, 0x77, 0x7b, 0x7f, 0x82, 0x86, 0x86, 0x85, 0x84, 0x82, 0x7f, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x85, 0x8a, 0x8b, 0x8b, 0x8d, 0x8e, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x93, 0x92, 0x90, 0x8f, 0x8c, 0x8a, 0x85, 0x81, 0x7d, 0x7b, 0x7a, 0x7a, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x7d, 0x80, 0x84, 0x85, 0x84, 0x85, 0x87, 0x8a, 0x89, 0x84, 0x7e, 0x7c, 0x7e, 0x82, 0x84, 0x84, 0x86, 0x87, 0x87, 0x88, 0x89, 0x89, 0x89, 0x89, 0x8a, 0x85, 0x7f, 0x7b, 0x7c, 0x80, 0x85, 0x88, 0x81, 0x81, 0x80, 0x80, 0x81, 0x82, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x86, 0x85, 0x82, 0x7f, 0x7b, 0x78, 0x75, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x6f, 0x70, 0x73, 0x75, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x93, 0x96, 0x9d, 0xa5, 0xa9, 0xa6, 0x9d, 0x96, 0x89, 0x82, 0x7b, 0x77, 0x77, 0x79, 0x7a, 0x79, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x73, 0x72, 0x71, 0x72, 0x75, 0x7a, 0x7f, 0x82, 0x85, 0x85, 0x85, 0x84, 0x81, 0x7f, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7f, 0x86, 0x8b, 0x8c, 0x8b, 0x8d, 0x8e, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x96, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x94, 0x92, 0x90, 0x8f, 0x8c, 0x89, 0x85, 0x80, 0x7c, 0x7a, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x79, 0x7c, 0x7f, 0x7f, 0x7e, 0x7e, 0x81, 0x84, 0x84, 0x83, 0x83, 0x86, 0x89, 0x8a, 0x87, 0x83, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x83, 0x7d, 0x77, 0x75, 0x79, 0x7f, 0x82, 0x83, 0x82, 0x81, 0x81, 0x81, 0x81, 0x83, 0x84, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x86, 0x87, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x85, 0x84, 0x81, 0x7e, 0x7b, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x71, 0x72, 0x73, 0x75, 0x76, 0x76, 0x75, 0x75, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x84, 0x87, 0x8e, 0x95, 0x98, 0x93, 0x8a, 0x82, 0x7e, 0x7a, 0x76, 0x75, 0x78, 0x7a, 0x7a, 0x78, 0x7c, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x75, 0x76, 0x76, 0x75, 0x73, 0x73, 0x76, 0x78, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x75, 0x7a, 0x7f, 0x82, 0x85, 0x85, 0x85, 0x83, 0x81, 0x7f, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7f, 0x87, 0x8b, 0x8c, 0x8b, 0x8d, 0x8e, 0x8f, 0x91, 0x93, 0x94, 0x96, 0x96, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8c, 0x89, 0x84, 0x7f, 0x7b, 0x79, 0x78, 0x78, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x76, 0x79, 0x7b, 0x7b, 0x79, 0x79, 0x7d, 0x80, 0x81, 0x7f, 0x7e, 0x80, 0x84, 0x86, 0x85, 0x83, 0x87, 0x87, 0x88, 0x88, 0x88, 0x86, 0x84, 0x83, 0x7e, 0x79, 0x74, 0x75, 0x7c, 0x82, 0x83, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x87, 0x88, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x82, 0x81, 0x81, 0x84, 0x83, 0x81, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x76, 0x74, 0x72, 0x73, 0x77, 0x78, 0x77, 0x75, 0x77, 0x74, 0x73, 0x74, 0x78, 0x7a, 0x7a, 0x78, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x86, 0x84, 0x84, 0x86, 0x88, 0x87, 0x82, 0x7e, 0x79, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x78, 0x78, 0x78, 0x75, 0x72, 0x73, 0x77, 0x7b, 0x74, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x76, 0x74, 0x73, 0x73, 0x75, 0x7a, 0x7f, 0x82, 0x85, 0x85, 0x84, 0x83, 0x81, 0x7f, 0x7c, 0x7b, 0x79, 0x79, 0x7a, 0x80, 0x87, 0x8c, 0x8c, 0x8b, 0x8d, 0x8e, 0x8f, 0x91, 0x93, 0x95, 0x96, 0x97, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x94, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8b, 0x88, 0x84, 0x7f, 0x7b, 0x78, 0x77, 0x77, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x75, 0x77, 0x79, 0x79, 0x77, 0x77, 0x7a, 0x7e, 0x7f, 0x7a, 0x76, 0x76, 0x7a, 0x7f, 0x82, 0x83, 0x87, 0x88, 0x88, 0x88, 0x87, 0x85, 0x82, 0x81, 0x7d, 0x77, 0x74, 0x77, 0x7f, 0x85, 0x85, 0x82, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x87, 0x88, 0x85, 0x85, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x74, 0x77, 0x7c, 0x80, 0x80, 0x7c, 0x78, 0x77, 0x76, 0x75, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x78, 0x7b, 0x7e, 0x7d, 0x7b, 0x7a, 0x7c, 0x7e, 0x81, 0x82, 0x84, 0x86, 0x86, 0x85, 0x83, 0x82, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x74, 0x76, 0x76, 0x74, 0x72, 0x72, 0x75, 0x79, 0x74, 0x79, 0x75, 0x6d, 0x70, 0x7e, 0x86, 0x84, 0x81, 0x84, 0x85, 0x82, 0x7d, 0x78, 0x76, 0x76, 0x75, 0x7b, 0x83, 0x88, 0x8a, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x96, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e, 0x8d, 0x8a, 0x85, 0x7f, 0x79, 0x74, 0x71, 0x6f, 0x71, 0x70, 0x70, 0x6f, 0x6e, 0x6d, 0x6c, 0x6c, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x77, 0x7a, 0x7e, 0x82, 0x84, 0x85, 0x85, 0x86, 0x85, 0x84, 0x82, 0x7f, 0x7e, 0x7b, 0x7c, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x85, 0x84, 0x82, 0x7f, 0x7d, 0x7d, 0x7f, 0x82, 0x84, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x80, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x82, 0x81, 0x80, 0x80, 0x81, 0x84, 0x88, 0x8a, 0x85, 0x84, 0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7e, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x77, 0x7c, 0x80, 0x81, 0x7d, 0x79, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x79, 0x7c, 0x7e, 0x7d, 0x7b, 0x79, 0x7b, 0x7d, 0x81, 0x82, 0x84, 0x86, 0x86, 0x85, 0x83, 0x82, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x73, 0x75, 0x77, 0x76, 0x74, 0x73, 0x75, 0x78, 0x70, 0x7c, 0x82, 0x7f, 0x81, 0x88, 0x86, 0x7e, 0x89, 0x8a, 0x8a, 0x86, 0x80, 0x7b, 0x78, 0x77, 0x73, 0x78, 0x80, 0x86, 0x89, 0x8b, 0x8d, 0x8e, 0x8e, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e, 0x8d, 0x8a, 0x85, 0x7f, 0x79, 0x75, 0x71, 0x70, 0x71, 0x71, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x75, 0x78, 0x7c, 0x80, 0x83, 0x86, 0x86, 0x87, 0x86, 0x85, 0x83, 0x80, 0x7f, 0x7d, 0x7e, 0x80, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x82, 0x7f, 0x7d, 0x7d, 0x7f, 0x82, 0x84, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x81, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x82, 0x81, 0x80, 0x80, 0x81, 0x84, 0x88, 0x8a, 0x84, 0x83, 0x81, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x7c, 0x80, 0x81, 0x7d, 0x7a, 0x78, 0x77, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x77, 0x78, 0x7b, 0x7e, 0x7f, 0x7d, 0x7a, 0x78, 0x7a, 0x7c, 0x82, 0x83, 0x85, 0x86, 0x86, 0x85, 0x83, 0x82, 0x7b, 0x79, 0x77, 0x76, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x70, 0x74, 0x79, 0x79, 0x77, 0x75, 0x75, 0x76, 0x7e, 0x91, 0xa0, 0xa2, 0xa1, 0x9f, 0x95, 0x87, 0x8a, 0x8a, 0x88, 0x85, 0x80, 0x7c, 0x79, 0x77, 0x76, 0x79, 0x7f, 0x84, 0x89, 0x8c, 0x8e, 0x8f, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e, 0x8d, 0x8a, 0x85, 0x7f, 0x7a, 0x75, 0x73, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x70, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x74, 0x77, 0x7b, 0x7f, 0x82, 0x86, 0x86, 0x86, 0x86, 0x84, 0x82, 0x80, 0x7f, 0x80, 0x81, 0x83, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x83, 0x80, 0x7d, 0x7d, 0x7f, 0x82, 0x83, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x81, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x82, 0x81, 0x80, 0x80, 0x81, 0x84, 0x87, 0x89, 0x83, 0x81, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x7c, 0x80, 0x81, 0x7e, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7d, 0x7f, 0x7f, 0x7d, 0x79, 0x77, 0x79, 0x7c, 0x82, 0x84, 0x85, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7a, 0x78, 0x77, 0x75, 0x73, 0x73, 0x73, 0x73, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x71, 0x71, 0x6f, 0x74, 0x7a, 0x7b, 0x79, 0x76, 0x75, 0x76, 0x88, 0x9d, 0xad, 0xad, 0xa8, 0xa4, 0x99, 0x8c, 0x84, 0x82, 0x81, 0x81, 0x82, 0x82, 0x80, 0x7e, 0x84, 0x83, 0x84, 0x86, 0x8b, 0x8d, 0x8e, 0x8d, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e, 0x8c, 0x8a, 0x85, 0x80, 0x7b, 0x77, 0x74, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x79, 0x7d, 0x82, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x82, 0x7f, 0x7d, 0x7d, 0x7f, 0x82, 0x84, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x81, 0x81, 0x80, 0x81, 0x82, 0x84, 0x86, 0x87, 0x81, 0x7f, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x78, 0x7c, 0x80, 0x82, 0x7f, 0x7c, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x7a, 0x7b, 0x7e, 0x7f, 0x7f, 0x7c, 0x78, 0x77, 0x79, 0x7c, 0x83, 0x85, 0x86, 0x87, 0x87, 0x85, 0x83, 0x81, 0x79, 0x78, 0x76, 0x74, 0x73, 0x72, 0x72, 0x72, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74, 0x74, 0x70, 0x74, 0x7a, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x85, 0x96, 0x9f, 0x98, 0x8f, 0x8d, 0x8a, 0x83, 0x85, 0x83, 0x83, 0x89, 0x92, 0x98, 0x99, 0x97, 0x96, 0x90, 0x8b, 0x8a, 0x8d, 0x8f, 0x8d, 0x8a, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x93, 0x93, 0x94, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e, 0x8c, 0x89, 0x85, 0x80, 0x7c, 0x78, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x78, 0x79, 0x7c, 0x81, 0x85, 0x87, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7f, 0x82, 0x84, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x85, 0x85, 0x80, 0x7e, 0x7a, 0x77, 0x75, 0x76, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7c, 0x80, 0x82, 0x80, 0x7e, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7e, 0x7e, 0x7b, 0x78, 0x77, 0x7b, 0x7e, 0x84, 0x85, 0x87, 0x87, 0x87, 0x85, 0x82, 0x81, 0x7a, 0x78, 0x77, 0x75, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x73, 0x76, 0x79, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x8c, 0x9a, 0x9d, 0x8e, 0x82, 0x82, 0x86, 0x85, 0x8d, 0x8a, 0x8c, 0x96, 0xa4, 0xaf, 0xb2, 0xb1, 0xa0, 0x97, 0x8d, 0x8b, 0x8e, 0x90, 0x8d, 0x89, 0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e, 0x8b, 0x89, 0x85, 0x81, 0x7c, 0x79, 0x77, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x78, 0x78, 0x78, 0x7a, 0x7d, 0x81, 0x85, 0x88, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7c, 0x7b, 0x7c, 0x86, 0x86, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x7b, 0x7f, 0x83, 0x85, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7f, 0x7c, 0x78, 0x75, 0x73, 0x74, 0x76, 0x78, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7c, 0x80, 0x82, 0x81, 0x7f, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7b, 0x7d, 0x7e, 0x7c, 0x7d, 0x7d, 0x7a, 0x78, 0x78, 0x7c, 0x80, 0x85, 0x86, 0x87, 0x88, 0x87, 0x85, 0x82, 0x81, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x76, 0x74, 0x76, 0x7b, 0x80, 0x94, 0xa2, 0xa5, 0x94, 0x84, 0x84, 0x88, 0x89, 0x8d, 0x89, 0x8a, 0x95, 0xa7, 0xb4, 0xb7, 0xb5, 0x9e, 0x94, 0x89, 0x87, 0x8c, 0x91, 0x8f, 0x8b, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e, 0x8b, 0x89, 0x85, 0x81, 0x7d, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x76, 0x75, 0x76, 0x77, 0x7a, 0x7f, 0x83, 0x85, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7f, 0x80, 0x85, 0x85, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x7a, 0x7f, 0x83, 0x87, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x7f, 0x7c, 0x77, 0x74, 0x72, 0x73, 0x76, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x79, 0x79, 0x7c, 0x80, 0x82, 0x81, 0x7f, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7c, 0x7d, 0x7c, 0x7a, 0x77, 0x78, 0x7d, 0x82, 0x85, 0x86, 0x87, 0x88, 0x87, 0x85, 0x82, 0x81, 0x7b, 0x7a, 0x78, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x72, 0x72, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x79, 0x78, 0x77, 0x74, 0x72, 0x75, 0x7d, 0x83, 0x8d, 0x9d, 0xa2, 0x91, 0x81, 0x7e, 0x80, 0x80, 0x85, 0x80, 0x80, 0x8b, 0x9d, 0xab, 0xae, 0xab, 0x99, 0x8e, 0x82, 0x82, 0x8a, 0x92, 0x92, 0x8e, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x93, 0x91, 0x8f, 0x8e, 0x8b, 0x89, 0x85, 0x81, 0x7d, 0x7b, 0x79, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x73, 0x72, 0x73, 0x74, 0x77, 0x7c, 0x80, 0x82, 0x8b, 0x89, 0x87, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x84, 0x82, 0x7f, 0x7c, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x79, 0x7f, 0x84, 0x87, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x80, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x80, 0x7b, 0x77, 0x75, 0x76, 0x77, 0x76, 0x74, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x7b, 0x7d, 0x7e, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x7f, 0x7d, 0x7b, 0x78, 0x76, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x7f, 0x81, 0x81, 0x7d, 0x7a, 0x7c, 0x84, 0x8c, 0x82, 0x84, 0x86, 0x87, 0x88, 0x8c, 0x93, 0x98, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8d, 0x8d, 0x8e, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x98, 0x98, 0x98, 0x97, 0x96, 0x96, 0x96, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x89, 0x87, 0x83, 0x7f, 0x7b, 0x78, 0x75, 0x74, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x79, 0x79, 0x78, 0x7a, 0x7d, 0x82, 0x87, 0x8a, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x78, 0x7e, 0x83, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x82, 0x80, 0x7b, 0x77, 0x75, 0x76, 0x77, 0x76, 0x74, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x75, 0x75, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x77, 0x7a, 0x7f, 0x86, 0x8d, 0x94, 0x97, 0x8d, 0x87, 0x80, 0x79, 0x77, 0x7b, 0x82, 0x87, 0x8a, 0x8b, 0x8c, 0x8b, 0x8a, 0x8b, 0x8e, 0x91, 0x8d, 0x8d, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8a, 0x88, 0x84, 0x7f, 0x7b, 0x77, 0x74, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7d, 0x80, 0x84, 0x87, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x84, 0x83, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a, 0x78, 0x78, 0x76, 0x75, 0x78, 0x7e, 0x83, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7b, 0x77, 0x75, 0x76, 0x78, 0x77, 0x75, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x76, 0x7b, 0x85, 0x93, 0xa2, 0xb0, 0xb8, 0xa2, 0x92, 0x7f, 0x75, 0x76, 0x7c, 0x81, 0x82, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x84, 0x84, 0x8b, 0x8a, 0x8a, 0x8a, 0x8c, 0x8d, 0x8f, 0x90, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x91, 0x8f, 0x8e, 0x8e, 0x8c, 0x89, 0x84, 0x7f, 0x7a, 0x76, 0x73, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x74, 0x77, 0x7c, 0x81, 0x84, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x82, 0x80, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x75, 0x75, 0x78, 0x7e, 0x82, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x80, 0x7b, 0x77, 0x75, 0x77, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x7a, 0x83, 0x91, 0xa2, 0xb2, 0xbc, 0xb2, 0x9b, 0x80, 0x74, 0x78, 0x80, 0x83, 0x81, 0x86, 0x85, 0x83, 0x83, 0x84, 0x83, 0x81, 0x7f, 0x89, 0x89, 0x89, 0x8a, 0x8b, 0x8e, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8a, 0x84, 0x7e, 0x78, 0x74, 0x72, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x72, 0x72, 0x71, 0x70, 0x70, 0x70, 0x72, 0x77, 0x7e, 0x85, 0x88, 0x88, 0x86, 0x84, 0x88, 0x87, 0x87, 0x85, 0x82, 0x7f, 0x7d, 0x7b, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x76, 0x75, 0x77, 0x75, 0x74, 0x78, 0x7e, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x85, 0x84, 0x7f, 0x7b, 0x77, 0x75, 0x77, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x78, 0x77, 0x77, 0x7b, 0x83, 0x8f, 0x9b, 0xa2, 0xb3, 0x9c, 0x82, 0x77, 0x7b, 0x83, 0x86, 0x84, 0x87, 0x85, 0x86, 0x8a, 0x90, 0x93, 0x90, 0x8c, 0x89, 0x89, 0x89, 0x8a, 0x8c, 0x8e, 0x91, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x95, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x8a, 0x83, 0x7d, 0x77, 0x74, 0x72, 0x71, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x78, 0x7f, 0x86, 0x8a, 0x89, 0x86, 0x84, 0x88, 0x87, 0x86, 0x84, 0x81, 0x7e, 0x7b, 0x79, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x77, 0x75, 0x74, 0x77, 0x7d, 0x82, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x85, 0x84, 0x7f, 0x7b, 0x77, 0x76, 0x78, 0x79, 0x79, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x7a, 0x78, 0x75, 0x74, 0x76, 0x7b, 0x81, 0x85, 0xa0, 0x92, 0x82, 0x7a, 0x7d, 0x83, 0x87, 0x87, 0x8e, 0x8c, 0x8e, 0x98, 0xa3, 0xa8, 0xa5, 0xa0, 0x8a, 0x8a, 0x8a, 0x8b, 0x8d, 0x8f, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8d, 0x8d, 0x89, 0x82, 0x7c, 0x76, 0x74, 0x73, 0x73, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x79, 0x80, 0x86, 0x89, 0x8a, 0x88, 0x87, 0x88, 0x87, 0x86, 0x84, 0x81, 0x7d, 0x7a, 0x78, 0x75, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x77, 0x77, 0x75, 0x74, 0x77, 0x7d, 0x81, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x7f, 0x7b, 0x77, 0x76, 0x78, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x79, 0x78, 0x76, 0x74, 0x73, 0x74, 0x75, 0x76, 0x84, 0x81, 0x7d, 0x7b, 0x7b, 0x7f, 0x84, 0x88, 0x8c, 0x8a, 0x8d, 0x98, 0xa6, 0xad, 0xa8, 0xa2, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x90, 0x91, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x92, 0x91, 0x8f, 0x8e, 0x8d, 0x8d, 0x8b, 0x87, 0x81, 0x7b, 0x76, 0x74, 0x74, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x78, 0x7b, 0x7f, 0x84, 0x87, 0x89, 0x8a, 0x8a, 0x87, 0x87, 0x86, 0x84, 0x81, 0x7e, 0x7b, 0x79, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x76, 0x74, 0x74, 0x77, 0x7d, 0x81, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x7f, 0x7b, 0x77, 0x76, 0x78, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x7b, 0x7d, 0x7e, 0x83, 0x84, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x6f, 0x75, 0x79, 0x7a, 0x78, 0x7a, 0x81, 0x88, 0x84, 0x81, 0x84, 0x8f, 0x9e, 0xa4, 0x9e, 0x96, 0x8e, 0x8e, 0x8d, 0x8e, 0x8e, 0x90, 0x91, 0x92, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8e, 0x8d, 0x8d, 0x8a, 0x86, 0x80, 0x7a, 0x76, 0x74, 0x75, 0x76, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x7b, 0x7c, 0x7f, 0x83, 0x86, 0x89, 0x8b, 0x8c, 0x87, 0x86, 0x86, 0x84, 0x82, 0x7f, 0x7c, 0x7a, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x76, 0x74, 0x73, 0x77, 0x7d, 0x81, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x82, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7c, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x80, 0x80, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x88, 0x88, 0x87, 0x85, 0x83, 0x81, 0x86, 0x89, 0x8c, 0x90, 0x93, 0x93, 0x93, 0x92, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8e, 0x8c, 0x8a, 0x8a, 0x87, 0x81, 0x7b, 0x76, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x72, 0x72, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x83, 0x84, 0x86, 0x87, 0x89, 0x89, 0x89, 0x89, 0x89, 0x87, 0x84, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x78, 0x79, 0x7a, 0x7b, 0x7e, 0x81, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x82, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7c, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x81, 0x80, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x76, 0x79, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8b, 0x89, 0x87, 0x85, 0x88, 0x8a, 0x8d, 0x90, 0x92, 0x93, 0x93, 0x93, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8e, 0x8c, 0x8a, 0x8a, 0x87, 0x81, 0x7b, 0x77, 0x75, 0x74, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x73, 0x73, 0x73, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x83, 0x84, 0x86, 0x88, 0x88, 0x89, 0x88, 0x88, 0x88, 0x86, 0x83, 0x7f, 0x7d, 0x7c, 0x7d, 0x7d, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x7a, 0x7c, 0x7e, 0x81, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7e, 0x81, 0x83, 0x83, 0x83, 0x81, 0x80, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x75, 0x76, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x85, 0x87, 0x89, 0x8d, 0x90, 0x91, 0x90, 0x8e, 0x8c, 0x8b, 0x8c, 0x8e, 0x90, 0x92, 0x93, 0x93, 0x93, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x92, 0x91, 0x8e, 0x8c, 0x8b, 0x8a, 0x87, 0x81, 0x7b, 0x77, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7c, 0x7d, 0x84, 0x85, 0x86, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x85, 0x81, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x81, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7e, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x76, 0x76, 0x78, 0x7a, 0x7d, 0x80, 0x84, 0x85, 0x87, 0x8b, 0x91, 0x96, 0x98, 0x97, 0x95, 0x93, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x91, 0x8f, 0x8d, 0x8b, 0x8a, 0x86, 0x81, 0x7b, 0x77, 0x76, 0x76, 0x76, 0x74, 0x73, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x76, 0x78, 0x7b, 0x7e, 0x80, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x83, 0x80, 0x7d, 0x7b, 0x7b, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x7f, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x77, 0x77, 0x78, 0x7b, 0x7e, 0x81, 0x84, 0x86, 0x87, 0x8c, 0x94, 0x9a, 0x9e, 0x9d, 0x9a, 0x97, 0x93, 0x92, 0x91, 0x90, 0x90, 0x92, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x8f, 0x8d, 0x8c, 0x8a, 0x86, 0x81, 0x7b, 0x78, 0x76, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x77, 0x77, 0x78, 0x77, 0x76, 0x77, 0x79, 0x7d, 0x80, 0x83, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x82, 0x7f, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x82, 0x82, 0x82, 0x82, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x82, 0x80, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x77, 0x78, 0x79, 0x7b, 0x7e, 0x82, 0x85, 0x87, 0x87, 0x8d, 0x96, 0x9e, 0xa1, 0xa0, 0x9c, 0x99, 0x97, 0x95, 0x92, 0x90, 0x90, 0x91, 0x94, 0x95, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x8f, 0x8e, 0x8c, 0x89, 0x86, 0x81, 0x7c, 0x78, 0x77, 0x77, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x7a, 0x7e, 0x83, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x84, 0x82, 0x7f, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x84, 0x82, 0x81, 0x81, 0x82, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x78, 0x79, 0x7c, 0x7f, 0x82, 0x85, 0x87, 0x86, 0x8d, 0x97, 0xa0, 0xa3, 0xa2, 0x9d, 0x99, 0x9a, 0x97, 0x93, 0x90, 0x8f, 0x91, 0x94, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x92, 0x92, 0x92, 0x91, 0x8f, 0x8e, 0x8d, 0x89, 0x86, 0x81, 0x7c, 0x79, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7b, 0x7a, 0x78, 0x78, 0x7b, 0x7f, 0x84, 0x88, 0x88, 0x88, 0x89, 0x88, 0x88, 0x86, 0x84, 0x83, 0x84, 0x83, 0x80, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x81, 0x80, 0x80, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x83, 0x86, 0x84, 0x82, 0x80, 0x80, 0x82, 0x84, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7f, 0x81, 0x83, 0x85, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7c, 0x7f, 0x83, 0x86, 0x88, 0x86, 0x8d, 0x97, 0xa0, 0xa4, 0xa2, 0x9d, 0x99, 0x9b, 0x98, 0x94, 0x90, 0x8f, 0x91, 0x94, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x89, 0x86, 0x81, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7b, 0x80, 0x85, 0x89, 0x89, 0x89, 0x89, 0x89, 0x87, 0x86, 0x84, 0x83, 0x85, 0x83, 0x80, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x82, 0x81, 0x80, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x86, 0x84, 0x82, 0x80, 0x80, 0x82, 0x84, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x79, 0x77, 0x75, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7d, 0x80, 0x84, 0x86, 0x88, 0x8a, 0x8e, 0x97, 0xa1, 0xa8, 0xa6, 0x9e, 0x97, 0x9a, 0x97, 0x94, 0x90, 0x90, 0x91, 0x94, 0x96, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x94, 0x94, 0x93, 0x92, 0x93, 0x94, 0x96, 0x97, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x86, 0x83, 0x7f, 0x7b, 0x79, 0x7a, 0x7c, 0x7e, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x78, 0x78, 0x78, 0x7a, 0x7d, 0x81, 0x86, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x87, 0x84, 0x83, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x7b, 0x7d, 0x7f, 0x83, 0x80, 0x7d, 0x7e, 0x81, 0x83, 0x83, 0x81, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7f, 0x82, 0x84, 0x83, 0x80, 0x80, 0x82, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x84, 0x86, 0x86, 0x85, 0x84, 0x83, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x81, 0x82, 0x82, 0x82, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x76, 0x77, 0x7a, 0x7d, 0x80, 0x84, 0x86, 0x88, 0x89, 0x8e, 0x96, 0xa0, 0xa6, 0xa5, 0x9e, 0x98, 0x99, 0x96, 0x93, 0x90, 0x90, 0x91, 0x94, 0x96, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x92, 0x92, 0x91, 0x90, 0x91, 0x92, 0x94, 0x95, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x89, 0x86, 0x81, 0x7d, 0x7b, 0x7b, 0x7d, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x79, 0x79, 0x7b, 0x7f, 0x83, 0x87, 0x8a, 0x89, 0x8a, 0x8a, 0x8a, 0x88, 0x86, 0x84, 0x82, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7b, 0x7a, 0x78, 0x77, 0x78, 0x7b, 0x7e, 0x7f, 0x81, 0x7e, 0x7c, 0x7d, 0x81, 0x83, 0x83, 0x81, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7f, 0x82, 0x84, 0x83, 0x80, 0x80, 0x82, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x84, 0x85, 0x86, 0x85, 0x84, 0x83, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x78, 0x7a, 0x7d, 0x81, 0x84, 0x86, 0x87, 0x89, 0x8c, 0x93, 0x9d, 0xa3, 0xa3, 0x9e, 0x98, 0x97, 0x95, 0x92, 0x90, 0x90, 0x92, 0x94, 0x96, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x91, 0x90, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x8b, 0x88, 0x83, 0x7f, 0x7c, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7e, 0x82, 0x86, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x89, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7b, 0x7e, 0x80, 0x7e, 0x7b, 0x79, 0x7b, 0x80, 0x83, 0x83, 0x82, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x80, 0x83, 0x84, 0x83, 0x81, 0x80, 0x81, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x85, 0x85, 0x84, 0x83, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x78, 0x7b, 0x7e, 0x81, 0x84, 0x86, 0x87, 0x89, 0x8b, 0x90, 0x99, 0x9f, 0xa1, 0x9d, 0x99, 0x95, 0x94, 0x92, 0x90, 0x91, 0x92, 0x95, 0x96, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x89, 0x87, 0x82, 0x7e, 0x7b, 0x79, 0x79, 0x7a, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7e, 0x81, 0x85, 0x88, 0x8b, 0x8c, 0x8d, 0x8c, 0x8a, 0x88, 0x86, 0x83, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7c, 0x7e, 0x7f, 0x7b, 0x79, 0x78, 0x7a, 0x7f, 0x83, 0x84, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x81, 0x83, 0x85, 0x84, 0x81, 0x80, 0x81, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x82, 0x82, 0x82, 0x82, 0x80, 0x7f, 0x7d, 0x7c, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7b, 0x7e, 0x81, 0x84, 0x86, 0x87, 0x88, 0x89, 0x8d, 0x94, 0x9b, 0x9e, 0x9c, 0x99, 0x96, 0x95, 0x93, 0x92, 0x92, 0x93, 0x94, 0x96, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x96, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x86, 0x84, 0x80, 0x7c, 0x79, 0x77, 0x76, 0x76, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x7d, 0x80, 0x85, 0x88, 0x8a, 0x8a, 0x8b, 0x8c, 0x8b, 0x89, 0x86, 0x84, 0x82, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7c, 0x7e, 0x7f, 0x7a, 0x78, 0x77, 0x7a, 0x7f, 0x83, 0x84, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x82, 0x84, 0x86, 0x84, 0x81, 0x80, 0x81, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7b, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x7a, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x87, 0x88, 0x88, 0x8a, 0x90, 0x97, 0x9c, 0x9c, 0x9a, 0x98, 0x97, 0x96, 0x94, 0x93, 0x94, 0x94, 0x95, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x98, 0x99, 0x99, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x92, 0x91, 0x90, 0x8e, 0x8d, 0x8b, 0x8a, 0x89, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x84, 0x82, 0x7f, 0x7c, 0x79, 0x77, 0x77, 0x76, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x7c, 0x7e, 0x83, 0x87, 0x89, 0x8a, 0x89, 0x88, 0x8a, 0x88, 0x86, 0x83, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7b, 0x79, 0x78, 0x7a, 0x7f, 0x83, 0x84, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x85, 0x86, 0x85, 0x81, 0x80, 0x81, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x85, 0x80, 0x7f, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x7b, 0x7c, 0x7f, 0x81, 0x84, 0x86, 0x87, 0x87, 0x86, 0x88, 0x8d, 0x94, 0x9a, 0x9b, 0x9a, 0x9b, 0x9a, 0x98, 0x97, 0x95, 0x94, 0x94, 0x94, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x97, 0x98, 0x99, 0x99, 0x99, 0x97, 0x96, 0x95, 0x91, 0x90, 0x8e, 0x8c, 0x89, 0x86, 0x84, 0x83, 0x88, 0x89, 0x8a, 0x8c, 0x8e, 0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x85, 0x84, 0x81, 0x7f, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x80, 0x85, 0x88, 0x8a, 0x89, 0x86, 0x84, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7a, 0x79, 0x7b, 0x80, 0x83, 0x84, 0x82, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x85, 0x87, 0x85, 0x81, 0x80, 0x81, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x84, 0x85, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x86, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7b, 0x7c, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x84, 0x86, 0x87, 0x87, 0x86, 0x87, 0x8b, 0x93, 0x99, 0x9b, 0x9b, 0x9d, 0x9c, 0x9a, 0x98, 0x96, 0x94, 0x93, 0x93, 0x97, 0x97, 0x96, 0x96, 0x95, 0x94, 0x94, 0x93, 0x95, 0x96, 0x97, 0x97, 0x97, 0x95, 0x93, 0x92, 0x91, 0x90, 0x8d, 0x8a, 0x86, 0x83, 0x81, 0x7f, 0x82, 0x83, 0x85, 0x87, 0x8a, 0x8c, 0x8e, 0x8f, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x87, 0x86, 0x84, 0x82, 0x81, 0x7f, 0x7f, 0x7e, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7e, 0x81, 0x86, 0x89, 0x8a, 0x88, 0x85, 0x82, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7e, 0x7c, 0x7a, 0x7c, 0x80, 0x83, 0x83, 0x82, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x86, 0x87, 0x85, 0x82, 0x80, 0x81, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x81, 0x80, 0x81, 0x82, 0x84, 0x85, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x82, 0x81, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x74, 0x76, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7d, 0x79, 0x7b, 0x7e, 0x81, 0x84, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x87, 0x8f, 0x95, 0x99, 0x9a, 0x9f, 0x9d, 0x9b, 0x98, 0x96, 0x94, 0x93, 0x93, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x97, 0x96, 0x96, 0x95, 0x93, 0x92, 0x92, 0x91, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x83, 0x83, 0x82, 0x82, 0x85, 0x89, 0x8d, 0x90, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x8d, 0x8e, 0x90, 0x92, 0x94, 0x95, 0x95, 0x95, 0x93, 0x92, 0x91, 0x90, 0x90, 0x91, 0x91, 0x92, 0x8f, 0x90, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x8e, 0x8d, 0x8f, 0x93, 0x96, 0x90, 0x83, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x83, 0x85, 0x88, 0x8a, 0x8b, 0x8b, 0x8a, 0x89, 0x86, 0x85, 0x82, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7a, 0x7c, 0x7f, 0x82, 0x85, 0x86, 0x87, 0x88, 0x86, 0x84, 0x83, 0x86, 0x8d, 0x94, 0x98, 0x99, 0x9d, 0x9b, 0x99, 0x97, 0x95, 0x94, 0x94, 0x94, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x97, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8c, 0x87, 0x87, 0x86, 0x86, 0x87, 0x8b, 0x8e, 0x90, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8f, 0x90, 0x90, 0x91, 0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x8f, 0x8f, 0x91, 0x95, 0x97, 0x91, 0x85, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x83, 0x85, 0x88, 0x8a, 0x8b, 0x8b, 0x89, 0x88, 0x85, 0x83, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x84, 0x84, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x81, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7d, 0x7f, 0x83, 0x85, 0x87, 0x88, 0x89, 0x85, 0x82, 0x81, 0x84, 0x8b, 0x92, 0x96, 0x98, 0x9a, 0x99, 0x97, 0x95, 0x94, 0x94, 0x94, 0x94, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x94, 0x93, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8c, 0x8e, 0x90, 0x91, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x8f, 0x8e, 0x8d, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x95, 0x95, 0x94, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x94, 0x97, 0x97, 0x91, 0x86, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x84, 0x86, 0x88, 0x8a, 0x8b, 0x8a, 0x88, 0x87, 0x83, 0x81, 0x80, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x84, 0x85, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x81, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x80, 0x83, 0x86, 0x88, 0x89, 0x89, 0x84, 0x81, 0x7f, 0x82, 0x89, 0x90, 0x95, 0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x93, 0x92, 0x91, 0x90, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8d, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x87, 0x88, 0x89, 0x8c, 0x8e, 0x90, 0x92, 0x94, 0x94, 0x95, 0x95, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x94, 0x97, 0x99, 0x97, 0x90, 0x87, 0x80, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x80, 0x82, 0x85, 0x86, 0x88, 0x8a, 0x8a, 0x89, 0x87, 0x86, 0x81, 0x80, 0x7e, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x81, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x80, 0x83, 0x86, 0x88, 0x89, 0x89, 0x84, 0x80, 0x7d, 0x80, 0x87, 0x8f, 0x94, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x98, 0x97, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x95, 0x95, 0x94, 0x92, 0x90, 0x8c, 0x89, 0x88, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x89, 0x8b, 0x8d, 0x8f, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x93, 0x96, 0x99, 0x99, 0x93, 0x8b, 0x84, 0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x89, 0x88, 0x86, 0x84, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7d, 0x7f, 0x83, 0x85, 0x87, 0x88, 0x89, 0x84, 0x80, 0x7d, 0x7f, 0x86, 0x8f, 0x94, 0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9d, 0x9d, 0x9e, 0x9e, 0x9e, 0x9e, 0x9f, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x94, 0x93, 0x90, 0x8e, 0x8b, 0x8a, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x87, 0x88, 0x8a, 0x8b, 0x8d, 0x8f, 0x91, 0x92, 0x92, 0x92, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x92, 0x96, 0x99, 0x97, 0x8e, 0x84, 0x7e, 0x7b, 0x7c, 0x7b, 0x79, 0x79, 0x7c, 0x7f, 0x84, 0x86, 0x86, 0x87, 0x89, 0x8a, 0x89, 0x87, 0x85, 0x83, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x82, 0x82, 0x83, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x7c, 0x7f, 0x82, 0x85, 0x86, 0x87, 0x88, 0x85, 0x81, 0x7d, 0x7f, 0x86, 0x8f, 0x95, 0x98, 0x99, 0x98, 0x96, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9b, 0x9b, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x9a, 0x9b, 0x9b, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8e, 0x8d, 0x8a, 0x8a, 0x89, 0x89, 0x8a, 0x8c, 0x8d, 0x8e, 0x8e, 0x8f, 0x91, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90, 0x91, 0x96, 0x99, 0x94, 0x89, 0x7d, 0x78, 0x76, 0x79, 0x78, 0x77, 0x78, 0x7b, 0x80, 0x85, 0x88, 0x87, 0x88, 0x89, 0x8a, 0x89, 0x86, 0x84, 0x82, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x7f, 0x7e, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x79, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x85, 0x84, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x73, 0x72, 0x72, 0x73, 0x74, 0x77, 0x7a, 0x7c, 0x79, 0x7b, 0x7e, 0x81, 0x84, 0x86, 0x87, 0x87, 0x86, 0x81, 0x7d, 0x7f, 0x86, 0x8f, 0x95, 0x98, 0x9a, 0x99, 0x97, 0x96, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9c, 0x9b, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x94, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x93, 0x94, 0x92, 0x93, 0x95, 0x96, 0x97, 0x97, 0x97, 0x97, 0x95, 0x94, 0x94, 0x93, 0x92, 0x91, 0x90, 0x90, 0x90, 0x95, 0x98, 0x92, 0x85, 0x79, 0x73, 0x73, 0x78, 0x77, 0x76, 0x77, 0x7a, 0x80, 0x86, 0x8a, 0x87, 0x88, 0x89, 0x89, 0x88, 0x86, 0x83, 0x81, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x81, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x83, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x81, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x87, 0x89, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87, 0x84, 0x7f, 0x7a, 0x78, 0x7c, 0x86, 0x91, 0x98, 0x96, 0x95, 0x93, 0x92, 0x92, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x93, 0x93, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x90, 0x8e, 0x8d, 0x8c, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x95, 0x93, 0x91, 0x90, 0x90, 0x91, 0x91, 0x99, 0x92, 0x87, 0x7d, 0x76, 0x73, 0x74, 0x76, 0x76, 0x74, 0x73, 0x77, 0x7d, 0x83, 0x85, 0x85, 0x86, 0x88, 0x8a, 0x8b, 0x89, 0x84, 0x7f, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x82, 0x83, 0x85, 0x87, 0x88, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x7e, 0x7e, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x87, 0x89, 0x8a, 0x89, 0x87, 0x85, 0x83, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87, 0x83, 0x7f, 0x7a, 0x78, 0x7b, 0x84, 0x8f, 0x96, 0x95, 0x94, 0x93, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x98, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x92, 0x91, 0x91, 0x91, 0x91, 0x93, 0x8d, 0x84, 0x7a, 0x74, 0x73, 0x74, 0x75, 0x76, 0x74, 0x73, 0x77, 0x7e, 0x83, 0x86, 0x86, 0x86, 0x88, 0x8a, 0x8a, 0x88, 0x83, 0x7e, 0x7b, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x82, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x82, 0x83, 0x85, 0x85, 0x85, 0x84, 0x84, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x87, 0x88, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x87, 0x89, 0x89, 0x89, 0x87, 0x84, 0x83, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87, 0x83, 0x7f, 0x7a, 0x77, 0x7a, 0x82, 0x8c, 0x92, 0x94, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9b, 0x9b, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9c, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x96, 0x95, 0x95, 0x94, 0x92, 0x91, 0x90, 0x90, 0x8b, 0x86, 0x7e, 0x77, 0x73, 0x72, 0x73, 0x75, 0x75, 0x74, 0x74, 0x78, 0x7f, 0x84, 0x86, 0x86, 0x87, 0x88, 0x89, 0x88, 0x86, 0x82, 0x7d, 0x7a, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x82, 0x82, 0x82, 0x82, 0x83, 0x85, 0x86, 0x87, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x87, 0x89, 0x89, 0x88, 0x86, 0x83, 0x82, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87, 0x83, 0x7f, 0x79, 0x76, 0x79, 0x7f, 0x88, 0x8e, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x95, 0x95, 0x97, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x95, 0x96, 0x96, 0x95, 0x93, 0x91, 0x8e, 0x8c, 0x82, 0x7e, 0x79, 0x74, 0x71, 0x71, 0x73, 0x74, 0x75, 0x73, 0x74, 0x79, 0x80, 0x86, 0x87, 0x86, 0x87, 0x87, 0x87, 0x86, 0x83, 0x80, 0x7c, 0x7a, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x78, 0x78, 0x79, 0x78, 0x77, 0x77, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7d, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x86, 0x87, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7d, 0x81, 0x84, 0x86, 0x87, 0x88, 0x89, 0x89, 0x88, 0x85, 0x83, 0x81, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87, 0x82, 0x7e, 0x79, 0x75, 0x77, 0x7c, 0x84, 0x89, 0x91, 0x91, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x97, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96, 0x97, 0x97, 0x96, 0x93, 0x8f, 0x8a, 0x87, 0x7a, 0x78, 0x75, 0x72, 0x71, 0x71, 0x73, 0x74, 0x74, 0x73, 0x75, 0x7b, 0x82, 0x87, 0x88, 0x87, 0x88, 0x87, 0x85, 0x83, 0x80, 0x7d, 0x7b, 0x7a, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x77, 0x79, 0x7c, 0x7f, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7d, 0x81, 0x84, 0x87, 0x87, 0x88, 0x89, 0x89, 0x87, 0x85, 0x82, 0x80, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87, 0x82, 0x7e, 0x78, 0x75, 0x75, 0x79, 0x80, 0x84, 0x8f, 0x90, 0x92, 0x93, 0x94, 0x95, 0x95, 0x94, 0x98, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x97, 0x95, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x99, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97, 0x98, 0x98, 0x96, 0x92, 0x8b, 0x85, 0x80, 0x76, 0x75, 0x74, 0x72, 0x72, 0x72, 0x73, 0x74, 0x73, 0x73, 0x76, 0x7c, 0x83, 0x88, 0x89, 0x87, 0x89, 0x87, 0x84, 0x81, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x76, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x75, 0x77, 0x7b, 0x7f, 0x81, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7d, 0x81, 0x84, 0x87, 0x87, 0x88, 0x89, 0x89, 0x87, 0x84, 0x81, 0x7f, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87, 0x81, 0x7d, 0x78, 0x74, 0x74, 0x77, 0x7d, 0x80, 0x8e, 0x8f, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9d, 0x9d, 0x9e, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x92, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x98, 0x99, 0x96, 0x91, 0x88, 0x80, 0x7a, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x76, 0x7d, 0x84, 0x89, 0x89, 0x88, 0x89, 0x87, 0x83, 0x7f, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x74, 0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x73, 0x76, 0x7a, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x83, 0x84, 0x85, 0x85, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7d, 0x81, 0x84, 0x87, 0x87, 0x88, 0x89, 0x88, 0x87, 0x84, 0x81, 0x7f, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x86, 0x87, 0x87, 0x87, 0x81, 0x7d, 0x78, 0x74, 0x73, 0x76, 0x7b, 0x7e, 0x8d, 0x8f, 0x91, 0x94, 0x95, 0x95, 0x94, 0x94, 0x98, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9e, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x91, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98, 0x99, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x98, 0x99, 0x99, 0x96, 0x90, 0x86, 0x7c, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x76, 0x7d, 0x85, 0x8a, 0x8a, 0x88, 0x89, 0x87, 0x82, 0x7e, 0x7a, 0x79, 0x78, 0x78, 0x7b, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x75, 0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x72, 0x75, 0x7a, 0x7e, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x89, 0x8a, 0x8a, 0x89, 0x87, 0x84, 0x81, 0x7f, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7d, 0x7e, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87, 0x7f, 0x7c, 0x79, 0x76, 0x75, 0x77, 0x7a, 0x7c, 0x8f, 0x90, 0x92, 0x94, 0x95, 0x95, 0x94, 0x94, 0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9a, 0x99, 0x97, 0x95, 0x94, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9c, 0x98, 0x94, 0x92, 0x90, 0x87, 0x78, 0x6d, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x72, 0x75, 0x7b, 0x80, 0x86, 0x8a, 0x8c, 0x8d, 0x8b, 0x87, 0x81, 0x7b, 0x78, 0x78, 0x7a, 0x7b, 0x76, 0x77, 0x78, 0x78, 0x76, 0x73, 0x70, 0x6e, 0x6e, 0x70, 0x73, 0x76, 0x77, 0x76, 0x75, 0x73, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x70, 0x71, 0x74, 0x7a, 0x7f, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x89, 0x89, 0x8a, 0x89, 0x87, 0x84, 0x80, 0x7e, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7c, 0x7e, 0x80, 0x82, 0x84, 0x85, 0x85, 0x86, 0x7f, 0x7d, 0x79, 0x76, 0x76, 0x78, 0x7b, 0x7d, 0x8d, 0x8f, 0x92, 0x94, 0x95, 0x96, 0x95, 0x94, 0x97, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x97, 0x95, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x9c, 0x98, 0x94, 0x92, 0x8f, 0x86, 0x78, 0x6d, 0x73, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x75, 0x78, 0x7c, 0x82, 0x87, 0x8a, 0x8c, 0x8c, 0x8b, 0x87, 0x81, 0x7b, 0x78, 0x77, 0x78, 0x7a, 0x76, 0x77, 0x77, 0x77, 0x76, 0x73, 0x70, 0x6e, 0x6e, 0x70, 0x73, 0x75, 0x76, 0x76, 0x74, 0x73, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x71, 0x70, 0x71, 0x74, 0x7a, 0x7f, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x88, 0x89, 0x89, 0x89, 0x87, 0x83, 0x80, 0x7e, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x7b, 0x7c, 0x7e, 0x81, 0x82, 0x83, 0x83, 0x83, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x79, 0x7b, 0x7d, 0x8b, 0x8d, 0x90, 0x94, 0x96, 0x97, 0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9b, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x99, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x97, 0x97, 0x97, 0x96, 0x95, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9b, 0x98, 0x95, 0x92, 0x8d, 0x83, 0x76, 0x6d, 0x73, 0x72, 0x72, 0x71, 0x72, 0x73, 0x74, 0x75, 0x78, 0x7b, 0x7f, 0x84, 0x88, 0x8a, 0x8b, 0x8b, 0x8c, 0x88, 0x81, 0x7a, 0x76, 0x75, 0x76, 0x77, 0x75, 0x76, 0x77, 0x77, 0x75, 0x73, 0x70, 0x6e, 0x6e, 0x6f, 0x72, 0x74, 0x75, 0x75, 0x74, 0x73, 0x75, 0x75, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x70, 0x74, 0x79, 0x7f, 0x83, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x88, 0x88, 0x89, 0x88, 0x86, 0x83, 0x7f, 0x7d, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x79, 0x7a, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x7a, 0x7c, 0x7d, 0x86, 0x89, 0x8e, 0x93, 0x96, 0x97, 0x97, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9a, 0x9a, 0x99, 0x99, 0x98, 0x98, 0x97, 0x97, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x98, 0x97, 0x96, 0x95, 0x95, 0x94, 0x94, 0x94, 0x95, 0x96, 0x97, 0x99, 0x9a, 0x9c, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x99, 0x96, 0x91, 0x8a, 0x7f, 0x74, 0x6d, 0x73, 0x72, 0x71, 0x71, 0x71, 0x72, 0x74, 0x74, 0x7b, 0x7e, 0x82, 0x87, 0x8a, 0x8b, 0x8a, 0x8a, 0x8c, 0x87, 0x80, 0x79, 0x75, 0x73, 0x74, 0x75, 0x74, 0x75, 0x76, 0x76, 0x75, 0x73, 0x70, 0x6e, 0x6d, 0x6f, 0x71, 0x72, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x70, 0x74, 0x79, 0x7f, 0x82, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x87, 0x87, 0x88, 0x87, 0x85, 0x82, 0x7f, 0x7d, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x81, 0x85, 0x8b, 0x92, 0x96, 0x98, 0x98, 0x97, 0x98, 0x99, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9c, 0x9c, 0x9b, 0x99, 0x99, 0x98, 0x97, 0x97, 0x96, 0x95, 0x95, 0x92, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x96, 0x98, 0x9a, 0x9c, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x9a, 0x97, 0x91, 0x87, 0x7b, 0x72, 0x6d, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x74, 0x7c, 0x7f, 0x84, 0x88, 0x8b, 0x8b, 0x8a, 0x88, 0x8a, 0x86, 0x7f, 0x78, 0x73, 0x72, 0x73, 0x74, 0x73, 0x74, 0x75, 0x75, 0x74, 0x72, 0x70, 0x6e, 0x6d, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x72, 0x70, 0x6e, 0x6d, 0x70, 0x73, 0x79, 0x7e, 0x82, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x86, 0x87, 0x87, 0x87, 0x85, 0x81, 0x7e, 0x7c, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x80, 0x88, 0x8f, 0x95, 0x97, 0x97, 0x97, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9c, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9a, 0x9a, 0x9a, 0x98, 0x98, 0x97, 0x96, 0x95, 0x94, 0x94, 0x93, 0x91, 0x92, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x94, 0x96, 0x99, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x9a, 0x99, 0x91, 0x84, 0x78, 0x70, 0x6d, 0x72, 0x71, 0x71, 0x70, 0x71, 0x72, 0x73, 0x74, 0x7b, 0x7f, 0x84, 0x89, 0x8c, 0x8b, 0x89, 0x88, 0x88, 0x84, 0x7d, 0x76, 0x72, 0x71, 0x72, 0x73, 0x71, 0x72, 0x74, 0x75, 0x74, 0x72, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x71, 0x6f, 0x6d, 0x6c, 0x6f, 0x73, 0x78, 0x7e, 0x82, 0x83, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x86, 0x86, 0x87, 0x86, 0x84, 0x81, 0x7e, 0x7b, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x77, 0x7c, 0x85, 0x8d, 0x94, 0x96, 0x97, 0x96, 0x97, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9a, 0x9a, 0x9a, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x91, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x96, 0x95, 0x93, 0x92, 0x92, 0x94, 0x97, 0x98, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x98, 0x9b, 0x99, 0x90, 0x82, 0x75, 0x6f, 0x6d, 0x72, 0x71, 0x71, 0x70, 0x71, 0x72, 0x73, 0x74, 0x79, 0x7d, 0x83, 0x89, 0x8c, 0x8b, 0x89, 0x87, 0x85, 0x81, 0x7b, 0x75, 0x72, 0x71, 0x72, 0x74, 0x70, 0x72, 0x73, 0x74, 0x73, 0x72, 0x6f, 0x6e, 0x6d, 0x6d, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6f, 0x73, 0x78, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x7d, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x79, 0x7c, 0x80, 0x84, 0x87, 0x86, 0x86, 0x87, 0x86, 0x84, 0x81, 0x7d, 0x7b, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x74, 0x7a, 0x83, 0x8c, 0x93, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x99, 0x99, 0x99, 0x99, 0x98, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x95, 0x94, 0x92, 0x92, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x91, 0x91, 0x92, 0x93, 0x95, 0x96, 0x97, 0x97, 0x97, 0x95, 0x93, 0x91, 0x91, 0x93, 0x95, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x98, 0x9b, 0x9a, 0x90, 0x80, 0x73, 0x6e, 0x6d, 0x72, 0x71, 0x70, 0x70, 0x70, 0x71, 0x73, 0x73, 0x78, 0x7c, 0x83, 0x89, 0x8c, 0x8b, 0x89, 0x87, 0x84, 0x80, 0x7a, 0x74, 0x71, 0x71, 0x73, 0x74, 0x70, 0x71, 0x73, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6c, 0x6c, 0x6d, 0x6d, 0x6e, 0x70, 0x71, 0x72, 0x70, 0x71, 0x71, 0x71, 0x70, 0x6e, 0x6c, 0x6b, 0x6f, 0x72, 0x78, 0x7e, 0x81, 0x83, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x76, 0x77, 0x78, 0x7a, 0x7d, 0x81, 0x85, 0x88, 0x85, 0x86, 0x86, 0x86, 0x83, 0x80, 0x7d, 0x7b, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x80, 0x88, 0x91, 0x96, 0x96, 0x94, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x97, 0x98, 0x97, 0x96, 0x94, 0x93, 0x93, 0x94, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x95, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x91, 0x92, 0x94, 0x94, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9a, 0x9a, 0x9a, 0x9d, 0x9e, 0x9e, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x98, 0x93, 0x89, 0x7d, 0x74, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x71, 0x72, 0x7a, 0x7d, 0x82, 0x88, 0x8b, 0x8c, 0x8c, 0x8b, 0x80, 0x7a, 0x73, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x70, 0x6f, 0x6d, 0x6c, 0x6b, 0x6c, 0x6e, 0x6f, 0x6e, 0x70, 0x72, 0x73, 0x72, 0x70, 0x6d, 0x6b, 0x6c, 0x73, 0x7b, 0x81, 0x82, 0x82, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x76, 0x77, 0x78, 0x7a, 0x7e, 0x82, 0x85, 0x88, 0x86, 0x86, 0x87, 0x86, 0x84, 0x81, 0x7d, 0x7b, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x80, 0x88, 0x91, 0x96, 0x96, 0x94, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9a, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96, 0x97, 0x97, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x95, 0x94, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x92, 0x94, 0x94, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x9a, 0x9b, 0x9b, 0x9d, 0x9d, 0x9e, 0x9e, 0x9d, 0x9c, 0x9a, 0x99, 0x99, 0x98, 0x92, 0x88, 0x7c, 0x74, 0x71, 0x71, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x71, 0x72, 0x7c, 0x7f, 0x84, 0x88, 0x8b, 0x8c, 0x8b, 0x8a, 0x80, 0x7a, 0x72, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6d, 0x6c, 0x6c, 0x6d, 0x6e, 0x6f, 0x6f, 0x70, 0x72, 0x73, 0x72, 0x70, 0x6d, 0x6b, 0x6c, 0x73, 0x7b, 0x81, 0x82, 0x82, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x76, 0x77, 0x78, 0x7b, 0x7e, 0x82, 0x85, 0x87, 0x86, 0x87, 0x87, 0x87, 0x85, 0x81, 0x7e, 0x7c, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x7a, 0x7b, 0x80, 0x88, 0x91, 0x96, 0x97, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x9a, 0x9a, 0x99, 0x98, 0x98, 0x97, 0x97, 0x96, 0x97, 0x96, 0x95, 0x94, 0x94, 0x95, 0x96, 0x96, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x93, 0x93, 0x94, 0x95, 0x95, 0x94, 0x94, 0x93, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x93, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9d, 0x9d, 0x9b, 0x9a, 0x99, 0x99, 0x96, 0x90, 0x86, 0x7a, 0x73, 0x71, 0x72, 0x6f, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x72, 0x73, 0x7f, 0x81, 0x85, 0x89, 0x8b, 0x8a, 0x89, 0x87, 0x7e, 0x78, 0x71, 0x6e, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6d, 0x6d, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x72, 0x72, 0x72, 0x70, 0x6d, 0x6c, 0x6d, 0x74, 0x7c, 0x81, 0x82, 0x82, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x76, 0x77, 0x79, 0x7c, 0x7f, 0x83, 0x85, 0x87, 0x87, 0x87, 0x88, 0x87, 0x85, 0x82, 0x7e, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x7a, 0x7a, 0x7e, 0x86, 0x8f, 0x96, 0x97, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x99, 0x98, 0x98, 0x98, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94, 0x95, 0x96, 0x97, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x96, 0x96, 0x97, 0x98, 0x99, 0x98, 0x97, 0x97, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x93, 0x93, 0x92, 0x91, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x96, 0x97, 0x99, 0x9b, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0x9d, 0x9c, 0x9b, 0x99, 0x98, 0x98, 0x95, 0x8e, 0x83, 0x78, 0x72, 0x71, 0x73, 0x70, 0x6f, 0x6e, 0x6e, 0x6e, 0x70, 0x73, 0x74, 0x82, 0x84, 0x87, 0x8a, 0x8a, 0x89, 0x87, 0x85, 0x7d, 0x77, 0x70, 0x6d, 0x6e, 0x70, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x6e, 0x6e, 0x6e, 0x6f, 0x6f, 0x6f, 0x70, 0x70, 0x71, 0x72, 0x72, 0x71, 0x70, 0x6e, 0x6d, 0x6e, 0x74, 0x7d, 0x81, 0x82, 0x82, 0x83, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x75, 0x77, 0x7a, 0x7d, 0x80, 0x83, 0x85, 0x87, 0x86, 0x87, 0x87, 0x87, 0x85, 0x81, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x78, 0x79, 0x7c, 0x84, 0x8d, 0x94, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x94, 0x93, 0x93, 0x93, 0x94, 0x95, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x99, 0x9a, 0x9c, 0x9d, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9a, 0x98, 0x97, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x93, 0x94, 0x95, 0x96, 0x98, 0x9a, 0x9b, 0x9c, 0x9b, 0x9c, 0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x93, 0x8b, 0x80, 0x75, 0x70, 0x71, 0x74, 0x71, 0x70, 0x6e, 0x6e, 0x6f, 0x72, 0x75, 0x77, 0x84, 0x86, 0x88, 0x8a, 0x8a, 0x88, 0x86, 0x84, 0x7b, 0x75, 0x6f, 0x6c, 0x6d, 0x70, 0x71, 0x71, 0x70, 0x70, 0x6f, 0x6f, 0x6f, 0x6e, 0x6e, 0x6e, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x72, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6e, 0x6f, 0x75, 0x7d, 0x82, 0x83, 0x82, 0x82, 0x84, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x75, 0x77, 0x7a, 0x7e, 0x81, 0x84, 0x86, 0x86, 0x85, 0x86, 0x86, 0x86, 0x84, 0x80, 0x7d, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x77, 0x77, 0x7a, 0x81, 0x8b, 0x92, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x92, 0x91, 0x91, 0x91, 0x92, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x9b, 0x9c, 0x9d, 0x9f, 0x9f, 0x9f, 0x9f, 0x9e, 0x9d, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x93, 0x94, 0x95, 0x96, 0x97, 0x99, 0x9a, 0x9a, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x99, 0x98, 0x97, 0x96, 0x91, 0x89, 0x7d, 0x73, 0x6f, 0x71, 0x75, 0x72, 0x71, 0x6f, 0x6f, 0x70, 0x73, 0x77, 0x79, 0x85, 0x86, 0x89, 0x8b, 0x8b, 0x88, 0x85, 0x83, 0x79, 0x74, 0x6d, 0x6b, 0x6d, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6d, 0x6e, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6f, 0x76, 0x7e, 0x82, 0x83, 0x82, 0x82, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x77, 0x7b, 0x7f, 0x82, 0x84, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x83, 0x7f, 0x7c, 0x7a, 0x7b, 0x79, 0x77, 0x75, 0x75, 0x76, 0x78, 0x79, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x7f, 0x89, 0x90, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x94, 0x92, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x92, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9d, 0x9e, 0x9e, 0x9d, 0x9d, 0x9d, 0x9d, 0x9c, 0x9b, 0x9a, 0x9a, 0x99, 0x99, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x9a, 0x9a, 0x9b, 0x9b, 0x9a, 0x99, 0x97, 0x97, 0x95, 0x90, 0x87, 0x7b, 0x71, 0x6e, 0x72, 0x76, 0x74, 0x73, 0x71, 0x70, 0x71, 0x75, 0x79, 0x7c, 0x84, 0x86, 0x89, 0x8b, 0x8b, 0x89, 0x86, 0x84, 0x78, 0x72, 0x6c, 0x6a, 0x6d, 0x70, 0x72, 0x72, 0x73, 0x73, 0x72, 0x71, 0x71, 0x70, 0x6f, 0x6f, 0x6d, 0x6e, 0x70, 0x72, 0x73, 0x72, 0x72, 0x71, 0x73, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x76, 0x7e, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x74, 0x77, 0x7b, 0x7f, 0x83, 0x85, 0x86, 0x86, 0x83, 0x84, 0x84, 0x84, 0x82, 0x7e, 0x7b, 0x79, 0x7b, 0x79, 0x76, 0x74, 0x74, 0x75, 0x77, 0x79, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x76, 0x7d, 0x87, 0x8f, 0x93, 0x93, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x94, 0x92, 0x8f, 0x8d, 0x8c, 0x8c, 0x8c, 0x8e, 0x8e, 0x8f, 0x91, 0x92, 0x94, 0x95, 0x96, 0x96, 0x97, 0x99, 0x9a, 0x9b, 0x9b, 0x9b, 0x9b, 0x9d, 0x9d, 0x9c, 0x9c, 0x9b, 0x9b, 0x9b, 0x9a, 0x96, 0x95, 0x94, 0x93, 0x92, 0x92, 0x93, 0x93, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x9a, 0x9a, 0x9b, 0x9b, 0x9a, 0x99, 0x97, 0x96, 0x94, 0x8f, 0x86, 0x7a, 0x70, 0x6e, 0x72, 0x76, 0x75, 0x74, 0x71, 0x70, 0x72, 0x76, 0x7a, 0x7d, 0x84, 0x86, 0x89, 0x8b, 0x8b, 0x89, 0x86, 0x84, 0x77, 0x72, 0x6c, 0x6a, 0x6d, 0x70, 0x72, 0x72, 0x74, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x6d, 0x6e, 0x70, 0x72, 0x73, 0x73, 0x72, 0x71, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x77, 0x7f, 0x83, 0x83, 0x82, 0x82, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x75, 0x76, 0x78, 0x79, 0x79, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x76, 0x77, 0x79, 0x79, 0x78, 0x76, 0x75, 0x74, 0x75, 0x77, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x78, 0x78, 0x77, 0x76, 0x74, 0x73, 0x72, 0x72, 0x77, 0x76, 0x75, 0x74, 0x75, 0x76, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x74, 0x76, 0x7a, 0x7d, 0x81, 0x83, 0x85, 0x85, 0x85, 0x87, 0x88, 0x85, 0x7f, 0x7a, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x76, 0x78, 0x7a, 0x7d, 0x85, 0x90, 0x98, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x91, 0x8f, 0x8d, 0x8b, 0x8a, 0x8a, 0x8c, 0x8e, 0x91, 0x93, 0x94, 0x95, 0x95, 0x8f, 0x90, 0x91, 0x92, 0x94, 0x96, 0x97, 0x97, 0x9b, 0x9b, 0x9a, 0x99, 0x98, 0x97, 0x97, 0x96, 0x97, 0x96, 0x95, 0x95, 0x94, 0x93, 0x92, 0x92, 0x94, 0x95, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99, 0x9d, 0x99, 0x96, 0x96, 0x98, 0x99, 0x97, 0x94, 0x93, 0x89, 0x7d, 0x75, 0x72, 0x74, 0x75, 0x75, 0x72, 0x74, 0x75, 0x75, 0x76, 0x7a, 0x81, 0x87, 0x89, 0x88, 0x87, 0x89, 0x8b, 0x8b, 0x86, 0x82, 0x74, 0x73, 0x71, 0x6f, 0x6e, 0x6f, 0x70, 0x71, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x70, 0x70, 0x70, 0x70, 0x70, 0x6f, 0x6e, 0x6e, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x74, 0x7a, 0x80, 0x83, 0x82, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x75, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x75, 0x77, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x76, 0x75, 0x74, 0x75, 0x76, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x77, 0x7a, 0x7e, 0x81, 0x84, 0x85, 0x85, 0x85, 0x87, 0x88, 0x85, 0x7f, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x76, 0x78, 0x79, 0x7c, 0x84, 0x8e, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8e, 0x90, 0x92, 0x93, 0x94, 0x94, 0x93, 0x8f, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x90, 0x90, 0x90, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x94, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99, 0x9c, 0x99, 0x96, 0x96, 0x98, 0x98, 0x96, 0x94, 0x91, 0x88, 0x7c, 0x75, 0x73, 0x74, 0x75, 0x75, 0x73, 0x75, 0x76, 0x76, 0x76, 0x7a, 0x81, 0x87, 0x89, 0x87, 0x87, 0x89, 0x8c, 0x8b, 0x87, 0x83, 0x76, 0x74, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x70, 0x70, 0x70, 0x70, 0x70, 0x71, 0x71, 0x71, 0x72, 0x70, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x70, 0x70, 0x75, 0x7a, 0x80, 0x83, 0x82, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x78, 0x7b, 0x7f, 0x82, 0x84, 0x85, 0x86, 0x85, 0x87, 0x88, 0x84, 0x7e, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x81, 0x8a, 0x91, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x93, 0x94, 0x95, 0x95, 0x93, 0x93, 0x94, 0x95, 0x95, 0x95, 0x94, 0x93, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8e, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x8a, 0x8a, 0x91, 0x91, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x99, 0x9b, 0x98, 0x96, 0x96, 0x98, 0x98, 0x95, 0x92, 0x8d, 0x85, 0x7b, 0x75, 0x73, 0x74, 0x75, 0x75, 0x75, 0x77, 0x78, 0x77, 0x77, 0x7a, 0x80, 0x86, 0x88, 0x87, 0x87, 0x89, 0x8c, 0x8b, 0x87, 0x84, 0x78, 0x76, 0x73, 0x70, 0x6e, 0x6e, 0x6f, 0x6f, 0x71, 0x71, 0x71, 0x71, 0x72, 0x72, 0x72, 0x72, 0x71, 0x71, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x72, 0x72, 0x72, 0x71, 0x71, 0x71, 0x71, 0x70, 0x75, 0x7a, 0x80, 0x83, 0x83, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x73, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7c, 0x80, 0x83, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x83, 0x7d, 0x78, 0x78, 0x79, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x73, 0x75, 0x77, 0x77, 0x79, 0x7e, 0x85, 0x8c, 0x94, 0x94, 0x94, 0x95, 0x94, 0x94, 0x93, 0x92, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x93, 0x95, 0x97, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9c, 0x9b, 0x9a, 0x98, 0x97, 0x97, 0x96, 0x95, 0x94, 0x92, 0x90, 0x8f, 0x8f, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x92, 0x93, 0x94, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99, 0x9a, 0x98, 0x95, 0x96, 0x97, 0x97, 0x93, 0x90, 0x89, 0x82, 0x7a, 0x75, 0x74, 0x75, 0x75, 0x75, 0x77, 0x79, 0x79, 0x78, 0x77, 0x7a, 0x80, 0x86, 0x88, 0x87, 0x87, 0x89, 0x8c, 0x8b, 0x87, 0x84, 0x79, 0x77, 0x74, 0x71, 0x6f, 0x6e, 0x6e, 0x6f, 0x71, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x74, 0x73, 0x72, 0x71, 0x71, 0x71, 0x71, 0x71, 0x75, 0x7a, 0x81, 0x84, 0x83, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7e, 0x81, 0x84, 0x85, 0x86, 0x87, 0x86, 0x87, 0x86, 0x82, 0x7c, 0x78, 0x78, 0x79, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x74, 0x76, 0x77, 0x77, 0x77, 0x7b, 0x81, 0x87, 0x91, 0x92, 0x93, 0x94, 0x95, 0x94, 0x93, 0x92, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x93, 0x95, 0x98, 0x9b, 0x9d, 0xa2, 0xa2, 0xa3, 0xa3, 0xa2, 0xa1, 0x9f, 0x9e, 0x9e, 0x9d, 0x9c, 0x9a, 0x98, 0x97, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x99, 0x97, 0x95, 0x96, 0x97, 0x96, 0x91, 0x8d, 0x84, 0x7f, 0x78, 0x75, 0x75, 0x76, 0x76, 0x75, 0x78, 0x7a, 0x7a, 0x79, 0x78, 0x7b, 0x81, 0x87, 0x89, 0x88, 0x87, 0x89, 0x8c, 0x8b, 0x86, 0x82, 0x7a, 0x78, 0x75, 0x71, 0x6f, 0x6f, 0x6f, 0x70, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x74, 0x74, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x76, 0x75, 0x73, 0x71, 0x71, 0x71, 0x71, 0x72, 0x75, 0x7b, 0x81, 0x84, 0x83, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x81, 0x7b, 0x77, 0x77, 0x79, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x76, 0x77, 0x79, 0x78, 0x77, 0x79, 0x7e, 0x83, 0x8e, 0x8f, 0x92, 0x94, 0x95, 0x95, 0x94, 0x93, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x91, 0x91, 0x91, 0x91, 0x93, 0x96, 0x99, 0x9b, 0xa3, 0xa4, 0xa5, 0xa6, 0xa6, 0xa5, 0xa4, 0xa4, 0xa2, 0xa2, 0xa1, 0xa0, 0x9f, 0x9d, 0x9d, 0x9c, 0x9d, 0x9c, 0x9b, 0x99, 0x97, 0x96, 0x95, 0x94, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x93, 0x94, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x96, 0x95, 0x95, 0x96, 0x95, 0x90, 0x8b, 0x80, 0x7b, 0x76, 0x74, 0x76, 0x77, 0x76, 0x74, 0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x7d, 0x83, 0x89, 0x8b, 0x8a, 0x89, 0x8a, 0x8b, 0x8a, 0x85, 0x80, 0x7a, 0x78, 0x75, 0x72, 0x70, 0x70, 0x71, 0x71, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x77, 0x76, 0x75, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x78, 0x76, 0x74, 0x72, 0x71, 0x71, 0x72, 0x73, 0x76, 0x7b, 0x81, 0x84, 0x84, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7c, 0x7d, 0x80, 0x83, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x80, 0x7a, 0x77, 0x77, 0x7a, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x79, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x78, 0x7c, 0x80, 0x8a, 0x8d, 0x90, 0x94, 0x96, 0x96, 0x95, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x91, 0x90, 0x8f, 0x90, 0x93, 0x96, 0x98, 0x9f, 0xa1, 0xa2, 0xa4, 0xa6, 0xa6, 0xa6, 0xa6, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa2, 0xa1, 0xa1, 0xa0, 0x9f, 0x9d, 0x9a, 0x98, 0x95, 0x94, 0x93, 0x91, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98, 0x97, 0x95, 0x94, 0x95, 0x96, 0x94, 0x8e, 0x8a, 0x7d, 0x79, 0x75, 0x74, 0x76, 0x78, 0x76, 0x74, 0x77, 0x79, 0x7a, 0x7a, 0x7b, 0x7e, 0x85, 0x8b, 0x8e, 0x8c, 0x8a, 0x8a, 0x8b, 0x88, 0x83, 0x7e, 0x79, 0x77, 0x74, 0x72, 0x71, 0x71, 0x72, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x79, 0x78, 0x75, 0x74, 0x74, 0x76, 0x78, 0x79, 0x79, 0x77, 0x74, 0x72, 0x70, 0x71, 0x72, 0x73, 0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x7e, 0x7c, 0x7a, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x7a, 0x7c, 0x7e, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7d, 0x7e, 0x81, 0x83, 0x85, 0x87, 0x87, 0x88, 0x87, 0x87, 0x85, 0x80, 0x7a, 0x76, 0x77, 0x7a, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x7a, 0x7b, 0x79, 0x77, 0x78, 0x7b, 0x7f, 0x88, 0x8b, 0x8f, 0x93, 0x96, 0x96, 0x96, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8e, 0x8f, 0x91, 0x93, 0x95, 0x9b, 0x9d, 0x9f, 0xa2, 0xa4, 0xa5, 0xa6, 0xa6, 0xa1, 0xa1, 0xa1, 0xa2, 0xa2, 0xa3, 0xa3, 0xa3, 0x9f, 0x9e, 0x9c, 0x99, 0x96, 0x93, 0x90, 0x8f, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x93, 0x94, 0x94, 0x96, 0x96, 0x97, 0x98, 0x97, 0x95, 0x94, 0x95, 0x96, 0x93, 0x8e, 0x89, 0x7b, 0x77, 0x74, 0x74, 0x77, 0x78, 0x76, 0x74, 0x77, 0x79, 0x7a, 0x7a, 0x7b, 0x7f, 0x87, 0x8c, 0x8f, 0x8d, 0x8b, 0x8a, 0x8a, 0x87, 0x81, 0x7c, 0x78, 0x76, 0x74, 0x72, 0x71, 0x72, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x78, 0x76, 0x74, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x78, 0x75, 0x72, 0x70, 0x71, 0x73, 0x74, 0x76, 0x7b, 0x82, 0x85, 0x84, 0x83, 0x83, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x7d, 0x7e, 0x7f, 0x7f, 0x7d, 0x7a, 0x77, 0x75, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7e, 0x7f, 0x81, 0x82, 0x84, 0x85, 0x86, 0x87, 0x88, 0x85, 0x81, 0x7c, 0x79, 0x77, 0x76, 0x76, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x7b, 0x7e, 0x80, 0x80, 0x7e, 0x7b, 0x79, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7e, 0x7f, 0x7b, 0x80, 0x88, 0x90, 0x95, 0x96, 0x95, 0x93, 0x94, 0x94, 0x95, 0x96, 0x95, 0x95, 0x94, 0x93, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x95, 0x97, 0x9b, 0x9e, 0xa1, 0xa3, 0xa3, 0xa3, 0xa2, 0xa3, 0xa3, 0xa4, 0xa3, 0xa1, 0x9f, 0x9d, 0x9c, 0x9b, 0x98, 0x94, 0x91, 0x8f, 0x8e, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x92, 0x92, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x90, 0x94, 0x98, 0x99, 0x95, 0x8b, 0x80, 0x79, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x76, 0x76, 0x77, 0x7b, 0x80, 0x86, 0x89, 0x87, 0x89, 0x8a, 0x8a, 0x88, 0x84, 0x80, 0x7e, 0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x74, 0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x86, 0x85, 0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x86, 0x88, 0x88, 0x85, 0x82, 0x80, 0x83, 0x85, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x78, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x79, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7e, 0x7f, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87, 0x88, 0x85, 0x81, 0x7d, 0x79, 0x77, 0x77, 0x77, 0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x77, 0x79, 0x7b, 0x7d, 0x7d, 0x7c, 0x79, 0x77, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x78, 0x7c, 0x84, 0x8c, 0x92, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x95, 0x94, 0x93, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x94, 0x95, 0x99, 0x9c, 0x9e, 0xa0, 0xa0, 0xa0, 0x9f, 0xa0, 0xa1, 0xa1, 0xa0, 0x9e, 0x9c, 0x9b, 0x99, 0x98, 0x95, 0x93, 0x90, 0x8f, 0x8e, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x91, 0x92, 0x92, 0x92, 0x95, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x94, 0x95, 0x97, 0x95, 0x90, 0x88, 0x7f, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x76, 0x76, 0x77, 0x7b, 0x81, 0x86, 0x89, 0x88, 0x89, 0x8a, 0x8a, 0x88, 0x84, 0x80, 0x7d, 0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x77, 0x76, 0x74, 0x73, 0x73, 0x73, 0x73, 0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85, 0x88, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x86, 0x87, 0x88, 0x85, 0x82, 0x80, 0x83, 0x86, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7e, 0x80, 0x82, 0x84, 0x86, 0x87, 0x87, 0x87, 0x88, 0x85, 0x81, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x7a, 0x7e, 0x84, 0x8b, 0x90, 0x93, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x93, 0x93, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x93, 0x95, 0x98, 0x9a, 0x9b, 0x9b, 0x9c, 0x9b, 0x9b, 0x9c, 0x9c, 0x9b, 0x9a, 0x99, 0x98, 0x95, 0x94, 0x92, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x92, 0x92, 0x93, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x96, 0x93, 0x8f, 0x89, 0x83, 0x7e, 0x7b, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x78, 0x7b, 0x81, 0x87, 0x8a, 0x88, 0x89, 0x8a, 0x8a, 0x88, 0x83, 0x7f, 0x7c, 0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x72, 0x72, 0x72, 0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x82, 0x85, 0x87, 0x87, 0x85, 0x81, 0x80, 0x83, 0x86, 0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x78, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x81, 0x81, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x7e, 0x80, 0x83, 0x85, 0x87, 0x88, 0x87, 0x87, 0x87, 0x85, 0x81, 0x7d, 0x7b, 0x79, 0x79, 0x7a, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7d, 0x7f, 0x81, 0x84, 0x86, 0x87, 0x8a, 0x8b, 0x8e, 0x91, 0x93, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x93, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x91, 0x92, 0x93, 0x95, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x96, 0x95, 0x95, 0x94, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x96, 0x98, 0x94, 0x8e, 0x87, 0x82, 0x7e, 0x7c, 0x7b, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x78, 0x7c, 0x82, 0x87, 0x8b, 0x89, 0x8a, 0x8b, 0x8a, 0x87, 0x82, 0x7e, 0x7b, 0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7a, 0x78, 0x75, 0x73, 0x72, 0x71, 0x71, 0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x84, 0x86, 0x87, 0x84, 0x81, 0x80, 0x83, 0x86, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x80, 0x80, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x7d, 0x7f, 0x83, 0x86, 0x88, 0x88, 0x87, 0x86, 0x86, 0x83, 0x80, 0x7d, 0x7a, 0x7a, 0x7a, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x85, 0x89, 0x8e, 0x94, 0x98, 0x9c, 0x9e, 0x9f, 0x9d, 0x9b, 0x99, 0x97, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x96, 0x95, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x90, 0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x8e, 0x8f, 0x8f, 0x90, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x95, 0x96, 0x96, 0x96, 0x94, 0x94, 0x93, 0x8f, 0x87, 0x80, 0x7c, 0x7a, 0x7a, 0x7b, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x76, 0x76, 0x76, 0x78, 0x7c, 0x82, 0x88, 0x8c, 0x8a, 0x8a, 0x8b, 0x8a, 0x87, 0x81, 0x7c, 0x79, 0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7a, 0x78, 0x75, 0x73, 0x72, 0x72, 0x71, 0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x83, 0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x85, 0x86, 0x84, 0x81, 0x80, 0x83, 0x86, 0x79, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7e, 0x7f, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x7b, 0x7e, 0x82, 0x86, 0x87, 0x87, 0x85, 0x84, 0x84, 0x82, 0x7e, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7c, 0x7f, 0x83, 0x86, 0x89, 0x8f, 0x92, 0x97, 0x9d, 0xa3, 0xa8, 0xab, 0xad, 0xaa, 0xa6, 0xa1, 0x9c, 0x98, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x97, 0x96, 0x95, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x91, 0x90, 0x90, 0x90, 0x90, 0x91, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x94, 0x93, 0x94, 0x95, 0x96, 0x95, 0x93, 0x91, 0x90, 0x8a, 0x86, 0x80, 0x7b, 0x78, 0x78, 0x79, 0x7b, 0x79, 0x78, 0x76, 0x74, 0x74, 0x76, 0x78, 0x79, 0x76, 0x76, 0x76, 0x78, 0x7d, 0x83, 0x89, 0x8d, 0x8a, 0x8b, 0x8b, 0x8a, 0x86, 0x81, 0x7b, 0x78, 0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7b, 0x7a, 0x78, 0x76, 0x74, 0x73, 0x73, 0x73, 0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x81, 0x82, 0x84, 0x85, 0x83, 0x81, 0x80, 0x83, 0x86, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7c, 0x7a, 0x79, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7d, 0x7f, 0x80, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x7d, 0x81, 0x85, 0x87, 0x86, 0x84, 0x82, 0x82, 0x80, 0x7d, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x78, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x79, 0x76, 0x75, 0x75, 0x76, 0x79, 0x7a, 0x77, 0x77, 0x77, 0x79, 0x7d, 0x83, 0x88, 0x8b, 0x9c, 0x9e, 0xa2, 0xa6, 0xaa, 0xad, 0xae, 0xae, 0xa5, 0xa2, 0x9c, 0x96, 0x93, 0x93, 0x95, 0x97, 0x98, 0x98, 0x98, 0x98, 0x97, 0x95, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x90, 0x8f, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x92, 0x91, 0x90, 0x90, 0x90, 0x91, 0x91, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x94, 0x94, 0x93, 0x94, 0x95, 0x96, 0x94, 0x91, 0x8d, 0x8b, 0x80, 0x7e, 0x7a, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x79, 0x78, 0x75, 0x74, 0x74, 0x75, 0x78, 0x79, 0x76, 0x76, 0x76, 0x78, 0x7d, 0x83, 0x89, 0x8d, 0x8b, 0x8c, 0x8b, 0x8a, 0x86, 0x80, 0x7a, 0x77, 0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x84, 0x85, 0x83, 0x81, 0x80, 0x83, 0x87, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x7a, 0x78, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7f, 0x7f, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x78, 0x78, 0x77, 0x76, 0x77, 0x78, 0x7b, 0x7c, 0x79, 0x7b, 0x7e, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x79, 0x7c, 0x80, 0x84, 0x86, 0x85, 0x83, 0x81, 0x80, 0x7e, 0x7c, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x75, 0x77, 0x79, 0x7b, 0x74, 0x73, 0x74, 0x76, 0x7b, 0x81, 0x88, 0x8b, 0xa4, 0xa5, 0xa8, 0xaa, 0xab, 0xab, 0xaa, 0xa9, 0x9d, 0x99, 0x94, 0x8f, 0x8e, 0x90, 0x94, 0x97, 0x98, 0x98, 0x98, 0x98, 0x97, 0x95, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x92, 0x90, 0x8e, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x90, 0x91, 0x92, 0x95, 0x94, 0x93, 0x91, 0x91, 0x91, 0x91, 0x92, 0x91, 0x91, 0x91, 0x92, 0x93, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x93, 0x8f, 0x8b, 0x89, 0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x78, 0x75, 0x74, 0x74, 0x75, 0x78, 0x7a, 0x76, 0x76, 0x76, 0x79, 0x7d, 0x84, 0x8a, 0x8e, 0x8b, 0x8c, 0x8c, 0x8a, 0x85, 0x7f, 0x7a, 0x76, 0x75, 0x77, 0x7a, 0x79, 0x75, 0x73, 0x74, 0x75, 0x72, 0x72, 0x73, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x79, 0x78, 0x77, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x7b, 0x82, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x82, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x83, 0x84, 0x83, 0x80, 0x80, 0x83, 0x87, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x79, 0x7b, 0x7f, 0x83, 0x85, 0x84, 0x83, 0x82, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x6e, 0x71, 0x75, 0x78, 0x7d, 0x85, 0x90, 0x97, 0xa4, 0xa6, 0xaa, 0xad, 0xac, 0xa9, 0xa4, 0xa1, 0x93, 0x93, 0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x94, 0x92, 0x90, 0x91, 0x94, 0x96, 0x94, 0x91, 0x93, 0x91, 0x8e, 0x8c, 0x8a, 0x85, 0x7c, 0x76, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x75, 0x77, 0x7b, 0x7f, 0x84, 0x87, 0x89, 0x8c, 0x8b, 0x88, 0x84, 0x7f, 0x7a, 0x75, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x78, 0x76, 0x74, 0x72, 0x72, 0x73, 0x75, 0x76, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x82, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7a, 0x7c, 0x7f, 0x82, 0x83, 0x82, 0x81, 0x80, 0x7d, 0x7c, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x74, 0x76, 0x79, 0x7b, 0x80, 0x8a, 0x96, 0x9f, 0xa5, 0xa8, 0xac, 0xaf, 0xae, 0xab, 0xa7, 0xa4, 0x99, 0x98, 0x96, 0x95, 0x94, 0x95, 0x96, 0x97, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x94, 0x92, 0x90, 0x92, 0x96, 0x97, 0x96, 0x93, 0x91, 0x8d, 0x88, 0x85, 0x82, 0x7f, 0x79, 0x74, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x75, 0x77, 0x7c, 0x80, 0x85, 0x88, 0x8a, 0x8c, 0x8b, 0x88, 0x85, 0x80, 0x7b, 0x77, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x73, 0x72, 0x71, 0x72, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x83, 0x82, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x83, 0x83, 0x85, 0x85, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7b, 0x7c, 0x7e, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7c, 0x7d, 0x7e, 0x84, 0x8f, 0x9d, 0xa8, 0xa7, 0xaa, 0xae, 0xb1, 0xb1, 0xaf, 0xac, 0xa9, 0xa2, 0x9f, 0x9a, 0x96, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x95, 0x95, 0x94, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x94, 0x92, 0x91, 0x93, 0x98, 0x9a, 0x99, 0x97, 0x90, 0x8a, 0x81, 0x7b, 0x79, 0x77, 0x75, 0x73, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x72, 0x74, 0x78, 0x7d, 0x82, 0x87, 0x8a, 0x8c, 0x8b, 0x8a, 0x88, 0x86, 0x82, 0x7d, 0x7a, 0x78, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x71, 0x72, 0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x79, 0x79, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x7f, 0x7f, 0x7e, 0x7e, 0x83, 0x8f, 0x9e, 0xa9, 0xa8, 0xab, 0xaf, 0xb2, 0xb3, 0xb2, 0xb0, 0xae, 0xab, 0xa7, 0xa1, 0x9a, 0x96, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x97, 0x97, 0x96, 0x94, 0x93, 0x92, 0x91, 0x90, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x95, 0x9a, 0x9e, 0x9e, 0x9c, 0x95, 0x8b, 0x7f, 0x76, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x76, 0x75, 0x75, 0x74, 0x72, 0x71, 0x70, 0x70, 0x72, 0x75, 0x79, 0x7f, 0x84, 0x88, 0x8c, 0x8d, 0x8a, 0x8a, 0x88, 0x86, 0x83, 0x7f, 0x7c, 0x7a, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x74, 0x75, 0x77, 0x7b, 0x7e, 0x80, 0x82, 0x83, 0x84, 0x85, 0x88, 0x8b, 0x8c, 0x8d, 0x8c, 0x8c, 0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x83, 0x83, 0x83, 0x83, 0x85, 0x86, 0x87, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x78, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7f, 0x7e, 0x7d, 0x7d, 0x80, 0x8a, 0x98, 0xa2, 0xa7, 0xa9, 0xad, 0xb1, 0xb3, 0xb4, 0xb3, 0xb2, 0xb2, 0xae, 0xa8, 0xa1, 0x9b, 0x98, 0x97, 0x96, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x97, 0x96, 0x95, 0x94, 0x92, 0x91, 0x91, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x91, 0x91, 0x92, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0x97, 0x9d, 0xa2, 0xa3, 0xa1, 0x9d, 0x91, 0x82, 0x78, 0x74, 0x75, 0x78, 0x79, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x75, 0x75, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x74, 0x76, 0x7b, 0x81, 0x86, 0x8a, 0x8c, 0x8d, 0x8a, 0x8a, 0x88, 0x86, 0x83, 0x80, 0x7d, 0x7b, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x79, 0x77, 0x76, 0x75, 0x74, 0x75, 0x76, 0x76, 0x7c, 0x7e, 0x82, 0x86, 0x89, 0x8b, 0x8c, 0x8c, 0x90, 0x92, 0x95, 0x98, 0x99, 0x99, 0x98, 0x97, 0x89, 0x88, 0x87, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x76, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7d, 0x7f, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7e, 0x84, 0x8e, 0x96, 0xa4, 0xa6, 0xaa, 0xaf, 0xb2, 0xb3, 0xb3, 0xb3, 0xb4, 0xb2, 0xaf, 0xaa, 0xa4, 0x9e, 0x9a, 0x97, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x96, 0x95, 0x94, 0x94, 0x93, 0x92, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x93, 0x99, 0xa0, 0xa6, 0xa7, 0xa6, 0xa4, 0x99, 0x89, 0x7d, 0x78, 0x78, 0x79, 0x7a, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x76, 0x79, 0x7e, 0x83, 0x88, 0x8a, 0x8c, 0x8c, 0x8a, 0x8a, 0x88, 0x86, 0x83, 0x7f, 0x7c, 0x7a, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x79, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7e, 0x86, 0x88, 0x8d, 0x91, 0x94, 0x94, 0x94, 0x93, 0x98, 0x9a, 0x9d, 0x9f, 0x9f, 0x9e, 0x9b, 0x99, 0x89, 0x88, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x84, 0x84, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x89, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x82, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7c, 0x7e, 0x80, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x81, 0x86, 0x8b, 0xa0, 0xa2, 0xa7, 0xab, 0xaf, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb2, 0xad, 0xa5, 0x9d, 0x99, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x92, 0x92, 0x94, 0x9a, 0xa2, 0xa8, 0xaa, 0xaa, 0xa8, 0x9d, 0x8d, 0x81, 0x7b, 0x79, 0x78, 0x78, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x78, 0x7b, 0x80, 0x85, 0x89, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x88, 0x86, 0x82, 0x7e, 0x7b, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7f, 0x84, 0x86, 0x8c, 0x90, 0x94, 0x98, 0x9a, 0x99, 0x96, 0x95, 0x98, 0x9a, 0x9c, 0x9d, 0x9c, 0x99, 0x95, 0x92, 0x88, 0x87, 0x85, 0x83, 0x83, 0x83, 0x84, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x85, 0x86, 0x88, 0x89, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x83, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x7b, 0x7e, 0x80, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x80, 0x80, 0x7e, 0x80, 0x82, 0x82, 0x80, 0x7f, 0x82, 0x85, 0x9d, 0xa0, 0xa4, 0xa9, 0xad, 0xb0, 0xb1, 0xb2, 0xb2, 0xb5, 0xb7, 0xb7, 0xb2, 0xa9, 0xa0, 0x9a, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x96, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x91, 0x91, 0x92, 0x92, 0x94, 0x9b, 0xa3, 0xaa, 0xac, 0xac, 0xa9, 0x9e, 0x8f, 0x83, 0x7c, 0x79, 0x77, 0x75, 0x73, 0x73, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x78, 0x7a, 0x7d, 0x81, 0x86, 0x89, 0x8a, 0x8a, 0x8a, 0x8b, 0x8a, 0x88, 0x85, 0x81, 0x7d, 0x79, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7e, 0x83, 0x88, 0x8b, 0x8f, 0x93, 0x97, 0x9b, 0x9c, 0x9a, 0x96, 0x94, 0x95, 0x96, 0x98, 0x99, 0x97, 0x93, 0x8e, 0x8b, 0x87, 0x86, 0x84, 0x83, 0x82, 0x83, 0x85, 0x86, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x87, 0x88, 0x8a, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x7c, 0x7e, 0x80, 0x81, 0x80, 0x7f, 0x7f, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x79, 0x7b, 0x7d, 0x7c, 0x80, 0x83, 0x82, 0x7f, 0x7c, 0x7c, 0x7d, 0x7e, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7d, 0x7b, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7c, 0x7b, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x89, 0x97, 0xa4, 0xad, 0xb1, 0xb1, 0xb0, 0xb0, 0xb2, 0xb5, 0xb6, 0xb3, 0xae, 0xa7, 0xa3, 0x97, 0x96, 0x95, 0x95, 0x95, 0x96, 0x97, 0x98, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x92, 0x90, 0x92, 0x9a, 0xa5, 0xac, 0xab, 0xa8, 0xa7, 0xa8, 0xa3, 0x94, 0x80, 0x75, 0x77, 0x7c, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x7a, 0x7e, 0x84, 0x87, 0x86, 0x86, 0x88, 0x8a, 0x8c, 0x8b, 0x89, 0x85, 0x82, 0x80, 0x7e, 0x7d, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x79, 0x79, 0x7a, 0x7d, 0x83, 0x8b, 0x93, 0x98, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x97, 0x97, 0x94, 0x94, 0x94, 0x93, 0x91, 0x8e, 0x8b, 0x89, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x84, 0x84, 0x86, 0x86, 0x86, 0x85, 0x83, 0x82, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x80, 0x81, 0x82, 0x84, 0x86, 0x87, 0x89, 0x8a, 0x86, 0x85, 0x84, 0x82, 0x81, 0x81, 0x81, 0x82, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x81, 0x84, 0x83, 0x81, 0x80, 0x80, 0x81, 0x83, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x80, 0x83, 0x82, 0x7f, 0x7c, 0x7c, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7f, 0x80, 0x81, 0x7f, 0x7c, 0x79, 0x77, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x77, 0x77, 0x78, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x85, 0x8c, 0x95, 0x9f, 0xaa, 0xb2, 0xb6, 0xb5, 0xb4, 0xb3, 0xb1, 0xaf, 0xad, 0xab, 0xa9, 0x9c, 0x9a, 0x97, 0x94, 0x93, 0x94, 0x96, 0x97, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x92, 0x90, 0x92, 0x99, 0xa3, 0xaa, 0xaa, 0xa7, 0xa7, 0xa8, 0xa3, 0x95, 0x82, 0x77, 0x76, 0x7a, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x7a, 0x7f, 0x85, 0x87, 0x87, 0x87, 0x88, 0x8a, 0x8c, 0x8b, 0x88, 0x85, 0x82, 0x80, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7d, 0x81, 0x88, 0x8f, 0x95, 0x98, 0x95, 0x96, 0x97, 0x98, 0x98, 0x98, 0x97, 0x96, 0x93, 0x93, 0x93, 0x92, 0x90, 0x8d, 0x8a, 0x89, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x82, 0x81, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x81, 0x81, 0x83, 0x84, 0x86, 0x88, 0x89, 0x8a, 0x86, 0x85, 0x84, 0x82, 0x81, 0x81, 0x82, 0x82, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7d, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x7f, 0x7e, 0x7c, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x81, 0x84, 0x82, 0x7f, 0x7d, 0x7d, 0x7f, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x83, 0x84, 0x83, 0x82, 0x7f, 0x7b, 0x77, 0x75, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x82, 0x80, 0x80, 0x84, 0x8e, 0x9d, 0xac, 0xb6, 0xb6, 0xb5, 0xb2, 0xb0, 0xaf, 0xae, 0xaf, 0xb0, 0xa3, 0xa0, 0x9a, 0x95, 0x92, 0x92, 0x94, 0x96, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x91, 0x90, 0x92, 0x97, 0xa0, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xa4, 0x97, 0x86, 0x79, 0x76, 0x78, 0x80, 0x81, 0x82, 0x82, 0x7f, 0x7a, 0x75, 0x71, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x7b, 0x80, 0x85, 0x88, 0x87, 0x87, 0x89, 0x8b, 0x8b, 0x8a, 0x87, 0x83, 0x81, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x79, 0x7c, 0x82, 0x89, 0x8f, 0x93, 0x96, 0x98, 0x95, 0x96, 0x97, 0x97, 0x97, 0x97, 0x96, 0x95, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8b, 0x89, 0x88, 0x83, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x81, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x84, 0x85, 0x87, 0x88, 0x8a, 0x8a, 0x86, 0x85, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x83, 0x82, 0x81, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x7f, 0x82, 0x84, 0x82, 0x7f, 0x7d, 0x7e, 0x80, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7d, 0x7b, 0x7d, 0x85, 0x90, 0x9d, 0xa5, 0xae, 0xb0, 0xb3, 0xb6, 0xb6, 0xb5, 0xb3, 0xb1, 0xab, 0xa6, 0x9f, 0x97, 0x93, 0x92, 0x94, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x91, 0x90, 0x92, 0x95, 0x9b, 0xa0, 0xa4, 0xa6, 0xa7, 0xa8, 0xa4, 0x9a, 0x8b, 0x7e, 0x77, 0x75, 0x7a, 0x7c, 0x80, 0x82, 0x80, 0x7b, 0x75, 0x71, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x7b, 0x80, 0x86, 0x88, 0x88, 0x88, 0x89, 0x8c, 0x8b, 0x89, 0x85, 0x82, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x81, 0x88, 0x90, 0x95, 0x98, 0x98, 0x97, 0x96, 0x96, 0x97, 0x97, 0x96, 0x95, 0x94, 0x93, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x88, 0x88, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7c, 0x80, 0x81, 0x82, 0x83, 0x82, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x80, 0x82, 0x83, 0x81, 0x7e, 0x7c, 0x7e, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x80, 0x83, 0x86, 0x89, 0x8b, 0x9d, 0xa5, 0xb1, 0xba, 0xbe, 0xba, 0xb4, 0xaf, 0xb1, 0xac, 0xa5, 0x9e, 0x98, 0x96, 0x95, 0x96, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x91, 0x91, 0x93, 0x95, 0x9a, 0xa0, 0xa5, 0xa7, 0xa7, 0xa5, 0x9e, 0x92, 0x85, 0x7a, 0x75, 0x70, 0x73, 0x79, 0x7d, 0x7e, 0x7c, 0x78, 0x74, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x7b, 0x80, 0x85, 0x88, 0x87, 0x87, 0x89, 0x8b, 0x8a, 0x87, 0x84, 0x80, 0x7e, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x82, 0x87, 0x8e, 0x95, 0x99, 0x9a, 0x99, 0x98, 0x96, 0x96, 0x97, 0x96, 0x96, 0x94, 0x92, 0x91, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x87, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x89, 0x89, 0x86, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7b, 0x7d, 0x7f, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x82, 0x81, 0x81, 0x80, 0x80, 0x81, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x82, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x7f, 0x81, 0x82, 0x7f, 0x7c, 0x7b, 0x7d, 0x80, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7d, 0x81, 0x83, 0x83, 0x81, 0x7d, 0x7b, 0x8c, 0x95, 0xa4, 0xb1, 0xb8, 0xb8, 0xb3, 0xaf, 0xb3, 0xb0, 0xac, 0xa7, 0xa1, 0x9d, 0x9a, 0x98, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x91, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x95, 0x9d, 0xa4, 0xa6, 0xa6, 0xa6, 0xa2, 0x99, 0x8c, 0x7f, 0x76, 0x6c, 0x6f, 0x74, 0x78, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x7a, 0x7f, 0x84, 0x87, 0x86, 0x86, 0x88, 0x8a, 0x89, 0x86, 0x82, 0x7e, 0x7c, 0x7c, 0x7d, 0x7e, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x7b, 0x7e, 0x7f, 0x8a, 0x8d, 0x92, 0x97, 0x9a, 0x9a, 0x99, 0x98, 0x96, 0x97, 0x97, 0x96, 0x95, 0x93, 0x91, 0x90, 0x89, 0x88, 0x87, 0x86, 0x85, 0x86, 0x86, 0x87, 0x84, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x80, 0x81, 0x81, 0x82, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x83, 0x83, 0x84, 0x86, 0x86, 0x87, 0x88, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x7f, 0x81, 0x8a, 0x8b, 0x8b, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x83, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x80, 0x80, 0x7e, 0x7a, 0x79, 0x7c, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x80, 0x86, 0x90, 0x9c, 0xa6, 0xae, 0xb2, 0xb4, 0xb2, 0xb3, 0xb2, 0xb0, 0xab, 0xa4, 0x9e, 0x9a, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x8e, 0x91, 0x91, 0x8f, 0x8d, 0x91, 0x9a, 0xa3, 0xa5, 0xa6, 0xa6, 0xa5, 0x9f, 0x92, 0x83, 0x79, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x74, 0x73, 0x79, 0x7e, 0x83, 0x86, 0x85, 0x85, 0x87, 0x89, 0x88, 0x85, 0x81, 0x7d, 0x7b, 0x7b, 0x7d, 0x7f, 0x7d, 0x7c, 0x7b, 0x7a, 0x7c, 0x7f, 0x83, 0x85, 0x92, 0x93, 0x95, 0x97, 0x98, 0x99, 0x99, 0x99, 0x97, 0x97, 0x97, 0x96, 0x94, 0x92, 0x90, 0x8e, 0x87, 0x86, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x85, 0x84, 0x82, 0x81, 0x80, 0x81, 0x82, 0x83, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x7a, 0x7b, 0x7d, 0x80, 0x82, 0x8d, 0x8e, 0x8e, 0x8e, 0x8e, 0x8c, 0x8b, 0x8a, 0x84, 0x83, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7e, 0x7f, 0x7f, 0x7d, 0x79, 0x79, 0x7c, 0x7f, 0x7e, 0x80, 0x81, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x87, 0x85, 0x83, 0x80, 0x7d, 0x7b, 0x7a, 0x79, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7e, 0x7d, 0x7b, 0x7a, 0x7b, 0x7e, 0x81, 0x84, 0x7b, 0x7d, 0x80, 0x88, 0x95, 0xa4, 0xb1, 0xba, 0xb1, 0xb3, 0xb5, 0xb5, 0xb1, 0xa9, 0xa1, 0x9c, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x91, 0x91, 0x92, 0x92, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x8e, 0x91, 0x91, 0x8e, 0x8b, 0x8e, 0x99, 0xa2, 0xa4, 0xa5, 0xa7, 0xa7, 0xa2, 0x96, 0x86, 0x7a, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x78, 0x7d, 0x82, 0x85, 0x84, 0x84, 0x86, 0x88, 0x88, 0x85, 0x80, 0x7c, 0x7a, 0x7b, 0x7d, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7f, 0x83, 0x87, 0x89, 0x97, 0x97, 0x96, 0x96, 0x97, 0x98, 0x99, 0x99, 0x97, 0x97, 0x97, 0x96, 0x94, 0x91, 0x8f, 0x8e, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x85, 0x86, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x85, 0x84, 0x82, 0x81, 0x81, 0x82, 0x83, 0x84, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x86, 0x86, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x81, 0x80, 0x80, 0x87, 0x86, 0x85, 0x84, 0x82, 0x82, 0x82, 0x82, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7d, 0x7b, 0x7a, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7e, 0x80, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x81, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x78, 0x78, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x80, 0x7e, 0x7d, 0x7f, 0x86, 0x8f, 0x99, 0xa0, 0xb5, 0xb2, 0xb0, 0xb0, 0xb2, 0xb1, 0xad, 0xa9, 0xa5, 0xa2, 0x9e, 0x98, 0x95, 0x92, 0x92, 0x92, 0x93, 0x94, 0x96, 0x96, 0x96, 0x93, 0x91, 0x8f, 0x94, 0x94, 0x94, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8d, 0x8d, 0x8f, 0x93, 0x98, 0x9b, 0xa4, 0xaa, 0xaa, 0xa4, 0xa3, 0xa0, 0x8f, 0x7a, 0x76, 0x75, 0x73, 0x72, 0x73, 0x74, 0x76, 0x78, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x76, 0x79, 0x7e, 0x83, 0x86, 0x87, 0x87, 0x86, 0x87, 0x84, 0x81, 0x7e, 0x7c, 0x7c, 0x7e, 0x7f, 0x7d, 0x7b, 0x79, 0x79, 0x7e, 0x86, 0x8e, 0x93, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x99, 0x97, 0x95, 0x95, 0x95, 0x92, 0x8d, 0x88, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x7b, 0x7d, 0x7f, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7f, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x7e, 0x7f, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7f, 0x7e, 0x7d, 0x7e, 0x81, 0x87, 0x8d, 0x91, 0x9d, 0xaa, 0xb7, 0xb9, 0xb2, 0xac, 0xad, 0xb2, 0xaa, 0xa7, 0xa2, 0x9d, 0x98, 0x95, 0x93, 0x92, 0x92, 0x92, 0x93, 0x94, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8d, 0x8d, 0x8f, 0x93, 0x97, 0x9a, 0xa3, 0xa9, 0xa9, 0xa4, 0xa3, 0xa0, 0x8f, 0x7a, 0x77, 0x75, 0x74, 0x72, 0x73, 0x74, 0x76, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x76, 0x79, 0x7d, 0x82, 0x85, 0x86, 0x86, 0x86, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x7d, 0x7b, 0x79, 0x7a, 0x7e, 0x86, 0x8e, 0x94, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x99, 0x97, 0x95, 0x95, 0x95, 0x92, 0x8d, 0x88, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7e, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x88, 0x99, 0xad, 0xb5, 0xb2, 0xae, 0xaf, 0xb3, 0xb2, 0xaf, 0xab, 0xa5, 0xa0, 0x9b, 0x98, 0x96, 0x93, 0x92, 0x90, 0x90, 0x92, 0x95, 0x98, 0x9a, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8f, 0x92, 0x96, 0x99, 0xa0, 0xa6, 0xa7, 0xa2, 0xa2, 0xa0, 0x90, 0x7b, 0x77, 0x76, 0x74, 0x72, 0x72, 0x74, 0x76, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x80, 0x83, 0x84, 0x84, 0x84, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x7c, 0x7b, 0x79, 0x7b, 0x80, 0x87, 0x8f, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x99, 0x96, 0x95, 0x95, 0x95, 0x93, 0x8d, 0x88, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x88, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7b, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x80, 0x7e, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x83, 0x87, 0x91, 0x9e, 0xaa, 0xb0, 0xaf, 0xac, 0xb8, 0xb6, 0xb3, 0xaf, 0xaa, 0xa5, 0xa1, 0x9f, 0x99, 0x96, 0x92, 0x8e, 0x8e, 0x90, 0x94, 0x97, 0x90, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8f, 0x92, 0x95, 0x97, 0x9d, 0xa4, 0xa5, 0xa1, 0xa2, 0xa1, 0x91, 0x7c, 0x78, 0x76, 0x74, 0x73, 0x72, 0x73, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x76, 0x78, 0x7b, 0x7e, 0x80, 0x82, 0x82, 0x82, 0x84, 0x82, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7b, 0x7a, 0x7a, 0x7c, 0x81, 0x89, 0x91, 0x96, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x98, 0x96, 0x94, 0x95, 0x95, 0x93, 0x8e, 0x89, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x76, 0x78, 0x7b, 0x7d, 0x7e, 0x7e, 0x7c, 0x7b, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x73, 0x76, 0x79, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7f, 0x7e, 0x7f, 0x86, 0x93, 0x9f, 0xa6, 0xa9, 0xb7, 0xb7, 0xb6, 0xb5, 0xb2, 0xae, 0xab, 0xa9, 0xa3, 0x9f, 0x98, 0x92, 0x8e, 0x8e, 0x8f, 0x90, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x91, 0x90, 0x8f, 0x8e, 0x8f, 0x91, 0x93, 0x95, 0x9b, 0xa2, 0xa4, 0xa1, 0xa2, 0xa2, 0x93, 0x7f, 0x78, 0x77, 0x74, 0x73, 0x72, 0x73, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x7a, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7d, 0x83, 0x8b, 0x92, 0x97, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x97, 0x95, 0x94, 0x95, 0x95, 0x93, 0x8e, 0x89, 0x87, 0x86, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x76, 0x79, 0x7d, 0x81, 0x83, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x75, 0x76, 0x79, 0x7b, 0x7d, 0x7f, 0x7f, 0x7f, 0x77, 0x7d, 0x80, 0x7e, 0x7c, 0x84, 0x96, 0xa5, 0xab, 0xad, 0xb1, 0xb4, 0xb5, 0xb4, 0xb2, 0xb0, 0xad, 0xaa, 0xa3, 0x9d, 0x97, 0x93, 0x92, 0x91, 0x94, 0x94, 0x93, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x90, 0x92, 0x93, 0x9a, 0xa1, 0xa3, 0xa1, 0xa3, 0xa4, 0x95, 0x81, 0x79, 0x77, 0x75, 0x73, 0x72, 0x73, 0x74, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7e, 0x84, 0x8c, 0x93, 0x98, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x95, 0x94, 0x95, 0x96, 0x94, 0x8f, 0x8a, 0x87, 0x86, 0x84, 0x82, 0x82, 0x83, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7c, 0x79, 0x77, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7d, 0x81, 0x86, 0x8c, 0x90, 0x91, 0x90, 0x8f, 0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7c, 0x7c, 0x78, 0x7e, 0x82, 0x7e, 0x78, 0x7a, 0x86, 0x92, 0x9a, 0x9e, 0xa5, 0xac, 0xb1, 0xb3, 0xb3, 0xb3, 0xb3, 0xb2, 0xaf, 0xaa, 0xa5, 0xa1, 0x9d, 0x9b, 0x97, 0x96, 0x95, 0x94, 0x93, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x91, 0x99, 0xa0, 0xa3, 0xa2, 0xa5, 0xa6, 0x98, 0x84, 0x79, 0x77, 0x75, 0x73, 0x72, 0x73, 0x74, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7f, 0x85, 0x8d, 0x94, 0x99, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x98, 0x98, 0x96, 0x95, 0x93, 0x94, 0x96, 0x94, 0x8f, 0x8a, 0x88, 0x86, 0x84, 0x82, 0x81, 0x82, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x7d, 0x7a, 0x77, 0x75, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x74, 0x73, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x85, 0x89, 0x8f, 0x96, 0x9a, 0x9c, 0x9c, 0x9b, 0x82, 0x81, 0x7f, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x81, 0x81, 0x81, 0x7f, 0x7d, 0x7c, 0x7f, 0x7d, 0x7a, 0x77, 0x75, 0x75, 0x77, 0x78, 0x80, 0x7e, 0x7d, 0x7e, 0x81, 0x81, 0x7e, 0x7a, 0x8d, 0x92, 0x9c, 0xa5, 0xad, 0xb1, 0xb3, 0xb3, 0xb6, 0xb6, 0xb6, 0xb4, 0xb1, 0xac, 0xa8, 0xa5, 0x99, 0x98, 0x97, 0x95, 0x93, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x90, 0x90, 0x90, 0x99, 0xa0, 0xa4, 0xa2, 0xa5, 0xa7, 0x99, 0x86, 0x79, 0x78, 0x75, 0x73, 0x72, 0x72, 0x74, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x78, 0x7b, 0x7f, 0x86, 0x8e, 0x95, 0x99, 0x97, 0x97, 0x97, 0x97, 0x98, 0x98, 0x98, 0x98, 0x96, 0x94, 0x93, 0x94, 0x96, 0x94, 0x8f, 0x8b, 0x89, 0x87, 0x84, 0x81, 0x81, 0x82, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x7c, 0x7a, 0x78, 0x75, 0x73, 0x72, 0x72, 0x72, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x77, 0x76, 0x75, 0x75, 0x75, 0x77, 0x79, 0x7a, 0x72, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x73, 0x75, 0x77, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x73, 0x75, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7c, 0x7e, 0x80, 0x96, 0x9a, 0xa1, 0xa6, 0xa9, 0xa8, 0xa6, 0xa3, 0x9e, 0x96, 0x8c, 0x84, 0x82, 0x81, 0x80, 0x7e, 0x82, 0x80, 0x7f, 0x81, 0x83, 0x83, 0x7f, 0x7b, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x77, 0x77, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x80, 0x79, 0x7c, 0x82, 0x8b, 0x98, 0xa5, 0xb0, 0xb6, 0xad, 0xb1, 0xb6, 0xb9, 0xba, 0xb6, 0xb1, 0xae, 0xaa, 0xa8, 0xa5, 0xa1, 0x9d, 0x9a, 0x97, 0x96, 0x98, 0x96, 0x93, 0x8f, 0x8d, 0x8c, 0x8b, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x92, 0x92, 0x93, 0x9a, 0xa0, 0xa2, 0xa0, 0xa5, 0xa9, 0x9d, 0x8c, 0x7b, 0x79, 0x76, 0x73, 0x72, 0x73, 0x75, 0x76, 0x78, 0x78, 0x77, 0x76, 0x75, 0x76, 0x77, 0x77, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7a, 0x7b, 0x81, 0x8a, 0x92, 0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x92, 0x94, 0x95, 0x95, 0x94, 0x91, 0x8d, 0x8b, 0x89, 0x88, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x77, 0x7a, 0x79, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x73, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x78, 0x79, 0x79, 0x79, 0x77, 0x76, 0x73, 0x75, 0x77, 0x7a, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x76, 0x74, 0x73, 0x7e, 0x7b, 0x78, 0x77, 0x7b, 0x83, 0x8c, 0x92, 0x9d, 0xa0, 0xa4, 0xa8, 0xaa, 0xaa, 0xa9, 0xa8, 0xa7, 0xa0, 0x96, 0x8e, 0x89, 0x85, 0x80, 0x7c, 0x80, 0x7e, 0x7d, 0x7f, 0x82, 0x82, 0x7f, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7b, 0x7d, 0x80, 0x86, 0x8e, 0x96, 0x9e, 0xa3, 0xb4, 0xb3, 0xb1, 0xb1, 0xb2, 0xb4, 0xb6, 0xb8, 0xb1, 0xb0, 0xae, 0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa0, 0x9e, 0x9b, 0x98, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x98, 0x9c, 0xa2, 0xa4, 0xa2, 0xa5, 0xa9, 0x9d, 0x8b, 0x7a, 0x78, 0x76, 0x73, 0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x76, 0x76, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x7b, 0x7a, 0x7b, 0x81, 0x8a, 0x92, 0x95, 0x96, 0x97, 0x97, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x92, 0x93, 0x95, 0x95, 0x93, 0x90, 0x8d, 0x8b, 0x88, 0x87, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x72, 0x71, 0x71, 0x71, 0x74, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x76, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x77, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x80, 0x7d, 0x79, 0x79, 0x81, 0x8e, 0x9c, 0xa6, 0xa6, 0xa7, 0xa7, 0xa8, 0xaa, 0xab, 0xad, 0xad, 0xb1, 0xac, 0xa4, 0x9c, 0x96, 0x8e, 0x85, 0x7f, 0x7f, 0x7c, 0x7b, 0x7c, 0x80, 0x82, 0x81, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7d, 0x7d, 0x7d, 0x7e, 0x81, 0x85, 0x88, 0x8b, 0xa8, 0xa9, 0xab, 0xae, 0xb2, 0xb5, 0xb7, 0xb9, 0xb4, 0xb3, 0xb3, 0xb3, 0xb2, 0xb1, 0xb1, 0xb1, 0xaa, 0xa9, 0xa7, 0xa4, 0xa2, 0xa1, 0xa0, 0xa0, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xa0, 0xa6, 0xa7, 0xa3, 0xa6, 0xa8, 0x9c, 0x89, 0x79, 0x78, 0x75, 0x73, 0x73, 0x73, 0x75, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x7a, 0x79, 0x7b, 0x81, 0x8a, 0x92, 0x95, 0x95, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x93, 0x93, 0x94, 0x93, 0x92, 0x8f, 0x8c, 0x8a, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x72, 0x72, 0x72, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x7a, 0x7b, 0x7d, 0x84, 0x8e, 0x9a, 0xa6, 0xad, 0xab, 0xaa, 0xa8, 0xa6, 0xa7, 0xaa, 0xad, 0xaf, 0xb5, 0xb1, 0xad, 0xa8, 0xa3, 0x9b, 0x91, 0x8a, 0x82, 0x7e, 0x7b, 0x7b, 0x7e, 0x81, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x89, 0x92, 0xa0, 0xad, 0xb4, 0xb5, 0xb2, 0xae, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xad, 0xad, 0xb1, 0xb0, 0xae, 0xad, 0xab, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa8, 0xa8, 0xa7, 0xa7, 0xa6, 0xa4, 0xaa, 0xa9, 0xa4, 0xa6, 0xa6, 0x99, 0x86, 0x78, 0x77, 0x75, 0x74, 0x73, 0x74, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x79, 0x7b, 0x81, 0x8a, 0x91, 0x95, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x92, 0x90, 0x8d, 0x8b, 0x89, 0x85, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7d, 0x7c, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x75, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x79, 0x85, 0x92, 0x9d, 0xa4, 0xa7, 0xa8, 0xab, 0xa9, 0xa6, 0xa4, 0xa5, 0xa7, 0xab, 0xae, 0xb2, 0xb0, 0xaf, 0xae, 0xad, 0xa8, 0xa0, 0x9a, 0x8b, 0x85, 0x7f, 0x7c, 0x7e, 0x81, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x75, 0x7e, 0x8d, 0x9c, 0xa6, 0xaa, 0xaa, 0xa8, 0xb1, 0xb2, 0xb2, 0xb2, 0xb0, 0xae, 0xac, 0xaa, 0xb2, 0xb1, 0xb1, 0xb0, 0xaf, 0xad, 0xac, 0xac, 0xaf, 0xaf, 0xae, 0xad, 0xad, 0xac, 0xab, 0xab, 0xa7, 0xac, 0xaa, 0xa4, 0xa4, 0xa3, 0x94, 0x81, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x75, 0x73, 0x73, 0x73, 0x75, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x79, 0x7a, 0x80, 0x89, 0x91, 0x94, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x90, 0x8e, 0x8c, 0x89, 0x88, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x7a, 0x78, 0x75, 0x73, 0x73, 0x74, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x77, 0x77, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x74, 0x7e, 0x8e, 0x9d, 0xa6, 0xa9, 0xa6, 0xa3, 0xa8, 0xa7, 0xa5, 0xa5, 0xa5, 0xa8, 0xaa, 0xac, 0xaf, 0xae, 0xad, 0xaf, 0xb1, 0xaf, 0xab, 0xa6, 0x98, 0x91, 0x87, 0x80, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x77, 0x78, 0x7b, 0x81, 0x8a, 0x95, 0x9f, 0xa5, 0xb0, 0xb1, 0xb3, 0xb4, 0xb4, 0xb3, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xae, 0xad, 0xac, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xad, 0xad, 0xac, 0xa9, 0xad, 0xaa, 0xa3, 0xa1, 0x9f, 0x8f, 0x7b, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x79, 0x79, 0x7a, 0x80, 0x89, 0x91, 0x94, 0x94, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x91, 0x8f, 0x8c, 0x8a, 0x88, 0x87, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x79, 0x77, 0x74, 0x72, 0x72, 0x75, 0x78, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x77, 0x79, 0x7b, 0x7c, 0x79, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x84, 0x8b, 0x96, 0xa1, 0xa8, 0xaa, 0xa8, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xb0, 0xad, 0xab, 0xac, 0xaf, 0xb0, 0xae, 0xab, 0xa6, 0x9c, 0x8f, 0x85, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7a, 0x77, 0x76, 0x7b, 0x84, 0x8e, 0x94, 0x9f, 0xa2, 0xa7, 0xac, 0xb0, 0xb2, 0xb3, 0xb3, 0xaf, 0xaf, 0xb0, 0xb1, 0xb0, 0xaf, 0xae, 0xad, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xab, 0xab, 0xa9, 0xad, 0xa9, 0xa1, 0x9e, 0x9b, 0x8a, 0x75, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x78, 0x7a, 0x80, 0x89, 0x90, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x90, 0x8e, 0x8b, 0x89, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x84, 0x83, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x89, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7f, 0x81, 0x82, 0x82, 0x82, 0x81, 0x81, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x79, 0x76, 0x73, 0x71, 0x71, 0x75, 0x79, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x76, 0x76, 0x76, 0x77, 0x7a, 0x7c, 0x7e, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x93, 0x96, 0x9b, 0xa0, 0xa5, 0xa9, 0xab, 0xac, 0xa6, 0xa7, 0xaa, 0xad, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xaf, 0xab, 0xaa, 0xac, 0xae, 0xad, 0xab, 0xaf, 0xa4, 0x94, 0x88, 0x82, 0x81, 0x80, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x8a, 0x8e, 0x96, 0x9f, 0xa6, 0xab, 0xae, 0xaf, 0xaf, 0xb0, 0xb1, 0xb2, 0xb1, 0xb0, 0xaf, 0xad, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xa9, 0xac, 0xa8, 0x9f, 0x9b, 0x98, 0x87, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x74, 0x74, 0x74, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x7a, 0x80, 0x89, 0x90, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x94, 0x92, 0x90, 0x8d, 0x8a, 0x88, 0x87, 0x86, 0x87, 0x86, 0x85, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x89, 0x89, 0x89, 0x8a, 0x8a, 0x8a, 0x8a, 0x8b, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x7f, 0x7d, 0x7c, 0x7f, 0x7e, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x7a, 0x7b, 0x7a, 0x79, 0x76, 0x75, 0x74, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x74, 0x76, 0x77, 0x78, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x73, 0x72, 0x71, 0x70, 0x71, 0x72, 0x74, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x79, 0x79, 0x7a, 0x77, 0x74, 0x72, 0x75, 0x7c, 0x84, 0x8a, 0xa1, 0xa3, 0xa5, 0xa8, 0xa9, 0xaa, 0xa9, 0xa9, 0xa6, 0xa6, 0xa7, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xa8, 0xb0, 0xb3, 0xa4, 0x8b, 0x7a, 0x7a, 0x81, 0x80, 0x82, 0x82, 0x80, 0x7e, 0x7e, 0x81, 0x84, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7f, 0x82, 0x87, 0x8f, 0x97, 0x9f, 0xa4, 0xaa, 0xac, 0xaf, 0xb1, 0xb2, 0xb1, 0xaf, 0xad, 0xad, 0xad, 0xad, 0xac, 0xab, 0xab, 0xaa, 0xaa, 0xb0, 0xab, 0xa2, 0x97, 0x8b, 0x81, 0x7a, 0x76, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x74, 0x77, 0x7d, 0x83, 0x8a, 0x8f, 0x93, 0x95, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x91, 0x90, 0x8f, 0x8d, 0x8b, 0x89, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x81, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x84, 0x83, 0x81, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x7f, 0x7e, 0x7d, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x71, 0x70, 0x6f, 0x6f, 0x70, 0x71, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7d, 0x7a, 0x76, 0x75, 0x7a, 0x83, 0x8c, 0x93, 0xa4, 0xa5, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xa8, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaa, 0xaf, 0xb0, 0xa6, 0x93, 0x85, 0x80, 0x81, 0x7e, 0x7f, 0x81, 0x80, 0x7f, 0x7f, 0x81, 0x83, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x7c, 0x7f, 0x85, 0x8a, 0x8d, 0x90, 0x93, 0x99, 0x9f, 0xa3, 0xa6, 0xa7, 0xa7, 0xa7, 0xa7, 0xa6, 0xa6, 0xa5, 0xa4, 0xa4, 0xa4, 0x9f, 0x9b, 0x94, 0x8b, 0x81, 0x7a, 0x74, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x7b, 0x80, 0x86, 0x8b, 0x90, 0x93, 0x94, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x91, 0x90, 0x8e, 0x8c, 0x8a, 0x89, 0x87, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x83, 0x81, 0x80, 0x80, 0x82, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x7e, 0x7d, 0x7a, 0x78, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x6f, 0x6e, 0x6f, 0x6f, 0x71, 0x72, 0x74, 0x75, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x72, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7f, 0x7c, 0x79, 0x7a, 0x80, 0x8c, 0x98, 0xa0, 0xa8, 0xa8, 0xa9, 0xaa, 0xaa, 0xa9, 0xa8, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xab, 0xac, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xad, 0xad, 0xac, 0xa8, 0xa0, 0x95, 0x8b, 0x84, 0x7b, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x80, 0x84, 0x8a, 0x8e, 0x90, 0x91, 0x92, 0x93, 0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x88, 0x86, 0x81, 0x7c, 0x76, 0x72, 0x70, 0x6e, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7f, 0x81, 0x85, 0x8a, 0x8e, 0x91, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x90, 0x8f, 0x8e, 0x8c, 0x8a, 0x88, 0x87, 0x86, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x82, 0x81, 0x82, 0x83, 0x85, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7e, 0x81, 0x84, 0x84, 0x80, 0x7c, 0x79, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7d, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x70, 0x71, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7d, 0x7c, 0x7b, 0x7e, 0x87, 0x94, 0xa1, 0xa9, 0xab, 0xab, 0xab, 0xaa, 0xaa, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb0, 0xac, 0xa9, 0xab, 0xac, 0xa5, 0x96, 0x8a, 0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x82, 0x80, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x83, 0x81, 0x7f, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7b, 0x79, 0x78, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x76, 0x73, 0x72, 0x71, 0x71, 0x71, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x87, 0x88, 0x8b, 0x8e, 0x90, 0x92, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x90, 0x8f, 0x8d, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7e, 0x7e, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x79, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7d, 0x7f, 0x83, 0x86, 0x85, 0x82, 0x7e, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7c, 0x7d, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7b, 0x79, 0x78, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7b, 0x7b, 0x7e, 0x84, 0x8e, 0x9a, 0xa6, 0xad, 0xae, 0xad, 0xac, 0xaa, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xa9, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb1, 0xac, 0xa9, 0xad, 0xb2, 0xaf, 0xa1, 0x93, 0x85, 0x81, 0x7d, 0x7e, 0x81, 0x83, 0x80, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x72, 0x71, 0x71, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7e, 0x81, 0x83, 0x8d, 0x8e, 0x90, 0x92, 0x93, 0x93, 0x93, 0x92, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8b, 0x89, 0x87, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7a, 0x79, 0x77, 0x77, 0x79, 0x7b, 0x7c, 0x7f, 0x81, 0x82, 0x84, 0x83, 0x81, 0x7f, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7f, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7c, 0x7e, 0x7f, 0x7f, 0x7e, 0x7c, 0x7b, 0x79, 0x7d, 0x84, 0x8d, 0x97, 0xa1, 0xaa, 0xae, 0xae, 0xad, 0xab, 0xa9, 0xa8, 0xa7, 0xa7, 0xa7, 0xa9, 0xa9, 0xaa, 0xab, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb1, 0xad, 0xaa, 0xae, 0xb2, 0xb1, 0xa8, 0x9f, 0x92, 0x89, 0x7f, 0x7c, 0x80, 0x83, 0x81, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7e, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x77, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x7a, 0x7a, 0x7b, 0x7d, 0x80, 0x84, 0x89, 0x8b, 0x92, 0x92, 0x93, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8a, 0x88, 0x86, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x7a, 0x7c, 0x7e, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x7f, 0x7f, 0x7e, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7d, 0x7e, 0x81, 0x82, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x82, 0x8c, 0x98, 0xa3, 0xaa, 0xad, 0xaf, 0xad, 0xac, 0xaa, 0xa8, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xaf, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xae, 0xad, 0xae, 0xae, 0xae, 0xac, 0xab, 0xa0, 0x92, 0x82, 0x7b, 0x7e, 0x82, 0x82, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x76, 0x76, 0x74, 0x74, 0x73, 0x74, 0x74, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7c, 0x7d, 0x7e, 0x80, 0x85, 0x8b, 0x91, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8e, 0x8d, 0x8b, 0x8a, 0x87, 0x86, 0x84, 0x83, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7c, 0x79, 0x78, 0x79, 0x78, 0x77, 0x77, 0x78, 0x7b, 0x7e, 0x80, 0x83, 0x81, 0x7f, 0x7d, 0x7d, 0x7e, 0x80, 0x81, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x7d, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x80, 0x7a, 0x7b, 0x7c, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x80, 0x82, 0x84, 0x84, 0x82, 0x7f, 0x7d, 0x7e, 0x86, 0x93, 0xa1, 0xab, 0xaf, 0xb0, 0xb0, 0xac, 0xab, 0xa9, 0xa7, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xaf, 0xad, 0xab, 0xab, 0xae, 0xb1, 0xa9, 0x97, 0x83, 0x7a, 0x7c, 0x82, 0x82, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7b, 0x7f, 0x7d, 0x7b, 0x78, 0x75, 0x73, 0x72, 0x71, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x76, 0x75, 0x73, 0x71, 0x70, 0x6f, 0x70, 0x70, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x72, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7c, 0x7c, 0x7a, 0x79, 0x7e, 0x7e, 0x80, 0x83, 0x88, 0x8f, 0x95, 0x99, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x93, 0x94, 0x94, 0x93, 0x92, 0x90, 0x8f, 0x8d, 0x8d, 0x8b, 0x89, 0x87, 0x85, 0x84, 0x83, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x85, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x7c, 0x7b, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x76, 0x78, 0x78, 0x7a, 0x7c, 0x7f, 0x82, 0x83, 0x82, 0x80, 0x7f, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x7a, 0x7b, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7a, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7f, 0x82, 0x83, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7c, 0x7f, 0x82, 0x82, 0x80, 0x7e, 0x7f, 0x81, 0x84, 0x8c, 0x99, 0xa6, 0xaf, 0xb1, 0xb0, 0xae, 0xab, 0xaa, 0xa9, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xa4, 0x92, 0x86, 0x82, 0x81, 0x7f, 0x7d, 0x82, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x78, 0x7c, 0x84, 0x8b, 0x91, 0x93, 0x94, 0x93, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8f, 0x8d, 0x8c, 0x8a, 0x88, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x82, 0x85, 0x86, 0x86, 0x87, 0x86, 0x85, 0x83, 0x83, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x83, 0x81, 0x80, 0x82, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x7b, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7c, 0x7f, 0x81, 0x82, 0x81, 0x7f, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7c, 0x7f, 0x82, 0x82, 0x7f, 0x7e, 0x7f, 0x81, 0x83, 0x8c, 0x99, 0xa6, 0xae, 0xb1, 0xb0, 0xae, 0xaa, 0xa9, 0xa8, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb0, 0xa7, 0x9a, 0x8c, 0x83, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x80, 0x83, 0x8a, 0x90, 0x94, 0x96, 0x96, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8c, 0x8b, 0x89, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x78, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7e, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x82, 0x82, 0x82, 0x82, 0x82, 0x80, 0x7f, 0x7e, 0x7c, 0x7f, 0x82, 0x82, 0x7f, 0x7d, 0x7e, 0x80, 0x82, 0x8a, 0x98, 0xa6, 0xae, 0xb1, 0xaf, 0xad, 0xaa, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xad, 0xa5, 0x97, 0x86, 0x7d, 0x7e, 0x83, 0x81, 0x81, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x89, 0x8c, 0x91, 0x95, 0x97, 0x98, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8b, 0x8a, 0x88, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7d, 0x7c, 0x7c, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x79, 0x79, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x80, 0x81, 0x81, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7f, 0x82, 0x81, 0x7e, 0x7c, 0x7d, 0x7f, 0x80, 0x89, 0x97, 0xa5, 0xae, 0xb0, 0xaf, 0xac, 0xa9, 0xa8, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xac, 0xb1, 0xb0, 0xa1, 0x8c, 0x7e, 0x7f, 0x85, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x76, 0x79, 0x7d, 0x7f, 0x81, 0x83, 0x83, 0x90, 0x92, 0x95, 0x97, 0x97, 0x97, 0x95, 0x94, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x89, 0x88, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88, 0x88, 0x86, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x74, 0x74, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7c, 0x7f, 0x81, 0x81, 0x7d, 0x7b, 0x7c, 0x7e, 0x7d, 0x87, 0x96, 0xa5, 0xae, 0xb0, 0xae, 0xab, 0xa8, 0xa7, 0xa7, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xac, 0xb4, 0xb6, 0xaa, 0x94, 0x84, 0x80, 0x84, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x77, 0x7a, 0x7f, 0x83, 0x86, 0x88, 0x89, 0x92, 0x93, 0x94, 0x95, 0x95, 0x94, 0x92, 0x91, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x88, 0x87, 0x86, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x89, 0x86, 0x86, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x87, 0x87, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x75, 0x73, 0x72, 0x72, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x77, 0x75, 0x73, 0x72, 0x72, 0x73, 0x74, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7b, 0x7b, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7c, 0x7f, 0x81, 0x80, 0x7d, 0x7a, 0x7b, 0x7c, 0x7b, 0x85, 0x95, 0xa4, 0xae, 0xb0, 0xad, 0xaa, 0xa7, 0xa7, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xb4, 0xb6, 0xae, 0x9d, 0x8c, 0x83, 0x80, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x78, 0x7c, 0x81, 0x86, 0x8b, 0x8d, 0x8e, 0x91, 0x92, 0x93, 0x93, 0x93, 0x92, 0x91, 0x90, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x88, 0x87, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x87, 0x88, 0x89, 0x89, 0x89, 0x88, 0x88, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x86, 0x86, 0x88, 0x89, 0x89, 0x89, 0x88, 0x87, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x77, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x78, 0x75, 0x72, 0x71, 0x71, 0x73, 0x74, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7c, 0x7e, 0x81, 0x80, 0x7c, 0x79, 0x7a, 0x7b, 0x79, 0x84, 0x94, 0xa4, 0xae, 0xaf, 0xac, 0xa9, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb3, 0xaf, 0xa5, 0x96, 0x85, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x76, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x76, 0x79, 0x7e, 0x84, 0x8a, 0x8f, 0x92, 0x93, 0x91, 0x92, 0x93, 0x94, 0x94, 0x94, 0x93, 0x93, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x88, 0x88, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86, 0x86, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x89, 0x89, 0x88, 0x74, 0x75, 0x77, 0x78, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x7a, 0x78, 0x75, 0x72, 0x70, 0x71, 0x73, 0x74, 0x77, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7e, 0x7b, 0x7e, 0x81, 0x7f, 0x7c, 0x79, 0x79, 0x7b, 0x79, 0x83, 0x94, 0xa4, 0xae, 0xaf, 0xac, 0xa9, 0xa6, 0xa6, 0xa5, 0xa6, 0xa6, 0xa8, 0xaa, 0xab, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb1, 0xb0, 0xaf, 0xaa, 0x9c, 0x87, 0x77, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x7e, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x76, 0x7a, 0x7f, 0x85, 0x8c, 0x91, 0x94, 0x96, 0x92, 0x93, 0x94, 0x95, 0x96, 0x96, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x89, 0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x87, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x89, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x86, 0x86, 0x87, 0x88, 0x88, 0x89, 0x88, 0x87, 0x86, 0x85, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x8a, 0x89, 0x89, 0x78, 0x79, 0x7b, 0x7c, 0x7b, 0x78, 0x75, 0x73, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x77, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x75, 0x76, 0x78, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x7d, 0x7a, 0x77, 0x75, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7a, 0x7b, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7a, 0x7b, 0x7d, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x79, 0x7b, 0x8d, 0xa7, 0xb3, 0xac, 0xa4, 0xa4, 0xa7, 0xa7, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb2, 0xb3, 0xae, 0xb4, 0xb4, 0xae, 0xab, 0xa6, 0x93, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7e, 0x7f, 0x80, 0x81, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x7c, 0x87, 0x8f, 0x91, 0x92, 0x92, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x91, 0x90, 0x8f, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b, 0x89, 0x85, 0x83, 0x83, 0x86, 0x88, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x83, 0x82, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x86, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x77, 0x74, 0x73, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x77, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x7a, 0x7b, 0x7d, 0x7e, 0x7d, 0x7b, 0x78, 0x76, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7b, 0x7d, 0x7e, 0x80, 0x80, 0x80, 0x80, 0x7a, 0x7b, 0x7d, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x8b, 0xa3, 0xaf, 0xaa, 0xa4, 0xa5, 0xa7, 0xa7, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb2, 0xb2, 0xae, 0xb4, 0xb4, 0xae, 0xac, 0xa8, 0x95, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x7e, 0x89, 0x90, 0x92, 0x92, 0x93, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x88, 0x85, 0x82, 0x83, 0x86, 0x88, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x85, 0x84, 0x83, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x86, 0x86, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x75, 0x76, 0x78, 0x78, 0x78, 0x76, 0x74, 0x72, 0x77, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7b, 0x79, 0x77, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x79, 0x7a, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7e, 0x7c, 0x88, 0x9e, 0xaa, 0xa7, 0xa5, 0xa8, 0xa8, 0xa8, 0xa8, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1, 0xb2, 0xaf, 0xb5, 0xb5, 0xaf, 0xae, 0xab, 0x9a, 0x85, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x7a, 0x82, 0x8b, 0x92, 0x93, 0x93, 0x93, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8b, 0x8a, 0x89, 0x88, 0x86, 0x83, 0x81, 0x82, 0x85, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x87, 0x88, 0x88, 0x89, 0x89, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x73, 0x72, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x73, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x80, 0x7d, 0x85, 0x9a, 0xa6, 0xa5, 0xa5, 0xab, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1, 0xb0, 0xb5, 0xb4, 0xaf, 0xaf, 0xae, 0x9f, 0x8c, 0x7f, 0x7e, 0x7c, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x7f, 0x86, 0x8e, 0x93, 0x94, 0x93, 0x94, 0x95, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8e, 0x8d, 0x8b, 0x89, 0x87, 0x86, 0x83, 0x81, 0x7f, 0x80, 0x84, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x8a, 0x89, 0x89, 0x88, 0x86, 0x86, 0x85, 0x84, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x74, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x75, 0x77, 0x78, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x73, 0x73, 0x72, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x81, 0x7d, 0x84, 0x98, 0xa4, 0xa4, 0xa5, 0xac, 0xaa, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xaf, 0xb4, 0xb4, 0xaf, 0xb0, 0xb2, 0xa5, 0x92, 0x81, 0x7f, 0x7d, 0x7b, 0x7b, 0x7c, 0x7e, 0x80, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7d, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x75, 0x74, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x83, 0x89, 0x91, 0x94, 0x94, 0x93, 0x94, 0x95, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8d, 0x8d, 0x8d, 0x8d, 0x8b, 0x88, 0x86, 0x84, 0x81, 0x7e, 0x7d, 0x7e, 0x83, 0x86, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x84, 0x84, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x72, 0x72, 0x74, 0x74, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7a, 0x79, 0x77, 0x77, 0x79, 0x7a, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x81, 0x7d, 0x85, 0x99, 0xa5, 0xa5, 0xa5, 0xab, 0xab, 0xaa, 0xaa, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xb3, 0xb2, 0xae, 0xb0, 0xb4, 0xa9, 0x98, 0x82, 0x80, 0x7d, 0x7a, 0x7a, 0x7b, 0x7d, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x75, 0x78, 0x7b, 0x7d, 0x87, 0x8c, 0x92, 0x95, 0x94, 0x92, 0x93, 0x94, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x8f, 0x8c, 0x8d, 0x8d, 0x8c, 0x8a, 0x87, 0x84, 0x82, 0x7f, 0x7c, 0x7b, 0x7d, 0x82, 0x85, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x86, 0x86, 0x86, 0x86, 0x87, 0x88, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x77, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x72, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7c, 0x7b, 0x79, 0x77, 0x77, 0x79, 0x7b, 0x7d, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x79, 0x78, 0x77, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7f, 0x7d, 0x87, 0x9c, 0xa8, 0xa6, 0xa5, 0xaa, 0xab, 0xab, 0xab, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xad, 0xb2, 0xb1, 0xac, 0xb0, 0xb5, 0xac, 0x9b, 0x84, 0x81, 0x7d, 0x7a, 0x79, 0x7b, 0x7d, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x73, 0x73, 0x75, 0x79, 0x7c, 0x7f, 0x89, 0x8e, 0x93, 0x95, 0x93, 0x91, 0x92, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8b, 0x8c, 0x8d, 0x8c, 0x8a, 0x86, 0x83, 0x80, 0x7d, 0x7b, 0x79, 0x7c, 0x81, 0x85, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x85, 0x86, 0x87, 0x89, 0x8a, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x73, 0x73, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x78, 0x79, 0x7b, 0x7d, 0x7b, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x79, 0x7a, 0x7e, 0x7d, 0x88, 0x9e, 0xaa, 0xa7, 0xa5, 0xa9, 0xac, 0xab, 0xab, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xad, 0xb1, 0xb0, 0xac, 0xb0, 0xb5, 0xad, 0x9d, 0x84, 0x82, 0x7d, 0x7a, 0x79, 0x7a, 0x7d, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x75, 0x74, 0x73, 0x73, 0x75, 0x79, 0x7d, 0x80, 0x8a, 0x8e, 0x93, 0x94, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8b, 0x8c, 0x8c, 0x8c, 0x8a, 0x86, 0x82, 0x7f, 0x7c, 0x7a, 0x79, 0x7b, 0x80, 0x85, 0x85, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x85, 0x86, 0x87, 0x89, 0x8a, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x74, 0x75, 0x76, 0x77, 0x78, 0x77, 0x75, 0x74, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x73, 0x75, 0x78, 0x7b, 0x7c, 0x7c, 0x7a, 0x79, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x88, 0x99, 0xa4, 0xa7, 0xa8, 0xab, 0xae, 0xab, 0xab, 0xaa, 0xaa, 0xa9, 0xa9, 0xa8, 0xa8, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xaf, 0xb2, 0xb3, 0xb2, 0xaf, 0xab, 0xa8, 0x94, 0x82, 0x76, 0x7a, 0x7d, 0x79, 0x7a, 0x80, 0x7c, 0x7d, 0x7f, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x73, 0x74, 0x73, 0x74, 0x79, 0x81, 0x87, 0x8e, 0x8f, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8e, 0x8d, 0x8b, 0x88, 0x85, 0x81, 0x7e, 0x7c, 0x77, 0x79, 0x7c, 0x80, 0x83, 0x85, 0x87, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x89, 0x89, 0x88, 0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x74, 0x75, 0x76, 0x77, 0x78, 0x77, 0x76, 0x75, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x74, 0x76, 0x79, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x7d, 0x8a, 0x9a, 0xa5, 0xa7, 0xa8, 0xaa, 0xad, 0xaa, 0xaa, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xaf, 0xb2, 0xb3, 0xb2, 0xaf, 0xac, 0xa9, 0x95, 0x83, 0x77, 0x79, 0x7c, 0x79, 0x79, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x72, 0x73, 0x74, 0x73, 0x74, 0x79, 0x81, 0x88, 0x8e, 0x8f, 0x91, 0x92, 0x93, 0x93, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x8c, 0x8d, 0x8c, 0x89, 0x86, 0x83, 0x7f, 0x7c, 0x7b, 0x78, 0x79, 0x7d, 0x80, 0x83, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x89, 0x89, 0x88, 0x87, 0x87, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x81, 0x8d, 0x9d, 0xa6, 0xa7, 0xa7, 0xaa, 0xad, 0xa7, 0xa8, 0xa8, 0xa9, 0xa9, 0xaa, 0xab, 0xab, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xaf, 0xb1, 0xb3, 0xb2, 0xaf, 0xac, 0xaa, 0x97, 0x84, 0x77, 0x79, 0x7c, 0x78, 0x79, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x74, 0x74, 0x75, 0x79, 0x82, 0x88, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x92, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x87, 0x84, 0x80, 0x7d, 0x7a, 0x79, 0x79, 0x7b, 0x7d, 0x81, 0x83, 0x85, 0x86, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x86, 0x92, 0xa0, 0xa7, 0xa8, 0xa7, 0xa9, 0xac, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xab, 0xac, 0xac, 0xac, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xaf, 0xb1, 0xb2, 0xb1, 0xaf, 0xad, 0xab, 0x9a, 0x87, 0x79, 0x7a, 0x7c, 0x78, 0x79, 0x7f, 0x81, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x73, 0x74, 0x75, 0x74, 0x75, 0x7a, 0x82, 0x89, 0x8d, 0x8e, 0x8f, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x91, 0x91, 0x90, 0x8f, 0x8e, 0x8d, 0x8d, 0x8c, 0x89, 0x87, 0x84, 0x80, 0x7d, 0x7a, 0x78, 0x77, 0x7b, 0x7c, 0x7f, 0x82, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x8c, 0x97, 0xa3, 0xa9, 0xa8, 0xa6, 0xa8, 0xab, 0xa5, 0xa5, 0xa6, 0xa8, 0xa9, 0xab, 0xac, 0xac, 0xad, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xaf, 0xae, 0xac, 0x9e, 0x8a, 0x7b, 0x7b, 0x7c, 0x78, 0x79, 0x7f, 0x81, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x74, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x75, 0x76, 0x7b, 0x83, 0x89, 0x8c, 0x8d, 0x8f, 0x90, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x86, 0x84, 0x81, 0x7d, 0x7a, 0x79, 0x78, 0x78, 0x7c, 0x7e, 0x80, 0x82, 0x84, 0x85, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x77, 0x79, 0x7b, 0x7c, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x75, 0x76, 0x79, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x7a, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7e, 0x92, 0x9b, 0xa6, 0xab, 0xa8, 0xa6, 0xa7, 0xaa, 0xa5, 0xa5, 0xa6, 0xa7, 0xa9, 0xaa, 0xab, 0xab, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xa3, 0x8e, 0x7e, 0x7d, 0x7e, 0x79, 0x7a, 0x81, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x83, 0x8a, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x90, 0x90, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8b, 0x8a, 0x8a, 0x82, 0x81, 0x7e, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7e, 0x7f, 0x81, 0x83, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x76, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7c, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x76, 0x77, 0x77, 0x78, 0x7a, 0x7c, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x75, 0x77, 0x79, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7d, 0x7f, 0x80, 0x96, 0x9f, 0xa9, 0xac, 0xa8, 0xa5, 0xa6, 0xa9, 0xa6, 0xa6, 0xa7, 0xa7, 0xa8, 0xa9, 0xaa, 0xaa, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xa7, 0x92, 0x81, 0x7f, 0x7f, 0x7b, 0x7c, 0x82, 0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x74, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x76, 0x77, 0x7c, 0x84, 0x8b, 0x8b, 0x8c, 0x8e, 0x8f, 0x90, 0x90, 0x8f, 0x8f, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8d, 0x8d, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x88, 0x80, 0x7e, 0x7b, 0x79, 0x78, 0x79, 0x7b, 0x7c, 0x7f, 0x81, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x76, 0x76, 0x75, 0x75, 0x76, 0x79, 0x7b, 0x7c, 0x81, 0x81, 0x80, 0x7e, 0x7d, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x77, 0x75, 0x74, 0x75, 0x75, 0x76, 0x79, 0x7a, 0x7d, 0x7f, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x7a, 0x7c, 0x7c, 0x7b, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x7e, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x7d, 0x80, 0x82, 0x98, 0xa1, 0xaa, 0xac, 0xa9, 0xa5, 0xa6, 0xa9, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xa9, 0x94, 0x83, 0x80, 0x80, 0x7c, 0x7d, 0x83, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7d, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x7c, 0x84, 0x8b, 0x8b, 0x8c, 0x8d, 0x8f, 0x8f, 0x8f, 0x8f, 0x8e, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8c, 0x8c, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x7a, 0x7d, 0x7e, 0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x87, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7f, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x73, 0x75, 0x77, 0x78, 0x79, 0x79, 0x79, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x72, 0x74, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x75, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x7a, 0x7c, 0x7d, 0x7c, 0x79, 0x76, 0x74, 0x71, 0x78, 0x7e, 0x7c, 0x78, 0x7b, 0x86, 0x91, 0xa6, 0xa6, 0xa8, 0xa8, 0xa8, 0xa7, 0xa5, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xaa, 0xac, 0xad, 0xae, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xae, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xa6, 0x98, 0x88, 0x7f, 0x7d, 0x7e, 0x7d, 0x7b, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x78, 0x75, 0x72, 0x71, 0x72, 0x72, 0x6f, 0x6c, 0x77, 0x74, 0x70, 0x70, 0x74, 0x77, 0x77, 0x76, 0x71, 0x72, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x78, 0x70, 0x6e, 0x75, 0x76, 0x71, 0x73, 0x7c, 0x79, 0x78, 0x77, 0x78, 0x7b, 0x80, 0x85, 0x88, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x91, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8b, 0x8c, 0x8b, 0x8a, 0x88, 0x85, 0x81, 0x7f, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x7c, 0x80, 0x84, 0x86, 0x86, 0x85, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x86, 0x88, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x8a, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x88, 0x89, 0x89, 0x8a, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x73, 0x73, 0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x72, 0x74, 0x77, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x76, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x7a, 0x7c, 0x7d, 0x7c, 0x7a, 0x77, 0x76, 0x74, 0x79, 0x7d, 0x7b, 0x78, 0x7d, 0x89, 0x95, 0xa6, 0xa7, 0xa8, 0xa9, 0xa8, 0xa7, 0xa6, 0xa5, 0xa6, 0xa6, 0xa8, 0xa9, 0xab, 0xac, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xa6, 0x99, 0x89, 0x7f, 0x7e, 0x7f, 0x7e, 0x7b, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x77, 0x74, 0x72, 0x73, 0x76, 0x79, 0x78, 0x76, 0x75, 0x75, 0x76, 0x79, 0x7c, 0x7c, 0x7a, 0x78, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7d, 0x73, 0x71, 0x77, 0x78, 0x72, 0x74, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x7b, 0x80, 0x84, 0x88, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x89, 0x87, 0x83, 0x80, 0x7e, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7d, 0x80, 0x83, 0x85, 0x86, 0x85, 0x84, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x86, 0x87, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x89, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88, 0x89, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x7f, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x79, 0x74, 0x75, 0x75, 0x76, 0x76, 0x75, 0x73, 0x73, 0x72, 0x73, 0x75, 0x76, 0x77, 0x78, 0x77, 0x77, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x77, 0x78, 0x79, 0x79, 0x77, 0x76, 0x73, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x7b, 0x7c, 0x79, 0x79, 0x80, 0x8f, 0x9b, 0xa8, 0xa8, 0xa9, 0xa9, 0xa9, 0xa8, 0xa7, 0xa6, 0xa7, 0xa7, 0xa8, 0xaa, 0xac, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xa7, 0x9a, 0x8a, 0x80, 0x7f, 0x80, 0x7f, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x73, 0x72, 0x76, 0x7c, 0x83, 0x86, 0x87, 0x82, 0x84, 0x87, 0x8a, 0x8c, 0x8c, 0x8a, 0x89, 0x93, 0x93, 0x94, 0x95, 0x94, 0x93, 0x92, 0x91, 0x85, 0x79, 0x74, 0x79, 0x7a, 0x75, 0x76, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x7b, 0x7f, 0x84, 0x86, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8a, 0x87, 0x84, 0x80, 0x7d, 0x7b, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7c, 0x7d, 0x80, 0x83, 0x85, 0x85, 0x85, 0x84, 0x86, 0x86, 0x84, 0x84, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x87, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x74, 0x74, 0x75, 0x76, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x73, 0x75, 0x76, 0x78, 0x78, 0x78, 0x77, 0x77, 0x73, 0x73, 0x73, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x7a, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x7b, 0x86, 0x96, 0xa2, 0xa9, 0xa9, 0xa9, 0xa9, 0xa8, 0xa8, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xab, 0xac, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xad, 0xad, 0xad, 0xae, 0xaf, 0xaf, 0xaf, 0xb0, 0xa8, 0x9b, 0x8a, 0x81, 0x7f, 0x80, 0x7f, 0x7d, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x73, 0x72, 0x78, 0x82, 0x8d, 0x95, 0x98, 0x9c, 0x9c, 0x9a, 0x97, 0x96, 0x99, 0x9e, 0xa3, 0xa2, 0xa3, 0xa4, 0xa4, 0xa4, 0xa2, 0xa0, 0x9f, 0x8e, 0x7f, 0x76, 0x7a, 0x7d, 0x78, 0x77, 0x7d, 0x7e, 0x7c, 0x7b, 0x7a, 0x7c, 0x7f, 0x83, 0x86, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8a, 0x88, 0x85, 0x81, 0x7d, 0x7a, 0x78, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7d, 0x7f, 0x81, 0x83, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x89, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x74, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x71, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x71, 0x74, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x74, 0x73, 0x73, 0x73, 0x75, 0x77, 0x79, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7e, 0x7d, 0x7a, 0x7b, 0x80, 0x8d, 0x9c, 0xa6, 0xa9, 0xa9, 0xa8, 0xa8, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa8, 0xa9, 0xab, 0xac, 0xae, 0xaf, 0xb0, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xac, 0xad, 0xad, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xa8, 0x9b, 0x8a, 0x81, 0x7f, 0x80, 0x7f, 0x7d, 0x82, 0x82, 0x82, 0x80, 0x7f, 0x7c, 0x7a, 0x78, 0x73, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x75, 0x73, 0x72, 0x79, 0x86, 0x95, 0xa0, 0xa5, 0xad, 0xa8, 0x9e, 0x93, 0x8e, 0x94, 0xa1, 0xad, 0xa7, 0xa8, 0xaa, 0xac, 0xab, 0xaa, 0xa7, 0xa6, 0x95, 0x83, 0x77, 0x7a, 0x7e, 0x7a, 0x79, 0x7d, 0x7e, 0x7d, 0x7b, 0x7b, 0x7c, 0x80, 0x84, 0x87, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x88, 0x85, 0x82, 0x7e, 0x7a, 0x78, 0x77, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x7a, 0x7b, 0x7f, 0x80, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x87, 0x87, 0x86, 0x86, 0x85, 0x84, 0x83, 0x83, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x70, 0x71, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x72, 0x72, 0x73, 0x74, 0x74, 0x73, 0x72, 0x72, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x78, 0x75, 0x74, 0x73, 0x73, 0x75, 0x77, 0x7a, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7c, 0x7b, 0x7e, 0x87, 0x94, 0xa1, 0xa9, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xa7, 0xa8, 0xaa, 0xac, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xad, 0xae, 0xb0, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xac, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb0, 0xb1, 0xa7, 0x9a, 0x8a, 0x80, 0x7f, 0x80, 0x7f, 0x7c, 0x81, 0x80, 0x80, 0x7f, 0x7d, 0x7a, 0x78, 0x77, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x73, 0x72, 0x79, 0x87, 0x97, 0xa5, 0xac, 0xad, 0xa7, 0x9a, 0x89, 0x7f, 0x83, 0x92, 0x9f, 0xa5, 0xa7, 0xaa, 0xac, 0xad, 0xab, 0xa8, 0xa7, 0x99, 0x84, 0x75, 0x79, 0x7e, 0x7c, 0x7a, 0x7d, 0x7e, 0x7d, 0x7b, 0x7b, 0x7d, 0x81, 0x86, 0x88, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x87, 0x85, 0x82, 0x7e, 0x7b, 0x79, 0x77, 0x76, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7b, 0x7c, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x85, 0x86, 0x86, 0x87, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x70, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x72, 0x73, 0x74, 0x74, 0x74, 0x74, 0x73, 0x72, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x79, 0x76, 0x75, 0x74, 0x74, 0x75, 0x78, 0x7b, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7d, 0x7c, 0x7c, 0x83, 0x8e, 0x9a, 0xa4, 0xa9, 0xa8, 0xa7, 0xa5, 0xa4, 0xa4, 0xa4, 0xa5, 0xa6, 0xa6, 0xa6, 0xa8, 0xa9, 0xab, 0xac, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xad, 0xae, 0xaf, 0xb1, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xa6, 0x99, 0x89, 0x7f, 0x7e, 0x7f, 0x7e, 0x7b, 0x7e, 0x7e, 0x7d, 0x7d, 0x7b, 0x79, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x74, 0x72, 0x77, 0x85, 0x97, 0xa6, 0xae, 0xaa, 0xa8, 0x9f, 0x8f, 0x80, 0x7c, 0x85, 0x8e, 0xa0, 0xa3, 0xa7, 0xaa, 0xac, 0xaa, 0xa8, 0xa6, 0x9a, 0x83, 0x73, 0x76, 0x7e, 0x7d, 0x7b, 0x7d, 0x7d, 0x7c, 0x7b, 0x7b, 0x7e, 0x83, 0x87, 0x8a, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8a, 0x8a, 0x85, 0x83, 0x7f, 0x7c, 0x79, 0x77, 0x77, 0x77, 0x79, 0x78, 0x77, 0x76, 0x77, 0x79, 0x7c, 0x7e, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x83, 0x84, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x71, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x79, 0x77, 0x76, 0x75, 0x74, 0x75, 0x78, 0x7c, 0x7e, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x7b, 0x7d, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x7c, 0x7b, 0x7d, 0x85, 0x92, 0x9e, 0xa6, 0xa9, 0xa7, 0xa6, 0xa4, 0xa3, 0xa3, 0xa3, 0xa5, 0xa6, 0xa5, 0xa6, 0xa7, 0xa8, 0xaa, 0xac, 0xad, 0xae, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xae, 0xaf, 0xb1, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xab, 0xac, 0xac, 0xae, 0xaf, 0xb0, 0xb1, 0xb1, 0xa6, 0x98, 0x88, 0x7f, 0x7d, 0x7e, 0x7d, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x77, 0x75, 0x74, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x75, 0x72, 0x76, 0x84, 0x96, 0xa5, 0xad, 0xac, 0xaf, 0xac, 0x9f, 0x8d, 0x82, 0x82, 0x87, 0x9e, 0xa1, 0xa5, 0xa9, 0xab, 0xaa, 0xa8, 0xa6, 0x9b, 0x83, 0x71, 0x75, 0x7d, 0x7d, 0x7b, 0x7d, 0x7c, 0x7b, 0x7b, 0x7b, 0x7f, 0x84, 0x89, 0x8c, 0x8c, 0x8d, 0x8e, 0x8f, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x83, 0x81, 0x7e, 0x7b, 0x78, 0x77, 0x77, 0x77, 0x79, 0x77, 0x76, 0x75, 0x77, 0x7a, 0x7d, 0x80, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x82, 0x84, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x82, 0x82, 0x83, 0x84, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x72, 0x73, 0x75, 0x77, 0x78, 0x78, 0x78, 0x78, 0x7c, 0x7a, 0x78, 0x76, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x77, 0x75, 0x73, 0x74, 0x78, 0x7c, 0x7f, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x82, 0x8f, 0xa0, 0xaa, 0xac, 0xaa, 0xab, 0xaa, 0xa9, 0xa8, 0xa8, 0xaa, 0xac, 0xad, 0xa8, 0xa8, 0xa8, 0xa7, 0xa8, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb3, 0xb2, 0xb2, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xaf, 0xad, 0xab, 0xac, 0xb0, 0xb2, 0xb1, 0xaf, 0xa7, 0x99, 0x87, 0x7d, 0x7c, 0x7e, 0x7f, 0x7e, 0x80, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x75, 0x75, 0x79, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7d, 0x7c, 0x7a, 0x79, 0x79, 0x7a, 0x7c, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xac, 0xa8, 0x9f, 0x92, 0x85, 0x7c, 0x7a, 0x7b, 0x8a, 0x95, 0xa3, 0xad, 0xaf, 0xac, 0xa8, 0xa6, 0x99, 0x84, 0x74, 0x77, 0x7d, 0x7b, 0x7b, 0x7f, 0x7b, 0x7c, 0x7e, 0x81, 0x84, 0x88, 0x8b, 0x8c, 0x90, 0x90, 0x8f, 0x8f, 0x8e, 0x8d, 0x8d, 0x8d, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x87, 0x80, 0x7e, 0x7c, 0x7a, 0x78, 0x78, 0x77, 0x77, 0x75, 0x75, 0x74, 0x74, 0x76, 0x79, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x72, 0x73, 0x75, 0x77, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7b, 0x78, 0x77, 0x77, 0x78, 0x7b, 0x7c, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x75, 0x75, 0x74, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x78, 0x77, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x75, 0x74, 0x74, 0x77, 0x7b, 0x7d, 0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x7c, 0x84, 0x92, 0xa2, 0xaa, 0xaa, 0xa7, 0xaa, 0xa9, 0xa8, 0xa7, 0xa7, 0xa8, 0xaa, 0xab, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0xaa, 0xab, 0xab, 0xac, 0xad, 0xad, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb3, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xaf, 0xac, 0xab, 0xad, 0xb0, 0xb3, 0xb2, 0xb0, 0xa4, 0x97, 0x86, 0x7c, 0x7b, 0x7e, 0x7e, 0x7c, 0x7f, 0x7e, 0x7c, 0x79, 0x77, 0x76, 0x75, 0x75, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7d, 0x7c, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7d, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xab, 0xa5, 0x9a, 0x8c, 0x80, 0x7b, 0x7e, 0x82, 0x90, 0x99, 0xa5, 0xac, 0xad, 0xaa, 0xa7, 0xa6, 0x9a, 0x84, 0x75, 0x77, 0x7d, 0x7b, 0x7b, 0x7f, 0x7c, 0x7d, 0x7f, 0x82, 0x85, 0x89, 0x8b, 0x8d, 0x90, 0x90, 0x8f, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x88, 0x87, 0x86, 0x86, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x75, 0x75, 0x76, 0x79, 0x7b, 0x7d, 0x80, 0x81, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x72, 0x73, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7b, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x76, 0x7c, 0x88, 0x98, 0xa5, 0xaa, 0xa8, 0xa4, 0xa9, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa7, 0xa7, 0xac, 0xac, 0xac, 0xac, 0xab, 0xab, 0xab, 0xab, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xad, 0xac, 0xab, 0xad, 0xb1, 0xb3, 0xb2, 0xb0, 0xa2, 0x95, 0x86, 0x7d, 0x7d, 0x7f, 0x7e, 0x7c, 0x7e, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x76, 0x76, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x7a, 0x7a, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xaa, 0xa1, 0x92, 0x82, 0x79, 0x7a, 0x83, 0x8c, 0x9b, 0xa1, 0xa9, 0xac, 0xab, 0xa9, 0xa8, 0xa8, 0x9a, 0x85, 0x75, 0x77, 0x7d, 0x7b, 0x7a, 0x7e, 0x7c, 0x7e, 0x80, 0x83, 0x87, 0x8a, 0x8c, 0x8e, 0x8f, 0x8f, 0x8e, 0x8e, 0x8d, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8a, 0x88, 0x87, 0x85, 0x84, 0x83, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x79, 0x77, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x88, 0x88, 0x72, 0x73, 0x76, 0x78, 0x7b, 0x7c, 0x7d, 0x7d, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7b, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x76, 0x76, 0x75, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x77, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x76, 0x7f, 0x8e, 0x9d, 0xa7, 0xa9, 0xa6, 0xa2, 0xa8, 0xa7, 0xa7, 0xa6, 0xa6, 0xa5, 0xa5, 0xa5, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xab, 0xaa, 0xa9, 0xaa, 0xaa, 0xaa, 0xab, 0xac, 0xac, 0xad, 0xad, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xae, 0xb2, 0xb2, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xaf, 0xac, 0xab, 0xaa, 0xad, 0xb1, 0xb3, 0xb1, 0xaf, 0xa0, 0x95, 0x88, 0x81, 0x82, 0x83, 0x81, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xa9, 0x9e, 0x8d, 0x7c, 0x74, 0x79, 0x87, 0x92, 0xa6, 0xaa, 0xae, 0xae, 0xab, 0xa9, 0xa9, 0xaa, 0x9b, 0x86, 0x76, 0x78, 0x7c, 0x7a, 0x79, 0x7d, 0x7d, 0x7e, 0x81, 0x85, 0x88, 0x8b, 0x8d, 0x8e, 0x8e, 0x8e, 0x8d, 0x8d, 0x8c, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x89, 0x87, 0x85, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x7d, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7f, 0x80, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x72, 0x74, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7c, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7f, 0x7e, 0x7c, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x78, 0x83, 0x93, 0xa1, 0xa8, 0xa9, 0xa5, 0xa2, 0xa7, 0xa7, 0xa7, 0xa7, 0xa7, 0xa6, 0xa6, 0xa5, 0xa8, 0xa9, 0xaa, 0xab, 0xab, 0xaa, 0xa9, 0xa9, 0xab, 0xab, 0xac, 0xac, 0xad, 0xae, 0xae, 0xae, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xaf, 0xb2, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xab, 0xaa, 0xaa, 0xad, 0xb0, 0xb1, 0xae, 0xab, 0x9f, 0x96, 0x8b, 0x86, 0x87, 0x88, 0x84, 0x80, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xa9, 0x9f, 0x8d, 0x7c, 0x74, 0x79, 0x86, 0x92, 0xaa, 0xad, 0xb0, 0xaf, 0xac, 0xa9, 0xa9, 0xaa, 0x9d, 0x87, 0x76, 0x78, 0x7c, 0x79, 0x78, 0x7c, 0x7c, 0x7e, 0x82, 0x86, 0x8a, 0x8c, 0x8d, 0x8d, 0x8d, 0x8d, 0x8c, 0x8c, 0x8b, 0x8a, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x7d, 0x7c, 0x79, 0x78, 0x77, 0x78, 0x7a, 0x7b, 0x7e, 0x7f, 0x81, 0x84, 0x85, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x87, 0x87, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x88, 0x98, 0xa4, 0xa8, 0xa8, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xa9, 0xa9, 0xa9, 0xa8, 0xa7, 0xa8, 0xab, 0xad, 0xae, 0xae, 0xad, 0xac, 0xae, 0xae, 0xae, 0xaf, 0xb0, 0xb0, 0xb1, 0xb1, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xab, 0xa9, 0xa9, 0xac, 0xae, 0xae, 0xaa, 0xa7, 0x9b, 0x93, 0x8a, 0x87, 0x89, 0x89, 0x85, 0x80, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xab, 0xa2, 0x93, 0x83, 0x79, 0x79, 0x82, 0x8a, 0xa4, 0xa9, 0xad, 0xad, 0xa9, 0xa5, 0xa4, 0xa4, 0x9e, 0x87, 0x77, 0x78, 0x7c, 0x79, 0x77, 0x7b, 0x7b, 0x7e, 0x82, 0x86, 0x8a, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x89, 0x85, 0x84, 0x83, 0x82, 0x80, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7c, 0x7a, 0x78, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7e, 0x7f, 0x81, 0x83, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7a, 0x7c, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x82, 0x8d, 0x9c, 0xa5, 0xa7, 0xa7, 0xa8, 0xaa, 0xa6, 0xa7, 0xa9, 0xab, 0xac, 0xad, 0xac, 0xac, 0xa9, 0xab, 0xaf, 0xb2, 0xb4, 0xb4, 0xb4, 0xb3, 0xb0, 0xb1, 0xb1, 0xb2, 0xb2, 0xb3, 0xb4, 0xb4, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xab, 0xa9, 0xa9, 0xab, 0xad, 0xab, 0xa6, 0xa2, 0x95, 0x8e, 0x87, 0x85, 0x87, 0x87, 0x81, 0x7c, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xad, 0xa7, 0x9b, 0x8c, 0x7f, 0x7a, 0x7c, 0x80, 0x98, 0x9e, 0xa4, 0xa6, 0xa3, 0x9e, 0x9b, 0x9b, 0x9e, 0x88, 0x77, 0x78, 0x7c, 0x78, 0x77, 0x7a, 0x7a, 0x7d, 0x81, 0x86, 0x8a, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8b, 0x8a, 0x89, 0x89, 0x88, 0x88, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7f, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x88, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x7d, 0x7b, 0x79, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7e, 0x7d, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x79, 0x79, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x85, 0x90, 0x9e, 0xa5, 0xa6, 0xa6, 0xa9, 0xad, 0xa6, 0xa8, 0xaa, 0xad, 0xae, 0xaf, 0xae, 0xae, 0xac, 0xae, 0xb3, 0xb7, 0xb9, 0xba, 0xb9, 0xb9, 0xb2, 0xb3, 0xb3, 0xb4, 0xb4, 0xb5, 0xb5, 0xb6, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xad, 0xab, 0xa9, 0xa9, 0xaa, 0xab, 0xa9, 0xa4, 0x9f, 0x8f, 0x89, 0x83, 0x82, 0x84, 0x83, 0x7e, 0x77, 0x78, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x79, 0x76, 0x75, 0x75, 0x75, 0x75, 0x76, 0x78, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xaf, 0xab, 0xa1, 0x92, 0x84, 0x7b, 0x78, 0x78, 0x8e, 0x95, 0x9d, 0xa1, 0x9e, 0x99, 0x95, 0x93, 0x9f, 0x88, 0x78, 0x78, 0x7c, 0x78, 0x76, 0x7a, 0x79, 0x7c, 0x81, 0x86, 0x89, 0x8b, 0x8b, 0x8a, 0x8b, 0x8b, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x76, 0x75, 0x76, 0x76, 0x77, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x79, 0x7b, 0x7d, 0x7e, 0x81, 0x83, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x87, 0x87, 0x88, 0x89, 0x89, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x80, 0x80, 0x80, 0x83, 0x83, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x74, 0x75, 0x75, 0x75, 0x75, 0x73, 0x72, 0x71, 0x74, 0x75, 0x77, 0x78, 0x78, 0x78, 0x76, 0x76, 0x7b, 0x7c, 0x7d, 0x7a, 0x76, 0x75, 0x77, 0x7a, 0x7a, 0x77, 0x75, 0x76, 0x79, 0x7a, 0x77, 0x75, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x76, 0x77, 0x79, 0x79, 0x79, 0x79, 0x78, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x8d, 0x95, 0xa0, 0xa7, 0xa9, 0xa9, 0xa9, 0xaa, 0xa4, 0xa4, 0xa5, 0xa7, 0xa9, 0xac, 0xaf, 0xb1, 0xaa, 0xab, 0xad, 0xaf, 0xb1, 0xb3, 0xb4, 0xb5, 0xbb, 0xbb, 0xbb, 0xba, 0xb9, 0xb6, 0xb4, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xad, 0xac, 0xab, 0xac, 0xac, 0xa8, 0xa0, 0x9a, 0x91, 0x8e, 0x8a, 0x84, 0x7f, 0x7b, 0x78, 0x77, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x79, 0x7c, 0x7e, 0x7d, 0x7a, 0x78, 0x7a, 0x7c, 0x77, 0x73, 0x6f, 0x6f, 0x74, 0x79, 0x7c, 0x7c, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa, 0xa6, 0xaa, 0xa9, 0x9e, 0x8c, 0x7b, 0x71, 0x6e, 0x71, 0x7a, 0x7e, 0x7e, 0x88, 0x9c, 0xa6, 0xa5, 0x9c, 0x8d, 0x7c, 0x74, 0x77, 0x7b, 0x7a, 0x76, 0x7b, 0x80, 0x87, 0x8a, 0x8a, 0x89, 0x8a, 0x8c, 0x89, 0x8a, 0x8c, 0x8c, 0x8a, 0x85, 0x7f, 0x7c, 0x7d, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7e, 0x80, 0x83, 0x86, 0x88, 0x87, 0x85, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x75, 0x75, 0x75, 0x75, 0x75, 0x73, 0x72, 0x71, 0x74, 0x75, 0x76, 0x78, 0x78, 0x77, 0x76, 0x76, 0x7b, 0x7c, 0x7d, 0x7a, 0x77, 0x75, 0x78, 0x7b, 0x7b, 0x78, 0x76, 0x77, 0x7a, 0x7b, 0x79, 0x76, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x75, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x92, 0x9b, 0xa5, 0xac, 0xac, 0xaa, 0xa8, 0xa7, 0xa5, 0xa5, 0xa6, 0xa7, 0xa8, 0xaa, 0xad, 0xae, 0xaf, 0xaf, 0xaf, 0xb0, 0xb0, 0xb0, 0xb0, 0xb0, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb6, 0xb5, 0xb4, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb3, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xac, 0xab, 0xab, 0xac, 0xab, 0xa7, 0x9f, 0x98, 0x8e, 0x8c, 0x87, 0x83, 0x7e, 0x7b, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x78, 0x77, 0x77, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7f, 0x81, 0x7f, 0x7b, 0x79, 0x7a, 0x7c, 0x76, 0x71, 0x6d, 0x6e, 0x72, 0x77, 0x79, 0x7a, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa, 0xab, 0xad, 0xab, 0x9f, 0x8e, 0x7e, 0x76, 0x75, 0x72, 0x79, 0x7c, 0x7b, 0x87, 0x9c, 0xa8, 0xa7, 0x9d, 0x8d, 0x7c, 0x74, 0x77, 0x7c, 0x7a, 0x76, 0x7b, 0x80, 0x87, 0x8b, 0x8b, 0x8a, 0x8b, 0x8c, 0x8a, 0x8a, 0x89, 0x88, 0x85, 0x81, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7e, 0x80, 0x83, 0x86, 0x87, 0x86, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x75, 0x75, 0x76, 0x76, 0x75, 0x74, 0x72, 0x71, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x76, 0x7b, 0x7c, 0x7d, 0x7a, 0x77, 0x76, 0x78, 0x7b, 0x7c, 0x79, 0x77, 0x78, 0x7b, 0x7c, 0x7a, 0x78, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x76, 0x76, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x78, 0x78, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x95, 0x9e, 0xaa, 0xb1, 0xb1, 0xad, 0xa9, 0xa7, 0xa8, 0xa7, 0xa6, 0xa6, 0xa6, 0xa7, 0xa8, 0xa9, 0xb2, 0xb2, 0xb1, 0xb0, 0xae, 0xad, 0xad, 0xac, 0xa9, 0xab, 0xad, 0xb0, 0xb3, 0xb4, 0xb5, 0xb5, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xae, 0xac, 0xab, 0xaa, 0xaa, 0xa9, 0xa4, 0x9b, 0x95, 0x89, 0x87, 0x84, 0x80, 0x7d, 0x7a, 0x79, 0x78, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x81, 0x82, 0x83, 0x80, 0x7b, 0x78, 0x79, 0x7a, 0x75, 0x71, 0x6d, 0x6d, 0x72, 0x76, 0x78, 0x77, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa, 0xaf, 0xb0, 0xad, 0xa0, 0x8f, 0x81, 0x7c, 0x7c, 0x74, 0x78, 0x78, 0x78, 0x86, 0x9e, 0xab, 0xab, 0x9e, 0x8e, 0x7c, 0x74, 0x77, 0x7c, 0x7b, 0x77, 0x7c, 0x81, 0x88, 0x8b, 0x8b, 0x8b, 0x8c, 0x8d, 0x8b, 0x89, 0x85, 0x81, 0x7d, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x7a, 0x79, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7e, 0x80, 0x82, 0x84, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x89, 0x89, 0x88, 0x87, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x75, 0x76, 0x76, 0x76, 0x75, 0x74, 0x73, 0x72, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x7a, 0x7b, 0x7c, 0x7a, 0x77, 0x76, 0x79, 0x7c, 0x7d, 0x7a, 0x78, 0x7a, 0x7d, 0x7e, 0x7c, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7a, 0x7a, 0x79, 0x77, 0x77, 0x76, 0x75, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x91, 0x9a, 0xa7, 0xb0, 0xb2, 0xaf, 0xad, 0xac, 0xaa, 0xa9, 0xa7, 0xa5, 0xa4, 0xa4, 0xa4, 0xa4, 0xae, 0xae, 0xad, 0xad, 0xad, 0xad, 0xad, 0xad, 0xa9, 0xab, 0xad, 0xaf, 0xb1, 0xb2, 0xb3, 0xb3, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xad, 0xac, 0xab, 0xa9, 0xa8, 0xa7, 0xa1, 0x97, 0x90, 0x85, 0x83, 0x81, 0x7e, 0x7b, 0x7a, 0x79, 0x79, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x74, 0x74, 0x74, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x82, 0x83, 0x82, 0x7e, 0x78, 0x74, 0x75, 0x76, 0x78, 0x74, 0x70, 0x71, 0x74, 0x78, 0x79, 0x78, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa, 0xb0, 0xb0, 0xac, 0x9f, 0x8e, 0x82, 0x7e, 0x7f, 0x76, 0x78, 0x76, 0x75, 0x86, 0xa0, 0xae, 0xad, 0x9f, 0x8f, 0x7c, 0x74, 0x77, 0x7c, 0x7c, 0x79, 0x7d, 0x83, 0x89, 0x8c, 0x8b, 0x8a, 0x8b, 0x8c, 0x8a, 0x86, 0x80, 0x7a, 0x76, 0x76, 0x77, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7f, 0x80, 0x82, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x8b, 0x8a, 0x8a, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x75, 0x76, 0x76, 0x76, 0x76, 0x74, 0x73, 0x72, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x79, 0x76, 0x75, 0x78, 0x7b, 0x7d, 0x7a, 0x79, 0x7a, 0x7d, 0x7f, 0x7d, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x85, 0x8f, 0x9c, 0xa7, 0xac, 0xae, 0xaf, 0xb1, 0xab, 0xa9, 0xa7, 0xa4, 0xa2, 0xa0, 0xa0, 0x9f, 0xa4, 0xa5, 0xa7, 0xa9, 0xab, 0xad, 0xaf, 0xaf, 0xaf, 0xaf, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb2, 0xb0, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xad, 0xad, 0xac, 0xaa, 0xa8, 0xa7, 0xa4, 0x9d, 0x93, 0x8c, 0x82, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x81, 0x82, 0x80, 0x7a, 0x73, 0x70, 0x70, 0x72, 0x7c, 0x79, 0x75, 0x76, 0x79, 0x7c, 0x7c, 0x7a, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa, 0xad, 0xae, 0xaa, 0x9d, 0x8c, 0x80, 0x7b, 0x7c, 0x77, 0x78, 0x75, 0x76, 0x89, 0xa4, 0xb0, 0xad, 0xa1, 0x90, 0x7d, 0x74, 0x77, 0x7d, 0x7d, 0x7a, 0x7f, 0x84, 0x8a, 0x8c, 0x8b, 0x89, 0x89, 0x8a, 0x86, 0x82, 0x7c, 0x76, 0x73, 0x74, 0x76, 0x78, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7d, 0x7e, 0x81, 0x81, 0x82, 0x83, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73, 0x72, 0x74, 0x73, 0x73, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x78, 0x79, 0x77, 0x74, 0x74, 0x77, 0x7a, 0x7c, 0x7a, 0x78, 0x7a, 0x7e, 0x7f, 0x7e, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x72, 0x73, 0x74, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x79, 0x79, 0x77, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x7b, 0x83, 0x8e, 0x98, 0x9f, 0xa5, 0xac, 0xb0, 0xab, 0xa9, 0xa6, 0xa3, 0xa0, 0x9e, 0x9d, 0x9c, 0x9d, 0x9e, 0xa1, 0xa4, 0xa7, 0xaa, 0xac, 0xae, 0xb0, 0xb0, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xaf, 0xae, 0xad, 0xad, 0xad, 0xac, 0xaa, 0xa7, 0xa5, 0xa1, 0x99, 0x8f, 0x87, 0x81, 0x7f, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x82, 0x82, 0x7f, 0x79, 0x72, 0x6f, 0x6f, 0x72, 0x7f, 0x7c, 0x79, 0x79, 0x7c, 0x7e, 0x7d, 0x7b, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa, 0xaa, 0xac, 0xaa, 0x9f, 0x8e, 0x7f, 0x78, 0x77, 0x78, 0x79, 0x77, 0x7a, 0x8f, 0xa9, 0xb1, 0xaa, 0xa2, 0x91, 0x7d, 0x74, 0x77, 0x7d, 0x7e, 0x7c, 0x81, 0x86, 0x8b, 0x8c, 0x89, 0x86, 0x85, 0x86, 0x7f, 0x7c, 0x79, 0x75, 0x74, 0x76, 0x78, 0x7a, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7d, 0x7f, 0x81, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x75, 0x76, 0x74, 0x76, 0x77, 0x75, 0x73, 0x72, 0x75, 0x79, 0x7b, 0x79, 0x78, 0x7a, 0x7d, 0x7f, 0x7e, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x7c, 0x83, 0x8a, 0x90, 0x98, 0xa2, 0xa9, 0xaa, 0xa8, 0xa5, 0xa2, 0x9e, 0x9c, 0x9b, 0x9a, 0x9c, 0x9d, 0x9e, 0xa0, 0xa2, 0xa4, 0xa5, 0xa6, 0xa9, 0xaa, 0xac, 0xae, 0xb0, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xb0, 0xaf, 0xae, 0xae, 0xad, 0xad, 0xac, 0xac, 0xa9, 0xa6, 0xa3, 0x9f, 0x97, 0x8c, 0x84, 0x81, 0x80, 0x7d, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x85, 0x84, 0x81, 0x7b, 0x74, 0x71, 0x73, 0x75, 0x7e, 0x7b, 0x78, 0x79, 0x7b, 0x7c, 0x7b, 0x79, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa, 0xaa, 0xae, 0xae, 0xa5, 0x93, 0x81, 0x77, 0x74, 0x79, 0x7a, 0x79, 0x7f, 0x95, 0xad, 0xb1, 0xa6, 0xa3, 0x92, 0x7d, 0x74, 0x77, 0x7d, 0x7f, 0x7d, 0x83, 0x87, 0x8b, 0x8b, 0x87, 0x83, 0x81, 0x81, 0x78, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7d, 0x7f, 0x82, 0x84, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x73, 0x72, 0x71, 0x71, 0x73, 0x75, 0x76, 0x73, 0x75, 0x76, 0x74, 0x72, 0x72, 0x75, 0x78, 0x7b, 0x79, 0x77, 0x79, 0x7d, 0x7f, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x71, 0x72, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x7a, 0x7e, 0x81, 0x86, 0x8e, 0x99, 0xa1, 0xaa, 0xa8, 0xa5, 0xa1, 0x9e, 0x9c, 0x9a, 0x9a, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0x9e, 0xa1, 0xa3, 0xa7, 0xab, 0xaf, 0xb1, 0xb3, 0xb4, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb0, 0xaf, 0xaf, 0xae, 0xae, 0xad, 0xad, 0xac, 0xac, 0xa9, 0xa6, 0xa3, 0x9e, 0x95, 0x8a, 0x82, 0x81, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x75, 0x75, 0x75, 0x77, 0x78, 0x79, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x88, 0x87, 0x84, 0x7e, 0x77, 0x74, 0x76, 0x79, 0x7c, 0x79, 0x77, 0x77, 0x79, 0x7a, 0x78, 0x76, 0x73, 0x77, 0x76, 0x75, 0x84, 0x9c, 0xaa, 0xaa, 0xaa, 0xb0, 0xb2, 0xa9, 0x97, 0x84, 0x77, 0x72, 0x79, 0x7b, 0x7b, 0x82, 0x99, 0xaf, 0xb0, 0xa3, 0xa3, 0x92, 0x7e, 0x74, 0x77, 0x7d, 0x7f, 0x7d, 0x84, 0x88, 0x8c, 0x8b, 0x86, 0x81, 0x7f, 0x7e, 0x73, 0x74, 0x76, 0x78, 0x7b, 0x7c, 0x7d, 0x7d, 0x74, 0x74, 0x75, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7e, 0x81, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x83, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x77, 0x78, 0x78, 0x78, 0x77, 0x75, 0x74, 0x72, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x79, 0x77, 0x75, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x74, 0x72, 0x73, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x72, 0x74, 0x78, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x76, 0x79, 0x7c, 0x7b, 0x79, 0x78, 0x7b, 0x7d, 0x98, 0x97, 0x96, 0x98, 0x9b, 0x9b, 0x97, 0x94, 0x99, 0x99, 0x9a, 0x9b, 0x9c, 0x9e, 0x9e, 0x9f, 0xa2, 0xa3, 0xa4, 0xa5, 0xa7, 0xa8, 0xa9, 0xaa, 0xad, 0xaf, 0xb0, 0xb1, 0xb2, 0xb1, 0xaf, 0xae, 0xaf, 0xb0, 0xb0, 0xaf, 0xae, 0xad, 0xab, 0xaa, 0xa9, 0xa7, 0xa4, 0x9f, 0x99, 0x92, 0x8b, 0x88, 0x85, 0x82, 0x7d, 0x79, 0x77, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x81, 0x81, 0x80, 0x7f, 0x7c, 0x7a, 0x78, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xaa, 0xad, 0xaf, 0xaa, 0x9e, 0x91, 0x87, 0x82, 0x8d, 0x8b, 0x8c, 0x91, 0x9c, 0xa6, 0xad, 0xb0, 0xa4, 0x92, 0x7c, 0x72, 0x76, 0x7d, 0x7f, 0x7e, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7c, 0x7b, 0x7b, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x74, 0x75, 0x77, 0x79, 0x7a, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x82, 0x84, 0x86, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x88, 0x88, 0x87, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x74, 0x75, 0x75, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x75, 0x75, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x76, 0x76, 0x74, 0x74, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x74, 0x74, 0x75, 0x75, 0x76, 0x77, 0x77, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x73, 0x75, 0x78, 0x7b, 0x7c, 0x7c, 0x7a, 0x79, 0x75, 0x78, 0x7a, 0x7a, 0x78, 0x77, 0x79, 0x7c, 0x89, 0x89, 0x8a, 0x90, 0x96, 0x99, 0x98, 0x96, 0x98, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9d, 0xa0, 0xa0, 0xa1, 0xa2, 0xa4, 0xa5, 0xa6, 0xa6, 0xab, 0xac, 0xae, 0xb0, 0xb1, 0xb1, 0xb0, 0xb0, 0xae, 0xaf, 0xaf, 0xae, 0xad, 0xac, 0xaa, 0xa9, 0xa9, 0xa7, 0xa4, 0x9f, 0x98, 0x91, 0x8b, 0x88, 0x85, 0x82, 0x7d, 0x79, 0x77, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x77, 0x76, 0x75, 0x74, 0x74, 0x75, 0x76, 0x76, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x87, 0x85, 0x81, 0x7e, 0x7c, 0x7b, 0x7c, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xab, 0xae, 0xaf, 0xa9, 0x9e, 0x90, 0x87, 0x82, 0x8b, 0x89, 0x89, 0x8f, 0x9a, 0xa4, 0xab, 0xae, 0xa5, 0x93, 0x7e, 0x74, 0x77, 0x7d, 0x7f, 0x7e, 0x82, 0x81, 0x7f, 0x7d, 0x7b, 0x7b, 0x7a, 0x7a, 0x75, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x85, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x85, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x72, 0x72, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x77, 0x77, 0x77, 0x73, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x78, 0x78, 0x74, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x74, 0x77, 0x79, 0x78, 0x76, 0x75, 0x77, 0x7a, 0x78, 0x79, 0x7d, 0x85, 0x8f, 0x95, 0x98, 0x97, 0x96, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9d, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa1, 0xa5, 0xa6, 0xa9, 0xab, 0xad, 0xae, 0xaf, 0xaf, 0xae, 0xae, 0xae, 0xae, 0xad, 0xac, 0xaa, 0xa9, 0xa9, 0xa7, 0xa3, 0x9d, 0x97, 0x90, 0x8b, 0x88, 0x83, 0x80, 0x7d, 0x79, 0x77, 0x78, 0x79, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x8b, 0x86, 0x7e, 0x78, 0x76, 0x78, 0x7d, 0x81, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xad, 0xaf, 0xaf, 0xa9, 0x9d, 0x91, 0x88, 0x84, 0x89, 0x88, 0x88, 0x8e, 0x99, 0xa3, 0xa9, 0xac, 0xa6, 0x95, 0x7f, 0x75, 0x78, 0x7e, 0x7f, 0x7d, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x79, 0x79, 0x79, 0x76, 0x76, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7d, 0x80, 0x83, 0x85, 0x85, 0x86, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x87, 0x87, 0x87, 0x86, 0x84, 0x83, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x72, 0x73, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x75, 0x78, 0x78, 0x78, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x73, 0x73, 0x74, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x75, 0x76, 0x78, 0x79, 0x7a, 0x79, 0x79, 0x78, 0x74, 0x76, 0x78, 0x77, 0x75, 0x74, 0x76, 0x78, 0x72, 0x73, 0x77, 0x7f, 0x8a, 0x92, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x9b, 0x9b, 0x9c, 0x9c, 0x9c, 0x9d, 0x9f, 0xa2, 0xa5, 0xa7, 0xa8, 0xa9, 0xac, 0xad, 0xae, 0xae, 0xae, 0xad, 0xac, 0xab, 0xa8, 0xa5, 0xa1, 0x9b, 0x95, 0x8e, 0x89, 0x87, 0x81, 0x7f, 0x7c, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x89, 0x81, 0x75, 0x6c, 0x6a, 0x6f, 0x78, 0x7e, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xae, 0xb0, 0xb0, 0xa9, 0x9e, 0x93, 0x8b, 0x88, 0x8d, 0x8c, 0x8c, 0x92, 0x9c, 0xa5, 0xaa, 0xab, 0xa6, 0x95, 0x80, 0x76, 0x78, 0x7e, 0x7e, 0x7c, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x78, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x77, 0x79, 0x7d, 0x81, 0x84, 0x86, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x87, 0x87, 0x86, 0x84, 0x83, 0x83, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x87, 0x88, 0x88, 0x89, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x75, 0x76, 0x77, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x74, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x74, 0x74, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x75, 0x77, 0x79, 0x78, 0x75, 0x74, 0x76, 0x78, 0x77, 0x77, 0x79, 0x80, 0x89, 0x8f, 0x92, 0x92, 0x94, 0x94, 0x94, 0x95, 0x96, 0x96, 0x96, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x94, 0x94, 0x96, 0x98, 0x9a, 0x9c, 0x9e, 0xa0, 0xa8, 0xa9, 0xaa, 0xac, 0xad, 0xad, 0xac, 0xac, 0xa6, 0xa3, 0x9e, 0x98, 0x92, 0x8c, 0x87, 0x85, 0x7f, 0x7d, 0x7b, 0x79, 0x78, 0x79, 0x7a, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x81, 0x77, 0x69, 0x5e, 0x5c, 0x63, 0x6e, 0x77, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xae, 0xb0, 0xaf, 0xa9, 0xa0, 0x97, 0x92, 0x90, 0x96, 0x94, 0x94, 0x99, 0xa1, 0xa8, 0xab, 0xab, 0xa4, 0x93, 0x7f, 0x75, 0x78, 0x7d, 0x7d, 0x7a, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x76, 0x75, 0x74, 0x77, 0x7c, 0x80, 0x83, 0x85, 0x85, 0x84, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x77, 0x79, 0x7b, 0x7a, 0x77, 0x75, 0x77, 0x79, 0x7e, 0x7d, 0x7d, 0x82, 0x89, 0x8f, 0x91, 0x91, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x90, 0x90, 0x90, 0x91, 0x92, 0x94, 0x96, 0x97, 0x9d, 0x9f, 0xa2, 0xa4, 0xa7, 0xa8, 0xa9, 0xa9, 0xa4, 0xa1, 0x9b, 0x95, 0x8e, 0x89, 0x85, 0x83, 0x7d, 0x7c, 0x7b, 0x79, 0x79, 0x79, 0x7a, 0x7b, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x74, 0x76, 0x76, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x71, 0x63, 0x57, 0x55, 0x5d, 0x68, 0x71, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xad, 0xae, 0xae, 0xaa, 0xa2, 0x9c, 0x9a, 0x9a, 0xa0, 0x9e, 0x9c, 0x9f, 0xa4, 0xa8, 0xa9, 0xa8, 0x9f, 0x8f, 0x7b, 0x73, 0x76, 0x7b, 0x7b, 0x79, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x77, 0x7c, 0x80, 0x83, 0x83, 0x83, 0x82, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x88, 0x87, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x74, 0x75, 0x76, 0x78, 0x78, 0x78, 0x77, 0x77, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x78, 0x78, 0x77, 0x76, 0x76, 0x75, 0x74, 0x74, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x79, 0x7c, 0x7d, 0x7c, 0x79, 0x77, 0x79, 0x7b, 0x80, 0x7e, 0x7e, 0x83, 0x8a, 0x90, 0x92, 0x93, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x92, 0x91, 0x90, 0x8f, 0x8f, 0x90, 0x91, 0x92, 0x90, 0x92, 0x96, 0x9a, 0x9e, 0xa1, 0xa2, 0xa3, 0xa2, 0x9e, 0x98, 0x91, 0x8b, 0x86, 0x82, 0x81, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7a, 0x7b, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x75, 0x74, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x7b, 0x72, 0x64, 0x59, 0x57, 0x5e, 0x69, 0x71, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xaa, 0xac, 0xad, 0xaa, 0xa5, 0xa2, 0xa2, 0xa4, 0xa6, 0xa3, 0xa1, 0xa1, 0xa4, 0xa6, 0xa4, 0xa2, 0x9a, 0x8a, 0x78, 0x70, 0x74, 0x7a, 0x7a, 0x77, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x76, 0x77, 0x79, 0x7b, 0x7a, 0x78, 0x76, 0x74, 0x77, 0x7a, 0x7f, 0x83, 0x85, 0x85, 0x83, 0x81, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x84, 0x83, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x89, 0x89, 0x88, 0x87, 0x86, 0x84, 0x84, 0x83, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x72, 0x73, 0x74, 0x75, 0x75, 0x74, 0x74, 0x73, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x75, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x74, 0x73, 0x73, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x7a, 0x79, 0x78, 0x77, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7d, 0x7f, 0x7d, 0x7a, 0x78, 0x7a, 0x7c, 0x7e, 0x7c, 0x7d, 0x82, 0x8a, 0x91, 0x94, 0x95, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x96, 0x95, 0x94, 0x93, 0x93, 0x92, 0x95, 0x94, 0x92, 0x90, 0x8f, 0x8f, 0x90, 0x90, 0x86, 0x89, 0x8d, 0x92, 0x97, 0x9a, 0x9c, 0x9e, 0xa0, 0x9d, 0x97, 0x8f, 0x89, 0x84, 0x81, 0x7f, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x79, 0x79, 0x78, 0x77, 0x75, 0x74, 0x73, 0x73, 0x74, 0x73, 0x73, 0x73, 0x74, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x7e, 0x75, 0x68, 0x5e, 0x5c, 0x62, 0x6c, 0x74, 0x79, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x75, 0x78, 0x76, 0x74, 0x82, 0x9b, 0xa9, 0xaa, 0xa9, 0xab, 0xac, 0xab, 0xa7, 0xa5, 0xa7, 0xa9, 0xa9, 0xa6, 0xa2, 0xa1, 0xa3, 0xa3, 0xa0, 0x9d, 0x96, 0x87, 0x75, 0x6f, 0x73, 0x79, 0x79, 0x76, 0x7a, 0x79, 0x78, 0x76, 0x76, 0x76, 0x77, 0x77, 0x79, 0x78, 0x77, 0x75, 0x75, 0x76, 0x77, 0x78, 0x76, 0x77, 0x7a, 0x7b, 0x7b, 0x79, 0x76, 0x74, 0x7a, 0x7d, 0x82, 0x86, 0x87, 0x86, 0x84, 0x82, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x83, 0x83, 0x85, 0x86, 0x88, 0x86, 0x86, 0x87, 0x87, 0x88, 0x88, 0x89, 0x89, 0x8b, 0x8a, 0x89, 0x87, 0x85, 0x84, 0x82, 0x82, 0x81, 0x82, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x79, 0x78, 0x77, 0x77, 0x75, 0x74, 0x74, 0x73, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x79, 0x76, 0x74, 0x75, 0x74, 0x73, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x77, 0x77, 0x78, 0x79, 0x7c, 0x7b, 0x79, 0x78, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7c, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x75, 0x7c, 0x7b, 0x78, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x80, 0x85, 0x8b, 0x91, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x93, 0x91, 0x8d, 0x89, 0x85, 0x81, 0x7e, 0x7d, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x75, 0x73, 0x72, 0x72, 0x73, 0x74, 0x76, 0x76, 0x76, 0x75, 0x75, 0x78, 0x75, 0x70, 0x6c, 0x6c, 0x70, 0x74, 0x78, 0x75, 0x72, 0x6e, 0x6b, 0x6c, 0x71, 0x78, 0x7c, 0x77, 0x77, 0x79, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x76, 0x74, 0x74, 0x78, 0x83, 0x93, 0xa2, 0xac, 0xaa, 0xa8, 0xa6, 0xa3, 0x9f, 0x9c, 0x9a, 0x98, 0x97, 0x96, 0x94, 0x8d, 0x86, 0x82, 0x82, 0x84, 0x78, 0x77, 0x75, 0x73, 0x74, 0x76, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7b, 0x7c, 0x81, 0x7e, 0x7b, 0x78, 0x77, 0x78, 0x7b, 0x7c, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x80, 0x83, 0x85, 0x87, 0x88, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x84, 0x85, 0x86, 0x88, 0x89, 0x88, 0x88, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x7a, 0x7b, 0x7c, 0x7d, 0x7c, 0x79, 0x77, 0x75, 0x75, 0x75, 0x74, 0x74, 0x75, 0x76, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x78, 0x79, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7d, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x79, 0x7a, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7d, 0x7b, 0x79, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x7c, 0x7d, 0x7e, 0x82, 0x86, 0x8c, 0x91, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x92, 0x8f, 0x8c, 0x87, 0x83, 0x80, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x77, 0x75, 0x73, 0x72, 0x72, 0x73, 0x74, 0x75, 0x76, 0x76, 0x75, 0x75, 0x77, 0x74, 0x70, 0x6d, 0x6e, 0x71, 0x76, 0x79, 0x78, 0x75, 0x73, 0x71, 0x72, 0x75, 0x79, 0x7c, 0x76, 0x77, 0x78, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x75, 0x74, 0x77, 0x7e, 0x88, 0x92, 0x99, 0x91, 0x90, 0x8e, 0x8b, 0x88, 0x86, 0x84, 0x83, 0x7c, 0x7c, 0x7a, 0x76, 0x72, 0x70, 0x71, 0x72, 0x76, 0x74, 0x72, 0x70, 0x71, 0x75, 0x7a, 0x7e, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x81, 0x7f, 0x7c, 0x79, 0x78, 0x79, 0x7b, 0x7d, 0x7b, 0x7a, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x80, 0x82, 0x84, 0x86, 0x87, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x87, 0x88, 0x88, 0x87, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7c, 0x7c, 0x7b, 0x79, 0x77, 0x76, 0x75, 0x75, 0x75, 0x76, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x78, 0x78, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7e, 0x7d, 0x7b, 0x79, 0x79, 0x7a, 0x7b, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x82, 0x7f, 0x7f, 0x80, 0x83, 0x88, 0x8d, 0x92, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8d, 0x89, 0x85, 0x81, 0x7d, 0x7c, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x77, 0x78, 0x78, 0x78, 0x77, 0x75, 0x73, 0x72, 0x71, 0x72, 0x73, 0x75, 0x75, 0x75, 0x75, 0x74, 0x76, 0x74, 0x71, 0x6f, 0x70, 0x74, 0x78, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x79, 0x75, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x77, 0x76, 0x75, 0x75, 0x78, 0x7b, 0x7f, 0x82, 0x7b, 0x7b, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x73, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x73, 0x73, 0x71, 0x73, 0x75, 0x75, 0x75, 0x78, 0x7d, 0x82, 0x84, 0x83, 0x82, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x80, 0x7c, 0x7a, 0x79, 0x7a, 0x7d, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x81, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x88, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x75, 0x77, 0x79, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x75, 0x75, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x80, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x84, 0x85, 0x81, 0x81, 0x82, 0x85, 0x89, 0x8e, 0x92, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x8d, 0x8b, 0x86, 0x82, 0x7e, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x78, 0x78, 0x77, 0x75, 0x74, 0x73, 0x70, 0x71, 0x72, 0x74, 0x75, 0x75, 0x75, 0x74, 0x75, 0x73, 0x72, 0x71, 0x73, 0x76, 0x79, 0x7c, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x78, 0x76, 0x74, 0x74, 0x74, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x75, 0x75, 0x76, 0x76, 0x76, 0x75, 0x75, 0x78, 0x78, 0x77, 0x77, 0x76, 0x75, 0x75, 0x75, 0x7b, 0x79, 0x77, 0x78, 0x79, 0x7a, 0x79, 0x78, 0x6d, 0x77, 0x83, 0x88, 0x87, 0x83, 0x82, 0x83, 0x85, 0x84, 0x83, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x80, 0x7d, 0x7a, 0x7a, 0x7b, 0x7e, 0x80, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x83, 0x83, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x75, 0x75, 0x75, 0x76, 0x76, 0x77, 0x77, 0x77, 0x73, 0x75, 0x78, 0x7b, 0x7c, 0x7c, 0x7b, 0x7a, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x78, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x75, 0x76, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x82, 0x83, 0x84, 0x85, 0x86, 0x83, 0x83, 0x84, 0x86, 0x89, 0x8e, 0x92, 0x95, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x8c, 0x89, 0x84, 0x7f, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x77, 0x77, 0x77, 0x77, 0x76, 0x74, 0x73, 0x6e, 0x70, 0x71, 0x73, 0x74, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x74, 0x76, 0x77, 0x78, 0x78, 0x75, 0x72, 0x70, 0x73, 0x74, 0x75, 0x76, 0x77, 0x76, 0x76, 0x75, 0x72, 0x73, 0x75, 0x77, 0x77, 0x77, 0x75, 0x74, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x79, 0x74, 0x71, 0x6e, 0x70, 0x74, 0x75, 0x72, 0x6e, 0x6d, 0x7f, 0x94, 0x9e, 0x9a, 0x8e, 0x85, 0x81, 0x83, 0x82, 0x81, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x81, 0x7f, 0x7c, 0x7a, 0x7a, 0x7c, 0x7e, 0x80, 0x84, 0x83, 0x81, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x84, 0x83, 0x83, 0x83, 0x84, 0x85, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x82, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x73, 0x75, 0x78, 0x7a, 0x7c, 0x7b, 0x7a, 0x7a, 0x77, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x77, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7f, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x89, 0x8d, 0x91, 0x94, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x8b, 0x88, 0x83, 0x7d, 0x7a, 0x79, 0x79, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x6d, 0x6f, 0x70, 0x72, 0x74, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x76, 0x77, 0x78, 0x74, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x70, 0x74, 0x74, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x73, 0x74, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x76, 0x73, 0x6f, 0x6e, 0x72, 0x7a, 0x7e, 0x7a, 0x75, 0x74, 0x87, 0x9e, 0xa6, 0x9d, 0x8e, 0x84, 0x81, 0x83, 0x82, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x80, 0x7e, 0x7b, 0x79, 0x79, 0x7b, 0x7e, 0x80, 0x84, 0x83, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x82, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x85, 0x85, 0x84, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x81, 0x78, 0x77, 0x77, 0x76, 0x76, 0x75, 0x75, 0x74, 0x74, 0x75, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x77, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x81, 0x82, 0x81, 0x81, 0x80, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x88, 0x8c, 0x90, 0x92, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x8b, 0x87, 0x82, 0x7c, 0x79, 0x78, 0x79, 0x7a, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x74, 0x6c, 0x6e, 0x70, 0x72, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x75, 0x75, 0x76, 0x75, 0x74, 0x73, 0x73, 0x74, 0x74, 0x75, 0x74, 0x75, 0x76, 0x77, 0x78, 0x77, 0x77, 0x76, 0x77, 0x77, 0x76, 0x76, 0x75, 0x76, 0x76, 0x76, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x74, 0x74, 0x7a, 0x76, 0x77, 0x81, 0x8e, 0x96, 0x94, 0x8f, 0x7f, 0x8d, 0x9b, 0x9b, 0x8e, 0x82, 0x7f, 0x81, 0x85, 0x83, 0x82, 0x80, 0x7f, 0x7e, 0x7e, 0x7f, 0x7f, 0x7d, 0x7a, 0x78, 0x78, 0x7b, 0x7d, 0x80, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x83, 0x85, 0x86, 0x86, 0x86, 0x85, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x88, 0x87, 0x86, 0x85, 0x85, 0x86, 0x86, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x79, 0x78, 0x77, 0x77, 0x75, 0x74, 0x74, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x79, 0x78, 0x78, 0x77, 0x78, 0x79, 0x7a, 0x7a, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x7e, 0x80, 0x82, 0x83, 0x84, 0x83, 0x82, 0x81, 0x84, 0x83, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x84, 0x85, 0x88, 0x8c, 0x8f, 0x92, 0x94, 0x94, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x8b, 0x87, 0x82, 0x7c, 0x79, 0x78, 0x7a, 0x7b, 0x78, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x6c, 0x6d, 0x6f, 0x71, 0x73, 0x74, 0x74, 0x74, 0x73, 0x73, 0x74, 0x75, 0x75, 0x74, 0x73, 0x72, 0x79, 0x77, 0x75, 0x73, 0x73, 0x75, 0x78, 0x7a, 0x75, 0x76, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x7c, 0x7a, 0x77, 0x74, 0x72, 0x72, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x78, 0x85, 0x98, 0xa3, 0xa3, 0x9e, 0x87, 0x90, 0x94, 0x8c, 0x7d, 0x75, 0x7a, 0x83, 0x87, 0x86, 0x84, 0x82, 0x81, 0x80, 0x80, 0x81, 0x7e, 0x7c, 0x79, 0x78, 0x78, 0x7a, 0x7d, 0x7f, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x82, 0x83, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x84, 0x84, 0x85, 0x85, 0x86, 0x87, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x87, 0x87, 0x87, 0x89, 0x88, 0x87, 0x86, 0x86, 0x86, 0x87, 0x88, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x83, 0x83, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x79, 0x78, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x7f, 0x7e, 0x7d, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x77, 0x79, 0x7b, 0x7d, 0x7f, 0x80, 0x81, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x81, 0x82, 0x83, 0x83, 0x80, 0x81, 0x83, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x81, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x82, 0x80, 0x7e, 0x7e, 0x82, 0x89, 0x90, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x90, 0x90, 0x93, 0x91, 0x8f, 0x90, 0x92, 0x92, 0x90, 0x8d, 0x86, 0x84, 0x80, 0x7d, 0x7a, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x72, 0x72, 0x71, 0x70, 0x6f, 0x6f, 0x6e, 0x6e, 0x6c, 0x6d, 0x70, 0x72, 0x74, 0x75, 0x75, 0x75, 0x71, 0x7a, 0x71, 0x6e, 0x7d, 0x78, 0x6d, 0x77, 0x75, 0x74, 0x72, 0x71, 0x75, 0x7a, 0x78, 0x71, 0x6d, 0x7b, 0x7f, 0x75, 0x6f, 0x75, 0x7c, 0x7c, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x78, 0x82, 0x93, 0xa2, 0xa4, 0x92, 0x7e, 0x7b, 0x98, 0x9a, 0x89, 0x81, 0x7c, 0x7c, 0x88, 0x81, 0x81, 0x81, 0x80, 0x81, 0x81, 0x82, 0x82, 0x7e, 0x7c, 0x79, 0x77, 0x77, 0x7a, 0x7d, 0x80, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x80, 0x82, 0x85, 0x87, 0x88, 0x87, 0x85, 0x84, 0x84, 0x83, 0x83, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x82, 0x83, 0x85, 0x86, 0x87, 0x87, 0x86, 0x86, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x87, 0x87, 0x88, 0x87, 0x86, 0x85, 0x83, 0x82, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x89, 0x89, 0x89, 0x88, 0x87, 0x86, 0x86, 0x86, 0x78, 0x79, 0x7a, 0x7a, 0x7a, 0x7a, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7e, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x79, 0x79, 0x79, 0x78, 0x78, 0x79, 0x7a, 0x7c, 0x7e, 0x80, 0x81, 0x82, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x80, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x81, 0x82, 0x83, 0x84, 0x84, 0x83, 0x81, 0x80, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x82, 0x80, 0x7e, 0x7e, 0x82, 0x89, 0x90, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x93, 0x91, 0x8f, 0x90, 0x93, 0x93, 0x90, 0x8d, 0x85, 0x83, 0x80, 0x7c, 0x7a, 0x79, 0x7a, 0x7a, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x75, 0x75, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x73, 0x73, 0x72, 0x71, 0x70, 0x6e, 0x6e, 0x6d, 0x6b, 0x6c, 0x6f, 0x71, 0x73, 0x75, 0x75, 0x75, 0x75, 0x7a, 0x72, 0x70, 0x79, 0x71, 0x6c, 0x7c, 0x75, 0x7b, 0x7f, 0x7c, 0x77, 0x75, 0x76, 0x78, 0x74, 0x7a, 0x78, 0x70, 0x70, 0x77, 0x77, 0x6f, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x71, 0x72, 0x7d, 0x8e, 0x98, 0x92, 0x84, 0x7b, 0x92, 0xaa, 0xa9, 0x93, 0x88, 0x7f, 0x7a, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x7f, 0x7c, 0x79, 0x77, 0x77, 0x79, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x80, 0x82, 0x84, 0x87, 0x88, 0x87, 0x85, 0x84, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x82, 0x83, 0x85, 0x86, 0x87, 0x87, 0x86, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x81, 0x80, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x87, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x79, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x79, 0x78, 0x79, 0x7b, 0x7c, 0x7d, 0x7d, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7c, 0x7d, 0x7e, 0x80, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x83, 0x84, 0x84, 0x82, 0x82, 0x83, 0x84, 0x84, 0x83, 0x82, 0x82, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x82, 0x83, 0x83, 0x83, 0x82, 0x80, 0x7e, 0x7e, 0x82, 0x89, 0x90, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x94, 0x91, 0x90, 0x91, 0x93, 0x93, 0x8f, 0x8c, 0x84, 0x82, 0x7e, 0x7b, 0x79, 0x78, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x77, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6e, 0x6d, 0x6c, 0x6a, 0x6b, 0x6e, 0x71, 0x73, 0x75, 0x75, 0x75, 0x79, 0x78, 0x73, 0x74, 0x76, 0x6b, 0x70, 0x8b, 0x8e, 0x96, 0x9c, 0x96, 0x84, 0x75, 0x74, 0x7b, 0x75, 0x77, 0x73, 0x6e, 0x74, 0x7d, 0x79, 0x6c, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x71, 0x7d, 0x92, 0x93, 0x82, 0x79, 0x7f, 0xa7, 0xbb, 0xb5, 0x9c, 0x90, 0x83, 0x79, 0x7b, 0x7f, 0x7f, 0x7f, 0x7e, 0x7d, 0x7d, 0x7c, 0x7c, 0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7f, 0x81, 0x83, 0x86, 0x87, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x82, 0x83, 0x84, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x82, 0x82, 0x81, 0x81, 0x81, 0x80, 0x80, 0x80, 0x82, 0x82, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x7b, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7b, 0x79, 0x7a, 0x7a, 0x7b, 0x7c, 0x7c, 0x7c, 0x7c, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x84, 0x84, 0x83, 0x82, 0x80, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x81, 0x7f, 0x7d, 0x7e, 0x81, 0x88, 0x90, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x93, 0x91, 0x90, 0x92, 0x93, 0x93, 0x8e, 0x8a, 0x82, 0x80, 0x7d, 0x7a, 0x78, 0x77, 0x78, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x76, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x75, 0x74, 0x72, 0x70, 0x6f, 0x6d, 0x6d, 0x6a, 0x6b, 0x6e, 0x71, 0x73, 0x75, 0x75, 0x75, 0x7a, 0x74, 0x73, 0x79, 0x77, 0x71, 0x81, 0x9f, 0xb1, 0xb2, 0xb3, 0xae, 0x98, 0x7f, 0x75, 0x77, 0x76, 0x7e, 0x80, 0x79, 0x7a, 0x80, 0x7f, 0x76, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x7d, 0x77, 0x83, 0x99, 0x95, 0x7c, 0x76, 0x86, 0xa7, 0xb8, 0xb0, 0x9b, 0x93, 0x89, 0x7c, 0x7b, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7a, 0x79, 0x78, 0x7f, 0x7d, 0x7a, 0x77, 0x76, 0x77, 0x78, 0x79, 0x7c, 0x7c, 0x7c, 0x7c, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x80, 0x80, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x81, 0x81, 0x82, 0x83, 0x83, 0x84, 0x83, 0x82, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x81, 0x81, 0x82, 0x81, 0x82, 0x82, 0x83, 0x83, 0x84, 0x85, 0x85, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7b, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x83, 0x81, 0x80, 0x7e, 0x7d, 0x7c, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x80, 0x81, 0x81, 0x82, 0x81, 0x81, 0x80, 0x81, 0x82, 0x83, 0x84, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7f, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x82, 0x82, 0x81, 0x7f, 0x7d, 0x7d, 0x81, 0x88, 0x8f, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x91, 0x93, 0x91, 0x8d, 0x88, 0x80, 0x7e, 0x7b, 0x78, 0x77, 0x76, 0x77, 0x78, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x75, 0x74, 0x73, 0x71, 0x70, 0x6e, 0x6e, 0x6c, 0x6d, 0x6f, 0x72, 0x74, 0x75, 0x75, 0x75, 0x78, 0x71, 0x73, 0x7a, 0x7b, 0x82, 0x99, 0xb0, 0xb1, 0xa8, 0xa8, 0xae, 0xa4, 0x8a, 0x77, 0x74, 0x85, 0x96, 0x9d, 0x8d, 0x7c, 0x78, 0x7a, 0x79, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x7a, 0x74, 0x82, 0x98, 0x93, 0x79, 0x73, 0x82, 0x95, 0xa5, 0x9e, 0x90, 0x93, 0x90, 0x83, 0x80, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x77, 0x7d, 0x7c, 0x79, 0x77, 0x76, 0x76, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7e, 0x7f, 0x81, 0x83, 0x84, 0x85, 0x86, 0x86, 0x84, 0x84, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x81, 0x82, 0x84, 0x85, 0x86, 0x86, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x84, 0x83, 0x80, 0x80, 0x81, 0x81, 0x81, 0x81, 0x82, 0x82, 0x80, 0x81, 0x81, 0x82, 0x82, 0x83, 0x84, 0x84, 0x81, 0x82, 0x83, 0x83, 0x83, 0x83, 0x82, 0x81, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x80, 0x81, 0x82, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x81, 0x7f, 0x7e, 0x7c, 0x7b, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x82, 0x83, 0x81, 0x81, 0x80, 0x80, 0x81, 0x82, 0x84, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x7f, 0x7d, 0x7d, 0x81, 0x88, 0x8f, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x90, 0x8f, 0x8f, 0x91, 0x92, 0x90, 0x8a, 0x85, 0x7e, 0x7c, 0x79, 0x77, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x70, 0x6f, 0x70, 0x72, 0x73, 0x74, 0x75, 0x74, 0x74, 0x77, 0x70, 0x73, 0x78, 0x7d, 0x94, 0xac, 0xb0, 0x90, 0x84, 0x8a, 0x9f, 0xa1, 0x8a, 0x78, 0x77, 0x95, 0xaa, 0xb1, 0x9a, 0x7d, 0x70, 0x70, 0x71, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x70, 0x6e, 0x7b, 0x90, 0x91, 0x7e, 0x73, 0x77, 0x85, 0x94, 0x8e, 0x87, 0x92, 0x94, 0x87, 0x81, 0x76, 0x78, 0x7a, 0x7b, 0x7b, 0x7a, 0x78, 0x77, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x7a, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7b, 0x7c, 0x7e, 0x7e, 0x80, 0x81, 0x83, 0x85, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x81, 0x82, 0x83, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x88, 0x87, 0x87, 0x87, 0x86, 0x86, 0x86, 0x86, 0x85, 0x86, 0x87, 0x87, 0x87, 0x87, 0x86, 0x85, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x81, 0x81, 0x81, 0x82, 0x82, 0x82, 0x82, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x82, 0x81, 0x80, 0x80, 0x81, 0x82, 0x84, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x87, 0x86, 0x84, 0x82, 0x80, 0x7e, 0x7c, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x80, 0x80, 0x7f, 0x7f, 0x80, 0x81, 0x83, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x81, 0x81, 0x80, 0x7f, 0x7c, 0x7d, 0x80, 0x87, 0x8f, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x92, 0x92, 0x92, 0x92, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8e, 0x8d, 0x8e, 0x90, 0x91, 0x8e, 0x88, 0x83, 0x7d, 0x7b, 0x78, 0x76, 0x75, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x74, 0x74, 0x73, 0x73, 0x73, 0x73, 0x73, 0x72, 0x73, 0x73, 0x74, 0x75, 0x75, 0x75, 0x74, 0x73, 0x78, 0x72, 0x73, 0x72, 0x7c, 0xa1, 0xb5, 0xa2, 0x7a, 0x74, 0x83, 0x9d, 0x9c, 0x81, 0x74, 0x7c, 0x8e, 0xa0, 0xa7, 0x95, 0x81, 0x78, 0x76, 0x72, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x70, 0x73, 0x80, 0x92, 0x9b, 0x92, 0x81, 0x76, 0x85, 0x91, 0x8a, 0x84, 0x93, 0x96, 0x86, 0x7e, 0x74, 0x76, 0x78, 0x7b, 0x7b, 0x7b, 0x79, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x7a, 0x7a, 0x7b, 0x7b, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x82, 0x84, 0x86, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x81, 0x81, 0x86, 0x86, 0x87, 0x88, 0x88, 0x87, 0x86, 0x86, 0x84, 0x83, 0x82, 0x82, 0x82, 0x84, 0x86, 0x87, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x88, 0x87, 0x85, 0x83, 0x80, 0x7e, 0x7c, 0x7b, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7e, 0x7f, 0x7f, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x80, 0x81, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x80, 0x83, 0x84, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x82, 0x81, 0x7f, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7d, 0x80, 0x87, 0x8f, 0x93, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x91, 0x91, 0x91, 0x91, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8f, 0x8f, 0x8f, 0x8f, 0x8d, 0x8c, 0x8d, 0x8f, 0x90, 0x8d, 0x87, 0x81, 0x7c, 0x7a, 0x78, 0x75, 0x74, 0x74, 0x75, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x73, 0x73, 0x73, 0x73, 0x73, 0x74, 0x74, 0x74, 0x75, 0x76, 0x76, 0x77, 0x76, 0x75, 0x74, 0x73, 0x79, 0x75, 0x73, 0x6d, 0x79, 0xa6, 0xb5, 0x94, 0x7d, 0x7e, 0x92, 0xa8, 0x9b, 0x79, 0x6e, 0x7e, 0x7a, 0x89, 0x90, 0x8a, 0x85, 0x87, 0x84, 0x7d, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x79, 0x7f, 0x8b, 0x9d, 0xab, 0xa9, 0x94, 0x7e, 0x8c, 0x96, 0x8d, 0x86, 0x94, 0x96, 0x84, 0x79, 0x72, 0x74, 0x78, 0x7b, 0x7c, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x79, 0x7a, 0x7a, 0x7b, 0x7b, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7e, 0x80, 0x82, 0x84, 0x86, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x81, 0x82, 0x83, 0x84, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x86, 0x86, 0x86, 0x87, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x82, 0x82, 0x82, 0x82, 0x80, 0x81, 0x82, 0x83, 0x83, 0x82, 0x82, 0x81, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x87, 0x84, 0x84, 0x83, 0x83, 0x82, 0x81, 0x81, 0x80, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x83, 0x84, 0x85, 0x87, 0x87, 0x88, 0x87, 0x87, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x82, 0x81, 0x81, 0x81, 0x82, 0x83, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7b, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7c, 0x7c, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7b, 0x7c, 0x7d, 0x7f, 0x80, 0x81, 0x81, 0x81, 0x80, 0x7e, 0x7c, 0x7d, 0x81, 0x89, 0x90, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x91, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x8f, 0x90, 0x8e, 0x8d, 0x8e, 0x8f, 0x8b, 0x85, 0x80, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x75, 0x74, 0x74, 0x77, 0x81, 0x94, 0xaa, 0xb9, 0x92, 0x92, 0xa8, 0xb3, 0x99, 0x7f, 0x76, 0x6f, 0x78, 0x7b, 0x74, 0x93, 0xa6, 0x8e, 0x8d, 0x99, 0xa6, 0x8d, 0x79, 0x76, 0x75, 0x71, 0x74, 0x7e, 0x74, 0x8a, 0xa5, 0xb6, 0xbb, 0xb1, 0x96, 0x7c, 0x89, 0x96, 0x8c, 0x81, 0x89, 0x8a, 0x7e, 0x7a, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x73, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7c, 0x7d, 0x7f, 0x7f, 0x78, 0x79, 0x7c, 0x7f, 0x82, 0x84, 0x86, 0x87, 0x88, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x7f, 0x81, 0x84, 0x86, 0x86, 0x85, 0x83, 0x82, 0x81, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x85, 0x85, 0x86, 0x87, 0x87, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x84, 0x85, 0x85, 0x86, 0x86, 0x87, 0x87, 0x87, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x84, 0x85, 0x86, 0x87, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x83, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x79, 0x77, 0x76, 0x76, 0x77, 0x78, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, 0x80, 0x80, 0x80, 0x81, 0x7f, 0x7d, 0x7e, 0x82, 0x89, 0x90, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x91, 0x8f, 0x8e, 0x8f, 0x8f, 0x8b, 0x84, 0x7f, 0x7b, 0x7a, 0x78, 0x77, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x76, 0x77, 0x7d, 0x8a, 0x9b, 0xa7, 0xb6, 0xb0, 0xbb, 0xbb, 0x9a, 0x7e, 0x77, 0x73, 0x83, 0x9f, 0x9e, 0xaa, 0xb2, 0xa5, 0xab, 0xb1, 0xb7, 0xa5, 0x8c, 0x7b, 0x79, 0x7e, 0x7e, 0x7a, 0x7c, 0x87, 0x9c, 0xb0, 0xb4, 0xa2, 0x88, 0x76, 0x87, 0x95, 0x8d, 0x82, 0x8b, 0x8b, 0x7e, 0x79, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x73, 0x74, 0x75, 0x77, 0x78, 0x78, 0x78, 0x77, 0x76, 0x77, 0x77, 0x78, 0x7a, 0x7b, 0x7b, 0x7c, 0x78, 0x7a, 0x7c, 0x80, 0x82, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x82, 0x84, 0x86, 0x87, 0x86, 0x84, 0x82, 0x82, 0x82, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x86, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x79, 0x78, 0x76, 0x75, 0x74, 0x73, 0x74, 0x74, 0x77, 0x78, 0x79, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7d, 0x7e, 0x7e, 0x80, 0x80, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7d, 0x7e, 0x7f, 0x7f, 0x80, 0x83, 0x81, 0x7e, 0x7e, 0x82, 0x88, 0x90, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x95, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x92, 0x93, 0x91, 0x8f, 0x8f, 0x8e, 0x8a, 0x83, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x78, 0x78, 0x78, 0x76, 0x77, 0x7d, 0x86, 0x8e, 0x9f, 0x99, 0xa4, 0xa6, 0x8b, 0x78, 0x7c, 0x80, 0x95, 0xbb, 0xb6, 0xb3, 0xbb, 0xba, 0xbc, 0xb1, 0xa0, 0x9b, 0x8c, 0x80, 0x8b, 0xa1, 0xa4, 0x98, 0x88, 0x82, 0x8e, 0xa8, 0xaa, 0x90, 0x78, 0x73, 0x86, 0x94, 0x8e, 0x84, 0x8d, 0x8d, 0x7f, 0x79, 0x74, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x74, 0x76, 0x78, 0x79, 0x79, 0x79, 0x79, 0x77, 0x77, 0x77, 0x77, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7e, 0x81, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x83, 0x85, 0x87, 0x87, 0x86, 0x85, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x86, 0x83, 0x81, 0x80, 0x84, 0x85, 0x86, 0x87, 0x87, 0x87, 0x86, 0x86, 0x85, 0x85, 0x83, 0x82, 0x82, 0x82, 0x83, 0x84, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7e, 0x7e, 0x7d, 0x7b, 0x7a, 0x79, 0x77, 0x76, 0x74, 0x73, 0x73, 0x75, 0x76, 0x78, 0x7b, 0x7d, 0x7e, 0x7f, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7d, 0x7d, 0x7d, 0x7c, 0x7d, 0x7d, 0x7e, 0x7f, 0x83, 0x81, 0x7f, 0x7e, 0x82, 0x88, 0x8f, 0x94, 0x94, 0x95, 0x95, 0x95, 0x95, 0x95, 0x96, 0x96, 0x95, 0x94, 0x94, 0x94, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x94, 0x92, 0x90, 0x90, 0x8f, 0x8a, 0x83, 0x7d, 0x7b, 0x7a, 0x79, 0x78, 0x77, 0x77, 0x77, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x76, 0x77, 0x75, 0x73, 0x74, 0x78, 0x7c, 0x75, 0x75, 0x8a, 0x95, 0x80, 0x75, 0x80, 0x88, 0xa6, 0xb8, 0xa5, 0xa6, 0xb8, 0xb6, 0xa9, 0x90, 0x7b, 0x7f, 0x83, 0x8d, 0xa2, 0xb7, 0xba, 0xb1, 0x90, 0x7b, 0x80, 0xa0, 0xa5, 0x86, 0x72, 0x79, 0x85, 0x94, 0x8d, 0x84, 0x8c, 0x8c, 0x7e, 0x78, 0x73, 0x75, 0x76, 0x77, 0x77, 0x76, 0x75, 0x73, 0x73, 0x74, 0x76, 0x78, 0x7a, 0x7a, 0x7b, 0x7a, 0x79, 0x79, 0x79, 0x79, 0x78, 0x78, 0x78, 0x78, 0x79, 0x7b, 0x7e, 0x82, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x83, 0x83, 0x82, 0x84, 0x85, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x89, 0x89, 0x88, 0x87, 0x85, 0x82, 0x80, 0x7f, 0x83, 0x84, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x84, 0x83, 0x82, 0x81, 0x82, 0x82, 0x83, 0x81, 0x81, 0x80, 0x80, 0x7f, 0x7f, 0x7e, 0x7e, 0x7f, 0x7e, 0x7d, 0x7c, 0x7a, 0x78, 0x76, 0x75, 0x74, 0x76, 0x79, 0x7c, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7f, 0x7e, 0x7c, 0x7b, 0x7b, 0x7c, 0x7d, 0x7d, 0x82, 0x80, 0x7e, 0x7e, 0x81, 0x88, 0x8f, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x96, 0x96, 0x97, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x93, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x90, 0x90, 0x8f, 0x8a, 0x83, 0x7d, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x77, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x70, 0x73, 0x75, 0x75, 0x72, 0x72, 0x74, 0x76, 0x78, 0x7d, 0x98, 0xa4, 0x8b, 0x7a, 0x80, 0x86, 0xb0, 0xac, 0x91, 0x9e, 0xb0, 0x9a, 0x86, 0x76, 0x73, 0x78, 0x89, 0xa0, 0xab, 0xa7, 0xa1, 0xa1, 0x95, 0x77, 0x77, 0x9b, 0xa3, 0x85, 0x76, 0x82, 0x86, 0x93, 0x8b, 0x80, 0x88, 0x89, 0x7c, 0x77, 0x73, 0x74, 0x76, 0x78, 0x78, 0x76, 0x74, 0x73, 0x73, 0x75, 0x76, 0x78, 0x7a, 0x7a, 0x7a, 0x7a, 0x7c, 0x7c, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x79, 0x79, 0x7b, 0x7f, 0x82, 0x85, 0x85, 0x85, 0x84, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x85, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x87, 0x88, 0x87, 0x87, 0x86, 0x84, 0x83, 0x82, 0x82, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x88, 0x88, 0x88, 0x87, 0x85, 0x82, 0x80, 0x7e, 0x82, 0x83, 0x84, 0x85, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x81, 0x80, 0x80, 0x80, 0x81, 0x82, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7e, 0x80, 0x80, 0x80, 0x7f, 0x7d, 0x7b, 0x79, 0x78, 0x75, 0x77, 0x7a, 0x7d, 0x7f, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x81, 0x81, 0x80, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x80, 0x7e, 0x7c, 0x7a, 0x79, 0x7a, 0x7b, 0x7c, 0x7f, 0x7d, 0x7c, 0x7c, 0x80, 0x87, 0x8f, 0x94, 0x94, 0x94, 0x95, 0x95, 0x96, 0x97, 0x97, 0x97, 0x96, 0x96, 0x95, 0x95, 0x95, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x94, 0x92, 0x90, 0x90, 0x8f, 0x8b, 0x84, 0x7e, 0x7c, 0x7b, 0x79, 0x78, 0x77, 0x78, 0x78, 0x78, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x72, 0x75, 0x77, 0x76, 0x74, 0x73, 0x75, 0x77, 0x7b, 0x83, 0xa0, 0xab, 0x91, 0x7d, 0x83, 0x8a, 0xb3, 0xa7, 0x90, 0xa6, 0xad, 0x83, 0x73, 0x77, 0x72, 0x7b, 0x92, 0xa7, 0xa2, 0x8e, 0x89, 0x93, 0x96, 0x77, 0x75, 0x97, 0xa2, 0x89, 0x7b, 0x85, 0x89, 0x94, 0x87, 0x79, 0x80, 0x82, 0x79, 0x76, 0x72, 0x74, 0x77, 0x79, 0x79, 0x77, 0x74, 0x72, 0x74, 0x75, 0x77, 0x78, 0x79, 0x79, 0x78, 0x78, 0x7b, 0x7b, 0x7b, 0x7b, 0x7a, 0x7a, 0x7a, 0x7a, 0x77, 0x7a, 0x7e, 0x82, 0x84, 0x84, 0x83, 0x82, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x86, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x87, 0x87, 0x86, 0x85, 0x84, 0x84, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x86, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x85, 0x82, 0x80, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x84, 0x83, 0x83, 0x82, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7e, 0x7f, 0x7f, 0x7f, 0x7e, 0x7c, 0x7a, 0x78, 0x77, 0x79, 0x7c, 0x7f, 0x80, 0x7f, 0x7e, 0x7d, 0x7e, 0x7f, 0x81, 0x82, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x81, 0x7f, 0x7c, 0x79, 0x78, 0x79, 0x7a, 0x7c, 0x7c, 0x7a, 0x79, 0x7a, 0x7f, 0x87, 0x8f, 0x95, 0x94, 0x94, 0x95, 0x96, 0x96, 0x97, 0x98, 0x98, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x92, 0x91, 0x90, 0x90, 0x90, 0x8c, 0x86, 0x80, 0x7c, 0x7b, 0x7a, 0x78, 0x78, 0x78, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x7b, 0x7c, 0x7c, 0x79, 0x75, 0x74, 0x76, 0x79, 0x71, 0x78, 0x94, 0xa0, 0x88, 0x7b, 0x8b, 0x98, 0xb5, 0xa4, 0x8b, 0xa6, 0xb1, 0x87, 0x75, 0x79, 0x70, 0x86, 0x9d, 0x9e, 0x8c, 0x7f, 0x87, 0x96, 0x98, 0x7c, 0x78, 0x93, 0x9f, 0x8b, 0x7b, 0x7e, 0x8d, 0x94, 0x83, 0x71, 0x78, 0x7c, 0x75, 0x75, 0x72, 0x74, 0x77, 0x79, 0x79, 0x77, 0x74, 0x72, 0x75, 0x76, 0x77, 0x77, 0x77, 0x76, 0x75, 0x75, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x79, 0x7e, 0x82, 0x84, 0x83, 0x81, 0x80, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x85, 0x85, 0x84, 0x84, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x88, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x86, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x88, 0x88, 0x89, 0x8a, 0x8a, 0x89, 0x88, 0x88, 0x87, 0x87, 0x87, 0x86, 0x85, 0x83, 0x81, 0x7f, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x82, 0x82, 0x81, 0x81, 0x80, 0x7f, 0x7e, 0x7e, 0x7e, 0x7f, 0x7f, 0x80, 0x80, 0x80, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7c, 0x7d, 0x7d, 0x7e, 0x7d, 0x7b, 0x79, 0x77, 0x79, 0x7b, 0x7e, 0x80, 0x81, 0x80, 0x7e, 0x7c, 0x7e, 0x80, 0x81, 0x83, 0x83, 0x82, 0x81, 0x80, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x81, 0x7f, 0x7c, 0x79, 0x78, 0x78, 0x7a, 0x7b, 0x7a, 0x78, 0x77, 0x79, 0x7e, 0x87, 0x8f, 0x95, 0x94, 0x94, 0x95, 0x96, 0x97, 0x97, 0x98, 0x98, 0x97, 0x96, 0x96, 0x96, 0x96, 0x95, 0x95, 0x95, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x93, 0x91, 0x90, 0x8f, 0x90, 0x90, 0x8d, 0x87, 0x81, 0x7c, 0x7b, 0x7a, 0x79, 0x78, 0x78, 0x78, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x76, 0x76, 0x76, 0x75, 0x75, 0x75, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x76, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x84, 0x84, 0x81, 0x7c, 0x76, 0x74, 0x76, 0x79, 0x7b, 0x7e, 0x94, 0x9b, 0x82, 0x7a, 0x90, 0xa3, 0xb7, 0x9e, 0x7e, 0x9b, 0xb6, 0x96, 0x7c, 0x71, 0x7a, 0x9a, 0xab, 0x95, 0x78, 0x74, 0x85, 0x94, 0x9a, 0x81, 0x7b, 0x91, 0x9b, 0x8a, 0x78, 0x76, 0x8f, 0x95, 0x81, 0x6c, 0x72, 0x78, 0x73, 0x74, 0x71, 0x74, 0x77, 0x79, 0x79, 0x77, 0x74, 0x71, 0x76, 0x76, 0x77, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x72, 0x73, 0x73, 0x74, 0x74, 0x75, 0x75, 0x75, 0x78, 0x7d, 0x81, 0x83, 0x82, 0x80, 0x7f, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84, 0x84, 0x85, 0x85, 0x84, 0x83, 0x82, 0x82, 0x82, 0x82, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x84, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x83, 0x84, 0x84, 0x84, 0x85, 0x85, 0x85, 0x85, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x86, 0x89, 0x89, 0x88, 0x88, 0x87, 0x87, 0x86, 0x86, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84 }; #endif ================================================ FILE: common/meson.build ================================================ libva_display_src = [ 'va_display.c' ] libva_display_deps = [ libva_dep ] if use_x11 libva_display_src += [ 'va_display_x11.c' ] libva_display_deps += x11_deps endif if use_drm libva_display_src += [ 'va_display_drm.c' ] libva_display_deps += drm_deps endif if use_wayland libva_display_src += [ 'va_display_wayland.c' ] libva_display_deps += wayland_deps endif if use_win32 libva_display_src += [ 'va_display_win32.cpp' ] libva_display_deps += win32_deps endif libva_display_lib = static_library('common', libva_display_src, dependencies: libva_display_deps, include_directories: include_directories('.')) libva_display_dep = declare_dependency(link_with: libva_display_lib, dependencies: libva_display_deps, include_directories: include_directories('.')) ================================================ FILE: common/va_display.c ================================================ /* * Copyright (c) 2012 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #include "va_display.h" extern const VADisplayHooks va_display_hooks_android; extern const VADisplayHooks va_display_hooks_wayland; extern const VADisplayHooks va_display_hooks_x11; extern const VADisplayHooks va_display_hooks_drm; extern const VADisplayHooks va_display_hooks_win32; static const VADisplayHooks *g_display_hooks; static const VADisplayHooks *g_display_hooks_available[] = { #ifdef HAVE_VA_WIN32 &va_display_hooks_win32, #endif #ifdef HAVE_VA_WAYLAND &va_display_hooks_wayland, #endif #ifdef HAVE_VA_X11 &va_display_hooks_x11, #endif #ifdef HAVE_VA_DRM &va_display_hooks_drm, #endif NULL}; static const char *g_display_name; const char *g_device_name; static const char * get_display_name(int argc, char *argv[]) { const char *display_name = NULL; int i; for (i = 1; i < argc; i++) { if (strcmp(argv[i], "--display") != 0) continue; argv[i] = NULL; if (++i < argc) { display_name = argv[i]; argv[i] = NULL; } } return display_name; } static const char * get_device_name(int argc, char *argv[]) { const char *device_name = NULL; int i; for (i = 1; i < argc; i++) { if (argv[i] && (strcmp(argv[i], "--device") != 0)) continue; argv[i] = NULL; if (++i < argc) { device_name = argv[i]; argv[i] = NULL; } } return device_name; } static void print_display_names(void) { const VADisplayHooks **h; printf("Available displays:\n"); for (h = g_display_hooks_available; *h != NULL; h++) printf(" %s\n", (*h)->name); } static void sanitize_args(int *argc, char *argv[]) { char **out_args = argv; int i, n = *argc; for (i = 0; i < n; i++) { if (argv[i]) *out_args++ = argv[i]; } *out_args = NULL; *argc = out_args - argv; } void va_init_display_args(int *argc, char *argv[]) { const char *display_name; display_name = get_display_name(*argc, argv); if (display_name && strcmp(display_name, "help") == 0) { print_display_names(); exit(0); } g_display_name = display_name; if (g_display_name && ((strcmp(g_display_name, "drm") == 0) || (strcmp(g_display_name, "win32") == 0))) g_device_name = get_device_name(*argc, argv); sanitize_args(argc, argv); } VADisplay va_open_display(void) { VADisplay va_dpy = NULL; unsigned int i; for (i = 0; !va_dpy && g_display_hooks_available[i]; i++) { g_display_hooks = g_display_hooks_available[i]; if (g_display_name && strcmp(g_display_name, g_display_hooks->name) != 0) continue; if (!g_display_hooks->open_display) continue; printf("Trying display: %s\n", g_display_hooks->name); va_dpy = g_display_hooks->open_display(); } if (!va_dpy) { fprintf(stderr, "error: failed to initialize display"); if (g_display_name) fprintf(stderr, " '%s'", g_display_name); fprintf(stderr, "\n"); exit(1); } return va_dpy; } void va_close_display(VADisplay va_dpy) { if (!va_dpy) return; if (g_display_hooks && g_display_hooks->close_display) g_display_hooks->close_display(va_dpy); } VAStatus va_put_surface( VADisplay va_dpy, VASurfaceID surface, const VARectangle *src_rect, const VARectangle *dst_rect ) { if (!va_dpy) return VA_STATUS_ERROR_INVALID_DISPLAY; if (g_display_hooks && g_display_hooks->put_surface) return g_display_hooks->put_surface(va_dpy, surface, src_rect, dst_rect); return VA_STATUS_ERROR_UNIMPLEMENTED; } void va_print_display_options(FILE *stream) { fprintf(stream, "Display options:\n"); fprintf(stream, "\t--display display | help Show information for the specified display, or the available display list \n"); fprintf(stream, "\t--device device Set device name, only available under drm and win32 displays\n"); } ================================================ FILE: common/va_display.h ================================================ /* * Copyright (c) 2012 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #ifndef VA_DISPLAY_H #define VA_DISPLAY_H #include #include #ifdef __cplusplus extern "C" { #endif typedef struct { const char *name; VADisplay(*open_display)(void); void (*close_display)(VADisplay va_dpy); VAStatus(*put_surface)(VADisplay va_dpy, VASurfaceID surface, const VARectangle *src_rect, const VARectangle *dst_rect); } VADisplayHooks; void va_init_display_args(int *argc, char *argv[]); VADisplay va_open_display(void); void va_close_display(VADisplay va_dpy); VAStatus va_put_surface( VADisplay va_dpy, VASurfaceID surface, const VARectangle *src_rect, const VARectangle *dst_rect ); void va_print_display_options(FILE *stream); #ifdef __cplusplus } #endif #endif /* VA_DISPLAY_H */ ================================================ FILE: common/va_display_drm.c ================================================ /* * Copyright (c) 2012 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include #include #include #include #include #ifdef IN_LIBVA # include "va/drm/va_drm.h" #else # include #endif #include #include "va_display.h" #include static int drm_fd = -1; extern const char *g_device_name; static VADisplay va_open_display_drm(void) { VADisplay va_dpy; int i; drmVersionPtr version; static const char *drm_device_paths[] = { "/dev/dri/renderD128", "/dev/dri/card0", "/dev/dri/renderD129", "/dev/dri/card1", NULL }; if (g_device_name) { drm_fd = open(g_device_name, O_RDWR); if (drm_fd < 0) { printf("Failed to open the given device!\n"); exit(1); return NULL; } va_dpy = vaGetDisplayDRM(drm_fd); if (va_dpy) return va_dpy; printf("Failed to a DRM display for the given device\n"); close(drm_fd); drm_fd = -1; exit(1); return NULL; } for (i = 0; drm_device_paths[i]; i++) { drm_fd = open(drm_device_paths[i], O_RDWR); if (drm_fd < 0) continue; version = drmGetVersion(drm_fd); if (!version) { close(drm_fd); continue; } /* On normal Linux platforms we do not want vgem. * Yet Windows subsystem for linux uses vgem, * while also providing a fallback VA driver. * See https://github.com/intel/libva/pull/688 */ struct utsname sysinfo = {}; if (!strncmp(version->name, "vgem", 4) && (uname(&sysinfo) >= 0) && !strstr(sysinfo.release, "WSL")) { drmFreeVersion(version); close(drm_fd); continue; } drmFreeVersion(version); va_dpy = vaGetDisplayDRM(drm_fd); if (va_dpy) return va_dpy; close(drm_fd); drm_fd = -1; } return NULL; } static void va_close_display_drm(VADisplay va_dpy) { if (drm_fd < 0) return; close(drm_fd); drm_fd = -1; } static VAStatus va_put_surface_drm( VADisplay va_dpy, VASurfaceID surface, const VARectangle *src_rect, const VARectangle *dst_rect ) { return VA_STATUS_ERROR_OPERATION_FAILED; } const VADisplayHooks va_display_hooks_drm = { "drm", va_open_display_drm, va_close_display_drm, va_put_surface_drm, }; ================================================ FILE: common/va_display_wayland.c ================================================ /* * Copyright (c) 2012 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include #include #ifdef IN_LIBVA # include "va/wayland/va_wayland.h" #else # include #endif #include "va_display.h" struct display { struct wl_display *display; struct wl_registry *registry; struct wl_compositor *compositor; struct wl_shell *shell; struct wl_shell_surface *shell_surface; struct wl_surface *surface; unsigned int ref_count; int event_fd; }; static struct display *g_display; static void registry_handle_global( void *data, struct wl_registry *registry, uint32_t id, const char *interface, uint32_t version ) { struct display * const d = data; if (strcmp(interface, "wl_compositor") == 0) d->compositor = wl_registry_bind(registry, id, &wl_compositor_interface, 1); else if (strcmp(interface, "wl_shell") == 0) d->shell = wl_registry_bind(registry, id, &wl_shell_interface, 1); } static const struct wl_registry_listener registry_listener = { registry_handle_global, NULL, }; static VADisplay va_open_display_wayland(void) { struct display *d; if (g_display) { d = g_display; d->ref_count++; } else { d = calloc(1, sizeof(*d)); if (!d) return NULL; d->event_fd = -1; d->display = wl_display_connect(NULL); if (!d->display) { free(d); return NULL; } wl_display_set_user_data(d->display, d); d->registry = wl_display_get_registry(d->display); wl_registry_add_listener(d->registry, ®istry_listener, d); d->event_fd = wl_display_get_fd(d->display); wl_display_dispatch(d->display); d->ref_count = 1; g_display = d; } return vaGetDisplayWl(d->display); } static void va_close_display_wayland(VADisplay va_dpy) { struct display * const d = g_display; if (!d || --d->ref_count > 0) return; if (d->surface) { wl_surface_destroy(d->surface); d->surface = NULL; } if (d->shell_surface) { wl_shell_surface_destroy(d->shell_surface); d->shell_surface = NULL; } if (d->shell) { wl_shell_destroy(d->shell); d->shell = NULL; } if (d->compositor) { wl_compositor_destroy(d->compositor); d->compositor = NULL; } if (d->registry) { wl_registry_destroy(d->registry); d->registry = NULL; } if (d->display) { wl_display_disconnect(d->display); d->display = NULL; } free(g_display); g_display = NULL; } static int ensure_window(VADisplay va_dpy, unsigned int width, unsigned int height) { struct display * const d = g_display; if (!d->surface) { d->surface = wl_compositor_create_surface(d->compositor); if (!d->surface) return 0; } if (!d->shell_surface) { d->shell_surface = wl_shell_get_shell_surface(d->shell, d->surface); if (!d->shell_surface) return 0; wl_shell_surface_set_toplevel(d->shell_surface); } return 1; } static VAStatus va_put_surface_wayland( VADisplay va_dpy, VASurfaceID surface, const VARectangle *src_rect, const VARectangle *dst_rect ) { struct display * const d = g_display; VAStatus va_status; struct wl_buffer *buffer; if (!ensure_window(va_dpy, dst_rect->width, dst_rect->height)) return VA_STATUS_ERROR_ALLOCATION_FAILED; va_status = vaGetSurfaceBufferWl(va_dpy, surface, VA_FRAME_PICTURE, &buffer); if (va_status != VA_STATUS_SUCCESS) return va_status; wl_surface_attach(d->surface, buffer, 0, 0); wl_surface_damage( d->surface, dst_rect->x, dst_rect->y, dst_rect->width, dst_rect->height ); wl_surface_commit(d->surface); wl_display_flush(d->display); return VA_STATUS_SUCCESS; } const VADisplayHooks va_display_hooks_wayland = { "wayland", va_open_display_wayland, va_close_display_wayland, va_put_surface_wayland, }; ================================================ FILE: common/va_display_win32.cpp ================================================ /* * Copyright © Microsoft Corporation * * 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 (including the next * paragraph) 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. */ #include #include #include #include "va_display.h" #include extern "C" const char *g_device_name; void dxcore_resolve_adapter(const char *adapter_string, /*out*/ bool* ptr_device_found, /*out*/ LUID* ptr_adapter_luid) { int selected_adapter_index = -1; IDXCoreAdapterFactory *factory = nullptr; IDXCoreAdapterList *adapter_list = nullptr; IDXCoreAdapter *adapter = nullptr; typedef HRESULT(WINAPI * PFN_CREATE_DXCORE_ADAPTER_FACTORY)(REFIID riid, void **ppFactory); PFN_CREATE_DXCORE_ADAPTER_FACTORY DXCoreCreateAdapterFactory; HRESULT hr = S_OK; memset(ptr_adapter_luid, 0, sizeof(LUID)); *ptr_device_found = false; HMODULE dxcore_mod = LoadLibrary("DXCore.DLL"); if (!dxcore_mod) { fprintf(stderr, "Failed to load DXCore.DLL to enumerate adapters.\n"); goto fail; } DXCoreCreateAdapterFactory = (PFN_CREATE_DXCORE_ADAPTER_FACTORY)GetProcAddress(dxcore_mod, "DXCoreCreateAdapterFactory"); if (!DXCoreCreateAdapterFactory) { fprintf(stderr, "Failed to load DXCoreCreateAdapterFactory from DXCore.DLL.\n"); goto fail; } hr = DXCoreCreateAdapterFactory(IID_IDXCoreAdapterFactory, (void **)&factory); if (FAILED(hr)) { fprintf(stderr, "DXCoreCreateAdapterFactory failed: %lx\n", hr); goto fail; } hr = factory->CreateAdapterList(1, &DXCORE_ADAPTER_ATTRIBUTE_D3D12_GRAPHICS, IID_IDXCoreAdapterList, (void **)&adapter_list); if (FAILED(hr)) { fprintf(stderr, "CreateAdapterList failed: %lx\n", hr); goto fail; } if (adapter_string && (sscanf_s(adapter_string, "%d", &selected_adapter_index) != 1)) { fprintf(stderr, "Invalid device index received for -hwaccel_device %s\n", adapter_string ? adapter_string : ""); } if (!adapter_string) fprintf(stdout, "Available devices for --display win32:\n"); for (int i = 0; i < adapter_list->GetAdapterCount(); i++) { if (SUCCEEDED(adapter_list->GetAdapter(i, IID_IDXCoreAdapter, (void **)&adapter))) { size_t desc_size = 0; if (FAILED(adapter->GetPropertySize(DXCoreAdapterProperty::DriverDescription, &desc_size))) { adapter->Release(); continue; } char *adapter_name = (char*)malloc(desc_size); if (!adapter_name) { adapter->Release(); continue; } if (FAILED(adapter->GetProperty(DXCoreAdapterProperty::DriverDescription, desc_size, adapter_name))) { free(adapter_name); adapter->Release(); continue; } LUID cur_adapter_luid = { 0, 0 }; if (FAILED(adapter->GetProperty(DXCoreAdapterProperty::InstanceLuid, &cur_adapter_luid))) { free(adapter_name); adapter->Release(); continue; } if (selected_adapter_index == i) { *ptr_adapter_luid = cur_adapter_luid; *ptr_device_found = true; } if (!adapter_string) fprintf(stdout, "\tDevice Index: %d Device LUID: %lu %ld - Device Name: %s\n", i, cur_adapter_luid.LowPart, cur_adapter_luid.HighPart, adapter_name); free(adapter_name); adapter->Release(); } } fail: if (adapter_list) adapter_list->Release(); if (factory) factory->Release(); if (dxcore_mod) FreeLibrary(dxcore_mod); } static VADisplay va_open_display_win32(void) { LUID adapter_luid = {0, 0}; bool device_found = false; if (g_device_name) { bool print_devices = (0 == strcmp(g_device_name, "help")); dxcore_resolve_adapter(print_devices ? NULL : g_device_name, &device_found, &adapter_luid); if (print_devices) { exit(0); } else if (g_device_name && !device_found) { fprintf(stderr, "Could not find device %s for --display win32. Please try --device help for a list of available devices.\n", g_device_name); exit(0); } } // Adapter automatic selection supported by sending NULL adapter to vaGetDisplayWin32 return vaGetDisplayWin32(device_found ? &adapter_luid : NULL); } static void va_close_display_win32(VADisplay va_dpy) { } static VAStatus va_put_surface_win32( VADisplay va_dpy, VASurfaceID surface, const VARectangle *src_rect, const VARectangle *dst_rect ) { return VA_STATUS_ERROR_OPERATION_FAILED; } #ifdef __cplusplus extern "C" { #endif extern const VADisplayHooks va_display_hooks_win32 = { "win32", va_open_display_win32, va_close_display_win32, va_put_surface_win32, }; #ifdef __cplusplus } #endif ================================================ FILE: common/va_display_x11.c ================================================ /* * Copyright (c) 2012 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include #include #include #include "va_display.h" static Display *x11_display; static Window x11_window; static VADisplay va_open_display_x11(void) { x11_display = XOpenDisplay(NULL); if (!x11_display) { fprintf(stderr, "error: can't connect to X server!\n"); return NULL; } return vaGetDisplay(x11_display); } static void va_close_display_x11(VADisplay va_dpy) { if (!x11_display) return; if (x11_window) { XUnmapWindow(x11_display, x11_window); XDestroyWindow(x11_display, x11_window); x11_window = None; } XCloseDisplay(x11_display); x11_display = NULL; } static int ensure_window(unsigned int width, unsigned int height) { Window win, rootwin; unsigned int black_pixel, white_pixel; int screen; if (!x11_display) return 0; if (x11_window) { XResizeWindow(x11_display, x11_window, width, height); return 1; } screen = DefaultScreen(x11_display); rootwin = RootWindow(x11_display, screen); black_pixel = BlackPixel(x11_display, screen); white_pixel = WhitePixel(x11_display, screen); win = XCreateSimpleWindow( x11_display, rootwin, 0, 0, width, height, 1, black_pixel, white_pixel ); if (!win) return 0; x11_window = win; XMapWindow(x11_display, x11_window); XSync(x11_display, False); return 1; } static inline bool validate_rect(const VARectangle *rect) { return (rect && rect->x >= 0 && rect->y >= 0 && rect->width > 0 && rect->height > 0); } static VAStatus va_put_surface_x11( VADisplay va_dpy, VASurfaceID surface, const VARectangle *src_rect, const VARectangle *dst_rect ) { unsigned int win_width, win_height; if (!va_dpy) return VA_STATUS_ERROR_INVALID_DISPLAY; if (surface == VA_INVALID_SURFACE) return VA_STATUS_ERROR_INVALID_SURFACE; if (!validate_rect(src_rect) || !validate_rect(dst_rect)) return VA_STATUS_ERROR_INVALID_PARAMETER; win_width = dst_rect->x + dst_rect->width; win_height = dst_rect->y + dst_rect->height; if (!ensure_window(win_width, win_height)) return VA_STATUS_ERROR_ALLOCATION_FAILED; return vaPutSurface(va_dpy, surface, x11_window, src_rect->x, src_rect->y, src_rect->width, src_rect->height, dst_rect->x, dst_rect->y, dst_rect->width, dst_rect->height, NULL, 0, VA_FRAME_PICTURE); } const VADisplayHooks va_display_hooks_x11 = { "x11", va_open_display_x11, va_close_display_x11, va_put_surface_x11, }; ================================================ FILE: configure.ac ================================================ # Copyright (c) 2007 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. # libva-utils package version number # package version number follows libva package version number to # comply with the same version used for released # # - major version is libva_major_version # - minor version is libva_minor_version # - micro version is libva_micro_version # - pre version is libva_pre_version, usually development version m4_define([libva_utils_major_version], [2]) m4_define([libva_utils_minor_version], [24]) m4_define([libva_utils_micro_version], [0]) m4_define([libva_utils_pre_version], [1]) m4_define([libva_utils_version], [libva_utils_major_version.libva_utils_minor_version.libva_utils_micro_version]) m4_if(libva_utils_pre_version, [0], [], [ m4_append([libva_utils_version], libva_utils_pre_version, [.pre]) ]) # libva minimum version requirement, at this released version # libva-utils was created m4_define([libva_api_min_version], [1.1.0]) # Wayland minimum version number m4_define([wayland_api_version], [1.0.0]) AC_PREREQ(2.57) AC_INIT([libva_utils], [libva_utils_version], [https://github.com/intel/libva-utils/issues/new], [libva-utils], [https://github.com/intel/libva-utils]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([dist-bzip2]) AC_CONFIG_HEADERS([config.h]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) TODAY="`LC_ALL=C date +'%a, %d %b %Y %X %z'`" AC_SUBST(TODAY) LIBVA_UTILS_MAJOR_VERSION=libva_utils_major_version LIBVA_UTILS_MINOR_VERSION=libva_utils_minor_version LIBVA_UTILS_MICRO_VERSION=libva_utils_micro_version LIBVA_UTILS_VERSION=libva_utils_version AC_SUBST(LIBVA_UTILS_MAJOR_VERSION) AC_SUBST(LIBVA_UTILS_MINOR_VERSION) AC_SUBST(LIBVA_UTILS_MICRO_VERSION) AC_SUBST(LIBVA_UTILS_VERSION) AC_ARG_ENABLE(drm, [AC_HELP_STRING([--enable-drm], [build with VA/DRM API support @<:@default=yes@:>@])], [], [enable_drm="yes"]) AC_ARG_ENABLE(x11, [AC_HELP_STRING([--enable-x11], [build with VA/X11 API support @<:@default=auto@:>@])], [enable_x11="$enableval"], [enable_x11="auto"]) AC_ARG_ENABLE([wayland], [AC_HELP_STRING([--enable-wayland], [build with VA/Wayland API support @<:@default=auto@:>@])], [enable_wayland="$enableval"], [enable_wayland="auto"]) AC_ARG_ENABLE([tests], [AC_HELP_STRING([--enable-tests], [build unit tests @<:@default=no@:>@])], [], [enable_tests="no"]) LT_INIT AC_DISABLE_STATIC AC_PROG_CC AC_PROG_CXX AM_PROG_CC_C_O PKG_PROG_PKG_CONFIG AC_HEADER_STDC AC_SYS_LARGEFILE # Check for __attribute__((visibility())) AC_CACHE_CHECK([whether __attribute__((visibility())) is supported], ac_cv_have_gnuc_visibility_attribute, [cat > conftest.c </dev/null 2>&1; then if grep '\.hidden.*foo' conftest.s >/dev/null; then if grep '\.protected.*bar' conftest.s >/dev/null; then ac_cv_have_gnuc_visibility_attribute="yes" fi fi fi rm -f conftest.[cs] ]) if test "$ac_cv_have_gnuc_visibility_attribute" = "yes"; then AC_DEFINE([HAVE_GNUC_VISIBILITY_ATTRIBUTE], [1], [Defined to 1 if GCC visibility attribute is supported]) fi # Check for -fstack-protector ssp_cc=yes if test "X$CC-cc" != "X"; then AC_MSG_CHECKING([whether ${CC-cc} accepts -fstack-protector]) ssp_old_cflags="$CFLAGS" CFLAGS="$CFLAGS -fstack-protector" AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[alloca(100);]])], [], [ssp_cc=no]) AC_MSG_RESULT([$ssp_cc]) if test "X$ssp_cc" = "Xno"; then CFLAGS="$ssp_old_cflags" else AC_DEFINE([ENABLE_SSP_CC], 1, [Define if SSP C support is enabled.]) fi fi AM_CONDITIONAL(USE_SSP, test "$ssp_cc" = "yes") # Check for libva (for dynamic linking) LIBVA_API_MIN_VERSION=libva_api_min_version PKG_CHECK_MODULES([LIBVA], [libva >= $LIBVA_API_MIN_VERSION]) LIBVA_VERSION=`$PKG_CONFIG --variable=libva_version libva` AC_SUBST(LIBVA_VERSION) LIBVA_API_VERSION=`$PKG_CONFIG --modversion libva` VA_MAJOR_VERSION=`echo "$LIBVA_API_VERSION" | cut -d'.' -f1` VA_MINOR_VERSION=`echo "$LIBVA_API_VERSION" | cut -d'.' -f2` VA_MICRO_VERSION=`echo "$LIBVA_API_VERSION" | cut -d'.' -f3` # Check for DRM (mandatory) PKG_CHECK_MODULES([LIBVA_DRM], [libdrm libva-drm = $LIBVA_API_VERSION]) USE_DRM="no" if test "$enable_drm" = "yes"; then USE_DRM="yes" AC_DEFINE([HAVE_VA_DRM], [1], [Defined to 1 if VA/DRM API is supported]) fi AM_CONDITIONAL(USE_DRM, test "$USE_DRM" = "yes") # Check for X11 USE_X11="no" if test "x$enable_x11" != "xno"; then PKG_CHECK_MODULES([X11], [x11 libva-x11 = $LIBVA_API_VERSION], [USE_X11="yes"], [:]) if test "x$USE_X11" = "xno" -a "x$enable_x11" = "xyes"; then AC_MSG_ERROR([X11 explicitly enabled, but $X11_PKG_ERRORS]) fi if test "$USE_X11" = "yes"; then AC_DEFINE([HAVE_VA_X11], [1], [Defined to 1 if VA/X11 API is supported]) fi fi AM_CONDITIONAL(USE_X11, test "$USE_X11" = "yes") dnl Check for Wayland WAYLAND_API_VERSION=wayland_api_version AC_SUBST(WAYLAND_API_VERSION) USE_WAYLAND="no" if test "x$enable_wayland" != "xno"; then PKG_CHECK_MODULES([WAYLAND], [wayland-client >= wayland_api_version libva-wayland = $LIBVA_API_VERSION], [USE_WAYLAND="yes"], [:]) if test "x$USE_WAYLAND" = "xno" -a "x$enable_wayland" = "xyes"; then AC_MSG_ERROR([wayland explicitly enabled, but $WAYLAND_PKG_ERRORS]) fi if test "$USE_WAYLAND" = "yes"; then WAYLAND_PREFIX=`$PKG_CONFIG --variable=prefix wayland-client` AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner],, [${WAYLAND_PREFIX}/bin$PATH_SEPARATOR$PATH]) AC_DEFINE([HAVE_VA_WAYLAND], [1], [Defined to 1 if VA/Wayland API is supported]) fi fi AM_CONDITIONAL(USE_WAYLAND, test "$USE_WAYLAND" = "yes") pkgconfigdir=${libdir}/pkgconfig AC_SUBST(pkgconfigdir) dnl Check for builds without backend if test "$USE_DRM:$USE_X11:$USE_WAYLAND" = "no:no:no"; then AC_MSG_ERROR([Please select at least one backend (DRM, X11, Wayland)]) fi AM_CONDITIONAL(ENABLE_TESTS, test "$enable_tests" = "yes") AC_OUTPUT([ Makefile common/Makefile test/Makefile vainfo/Makefile encode/Makefile decode/Makefile putsurface/Makefile videoprocess/Makefile vendor/intel/Makefile vendor/intel/sfcsample/Makefile ]) # Print a small summary BACKENDS="" AS_IF([test $USE_DRM = yes], [BACKENDS="$BACKENDS drm"]) AS_IF([test $USE_X11 = yes], [BACKENDS="$BACKENDS x11"]) AS_IF([test $USE_WAYLAND = yes], [BACKENDS="$BACKENDS wayland"]) echo echo "libva-utils - ${LIBVA_UTILS_VERSION}" echo echo Libva VA-API version ............. : $LIBVA_API_VERSION echo Installation prefix .............. : $prefix echo Extra window systems ............. : $BACKENDS echo Enable Unit-tests .................... : $enable_tests echo ================================================ FILE: decode/Makefile.am ================================================ # Copyright (c) 2007 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. bin_PROGRAMS = mpeg2vldemo loadjpeg AM_CPPFLAGS = \ -Wall \ $(LIBVA_CFLAGS) \ -I$(top_srcdir)/common \ $(NULL) if USE_SSP AM_CPPFLAGS += -fstack-protector endif TEST_LIBS = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ $(NULL) mpeg2vldemo_LDADD = $(TEST_LIBS) mpeg2vldemo_SOURCES = mpeg2vldemo.cpp loadjpeg_LDADD = $(TEST_LIBS) loadjpeg_SOURCES = loadjpeg.c tinyjpeg.c valgrind: $(bin_PROGRAMS) for a in $(bin_PROGRAMS); do \ valgrind --leak-check=full --show-reachable=yes .libs/$$a; \ done EXTRA_DIST = \ tinyjpeg.h \ tinyjpeg-internal.h \ $(NULL) ================================================ FILE: decode/loadjpeg.c ================================================ /* * Small jpeg decoder library - testing application * * Copyright (c) 2006, Luc Saillard * Copyright (c) 2012 Intel Corporation. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * - Neither the name of the author nor the names of its contributors may be * used to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * */ #include "tinyjpeg.h" #include #include #include #include #include "va_display.h" static void exitmessage(const char *message) __attribute__((noreturn)); static void exitmessage(const char *message) { printf("%s\n", message); exit(0); } static int filesize(FILE *fp) { long pos; fseek(fp, 0, SEEK_END); pos = ftell(fp); fseek(fp, 0, SEEK_SET); return pos; } /** * Load one jpeg image, and decompress it, and save the result. */ int convert_one_image(const char *infilename) { FILE *fp; unsigned int length_of_file; unsigned int width, height; unsigned char *buf; struct jdec_private *jdec; size_t n_items; /* Load the Jpeg into memory */ fp = fopen(infilename, "rb"); if (fp == NULL) exitmessage("Cannot open filename\n"); length_of_file = filesize(fp); if (length_of_file == -1) exitmessage("Error to read file\n"); buf = (unsigned char *)malloc(length_of_file + 4); if (buf == NULL) exitmessage("Not enough memory for loading file\n"); n_items = fread(buf, length_of_file, 1, fp); fclose(fp); if (n_items != 1) { free(buf); exitmessage("Reading file fail\n"); } /* Decompress it */ jdec = tinyjpeg_init(); if (jdec == NULL) exitmessage("Not enough memory to alloc the structure need for decompressing\n"); if (tinyjpeg_parse_header(jdec, buf, length_of_file) < 0) exitmessage(tinyjpeg_get_errorstring(jdec)); /* Get the size of the image */ tinyjpeg_get_size(jdec, &width, &height); printf("Decoding JPEG image %dx%d...\n", width, height); if (tinyjpeg_decode(jdec) < 0) exitmessage(tinyjpeg_get_errorstring(jdec)); tinyjpeg_free(jdec); free(buf); return 0; } static void usage(void) { fprintf(stderr, "Usage: loadjpeg \n"); exit(1); } /** * main * */ int main(int argc, char *argv[]) { char *input_filename; clock_t start_time, finish_time; unsigned int duration; int current_argument; va_init_display_args(&argc, argv); if (argc < 2) usage(); current_argument = 1; input_filename = argv[current_argument]; start_time = clock(); convert_one_image(input_filename); finish_time = clock(); duration = finish_time - start_time; printf("Decoding finished in %u ticks\n", duration); return 0; } ================================================ FILE: decode/meson.build ================================================ executable('mpeg2vldemo', [ 'mpeg2vldemo.cpp' ], dependencies: libva_display_dep, install: true) executable('loadjpeg', [ 'loadjpeg.c', 'tinyjpeg.c' ], dependencies: libva_display_dep, install: true) ================================================ FILE: decode/mpeg2vldemo.cpp ================================================ /* * Copyright (c) 2007-2008 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ /* * it is a real program to show how VAAPI decode work, * It does VLD decode for a simple MPEG2 clip "mpeg2-I.m2v" * "mpeg2-I.m2v" and VA parameters are hardcoded into mpeg2vldemo.c, * See mpeg2-I.jif to know how those VA parameters come from * * gcc -o mpeg2vldemo mpeg2vldemo.c -lva -lva-x11 -I/usr/include/va * ./mpeg2vldemo : only do decode * ./mpeg2vldemo : decode+display * */ #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } /* Data dump of a 16x16 MPEG2 video clip,it has one I frame */ static unsigned char mpeg2_clip[] = { 0x00, 0x00, 0x01, 0xb3, 0x01, 0x00, 0x10, 0x13, 0xff, 0xff, 0xe0, 0x18, 0x00, 0x00, 0x01, 0xb5, 0x14, 0x8a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xb8, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x01, 0xb5, 0x8f, 0xff, 0xf3, 0x41, 0x80, 0x00, 0x00, 0x01, 0x01, 0x13, 0xe1, 0x00, 0x15, 0x81, 0x54, 0xe0, 0x2a, 0x05, 0x43, 0x00, 0x2d, 0x60, 0x18, 0x01, 0x4e, 0x82, 0xb9, 0x58, 0xb1, 0x83, 0x49, 0xa4, 0xa0, 0x2e, 0x05, 0x80, 0x4b, 0x7a, 0x00, 0x01, 0x38, 0x20, 0x80, 0xe8, 0x05, 0xff, 0x60, 0x18, 0xe0, 0x1d, 0x80, 0x98, 0x01, 0xf8, 0x06, 0x00, 0x54, 0x02, 0xc0, 0x18, 0x14, 0x03, 0xb2, 0x92, 0x80, 0xc0, 0x18, 0x94, 0x42, 0x2c, 0xb2, 0x11, 0x64, 0xa0, 0x12, 0x5e, 0x78, 0x03, 0x3c, 0x01, 0x80, 0x0e, 0x80, 0x18, 0x80, 0x6b, 0xca, 0x4e, 0x01, 0x0f, 0xe4, 0x32, 0xc9, 0xbf, 0x01, 0x42, 0x69, 0x43, 0x50, 0x4b, 0x01, 0xc9, 0x45, 0x80, 0x50, 0x01, 0x38, 0x65, 0xe8, 0x01, 0x03, 0xf3, 0xc0, 0x76, 0x00, 0xe0, 0x03, 0x20, 0x28, 0x18, 0x01, 0xa9, 0x34, 0x04, 0xc5, 0xe0, 0x0b, 0x0b, 0x04, 0x20, 0x06, 0xc0, 0x89, 0xff, 0x60, 0x12, 0x12, 0x8a, 0x2c, 0x34, 0x11, 0xff, 0xf6, 0xe2, 0x40, 0xc0, 0x30, 0x1b, 0x7a, 0x01, 0xa9, 0x0d, 0x00, 0xac, 0x64 }; /* hardcoded here without a bitstream parser helper * please see picture mpeg2-I.jpg for bitstream details */ static VAPictureParameterBufferMPEG2 pic_param = { .horizontal_size = 16, .vertical_size = 16, .forward_reference_picture = 0xffffffff, .backward_reference_picture = 0xffffffff, .picture_coding_type = 1, .f_code = 0xffff, .picture_coding_extension = { .bits = { .intra_dc_precision = 0, .picture_structure = 3, .top_field_first = 0, .frame_pred_frame_dct = 1, .concealment_motion_vectors = 0, .q_scale_type = 0, .intra_vlc_format = 0, .alternate_scan = 0, .repeat_first_field = 0, .progressive_frame = 1, .is_first_field = 1 }, } }; /* see MPEG2 spec65 for the defines of matrix */ static VAIQMatrixBufferMPEG2 iq_matrix = { .load_intra_quantiser_matrix = 1, .load_non_intra_quantiser_matrix = 1, .load_chroma_intra_quantiser_matrix = 0, .load_chroma_non_intra_quantiser_matrix = 0, .intra_quantiser_matrix = { 8, 16, 16, 19, 16, 19, 22, 22, 22, 22, 22, 22, 26, 24, 26, 27, 27, 27, 26, 26, 26, 26, 27, 27, 27, 29, 29, 29, 34, 34, 34, 29, 29, 29, 27, 27, 29, 29, 32, 32, 34, 34, 37, 38, 37, 35, 35, 34, 35, 38, 38, 40, 40, 40, 48, 48, 46, 46, 56, 56, 58, 69, 69, 83 }, .non_intra_quantiser_matrix = {16}, .chroma_intra_quantiser_matrix = {0}, .chroma_non_intra_quantiser_matrix = {0} }; #if 1 static VASliceParameterBufferMPEG2 slice_param = { .slice_data_size = 150, .slice_data_offset = 0, .slice_data_flag = 0, .macroblock_offset = 38, /* 4byte + 6bits=38bits */ .slice_horizontal_position = 0, .slice_vertical_position = 0, .quantiser_scale_code = 2, .intra_slice_flag = 0 }; #endif #define CLIP_WIDTH 16 #define CLIP_HEIGHT 16 #define WIN_WIDTH (CLIP_WIDTH<<1) #define WIN_HEIGHT (CLIP_HEIGHT<<1) int main(int argc, char **argv) { VAEntrypoint entrypoints[5]; int num_entrypoints, vld_entrypoint; VAConfigAttrib attrib; VAConfigID config_id; VASurfaceID surface_id; VAContextID context_id; VABufferID pic_param_buf, iqmatrix_buf, slice_param_buf, slice_data_buf; int major_ver, minor_ver; VADisplay va_dpy; VAStatus va_status; int putsurface = 0; va_init_display_args(&argc, argv); if (argc > 1) putsurface = 1; va_dpy = va_open_display(); va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileMPEG2Main, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (vld_entrypoint = 0; vld_entrypoint < num_entrypoints; vld_entrypoint++) { if (entrypoints[vld_entrypoint] == VAEntrypointVLD) break; } if (vld_entrypoint == num_entrypoints) { /* not find VLD entry point */ assert(0); } /* Assuming finding VLD, find out the format for the render target */ attrib.type = VAConfigAttribRTFormat; vaGetConfigAttributes(va_dpy, VAProfileMPEG2Main, VAEntrypointVLD, &attrib, 1); if ((attrib.value & VA_RT_FORMAT_YUV420) == 0) { /* not find desired YUV420 RT format */ assert(0); } va_status = vaCreateConfig(va_dpy, VAProfileMPEG2Main, VAEntrypointVLD, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, CLIP_WIDTH, CLIP_HEIGHT, &surface_id, 1, NULL, 0 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); /* Create a context for this decode pipe */ va_status = vaCreateContext(va_dpy, config_id, CLIP_WIDTH, ((CLIP_HEIGHT + 15) / 16) * 16, VA_PROGRESSIVE, &surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); va_status = vaCreateBuffer(va_dpy, context_id, VAPictureParameterBufferType, sizeof(VAPictureParameterBufferMPEG2), 1, &pic_param, &pic_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAIQMatrixBufferType, sizeof(VAIQMatrixBufferMPEG2), 1, &iq_matrix, &iqmatrix_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VASliceParameterBufferType, sizeof(VASliceParameterBufferMPEG2), 1, &slice_param, &slice_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VASliceDataBufferType, 0xc4 - 0x2f + 1, 1, mpeg2_clip + 0x2f, &slice_data_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &iqmatrix_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &slice_data_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); if (putsurface) { VARectangle src_rect, dst_rect; src_rect.x = 0; src_rect.y = 0; src_rect.width = CLIP_WIDTH; src_rect.height = CLIP_HEIGHT; dst_rect.x = 0; dst_rect.y = 0; dst_rect.width = WIN_WIDTH; dst_rect.height = WIN_HEIGHT; va_status = va_put_surface(va_dpy, surface_id, &src_rect, &dst_rect); CHECK_VASTATUS(va_status, "vaPutSurface"); } printf("press any key to exit\n"); getchar(); vaDestroySurfaces(va_dpy, &surface_id, 1); vaDestroyConfig(va_dpy, config_id); vaDestroyContext(va_dpy, context_id); vaTerminate(va_dpy); va_close_display(va_dpy); return 0; } ================================================ FILE: decode/tinyjpeg-internal.h ================================================ /* * Small jpeg decoder library (Internal header) * * Copyright (c) 2006, Luc Saillard * Copyright (c) 2012 Intel Corporation. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * - Neither the name of the author nor the names of its contributors may be * used to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * */ #ifndef __TINYJPEG_INTERNAL_H_ #define __TINYJPEG_INTERNAL_H_ #include #define SANITY_CHECK 1 struct jdec_private; #define HUFFMAN_BITS_SIZE 256 #define HUFFMAN_TABLES 4 #define COMPONENTS 4 #define JPEG_MAX_WIDTH 2048 #define JPEG_MAX_HEIGHT 2048 #define JPEG_SCAN_MAX 4 enum std_markers { DQT = 0xDB, /* Define Quantization Table */ SOF = 0xC0, /* Start of Frame (size information) */ DHT = 0xC4, /* Huffman Table */ SOI = 0xD8, /* Start of Image */ SOS = 0xDA, /* Start of Scan */ RST = 0xD0, /* Reset Marker d0 -> .. */ RST7 = 0xD7, /* Reset Marker .. -> d7 */ EOI = 0xD9, /* End of Image */ DRI = 0xDD, /* Define Restart Interval */ APP0 = 0xE0, }; struct huffman_table { /*bits and values*/ unsigned char bits[16]; unsigned char values[256]; }; struct component { unsigned int Hfactor; unsigned int Vfactor; unsigned char quant_table_index; unsigned int cid; }; typedef void (*decode_MCU_fct)(struct jdec_private *priv); typedef void (*convert_colorspace_fct)(struct jdec_private *priv); struct jpeg_sos { unsigned int nr_components; struct { unsigned int component_id; unsigned int dc_selector; unsigned int ac_selector; } components[COMPONENTS]; }; struct jdec_private { /* Public variables */ unsigned int width[JPEG_SCAN_MAX], height[JPEG_SCAN_MAX]; /* Size of the image */ /* Private variables */ const unsigned char *stream_begin, *stream_end, *stream_scan; unsigned int stream_length; const unsigned char *stream; /* Pointer to the current stream */ struct component component_infos[COMPONENTS]; unsigned int nf_components; unsigned char Q_tables[COMPONENTS][64]; /* quantization tables, zigzag*/ unsigned char Q_tables_valid[COMPONENTS]; struct huffman_table HTDC[HUFFMAN_TABLES]; /* DC huffman tables */ unsigned char HTDC_valid[HUFFMAN_TABLES]; struct huffman_table HTAC[HUFFMAN_TABLES]; /* AC huffman tables */ unsigned char HTAC_valid[HUFFMAN_TABLES]; struct jpeg_sos cur_sos; /* current sos values*/ int default_huffman_table_initialized; int restart_interval; }; #endif ================================================ FILE: decode/tinyjpeg.c ================================================ /* * Small jpeg decoder library * * Copyright (c) 2006, Luc Saillard * Copyright (c) 2012 Intel Corporation. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * - Neither the name of the author nor the names of its contributors may be * used to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * */ #include #include #include #include #include #include "tinyjpeg.h" #include "tinyjpeg-internal.h" // for libva #include #include #include #include #include #include #include "va_display.h" #define cY 0 #define cCb 1 #define cCr 2 #define BLACK_Y 0 #define BLACK_U 127 #define BLACK_V 127 #ifndef MIN #define MIN(a, b) ((a) < (b) ? (a) : (b)) #endif #ifndef MAX #define MAX(a, b) ((a) > (b) ? (a) : (b)) #endif #define ARRAY_ELEMS(a) (sizeof(a) / sizeof((a)[0])) #if DEBUG #define trace(fmt, args...) do { \ fprintf(stderr, fmt, ## args); \ fflush(stderr); \ } while(0) #else #define trace(fmt, args...) do { } while (0) #endif #define error(fmt, args...) do { \ snprintf(error_string, sizeof(error_string), fmt, ## args); \ return -1; \ } while(0) /* The variables for different image scans */ static int scan_num = 0; static int next_image_found = 0; /* Global variable to return the last error found while deconding */ static char error_string[256]; static VAHuffmanTableBufferJPEGBaseline default_huffman_table_param = { .huffman_table = { // lumiance component { .num_dc_codes = {0, 1, 5, 1, 1, 1, 1, 1, 1, 0, 0, 0}, // 12 bits is ok for baseline profile .dc_values = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b}, .num_ac_codes = {0, 2, 1, 3, 3, 2, 4, 3, 5, 5, 4, 4, 0, 0, 1, 125}, .ac_values = { 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa },/*,0xonly,0xthe,0xfirst,0x162,0xbytes,0xare,0xavailable,0x*/ }, // chrom component { .num_dc_codes = {0, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0}, // 12 bits is ok for baseline profile .dc_values = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0xa, 0xb}, .num_ac_codes = {0, 2, 1, 2, 4, 4, 3, 4, 7, 5, 4, 4, 0, 1, 2, 119}, .ac_values = { 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa },/*,0xonly,0xthe,0xfirst,0x162,0xbytes,0xare,0xavailable,0x*/ }, } }; #define be16_to_cpu(x) (((x)[0]<<8)|(x)[1]) static int build_default_huffman_tables(struct jdec_private *priv) { int i = 0; if (priv->default_huffman_table_initialized) return 0; for (i = 0; i < 4; i++) { priv->HTDC_valid[i] = 1; memcpy(priv->HTDC[i].bits, default_huffman_table_param.huffman_table[i % 2].num_dc_codes, sizeof(default_huffman_table_param.huffman_table[i % 2].num_dc_codes)); memcpy(priv->HTDC[i].values, default_huffman_table_param.huffman_table[i % 2].dc_values, sizeof(default_huffman_table_param.huffman_table[i % 2].dc_values)); priv->HTAC_valid[i] = 1; memcpy(priv->HTAC[i].bits, default_huffman_table_param.huffman_table[i % 2].num_ac_codes, sizeof(default_huffman_table_param.huffman_table[i % 2].num_ac_codes)); memcpy(priv->HTAC[i].values, default_huffman_table_param.huffman_table[i % 2].ac_values, sizeof(default_huffman_table_param.huffman_table[i % 2].ac_values)); } priv->default_huffman_table_initialized = 1; return 0; } static void print_SOF(const unsigned char *stream) { #if DEBUG int width, height, nr_components, precision; const char *nr_components_to_string[] = { "????", "Grayscale", "????", "YCbCr", "CYMK" }; precision = stream[2]; height = be16_to_cpu(stream + 3); width = be16_to_cpu(stream + 5); nr_components = stream[7]; #endif trace("> SOF marker\n"); trace("Size:%dx%d nr_components:%d (%s) precision:%d\n", width, height, nr_components, nr_components_to_string[nr_components], precision); } static int parse_DQT(struct jdec_private *priv, const unsigned char *stream) { int qi; const unsigned char *dqt_block_end; trace("> DQT marker\n"); dqt_block_end = stream + be16_to_cpu(stream); stream += 2; /* Skip length */ while (stream < dqt_block_end) { qi = *stream++; #if SANITY_CHECK if (qi >> 4) error("16 bits quantization table is not supported\n"); if (qi >= 4) error("No more 4 quantization table is supported (got %d)\n", qi); #endif memcpy(priv->Q_tables[qi & 0x0F], stream, 64); priv->Q_tables_valid[qi & 0x0f] = 1; stream += 64; } trace("< DQT marker\n"); return 0; } static int parse_SOF(struct jdec_private *priv, const unsigned char *stream) { int i, width, height, nr_components, cid, sampling_factor; unsigned char Q_table; struct component *c; trace("> SOF marker\n"); print_SOF(stream); height = be16_to_cpu(stream + 3); width = be16_to_cpu(stream + 5); nr_components = stream[7]; if(nr_components > COMPONENTS-1) error("Components exceed the value specified by the Jpeg spec\n"); priv->nf_components = nr_components; #if SANITY_CHECK if (stream[2] != 8) error("Precision other than 8 is not supported\n"); if (width > JPEG_MAX_WIDTH || height > JPEG_MAX_HEIGHT) printf("WARNING:Width and Height (%dx%d) seems suspicious\n", width, height); if (nr_components != 3) printf("ERROR:We only support YUV images\n"); if (height % 16) printf("WARNING:Height need to be a multiple of 16 (current height is %d)\n", height); if (width % 16) printf("WARNING:Width need to be a multiple of 16 (current Width is %d)\n", width); #endif stream += 8; for (i = 0; i < nr_components; i++) { cid = *stream++; sampling_factor = *stream++; Q_table = *stream++; c = &priv->component_infos[i]; c->cid = cid; if (Q_table >= COMPONENTS) error("Bad Quantization table index (got %d, max allowed %d)\n", Q_table, COMPONENTS - 1); c->Vfactor = sampling_factor & 0xf; c->Hfactor = sampling_factor >> 4; c->quant_table_index = Q_table; trace("Component:%d factor:%dx%d Quantization table:%d\n", cid, c->Hfactor, c->Vfactor, Q_table); } priv->width[scan_num] = width; priv->height[scan_num] = height; trace("< SOF marker\n"); return 0; } static int parse_SOS(struct jdec_private *priv, const unsigned char *stream) { unsigned int i, cid, table; unsigned int nr_components = stream[2]; if(nr_components > COMPONENTS-1) error("Components exceed the value specified by the Jpeg spec\n"); trace("> SOS marker\n"); priv->cur_sos.nr_components = nr_components; stream += 3; for (i = 0; i < nr_components; i++) { cid = *stream++; table = *stream++; priv->cur_sos.components[i].component_id = cid; priv->cur_sos.components[i].dc_selector = ((table >> 4) & 0x0F); priv->cur_sos.components[i].ac_selector = (table & 0x0F); #if SANITY_CHECK if ((table & 0xf) >= 4) error("We do not support more than 2 AC Huffman table\n"); if ((table >> 4) >= 4) error("We do not support more than 2 DC Huffman table\n"); if (cid != priv->component_infos[i].cid) error("SOS cid order (%d:%d) isn't compatible with the SOF marker (%d:%d)\n", i, cid, i, priv->component_infos[i].cid); trace("ComponentId:%d tableAC:%d tableDC:%d\n", cid, table & 0xf, table >> 4); #endif } priv->stream = stream + 3; trace("< SOS marker\n"); return 0; } int tinyjpeg_parse_SOS(struct jdec_private *priv, const unsigned char *stream) { return parse_SOS(priv, stream); } static int parse_DHT(struct jdec_private *priv, const unsigned char *stream) { unsigned int count, i; int length, index; unsigned char Tc, Th; length = be16_to_cpu(stream) - 2; stream += 2; /* Skip length */ trace("> DHT marker (length=%d)\n", length); while (length > 0) { index = *stream++; Tc = index & 0xf0; // it is not important to <<4 Th = index & 0x0f; if (Th >= HUFFMAN_TABLES) error("No more than %d Huffman tables is supported (got %d)\n", HUFFMAN_TABLES, Th); if (Tc) { memcpy(priv->HTAC[Th].bits, stream, 16); } else { memcpy(priv->HTDC[Th].bits, stream, 16); } count = 0; for (i = 0; i < 16; i++) { count += *stream++; } #if SANITY_CHECK if (count >= HUFFMAN_BITS_SIZE) error("No more than %d bytes is allowed to describe a huffman table", HUFFMAN_BITS_SIZE); trace("Huffman table %s[%d] length=%d\n", Tc ? "AC" : "DC", Th, count); #endif if (Tc) { memcpy(priv->HTAC[Th].values, stream, count); priv->HTAC_valid[Th] = 1; } else { memcpy(priv->HTDC[Th].values, stream, count); priv->HTDC_valid[Th] = 1; } length -= 1; length -= 16; length -= count; stream += count; } trace("< DHT marker\n"); return 0; } static int parse_DRI(struct jdec_private *priv, const unsigned char *stream) { unsigned int length; trace("> DRI marker\n"); length = be16_to_cpu(stream); #if SANITY_CHECK if (length != 4) error("Length of DRI marker need to be 4\n"); #endif priv->restart_interval = be16_to_cpu(stream + 2); #if DEBUG trace("Restart interval = %d\n", priv->restart_interval); #endif trace("< DRI marker\n"); return 0; } static int findEOI(struct jdec_private *priv, const unsigned char *stream) { while (stream <= priv->stream_end && !(*stream == 0xff && *(stream + 1) == 0xd9)) { //searching for the end of image marker stream++; continue; } priv->stream_scan = stream; return 0; } static int findSOI(struct jdec_private *priv, const unsigned char *stream) { while (!(*stream == 0xff && *(stream + 1) == 0xd8)) { //searching for the start of image marker if (stream <= priv->stream_end) { stream++; continue; } else return 0; // No more images in the file. } priv->stream = stream + 2; return 1; } static int parse_JFIF(struct jdec_private *priv, const unsigned char *stream) { int chuck_len; int marker; int sos_marker_found = 0; int dht_marker_found = 0; int dqt_marker_found = 0; const unsigned char *next_chunck; next_image_found = findSOI(priv, stream); stream = priv->stream; while (!sos_marker_found && stream <= priv->stream_end) { while ((*stream == 0xff)) stream++; marker = *stream++; chuck_len = be16_to_cpu(stream); next_chunck = stream + chuck_len; switch (marker) { case SOF: if (parse_SOF(priv, stream) < 0) return -1; break; case DQT: if (parse_DQT(priv, stream) < 0) return -1; dqt_marker_found = 1; break; case SOS: if (parse_SOS(priv, stream) < 0) return -1; sos_marker_found = 1; break; case DHT: if (parse_DHT(priv, stream) < 0) return -1; dht_marker_found = 1; break; case DRI: if (parse_DRI(priv, stream) < 0) return -1; break; default: trace("> Unknown marker %2.2x\n", marker); break; } stream = next_chunck; } if (next_image_found) { if (!dht_marker_found) { trace("No Huffman table loaded, using the default one\n"); build_default_huffman_tables(priv); } if (!dqt_marker_found) { error("ERROR:No Quantization table loaded, using the default one\n"); } } #ifdef SANITY_CHECK if ((priv->component_infos[cY].Hfactor < priv->component_infos[cCb].Hfactor) || (priv->component_infos[cY].Hfactor < priv->component_infos[cCr].Hfactor)) error("Horizontal sampling factor for Y should be greater than horitontal sampling factor for Cb or Cr\n"); if ((priv->component_infos[cY].Vfactor < priv->component_infos[cCb].Vfactor) || (priv->component_infos[cY].Vfactor < priv->component_infos[cCr].Vfactor)) error("Vertical sampling factor for Y should be greater than vertical sampling factor for Cb or Cr\n"); if ((priv->component_infos[cCb].Hfactor != 1) || (priv->component_infos[cCr].Hfactor != 1) || (priv->component_infos[cCb].Vfactor != 1) || (priv->component_infos[cCr].Vfactor != 1)) printf("ERROR:Sampling other than 1x1 for Cr and Cb is not supported"); #endif findEOI(priv, stream); if (priv->stream_scan > priv->stream_end) { error("stream_scan cannot exceed stream_end\n"); return -1; } return next_image_found; } /******************************************************************************* * * Functions exported of the library. * * Note: Some applications can access directly to internal pointer of the * structure. It's is not recommended, but if you have many images to * uncompress with the same parameters, some functions can be called to speedup * the decoding. * ******************************************************************************/ /** * Allocate a new tinyjpeg decoder object. * * Before calling any other functions, an object need to be called. */ struct jdec_private *tinyjpeg_init(void) { struct jdec_private *priv; priv = (struct jdec_private *)calloc(1, sizeof(struct jdec_private)); if (priv == NULL) return NULL; return priv; } /** * Free a tinyjpeg object. * * No others function can be called after this one. */ void tinyjpeg_free(struct jdec_private *priv) { free(priv); } /** * Initialize the tinyjpeg object and prepare the decoding of the stream. * * Check if the jpeg can be decoded with this jpeg decoder. * Fill some table used for preprocessing. */ int tinyjpeg_parse_header(struct jdec_private *priv, const unsigned char *buf, unsigned int size) { int ret; /* Identify the file */ if ((buf[0] != 0xFF) || (buf[1] != SOI)) error("Not a JPG file ?\n"); priv->stream_begin = buf; priv->stream_length = size; priv->stream_end = priv->stream_begin + priv->stream_length; priv->stream = priv->stream_begin; ret = parse_JFIF(priv, priv->stream); return ret; } int tinyjpeg_decode(struct jdec_private *priv) { #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } VAEntrypoint entrypoints[5]; int num_entrypoints, vld_entrypoint; VAConfigAttrib attrib; VAConfigID config_id; VASurfaceID surface_id; VAContextID context_id; VABufferID pic_param_buf, iqmatrix_buf, huffmantable_buf, slice_param_buf, slice_data_buf; int major_ver, minor_ver; VADisplay va_dpy; VAStatus va_status; int max_h_factor, max_v_factor; int putsurface = 1; unsigned int i, j; int surface_type; VASurfaceAttrib forcc; forcc.type = VASurfaceAttribPixelFormat; forcc.flags = VA_SURFACE_ATTRIB_SETTABLE; forcc.value.type = VAGenericValueTypeInteger; va_dpy = va_open_display(); va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileJPEGBaseline, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (vld_entrypoint = 0; vld_entrypoint < num_entrypoints; vld_entrypoint++) { if (entrypoints[vld_entrypoint] == VAEntrypointVLD) break; } if (vld_entrypoint == num_entrypoints) { /* not find VLD entry point */ assert(0); } /* Assuming finding VLD, find out the format for the render target */ attrib.type = VAConfigAttribRTFormat; vaGetConfigAttributes(va_dpy, VAProfileJPEGBaseline, VAEntrypointVLD, &attrib, 1); if ((attrib.value & VA_RT_FORMAT_YUV420) == 0) { /* not find desired YUV420 RT format */ assert(0); } va_status = vaCreateConfig(va_dpy, VAProfileJPEGBaseline, VAEntrypointVLD, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); while (next_image_found) { VAPictureParameterBufferJPEGBaseline pic_param; memset(&pic_param, 0, sizeof(pic_param)); pic_param.picture_width = priv->width[scan_num]; pic_param.picture_height = priv->height[scan_num]; pic_param.num_components = priv->nf_components; for (i = 0; i < pic_param.num_components; i++) { // tinyjpeg support 3 components only, does it match va? pic_param.components[i].component_id = priv->component_infos[i].cid; pic_param.components[i].h_sampling_factor = priv->component_infos[i].Hfactor; pic_param.components[i].v_sampling_factor = priv->component_infos[i].Vfactor; pic_param.components[i].quantiser_table_selector = priv->component_infos[i].quant_table_index; } int h1, h2, h3, v1, v2, v3; h1 = pic_param.components[0].h_sampling_factor; h2 = pic_param.components[1].h_sampling_factor; h3 = pic_param.components[2].h_sampling_factor; v1 = pic_param.components[0].v_sampling_factor; v2 = pic_param.components[1].v_sampling_factor; v3 = pic_param.components[2].v_sampling_factor; if (h1 == 2 && h2 == 1 && h3 == 1 && v1 == 2 && v2 == 1 && v3 == 1) { //surface_type = VA_RT_FORMAT_IMC3; surface_type = VA_RT_FORMAT_YUV420; forcc.value.value.i = VA_FOURCC_IMC3; } else if (h1 == 2 && h2 == 1 && h3 == 1 && v1 == 1 && v2 == 1 && v3 == 1) { //surface_type = VA_RT_FORMAT_YUV422H; surface_type = VA_RT_FORMAT_YUV422; forcc.value.value.i = VA_FOURCC_422H; } else if (h1 == 1 && h2 == 1 && h3 == 1 && v1 == 1 && v2 == 1 && v3 == 1) { surface_type = VA_RT_FORMAT_YUV444; forcc.value.value.i = VA_FOURCC_444P; //forcc.value.value.i = VA_FOURCC_RGBP; } else if (h1 == 4 && h2 == 1 && h3 == 1 && v1 == 1 && v2 == 1 && v3 == 1) { surface_type = VA_RT_FORMAT_YUV411; forcc.value.value.i = VA_FOURCC_411P; } else if (h1 == 1 && h2 == 1 && h3 == 1 && v1 == 2 && v2 == 1 && v3 == 1) { //surface_type = VA_RT_FORMAT_YUV422V; surface_type = VA_RT_FORMAT_YUV422; forcc.value.value.i = VA_FOURCC_422V; } else if (h1 == 2 && h2 == 1 && h3 == 1 && v1 == 2 && v2 == 2 && v3 == 2) { //surface_type = VA_RT_FORMAT_YUV422H; surface_type = VA_RT_FORMAT_YUV422; forcc.value.value.i = VA_FOURCC_422H; } else if (h1 == 2 && h2 == 2 && h3 == 2 && v1 == 2 && v2 == 1 && v3 == 1) { //surface_type = VA_RT_FORMAT_YUV422V; surface_type = VA_RT_FORMAT_YUV422; forcc.value.value.i = VA_FOURCC_422V; } else { surface_type = VA_RT_FORMAT_YUV400; forcc.value.value.i = VA_FOURCC('Y', '8', '0', '0'); } va_status = vaCreateSurfaces(va_dpy, surface_type, priv->width[scan_num], priv->height[scan_num], //alignment? &surface_id, 1, &forcc, 1); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); /* Create a context for this decode pipe */ va_status = vaCreateContext(va_dpy, config_id, priv->width[scan_num], priv->height[scan_num], // alignment? VA_PROGRESSIVE, &surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); va_status = vaCreateBuffer(va_dpy, context_id, VAPictureParameterBufferType, // VAPictureParameterBufferJPEGBaseline? sizeof(VAPictureParameterBufferJPEGBaseline), 1, &pic_param, &pic_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); VAIQMatrixBufferJPEGBaseline iq_matrix; const unsigned int num_quant_tables = MIN(COMPONENTS, ARRAY_ELEMS(iq_matrix.load_quantiser_table)); // todo, only mask it if non-default quant matrix is used. do we need build default quant matrix? memset(&iq_matrix, 0, sizeof(VAIQMatrixBufferJPEGBaseline)); for (i = 0; i < num_quant_tables; i++) { if (!priv->Q_tables_valid[i]) continue; iq_matrix.load_quantiser_table[i] = 1; for (j = 0; j < 64; j++) iq_matrix.quantiser_table[i][j] = priv->Q_tables[i][j]; } va_status = vaCreateBuffer(va_dpy, context_id, VAIQMatrixBufferType, // VAIQMatrixBufferJPEGBaseline? sizeof(VAIQMatrixBufferJPEGBaseline), 1, &iq_matrix, &iqmatrix_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); VAHuffmanTableBufferJPEGBaseline huffman_table; const unsigned int num_huffman_tables = MIN(COMPONENTS, ARRAY_ELEMS(huffman_table.load_huffman_table)); memset(&huffman_table, 0, sizeof(VAHuffmanTableBufferJPEGBaseline)); assert(sizeof(huffman_table.huffman_table[0].num_dc_codes) == sizeof(priv->HTDC[0].bits)); assert(sizeof(huffman_table.huffman_table[0].dc_values[0]) == sizeof(priv->HTDC[0].values[0])); for (i = 0; i < num_huffman_tables; i++) { if (!priv->HTDC_valid[i] || !priv->HTAC_valid[i]) continue; huffman_table.load_huffman_table[i] = 1; memcpy(huffman_table.huffman_table[i].num_dc_codes, priv->HTDC[i].bits, sizeof(huffman_table.huffman_table[i].num_dc_codes)); memcpy(huffman_table.huffman_table[i].dc_values, priv->HTDC[i].values, sizeof(huffman_table.huffman_table[i].dc_values)); memcpy(huffman_table.huffman_table[i].num_ac_codes, priv->HTAC[i].bits, sizeof(huffman_table.huffman_table[i].num_ac_codes)); memcpy(huffman_table.huffman_table[i].ac_values, priv->HTAC[i].values, sizeof(huffman_table.huffman_table[i].ac_values)); memset(huffman_table.huffman_table[i].pad, 0, sizeof(huffman_table.huffman_table[i].pad)); } va_status = vaCreateBuffer(va_dpy, context_id, VAHuffmanTableBufferType, // VAHuffmanTableBufferJPEGBaseline? sizeof(VAHuffmanTableBufferJPEGBaseline), 1, &huffman_table, &huffmantable_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); // one slice for whole image? max_h_factor = priv->component_infos[0].Hfactor; max_v_factor = priv->component_infos[0].Vfactor; static VASliceParameterBufferJPEGBaseline slice_param; slice_param.slice_data_size = (priv->stream_scan - priv->stream); slice_param.slice_data_offset = 0; slice_param.slice_data_flag = VA_SLICE_DATA_FLAG_ALL; slice_param.slice_horizontal_position = 0; slice_param.slice_vertical_position = 0; slice_param.num_components = priv->cur_sos.nr_components; for (i = 0; i < slice_param.num_components; i++) { slice_param.components[i].component_selector = priv->cur_sos.components[i].component_id; /* FIXME: set to values specified in SOS */ slice_param.components[i].dc_table_selector = priv->cur_sos.components[i].dc_selector; /* FIXME: set to values specified in SOS */ slice_param.components[i].ac_table_selector = priv->cur_sos.components[i].ac_selector; /* FIXME: set to values specified in SOS */ } slice_param.restart_interval = priv->restart_interval; slice_param.num_mcus = ((priv->width[scan_num] + max_h_factor * 8 - 1) / (max_h_factor * 8)) * ((priv->height[scan_num] + max_v_factor * 8 - 1) / (max_v_factor * 8)); // ?? 720/16? va_status = vaCreateBuffer(va_dpy, context_id, VASliceParameterBufferType, // VASliceParameterBufferJPEGBaseline? sizeof(VASliceParameterBufferJPEGBaseline), 1, &slice_param, &slice_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VASliceDataBufferType, priv->stream_scan - priv->stream, 1, (void*)priv->stream, // jpeg_clip, &slice_data_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &iqmatrix_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &huffmantable_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &slice_data_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); if (putsurface) { VARectangle src_rect, dst_rect; src_rect.x = 0; src_rect.y = 0; src_rect.width = priv->width[scan_num]; src_rect.height = priv->height[scan_num]; dst_rect = src_rect; va_status = va_put_surface(va_dpy, surface_id, &src_rect, &dst_rect); CHECK_VASTATUS(va_status, "vaPutSurface"); } scan_num++; vaDestroySurfaces(va_dpy, &surface_id, 1); vaDestroyConfig(va_dpy, config_id); vaDestroyContext(va_dpy, context_id); if (scan_num >= JPEG_SCAN_MAX) break; parse_JFIF(priv, priv->stream); if (priv->width[scan_num] == 0 && priv->height[scan_num] == 0) break; } // va_close_display(va_dpy); vaTerminate(va_dpy); printf("press any key to exit23\n"); getchar(); return 0; } const char *tinyjpeg_get_errorstring(struct jdec_private *priv) { /* FIXME: the error string must be store in the context */ return error_string; } void tinyjpeg_get_size(struct jdec_private *priv, unsigned int *width, unsigned int *height) { *width = priv->width[scan_num]; *height = priv->height[scan_num]; } ================================================ FILE: decode/tinyjpeg.h ================================================ /* * Small jpeg decoder library (header file) * * Copyright (c) 2006, Luc Saillard * Copyright (c) 2012 Intel Corporation. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * - Neither the name of the author nor the names of its contributors may be * used to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * */ #ifndef __JPEGDEC_H__ #define __JPEGDEC_H__ #ifdef __cplusplus extern "C" { #endif struct jdec_private; /* Flags that can be set by any applications */ #define TINYJPEG_FLAGS_MJPEG_TABLE (1<<1) /* Format accepted in outout */ enum tinyjpeg_fmt { TINYJPEG_FMT_GREY = 1, TINYJPEG_FMT_BGR24, TINYJPEG_FMT_RGB24, TINYJPEG_FMT_YUV420P, }; struct jdec_private *tinyjpeg_init(void); void tinyjpeg_free(struct jdec_private *priv); int tinyjpeg_parse_header(struct jdec_private *priv, const unsigned char *buf, unsigned int size); int tinyjpeg_decode(struct jdec_private *priv); const char *tinyjpeg_get_errorstring(struct jdec_private *priv); void tinyjpeg_get_size(struct jdec_private *priv, unsigned int *width, unsigned int *height); #ifdef __cplusplus } #endif #endif ================================================ FILE: encode/Makefile.am ================================================ # Copyright (c) 2007 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. bin_PROGRAMS = avcenc mpeg2vaenc h264encode jpegenc vp9enc vp8enc hevcencode av1encode noinst_PROGRAMS = svctenc AM_CPPFLAGS = \ -Wall \ $(LIBVA_CFLAGS) \ $(NULL) if USE_SSP AM_CPPFLAGS += -fstack-protector endif h264encode_SOURCES = h264encode.c h264encode_CFLAGS = -I$(top_srcdir)/common -g h264encode_LDADD = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread -lm hevcencode_SOURCES = hevcencode.c hevcencode_CFLAGS = -I$(top_srcdir)/common -g hevcencode_LDADD = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread -lm avcenc_SOURCES = avcenc.c avcenc_CFLAGS = -I$(top_srcdir)/common -g avcenc_LDADD = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread mpeg2vaenc_SOURCES = mpeg2vaenc.c mpeg2vaenc_CFLAGS = -I$(top_srcdir)/common mpeg2vaenc_LDADD = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread jpegenc_SOURCES = jpegenc.c jpegenc_CFLAGS = -I$(top_srcdir)/common -g jpegenc_LDADD = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread svctenc_SOURCES = svctenc.c svctenc_CFLAGS = -I$(top_srcdir)/common -g svctenc_LDADD = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread -lm vp9enc_SOURCES = vp9enc.c vp9enc_CFLAGS = -I$(top_srcdir)/common -g vp9enc_LDADD = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread -lm vp8enc_SOURCES = vp8enc.c vp8enc_CFLAGS = -I$(top_srcdir)/common -g vp8enc_LDADD = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread -lm av1encode_SOURCES = av1encode.c av1encode_CFLAGS = -I$(top_srcdir)/common -g av1encode_LDADD = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread -lm valgrind: $(bin_PROGRAMS) $(noinst_PROGRAMS) for a in $(bin_PROGRAMS) $(noinst_PROGRAMS); do \ valgrind --leak-check=full --show-reachable=yes .libs/$$a; \ done EXTRA_DIST = \ jpegenc_utils.h \ $(NULL) ================================================ FILE: encode/av1encode.c ================================================ #define LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE 1 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #define ALIGN16(x) ((x+15)&~15) #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } #define MIN(a, b) ((a)>(b)?(b):(a)) #define MAX(a, b) ((a)>(b)?(a):(b)) #define CHECK_NULL(p) \ if(!(p)) \ { \ fprintf(stderr, "Null pointer at:%s:%d\n", __func__, __LINE__); \ exit(1); \ } #define CHECK_CONDITION(cond) \ if(!(cond)) \ { \ fprintf(stderr, "Unexpected condition: %s:%d\n", __func__, __LINE__); \ exit(1); \ } #define CHECK_BS_NULL(p) \ CHECK_NULL(p) \ CHECK_NULL(p->buffer) #include "loadsurface.h" /***** * * Bit stream management * * * */ #define BITSTREAM_ALLOCATE_STEPPING 1024 // in byte struct __bitstream { uint8_t *buffer; // managed by u8 to avoid swap every 4byte int bit_offset; int max_size_in_byte; }; typedef struct __bitstream bitstream; static void bitstream_start(bitstream *bs) { CHECK_NULL(bs); bs->max_size_in_byte = BITSTREAM_ALLOCATE_STEPPING; bs->buffer = calloc(bs->max_size_in_byte * sizeof(uint8_t), 1); CHECK_NULL(bs->buffer); bs->bit_offset = 0; } static void put_ui(bitstream* bs, uint32_t val, int size_in_bits) { CHECK_BS_NULL(bs); CHECK_CONDITION((size_in_bits + bs->bit_offset) <= (8 * bs->max_size_in_byte)); int remain_bits = 8 - (bs->bit_offset % 8); // make sure val does not overflow size_in_bits val &= (0xffffffff >> (32 - size_in_bits)); if(size_in_bits <= remain_bits) { bs->buffer[bs->bit_offset / 8] |= val << (remain_bits - size_in_bits); bs->bit_offset += size_in_bits; } else { put_ui(bs, val >> (size_in_bits - remain_bits), remain_bits); put_ui(bs, val & (~(0xffffffff << (size_in_bits - remain_bits))), size_in_bits - remain_bits); } } static void put_aligning_bits(bitstream* bs) { CHECK_BS_NULL(bs); while (bs->bit_offset & 7) put_ui(bs, 0, 1);; //trailing_zero_bit } static void put_trailing_bits(bitstream* bs) { CHECK_BS_NULL(bs); put_ui(bs, 1, 1); //trailing_one_bit while (bs->bit_offset & 7) put_ui(bs, 0, 1);; //trailing_zero_bit } static void bitstream_free(bitstream* bs) { CHECK_BS_NULL(bs); free(bs->buffer); bs->bit_offset = 0; bs->max_size_in_byte = 0; } static void bitstream_cat(bitstream *bs1, bitstream *bs2) { CHECK_NULL(bs1); CHECK_NULL(bs2); CHECK_CONDITION(! (bs1->bit_offset & 7)); if(! (bs1->bit_offset & 7)) //byte aligned { memcpy(bs1->buffer + (bs1->bit_offset / 8), bs2->buffer, bs2->bit_offset/8); bs1->bit_offset += bs2->bit_offset; bitstream_free(bs2); } else { //when call this function to concat 2 bitstreams, the first bitstream should always be byte aligned CHECK_CONDITION(0); } } /****** * definition of para set structure * * * * */ #define PRIMARY_REF_BITS 3 #define PRIMARY_REF_NONE 7 #define REF_FRAMES_LOG2 3 #define NUM_REF_FRAMES (1 << REF_FRAMES_LOG2) #define REFS_PER_FRAME 7 #define TOTAL_REFS_PER_FRAME 8 #define MAX_MODE_LF_DELTAS 2 #define MAX_MB_PLANE 3 #define CDEF_MAX_STRENGTHS 8 #define CDEF_STRENGTH_BITS 6 #define CDEF_STRENGTH_DIVISOR 4 #define AV1_MAX_NUM_TILE_COLS 64 #define AV1_MAX_NUM_TILE_ROWS 64 #define MAX_NUM_OPERATING_POINTS 32 #define SURFACE_NUM 16 /* 16 surfaces for source YUV */ enum { SINGLE_REFERENCE = 0, COMPOUND_REFERENCE = 1, REFERENCE_MODE_SELECT = 2, REFERENCE_MODES = 3, } REFERENCE_MODE; enum FRAME_TYPE { KEY_FRAME = 0, INTER_FRAME = 1, INTRA_ONLY_FRAME = 2, SWITCH_FRAME = 3, NUM_FRAME_TYPES, }; enum INTERP_FILTER{ EIGHTTAP_REGULAR, EIGHTTAP_SMOOTH, EIGHTTAP_SHARP, BILINEAR, SWITCHABLE, INTERP_FILTERS_ALL }; enum AV1_OBU_TYPE { OBU_SEQUENCE_HEADER = 1, OBU_TEMPORAL_DELIMITER = 2, OBU_FRAME_HEADER = 3, OBU_TILE_GROUP = 4, OBU_METADATA = 5, OBU_FRAME = 6, OBU_REDUNDANT_FRAME_HEADER = 7, OBU_PADDING = 15, }; struct LoopFilterParams { int32_t loop_filter_level[4]; int32_t loop_filter_sharpness; uint8_t loop_filter_delta_enabled; uint8_t loop_filter_delta_update; // 0 = Intra, Last, Last2, Last3, GF, BWD, ARF int8_t loop_filter_ref_deltas[TOTAL_REFS_PER_FRAME]; // 0 = ZERO_MV, MV int8_t loop_filter_mode_deltas[MAX_MODE_LF_DELTAS]; }; struct TileInfoAv1 { uint32_t uniform_tile_spacing_flag; uint32_t TileColsLog2; uint32_t TileRowsLog2; uint32_t TileCols; uint32_t TileRows; uint32_t TileWidthInSB[AV1_MAX_NUM_TILE_COLS]; // valid for 0 <= i < TileCols uint32_t TileHeightInSB[AV1_MAX_NUM_TILE_ROWS]; // valid for 0 <= i < TileRows uint32_t context_update_tile_id; uint32_t TileSizeBytes; }; struct QuantizationParams { uint32_t base_q_idx; int32_t DeltaQYDc; int32_t DeltaQUDc; int32_t DeltaQUAc; int32_t DeltaQVDc; int32_t DeltaQVAc; uint32_t using_qmatrix; uint32_t qm_y; uint32_t qm_u; uint32_t qm_v; }; struct CdefParams { uint32_t cdef_damping; uint32_t cdef_bits; uint32_t cdef_y_pri_strength[CDEF_MAX_STRENGTHS]; uint32_t cdef_y_sec_strength[CDEF_MAX_STRENGTHS]; uint32_t cdef_uv_pri_strength[CDEF_MAX_STRENGTHS]; uint32_t cdef_uv_sec_strength[CDEF_MAX_STRENGTHS]; }; enum RestorationType { RESTORE_NONE, RESTORE_SWITCHABLE, RESTORE_WIENER, RESTORE_SGRPROJ, RESTORE_TYPES = 4, }; enum { BITDEPTH_8 = 8, BITDEPTH_10 = 10 }; enum { INTRA_FRAME = 0, LAST_FRAME = 1, LAST2_FRAME = 2, LAST3_FRAME = 3, GOLDEN_FRAME = 4, BWDREF_FRAME = 5, ALTREF2_FRAME = 6, ALTREF_FRAME = 7, MAX_REF_FRAMES = 8 }; struct LRParams { enum RestorationType lr_type[MAX_MB_PLANE]; uint32_t lr_unit_shift; uint32_t lr_uv_shift; uint32_t lr_unit_extra_shift; }; enum TX_MODE{ ONLY_4X4 = 0, // only 4x4 transform used TX_MODE_LARGEST, // transform size is the largest possible for pu size TX_MODE_SELECT, // transform specified for each block TX_MODES, }; struct ColorConfig { uint32_t BitDepth ; uint32_t mono_chrome ; uint32_t color_primaries ; uint32_t transfer_characteristics ; uint32_t matrix_coefficients ; uint32_t color_description_present_flag; uint32_t color_range ; uint32_t chroma_sample_position ; uint32_t subsampling_x ; uint32_t subsampling_y ; uint32_t separate_uv_delta_q ; }; typedef struct FrameHeader { uint32_t show_existing_frame; uint32_t frame_to_show_map_idx; uint64_t frame_presentation_time; uint32_t display_frame_id; enum FRAME_TYPE frame_type; uint32_t show_frame; uint32_t showable_frame; uint32_t error_resilient_mode; uint32_t disable_cdf_update; uint32_t allow_screen_content_tools; uint32_t force_integer_mv; uint32_t frame_size_override_flag; uint32_t order_hint; uint32_t primary_ref_frame; uint8_t refresh_frame_flags; uint32_t FrameWidth;//input uint32_t FrameHeight;//input uint32_t use_superres; uint32_t SuperresDenom; uint32_t UpscaledWidth; uint32_t RenderWidth; uint32_t RenderHeight; uint32_t allow_intrabc; int32_t ref_frame_idx[REFS_PER_FRAME]; uint32_t allow_high_precision_mv; enum INTERP_FILTER interpolation_filter; //uint32_t is_motion_mode_switchable; uint32_t use_ref_frame_mvs; uint32_t disable_frame_end_update_cdf; uint32_t sbCols; uint32_t sbRows; uint32_t sbSize; //64 by default struct TileInfoAv1 tile_info; struct QuantizationParams quantization_params; uint32_t delta_q_present; uint32_t delta_q_res; uint32_t delta_lf_present; uint32_t delta_lf_res; uint32_t delta_lf_multi; uint32_t CodedLossless; uint32_t AllLossless; struct LoopFilterParams loop_filter_params; struct CdefParams cdef_params; struct LRParams lr_params; enum TX_MODE TxMode; uint32_t reference_select; uint32_t skipModeAllowed; uint32_t skipModeFrame[2]; uint32_t skip_mode_present; uint32_t allow_warped_motion; uint32_t reduced_tx_set; } FH; typedef struct SequenceHeader { uint32_t seq_profile ; uint32_t still_picture ; uint32_t reduced_still_picture_header ; uint32_t timing_info_present_flag ; uint32_t decoder_model_info_present_flag ; uint32_t operating_points_cnt_minus_1 ; uint32_t operating_point_idc[MAX_NUM_OPERATING_POINTS] ; uint32_t seq_level_idx[MAX_NUM_OPERATING_POINTS] ; uint32_t seq_tier[MAX_NUM_OPERATING_POINTS] ; uint32_t decoder_model_present_for_this_op[MAX_NUM_OPERATING_POINTS] ; uint32_t initial_display_delay_minus_1[MAX_NUM_OPERATING_POINTS] ; uint32_t frame_width_bits ; //15 as default value uint32_t frame_height_bits ; //15 as default value uint32_t frame_id_numbers_present_flag ; // default 0 uint32_t sbSize ; //default 64 uint32_t enable_filter_intra ; uint32_t enable_intra_edge_filter ; uint32_t enable_interintra_compound ; uint32_t enable_masked_compound ; uint32_t enable_warped_motion ; uint32_t enable_dual_filter ; uint32_t enable_order_hint ;//default set to 1 uint32_t enable_jnt_comp ; uint32_t enable_ref_frame_mvs ; uint32_t seq_force_screen_content_tools ; uint32_t seq_force_integer_mv ; uint32_t order_hint_bits_minus1 ; //default 8 - 1 uint32_t enable_superres ; uint32_t enable_cdef ; uint32_t enable_restoration ; struct ColorConfig color_config; //default uint32_t film_grain_param_present ; uint32_t frame_rate_extN; uint32_t frame_rate_extD; } SH; struct ObuExtensionHeader { uint32_t temporal_id; uint32_t spatial_id; }; struct BitOffsets { uint32_t QIndexBitOffset; uint32_t SegmentationBitOffset; uint32_t SegmentationBitSize; uint32_t LoopFilterParamsBitOffset; uint32_t FrameHdrOBUSizeInBits; uint32_t FrameHdrOBUSizeByteOffset; uint32_t UncompressedHeaderByteOffset; uint32_t CDEFParamsBitOffset; uint32_t CDEFParamsSizeInBits; }; struct Av1InputParameters { char* srcyuv; char* recyuv; char* output; uint32_t profile; uint32_t order_hint_bits; uint32_t enable_cdef; uint32_t width; uint32_t height; uint32_t LDB; uint32_t frame_rate_extN; uint32_t frame_rate_extD; uint32_t level; // for brc uint32_t bit_rate; uint8_t MinBaseQIndex; uint8_t MaxBaseQIndex; uint32_t intra_period; uint32_t ip_period; uint32_t RateControlMethod; uint32_t BRefType; int encode_syncmode; int calc_psnr; int frame_count; int frame_width_aligned; int frame_height_aligned; uint32_t base_qindex; int bit_depth; int target_bitrate; int vbr_max_bitrate; int buffer_size; int initial_buffer_fullness; }; static VADisplay va_dpy; static VAProfile av1_profile; static VAEntrypoint entryPoint; static VAConfigAttrib attrib[VAConfigAttribTypeMax]; static VAConfigAttrib config_attrib[VAConfigAttribTypeMax]; static int config_attrib_num = 0; static VASurfaceID src_surface[SURFACE_NUM]; static VABufferID coded_buf[SURFACE_NUM]; static VASurfaceID ref_surface[SURFACE_NUM]; static VAConfigID config_id; static VAContextID context_id; // buffer static VAEncSequenceParameterBufferAV1 seq_param; static VAEncPictureParameterBufferAV1 pic_param; static VAEncTileGroupBufferAV1 tile_group_param; // sh fh ips static struct Av1InputParameters ips; static FH fh; static SH sh; struct BitOffsets offsets; //Default entrypoint for Encode static VAEntrypoint requested_entrypoint = -1; static unsigned long long current_frame_encoding = 0; static unsigned long long current_frame_display = 0; static int current_frame_type; #define current_slot (current_frame_display % SURFACE_NUM) /* thread to save coded data/upload source YUV */ struct storage_task_t { void *next; unsigned long long display_order; unsigned long long encode_order; }; static struct storage_task_t *storage_task_header = NULL, *storage_task_tail = NULL; #define SRC_SURFACE_IN_ENCODING 0 #define SRC_SURFACE_IN_STORAGE 1 static int srcsurface_status[SURFACE_NUM]; //static int encode_syncmode = 0; moved to input pars static pthread_mutex_t encode_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t encode_cond = PTHREAD_COND_INITIALIZER; static pthread_t encode_thread; static FILE *coded_fp = NULL, *srcyuv_fp = NULL, *recyuv_fp = NULL; static unsigned long long srcyuv_frames = 0; static int srcyuv_fourcc = VA_FOURCC_IYUV; static uint64_t frame_size = 0; /* for performance profiling */ static unsigned int UploadPictureTicks = 0; static unsigned int BeginPictureTicks = 0; static unsigned int RenderPictureTicks = 0; static unsigned int EndPictureTicks = 0; static unsigned int SyncPictureTicks = 0; static unsigned int SavePictureTicks = 0; static unsigned int TotalTicks = 0; static unsigned int frame_coded = 0; static int rc_default_modes[] = { VA_RC_VBR, VA_RC_CQP, VA_RC_VBR_CONSTRAINED, VA_RC_CBR, VA_RC_VCM, VA_RC_NONE, }; static int len_ivf_header; static int len_seq_header; static int len_pic_header; /* * Helper function for profiling purposes */ static unsigned int GetTickCount() { struct timeval tv; if (gettimeofday(&tv, NULL)) return 0; return tv.tv_usec / 1000 + tv.tv_sec * 1000; } static int string_to_fourcc(char *str) { CHECK_NULL(str); int fourcc; if (!strncmp(str, "NV12", 4)) fourcc = VA_FOURCC_NV12; else if (!strncmp(str, "IYUV", 4)) fourcc = VA_FOURCC_IYUV; else if (!strncmp(str, "YV12", 4)) fourcc = VA_FOURCC_YV12; else if (!strncmp(str, "UYVY", 4)) fourcc = VA_FOURCC_UYVY; else { printf("Unknow FOURCC\n"); fourcc = -1; } return fourcc; } static int string_to_rc(char *str) { CHECK_NULL(str); int rc_mode; if (!strncmp(str, "NONE", 4)) rc_mode = VA_RC_NONE; else if (!strncmp(str, "CBR", 3)) rc_mode = VA_RC_CBR; else if (!strncmp(str, "VBR", 3)) rc_mode = VA_RC_VBR; else if (!strncmp(str, "VCM", 3)) rc_mode = VA_RC_VCM; else if (!strncmp(str, "CQP", 3)) rc_mode = VA_RC_CQP; else if (!strncmp(str, "VBR_CONSTRAINED", 15)) rc_mode = VA_RC_VBR_CONSTRAINED; else { printf("Unknown RC mode\n"); rc_mode = -1; } return rc_mode; } static void print_help() { printf("./av1encode \n"); printf(" -n -f -o \n"); printf(" --intra_period \n"); printf(" --ip_period \n"); printf(" --rcmode <16 for CQP>\n"); printf(" --srcyuv load YUV from a file\n"); printf(" --fourcc source YUV fourcc\n"); printf(" --recyuv save reconstructed YUV into a file\n"); printf(" --enablePSNR calculate PSNR of recyuv vs. srcyuv\n"); printf(" --level\n"); printf(" --height \n"); printf(" --width \n"); printf(" --base_q_idx 1-255\n"); printf(" --normal_mode select VAEntrypointEncSlice as entrypoint\n"); printf(" --low_power_mode select VAEntrypointEncSliceLP as entrypoint\n"); printf(" sample usage:\n"); printf("./av1encode -n 8 -f 30 --intra_period 4 --ip_period 1 --rcmode CQP --srcyuv ./input.yuv --recyuv ./rec.yuv --fourcc IYUV --level 8 --width 1920 --height 1080 --base_q_idx 128 -o ./out.av1 --LDB --low_power_mode\n" "./av1encode -n 8 -f 30 --intra_period 4 --ip_period 1 --rcmode CBR --srcyuv ./input.yuv --recyuv ./rec.yuv --fourcc IYUV --level 8 --width 1920 --height 1080 --target_bitrate 3360000 -o ./out.av1 --LDB --low_power_mode\n" "./av1encode -n 8 -f 30 --intra_period 4 --ip_period 1 --rcmode VBR --srcyuv ./input.yuv --recyuv ./rec.yuv --fourcc IYUV --level 8 --width 1920 --height 1080 --vbr_max_bitrate 3360000 -o ./out.av1 --LDB --low_power_mode\n"); } static void process_cmdline(int argc, char *argv[]) { int c; const struct option long_opts[] = { {"help", no_argument, NULL, 0 }, {"intra_period", required_argument, NULL, 1 }, {"ip_period", required_argument, NULL, 2 }, {"rcmode", required_argument, NULL, 3 }, {"srcyuv", required_argument, NULL, 4 }, {"recyuv", required_argument, NULL, 5 }, {"fourcc", required_argument, NULL, 6 }, {"syncmode", no_argument, NULL, 7 }, {"enablePSNR", no_argument, NULL, 8 }, {"level", required_argument, NULL, 9 }, {"height", required_argument, NULL, 10 }, {"width", required_argument, NULL, 11 }, {"base_q_idx", required_argument, NULL, 12}, {"LDB", no_argument, NULL, 13}, {"normal_mode", no_argument, NULL, 14}, {"low_power_mode", no_argument, NULL, 15}, {"target_bitrate", required_argument, NULL, 16}, {"vbr_max_bitrate", required_argument, NULL, 17}, {NULL, no_argument, NULL, 0 } }; int long_index; while ((c = getopt_long_only(argc, argv, "n:f:o:t:m:u:d:?", long_opts, &long_index)) != EOF) { switch (c) { case 'n': ips.frame_count = atoi(optarg); break; case 'f': ips.frame_rate_extN = (int)(atoi(optarg) * 100); ips.frame_rate_extD = 100; break; case 'o': ips.output = strdup(optarg); break; case 1: ips.intra_period = atoi(optarg); break; case 2: ips.ip_period = atoi(optarg); break; case 3: ips.RateControlMethod = string_to_rc(optarg); //16:cqp 2:CBR 4:VBR break; case 4: ips.srcyuv = strdup(optarg); break; case 5: ips.recyuv = strdup(optarg); break; case 6: srcyuv_fourcc = string_to_fourcc(optarg); break; case 7: ips.encode_syncmode = 1; break; case 8: ips.calc_psnr = 1; break; case 9: ips.level = atoi(optarg); break; case 10: ips.height = atoi(optarg); ips.frame_height_aligned = (ips.height + 63) & (~63); break; case 11: ips.width = atoi(optarg); ips.frame_width_aligned = (ips.width + 63) & (~63); break; case 12: ips.base_qindex = atoi(optarg); break; case 13: ips.LDB = 1; break; case 14: requested_entrypoint = VAEntrypointEncSlice; break; case 15: requested_entrypoint = VAEntrypointEncSliceLP; break; case 't': case 16: ips.target_bitrate = atoi(optarg); break; case 'm': case 17: ips.vbr_max_bitrate = atoi(optarg); break; case 'u': ips.buffer_size = atoi(optarg) * 8000; break; case 'd': ips.initial_buffer_fullness = atoi(optarg) * 8000; break; case 0: case ':': case '?': print_help(); exit(0); } } // init other input parameters as default value ips.MaxBaseQIndex = 255; ips.MinBaseQIndex = 1; ips.bit_depth = 8; if (ips.frame_rate_extD == 0) { ips.frame_rate_extN = 3000; ips.frame_rate_extD = 100; } int default_bitrate = (long long int) ips.height * ips.width * 12 * ips.frame_rate_extN / ips.frame_rate_extD / 50; // For CBR, target bitrate should be set if(ips.RateControlMethod == VA_RC_CBR) { if (ips.target_bitrate == 0) { ips.target_bitrate = default_bitrate; } } // For VBR, max bitrate should be set else if (ips.RateControlMethod == VA_RC_VBR) { if (ips.target_bitrate == 0 && ips.vbr_max_bitrate == 0) { ips.vbr_max_bitrate = default_bitrate; } else if (ips.vbr_max_bitrate == 0) { ips.vbr_max_bitrate = ips.target_bitrate; } } // interface with IO /* open source file */ if (ips.srcyuv) { srcyuv_fp = fopen(ips.srcyuv, "r"); if (srcyuv_fp == NULL) printf("Open source YUV file %s failed, use auto-generated YUV data\n", ips.srcyuv); else { struct stat tmp; int ret = fstat(fileno(srcyuv_fp), &tmp); CHECK_CONDITION(ret == 0); srcyuv_frames = tmp.st_size / (ips.width * ips.height * 1.5); printf("Source YUV file %s with %llu frames\n", ips.srcyuv, srcyuv_frames); if (ips.frame_count == 0) ips.frame_count = srcyuv_frames; } } /* open source file */ if (ips.recyuv) { recyuv_fp = fopen(ips.recyuv, "w+"); if (recyuv_fp == NULL) printf("Open reconstructed YUV file %s failed\n", ips.recyuv); } if (ips.output == NULL) { struct stat buf; if (stat("/tmp", &buf) == 0) ips.output = strdup("/tmp/test.av1"); else if (stat("/sdcard", &buf) == 0) ips.output = strdup("/sdcard/test.av1"); else ips.output = strdup("./test.av1"); } /* store coded data into a file */ if (ips.output) { coded_fp = fopen(ips.output, "w+"); } else { printf("Copy file string failed"); exit(1); } if (coded_fp == NULL) { printf("Open file %s failed, exit\n", ips.output); exit(1); } } static char *rc_to_string(int rcmode) { switch (rcmode) { case VA_RC_NONE: return "NONE"; case VA_RC_CBR: return "CBR"; case VA_RC_VBR: return "VBR"; case VA_RC_VCM: return "VCM"; case VA_RC_CQP: return "CQP"; case VA_RC_VBR_CONSTRAINED: return "VBR_CONSTRAINED"; default: return "Unknown"; } } static int print_input() { printf("frame count: %d \n", ips.frame_count); printf("frame rate: %d \n", ips.frame_rate_extN / ips.frame_rate_extD); printf("Intra period: %d \n", ips.intra_period); printf("Gop ref dist: %d \n", ips.ip_period); printf("rcmode: %s \n", rc_to_string(ips.RateControlMethod)); printf("source yuv: %s \n", ips.srcyuv); printf("recon yuv: %s \n", ips.recyuv); printf("output bitstream: %s \n", ips.output); printf("level index: %d \n", ips.level); printf("frame height: %d \n", ips.height); printf("frame width: %d \n", ips.width); printf("base_q_index: %d \n", ips.base_qindex); printf("target_bitrate: %d bps\n", ips.target_bitrate); printf("vbr_max_bitrate: %d bps\n", ips.vbr_max_bitrate); return 0; } static int init_va(void) { va_dpy = va_open_display(); VAStatus va_status; int major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); CHECK_VASTATUS(va_status, "vaInitialize"); av1_profile = VAProfileAV1Profile0; // select entrypoint int num_entrypoints = vaMaxNumEntrypoints(va_dpy); VAEntrypoint* entrypoints = malloc(num_entrypoints * sizeof(*entrypoints)); if (!entrypoints) { fprintf(stderr, "error: failed to initialize VA entrypoints array\n"); exit(1); } vaQueryConfigEntrypoints(va_dpy, av1_profile, entrypoints, &num_entrypoints); int support_encode = 0; for (int slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) { if (requested_entrypoint == -1) { //Select the entry point based on what is avaiable if ((entrypoints[slice_entrypoint] == VAEntrypointEncSlice) || (entrypoints[slice_entrypoint] == VAEntrypointEncSliceLP)) { support_encode = 1; entryPoint = entrypoints[slice_entrypoint]; break; } } else if ((entrypoints[slice_entrypoint] == requested_entrypoint)) { //Select the entry point based on what was requested in cmd line option support_encode = 1; entryPoint = entrypoints[slice_entrypoint]; break; } } if(entrypoints) free(entrypoints); if (support_encode == 0) { printf("Can't find avaiable or requested entrypoints for AV1 profiles\n"); exit(1); } unsigned int i; for (i = 0; i < VAConfigAttribTypeMax; i++) attrib[i].type = i; va_status = vaGetConfigAttributes(va_dpy, av1_profile, entryPoint, &attrib[0], VAConfigAttribTypeMax); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); /* check the interested configattrib */ if ((attrib[VAConfigAttribRTFormat].value & VA_RT_FORMAT_YUV420) == 0) { printf("Not find desired YUV420 RT format\n"); exit(1); } else { config_attrib[config_attrib_num].type = VAConfigAttribRTFormat; config_attrib[config_attrib_num].value = VA_RT_FORMAT_YUV420; config_attrib_num++; } if (attrib[VAConfigAttribRateControl].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribRateControl].value; printf("Support rate control mode (0x%x):", tmp); if (tmp & VA_RC_NONE) printf("NONE "); if (tmp & VA_RC_CBR) printf("CBR "); if (tmp & VA_RC_VBR) printf("VBR "); if (tmp & VA_RC_VCM) printf("VCM "); if (tmp & VA_RC_CQP) printf("CQP "); if (tmp & VA_RC_VBR_CONSTRAINED) printf("VBR_CONSTRAINED "); printf("\n"); if (ips.RateControlMethod == -1 || !(ips.RateControlMethod & tmp)) { if (ips.RateControlMethod != -1) { printf("Warning: Don't support the specified RateControl mode: %s!!!, switch to ", rc_to_string(ips.RateControlMethod)); } for (i = 0; i < sizeof(rc_default_modes) / sizeof(rc_default_modes[0]); i++) { if (rc_default_modes[i] & tmp) { ips.RateControlMethod = rc_default_modes[i]; break; } } printf("RateControl mode: %s\n", rc_to_string(ips.RateControlMethod)); } config_attrib[config_attrib_num].type = VAConfigAttribRateControl; config_attrib[config_attrib_num].value = ips.RateControlMethod; config_attrib_num++; } if (attrib[VAConfigAttribEncPackedHeaders].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribEncPackedHeaders].value; printf("Support VAConfigAttribEncPackedHeaders\n"); config_attrib[config_attrib_num].type = VAConfigAttribEncPackedHeaders; config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE; if (tmp & VA_ENC_PACKED_HEADER_SEQUENCE) { printf("Support packed sequence headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SEQUENCE; } if (tmp & VA_ENC_PACKED_HEADER_PICTURE) { printf("Support packed picture headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_PICTURE; } if (tmp & VA_ENC_PACKED_HEADER_SLICE) { printf("Support packed slice headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SLICE; } if (tmp & VA_ENC_PACKED_HEADER_MISC) { printf("Support packed misc headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_MISC; } config_attrib_num++; } if (attrib[VAConfigAttribEncInterlaced].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribEncInterlaced].value; printf("Support VAConfigAttribEncInterlaced\n"); if (tmp & VA_ENC_INTERLACED_FRAME) printf("support VA_ENC_INTERLACED_FRAME\n"); if (tmp & VA_ENC_INTERLACED_FIELD) printf("Support VA_ENC_INTERLACED_FIELD\n"); if (tmp & VA_ENC_INTERLACED_MBAFF) printf("Support VA_ENC_INTERLACED_MBAFF\n"); if (tmp & VA_ENC_INTERLACED_PAFF) printf("Support VA_ENC_INTERLACED_PAFF\n"); config_attrib[config_attrib_num].type = VAConfigAttribEncInterlaced; config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE; config_attrib_num++; } return 0; } static int setup_encode() { VAStatus va_status; VASurfaceID *tmp_surfaceid; int codedbuf_size, i; va_status = vaCreateConfig(va_dpy, av1_profile, entryPoint, &config_attrib[0], config_attrib_num, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); /* create source surfaces */ va_status = vaCreateSurfaces(va_dpy, VA_RT_FORMAT_YUV420, ips.frame_width_aligned, ips.frame_height_aligned, &src_surface[0], SURFACE_NUM, NULL, 0); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); /* create reference surfaces */ va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, ips.frame_width_aligned, ips.frame_height_aligned, &ref_surface[0], SURFACE_NUM, NULL, 0 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); tmp_surfaceid = calloc(2 * SURFACE_NUM, sizeof(VASurfaceID)); if (tmp_surfaceid) { memcpy(tmp_surfaceid, src_surface, SURFACE_NUM * sizeof(VASurfaceID)); memcpy(tmp_surfaceid + SURFACE_NUM, ref_surface, SURFACE_NUM * sizeof(VASurfaceID)); } /* Create a context for this encode pipe */ va_status = vaCreateContext(va_dpy, config_id, ips.frame_width_aligned, ips.frame_height_aligned, VA_PROGRESSIVE, tmp_surfaceid, 2 * SURFACE_NUM, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); free(tmp_surfaceid); codedbuf_size = ((long long int) ips.frame_width_aligned * ips.frame_height_aligned * 400) / (16 * 16); for (i = 0; i < SURFACE_NUM; i++) { /* create coded buffer once for all * other VA buffers which won't be used again after vaRenderPicture. * so APP can always vaCreateBuffer for every frame * but coded buffer need to be mapped and accessed after vaRenderPicture/vaEndPicture * so VA won't maintain the coded buffer */ va_status = vaCreateBuffer(va_dpy, context_id, VAEncCodedBufferType, codedbuf_size, 1, NULL, &coded_buf[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } return 0; } static int release_encode() { int i; vaDestroySurfaces(va_dpy, &src_surface[0], SURFACE_NUM); vaDestroySurfaces(va_dpy, &ref_surface[0], SURFACE_NUM); for (i = 0; i < SURFACE_NUM; i++) vaDestroyBuffer(va_dpy, coded_buf[i]); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); return 0; } static int deinit_va() { vaTerminate(va_dpy); va_close_display(va_dpy); return 0; } /* * Return displaying order with specified periods and encoding order * displaying_order: displaying order * frame_type: frame type */ void encoding2display_order( unsigned long long encoding_order, int intra_period, unsigned long long *displaying_order, int *frame_type) { // simple case for IPPP av1 *displaying_order = encoding_order; // all KEY FRAME *frame_type = KEY_FRAME; *frame_type = (encoding_order % intra_period) ? INTER_FRAME : KEY_FRAME; return; } static void fill_sps_header() { memset(&sh, 0, sizeof(sh)); sh.seq_level_idx[0] = ips.level; sh.frame_width_bits = 15; sh.frame_height_bits = 15; sh.sbSize = 64; sh.order_hint_bits_minus1 = 8 - 1; sh.enable_cdef = 1; sh.enable_order_hint = 1; sh.color_config.separate_uv_delta_q = 1; } static void fill_pps_header(uint64_t displaying_order) { fh.show_existing_frame = 0; fh.frame_to_show_map_idx = 0; fh.frame_presentation_time = 0; fh.display_frame_id = 0; fh.frame_type = current_frame_type; fh.show_frame = 1; fh.showable_frame = 1; fh.error_resilient_mode = (fh.frame_type == KEY_FRAME) ? 1 : 0; fh.disable_cdf_update = 0; fh.allow_screen_content_tools = 0; fh.force_integer_mv = 0; fh.frame_size_override_flag = 0; fh.order_hint = displaying_order; //for I/P frame fh.primary_ref_frame = (fh.frame_type == KEY_FRAME || fh.frame_type == INTRA_ONLY_FRAME) ? PRIMARY_REF_NONE : 0; // depends on reference frames // by default, always refresh idx0 fh.refresh_frame_flags = (fh.frame_type == KEY_FRAME || fh.frame_type == INTRA_ONLY_FRAME) ? 0xff : 0x01; fh.FrameWidth = ips.width; fh.FrameHeight = ips.height; fh.use_superres = 0; fh.SuperresDenom = 0; fh.UpscaledWidth = fh.FrameWidth; fh.RenderWidth = fh.FrameWidth; fh.RenderHeight = fh.FrameHeight; fh.allow_intrabc = 0; for(uint8_t i = 0; i < REFS_PER_FRAME; i++) fh.ref_frame_idx[i] = 0; fh.allow_high_precision_mv = 0; fh.interpolation_filter = 0; fh.use_ref_frame_mvs = 0; fh.disable_frame_end_update_cdf = 0; fh.sbCols = ((fh.FrameWidth+63)&(~63))/64; fh.sbRows = ((fh.FrameHeight+63)&(~63))/64; fh.sbSize = 64; fh.tile_info.uniform_tile_spacing_flag = 1; fh.tile_info.context_update_tile_id = 0; fh.quantization_params.base_q_idx = ips.base_qindex; fh.quantization_params.DeltaQYDc = 0; fh.quantization_params.DeltaQUDc = 0; fh.quantization_params.DeltaQUAc = 0; fh.quantization_params.DeltaQVDc = 0; fh.quantization_params.DeltaQVAc = 0; fh.quantization_params.using_qmatrix = 0; fh.quantization_params.qm_y = 15; fh.quantization_params.qm_u = 15; fh.quantization_params.qm_v = 15; fh.delta_q_present = 0; fh.delta_q_res = 0; fh.delta_lf_present = 1; fh.delta_lf_res = 0; fh.delta_lf_multi = 1; fh.CodedLossless = 0; fh.AllLossless = 0; fh.cdef_params.cdef_damping = 5; fh.cdef_params.cdef_bits = 3; fh.cdef_params.cdef_y_pri_strength[0] = 9; fh.cdef_params.cdef_y_sec_strength[0] = 0; fh.cdef_params.cdef_uv_pri_strength[0] = 9; fh.cdef_params.cdef_uv_sec_strength[0] = 0; fh.cdef_params.cdef_y_pri_strength[1] = 12; fh.cdef_params.cdef_y_sec_strength[1] = 2; fh.cdef_params.cdef_uv_pri_strength[1] = 12; fh.cdef_params.cdef_uv_sec_strength[1] = 2; fh.cdef_params.cdef_y_pri_strength[2] = 0; fh.cdef_params.cdef_y_sec_strength[2] = 0; fh.cdef_params.cdef_uv_pri_strength[2] = 0; fh.cdef_params.cdef_uv_sec_strength[2] = 0; fh.cdef_params.cdef_y_pri_strength[3] = 6; fh.cdef_params.cdef_y_sec_strength[3] = 0; fh.cdef_params.cdef_uv_pri_strength[3] = 6; fh.cdef_params.cdef_uv_sec_strength[3] = 0; fh.cdef_params.cdef_y_pri_strength[4] = 2; fh.cdef_params.cdef_y_sec_strength[4] = 0; fh.cdef_params.cdef_uv_pri_strength[4] = 2; fh.cdef_params.cdef_uv_sec_strength[4] = 0; fh.cdef_params.cdef_y_pri_strength[5] = 4; fh.cdef_params.cdef_y_sec_strength[5] = 1; fh.cdef_params.cdef_uv_pri_strength[5] = 4; fh.cdef_params.cdef_uv_sec_strength[5] = 1; fh.cdef_params.cdef_y_pri_strength[6] = 1; fh.cdef_params.cdef_y_sec_strength[6] = 0; fh.cdef_params.cdef_uv_pri_strength[6] = 1; fh.cdef_params.cdef_uv_sec_strength[6] = 0; fh.cdef_params.cdef_y_pri_strength[7] = 2; fh.cdef_params.cdef_y_sec_strength[7] = 1; fh.cdef_params.cdef_uv_pri_strength[7] = 2; fh.cdef_params.cdef_uv_sec_strength[7] = 1; fh.loop_filter_params.loop_filter_level[0] = 15; fh.loop_filter_params.loop_filter_level[1] = 15; fh.loop_filter_params.loop_filter_level[2] = 8; fh.loop_filter_params.loop_filter_level[3] = 8; fh.loop_filter_params.loop_filter_sharpness = 0; fh.loop_filter_params.loop_filter_delta_enabled = 0; fh.loop_filter_params.loop_filter_delta_update = 0; fh.TxMode = TX_MODE_SELECT; fh.reference_select = ips.LDB ? 1 : 0; fh.skipModeAllowed = 0; fh.skipModeFrame[0] = 0; fh.skipModeFrame[1] = 0; fh.allow_warped_motion = 0; fh.reduced_tx_set = 1; } // brief interface with va, render bitstream static void va_render_packed_data(bitstream* bs) { CHECK_BS_NULL(bs); VAEncPackedHeaderParameterBuffer packedheader_param_buffer; VABufferID packed_para_bufid = VA_INVALID_ID; VABufferID packed_data_bufid = VA_INVALID_ID; VABufferID render_id[2] = {VA_INVALID_ID}; unsigned int length_in_bits = bs->bit_offset; unsigned char *packedpic_buffer = bs->buffer; VAStatus va_status; packedheader_param_buffer.type = VAEncPackedHeaderPicture; packedheader_param_buffer.bit_length = length_in_bits; packedheader_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer, &packed_para_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packedpic_buffer, &packed_data_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); render_id[0] = packed_para_bufid; render_id[1] = packed_data_bufid; va_status = vaRenderPicture(va_dpy, context_id, render_id, 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); //free(packedpic_buffer); free outside this function call if (packed_para_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packed_para_bufid); packed_para_bufid = VA_INVALID_ID; } if (packed_data_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packed_data_bufid); packed_data_bufid = VA_INVALID_ID; } } static void render_ivf_frame_header() { // write 12 empty byte to driver // IVF frame header is filled after encoding // first 4 byte is u32 for bit stream length // last 8 byte is u64 for display order bitstream bs; bitstream_start(&bs); for (size_t i = 0; i < 12; i++) { put_ui(&bs, 0x00, 8); } va_render_packed_data(&bs); bitstream_free(&bs); } static void render_ivf_header() { bitstream bs; bitstream_start(&bs); uint32_t ivfSeqHeader[11] = {0x46494B44, 0x00200000, 0x31305641, (uint32_t)(fh.UpscaledWidth + (fh.FrameHeight << 16)), ips.frame_rate_extN,// FrameRateExtN ips.frame_rate_extD,// FrameRateExtD ips.frame_count/*numFramesInFile*/, 0x00000000, 0,0,0 }; // uint8_t* hdr = (uint8_t*) ivfSeqHeader; for (size_t i = 0; i < 44; i++) { put_ui(&bs, hdr[i], 8); } va_render_packed_data(&bs); bitstream_free(&bs); } static void render_TD() { // OBU_TEMPORAL_DELIMITER bitstream bs; bitstream_start(&bs); put_ui(&bs, 0x12, 8); put_ui(&bs, 0x00, 8); va_render_packed_data(&bs); bitstream_free(&bs); } static void build_sps_buffer(VAEncSequenceParameterBufferAV1* sps) { CHECK_NULL(sps); sps->seq_profile = (uint8_t)sh.seq_profile; sps->seq_level_idx = (uint8_t)(sh.seq_level_idx[0]); sps->intra_period = ips.intra_period; sps->ip_period = ips.ip_period; if (ips.RateControlMethod == VA_RC_CBR) { sps->bits_per_second = ips.target_bitrate; } else if (ips.RateControlMethod == VA_RC_VBR) { sps->bits_per_second = ips.vbr_max_bitrate; } sps->order_hint_bits_minus_1 = (uint8_t)(sh.order_hint_bits_minus1); sps->seq_fields.bits.still_picture = sh.still_picture; sps->seq_fields.bits.enable_filter_intra = sh.enable_filter_intra; sps->seq_fields.bits.enable_intra_edge_filter = sh.enable_intra_edge_filter; sps->seq_fields.bits.enable_interintra_compound = sh.enable_interintra_compound; sps->seq_fields.bits.enable_masked_compound = sh.enable_masked_compound; sps->seq_fields.bits.enable_warped_motion = sh.enable_warped_motion; sps->seq_fields.bits.enable_dual_filter = sh.enable_dual_filter; sps->seq_fields.bits.enable_order_hint = sh.enable_order_hint; sps->seq_fields.bits.enable_jnt_comp = sh.enable_jnt_comp; sps->seq_fields.bits.enable_ref_frame_mvs = sh.enable_ref_frame_mvs; sps->seq_fields.bits.enable_superres = sh.enable_superres; sps->seq_fields.bits.enable_cdef = sh.enable_cdef; sps->seq_fields.bits.enable_restoration = sh.enable_restoration; sps->seq_fields.bits.bit_depth_minus8 = ips.bit_depth - 8; sps->seq_fields.bits.subsampling_x = 0; sps->seq_fields.bits.subsampling_y = 0; } static void render_sequence() { VABufferID seq_param_buf_id = VA_INVALID_ID; VAStatus va_status; VAEncSequenceParameterBufferAV1 sps_buffer; memset(&sps_buffer, 0, sizeof(sps_buffer)); build_sps_buffer(&sps_buffer); va_status = vaCreateBuffer(va_dpy, context_id, VAEncSequenceParameterBufferType, sizeof(sps_buffer), 1, &sps_buffer, &seq_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer");; va_status = vaRenderPicture(va_dpy, context_id, &seq_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); if (seq_param_buf_id != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, seq_param_buf_id); seq_param_buf_id = VA_INVALID_ID; } } static void render_rc_buffer() { VABufferID rc_param_buf = VA_INVALID_ID; VAStatus va_status; VABufferID render_id = VA_INVALID_ID; VAEncMiscParameterBuffer *misc_param; VAEncMiscParameterRateControl *misc_rate_ctrl; va_status = vaCreateBuffer(va_dpy, context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl), 1, NULL, &rc_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, rc_param_buf, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeRateControl; misc_rate_ctrl = (VAEncMiscParameterRateControl *)misc_param->data; memset(misc_rate_ctrl, 0, sizeof(*misc_rate_ctrl)); if (ips.RateControlMethod == VA_RC_CBR) { misc_rate_ctrl->bits_per_second = ips.target_bitrate; } else if (ips.RateControlMethod == VA_RC_VBR) { misc_rate_ctrl->bits_per_second = ips.vbr_max_bitrate; if (ips.target_bitrate != 0) { misc_rate_ctrl->target_percentage = MIN(100, (uint32_t) (100.0 * ips.target_bitrate / ips.vbr_max_bitrate)); } } vaUnmapBuffer(va_dpy, rc_param_buf); render_id = rc_param_buf; va_status = vaRenderPicture(va_dpy, context_id, &render_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); if (rc_param_buf != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, rc_param_buf); rc_param_buf = VA_INVALID_ID; } } static void render_hrd_buffer() { VABufferID param_buf = VA_INVALID_ID; VAStatus va_status; VABufferID render_id = VA_INVALID_ID; VAEncMiscParameterBuffer *misc_param; VAEncMiscParameterHRD *misc_hrd; va_status = vaCreateBuffer(va_dpy, context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterHRD), 1, NULL, ¶m_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, param_buf, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeHRD; misc_hrd = (VAEncMiscParameterHRD *)misc_param->data; memset(misc_hrd, 0, sizeof(*misc_hrd)); misc_hrd->initial_buffer_fullness = ips.initial_buffer_fullness; misc_hrd->buffer_size = ips.buffer_size; vaUnmapBuffer(va_dpy, param_buf); render_id = param_buf; va_status = vaRenderPicture(va_dpy, context_id, &render_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); if (param_buf != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, param_buf); param_buf = VA_INVALID_ID; } } static void render_fr_buffer() { VABufferID param_buf = VA_INVALID_ID; VAStatus va_status; VABufferID render_id = VA_INVALID_ID; VAEncMiscParameterBuffer *misc_param; VAEncMiscParameterFrameRate *misc_fr; va_status = vaCreateBuffer(va_dpy, context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterFrameRate), 1, NULL, ¶m_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, param_buf, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeFrameRate; misc_fr = (VAEncMiscParameterFrameRate *)misc_param->data; memset(misc_fr, 0, sizeof(*misc_fr)); misc_fr->framerate = ips.frame_rate_extN | (ips.frame_rate_extD << 16); vaUnmapBuffer(va_dpy, param_buf); render_id = param_buf; va_status = vaRenderPicture(va_dpy, context_id, &render_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); if (param_buf != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, param_buf); param_buf = VA_INVALID_ID; } } static void render_misc_buffer() { render_rc_buffer(); if (ips.buffer_size != 0 || ips.initial_buffer_fullness != 0) { render_hrd_buffer(); } render_fr_buffer(); } static void render_tile_group() { VABufferID tile_param_buf_id = VA_INVALID_ID; VAStatus va_status; VAEncTileGroupBufferAV1 tile_group_buffer = {0}; //default setting va_status = vaCreateBuffer(va_dpy, context_id, VAEncSliceParameterBufferType, sizeof(tile_group_buffer), 1, &tile_group_buffer, &tile_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer");; va_status = vaRenderPicture(va_dpy, context_id, &tile_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); if (tile_param_buf_id != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, tile_param_buf_id); tile_param_buf_id = VA_INVALID_ID; } } static void pack_obu_header(bitstream *bs, int obu_type, uint32_t obu_extension_flag) { put_ui(bs, 0, 1); //obu_forbidden_bit put_ui(bs, obu_type, 4); //type put_ui(bs, obu_extension_flag, 1); put_ui(bs, 1, 1); //obu_has_size_field put_ui(bs, 0, 1); //reserved if (obu_extension_flag) { // Obu Extension Header // not written to bitstream by default } } static void pack_obu_header_size(bitstream *bs, uint32_t value, uint8_t fixed_output_len) { // pack leb128 uint64_t leb128_buf = 0; uint8_t leb128_size = 0; uint8_t* buf = (uint8_t*)(&leb128_buf); if (!fixed_output_len) { // general encoding do { buf[leb128_size] = value & 0x7fU; if (value >>= 7) { buf[leb128_size] |= 0x80U; } leb128_size++; } while (value); } else { // get fixed len of output, in this case, LEB128 will have fixed length uint8_t value_byte_count = 0; do { buf[value_byte_count++] = value & 0x7fU; value >>= 7; } while (value); for (int i = 0; i < fixed_output_len - 1; i++) { buf[i] |= 0x80U; leb128_size++; } leb128_size++; } // write to bitstream const uint8_t* ptr = (uint8_t*)(&leb128_buf); for (uint8_t i = 0; i < leb128_size; i++) put_ui(bs, ptr[i], 8); } static void pack_operating_points(bitstream* bs) { put_ui(bs, sh.operating_points_cnt_minus_1, 5); for(uint8_t i = 0;i <= sh.operating_points_cnt_minus_1;i++) { //put_ui(bs, sh.operating_point_idc[i], 12); put_ui(bs, sh.operating_point_idc[i] >> 4, 8); put_ui(bs, sh.operating_point_idc[i] & 0x9f, 4); put_ui(bs, sh.seq_level_idx[i], 5); if(sh.seq_level_idx[i]>7) put_ui(bs, sh.seq_tier[i], 1); } } static void pack_frame_size_info(bitstream* bs) { //pack frame size info put_ui(bs, 15, 4);//frame_width_bits_minus_1 put_ui(bs, 15, 4);//frame_height_bits_minus_1 put_ui(bs, fh.UpscaledWidth - 1, 16);//max_frame_width_minus_1 put_ui(bs, fh.FrameHeight - 1, 16);//max_frame_height_minus_1 // end of pack frame size info } static void pack_seq_data(bitstream *bs) { put_ui(bs, sh.seq_profile, 3); put_ui(bs, sh.still_picture, 1); put_ui(bs, 0, 1);//reduced_still_picture_header put_ui(bs, 0, 1);//timing_info_present_flag put_ui(bs, 0, 1);//initial_display_delay_present_flag pack_operating_points(bs); pack_frame_size_info(bs); put_ui(bs, 0, 1);//frame_id_numbers_present_flag (affects FH) put_ui(bs, 0, 1);//use_128x128_superblock put_ui(bs, sh.enable_filter_intra, 1);//enable_filter_intra put_ui(bs, sh.enable_intra_edge_filter, 1);//enable_intra_edge_filter put_ui(bs, sh.enable_interintra_compound, 1);//enable_interintra_compound put_ui(bs, sh.enable_masked_compound, 1);//enable_masked_compound put_ui(bs, sh.enable_warped_motion, 1);//enable_warped_motion put_ui(bs, sh.enable_dual_filter, 1);//enable_dual_filter put_ui(bs, sh.enable_order_hint, 1);//enable_order_hint if (sh.enable_order_hint) { put_ui(bs, 0, 1); //enable_jnt_comp put_ui(bs, fh.use_ref_frame_mvs, 1);//enable_ref_frame_mvs } put_ui(bs, 1, 1);//seq_choose_screen_content_tools put_ui(bs, sh.seq_force_integer_mv, 1);//seq_choose_integer_mv if (!sh.seq_force_integer_mv) { put_ui(bs, 0, 1); //seq_force_integer_mv } if (sh.enable_order_hint) { put_ui(bs, sh.order_hint_bits_minus1, 3);//affects FH } put_ui(bs, sh.enable_superres, 1);//enable_superres put_ui(bs, sh.enable_cdef, 1);//enable_cdef put_ui(bs, sh.enable_restoration, 1);//enable_restoration // pack color config put_ui(bs, sh.color_config.BitDepth == BITDEPTH_10 ? 1 : 0, 1); if (sh.seq_profile != 1) put_ui(bs, 0, 1);; //mono_chrome put_ui(bs, sh.color_config.color_description_present_flag, 1); if (sh.color_config.color_description_present_flag) { put_ui(bs, sh.color_config.color_primaries, 8); put_ui(bs, sh.color_config.transfer_characteristics, 8); put_ui(bs, sh.color_config.matrix_coefficients, 8); } put_ui(bs, sh.color_config.color_range, 1);//color_range if (sh.seq_profile == 0) put_ui(bs, 0, 2); //chroma_sample_position put_ui(bs, sh.color_config.separate_uv_delta_q, 1); //separate_uv_delta_q put_ui(bs, 0, 1);//film_grain_params_present put_trailing_bits(bs); } static void build_packed_seq_header(bitstream* bs) { CHECK_BS_NULL(bs); CHECK_CONDITION(bs->bit_offset == 0); // handle vairable length // seq obu data bitstream obu_data; bitstream_start(&obu_data); pack_seq_data(&obu_data); uint32_t obu_extension_flag = sh.operating_points_cnt_minus_1 ? 1 : 0; pack_obu_header(bs, OBU_SEQUENCE_HEADER, obu_extension_flag); //calculate data size uint32_t obu_size_in_bytes = (obu_data.bit_offset + 7) / 8; pack_obu_header_size(bs, obu_size_in_bytes, 0); bitstream_cat(bs, &obu_data); } static int render_packedsequence() { int len; bitstream bs; bitstream_start(&bs); build_packed_seq_header(&bs); len = (bs.bit_offset + 7) / 8; va_render_packed_data(&bs); bitstream_free(&bs); return len; } static void pack_show_existing_frame(bitstream* bs) { return; //only for B frame, not enable by default } static void pack_show_frame(bitstream* bs) { put_ui(bs, fh.show_frame, 1); if(!fh.show_frame) put_ui(bs, fh.showable_frame, 1); } static void pack_error_resilient(bitstream* bs) { if (!(fh.frame_type == SWITCH_FRAME || (fh.frame_type == KEY_FRAME && fh.show_frame))) put_ui(bs, 0, 1); //error_resilient_mode } static void pack_ref_frame_flags(bitstream* bs, uint8_t error_resilient_mode, uint8_t isI) { if(!(isI || error_resilient_mode)) put_ui(bs, 0, 3); //primary_ref_frame if (!(fh.frame_type == SWITCH_FRAME || (fh.frame_type == KEY_FRAME && fh.show_frame))) put_ui(bs, fh.refresh_frame_flags, NUM_REF_FRAMES); } static void pack_interpolation_filter(bitstream* bs) { const uint8_t is_filter_switchable = (fh.interpolation_filter == 4 ? 1 : 0); put_ui(bs, is_filter_switchable, 1);//is_filter_switchable if (!is_filter_switchable) { put_ui(bs, fh.interpolation_filter, 2);//interpolation_filter } } static void pack_render_size(bitstream* bs) { uint32_t render_and_frame_size_different = 0; put_ui(bs, render_and_frame_size_different, 1);//render_and_frame_size_different } static void pack_frame_size(bitstream *bs) { if (fh.frame_size_override_flag) { put_ui(bs, fh.UpscaledWidth - 1, sh.frame_width_bits + 1); //frame_width_minus_1 put_ui(bs, fh.FrameHeight - 1, sh.frame_height_bits + 1); //frame_height_minus_1 } } static void pack_frame_size_with_refs(bitstream* bs) { CHECK_BS_NULL(bs); uint32_t found_ref = 0; for (int8_t ref = 0; ref < REFS_PER_FRAME; ref++) put_ui(bs, found_ref, 1);//found_ref // if found_ref == 9 pack_frame_size(bs); pack_render_size(bs); } static void pack_frame_ref_info(bitstream* bs, uint8_t error_resilient_mode) { if (sh.enable_order_hint) put_ui(bs, 0, 1); //frame_refs_short_signaling for (uint8_t ref = 0; ref < REFS_PER_FRAME; ref++) put_ui(bs, fh.ref_frame_idx[ref], REF_FRAMES_LOG2); if (fh.frame_size_override_flag && !error_resilient_mode) { pack_frame_size_with_refs(bs); } else { pack_frame_size(bs); pack_render_size(bs); } put_ui(bs, fh.allow_high_precision_mv, 1); //allow_high_precision_mv //PackInterpolationFilter(bs, fh); pack_interpolation_filter(bs); put_ui(bs, 0, 1);//is_motion_switchable if (fh.use_ref_frame_mvs) put_ui(bs, 1, 1); //use_ref_frame_mvs } static void pack_tile_info(bitstream* bs) { // use single tile by default put_ui(bs, 1, 1);//uniform_tile_spacing_flag put_ui(bs, 0, 1);//increment_tile_cols_log2 put_ui(bs, 0, 1);//increment_tile_rows_log2 } static uint16_t write_SU(int32_t value, uint16_t n) { int16_t signMask = 1 << (n - 1); if (value & signMask) { value = value - 2 * signMask; } return value; } static void pack_delta_q_value(bitstream* bs, int32_t deltaQ) { if (deltaQ) { put_ui(bs, 1, 1); put_ui(bs, write_SU(deltaQ, 7), 7); } else put_ui(bs, 0, 1); } static void pack_quantization_params(bitstream* bs) { put_ui(bs, fh.quantization_params.base_q_idx, 8); //base_q_idx pack_delta_q_value(bs, fh.quantization_params.DeltaQYDc); bool diff_uv_delta = false; if (fh.quantization_params.DeltaQUDc != fh.quantization_params.DeltaQVDc || fh.quantization_params.DeltaQUAc != fh.quantization_params.DeltaQVAc) diff_uv_delta = true; if (sh.color_config.separate_uv_delta_q) put_ui(bs, diff_uv_delta, 1); pack_delta_q_value(bs, fh.quantization_params.DeltaQUDc); pack_delta_q_value(bs, fh.quantization_params.DeltaQUAc); if (diff_uv_delta) { pack_delta_q_value(bs, fh.quantization_params.DeltaQVDc); pack_delta_q_value(bs, fh.quantization_params.DeltaQVAc); } put_ui(bs, fh.quantization_params.using_qmatrix, 1);//using_qmatrix if (fh.quantization_params.using_qmatrix) { put_ui(bs, fh.quantization_params.qm_y, 4); put_ui(bs, fh.quantization_params.qm_u, 4); if (sh.color_config.separate_uv_delta_q) put_ui(bs, fh.quantization_params.qm_v, 4); } } static void pack_loop_filter_params(bitstream* bs) { if (fh.CodedLossless || fh.allow_intrabc) return; put_ui(bs, fh.loop_filter_params.loop_filter_level[0], 6);//loop_filter_level[0] put_ui(bs, fh.loop_filter_params.loop_filter_level[1], 6);//loop_filter_level[1] if (fh.loop_filter_params.loop_filter_level[0] || fh.loop_filter_params.loop_filter_level[1]) { put_ui(bs, fh.loop_filter_params.loop_filter_level[2], 6);//loop_filter_level[2] put_ui(bs, fh.loop_filter_params.loop_filter_level[3], 6);//loop_filter_level[3] } put_ui(bs, fh.loop_filter_params.loop_filter_sharpness, 3); //loop_filter_sharpness put_ui(bs, 0, 1); //loop_filter_delta_enabled } static void pack_cdef_params(bitstream* bs) { if (!sh.enable_cdef || fh.CodedLossless || fh.allow_intrabc) return; uint16_t num_planes = sh.color_config.mono_chrome ? 1 : 3; put_ui(bs, fh.cdef_params.cdef_damping - 3, 2);//cdef_damping_minus_3 put_ui(bs, fh.cdef_params.cdef_bits, 2);//cdef_bits for (uint16_t i = 0; i < (1 << fh.cdef_params.cdef_bits); ++i) { put_ui(bs, fh.cdef_params.cdef_y_pri_strength[i], 4);//cdef_y_pri_strength[0] put_ui(bs, fh.cdef_params.cdef_y_sec_strength[i], 2);//cdef_y_sec_strength[0] if (num_planes > 1) { put_ui(bs, fh.cdef_params.cdef_uv_pri_strength[i], 4);//cdef_uv_pri_strength[0] put_ui(bs, fh.cdef_params.cdef_uv_sec_strength[i], 2);//cdef_uv_sec_strength[0] } } } static void pack_lr_params(bitstream* bs) { if (fh.AllLossless || fh.allow_intrabc || !sh.enable_restoration) return; bool usesLR = false; bool usesChromaLR = false; for (int i = 0; i < MAX_MB_PLANE; i++) { put_ui(bs, fh.lr_params.lr_type[i], 2); if (fh.lr_params.lr_type[i] != RESTORE_NONE) { usesLR = true; if (i > 0) { usesChromaLR = true; } } } if (usesLR) { put_ui(bs, fh.lr_params.lr_unit_shift, 1); if (sh.sbSize != 1 && fh.lr_params.lr_unit_shift) { put_ui(bs, fh.lr_params.lr_unit_extra_shift, 1); } if (sh.color_config.subsampling_x && sh.color_config.subsampling_y && usesChromaLR) { put_ui(bs, fh.lr_params.lr_uv_shift, 1); } } } static void pack_delta_q_params(bitstream* bs) { if (fh.quantization_params.base_q_idx) put_ui(bs, fh.delta_q_present, 1); //delta_q_present if (fh.delta_q_present) { put_ui(bs, 0, 2); //delta_q_res put_ui(bs, fh.delta_lf_present, 1); //delta_lf_present put_ui(bs, 0, 2); //delta_lf_res put_ui(bs, fh.delta_lf_multi, 1); //delta_lf_multi } } static void pack_frame_reference_mode(bitstream* bs, bool frameIsIntra) { if (frameIsIntra) return; put_ui(bs, fh.reference_select, 1); //reference_select } static void pack_skip_mode_params(bitstream* bs) { if (fh.skipModeAllowed) put_ui(bs, fh.skip_mode_present, 1); //skip_mode_present } static void pack_wrapped_motion(bitstream* bs, bool frameIsIntra) { if (frameIsIntra) return; if (sh.enable_warped_motion) put_ui(bs, 0, 1); //allow_warped_motion } static void pack_global_motion_params(bitstream* bs, bool frameIsIntra) { if (frameIsIntra) return; for (uint8_t i = LAST_FRAME; i <= ALTREF_FRAME; i++) put_ui(bs, 0, 1); //is_global[7] } static void pack_frame_header(bitstream* bs) { const uint8_t isI = (fh.frame_type == INTRA_ONLY_FRAME || fh.frame_type == KEY_FRAME); put_ui(bs, fh.frame_type, 2); pack_show_frame(bs); uint8_t error_resilient_mode = 0; pack_error_resilient(bs); put_ui(bs, fh.disable_cdf_update, 1); put_ui(bs, fh.allow_screen_content_tools, 1); put_ui(bs, fh.frame_size_override_flag, 1); // pack order hint if(sh.enable_order_hint) put_ui(bs, fh.order_hint, sh.order_hint_bits_minus1 + 1); // PackRefFrameFlags pack_ref_frame_flags(bs, error_resilient_mode, isI); if (!isI) { pack_frame_ref_info(bs, error_resilient_mode); } else { pack_frame_size(bs); pack_render_size(bs); if (fh.allow_screen_content_tools && fh.UpscaledWidth == fh.FrameWidth) put_ui(bs, fh.allow_intrabc, 1); } if (!fh.disable_cdf_update) put_ui(bs, fh.disable_frame_end_update_cdf, 1); //disable_frame_end_update_cdf pack_tile_info(bs); //quantization_params offsets.QIndexBitOffset = bs->bit_offset; pack_quantization_params(bs); //segmentation_params offsets.SegmentationBitOffset = bs->bit_offset; put_ui(bs, 0, 1); //segmentation_enabled offsets.SegmentationBitSize = bs->bit_offset - offsets.SegmentationBitOffset; pack_delta_q_params(bs); offsets.LoopFilterParamsBitOffset = bs->bit_offset; pack_loop_filter_params(bs); offsets.CDEFParamsBitOffset = bs->bit_offset; pack_cdef_params(bs); offsets.CDEFParamsSizeInBits = bs->bit_offset - offsets.CDEFParamsBitOffset; pack_lr_params(bs); const uint8_t tx_mode_select = fh.TxMode ? 1 : 0; if (!fh.CodedLossless) put_ui(bs, tx_mode_select, 1); //tx_mode_select pack_frame_reference_mode(bs, isI); pack_skip_mode_params(bs); pack_wrapped_motion(bs, isI); put_ui(bs, fh.reduced_tx_set, 1); //reduced_tx_set pack_global_motion_params(bs, isI); } static void build_packed_pic_header(bitstream* bs) { // handle vairable length // pack obu payload and then put header // pic obu data bitstream tmp; bitstream_start(&tmp); put_ui(&tmp, fh.show_existing_frame, 1); //show_existing_frame if (fh.show_existing_frame) pack_show_existing_frame(&tmp); // only for B frame else pack_frame_header(&tmp); offsets.FrameHdrOBUSizeInBits = tmp.bit_offset; const uint32_t obu_extension_flag = sh.operating_points_cnt_minus_1 ? 1 : 0; const uint32_t obu_header_offset = bs->bit_offset; put_aligning_bits(&tmp); pack_obu_header(bs, OBU_FRAME, obu_extension_flag); offsets.FrameHdrOBUSizeByteOffset = (bs->bit_offset >> 3) + len_ivf_header + 2 + len_seq_header; // first frame with IVF header const uint32_t obu_size_in_bytes = (tmp.bit_offset + 7) / 8; pack_obu_header_size(bs, obu_size_in_bytes, fh.show_existing_frame? 0: 4); if (!fh.show_existing_frame) { // The offset is related to frame or frame header OBU. IVF, sequence, and other headers should not be counted. const uint32_t obuPayloadOffset = bs->bit_offset - obu_header_offset; offsets.QIndexBitOffset += obuPayloadOffset; offsets.SegmentationBitOffset += obuPayloadOffset; offsets.LoopFilterParamsBitOffset += obuPayloadOffset; offsets.CDEFParamsBitOffset += obuPayloadOffset; //offsets.CDEFParamsSizeInBits is not needed to be updated. offsets.FrameHdrOBUSizeInBits += obuPayloadOffset; } bitstream_cat(bs, &tmp); } static void render_packedpicture() { bitstream bs; bitstream_start(&bs); build_packed_pic_header(&bs); va_render_packed_data(&bs); bitstream_free(&bs); } static void fill_ref_params(VAEncPictureParameterBufferAV1* pps) { CHECK_NULL(pps); if(fh.frame_type == KEY_FRAME) { return; } else if(fh.frame_type == INTER_FRAME) { // use last frame as reference pps->reference_frames[0] = ref_surface[((current_frame_display - 1) % SURFACE_NUM)]; pps->ref_frame_ctrl_l0.fields.search_idx0 = LAST_FRAME; // for Low delay B pps->ref_frame_ctrl_l1.fields.search_idx0 = ips.LDB ? BWDREF_FRAME : INTRA_FRAME; } } static void build_pps_buffer(VAEncPictureParameterBufferAV1* pps) { CHECK_NULL(pps); // InitPPS memset(&(pps->reference_frames), VA_INVALID_ID, 8); //frame size pps->frame_height_minus_1 =(uint16_t)(fh.FrameHeight - 1); pps->frame_width_minus_1 = (uint16_t)(fh.UpscaledWidth - 1); //bitstream pps->coded_buf = coded_buf[current_slot]; for(int k = 0; k < REFS_PER_FRAME; k++) pps->ref_frame_idx[k] = 0; pps->picture_flags.bits.use_ref_frame_mvs = fh.use_ref_frame_mvs; pps->picture_flags.bits.long_term_reference = 0; pps->picture_flags.bits.allow_intrabc = fh.allow_intrabc; pps->seg_id_block_size = 0; //quantizer pps->y_dc_delta_q = (uint8_t)(fh.quantization_params.DeltaQYDc); pps->u_dc_delta_q = (uint8_t)(fh.quantization_params.DeltaQUDc); pps->u_ac_delta_q = (uint8_t)(fh.quantization_params.DeltaQUAc); pps->v_dc_delta_q = (uint8_t)(fh.quantization_params.DeltaQVDc); pps->v_ac_delta_q = (uint8_t)(fh.quantization_params.DeltaQVAc); //other params pps->picture_flags.bits.error_resilient_mode = fh.error_resilient_mode; pps->interpolation_filter = (uint8_t)(fh.interpolation_filter); pps->picture_flags.bits.use_superres = fh.use_superres; pps->picture_flags.bits.allow_high_precision_mv = fh.allow_high_precision_mv; pps->picture_flags.bits.reduced_tx_set = fh.reduced_tx_set; pps->picture_flags.bits.palette_mode_enable = fh.allow_screen_content_tools; //tx_mod pps->mode_control_flags.bits.tx_mode = fh.TxMode; pps->temporal_id = 0; pps->superres_scale_denominator = (uint8_t)(fh.SuperresDenom); //q_matrix pps->qmatrix_flags.bits.using_qmatrix = fh.quantization_params.using_qmatrix; pps->qmatrix_flags.bits.qm_y = fh.quantization_params.qm_y; pps->qmatrix_flags.bits.qm_u = fh.quantization_params.qm_u; pps->qmatrix_flags.bits.qm_v = fh.quantization_params.qm_v; pps->picture_flags.bits.frame_type = fh.frame_type; pps->base_qindex = (uint8_t)fh.quantization_params.base_q_idx; pps->min_base_qindex = ips.MinBaseQIndex; pps->max_base_qindex = ips.MaxBaseQIndex; pps->order_hint = (uint8_t)(fh.order_hint); //reference frame pps->primary_ref_frame = (uint8_t)(fh.primary_ref_frame); pps->ref_frame_ctrl_l0.value = 0; pps->ref_frame_ctrl_l1.value = 0; fill_ref_params(pps); pps->refresh_frame_flags = fh.refresh_frame_flags; // //loop filter // auto& lf = fh.loop_filter_params; pps->filter_level[0] = (uint8_t)(fh.loop_filter_params.loop_filter_level[0]); pps->filter_level[1] = (uint8_t)(fh.loop_filter_params.loop_filter_level[1]); pps->filter_level_u = (uint8_t)(fh.loop_filter_params.loop_filter_level[2]); pps->filter_level_v = (uint8_t)(fh.loop_filter_params.loop_filter_level[3]); pps->loop_filter_flags.bits.sharpness_level = fh.loop_filter_params.loop_filter_sharpness; pps->loop_filter_flags.bits.mode_ref_delta_enabled = fh.loop_filter_params.loop_filter_delta_enabled; pps->loop_filter_flags.bits.mode_ref_delta_update = fh.loop_filter_params.loop_filter_delta_update; for(int k = 0;k < 8;k++) pps->ref_deltas[k] = 0; //block-level deltas pps->mode_control_flags.bits.delta_q_present = fh.delta_q_present; pps->mode_control_flags.bits.delta_q_res = fh.delta_q_res; pps->mode_control_flags.bits.delta_lf_res = fh.delta_lf_res; pps->mode_control_flags.bits.delta_lf_present = fh.delta_lf_present; pps->mode_control_flags.bits.delta_lf_multi = fh.delta_lf_multi; pps->mode_control_flags.bits.reference_mode = fh.reference_select ? REFERENCE_MODE_SELECT : SINGLE_REFERENCE; pps->mode_control_flags.bits.skip_mode_present = fh.skip_mode_present; //tile pps->tile_cols = 1; pps->width_in_sbs_minus_1[0] = (uint16_t)(((fh.UpscaledWidth+63)&(~63))/64 - 1); pps->tile_rows = 1; pps->height_in_sbs_minus_1[0] = (uint16_t)(((fh.FrameHeight+63)&(~63))/64 - 1); pps->context_update_tile_id = (uint8_t)(fh.tile_info.context_update_tile_id); //cdef if(sh.enable_cdef) { pps->cdef_damping_minus_3 = (uint8_t)(fh.cdef_params.cdef_damping - 3); pps->cdef_bits = (uint8_t)(fh.cdef_params.cdef_bits); for (uint8_t i = 0; i < CDEF_MAX_STRENGTHS; i++) { pps->cdef_y_strengths[i] = (uint8_t)(fh.cdef_params.cdef_y_pri_strength[i] * CDEF_STRENGTH_DIVISOR + fh.cdef_params.cdef_y_sec_strength[i]); pps->cdef_uv_strengths[i] = (uint8_t)(fh.cdef_params.cdef_uv_pri_strength[i] * CDEF_STRENGTH_DIVISOR + fh.cdef_params.cdef_uv_sec_strength[i]); } } //loop restoration pps->loop_restoration_flags.bits.yframe_restoration_type = (fh.lr_params.lr_type[0] == RESTORE_WIENER) ? 1 : 0; pps->loop_restoration_flags.bits.cbframe_restoration_type = (fh.lr_params.lr_type[1] == RESTORE_WIENER) ? 1 : 0; pps->loop_restoration_flags.bits.crframe_restoration_type = (fh.lr_params.lr_type[2] == RESTORE_WIENER) ? 1 : 0; pps->loop_restoration_flags.bits.lr_unit_shift = fh.lr_params.lr_unit_shift; pps->loop_restoration_flags.bits.lr_uv_shift = fh.lr_params.lr_uv_shift; //context pps->picture_flags.bits.disable_cdf_update = fh.disable_cdf_update; pps->picture_flags.bits.disable_frame_end_update_cdf = fh.disable_frame_end_update_cdf; pps->picture_flags.bits.disable_frame_recon = (fh.refresh_frame_flags == 0); pps->num_tile_groups_minus1 = 0; pps->tile_group_obu_hdr_info.bits.obu_extension_flag = 0; pps->tile_group_obu_hdr_info.bits.obu_has_size_field = 1; pps->tile_group_obu_hdr_info.bits.temporal_id = 0; pps->tile_group_obu_hdr_info.bits.spatial_id = 0; //other params pps->picture_flags.bits.error_resilient_mode = fh.error_resilient_mode; pps->picture_flags.bits.enable_frame_obu = 1; pps->reconstructed_frame = ref_surface[current_slot]; //offsets need update pps->size_in_bits_frame_hdr_obu = offsets.FrameHdrOBUSizeInBits; pps->byte_offset_frame_hdr_obu_size = offsets.FrameHdrOBUSizeByteOffset; pps->bit_offset_loopfilter_params = offsets.LoopFilterParamsBitOffset; pps->bit_offset_qindex = offsets.QIndexBitOffset; pps->bit_offset_segmentation = offsets.SegmentationBitOffset; pps->bit_offset_cdef_params = offsets.CDEFParamsBitOffset; pps->size_in_bits_cdef_params = offsets.CDEFParamsSizeInBits; //q_matrix pps->qmatrix_flags.bits.using_qmatrix = fh.quantization_params.using_qmatrix; pps->qmatrix_flags.bits.qm_y = fh.quantization_params.qm_y; pps->qmatrix_flags.bits.qm_u = fh.quantization_params.qm_u; pps->qmatrix_flags.bits.qm_v = fh.quantization_params.qm_v; pps->skip_frames_reduced_size = 0; } static void render_picture() { VABufferID pic_param_buf_id = VA_INVALID_ID; VAStatus va_status; VAEncPictureParameterBufferAV1 pps_buffer; memset(&pps_buffer, 0, sizeof(pps_buffer)); build_pps_buffer(&pps_buffer); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPictureParameterBufferType, sizeof(pps_buffer), 1, &pps_buffer, &pic_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer");; va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); if (pic_param_buf_id != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, pic_param_buf_id); pic_param_buf_id = VA_INVALID_ID; } } static int upload_source_YUV_once_for_all() { int box_width = 8; int row_shift = 0; int i; for (i = 0; i < SURFACE_NUM; i++) { printf("\rLoading data into surface %d.....", i); upload_surface(va_dpy, src_surface[i], box_width, row_shift, 0); row_shift++; if (row_shift == (2 * box_width)) row_shift = 0; } printf("Complete surface loading\n"); return 0; } static struct storage_task_t * storage_task_dequeue(void) { struct storage_task_t *header; pthread_mutex_lock(&encode_mutex); header = storage_task_header; if (storage_task_header != NULL) { if (storage_task_tail == storage_task_header) storage_task_tail = NULL; storage_task_header = header->next; } pthread_mutex_unlock(&encode_mutex); return header; } static int load_surface(VASurfaceID surface_id, unsigned long long display_order) { unsigned char *srcyuv_ptr = NULL, *src_Y = NULL, *src_U = NULL, *src_V = NULL; unsigned long long frame_start, mmap_start; char *mmap_ptr = NULL; int frame_size, mmap_size; if (srcyuv_fp == NULL) return 0; /* allow encoding more than srcyuv_frames */ display_order = display_order % srcyuv_frames; frame_size = ips.width * ips.height * 3 / 2; /* for YUV420 */ frame_start = display_order * frame_size; mmap_start = frame_start & (~0xfff); mmap_size = (frame_size + (frame_start & 0xfff) + 0xfff) & (~0xfff); mmap_ptr = mmap(0, mmap_size, PROT_READ, MAP_SHARED, fileno(srcyuv_fp), mmap_start); if (mmap_ptr == MAP_FAILED) { printf("Failed to mmap YUV file (%s)\n", strerror(errno)); return 1; } srcyuv_ptr = (unsigned char *)mmap_ptr + (frame_start & 0xfff); if (srcyuv_fourcc == VA_FOURCC_NV12) { src_Y = srcyuv_ptr; src_U = src_Y + ips.width * ips.height; src_V = NULL; } else if (srcyuv_fourcc == VA_FOURCC_IYUV || srcyuv_fourcc == VA_FOURCC_YV12) { src_Y = srcyuv_ptr; if (srcyuv_fourcc == VA_FOURCC_IYUV) { src_U = src_Y + ips.width * ips.height; src_V = src_U + (ips.width / 2) * (ips.height / 2); } else { /* YV12 */ src_V = src_Y + ips.width * ips.height; src_U = src_V + (ips.width / 2) * (ips.height / 2); } } else { printf("Unsupported source YUV format\n"); exit(1); } upload_surface_yuv(va_dpy, surface_id, srcyuv_fourcc, ips.width, ips.height, src_Y, src_U, src_V); if (mmap_ptr) munmap(mmap_ptr, mmap_size); return 0; } static int save_codeddata(unsigned long long display_order, unsigned long long encode_order) { VACodedBufferSegment *buf_list = NULL; VAStatus va_status; int ret; unsigned int coded_size = 0; va_status = vaMapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM], (void **)(&buf_list)); CHECK_VASTATUS(va_status, "vaMapBuffer"); long frame_start = ftell(coded_fp); while (buf_list != NULL) { coded_size += fwrite(buf_list->buf, 1, buf_list->size, coded_fp); buf_list = (VACodedBufferSegment *) buf_list->next; frame_size += coded_size; } long frame_end = ftell(coded_fp); vaUnmapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM]); CHECK_CONDITION(frame_start >= 0 && frame_end >= 0); if(encode_order == 0) { //first frame CHECK_CONDITION(coded_size >= 44); unsigned int ivf_size = coded_size - 32 - 12; ret = fseek(coded_fp, frame_start + 32, SEEK_SET); CHECK_CONDITION(ret == 0); fwrite(&ivf_size, 4, 1, coded_fp); fwrite(&display_order, 8, 1, coded_fp); ret = fseek(coded_fp, frame_end, SEEK_SET); CHECK_CONDITION(ret == 0); } else { //other frames CHECK_CONDITION(coded_size >= 12); unsigned int ivf_size = coded_size - 12; ret = fseek(coded_fp, frame_start, SEEK_SET); CHECK_CONDITION(ret == 0); fwrite(&ivf_size, 4, 1, coded_fp); fwrite(&display_order, 8, 1, coded_fp); ret = fseek(coded_fp, frame_end, SEEK_SET); CHECK_CONDITION(ret == 0); } printf("\n "); /* return back to startpoint */ switch (encode_order % 4) { case 0: printf("|"); break; case 1: printf("/"); break; case 2: printf("-"); break; case 3: printf("\\"); break; } printf("%08lld", encode_order); printf("(%06d bytes coded)\n", coded_size); fflush(coded_fp); return 0; } static int save_recyuv(VASurfaceID surface_id, unsigned long long display_order, unsigned long long encode_order) { unsigned char *dst_Y = NULL, *dst_U = NULL, *dst_V = NULL; if (recyuv_fp == NULL) return 0; if (srcyuv_fourcc == VA_FOURCC_NV12) { int uv_size = 2 * (ips.width / 2) * (ips.height / 2); dst_Y = malloc(2 * uv_size); if (dst_Y == NULL) { printf("Failed to allocate memory for dst_Y\n"); exit(1); } dst_U = malloc(uv_size); if (dst_U == NULL) { printf("Failed to allocate memory for dst_U\n"); free(dst_Y); exit(1); } memset(dst_Y, 0, 2 * uv_size); memset(dst_U, 0, uv_size); } else if (srcyuv_fourcc == VA_FOURCC_IYUV || srcyuv_fourcc == VA_FOURCC_YV12) { int uv_size = (ips.width / 2) * (ips.height / 2); dst_Y = malloc(4 * uv_size); if (dst_Y == NULL) { printf("Failed to allocate memory for dst_Y\n"); exit(1); } dst_U = malloc(uv_size); if (dst_U == NULL) { printf("Failed to allocate memory for dst_U\n"); free(dst_Y); exit(1); } dst_V = malloc(uv_size); if (dst_V == NULL) { printf("Failed to allocate memory for dst_V\n"); free(dst_Y); free(dst_U); exit(1); } memset(dst_Y, 0, 4 * uv_size); memset(dst_U, 0, uv_size); memset(dst_V, 0, uv_size); } else { printf("Unsupported source YUV format\n"); exit(1); } download_surface_yuv(va_dpy, surface_id, srcyuv_fourcc, ips.width, ips.height, dst_Y, dst_U, dst_V); fseek(recyuv_fp, display_order * ips.width * ips.height * 1.5, SEEK_SET); if (srcyuv_fourcc == VA_FOURCC_NV12) { int uv_size = 2 * (ips.width / 2) * (ips.height / 2); fwrite(dst_Y, uv_size * 2, 1, recyuv_fp); fwrite(dst_U, uv_size, 1, recyuv_fp); } else if (srcyuv_fourcc == VA_FOURCC_IYUV || srcyuv_fourcc == VA_FOURCC_YV12) { int uv_size = (ips.width / 2) * (ips.height / 2); fwrite(dst_Y, uv_size * 4, 1, recyuv_fp); if (srcyuv_fourcc == VA_FOURCC_IYUV) { fwrite(dst_U, uv_size, 1, recyuv_fp); fwrite(dst_V, uv_size, 1, recyuv_fp); } else { fwrite(dst_V, uv_size, 1, recyuv_fp); fwrite(dst_U, uv_size, 1, recyuv_fp); } } if (dst_Y) free(dst_Y); if (dst_U) free(dst_U); if (dst_V) free(dst_V); fflush(recyuv_fp); return 0; } static void storage_task(unsigned long long display_order, unsigned long long encode_order) { unsigned int tmp; VAStatus va_status; tmp = GetTickCount(); va_status = vaSyncSurface(va_dpy, src_surface[display_order % SURFACE_NUM]); CHECK_VASTATUS(va_status, "vaSyncSurface"); SyncPictureTicks += GetTickCount() - tmp; tmp = GetTickCount(); save_codeddata(display_order, encode_order); SavePictureTicks += GetTickCount() - tmp; save_recyuv(ref_surface[display_order % SURFACE_NUM], display_order, encode_order); /* reload a new frame data */ tmp = GetTickCount(); if (srcyuv_fp != NULL) load_surface(src_surface[display_order % SURFACE_NUM], display_order + SURFACE_NUM); UploadPictureTicks += GetTickCount() - tmp; pthread_mutex_lock(&encode_mutex); srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_ENCODING; pthread_mutex_unlock(&encode_mutex); } static void * storage_task_thread(void *t) { while (1) { struct storage_task_t *current; current = storage_task_dequeue(); if (current == NULL) { pthread_mutex_lock(&encode_mutex); pthread_cond_wait(&encode_cond, &encode_mutex); pthread_mutex_unlock(&encode_mutex); continue; } storage_task(current->display_order, current->encode_order); free(current); /* all frames are saved, exit the thread */ if (++frame_coded >= ips.frame_count) break; } return 0; } static int storage_task_queue(unsigned long long display_order, unsigned long long encode_order) { struct storage_task_t *tmp; tmp = calloc(1, sizeof(struct storage_task_t)); if (tmp) { tmp->display_order = display_order; tmp->encode_order = encode_order; } pthread_mutex_lock(&encode_mutex); if (storage_task_header == NULL) { storage_task_header = tmp; storage_task_tail = tmp; } else { storage_task_tail->next = tmp; storage_task_tail = tmp; } srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_STORAGE; pthread_cond_signal(&encode_cond); pthread_mutex_unlock(&encode_mutex); return 0; } static int encode_frames(void) { unsigned int i, tmp; VAStatus va_status; //VASurfaceStatus surface_status; /* upload RAW YUV data into all surfaces */ tmp = GetTickCount(); if (srcyuv_fp != NULL) { for (i = 0; i < SURFACE_NUM; i++) load_surface(src_surface[i], i); } else upload_source_YUV_once_for_all(); UploadPictureTicks += GetTickCount() - tmp; /* ready for encoding */ memset(srcsurface_status, SRC_SURFACE_IN_ENCODING, sizeof(srcsurface_status)); memset(&seq_param, 0, sizeof(seq_param)); memset(&pic_param, 0, sizeof(pic_param)); memset(&tile_group_param, 0, sizeof(tile_group_param)); if (ips.encode_syncmode == 0) pthread_create(&encode_thread, NULL, storage_task_thread, NULL); for (current_frame_encoding = 0; current_frame_encoding < ips.frame_count; current_frame_encoding++) { encoding2display_order(current_frame_encoding, ips.intra_period, ¤t_frame_display, ¤t_frame_type); printf("%s : %lld %s : %lld type : %d\n", "encoding order", current_frame_encoding, "Display order", current_frame_display, current_frame_type); /* check if the source frame is ready */ while (srcsurface_status[current_slot] != SRC_SURFACE_IN_ENCODING) { usleep(1); } tmp = GetTickCount(); va_status = vaBeginPicture(va_dpy, context_id, src_surface[current_slot]); CHECK_VASTATUS(va_status, "vaBeginPicture"); BeginPictureTicks += GetTickCount() - tmp; tmp = GetTickCount(); //start of render process // prepare parameters used for sequence and frame fill_sps_header(); fill_pps_header(current_frame_display); // init length of packed headers len_ivf_header = 0; len_seq_header = 0; len_pic_header = 0; // render headers // first frame send IVF sequence header + frame header if(current_frame_encoding == 0) { render_ivf_header(); //44 byte, 32byte sequence ivf header, 12 byte frame ivf header len_ivf_header = 44; } else { render_ivf_frame_header(); //12 byte frame ivf header len_ivf_header = 12; } render_TD();//render OBU_TEMPORAL_DELIMITER if (current_frame_type == KEY_FRAME) { if(current_frame_encoding == 0) render_sequence(); //render SPS only needed in first frame len_seq_header = render_packedsequence(); //render packed sequence header } else { len_seq_header = 0; } if((ips.RateControlMethod == 2 || ips.RateControlMethod == 4) && current_frame_encoding == 0) { // misc buffer are not need in CQP case // only needed in first frame render_misc_buffer(); } render_packedpicture(); //render packed frame header render_picture(); //render frame PPS buffer render_tile_group(); //render tile group buffer RenderPictureTicks += GetTickCount() - tmp; tmp = GetTickCount(); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); EndPictureTicks += GetTickCount() - tmp; if (ips.encode_syncmode) storage_task(current_frame_display, current_frame_encoding); else /* queue the storage task queue */ storage_task_queue(current_frame_display, current_frame_encoding); } if (ips.encode_syncmode == 0) { int ret; pthread_join(encode_thread, (void **)&ret); } return 0; } static int calc_PSNR(double *psnr) { char *srcyuv_ptr = NULL, *recyuv_ptr = NULL, tmp; unsigned long long min_size; unsigned long long i, sse = 0; double ssemean; int fourM = 0x400000; /* 4M */ min_size = MIN(srcyuv_frames, ips.frame_count) * ips.width * ips.height * 1.5; for (i = 0; i < min_size; i++) { unsigned long long j = i % fourM; if ((i % fourM) == 0) { if (srcyuv_ptr) munmap(srcyuv_ptr, fourM); if (recyuv_ptr) munmap(recyuv_ptr, fourM); srcyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(srcyuv_fp), i); recyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(recyuv_fp), i); if ((srcyuv_ptr == MAP_FAILED) || (recyuv_ptr == MAP_FAILED)) { if (srcyuv_ptr != MAP_FAILED) munmap(srcyuv_ptr, fourM); if (recyuv_ptr != MAP_FAILED) munmap(recyuv_ptr, fourM); printf("Failed to mmap YUV files\n"); return 1; } } tmp = srcyuv_ptr[j] - recyuv_ptr[j]; sse += tmp * tmp; } ssemean = (double)sse / (double)min_size; *psnr = 20.0 * log10(255) - 10.0 * log10(ssemean); if (srcyuv_ptr) munmap(srcyuv_ptr, fourM); if (recyuv_ptr) munmap(recyuv_ptr, fourM); return 0; } static int print_performance(unsigned int PictureCount) { unsigned int psnr_ret = 1, others = 0; double psnr = 0, total_size = ips.width * ips.height * 1.5 * ips.frame_count; if (ips.calc_psnr && srcyuv_fp && recyuv_fp) psnr_ret = calc_PSNR(&psnr); others = TotalTicks - UploadPictureTicks - BeginPictureTicks - RenderPictureTicks - EndPictureTicks - SyncPictureTicks - SavePictureTicks; printf("\n\n"); printf("PERFORMANCE: Frame Rate : %.2f fps (%d frames, %d ms (%.2f ms per frame))\n", (double) 1000 * PictureCount / TotalTicks, PictureCount, TotalTicks, ((double) TotalTicks) / (double) PictureCount); printf("PERFORMANCE: Compression ratio : %d:1\n", (unsigned int)(total_size / frame_size)); if (psnr_ret == 0) printf("PERFORMANCE: PSNR : %.2f (%lld frames calculated)\n", psnr, MIN(ips.frame_count, srcyuv_frames)); printf("PERFORMANCE: UploadPicture : %d ms (%.2f, %.2f%% percent)\n", (int) UploadPictureTicks, ((double) UploadPictureTicks) / (double) PictureCount, UploadPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaBeginPicture : %d ms (%.2f, %.2f%% percent)\n", (int) BeginPictureTicks, ((double) BeginPictureTicks) / (double) PictureCount, BeginPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaRenderHeader : %d ms (%.2f, %.2f%% percent)\n", (int) RenderPictureTicks, ((double) RenderPictureTicks) / (double) PictureCount, RenderPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaEndPicture : %d ms (%.2f, %.2f%% percent)\n", (int) EndPictureTicks, ((double) EndPictureTicks) / (double) PictureCount, EndPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaSyncSurface : %d ms (%.2f, %.2f%% percent)\n", (int) SyncPictureTicks, ((double) SyncPictureTicks) / (double) PictureCount, SyncPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: SavePicture : %d ms (%.2f, %.2f%% percent)\n", (int) SavePictureTicks, ((double) SavePictureTicks) / (double) PictureCount, SavePictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: Others : %d ms (%.2f, %.2f%% percent)\n", (int) others, ((double) others) / (double) PictureCount, others / (double) TotalTicks / 0.01); if (ips.encode_syncmode == 0) printf("(Multithread enabled, the timing is only for reference)\n"); return 0; } int main(int argc, char **argv) { unsigned int start; process_cmdline(argc, argv); print_input(); start = GetTickCount(); init_va(); setup_encode(); encode_frames(); release_encode(); deinit_va(); //free memory if(ips.output) free(ips.output); if(ips.srcyuv) free(ips.srcyuv); if(ips.recyuv) free(ips.recyuv); TotalTicks += GetTickCount() - start; print_performance(ips.frame_count); return 0; } ================================================ FILE: encode/avcenc.c ================================================ /* * Copyright (c) 2012 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ /* * Simple AVC encoder based on libVA. * * Usage: * ./avcenc [qp] */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #define NAL_REF_IDC_NONE 0 #define NAL_REF_IDC_LOW 1 #define NAL_REF_IDC_MEDIUM 2 #define NAL_REF_IDC_HIGH 3 #define NAL_NON_IDR 1 #define NAL_IDR 5 #define NAL_SPS 7 #define NAL_PPS 8 #define NAL_SEI 6 #define NAL_DELIMITER 9 #define SLICE_TYPE_P 0 #define SLICE_TYPE_B 1 #define SLICE_TYPE_I 2 #define FRAME_IDR 7 #define ENTROPY_MODE_CAVLC 0 #define ENTROPY_MODE_CABAC 1 #define PROFILE_IDC_BASELINE 66 #define PROFILE_IDC_MAIN 77 #define PROFILE_IDC_HIGH 100 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } #define CHECK_CONDITION(cond) \ if(!(cond)) \ { \ fprintf(stderr, "Unexpected condition: %s:%d\n", __func__, __LINE__); \ exit(1); \ } static VADisplay va_dpy; static int picture_width, picture_width_in_mbs; static int picture_height, picture_height_in_mbs; static int frame_size; static unsigned char *newImageBuffer = 0; static int qp_value = 26; static int intra_period = 30; static int frame_bit_rate = -1; static int frame_rate = 30; static int ip_period = 1; static int roi_test_enable = 0; static int aud_nal_enable = 1; static VAEntrypoint select_entrypoint = VAEntrypointEncSlice; #define MAX_SLICES 32 static unsigned int MaxFrameNum = (1 << 12); static unsigned int Log2MaxFrameNum = 12; static unsigned int Log2MaxPicOrderCntLsb = 8; static const struct option longopts[] = { {"qp", required_argument, 0, 1}, {"fb", required_argument, 0, 2}, {"mode", required_argument, 0, 3}, {"low-power", no_argument, 0, 4}, {"roi-test", no_argument, 0, 5}, {"frames", required_argument, 0, 6}, { NULL, 0, NULL, 0} }; static int build_packed_pic_buffer(unsigned char **header_buffer); static int build_packed_seq_buffer(unsigned char **header_buffer); static int build_nal_delimiter(unsigned char **header_buffer); static int build_packed_sei_pic_timing(unsigned int cpb_removal_length, unsigned int dpb_output_length, unsigned char **sei_buffer); static int build_packed_idr_sei_buffer_timing(unsigned int init_cpb_removal_delay_length, unsigned int cpb_removal_length, unsigned int dpb_output_length, unsigned char **sei_buffer); struct upload_thread_param { FILE *yuv_fp; VASurfaceID surface_id; }; static void upload_yuv_to_surface(FILE *yuv_fp, VASurfaceID surface_id); static struct { VAProfile profile; int constraint_set_flag; VAEncSequenceParameterBufferH264 seq_param; VAEncPictureParameterBufferH264 pic_param; VAEncSliceParameterBufferH264 slice_param[MAX_SLICES]; VAContextID context_id; VAConfigID config_id; VABufferID seq_param_buf_id; /* Sequence level parameter */ VABufferID pic_param_buf_id; /* Picture level parameter */ VABufferID slice_param_buf_id[MAX_SLICES]; /* Slice level parameter, multil slices */ VABufferID codedbuf_buf_id; /* Output buffer, compressed data */ VABufferID packed_seq_header_param_buf_id; VABufferID packed_seq_buf_id; VABufferID packed_pic_header_param_buf_id; VABufferID packed_pic_buf_id; VABufferID packed_sei_header_param_buf_id; /* the SEI buffer */ VABufferID packed_sei_buf_id; VABufferID misc_parameter_hrd_buf_id; VABufferID misc_parameter_roi_buf_id; VABufferID packed_aud_header_param_buf_id; VABufferID packed_aud_buf_id; int num_slices; int codedbuf_i_size; int codedbuf_pb_size; int current_input_surface; int rate_control_method; struct upload_thread_param upload_thread_param; pthread_t upload_thread_id; int upload_thread_value; int i_initial_cpb_removal_delay; int i_initial_cpb_removal_delay_offset; int i_initial_cpb_removal_delay_length; int i_cpb_removal_delay; int i_cpb_removal_delay_length; int i_dpb_output_delay_length; int time_offset_length; unsigned long long idr_frame_num; unsigned long long prev_idr_cpb_removal; unsigned long long current_idr_cpb_removal; unsigned long long current_cpb_removal; /* This is relative to the current_cpb_removal */ unsigned int current_dpb_removal_delta; } avcenc_context; static VAPictureH264 ReferenceFrames[16], RefPicList0[32], RefPicList1[32]; static void create_encode_pipe() { VAEntrypoint entrypoints[5]; int num_entrypoints, slice_entrypoint; VAConfigAttrib attrib[3]; int major_ver, minor_ver; VAStatus va_status; va_dpy = va_open_display(); va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); CHECK_VASTATUS(va_status, "vaInitialize"); vaQueryConfigEntrypoints(va_dpy, avcenc_context.profile, entrypoints, &num_entrypoints); for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) { if (entrypoints[slice_entrypoint] == select_entrypoint) break; } if (slice_entrypoint == num_entrypoints) { /* not find Slice entry point */ assert(0); } /* find out the format for the render target, and rate control mode */ attrib[0].type = VAConfigAttribRTFormat; attrib[1].type = VAConfigAttribRateControl; /* This is to query whether the ROI is supported */ attrib[2].type = VAConfigAttribEncROI; vaGetConfigAttributes(va_dpy, avcenc_context.profile, select_entrypoint, &attrib[0], 3); if ((attrib[0].value & VA_RT_FORMAT_YUV420) == 0) { /* not find desired YUV420 RT format */ assert(0); } if ((attrib[1].value & avcenc_context.rate_control_method) == 0) { /* Can't find matched RC mode */ printf("Can't find the desired RC mode, exit\n"); assert(0); } if (roi_test_enable) { if (attrib[2].value != VA_ATTRIB_NOT_SUPPORTED) { VAConfigAttribValEncROI *roi_config = (VAConfigAttribValEncROI *) & (attrib[2].value); if (roi_config->bits.num_roi_regions == 0 || roi_config->bits.roi_rc_qp_delta_support == 0) { roi_test_enable = 0; printf("WARNING: do not support ROI or ROI delta QP ! \n"); } } else { roi_test_enable = 0; printf("WARNING: do not support VAConfigAttribValEncROI! \n"); } } attrib[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */ attrib[1].value = avcenc_context.rate_control_method; /* set to desired RC mode */ if (roi_test_enable) { va_status = vaCreateConfig(va_dpy, avcenc_context.profile, select_entrypoint, &attrib[0], 3, &avcenc_context.config_id); } else { va_status = vaCreateConfig(va_dpy, avcenc_context.profile, select_entrypoint, &attrib[0], 2, &avcenc_context.config_id); } CHECK_VASTATUS(va_status, "vaCreateConfig"); /* Create a context for this decode pipe */ va_status = vaCreateContext(va_dpy, avcenc_context.config_id, picture_width, picture_height, VA_PROGRESSIVE, 0, 0, &avcenc_context.context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); } static void destory_encode_pipe() { vaDestroyContext(va_dpy, avcenc_context.context_id); vaDestroyConfig(va_dpy, avcenc_context.config_id); vaTerminate(va_dpy); va_close_display(va_dpy); } /*************************************************** * * The encode pipe resource define * ***************************************************/ #define SID_INPUT_PICTURE_0 0 #define SID_INPUT_PICTURE_1 1 #define SID_REFERENCE_PICTURE_L0 2 #define SID_REFERENCE_PICTURE_L1 3 #define SID_RECON_PICTURE 4 #define SID_NUMBER SID_RECON_PICTURE + 1 #define SURFACE_NUM 16 /* 16 surfaces for reference */ static VASurfaceID surface_ids[SID_NUMBER]; static VASurfaceID ref_surface[SURFACE_NUM]; static int use_slot[SURFACE_NUM]; static unsigned long long current_frame_display = 0; static unsigned long long current_IDR_display = 0; static VAPictureH264 CurrentCurrPic; #define current_slot (current_frame_display % SURFACE_NUM) static int frame_number; static unsigned long long enc_frame_number; static int current_frame_type; static int current_frame_num; static unsigned int current_poc; static unsigned int num_ref_frames = 2; static unsigned int numShortTerm = 0; /***************************************************/ static int get_free_slot() { int i, index = -1; for (i = 0; i < SURFACE_NUM; i++) { if (use_slot[i] == 0) { index = i; break; } } if (index < 0) { printf("WARNING: No free slot to store the reconstructed frame \n"); index = SURFACE_NUM - 1; } return index; } static void * upload_thread_function(void *data) { struct upload_thread_param *param = data; upload_yuv_to_surface(param->yuv_fp, param->surface_id); return NULL; } static void alloc_encode_resource(FILE *yuv_fp) { VAStatus va_status; // Create surface va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, picture_width, picture_height, surface_ids, SID_NUMBER, NULL, 0 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); // Create surface va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, picture_width, picture_height, ref_surface, SURFACE_NUM, NULL, 0 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); newImageBuffer = (unsigned char *)malloc(frame_size); /* firstly upload YUV data to SID_INPUT_PICTURE_1 */ avcenc_context.upload_thread_param.yuv_fp = yuv_fp; avcenc_context.upload_thread_param.surface_id = surface_ids[SID_INPUT_PICTURE_1]; avcenc_context.upload_thread_value = pthread_create(&avcenc_context.upload_thread_id, NULL, upload_thread_function, (void*)&avcenc_context.upload_thread_param); } static void release_encode_resource() { pthread_join(avcenc_context.upload_thread_id, NULL); free(newImageBuffer); // Release all the surfaces resource vaDestroySurfaces(va_dpy, surface_ids, SID_NUMBER); // Release all the reference surfaces vaDestroySurfaces(va_dpy, ref_surface, SURFACE_NUM); } static void avcenc_update_sei_param(int is_idr) { VAEncPackedHeaderParameterBuffer packed_header_param_buffer; unsigned int length_in_bits; unsigned char *packed_sei_buffer = NULL; VAStatus va_status; if (is_idr) length_in_bits = build_packed_idr_sei_buffer_timing( avcenc_context.i_initial_cpb_removal_delay_length, avcenc_context.i_cpb_removal_delay_length, avcenc_context.i_dpb_output_delay_length, &packed_sei_buffer); else length_in_bits = build_packed_sei_pic_timing( avcenc_context.i_cpb_removal_delay_length, avcenc_context.i_dpb_output_delay_length, &packed_sei_buffer); packed_header_param_buffer.type = VAEncPackedHeaderRawData; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &avcenc_context.packed_sei_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_sei_buffer, &avcenc_context.packed_sei_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); free(packed_sei_buffer); return; } #define partition(ref, field, key, ascending) \ while (i <= j) { \ if (ascending) { \ while (ref[i].field < key) \ i++; \ while (ref[j].field > key) \ j--; \ } else { \ while (ref[i].field > key) \ i++; \ while (ref[j].field < key) \ j--; \ } \ if (i <= j) { \ tmp = ref[i]; \ ref[i] = ref[j]; \ ref[j] = tmp; \ i++; \ j--; \ } \ } \ static void sort_one(VAPictureH264 ref[], int left, int right, int ascending, int frame_idx) { int i = left, j = right; unsigned int key; VAPictureH264 tmp; if (frame_idx) { key = ref[(left + right) / 2].frame_idx; partition(ref, frame_idx, key, ascending); } else { key = ref[(left + right) / 2].TopFieldOrderCnt; partition(ref, TopFieldOrderCnt, (signed int)key, ascending); } /* recursion */ if (left < j) sort_one(ref, left, j, ascending, frame_idx); if (i < right) sort_one(ref, i, right, ascending, frame_idx); } static void sort_two(VAPictureH264 ref[], int left, int right, unsigned int key, unsigned int frame_idx, int partition_ascending, int list0_ascending, int list1_ascending) { int i = left, j = right; VAPictureH264 tmp; if (frame_idx) { partition(ref, frame_idx, key, partition_ascending); } else { partition(ref, TopFieldOrderCnt, (signed int)key, partition_ascending); } sort_one(ref, left, i - 1, list0_ascending, frame_idx); sort_one(ref, j + 1, right, list1_ascending, frame_idx); } static int update_RefPicList() { if (current_frame_type == SLICE_TYPE_P) { memcpy(RefPicList0, ReferenceFrames, numShortTerm * sizeof(VAPictureH264)); sort_one(RefPicList0, 0, numShortTerm - 1, 0, 1); } if (current_frame_type == SLICE_TYPE_B) { memcpy(RefPicList0, ReferenceFrames, numShortTerm * sizeof(VAPictureH264)); sort_two(RefPicList0, 0, numShortTerm - 1, current_poc, 0, 1, 0, 1); memcpy(RefPicList1, ReferenceFrames, numShortTerm * sizeof(VAPictureH264)); sort_two(RefPicList1, 0, numShortTerm - 1, current_poc, 0, 0, 1, 0); } return 0; } static void avcenc_update_picture_parameter(int slice_type, int is_idr) { VAEncPictureParameterBufferH264 *pic_param; VAStatus va_status; int recon_index; recon_index = get_free_slot(); // Picture level pic_param = &avcenc_context.pic_param; pic_param->CurrPic.picture_id = ref_surface[recon_index]; pic_param->CurrPic.frame_idx = current_frame_num; pic_param->CurrPic.flags = 0; pic_param->CurrPic.TopFieldOrderCnt = current_poc; pic_param->CurrPic.BottomFieldOrderCnt = pic_param->CurrPic.TopFieldOrderCnt; assert(avcenc_context.codedbuf_buf_id != VA_INVALID_ID); pic_param->coded_buf = avcenc_context.codedbuf_buf_id; pic_param->frame_num = current_frame_num; pic_param->pic_fields.bits.idr_pic_flag = !!is_idr; pic_param->pic_fields.bits.reference_pic_flag = (slice_type != SLICE_TYPE_B); CurrentCurrPic = pic_param->CurrPic; if (slice_type == SLICE_TYPE_P || slice_type == SLICE_TYPE_B) memset(pic_param->ReferenceFrames, 0xff, 16 * sizeof(VAPictureH264)); /* invalid all */ if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) { pic_param->ReferenceFrames[0] = RefPicList0[0]; } if (slice_type == SLICE_TYPE_B) { pic_param->ReferenceFrames[1] = RefPicList1[0]; } va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncPictureParameterBufferType, sizeof(*pic_param), 1, pic_param, &avcenc_context.pic_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif static void upload_yuv_to_surface(FILE *yuv_fp, VASurfaceID surface_id) { VAImage surface_image; VAStatus va_status; void *surface_p = NULL; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst, *v_dst; int y_size = picture_width * picture_height; int u_size = (picture_width >> 1) * (picture_height >> 1); int row, col; size_t n_items; do { n_items = fread(newImageBuffer, frame_size, 1, yuv_fp); } while (n_items != 1); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); vaMapBuffer(va_dpy, surface_image.buf, &surface_p); assert(VA_STATUS_SUCCESS == va_status); y_src = newImageBuffer; u_src = newImageBuffer + y_size; /* UV offset for NV12 */ v_src = newImageBuffer + y_size + u_size; y_dst = (unsigned char *)surface_p + surface_image.offsets[0]; u_dst = (unsigned char *)surface_p + surface_image.offsets[1]; /* UV offset for NV12 */ v_dst = (unsigned char *)surface_p + surface_image.offsets[2]; /* Y plane */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += picture_width; } if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */ for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.pitches[1]; u_src += (picture_width / 2); v_src += (picture_width / 2); } } else if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { const int U = surface_image.format.fourcc == VA_FOURCC_I420 ? 1 : 2; const int V = surface_image.format.fourcc == VA_FOURCC_I420 ? 2 : 1; u_dst = (unsigned char *)surface_p + surface_image.offsets[U]; v_dst = (unsigned char *)surface_p + surface_image.offsets[V]; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width / 2); memcpy(v_dst, v_src, surface_image.width / 2); u_dst += surface_image.pitches[U]; v_dst += surface_image.pitches[V]; u_src += (picture_width / 2); v_src += (picture_width / 2); } } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); } static void avcenc_update_slice_parameter(int slice_type) { VAEncSliceParameterBufferH264 *slice_param; VAStatus va_status; int i; // Slice level i = 0; slice_param = &avcenc_context.slice_param[i]; slice_param->macroblock_address = 0; slice_param->num_macroblocks = picture_height_in_mbs * picture_width_in_mbs; slice_param->pic_parameter_set_id = 0; slice_param->slice_type = slice_type; slice_param->direct_spatial_mv_pred_flag = 1; slice_param->num_ref_idx_l0_active_minus1 = 0; /* FIXME: ??? */ slice_param->num_ref_idx_l1_active_minus1 = 0; slice_param->cabac_init_idc = 0; slice_param->slice_qp_delta = 0; slice_param->disable_deblocking_filter_idc = 0; slice_param->slice_alpha_c0_offset_div2 = 2; slice_param->slice_beta_offset_div2 = 2; slice_param->idr_pic_id = 0; /* FIXME: fill other fields */ if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) { memset(slice_param->RefPicList0, 0xFF, 32 * sizeof(VAPictureH264)); slice_param->RefPicList0[0] = RefPicList0[0]; } if (slice_type == SLICE_TYPE_B) { memset(slice_param->RefPicList1, 0xFF, 32 * sizeof(VAPictureH264)); slice_param->RefPicList1[0] = RefPicList1[0]; } va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncSliceParameterBufferType, sizeof(*slice_param), 1, slice_param, &avcenc_context.slice_param_buf_id[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer");; i++; #if 0 slice_param = &avcenc_context.slice_param[i]; slice_param->macroblock_address = picture_height_in_mbs * picture_width_in_mbs / 2; slice_param->num_macroblocks = picture_height_in_mbs * picture_width_in_mbs / 2; slice_param->pic_parameter_set_id = 0; slice_param->slice_type = slice_type; slice_param->direct_spatial_mv_pred_flag = 0; slice_param->num_ref_idx_l0_active_minus1 = 0; /* FIXME: ??? */ slice_param->num_ref_idx_l1_active_minus1 = 0; slice_param->cabac_init_idc = 0; slice_param->slice_qp_delta = 0; slice_param->disable_deblocking_filter_idc = 0; slice_param->slice_alpha_c0_offset_div2 = 2; slice_param->slice_beta_offset_div2 = 2; slice_param->idr_pic_id = 0; /* FIXME: fill other fields */ va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncSliceParameterBufferType, sizeof(*slice_param), 1, slice_param, &avcenc_context.slice_param_buf_id[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer");; i++; #endif avcenc_context.num_slices = i; } static int update_ReferenceFrames(void) { int i; /* B-frame is not used for reference */ if (current_frame_type == SLICE_TYPE_B) return 0; CurrentCurrPic.flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE; numShortTerm++; if (numShortTerm > num_ref_frames) numShortTerm = num_ref_frames; for (i = numShortTerm - 1; i > 0; i--) ReferenceFrames[i] = ReferenceFrames[i - 1]; ReferenceFrames[0] = CurrentCurrPic; if (current_frame_type != SLICE_TYPE_B) current_frame_num++; if (current_frame_num > MaxFrameNum) current_frame_num = 0; /* Update the use_slot. Only when the surface is used in reference * frame list, the use_slot[index] is set */ for (i = 0; i < SURFACE_NUM; i++) { int j; bool found; found = false; for (j = 0; j < numShortTerm; j++) { if (ref_surface[i] == ReferenceFrames[j].picture_id) { found = true; break; } } if (found) use_slot[i] = 1; else use_slot[i] = 0; } return 0; } static int begin_picture(FILE *yuv_fp, int frame_num, int display_num, int slice_type, int is_idr) { VAStatus va_status; if (avcenc_context.upload_thread_value != 0) { fprintf(stderr, "FATAL error!!!\n"); exit(1); } pthread_join(avcenc_context.upload_thread_id, NULL); avcenc_context.upload_thread_value = -1; if (avcenc_context.current_input_surface == SID_INPUT_PICTURE_0) avcenc_context.current_input_surface = SID_INPUT_PICTURE_1; else avcenc_context.current_input_surface = SID_INPUT_PICTURE_0; if (aud_nal_enable) { VAEncPackedHeaderParameterBuffer packed_header_param_buffer; unsigned int length_in_bits; unsigned char *packed_buffer = NULL; length_in_bits = build_nal_delimiter(&packed_buffer); packed_header_param_buffer.type = VAEncPackedHeaderRawData; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 1; va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &avcenc_context.packed_aud_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_buffer, &avcenc_context.packed_aud_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); free(packed_buffer); } if (is_idr) { VAEncPackedHeaderParameterBuffer packed_header_param_buffer; unsigned int length_in_bits; unsigned char *packed_seq_buffer = NULL, *packed_pic_buffer = NULL; assert(slice_type == SLICE_TYPE_I); length_in_bits = build_packed_seq_buffer(&packed_seq_buffer); packed_header_param_buffer.type = VAEncPackedHeaderSequence; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &avcenc_context.packed_seq_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_seq_buffer, &avcenc_context.packed_seq_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); length_in_bits = build_packed_pic_buffer(&packed_pic_buffer); packed_header_param_buffer.type = VAEncPackedHeaderPicture; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &avcenc_context.packed_pic_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_pic_buffer, &avcenc_context.packed_pic_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); free(packed_seq_buffer); free(packed_pic_buffer); } /* sequence parameter set */ VAEncSequenceParameterBufferH264 *seq_param = &avcenc_context.seq_param; va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncSequenceParameterBufferType, sizeof(*seq_param), 1, seq_param, &avcenc_context.seq_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* hrd parameter */ VAEncMiscParameterBuffer *misc_param; VAEncMiscParameterHRD *misc_hrd_param; va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl), 1, NULL, &avcenc_context.misc_parameter_hrd_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, avcenc_context.misc_parameter_hrd_buf_id, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeHRD; misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data; if (frame_bit_rate > 0) { misc_hrd_param->initial_buffer_fullness = frame_bit_rate * 1000 * 4; misc_hrd_param->buffer_size = frame_bit_rate * 1000 * 8; } else { misc_hrd_param->initial_buffer_fullness = 0; misc_hrd_param->buffer_size = 0; } vaUnmapBuffer(va_dpy, avcenc_context.misc_parameter_hrd_buf_id); /* ROI parameter: hard code for test on only one region (0,0,120,120) with qp_delta=4 */ if (roi_test_enable) { VAEncMiscParameterBufferROI *misc_roi_param; int roi_num = 1; va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterBufferROI) + roi_num * sizeof(VAEncROI), 1, NULL, &avcenc_context.misc_parameter_roi_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, avcenc_context.misc_parameter_roi_buf_id, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeROI; misc_roi_param = (VAEncMiscParameterBufferROI *)misc_param->data; { misc_roi_param->roi_flags.bits.roi_value_is_qp_delta = 1; /* * Max/Min delta_qp is only used in CBR mode. It is ingored under CQP mode. * max_delta_qp means the allowed upper bound of qp delta. (qp + X) * min_delta_qp means the allowed lower bound of qp delta. (qp -X) * So it will be better that it is positive. Otherwise the driver will * use the default bound setting. */ misc_roi_param->max_delta_qp = 3; misc_roi_param->min_delta_qp = 3; /* one example of ROI region conf. * please change it on the fly. */ VAEncROI *region_roi = (VAEncROI *)((char *)misc_param + sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterBufferROI)); /* * Under CQP mode roi_value specifies the qp_delta that is added to frame qp * Under CBR mode roi_value specifies the important level (positive means that * it is important. negative means that it is less important). */ region_roi->roi_value = 4; region_roi->roi_rectangle.x = 0; region_roi->roi_rectangle.y = 0; region_roi->roi_rectangle.width = (120 < picture_width / 4) ? 120 : picture_width / 4; region_roi->roi_rectangle.height = (120 < picture_height / 4) ? 120 : picture_height / 4; misc_roi_param->roi = region_roi; misc_roi_param->num_roi = 1; } vaUnmapBuffer(va_dpy, avcenc_context.misc_parameter_roi_buf_id); } return 0; } int avcenc_render_picture() { VAStatus va_status; VABufferID va_buffers[20]; unsigned int num_va_buffers = 0; int i; if (avcenc_context.packed_aud_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.packed_aud_header_param_buf_id; if (avcenc_context.packed_aud_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.packed_aud_buf_id; va_buffers[num_va_buffers++] = avcenc_context.seq_param_buf_id; va_buffers[num_va_buffers++] = avcenc_context.pic_param_buf_id; if (avcenc_context.packed_seq_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.packed_seq_header_param_buf_id; if (avcenc_context.packed_seq_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.packed_seq_buf_id; if (avcenc_context.packed_pic_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.packed_pic_header_param_buf_id; if (avcenc_context.packed_pic_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.packed_pic_buf_id; if (avcenc_context.packed_sei_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.packed_sei_header_param_buf_id; if (avcenc_context.packed_sei_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.packed_sei_buf_id; if (avcenc_context.misc_parameter_hrd_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.misc_parameter_hrd_buf_id; if (avcenc_context.misc_parameter_roi_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = avcenc_context.misc_parameter_roi_buf_id; va_status = vaBeginPicture(va_dpy, avcenc_context.context_id, surface_ids[avcenc_context.current_input_surface]); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, avcenc_context.context_id, va_buffers, num_va_buffers); CHECK_VASTATUS(va_status, "vaRenderPicture"); for (i = 0; i < avcenc_context.num_slices; i++) { va_status = vaRenderPicture(va_dpy, avcenc_context.context_id, &avcenc_context.slice_param_buf_id[i], 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); } va_status = vaEndPicture(va_dpy, avcenc_context.context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); return 0; } static int avcenc_destroy_buffers(VABufferID *va_buffers, unsigned int num_va_buffers) { VAStatus va_status; unsigned int i; for (i = 0; i < num_va_buffers; i++) { if (va_buffers[i] != VA_INVALID_ID) { va_status = vaDestroyBuffer(va_dpy, va_buffers[i]); CHECK_VASTATUS(va_status, "vaDestroyBuffer"); va_buffers[i] = VA_INVALID_ID; } } return 0; } static void end_picture(void) { update_ReferenceFrames(); avcenc_destroy_buffers(&avcenc_context.seq_param_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.pic_param_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.packed_seq_header_param_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.packed_seq_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.packed_pic_header_param_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.packed_pic_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.packed_sei_header_param_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.packed_sei_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.slice_param_buf_id[0], avcenc_context.num_slices); avcenc_destroy_buffers(&avcenc_context.codedbuf_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.misc_parameter_hrd_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.misc_parameter_roi_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.packed_aud_header_param_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.packed_aud_buf_id, 1); memset(avcenc_context.slice_param, 0, sizeof(avcenc_context.slice_param)); avcenc_context.num_slices = 0; } #define BITSTREAM_ALLOCATE_STEPPING 4096 struct __bitstream { unsigned int *buffer; int bit_offset; int max_size_in_dword; }; typedef struct __bitstream bitstream; #if 0 static int get_coded_bitsteam_length(unsigned char *buffer, int buffer_length) { int i; for (i = 0; i < buffer_length - 3; i++) { if (!buffer[i] && !buffer[i + 1] && !buffer[i + 2] && !buffer[i + 3]) break; } return i; } #endif static unsigned int va_swap32(unsigned int val) { unsigned char *pval = (unsigned char *)&val; return ((pval[0] << 24) | (pval[1] << 16) | (pval[2] << 8) | (pval[3] << 0)); } static void bitstream_start(bitstream *bs) { bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING; bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1); assert(bs->buffer); bs->bit_offset = 0; } static void bitstream_end(bitstream *bs) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (bit_offset) { bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left)); } } static void bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (!size_in_bits) return; bs->bit_offset += size_in_bits; if (bit_left > size_in_bits) { bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val); } else { size_in_bits -= bit_left; bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits); bs->buffer[pos] = va_swap32(bs->buffer[pos]); if (pos + 1 == bs->max_size_in_dword) { bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING; bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int)); assert(bs->buffer); } bs->buffer[pos + 1] = val; } } static void bitstream_put_ue(bitstream *bs, unsigned int val) { int size_in_bits = 0; int tmp_val = ++val; while (tmp_val) { tmp_val >>= 1; size_in_bits++; } bitstream_put_ui(bs, 0, size_in_bits - 1); // leading zero bitstream_put_ui(bs, val, size_in_bits); } static void bitstream_put_se(bitstream *bs, int val) { unsigned int new_val; if (val <= 0) new_val = -2 * val; else new_val = 2 * val - 1; bitstream_put_ue(bs, new_val); } static void bitstream_byte_aligning(bitstream *bs, int bit) { int bit_offset = (bs->bit_offset & 0x7); int bit_left = 8 - bit_offset; int new_val; if (!bit_offset) return; assert(bit == 0 || bit == 1); if (bit) new_val = (1 << bit_left) - 1; else new_val = 0; bitstream_put_ui(bs, new_val, bit_left); } static void rbsp_trailing_bits(bitstream *bs) { bitstream_put_ui(bs, 1, 1); bitstream_byte_aligning(bs, 0); } static void nal_start_code_prefix(bitstream *bs) { bitstream_put_ui(bs, 0x00000001, 32); } static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type) { bitstream_put_ui(bs, 0, 1); /* forbidden_zero_bit: 0 */ bitstream_put_ui(bs, nal_ref_idc, 2); bitstream_put_ui(bs, nal_unit_type, 5); } static void sps_rbsp(bitstream *bs) { VAEncSequenceParameterBufferH264 *seq_param = &avcenc_context.seq_param; int profile_idc = PROFILE_IDC_BASELINE; if (avcenc_context.profile == VAProfileH264High) profile_idc = PROFILE_IDC_HIGH; else if (avcenc_context.profile == VAProfileH264Main) profile_idc = PROFILE_IDC_MAIN; bitstream_put_ui(bs, profile_idc, 8); /* profile_idc */ bitstream_put_ui(bs, !!(avcenc_context.constraint_set_flag & 1), 1); /* constraint_set0_flag */ bitstream_put_ui(bs, !!(avcenc_context.constraint_set_flag & 2), 1); /* constraint_set1_flag */ bitstream_put_ui(bs, !!(avcenc_context.constraint_set_flag & 4), 1); /* constraint_set2_flag */ bitstream_put_ui(bs, !!(avcenc_context.constraint_set_flag & 8), 1); /* constraint_set3_flag */ bitstream_put_ui(bs, 0, 4); /* reserved_zero_4bits */ bitstream_put_ui(bs, seq_param->level_idc, 8); /* level_idc */ bitstream_put_ue(bs, seq_param->seq_parameter_set_id); /* seq_parameter_set_id */ if (profile_idc == PROFILE_IDC_HIGH) { bitstream_put_ue(bs, 1); /* chroma_format_idc = 1, 4:2:0 */ bitstream_put_ue(bs, 0); /* bit_depth_luma_minus8 */ bitstream_put_ue(bs, 0); /* bit_depth_chroma_minus8 */ bitstream_put_ui(bs, 0, 1); /* qpprime_y_zero_transform_bypass_flag */ bitstream_put_ui(bs, 0, 1); /* seq_scaling_matrix_present_flag */ } bitstream_put_ue(bs, seq_param->seq_fields.bits.log2_max_frame_num_minus4); /* log2_max_frame_num_minus4 */ bitstream_put_ue(bs, seq_param->seq_fields.bits.pic_order_cnt_type); /* pic_order_cnt_type */ if (seq_param->seq_fields.bits.pic_order_cnt_type == 0) bitstream_put_ue(bs, seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4); /* log2_max_pic_order_cnt_lsb_minus4 */ else { assert(0); } bitstream_put_ue(bs, seq_param->max_num_ref_frames); /* num_ref_frames */ bitstream_put_ui(bs, 0, 1); /* gaps_in_frame_num_value_allowed_flag */ bitstream_put_ue(bs, seq_param->picture_width_in_mbs - 1); /* pic_width_in_mbs_minus1 */ bitstream_put_ue(bs, seq_param->picture_height_in_mbs - 1); /* pic_height_in_map_units_minus1 */ bitstream_put_ui(bs, seq_param->seq_fields.bits.frame_mbs_only_flag, 1); /* frame_mbs_only_flag */ if (!seq_param->seq_fields.bits.frame_mbs_only_flag) { assert(0); } bitstream_put_ui(bs, seq_param->seq_fields.bits.direct_8x8_inference_flag, 1); /* direct_8x8_inference_flag */ bitstream_put_ui(bs, seq_param->frame_cropping_flag, 1); /* frame_cropping_flag */ if (seq_param->frame_cropping_flag) { bitstream_put_ue(bs, seq_param->frame_crop_left_offset); /* frame_crop_left_offset */ bitstream_put_ue(bs, seq_param->frame_crop_right_offset); /* frame_crop_right_offset */ bitstream_put_ue(bs, seq_param->frame_crop_top_offset); /* frame_crop_top_offset */ bitstream_put_ue(bs, seq_param->frame_crop_bottom_offset); /* frame_crop_bottom_offset */ } if (frame_bit_rate < 0) { bitstream_put_ui(bs, 0, 1); /* vui_parameters_present_flag */ } else { bitstream_put_ui(bs, 1, 1); /* vui_parameters_present_flag */ bitstream_put_ui(bs, 0, 1); /* aspect_ratio_info_present_flag */ bitstream_put_ui(bs, 0, 1); /* overscan_info_present_flag */ bitstream_put_ui(bs, 0, 1); /* video_signal_type_present_flag */ bitstream_put_ui(bs, 0, 1); /* chroma_loc_info_present_flag */ bitstream_put_ui(bs, 1, 1); /* timing_info_present_flag */ { bitstream_put_ui(bs, 1, 32); bitstream_put_ui(bs, frame_rate * 2, 32); bitstream_put_ui(bs, 1, 1); } bitstream_put_ui(bs, 1, 1); /* nal_hrd_parameters_present_flag */ { // hrd_parameters bitstream_put_ue(bs, 0); /* cpb_cnt_minus1 */ bitstream_put_ui(bs, 0, 4); /* bit_rate_scale */ bitstream_put_ui(bs, 2, 4); /* cpb_size_scale */ /* the frame_bit_rate is in kbps */ bitstream_put_ue(bs, (((frame_bit_rate * 1000) >> 6) - 1)); /* bit_rate_value_minus1[0] */ bitstream_put_ue(bs, ((frame_bit_rate * 8000) >> 6) - 1); /* cpb_size_value_minus1[0] */ bitstream_put_ui(bs, 1, 1); /* cbr_flag[0] */ /* initial_cpb_removal_delay_length_minus1 */ bitstream_put_ui(bs, (avcenc_context.i_initial_cpb_removal_delay_length - 1), 5); /* cpb_removal_delay_length_minus1 */ bitstream_put_ui(bs, (avcenc_context.i_cpb_removal_delay_length - 1), 5); /* dpb_output_delay_length_minus1 */ bitstream_put_ui(bs, (avcenc_context.i_dpb_output_delay_length - 1), 5); /* time_offset_length */ bitstream_put_ui(bs, (avcenc_context.time_offset_length - 1), 5); } bitstream_put_ui(bs, 0, 1); /* vcl_hrd_parameters_present_flag */ bitstream_put_ui(bs, 0, 1); /* low_delay_hrd_flag */ bitstream_put_ui(bs, 0, 1); /* pic_struct_present_flag */ bitstream_put_ui(bs, 0, 1); /* bitstream_restriction_flag */ } rbsp_trailing_bits(bs); /* rbsp_trailing_bits */ } #if 0 static void build_nal_sps(FILE *avc_fp) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SPS); sps_rbsp(&bs); bitstream_end(&bs, avc_fp); } #endif static void pps_rbsp(bitstream *bs) { VAEncPictureParameterBufferH264 *pic_param = &avcenc_context.pic_param; bitstream_put_ue(bs, pic_param->pic_parameter_set_id); /* pic_parameter_set_id */ bitstream_put_ue(bs, pic_param->seq_parameter_set_id); /* seq_parameter_set_id */ bitstream_put_ui(bs, pic_param->pic_fields.bits.entropy_coding_mode_flag, 1); /* entropy_coding_mode_flag */ bitstream_put_ui(bs, 0, 1); /* pic_order_present_flag: 0 */ bitstream_put_ue(bs, 0); /* num_slice_groups_minus1 */ bitstream_put_ue(bs, pic_param->num_ref_idx_l0_active_minus1); /* num_ref_idx_l0_active_minus1 */ bitstream_put_ue(bs, pic_param->num_ref_idx_l1_active_minus1); /* num_ref_idx_l1_active_minus1 1 */ bitstream_put_ui(bs, pic_param->pic_fields.bits.weighted_pred_flag, 1); /* weighted_pred_flag: 0 */ bitstream_put_ui(bs, pic_param->pic_fields.bits.weighted_bipred_idc, 2); /* weighted_bipred_idc: 0 */ bitstream_put_se(bs, pic_param->pic_init_qp - 26); /* pic_init_qp_minus26 */ bitstream_put_se(bs, 0); /* pic_init_qs_minus26 */ bitstream_put_se(bs, 0); /* chroma_qp_index_offset */ bitstream_put_ui(bs, pic_param->pic_fields.bits.deblocking_filter_control_present_flag, 1); /* deblocking_filter_control_present_flag */ bitstream_put_ui(bs, 0, 1); /* constrained_intra_pred_flag */ bitstream_put_ui(bs, 0, 1); /* redundant_pic_cnt_present_flag */ /* more_rbsp_data */ bitstream_put_ui(bs, pic_param->pic_fields.bits.transform_8x8_mode_flag, 1); /*transform_8x8_mode_flag */ bitstream_put_ui(bs, 0, 1); /* pic_scaling_matrix_present_flag */ bitstream_put_se(bs, pic_param->second_chroma_qp_index_offset); /*second_chroma_qp_index_offset */ rbsp_trailing_bits(bs); } #if 0 static void build_nal_pps(FILE *avc_fp) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_HIGH, NAL_PPS); pps_rbsp(&bs); bitstream_end(&bs, avc_fp); } static void build_header(FILE *avc_fp) { build_nal_sps(avc_fp); build_nal_pps(avc_fp); } #endif static void nal_delimiter(bitstream *bs, int slice_type) { if (slice_type == SLICE_TYPE_I || slice_type == FRAME_IDR) bitstream_put_ui(bs, 0, 3); else if (slice_type == SLICE_TYPE_P) bitstream_put_ui(bs, 1, 3); else if (slice_type == SLICE_TYPE_B) bitstream_put_ui(bs, 2, 3); else assert(0); bitstream_put_ui(bs, 1, 1); bitstream_put_ui(bs, 0, 4); } static int build_nal_delimiter(unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_NONE, NAL_DELIMITER); nal_delimiter(&bs, current_frame_type); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_pic_buffer(unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_HIGH, NAL_PPS); pps_rbsp(&bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_seq_buffer(unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SPS); sps_rbsp(&bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_idr_sei_buffer_timing(unsigned int init_cpb_removal_delay_length, unsigned int cpb_removal_length, unsigned int dpb_output_length, unsigned char **sei_buffer) { unsigned char *byte_buf; int bp_byte_size, i, pic_byte_size; unsigned int cpb_removal_delay; bitstream nal_bs; bitstream sei_bp_bs, sei_pic_bs; bitstream_start(&sei_bp_bs); bitstream_put_ue(&sei_bp_bs, 0); /*seq_parameter_set_id*/ /* SEI buffer period info */ /* NALHrdBpPresentFlag == 1 */ bitstream_put_ui(&sei_bp_bs, avcenc_context.i_initial_cpb_removal_delay, init_cpb_removal_delay_length); bitstream_put_ui(&sei_bp_bs, avcenc_context.i_initial_cpb_removal_delay_offset, init_cpb_removal_delay_length); if (sei_bp_bs.bit_offset & 0x7) { bitstream_put_ui(&sei_bp_bs, 1, 1); } bitstream_end(&sei_bp_bs); bp_byte_size = (sei_bp_bs.bit_offset + 7) / 8; /* SEI pic timing info */ bitstream_start(&sei_pic_bs); /* The info of CPB and DPB delay is controlled by CpbDpbDelaysPresentFlag, * which is derived as 1 if one of the following conditions is true: * nal_hrd_parameters_present_flag is present in the bitstream and is equal to 1, * vcl_hrd_parameters_present_flag is present in the bitstream and is equal to 1, */ cpb_removal_delay = (avcenc_context.current_cpb_removal - avcenc_context.prev_idr_cpb_removal); bitstream_put_ui(&sei_pic_bs, cpb_removal_delay, cpb_removal_length); bitstream_put_ui(&sei_pic_bs, avcenc_context.current_dpb_removal_delta, dpb_output_length); if (sei_pic_bs.bit_offset & 0x7) { bitstream_put_ui(&sei_pic_bs, 1, 1); } /* The pic_structure_present_flag determines whether the pic_structure * info is written into the SEI pic timing info. * Currently it is set to zero. */ bitstream_end(&sei_pic_bs); pic_byte_size = (sei_pic_bs.bit_offset + 7) / 8; bitstream_start(&nal_bs); nal_start_code_prefix(&nal_bs); nal_header(&nal_bs, NAL_REF_IDC_NONE, NAL_SEI); /* Write the SEI buffer period data */ bitstream_put_ui(&nal_bs, 0, 8); bitstream_put_ui(&nal_bs, bp_byte_size, 8); byte_buf = (unsigned char *)sei_bp_bs.buffer; for (i = 0; i < bp_byte_size; i++) { bitstream_put_ui(&nal_bs, byte_buf[i], 8); } free(byte_buf); /* write the SEI pic timing data */ bitstream_put_ui(&nal_bs, 0x01, 8); bitstream_put_ui(&nal_bs, pic_byte_size, 8); byte_buf = (unsigned char *)sei_pic_bs.buffer; for (i = 0; i < pic_byte_size; i++) { bitstream_put_ui(&nal_bs, byte_buf[i], 8); } free(byte_buf); rbsp_trailing_bits(&nal_bs); bitstream_end(&nal_bs); *sei_buffer = (unsigned char *)nal_bs.buffer; return nal_bs.bit_offset; } static int build_packed_sei_pic_timing(unsigned int cpb_removal_length, unsigned int dpb_output_length, unsigned char **sei_buffer) { unsigned char *byte_buf; int i, pic_byte_size; unsigned int cpb_removal_delay; bitstream nal_bs; bitstream sei_pic_bs; bitstream_start(&sei_pic_bs); /* The info of CPB and DPB delay is controlled by CpbDpbDelaysPresentFlag, * which is derived as 1 if one of the following conditions is true: * nal_hrd_parameters_present_flag is present in the bitstream and is equal to 1, * vcl_hrd_parameters_present_flag is present in the bitstream and is equal to 1, */ cpb_removal_delay = (avcenc_context.current_cpb_removal - avcenc_context.current_idr_cpb_removal); bitstream_put_ui(&sei_pic_bs, cpb_removal_delay, cpb_removal_length); bitstream_put_ui(&sei_pic_bs, avcenc_context.current_dpb_removal_delta, dpb_output_length); if (sei_pic_bs.bit_offset & 0x7) { bitstream_put_ui(&sei_pic_bs, 1, 1); } /* The pic_structure_present_flag determines whether the pic_structure * info is written into the SEI pic timing info. * Currently it is set to zero. */ bitstream_end(&sei_pic_bs); pic_byte_size = (sei_pic_bs.bit_offset + 7) / 8; bitstream_start(&nal_bs); nal_start_code_prefix(&nal_bs); nal_header(&nal_bs, NAL_REF_IDC_NONE, NAL_SEI); /* write the SEI Pic timing data */ bitstream_put_ui(&nal_bs, 0x01, 8); bitstream_put_ui(&nal_bs, pic_byte_size, 8); byte_buf = (unsigned char *)sei_pic_bs.buffer; for (i = 0; i < pic_byte_size; i++) { bitstream_put_ui(&nal_bs, byte_buf[i], 8); } free(byte_buf); rbsp_trailing_bits(&nal_bs); bitstream_end(&nal_bs); *sei_buffer = (unsigned char *)nal_bs.buffer; return nal_bs.bit_offset; } #if 0 static void slice_header(bitstream *bs, int frame_num, int display_frame, int slice_type, int nal_ref_idc, int is_idr) { VAEncSequenceParameterBufferH264 *seq_param = &avcenc_context.seq_param; VAEncPictureParameterBufferH264 *pic_param = &avcenc_context.pic_param; int is_cabac = (pic_param->pic_fields.bits.entropy_coding_mode_flag == ENTROPY_MODE_CABAC); bitstream_put_ue(bs, 0); /* first_mb_in_slice: 0 */ bitstream_put_ue(bs, slice_type); /* slice_type */ bitstream_put_ue(bs, 0); /* pic_parameter_set_id: 0 */ bitstream_put_ui(bs, frame_num & 0x0F, seq_param->seq_fields.bits.log2_max_frame_num_minus4 + 4); /* frame_num */ /* frame_mbs_only_flag == 1 */ if (!seq_param->seq_fields.bits.frame_mbs_only_flag) { /* FIXME: */ assert(0); } if (is_idr) bitstream_put_ue(bs, 0); /* idr_pic_id: 0 */ if (seq_param->seq_fields.bits.pic_order_cnt_type == 0) { bitstream_put_ui(bs, (display_frame * 2) & 0x3F, seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 + 4); /* only support frame */ } else { /* FIXME: */ assert(0); } /* redundant_pic_cnt_present_flag == 0 */ /* slice type */ if (slice_type == SLICE_TYPE_P) { bitstream_put_ui(bs, 0, 1); /* num_ref_idx_active_override_flag: 0 */ /* ref_pic_list_reordering */ bitstream_put_ui(bs, 0, 1); /* ref_pic_list_reordering_flag_l0: 0 */ } else if (slice_type == SLICE_TYPE_B) { bitstream_put_ui(bs, 1, 1); /* direct_spatial_mv_pred: 1 */ bitstream_put_ui(bs, 0, 1); /* num_ref_idx_active_override_flag: 0 */ /* ref_pic_list_reordering */ bitstream_put_ui(bs, 0, 1); /* ref_pic_list_reordering_flag_l0: 0 */ bitstream_put_ui(bs, 0, 1); /* ref_pic_list_reordering_flag_l1: 0 */ } /* weighted_pred_flag == 0 */ /* dec_ref_pic_marking */ if (nal_ref_idc != 0) { if (is_idr) { bitstream_put_ui(bs, 0, 1); /* no_output_of_prior_pics_flag: 0 */ bitstream_put_ui(bs, 0, 1); /* long_term_reference_flag: 0 */ } else { bitstream_put_ui(bs, 0, 1); /* adaptive_ref_pic_marking_mode_flag: 0 */ } } if (is_cabac && (slice_type != SLICE_TYPE_I)) bitstream_put_ue(bs, 0); /* cabac_init_idc: 0 */ bitstream_put_se(bs, 0); /* slice_qp_delta: 0 */ if (pic_param->pic_fields.bits.deblocking_filter_control_present_flag == 1) { bitstream_put_ue(bs, 0); /* disable_deblocking_filter_idc: 0 */ bitstream_put_se(bs, 2); /* slice_alpha_c0_offset_div2: 2 */ bitstream_put_se(bs, 2); /* slice_beta_offset_div2: 2 */ } } static void slice_data(bitstream *bs) { VACodedBufferSegment *coded_buffer_segment; unsigned char *coded_mem; int i, slice_data_length; VAStatus va_status; VASurfaceStatus surface_status; va_status = vaSyncSurface(va_dpy, surface_ids[avcenc_context.current_input_surface]); CHECK_VASTATUS(va_status, "vaSyncSurface"); surface_status = 0; va_status = vaQuerySurfaceStatus(va_dpy, surface_ids[avcenc_context.current_input_surface], &surface_status); CHECK_VASTATUS(va_status, "vaQuerySurfaceStatus"); va_status = vaMapBuffer(va_dpy, avcenc_context.codedbuf_buf_id, (void **)(&coded_buffer_segment)); CHECK_VASTATUS(va_status, "vaMapBuffer"); coded_mem = coded_buffer_segment->buf; slice_data_length = get_coded_bitsteam_length(coded_mem, codedbuf_size); for (i = 0; i < slice_data_length; i++) { bitstream_put_ui(bs, *coded_mem, 8); coded_mem++; } vaUnmapBuffer(va_dpy, avcenc_context.codedbuf_buf_id); } static void build_nal_slice(FILE *avc_fp, int frame_num, int display_frame, int slice_type, int is_idr) { bitstream bs; bitstream_start(&bs); slice_data(&bs); bitstream_end(&bs, avc_fp); } #endif static int store_coded_buffer(FILE *avc_fp, int slice_type) { VACodedBufferSegment *coded_buffer_segment; unsigned char *coded_mem; int slice_data_length; VAStatus va_status; VASurfaceStatus surface_status; size_t w_items; va_status = vaSyncSurface(va_dpy, surface_ids[avcenc_context.current_input_surface]); CHECK_VASTATUS(va_status, "vaSyncSurface"); surface_status = 0; va_status = vaQuerySurfaceStatus(va_dpy, surface_ids[avcenc_context.current_input_surface], &surface_status); CHECK_VASTATUS(va_status, "vaQuerySurfaceStatus"); va_status = vaMapBuffer(va_dpy, avcenc_context.codedbuf_buf_id, (void **)(&coded_buffer_segment)); CHECK_VASTATUS(va_status, "vaMapBuffer"); coded_mem = coded_buffer_segment->buf; if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) { if (slice_type == SLICE_TYPE_I) avcenc_context.codedbuf_i_size *= 2; else avcenc_context.codedbuf_pb_size *= 2; vaUnmapBuffer(va_dpy, avcenc_context.codedbuf_buf_id); return -1; } slice_data_length = coded_buffer_segment->size; do { w_items = fwrite(coded_mem, slice_data_length, 1, avc_fp); } while (w_items != 1); vaUnmapBuffer(va_dpy, avcenc_context.codedbuf_buf_id); return 0; } /* * It is from the h264encode.c but it simplifies something. * For example: When one frame is encoded as I-frame under the scenario with * P-B frames, it will be regarded as IDR frame(key-frame) and then new GOP is * started. If the video clip is encoded as all I-frames, the first frame * is regarded as IDR and the remaining is regarded as I-frame. * */ static void encoding2display_order( unsigned long long encoding_order, int gop_size, int ip_period, unsigned long long *displaying_order, int *frame_type) { int encoding_order_gop = 0; /* When ip_period is 0, all are I/IDR frames */ if (ip_period == 0) { /* all are I/IDR frames */ if (encoding_order == 0) *frame_type = FRAME_IDR; else *frame_type = SLICE_TYPE_I; *displaying_order = encoding_order; return; } /* new sequence like * IDR PPPPP IDRPPPPP * IDR (PBB)(PBB)(PBB)(PBB) IDR (PBB)(PBB)(PBB)(PBB) */ encoding_order_gop = encoding_order % gop_size; if (encoding_order_gop == 0) { /* the first frame */ *frame_type = FRAME_IDR; *displaying_order = encoding_order; } else { int gop_delta; gop_delta = 1; if ((ip_period != 1) && ((gop_size - 1) % ip_period)) { int ipb_size; ipb_size = (gop_size - 1) / ip_period * ip_period + 1; if (encoding_order_gop >= ipb_size) { gop_delta = ipb_size; ip_period = gop_size - ipb_size; } } if (((encoding_order_gop - gop_delta) % ip_period) == 0) { /* P frames */ *frame_type = SLICE_TYPE_P; *displaying_order = encoding_order + ip_period - 1; } else { *frame_type = SLICE_TYPE_B; *displaying_order = encoding_order - 1; } } } static void encode_picture(FILE *yuv_fp, FILE *avc_fp, int frame_num, int display_num, int is_idr, int slice_type, int next_is_bpic, int next_display_num) { VAStatus va_status; int ret = 0, codedbuf_size; begin_picture(yuv_fp, frame_num, display_num, slice_type, is_idr); //if (next_display_num < frame_number) { if (1) { int index; /* prepare for next frame */ if (avcenc_context.current_input_surface == SID_INPUT_PICTURE_0) index = SID_INPUT_PICTURE_1; else index = SID_INPUT_PICTURE_0; if (next_display_num >= frame_number) next_display_num = frame_number - 1; ret = fseeko(yuv_fp, (off_t)frame_size * next_display_num, SEEK_SET); CHECK_CONDITION(ret == 0); avcenc_context.upload_thread_param.yuv_fp = yuv_fp; avcenc_context.upload_thread_param.surface_id = surface_ids[index]; avcenc_context.upload_thread_value = pthread_create(&avcenc_context.upload_thread_id, NULL, upload_thread_function, (void*)&avcenc_context.upload_thread_param); } do { avcenc_destroy_buffers(&avcenc_context.codedbuf_buf_id, 1); avcenc_destroy_buffers(&avcenc_context.pic_param_buf_id, 1); if (SLICE_TYPE_I == slice_type) { codedbuf_size = avcenc_context.codedbuf_i_size; } else { codedbuf_size = avcenc_context.codedbuf_pb_size; } /* coded buffer */ va_status = vaCreateBuffer(va_dpy, avcenc_context.context_id, VAEncCodedBufferType, codedbuf_size, 1, NULL, &avcenc_context.codedbuf_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* Update the RefPicList */ update_RefPicList(); /* picture parameter set */ avcenc_update_picture_parameter(slice_type, is_idr); /* slice parameter */ avcenc_update_slice_parameter(slice_type); if (avcenc_context.rate_control_method == VA_RC_CBR) avcenc_update_sei_param(is_idr); avcenc_render_picture(); ret = store_coded_buffer(avc_fp, slice_type); } while (ret); end_picture(); } static void show_help() { printf("Usage: avnenc [--qp=qpvalue|--fb=framebitrate] [--mode=0(I frames only)/1(I and P frames)/2(I, P and B frames)] [--low-power] [--roi-test] [--frames=0(ignore when < 0)/N(number)] \n"); } static void avcenc_context_seq_param_init(VAEncSequenceParameterBufferH264 *seq_param, int width, int height) { int width_in_mbs = (width + 15) / 16; int height_in_mbs = (height + 15) / 16; int frame_cropping_flag = 0; int frame_crop_bottom_offset = 0; seq_param->seq_parameter_set_id = 0; seq_param->level_idc = 41; seq_param->intra_period = intra_period; seq_param->intra_idr_period = seq_param->intra_period; seq_param->ip_period = ip_period; seq_param->max_num_ref_frames = 4; seq_param->picture_width_in_mbs = width_in_mbs; seq_param->picture_height_in_mbs = height_in_mbs; seq_param->seq_fields.bits.frame_mbs_only_flag = 1; seq_param->seq_fields.bits.chroma_format_idc = 1; if (frame_bit_rate > 0) seq_param->bits_per_second = 1000 * frame_bit_rate; /* use kbps as input */ else seq_param->bits_per_second = 0; seq_param->time_scale = frame_rate * 2; seq_param->num_units_in_tick = 1; /* Tc = num_units_in_tick / time_sacle */ if (height_in_mbs * 16 - height) { frame_cropping_flag = 1; frame_crop_bottom_offset = (height_in_mbs * 16 - height) / (2 * (!seq_param->seq_fields.bits.frame_mbs_only_flag + 1)); } seq_param->frame_cropping_flag = frame_cropping_flag; seq_param->frame_crop_left_offset = 0; seq_param->frame_crop_right_offset = 0; seq_param->frame_crop_top_offset = 0; seq_param->frame_crop_bottom_offset = frame_crop_bottom_offset; seq_param->seq_fields.bits.pic_order_cnt_type = 0; seq_param->seq_fields.bits.direct_8x8_inference_flag = 0; seq_param->seq_fields.bits.log2_max_frame_num_minus4 = Log2MaxFrameNum - 4; seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 = Log2MaxPicOrderCntLsb - 4; if (frame_bit_rate > 0) seq_param->vui_parameters_present_flag = 1; //HRD info located in vui else seq_param->vui_parameters_present_flag = 0; } static void avcenc_context_pic_param_init(VAEncPictureParameterBufferH264 *pic_param) { pic_param->seq_parameter_set_id = 0; pic_param->pic_parameter_set_id = 0; pic_param->last_picture = 0; pic_param->frame_num = 0; pic_param->pic_init_qp = (qp_value >= 0 ? qp_value : 26); pic_param->num_ref_idx_l0_active_minus1 = 0; pic_param->num_ref_idx_l1_active_minus1 = 0; pic_param->pic_fields.bits.idr_pic_flag = 0; pic_param->pic_fields.bits.reference_pic_flag = 0; pic_param->pic_fields.bits.entropy_coding_mode_flag = ENTROPY_MODE_CABAC; pic_param->pic_fields.bits.weighted_pred_flag = 0; pic_param->pic_fields.bits.weighted_bipred_idc = 0; if (avcenc_context.constraint_set_flag & 0x7) pic_param->pic_fields.bits.transform_8x8_mode_flag = 0; else pic_param->pic_fields.bits.transform_8x8_mode_flag = 1; pic_param->pic_fields.bits.deblocking_filter_control_present_flag = 1; memset(pic_param->ReferenceFrames, 0xff, 16 * sizeof(VAPictureH264)); /* invalid all */ } static void avcenc_context_sei_init() { /* it comes for the bps defined in SPS */ avcenc_context.i_initial_cpb_removal_delay = 2 * 90000; avcenc_context.i_initial_cpb_removal_delay_offset = 2 * 90000; avcenc_context.i_cpb_removal_delay = 2; avcenc_context.i_initial_cpb_removal_delay_length = 24; avcenc_context.i_cpb_removal_delay_length = 24; avcenc_context.i_dpb_output_delay_length = 24; avcenc_context.time_offset_length = 24; avcenc_context.prev_idr_cpb_removal = avcenc_context.i_initial_cpb_removal_delay / 90000; avcenc_context.current_idr_cpb_removal = avcenc_context.prev_idr_cpb_removal; avcenc_context.current_cpb_removal = 0; avcenc_context.idr_frame_num = 0; } static void avcenc_context_init(int width, int height) { int i; memset(&avcenc_context, 0, sizeof(avcenc_context)); avcenc_context.profile = VAProfileH264Main; memset(&use_slot, 0, sizeof(use_slot)); switch (avcenc_context.profile) { case VAProfileH264ConstrainedBaseline: avcenc_context.constraint_set_flag |= (1 << 0); /* Annex A.2.1 */ avcenc_context.constraint_set_flag |= (1 << 1); /* Annex A.2.2 */ break; case VAProfileH264Main: avcenc_context.constraint_set_flag |= (1 << 1); /* Annex A.2.2 */ break; case VAProfileH264High: avcenc_context.constraint_set_flag |= (1 << 3); /* Annex A.2.4 */ break; default: break; } avcenc_context.seq_param_buf_id = VA_INVALID_ID; avcenc_context.pic_param_buf_id = VA_INVALID_ID; avcenc_context.packed_seq_header_param_buf_id = VA_INVALID_ID; avcenc_context.packed_seq_buf_id = VA_INVALID_ID; avcenc_context.packed_pic_header_param_buf_id = VA_INVALID_ID; avcenc_context.packed_pic_buf_id = VA_INVALID_ID; avcenc_context.codedbuf_buf_id = VA_INVALID_ID; avcenc_context.misc_parameter_hrd_buf_id = VA_INVALID_ID; avcenc_context.codedbuf_i_size = width * height; avcenc_context.codedbuf_pb_size = width * height; avcenc_context.current_input_surface = SID_INPUT_PICTURE_0; avcenc_context.upload_thread_value = -1; avcenc_context.packed_sei_header_param_buf_id = VA_INVALID_ID; avcenc_context.packed_sei_buf_id = VA_INVALID_ID; avcenc_context.misc_parameter_roi_buf_id = VA_INVALID_ID; avcenc_context.packed_aud_header_param_buf_id = VA_INVALID_ID; avcenc_context.packed_aud_buf_id = VA_INVALID_ID; if (qp_value == -1) avcenc_context.rate_control_method = VA_RC_CBR; else if (qp_value == -2) avcenc_context.rate_control_method = VA_RC_VBR; else { assert(qp_value >= 0 && qp_value <= 51); avcenc_context.rate_control_method = VA_RC_CQP; } for (i = 0; i < MAX_SLICES; i++) { avcenc_context.slice_param_buf_id[i] = VA_INVALID_ID; } avcenc_context_seq_param_init(&avcenc_context.seq_param, width, height); avcenc_context_pic_param_init(&avcenc_context.pic_param); if (avcenc_context.rate_control_method == VA_RC_CBR) avcenc_context_sei_init(); } int main(int argc, char *argv[]) { int f; FILE *yuv_fp; FILE *avc_fp; off_t file_size; int mode_value; struct timeval tpstart, tpend; float timeuse; int frame_num_value = 0; va_init_display_args(&argc, argv); if (argc < 5) { show_help(); return -1; } picture_width = atoi(argv[1]); picture_height = atoi(argv[2]); picture_width_in_mbs = (picture_width + 15) / 16; picture_height_in_mbs = (picture_height + 15) / 16; if (argc > 5) { int o; optind = 5; while ((o = getopt_long_only(argc, argv, "", longopts, NULL)) != -1) { switch (o) { case 1: // qp frame_bit_rate = -1; qp_value = atoi(optarg); if (qp_value > 51) qp_value = 51; if (qp_value < 0) qp_value = 0; break; case 2: // fb qp_value = -1; frame_bit_rate = atoi(optarg); if (frame_bit_rate <= 0) { show_help(); return -1; } break; case 3: // mode mode_value = atoi(optarg); if (mode_value == 0) ip_period = 0; else if (mode_value == 1) ip_period = 1; else if (mode_value == 2) /* Hack mechanism before adding the parameter of B-frame number */ ip_period = 2; else { printf("mode_value = %d\n", mode_value); show_help(); return -1; } break; case 4: // low-power mode select_entrypoint = VAEntrypointEncSliceLP; break; case 5: // roi-test enable/disable roi_test_enable = 1; break; case 6: // Frames number frame_num_value = atoi(optarg); break; default: show_help(); return -1; } } } else qp_value = 28; //default const QP mode yuv_fp = fopen(argv[3], "rb"); if (yuv_fp == NULL) { printf("Can't open input YUV file\n"); return -1; } fseeko(yuv_fp, (off_t)0, SEEK_END); file_size = ftello(yuv_fp); frame_size = picture_width * picture_height + ((picture_width * picture_height) >> 1) ; if (frame_size == 0) { fclose(yuv_fp); printf("Frame size is not correct\n"); return -1; } if ((file_size < frame_size) || (file_size % frame_size)) { fclose(yuv_fp); printf("The YUV file's size is not correct\n"); return -1; } frame_number = file_size / frame_size; fseeko(yuv_fp, (off_t)0, SEEK_SET); avc_fp = fopen(argv[4], "wb"); if (avc_fp == NULL) { fclose(yuv_fp); printf("Can't open output avc file\n"); return -1; } gettimeofday(&tpstart, NULL); avcenc_context_init(picture_width, picture_height); create_encode_pipe(); alloc_encode_resource(yuv_fp); enc_frame_number = 0; if (frame_num_value <= 0) frame_num_value = frame_number; for (f = 0; f < frame_num_value; f++) { //picture level loop unsigned long long next_frame_display; int next_frame_type; enc_frame_number = f; encoding2display_order(enc_frame_number, intra_period, ip_period, ¤t_frame_display, ¤t_frame_type); encoding2display_order(enc_frame_number + 1, intra_period, ip_period, &next_frame_display, &next_frame_type); if (current_frame_type == FRAME_IDR) { numShortTerm = 0; current_frame_num = 0; memset(&use_slot, 0, sizeof(use_slot)); current_IDR_display = current_frame_display; if (avcenc_context.rate_control_method == VA_RC_CBR) { unsigned long long frame_interval; frame_interval = enc_frame_number - avcenc_context.idr_frame_num; /* Based on the H264 spec the removal time of the IDR access * unit is derived as the following: * the removal time of previous IDR unit + Tc * cpb_removal_delay(n) */ avcenc_context.current_cpb_removal = avcenc_context.prev_idr_cpb_removal + frame_interval * 2; avcenc_context.idr_frame_num = enc_frame_number; avcenc_context.current_idr_cpb_removal = avcenc_context.current_cpb_removal; if (ip_period) avcenc_context.current_dpb_removal_delta = (ip_period + 1) * 2; else avcenc_context.current_dpb_removal_delta = 2; } } else { if (avcenc_context.rate_control_method == VA_RC_CBR) { unsigned long long frame_interval; frame_interval = enc_frame_number - avcenc_context.idr_frame_num; /* Based on the H264 spec the removal time of the non-IDR access * unit is derived as the following: * the removal time of current IDR unit + Tc * cpb_removal_delay(n) */ avcenc_context.current_cpb_removal = avcenc_context.current_idr_cpb_removal + frame_interval * 2; if (current_frame_type == SLICE_TYPE_I || current_frame_type == SLICE_TYPE_P) { if (ip_period) avcenc_context.current_dpb_removal_delta = (ip_period + 1) * 2; else avcenc_context.current_dpb_removal_delta = 2; } else avcenc_context.current_dpb_removal_delta = 2; } } /* use the simple mechanism to calc the POC */ current_poc = (current_frame_display - current_IDR_display) * 2; encode_picture(yuv_fp, avc_fp, frame_number, current_frame_display, (current_frame_type == FRAME_IDR) ? 1 : 0, (current_frame_type == FRAME_IDR) ? SLICE_TYPE_I : current_frame_type, (next_frame_type == SLICE_TYPE_B) ? 1 : 0, next_frame_display); if ((current_frame_type == FRAME_IDR) && (avcenc_context.rate_control_method == VA_RC_CBR)) { /* after one IDR frame is written, it needs to update the * prev_idr_cpb_removal for next IDR */ avcenc_context.prev_idr_cpb_removal = avcenc_context.current_idr_cpb_removal; } printf("\r %d/%d ...", f, frame_number); fflush(stdout); } gettimeofday(&tpend, NULL); timeuse = 1000000 * (tpend.tv_sec - tpstart.tv_sec) + tpend.tv_usec - tpstart.tv_usec; timeuse /= 1000000; printf("\ndone!\n"); printf("encode %d frames in %f secondes, FPS is %.1f\n", frame_number, timeuse, frame_number / timeuse); release_encode_resource(); destory_encode_pipe(); fclose(yuv_fp); fclose(avc_fp); return 0; } ================================================ FILE: encode/h264encode.c ================================================ /* * Copyright (c) 2007-2013 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #define LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE 1 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } #include "loadsurface.h" #define NAL_REF_IDC_NONE 0 #define NAL_REF_IDC_LOW 1 #define NAL_REF_IDC_MEDIUM 2 #define NAL_REF_IDC_HIGH 3 #define NAL_NON_IDR 1 #define NAL_IDR 5 #define NAL_SPS 7 #define NAL_PPS 8 #define NAL_SEI 6 #define SLICE_TYPE_P 0 #define SLICE_TYPE_B 1 #define SLICE_TYPE_I 2 #define IS_P_SLICE(type) (SLICE_TYPE_P == (type)) #define IS_B_SLICE(type) (SLICE_TYPE_B == (type)) #define IS_I_SLICE(type) (SLICE_TYPE_I == (type)) #define ENTROPY_MODE_CAVLC 0 #define ENTROPY_MODE_CABAC 1 #define PROFILE_IDC_BASELINE 66 #define PROFILE_IDC_MAIN 77 #define PROFILE_IDC_HIGH 100 #define BITSTREAM_ALLOCATE_STEPPING 4096 #define SURFACE_NUM 16 /* 16 surfaces for source YUV */ #define SURFACE_NUM 16 /* 16 surfaces for reference */ static VADisplay va_dpy; static VAProfile h264_profile = ~0; static VAConfigAttrib attrib[VAConfigAttribTypeMax]; static VAConfigAttrib config_attrib[VAConfigAttribTypeMax]; static int config_attrib_num = 0, enc_packed_header_idx; static VASurfaceID src_surface[SURFACE_NUM]; static VABufferID coded_buf[SURFACE_NUM]; static VASurfaceID ref_surface[SURFACE_NUM]; static VAConfigID config_id; static VAContextID context_id; static VAEncSequenceParameterBufferH264 seq_param; static VAEncPictureParameterBufferH264 pic_param; static VAEncSliceParameterBufferH264 slice_param; static VAPictureH264 CurrentCurrPic; static VAPictureH264 ReferenceFrames[16], RefPicList0_P[32], RefPicList0_B[32], RefPicList1_B[32]; static unsigned int MaxFrameNum = (2 << 16); static unsigned int MaxPicOrderCntLsb = (2 << 8); static unsigned int Log2MaxFrameNum = 16; static unsigned int Log2MaxPicOrderCntLsb = 8; static unsigned int num_ref_frames = 2; static unsigned int numShortTerm = 0; static int constraint_set_flag = 0; static int h264_packedheader = 0; /* support pack header? */ static int h264_maxref = (1 << 16 | 1); static int h264_entropy_mode = 1; /* cabac */ static char *coded_fn = NULL, *srcyuv_fn = NULL, *recyuv_fn = NULL; static FILE *coded_fp = NULL, *srcyuv_fp = NULL, *recyuv_fp = NULL; static unsigned long long srcyuv_frames = 0; static int srcyuv_fourcc = VA_FOURCC_NV12; static int calc_psnr = 0; static int frame_width = 176; static int frame_height = 144; static int frame_width_mbaligned; static int frame_height_mbaligned; static int frame_rate = 30; static unsigned int frame_count = 60; static unsigned int frame_coded = 0; static unsigned int frame_bitrate = 0; static unsigned int frame_slices = 1; static double frame_size = 0; static int initial_qp = 26; static int minimal_qp = 0; static int intra_period = 30; static int intra_idr_period = 60; static int ip_period = 1; static int rc_mode = -1; static int rc_default_modes[] = { VA_RC_VBR, VA_RC_CQP, VA_RC_VBR_CONSTRAINED, VA_RC_CBR, VA_RC_VCM, VA_RC_NONE, }; static unsigned long long current_frame_encoding = 0; static unsigned long long current_frame_display = 0; static unsigned long long current_IDR_display = 0; static unsigned int current_frame_num = 0; static int current_frame_type; #define current_slot (current_frame_display % SURFACE_NUM) static int misc_priv_type = 0; static int misc_priv_value = 0; #define MIN(a, b) ((a)>(b)?(b):(a)) #define MAX(a, b) ((a)>(b)?(a):(b)) /* thread to save coded data/upload source YUV */ struct storage_task_t { void *next; unsigned long long display_order; unsigned long long encode_order; }; static struct storage_task_t *storage_task_header = NULL, *storage_task_tail = NULL; #define SRC_SURFACE_IN_ENCODING 0 #define SRC_SURFACE_IN_STORAGE 1 static int srcsurface_status[SURFACE_NUM]; static int encode_syncmode = 0; static pthread_mutex_t encode_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t encode_cond = PTHREAD_COND_INITIALIZER; static pthread_t encode_thread; /* for performance profiling */ static unsigned int UploadPictureTicks = 0; static unsigned int BeginPictureTicks = 0; static unsigned int RenderPictureTicks = 0; static unsigned int EndPictureTicks = 0; static unsigned int SyncPictureTicks = 0; static unsigned int SavePictureTicks = 0; static unsigned int TotalTicks = 0; //Default entrypoint for Encode static VAEntrypoint requested_entrypoint = -1; static VAEntrypoint selected_entrypoint = -1; struct __bitstream { unsigned int *buffer; int bit_offset; int max_size_in_dword; }; typedef struct __bitstream bitstream; static unsigned int va_swap32(unsigned int val) { unsigned char *pval = (unsigned char *)&val; return ((pval[0] << 24) | (pval[1] << 16) | (pval[2] << 8) | (pval[3] << 0)); } static void bitstream_start(bitstream *bs) { bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING; bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1); assert(bs->buffer); bs->bit_offset = 0; } static void bitstream_end(bitstream *bs) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (bit_offset) { bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left)); } } static void bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (!size_in_bits) return; bs->bit_offset += size_in_bits; if (bit_left > size_in_bits) { bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val); } else { size_in_bits -= bit_left; bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits); bs->buffer[pos] = va_swap32(bs->buffer[pos]); if (pos + 1 == bs->max_size_in_dword) { bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING; bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int)); assert(bs->buffer); } bs->buffer[pos + 1] = val; } } static void bitstream_put_ue(bitstream *bs, unsigned int val) { int size_in_bits = 0; int tmp_val = ++val; while (tmp_val) { tmp_val >>= 1; size_in_bits++; } bitstream_put_ui(bs, 0, size_in_bits - 1); // leading zero bitstream_put_ui(bs, val, size_in_bits); } static void bitstream_put_se(bitstream *bs, int val) { unsigned int new_val; if (val <= 0) new_val = -2 * val; else new_val = 2 * val - 1; bitstream_put_ue(bs, new_val); } static void bitstream_byte_aligning(bitstream *bs, int bit) { int bit_offset = (bs->bit_offset & 0x7); int bit_left = 8 - bit_offset; int new_val; if (!bit_offset) return; assert(bit == 0 || bit == 1); if (bit) new_val = (1 << bit_left) - 1; else new_val = 0; bitstream_put_ui(bs, new_val, bit_left); } static void rbsp_trailing_bits(bitstream *bs) { bitstream_put_ui(bs, 1, 1); bitstream_byte_aligning(bs, 0); } static void nal_start_code_prefix(bitstream *bs) { bitstream_put_ui(bs, 0x00000001, 32); } static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type) { bitstream_put_ui(bs, 0, 1); /* forbidden_zero_bit: 0 */ bitstream_put_ui(bs, nal_ref_idc, 2); bitstream_put_ui(bs, nal_unit_type, 5); } static void sps_rbsp(bitstream *bs) { int profile_idc = PROFILE_IDC_BASELINE; if (h264_profile == VAProfileH264High) profile_idc = PROFILE_IDC_HIGH; else if (h264_profile == VAProfileH264Main) profile_idc = PROFILE_IDC_MAIN; bitstream_put_ui(bs, profile_idc, 8); /* profile_idc */ bitstream_put_ui(bs, !!(constraint_set_flag & 1), 1); /* constraint_set0_flag */ bitstream_put_ui(bs, !!(constraint_set_flag & 2), 1); /* constraint_set1_flag */ bitstream_put_ui(bs, !!(constraint_set_flag & 4), 1); /* constraint_set2_flag */ bitstream_put_ui(bs, !!(constraint_set_flag & 8), 1); /* constraint_set3_flag */ bitstream_put_ui(bs, 0, 4); /* reserved_zero_4bits */ bitstream_put_ui(bs, seq_param.level_idc, 8); /* level_idc */ bitstream_put_ue(bs, seq_param.seq_parameter_set_id); /* seq_parameter_set_id */ if (profile_idc == PROFILE_IDC_HIGH) { bitstream_put_ue(bs, 1); /* chroma_format_idc = 1, 4:2:0 */ bitstream_put_ue(bs, 0); /* bit_depth_luma_minus8 */ bitstream_put_ue(bs, 0); /* bit_depth_chroma_minus8 */ bitstream_put_ui(bs, 0, 1); /* qpprime_y_zero_transform_bypass_flag */ bitstream_put_ui(bs, 0, 1); /* seq_scaling_matrix_present_flag */ } bitstream_put_ue(bs, seq_param.seq_fields.bits.log2_max_frame_num_minus4); /* log2_max_frame_num_minus4 */ bitstream_put_ue(bs, seq_param.seq_fields.bits.pic_order_cnt_type); /* pic_order_cnt_type */ if (seq_param.seq_fields.bits.pic_order_cnt_type == 0) bitstream_put_ue(bs, seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4); /* log2_max_pic_order_cnt_lsb_minus4 */ else { assert(0); } bitstream_put_ue(bs, seq_param.max_num_ref_frames); /* num_ref_frames */ bitstream_put_ui(bs, 0, 1); /* gaps_in_frame_num_value_allowed_flag */ bitstream_put_ue(bs, seq_param.picture_width_in_mbs - 1); /* pic_width_in_mbs_minus1 */ bitstream_put_ue(bs, seq_param.picture_height_in_mbs - 1); /* pic_height_in_map_units_minus1 */ bitstream_put_ui(bs, seq_param.seq_fields.bits.frame_mbs_only_flag, 1); /* frame_mbs_only_flag */ if (!seq_param.seq_fields.bits.frame_mbs_only_flag) { assert(0); } bitstream_put_ui(bs, seq_param.seq_fields.bits.direct_8x8_inference_flag, 1); /* direct_8x8_inference_flag */ bitstream_put_ui(bs, seq_param.frame_cropping_flag, 1); /* frame_cropping_flag */ if (seq_param.frame_cropping_flag) { bitstream_put_ue(bs, seq_param.frame_crop_left_offset); /* frame_crop_left_offset */ bitstream_put_ue(bs, seq_param.frame_crop_right_offset); /* frame_crop_right_offset */ bitstream_put_ue(bs, seq_param.frame_crop_top_offset); /* frame_crop_top_offset */ bitstream_put_ue(bs, seq_param.frame_crop_bottom_offset); /* frame_crop_bottom_offset */ } //if ( frame_bit_rate < 0 ) { //TODO EW: the vui header isn't correct if (1) { bitstream_put_ui(bs, 0, 1); /* vui_parameters_present_flag */ } else { bitstream_put_ui(bs, 1, 1); /* vui_parameters_present_flag */ bitstream_put_ui(bs, 0, 1); /* aspect_ratio_info_present_flag */ bitstream_put_ui(bs, 0, 1); /* overscan_info_present_flag */ bitstream_put_ui(bs, 0, 1); /* video_signal_type_present_flag */ bitstream_put_ui(bs, 0, 1); /* chroma_loc_info_present_flag */ bitstream_put_ui(bs, 1, 1); /* timing_info_present_flag */ { bitstream_put_ui(bs, 15, 32); bitstream_put_ui(bs, 900, 32); bitstream_put_ui(bs, 1, 1); } bitstream_put_ui(bs, 1, 1); /* nal_hrd_parameters_present_flag */ { // hrd_parameters bitstream_put_ue(bs, 0); /* cpb_cnt_minus1 */ bitstream_put_ui(bs, 4, 4); /* bit_rate_scale */ bitstream_put_ui(bs, 6, 4); /* cpb_size_scale */ bitstream_put_ue(bs, frame_bitrate - 1); /* bit_rate_value_minus1[0] */ bitstream_put_ue(bs, frame_bitrate * 8 - 1); /* cpb_size_value_minus1[0] */ bitstream_put_ui(bs, 1, 1); /* cbr_flag[0] */ bitstream_put_ui(bs, 23, 5); /* initial_cpb_removal_delay_length_minus1 */ bitstream_put_ui(bs, 23, 5); /* cpb_removal_delay_length_minus1 */ bitstream_put_ui(bs, 23, 5); /* dpb_output_delay_length_minus1 */ bitstream_put_ui(bs, 23, 5); /* time_offset_length */ } bitstream_put_ui(bs, 0, 1); /* vcl_hrd_parameters_present_flag */ bitstream_put_ui(bs, 0, 1); /* low_delay_hrd_flag */ bitstream_put_ui(bs, 0, 1); /* pic_struct_present_flag */ bitstream_put_ui(bs, 0, 1); /* bitstream_restriction_flag */ } rbsp_trailing_bits(bs); /* rbsp_trailing_bits */ } static void pps_rbsp(bitstream *bs) { bitstream_put_ue(bs, pic_param.pic_parameter_set_id); /* pic_parameter_set_id */ bitstream_put_ue(bs, pic_param.seq_parameter_set_id); /* seq_parameter_set_id */ bitstream_put_ui(bs, pic_param.pic_fields.bits.entropy_coding_mode_flag, 1); /* entropy_coding_mode_flag */ bitstream_put_ui(bs, 0, 1); /* pic_order_present_flag: 0 */ bitstream_put_ue(bs, 0); /* num_slice_groups_minus1 */ bitstream_put_ue(bs, pic_param.num_ref_idx_l0_active_minus1); /* num_ref_idx_l0_active_minus1 */ bitstream_put_ue(bs, pic_param.num_ref_idx_l1_active_minus1); /* num_ref_idx_l1_active_minus1 1 */ bitstream_put_ui(bs, pic_param.pic_fields.bits.weighted_pred_flag, 1); /* weighted_pred_flag: 0 */ bitstream_put_ui(bs, pic_param.pic_fields.bits.weighted_bipred_idc, 2); /* weighted_bipred_idc: 0 */ bitstream_put_se(bs, pic_param.pic_init_qp - 26); /* pic_init_qp_minus26 */ bitstream_put_se(bs, 0); /* pic_init_qs_minus26 */ bitstream_put_se(bs, 0); /* chroma_qp_index_offset */ bitstream_put_ui(bs, pic_param.pic_fields.bits.deblocking_filter_control_present_flag, 1); /* deblocking_filter_control_present_flag */ bitstream_put_ui(bs, 0, 1); /* constrained_intra_pred_flag */ bitstream_put_ui(bs, 0, 1); /* redundant_pic_cnt_present_flag */ /* more_rbsp_data */ bitstream_put_ui(bs, pic_param.pic_fields.bits.transform_8x8_mode_flag, 1); /*transform_8x8_mode_flag */ bitstream_put_ui(bs, 0, 1); /* pic_scaling_matrix_present_flag */ bitstream_put_se(bs, pic_param.second_chroma_qp_index_offset); /*second_chroma_qp_index_offset */ rbsp_trailing_bits(bs); } static void slice_header(bitstream *bs) { int first_mb_in_slice = slice_param.macroblock_address; bitstream_put_ue(bs, first_mb_in_slice); /* first_mb_in_slice: 0 */ bitstream_put_ue(bs, slice_param.slice_type); /* slice_type */ bitstream_put_ue(bs, slice_param.pic_parameter_set_id); /* pic_parameter_set_id: 0 */ bitstream_put_ui(bs, pic_param.frame_num, seq_param.seq_fields.bits.log2_max_frame_num_minus4 + 4); /* frame_num */ /* frame_mbs_only_flag == 1 */ if (!seq_param.seq_fields.bits.frame_mbs_only_flag) { /* FIXME: */ assert(0); } if (pic_param.pic_fields.bits.idr_pic_flag) bitstream_put_ue(bs, slice_param.idr_pic_id); /* idr_pic_id: 0 */ if (seq_param.seq_fields.bits.pic_order_cnt_type == 0) { bitstream_put_ui(bs, pic_param.CurrPic.TopFieldOrderCnt, seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 + 4); /* pic_order_present_flag == 0 */ } else { /* FIXME: */ assert(0); } /* redundant_pic_cnt_present_flag == 0 */ /* slice type */ if (IS_P_SLICE(slice_param.slice_type)) { bitstream_put_ui(bs, slice_param.num_ref_idx_active_override_flag, 1); /* num_ref_idx_active_override_flag: */ if (slice_param.num_ref_idx_active_override_flag) bitstream_put_ue(bs, slice_param.num_ref_idx_l0_active_minus1); /* ref_pic_list_reordering */ bitstream_put_ui(bs, 0, 1); /* ref_pic_list_reordering_flag_l0: 0 */ } else if (IS_B_SLICE(slice_param.slice_type)) { bitstream_put_ui(bs, slice_param.direct_spatial_mv_pred_flag, 1); /* direct_spatial_mv_pred: 1 */ bitstream_put_ui(bs, slice_param.num_ref_idx_active_override_flag, 1); /* num_ref_idx_active_override_flag: */ if (slice_param.num_ref_idx_active_override_flag) { bitstream_put_ue(bs, slice_param.num_ref_idx_l0_active_minus1); bitstream_put_ue(bs, slice_param.num_ref_idx_l1_active_minus1); } /* ref_pic_list_reordering */ bitstream_put_ui(bs, 0, 1); /* ref_pic_list_reordering_flag_l0: 0 */ bitstream_put_ui(bs, 0, 1); /* ref_pic_list_reordering_flag_l1: 0 */ } if ((pic_param.pic_fields.bits.weighted_pred_flag && IS_P_SLICE(slice_param.slice_type)) || ((pic_param.pic_fields.bits.weighted_bipred_idc == 1) && IS_B_SLICE(slice_param.slice_type))) { /* FIXME: fill weight/offset table */ assert(0); } /* dec_ref_pic_marking */ if (pic_param.pic_fields.bits.reference_pic_flag) { /* nal_ref_idc != 0 */ unsigned char no_output_of_prior_pics_flag = 0; unsigned char long_term_reference_flag = 0; unsigned char adaptive_ref_pic_marking_mode_flag = 0; if (pic_param.pic_fields.bits.idr_pic_flag) { bitstream_put_ui(bs, no_output_of_prior_pics_flag, 1); /* no_output_of_prior_pics_flag: 0 */ bitstream_put_ui(bs, long_term_reference_flag, 1); /* long_term_reference_flag: 0 */ } else { bitstream_put_ui(bs, adaptive_ref_pic_marking_mode_flag, 1); /* adaptive_ref_pic_marking_mode_flag: 0 */ } } if (pic_param.pic_fields.bits.entropy_coding_mode_flag && !IS_I_SLICE(slice_param.slice_type)) bitstream_put_ue(bs, slice_param.cabac_init_idc); /* cabac_init_idc: 0 */ bitstream_put_se(bs, slice_param.slice_qp_delta); /* slice_qp_delta: 0 */ /* ignore for SP/SI */ if (pic_param.pic_fields.bits.deblocking_filter_control_present_flag) { bitstream_put_ue(bs, slice_param.disable_deblocking_filter_idc); /* disable_deblocking_filter_idc: 0 */ if (slice_param.disable_deblocking_filter_idc != 1) { bitstream_put_se(bs, slice_param.slice_alpha_c0_offset_div2); /* slice_alpha_c0_offset_div2: 2 */ bitstream_put_se(bs, slice_param.slice_beta_offset_div2); /* slice_beta_offset_div2: 2 */ } } if (pic_param.pic_fields.bits.entropy_coding_mode_flag) { bitstream_byte_aligning(bs, 1); } } static int build_packed_pic_buffer(unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_HIGH, NAL_PPS); pps_rbsp(&bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_seq_buffer(unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SPS); sps_rbsp(&bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } #if 0 static int build_packed_sei_buffer_timing(unsigned int init_cpb_removal_length, unsigned int init_cpb_removal_delay, unsigned int init_cpb_removal_delay_offset, unsigned int cpb_removal_length, unsigned int cpb_removal_delay, unsigned int dpb_output_length, unsigned int dpb_output_delay, unsigned char **sei_buffer) { unsigned char *byte_buf; int bp_byte_size, i, pic_byte_size; bitstream nal_bs; bitstream sei_bp_bs, sei_pic_bs; bitstream_start(&sei_bp_bs); bitstream_put_ue(&sei_bp_bs, 0); /*seq_parameter_set_id*/ bitstream_put_ui(&sei_bp_bs, init_cpb_removal_delay, cpb_removal_length); bitstream_put_ui(&sei_bp_bs, init_cpb_removal_delay_offset, cpb_removal_length); if (sei_bp_bs.bit_offset & 0x7) { bitstream_put_ui(&sei_bp_bs, 1, 1); } bitstream_end(&sei_bp_bs); bp_byte_size = (sei_bp_bs.bit_offset + 7) / 8; bitstream_start(&sei_pic_bs); bitstream_put_ui(&sei_pic_bs, cpb_removal_delay, cpb_removal_length); bitstream_put_ui(&sei_pic_bs, dpb_output_delay, dpb_output_length); if (sei_pic_bs.bit_offset & 0x7) { bitstream_put_ui(&sei_pic_bs, 1, 1); } bitstream_end(&sei_pic_bs); pic_byte_size = (sei_pic_bs.bit_offset + 7) / 8; bitstream_start(&nal_bs); nal_start_code_prefix(&nal_bs); nal_header(&nal_bs, NAL_REF_IDC_NONE, NAL_SEI); /* Write the SEI buffer period data */ bitstream_put_ui(&nal_bs, 0, 8); bitstream_put_ui(&nal_bs, bp_byte_size, 8); byte_buf = (unsigned char *)sei_bp_bs.buffer; for (i = 0; i < bp_byte_size; i++) { bitstream_put_ui(&nal_bs, byte_buf[i], 8); } free(byte_buf); /* write the SEI timing data */ bitstream_put_ui(&nal_bs, 0x01, 8); bitstream_put_ui(&nal_bs, pic_byte_size, 8); byte_buf = (unsigned char *)sei_pic_bs.buffer; for (i = 0; i < pic_byte_size; i++) { bitstream_put_ui(&nal_bs, byte_buf[i], 8); } free(byte_buf); rbsp_trailing_bits(&nal_bs); bitstream_end(&nal_bs); *sei_buffer = (unsigned char *)nal_bs.buffer; return nal_bs.bit_offset; } #endif static int build_packed_slice_buffer(unsigned char **header_buffer) { bitstream bs; int is_idr = !!pic_param.pic_fields.bits.idr_pic_flag; int is_ref = !!pic_param.pic_fields.bits.reference_pic_flag; bitstream_start(&bs); nal_start_code_prefix(&bs); if (IS_I_SLICE(slice_param.slice_type)) { nal_header(&bs, NAL_REF_IDC_HIGH, is_idr ? NAL_IDR : NAL_NON_IDR); } else if (IS_P_SLICE(slice_param.slice_type)) { nal_header(&bs, NAL_REF_IDC_MEDIUM, NAL_NON_IDR); } else { assert(IS_B_SLICE(slice_param.slice_type)); nal_header(&bs, is_ref ? NAL_REF_IDC_LOW : NAL_REF_IDC_NONE, NAL_NON_IDR); } slice_header(&bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } /* * Helper function for profiling purposes */ static unsigned int GetTickCount() { struct timeval tv; if (gettimeofday(&tv, NULL)) return 0; return tv.tv_usec / 1000 + tv.tv_sec * 1000; } /* Assume frame sequence is: Frame#0,#1,#2,...,#M,...,#X,... (encoding order) 1) period between Frame #X and Frame #N = #X - #N 2) 0 means infinite for intra_period/intra_idr_period, and 0 is invalid for ip_period 3) intra_idr_period % intra_period (intra_period > 0) and intra_period % ip_period must be 0 4) intra_period and intra_idr_period take precedence over ip_period 5) if ip_period > 1, intra_period and intra_idr_period are not the strict periods of I/IDR frames, see bellow examples ------------------------------------------------------------------- intra_period intra_idr_period ip_period frame sequence (intra_period/intra_idr_period/ip_period) 0 ignored 1 IDRPPPPPPP ... (No IDR/I any more) 0 ignored >=2 IDR(PBB)(PBB)... (No IDR/I any more) 1 0 ignored IDRIIIIIII... (No IDR any more) 1 1 ignored IDR IDR IDR IDR... 1 >=2 ignored IDRII IDRII IDR... (1/3/ignore) >=2 0 1 IDRPPP IPPP I... (3/0/1) >=2 0 >=2 IDR(PBB)(PBB)(IBB) (6/0/3) (PBB)(IBB)(PBB)(IBB)... >=2 >=2 1 IDRPPPPP IPPPPP IPPPPP (6/18/1) IDRPPPPP IPPPPP IPPPPP... >=2 >=2 >=2 {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)} (6/18/3) {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)}... {IDR(PBB)(PBB)(IBB)(PBB)} (6/12/3) {IDR(PBB)(PBB)(IBB)(PBB)}... {IDR(PBB)(PBB)} (6/6/3) {IDR(PBB)(PBB)}. */ /* * Return displaying order with specified periods and encoding order * displaying_order: displaying order * frame_type: frame type */ #define FRAME_P 0 #define FRAME_B 1 #define FRAME_I 2 #define FRAME_IDR 7 void encoding2display_order( unsigned long long encoding_order, int intra_period, int intra_idr_period, int ip_period, unsigned long long *displaying_order, int *frame_type) { int encoding_order_gop = 0; if (intra_period == 1) { /* all are I/IDR frames */ *displaying_order = encoding_order; if (intra_idr_period == 0) *frame_type = (encoding_order == 0) ? FRAME_IDR : FRAME_I; else *frame_type = (encoding_order % intra_idr_period == 0) ? FRAME_IDR : FRAME_I; return; } if (intra_period == 0) intra_idr_period = 0; /* new sequence like * IDR PPPPP IPPPPP * IDR (PBB)(PBB)(IBB)(PBB) */ encoding_order_gop = (intra_idr_period == 0) ? encoding_order : (encoding_order % (intra_idr_period + ((ip_period == 1) ? 0 : 1))); if (encoding_order_gop == 0) { /* the first frame */ *frame_type = FRAME_IDR; *displaying_order = encoding_order; } else if (((encoding_order_gop - 1) % ip_period) != 0) { /* B frames */ *frame_type = FRAME_B; *displaying_order = encoding_order - 1; } else if ((intra_period != 0) && /* have I frames */ (encoding_order_gop >= 2) && ((ip_period == 1 && encoding_order_gop % intra_period == 0) || /* for IDR PPPPP IPPPP */ /* for IDR (PBB)(PBB)(IBB) */ (ip_period >= 2 && ((encoding_order_gop - 1) / ip_period % (intra_period / ip_period)) == 0))) { *frame_type = FRAME_I; *displaying_order = encoding_order + ip_period - 1; } else { *frame_type = FRAME_P; *displaying_order = encoding_order + ip_period - 1; } } static char *fourcc_to_string(int fourcc) { switch (fourcc) { case VA_FOURCC_NV12: return "NV12"; case VA_FOURCC_IYUV: return "IYUV"; case VA_FOURCC_YV12: return "YV12"; case VA_FOURCC_UYVY: return "UYVY"; default: return "Unknown"; } } static int string_to_fourcc(char *str) { int fourcc; if (!strncmp(str, "NV12", 4)) fourcc = VA_FOURCC_NV12; else if (!strncmp(str, "IYUV", 4)) fourcc = VA_FOURCC_IYUV; else if (!strncmp(str, "YV12", 4)) fourcc = VA_FOURCC_YV12; else if (!strncmp(str, "UYVY", 4)) fourcc = VA_FOURCC_UYVY; else { printf("Unknow FOURCC\n"); fourcc = -1; } return fourcc; } static char *rc_to_string(int rcmode) { switch (rc_mode) { case VA_RC_NONE: return "NONE"; case VA_RC_CBR: return "CBR"; case VA_RC_VBR: return "VBR"; case VA_RC_VCM: return "VCM"; case VA_RC_CQP: return "CQP"; case VA_RC_VBR_CONSTRAINED: return "VBR_CONSTRAINED"; default: return "Unknown"; } } static int string_to_rc(char *str) { int rc_mode; if (!strncmp(str, "NONE", 4)) rc_mode = VA_RC_NONE; else if (!strncmp(str, "CBR", 3)) rc_mode = VA_RC_CBR; else if (!strncmp(str, "VBR", 3)) rc_mode = VA_RC_VBR; else if (!strncmp(str, "VCM", 3)) rc_mode = VA_RC_VCM; else if (!strncmp(str, "CQP", 3)) rc_mode = VA_RC_CQP; else if (!strncmp(str, "VBR_CONSTRAINED", 15)) rc_mode = VA_RC_VBR_CONSTRAINED; else { printf("Unknown RC mode\n"); rc_mode = -1; } return rc_mode; } static int print_help(void) { printf("./h264encode \n"); printf(" -w -h \n"); printf(" -framecount \n"); printf(" -n \n"); printf(" if set to 0 and srcyuv is set, the frame count is from srcuv file\n"); printf(" -o \n"); printf(" -f \n"); printf(" --intra_period \n"); printf(" --idr_period \n"); printf(" --ip_period \n"); printf(" --bitrate \n"); printf(" --initialqp \n"); printf(" --minqp \n"); printf(" --rcmode \n"); printf(" --syncmode: sequentially upload source, encoding, save result, no multi-thread\n"); printf(" --srcyuv load YUV from a file\n"); printf(" --fourcc source YUV fourcc\n"); printf(" --recyuv save reconstructed YUV into a file\n"); printf(" --enablePSNR calculate PSNR of recyuv vs. srcyuv\n"); printf(" --entropy <0|1>, 1 means cabac, 0 cavlc\n"); printf(" --profile \n"); printf(" --low_power 0: Normal mode, 1: Low power mode, others: auto mode\n"); return 0; } static int process_cmdline(int argc, char *argv[]) { int c; const struct option long_opts[] = { {"help", no_argument, NULL, 0 }, {"bitrate", required_argument, NULL, 1 }, {"minqp", required_argument, NULL, 2 }, {"initialqp", required_argument, NULL, 3 }, {"intra_period", required_argument, NULL, 4 }, {"idr_period", required_argument, NULL, 5 }, {"ip_period", required_argument, NULL, 6 }, {"rcmode", required_argument, NULL, 7 }, {"srcyuv", required_argument, NULL, 9 }, {"recyuv", required_argument, NULL, 10 }, {"fourcc", required_argument, NULL, 11 }, {"syncmode", no_argument, NULL, 12 }, {"enablePSNR", no_argument, NULL, 13 }, {"prit", required_argument, NULL, 14 }, {"priv", required_argument, NULL, 15 }, {"framecount", required_argument, NULL, 16 }, {"entropy", required_argument, NULL, 17 }, {"profile", required_argument, NULL, 18 }, {"low_power", required_argument, NULL, 19 }, {NULL, no_argument, NULL, 0 } }; int long_index; while ((c = getopt_long_only(argc, argv, "w:h:n:f:o:?", long_opts, &long_index)) != EOF) { switch (c) { case 'w': frame_width = atoi(optarg); break; case 'h': frame_height = atoi(optarg); break; case 'n': case 16: frame_count = atoi(optarg); break; case 'f': frame_rate = atoi(optarg); break; case 'o': if (!coded_fn) coded_fn = strdup(optarg); assert(coded_fn); break; case 0: print_help(); exit(0); case 1: frame_bitrate = atoi(optarg); break; case 2: minimal_qp = atoi(optarg); break; case 3: initial_qp = atoi(optarg); break; case 4: intra_period = atoi(optarg); break; case 5: intra_idr_period = atoi(optarg); break; case 6: ip_period = atoi(optarg); break; case 7: rc_mode = string_to_rc(optarg); if (rc_mode < 0) { print_help(); exit(1); } break; case 9: if (!srcyuv_fn) srcyuv_fn = strdup(optarg); assert(srcyuv_fn); break; case 10: if (!recyuv_fn) recyuv_fn = strdup(optarg); assert(recyuv_fn); break; case 11: srcyuv_fourcc = string_to_fourcc(optarg); if (srcyuv_fourcc <= 0) { print_help(); exit(1); } break; case 12: encode_syncmode = 1; break; case 13: calc_psnr = 1; break; case 14: misc_priv_type = strtol(optarg, NULL, 0); break; case 15: misc_priv_value = strtol(optarg, NULL, 0); break; case 17: h264_entropy_mode = atoi(optarg) ? 1 : 0; break; case 18: if (strncmp(optarg, "BP", 2) == 0) h264_profile = VAProfileH264ConstrainedBaseline; else if (strncmp(optarg, "MP", 2) == 0) h264_profile = VAProfileH264Main; else if (strncmp(optarg, "HP", 2) == 0) h264_profile = VAProfileH264High; else h264_profile = 0; break; case 19: { int lp_option = atoi(optarg); if (lp_option == 0) requested_entrypoint = VAEntrypointEncSlice; //normal 0 else if (lp_option == 1) requested_entrypoint = VAEntrypointEncSliceLP; //low power 1 else requested_entrypoint = -1; } break; case ':': case '?': print_help(); exit(0); } } if (ip_period < 1) { printf(" ip_period must be greater than 0\n"); exit(0); } if (intra_period != 1 && intra_period % ip_period != 0) { printf(" intra_period must be a multiplier of ip_period\n"); exit(0); } if (intra_period != 0 && intra_idr_period % intra_period != 0) { printf(" intra_idr_period must be a multiplier of intra_period\n"); exit(0); } if (frame_bitrate == 0) frame_bitrate = (long long int) frame_width * frame_height * 12 * frame_rate / 50; /* open source file */ if (srcyuv_fn) { srcyuv_fp = fopen(srcyuv_fn, "r"); if (srcyuv_fp == NULL) printf("Open source YUV file %s failed, use auto-generated YUV data\n", srcyuv_fn); else { struct stat tmp; fstat(fileno(srcyuv_fp), &tmp); srcyuv_frames = tmp.st_size / (frame_width * frame_height * 1.5); printf("Source YUV file %s with %llu frames\n", srcyuv_fn, srcyuv_frames); if (frame_count == 0) frame_count = srcyuv_frames; } } /* open source file */ if (recyuv_fn) { recyuv_fp = fopen(recyuv_fn, "w+"); if (recyuv_fp == NULL) printf("Open reconstructed YUV file %s failed\n", recyuv_fn); } if (coded_fn == NULL) { struct stat buf; if (stat("/tmp", &buf) == 0) coded_fn = strdup("/tmp/test.264"); else if (stat("/sdcard", &buf) == 0) coded_fn = strdup("/sdcard/test.264"); else coded_fn = strdup("./test.264"); assert(coded_fn); } /* store coded data into a file */ coded_fp = fopen(coded_fn, "w+"); if (coded_fp == NULL) { printf("Open file %s failed, exit\n", coded_fn); exit(1); } frame_width_mbaligned = (frame_width + 15) & (~15); frame_height_mbaligned = (frame_height + 15) & (~15); if (frame_width != frame_width_mbaligned || frame_height != frame_height_mbaligned) { printf("Source frame is %dx%d and will code clip to %dx%d with crop\n", frame_width, frame_height, frame_width_mbaligned, frame_height_mbaligned ); } return 0; } static int init_va(void) { VAProfile profile_list[] = {VAProfileH264High, VAProfileH264Main, VAProfileH264ConstrainedBaseline}; VAEntrypoint *entrypoints; int num_entrypoints, slice_entrypoint; int support_encode = 0; int major_ver, minor_ver; VAStatus va_status; unsigned int i; va_dpy = va_open_display(); va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); CHECK_VASTATUS(va_status, "vaInitialize"); num_entrypoints = vaMaxNumEntrypoints(va_dpy); entrypoints = malloc(num_entrypoints * sizeof(*entrypoints)); if (!entrypoints) { fprintf(stderr, "error: failed to initialize VA entrypoints array\n"); exit(1); } /* use the highest profile */ for (i = 0; i < sizeof(profile_list) / sizeof(profile_list[0]); i++) { if ((h264_profile != ~0) && h264_profile != profile_list[i]) continue; h264_profile = profile_list[i]; vaQueryConfigEntrypoints(va_dpy, h264_profile, entrypoints, &num_entrypoints); for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) { if (requested_entrypoint == -1) { //Select the entry point based on what is avaiable if ((entrypoints[slice_entrypoint] == VAEntrypointEncSlice) || (entrypoints[slice_entrypoint] == VAEntrypointEncSliceLP)) { support_encode = 1; selected_entrypoint = entrypoints[slice_entrypoint]; break; } } else if (entrypoints[slice_entrypoint] == requested_entrypoint) { //Select the entry point based on what was requested in cmd line option support_encode = 1; selected_entrypoint = entrypoints[slice_entrypoint]; break; } } if (support_encode == 1) { printf("Using EntryPoint - %d \n", selected_entrypoint); break; } } if (support_encode == 0) { printf("Can't find VAEntrypointEncSlice or VAEntrypointEncSliceLP for H264 profiles\n"); exit(1); } else { switch (h264_profile) { case VAProfileH264ConstrainedBaseline: printf("Use profile VAProfileH264ConstrainedBaseline\n"); constraint_set_flag |= (1 << 0 | 1 << 1); /* Annex A.2.2 */ ip_period = 1; break; case VAProfileH264Main: printf("Use profile VAProfileH264Main\n"); constraint_set_flag |= (1 << 1); /* Annex A.2.2 */ break; case VAProfileH264High: constraint_set_flag |= (1 << 3); /* Annex A.2.4 */ printf("Use profile VAProfileH264High\n"); break; default: printf("unknow profile. Set to Constrained Baseline"); h264_profile = VAProfileH264ConstrainedBaseline; constraint_set_flag |= (1 << 0 | 1 << 1); /* Annex A.2.1 & A.2.2 */ ip_period = 1; break; } } /* find out the format for the render target, and rate control mode */ for (i = 0; i < VAConfigAttribTypeMax; i++) attrib[i].type = i; va_status = vaGetConfigAttributes(va_dpy, h264_profile, selected_entrypoint, &attrib[0], VAConfigAttribTypeMax); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); /* check the interested configattrib */ if ((attrib[VAConfigAttribRTFormat].value & VA_RT_FORMAT_YUV420) == 0) { printf("Not find desired YUV420 RT format\n"); free(entrypoints); exit(1); } else { config_attrib[config_attrib_num].type = VAConfigAttribRTFormat; config_attrib[config_attrib_num].value = VA_RT_FORMAT_YUV420; config_attrib_num++; } if (attrib[VAConfigAttribRateControl].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribRateControl].value; printf("Support rate control mode (0x%x):", tmp); if (tmp & VA_RC_NONE) printf("NONE "); if (tmp & VA_RC_CBR) printf("CBR "); if (tmp & VA_RC_VBR) printf("VBR "); if (tmp & VA_RC_VCM) printf("VCM "); if (tmp & VA_RC_CQP) printf("CQP "); if (tmp & VA_RC_VBR_CONSTRAINED) printf("VBR_CONSTRAINED "); printf("\n"); if (rc_mode == -1 || !(rc_mode & tmp)) { if (rc_mode != -1) { printf("Warning: Don't support the specified RateControl mode: %s!!!, switch to ", rc_to_string(rc_mode)); } for (i = 0; i < sizeof(rc_default_modes) / sizeof(rc_default_modes[0]); i++) { if (rc_default_modes[i] & tmp) { rc_mode = rc_default_modes[i]; break; } } printf("RateControl mode: %s\n", rc_to_string(rc_mode)); } config_attrib[config_attrib_num].type = VAConfigAttribRateControl; config_attrib[config_attrib_num].value = rc_mode; config_attrib_num++; } if (attrib[VAConfigAttribEncPackedHeaders].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribEncPackedHeaders].value; printf("Support VAConfigAttribEncPackedHeaders\n"); h264_packedheader = 1; config_attrib[config_attrib_num].type = VAConfigAttribEncPackedHeaders; config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE; if (tmp & VA_ENC_PACKED_HEADER_SEQUENCE) { printf("Support packed sequence headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SEQUENCE; } if (tmp & VA_ENC_PACKED_HEADER_PICTURE) { printf("Support packed picture headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_PICTURE; } if (tmp & VA_ENC_PACKED_HEADER_SLICE) { printf("Support packed slice headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SLICE; } if (tmp & VA_ENC_PACKED_HEADER_MISC) { printf("Support packed misc headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_MISC; } enc_packed_header_idx = config_attrib_num; config_attrib_num++; } if (attrib[VAConfigAttribEncInterlaced].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribEncInterlaced].value; printf("Support VAConfigAttribEncInterlaced\n"); if (tmp & VA_ENC_INTERLACED_FRAME) printf("support VA_ENC_INTERLACED_FRAME\n"); if (tmp & VA_ENC_INTERLACED_FIELD) printf("Support VA_ENC_INTERLACED_FIELD\n"); if (tmp & VA_ENC_INTERLACED_MBAFF) printf("Support VA_ENC_INTERLACED_MBAFF\n"); if (tmp & VA_ENC_INTERLACED_PAFF) printf("Support VA_ENC_INTERLACED_PAFF\n"); config_attrib[config_attrib_num].type = VAConfigAttribEncInterlaced; config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE; config_attrib_num++; } if (attrib[VAConfigAttribEncMaxRefFrames].value != VA_ATTRIB_NOT_SUPPORTED) { h264_maxref = attrib[VAConfigAttribEncMaxRefFrames].value; printf("Support %d RefPicList0 and %d RefPicList1\n", h264_maxref & 0xffff, (h264_maxref >> 16) & 0xffff); } if (attrib[VAConfigAttribEncMaxSlices].value != VA_ATTRIB_NOT_SUPPORTED) printf("Support %d slices\n", attrib[VAConfigAttribEncMaxSlices].value); if (attrib[VAConfigAttribEncSliceStructure].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribEncSliceStructure].value; printf("Support VAConfigAttribEncSliceStructure\n"); if (tmp & VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS) printf("Support VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS\n"); if (tmp & VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS) printf("Support VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS\n"); if (tmp & VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS) printf("Support VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS\n"); } if (attrib[VAConfigAttribEncMacroblockInfo].value != VA_ATTRIB_NOT_SUPPORTED) { printf("Support VAConfigAttribEncMacroblockInfo\n"); } free(entrypoints); return 0; } static int setup_encode() { VAStatus va_status; VASurfaceID *tmp_surfaceid; int codedbuf_size, i; va_status = vaCreateConfig(va_dpy, h264_profile, selected_entrypoint, &config_attrib[0], config_attrib_num, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); /* create source surfaces */ va_status = vaCreateSurfaces(va_dpy, VA_RT_FORMAT_YUV420, frame_width_mbaligned, frame_height_mbaligned, &src_surface[0], SURFACE_NUM, NULL, 0); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); /* create reference surfaces */ va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, frame_width_mbaligned, frame_height_mbaligned, &ref_surface[0], SURFACE_NUM, NULL, 0 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); tmp_surfaceid = calloc(2 * SURFACE_NUM, sizeof(VASurfaceID)); assert(tmp_surfaceid); memcpy(tmp_surfaceid, src_surface, SURFACE_NUM * sizeof(VASurfaceID)); memcpy(tmp_surfaceid + SURFACE_NUM, ref_surface, SURFACE_NUM * sizeof(VASurfaceID)); /* Create a context for this encode pipe */ va_status = vaCreateContext(va_dpy, config_id, frame_width_mbaligned, frame_height_mbaligned, VA_PROGRESSIVE, tmp_surfaceid, 2 * SURFACE_NUM, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); free(tmp_surfaceid); codedbuf_size = ((long long int)frame_width_mbaligned * frame_height_mbaligned * 400) / (16 * 16); for (i = 0; i < SURFACE_NUM; i++) { /* create coded buffer once for all * other VA buffers which won't be used again after vaRenderPicture. * so APP can always vaCreateBuffer for every frame * but coded buffer need to be mapped and accessed after vaRenderPicture/vaEndPicture * so VA won't maintain the coded buffer */ va_status = vaCreateBuffer(va_dpy, context_id, VAEncCodedBufferType, codedbuf_size, 1, NULL, &coded_buf[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } return 0; } #define partition(ref, field, key, ascending) \ while (i <= j) { \ if (ascending) { \ while (ref[i].field < key) \ i++; \ while (ref[j].field > key) \ j--; \ } else { \ while (ref[i].field > key) \ i++; \ while (ref[j].field < key) \ j--; \ } \ if (i <= j) { \ tmp = ref[i]; \ ref[i] = ref[j]; \ ref[j] = tmp; \ i++; \ j--; \ } \ } \ static void sort_one(VAPictureH264 ref[], int left, int right, int ascending, int frame_idx) { int i = left, j = right; unsigned int key; VAPictureH264 tmp; if (frame_idx) { key = ref[(left + right) / 2].frame_idx; partition(ref, frame_idx, key, ascending); } else { key = ref[(left + right) / 2].TopFieldOrderCnt; partition(ref, TopFieldOrderCnt, (signed int)key, ascending); } /* recursion */ if (left < j) sort_one(ref, left, j, ascending, frame_idx); if (i < right) sort_one(ref, i, right, ascending, frame_idx); } static void sort_two(VAPictureH264 ref[], int left, int right, unsigned int key, unsigned int frame_idx, int partition_ascending, int list0_ascending, int list1_ascending) { int i = left, j = right; VAPictureH264 tmp; if (frame_idx) { partition(ref, frame_idx, key, partition_ascending); } else { partition(ref, TopFieldOrderCnt, (signed int)key, partition_ascending); } sort_one(ref, left, i - 1, list0_ascending, frame_idx); sort_one(ref, j + 1, right, list1_ascending, frame_idx); } static int update_ReferenceFrames(void) { int i; if (current_frame_type == FRAME_B) return 0; CurrentCurrPic.flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE; numShortTerm++; if (numShortTerm > num_ref_frames) numShortTerm = num_ref_frames; for (i = numShortTerm - 1; i > 0; i--) ReferenceFrames[i] = ReferenceFrames[i - 1]; ReferenceFrames[0] = CurrentCurrPic; if (current_frame_type != FRAME_B) current_frame_num++; if (current_frame_num > MaxFrameNum) current_frame_num = 0; return 0; } static int update_RefPicList(void) { unsigned int current_poc = CurrentCurrPic.TopFieldOrderCnt; if (current_frame_type == FRAME_P) { memcpy(RefPicList0_P, ReferenceFrames, numShortTerm * sizeof(VAPictureH264)); sort_one(RefPicList0_P, 0, numShortTerm - 1, 0, 1); } if (current_frame_type == FRAME_B) { memcpy(RefPicList0_B, ReferenceFrames, numShortTerm * sizeof(VAPictureH264)); sort_two(RefPicList0_B, 0, numShortTerm - 1, current_poc, 0, 1, 0, 1); memcpy(RefPicList1_B, ReferenceFrames, numShortTerm * sizeof(VAPictureH264)); sort_two(RefPicList1_B, 0, numShortTerm - 1, current_poc, 0, 0, 1, 0); } return 0; } static int render_sequence(void) { VABufferID seq_param_buf, rc_param_buf, misc_param_tmpbuf, render_id[2]; VAStatus va_status; VAEncMiscParameterBuffer *misc_param, *misc_param_tmp; VAEncMiscParameterRateControl *misc_rate_ctrl; seq_param.level_idc = 41 /*SH_LEVEL_3*/; seq_param.picture_width_in_mbs = frame_width_mbaligned / 16; seq_param.picture_height_in_mbs = frame_height_mbaligned / 16; seq_param.bits_per_second = frame_bitrate; seq_param.intra_period = intra_period; seq_param.intra_idr_period = intra_idr_period; seq_param.ip_period = ip_period; seq_param.max_num_ref_frames = num_ref_frames; seq_param.seq_fields.bits.frame_mbs_only_flag = 1; seq_param.time_scale = 900; seq_param.num_units_in_tick = 15; /* Tc = num_units_in_tick / time_sacle */ Log2MaxPicOrderCntLsb = ceil(log2(intra_idr_period*2)); seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 = Log2MaxPicOrderCntLsb - 4; if(seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 > 12) { seq_param.seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 = 12; } seq_param.seq_fields.bits.log2_max_frame_num_minus4 = Log2MaxFrameNum - 4;; seq_param.seq_fields.bits.frame_mbs_only_flag = 1; seq_param.seq_fields.bits.chroma_format_idc = 1; seq_param.seq_fields.bits.direct_8x8_inference_flag = 1; if (frame_width != frame_width_mbaligned || frame_height != frame_height_mbaligned) { seq_param.frame_cropping_flag = 1; seq_param.frame_crop_left_offset = 0; seq_param.frame_crop_right_offset = (frame_width_mbaligned - frame_width) / 2; seq_param.frame_crop_top_offset = 0; seq_param.frame_crop_bottom_offset = (frame_height_mbaligned - frame_height) / 2; } va_status = vaCreateBuffer(va_dpy, context_id, VAEncSequenceParameterBufferType, sizeof(seq_param), 1, &seq_param, &seq_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl), 1, NULL, &rc_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, rc_param_buf, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeRateControl; misc_rate_ctrl = (VAEncMiscParameterRateControl *)misc_param->data; memset(misc_rate_ctrl, 0, sizeof(*misc_rate_ctrl)); misc_rate_ctrl->bits_per_second = frame_bitrate; misc_rate_ctrl->target_percentage = 66; misc_rate_ctrl->window_size = 1000; misc_rate_ctrl->initial_qp = initial_qp; misc_rate_ctrl->min_qp = minimal_qp; misc_rate_ctrl->basic_unit_size = 0; vaUnmapBuffer(va_dpy, rc_param_buf); render_id[0] = seq_param_buf; render_id[1] = rc_param_buf; va_status = vaRenderPicture(va_dpy, context_id, &render_id[0], 2); CHECK_VASTATUS(va_status, "vaRenderPicture");; if (misc_priv_type != 0) { va_status = vaCreateBuffer(va_dpy, context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer), 1, NULL, &misc_param_tmpbuf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, misc_param_tmpbuf, (void **)&misc_param_tmp); misc_param_tmp->type = misc_priv_type; misc_param_tmp->data[0] = misc_priv_value; vaUnmapBuffer(va_dpy, misc_param_tmpbuf); va_status = vaRenderPicture(va_dpy, context_id, &misc_param_tmpbuf, 1); } return 0; } static int calc_poc(int pic_order_cnt_lsb) { static int PicOrderCntMsb_ref = 0, pic_order_cnt_lsb_ref = 0; int prevPicOrderCntMsb, prevPicOrderCntLsb; int PicOrderCntMsb, TopFieldOrderCnt; if (current_frame_type == FRAME_IDR) prevPicOrderCntMsb = prevPicOrderCntLsb = 0; else { prevPicOrderCntMsb = PicOrderCntMsb_ref; prevPicOrderCntLsb = pic_order_cnt_lsb_ref; } if ((pic_order_cnt_lsb < prevPicOrderCntLsb) && ((prevPicOrderCntLsb - pic_order_cnt_lsb) >= (int)(MaxPicOrderCntLsb / 2))) PicOrderCntMsb = prevPicOrderCntMsb + MaxPicOrderCntLsb; else if ((pic_order_cnt_lsb > prevPicOrderCntLsb) && ((pic_order_cnt_lsb - prevPicOrderCntLsb) > (int)(MaxPicOrderCntLsb / 2))) PicOrderCntMsb = prevPicOrderCntMsb - MaxPicOrderCntLsb; else PicOrderCntMsb = prevPicOrderCntMsb; TopFieldOrderCnt = PicOrderCntMsb + pic_order_cnt_lsb; if (current_frame_type != FRAME_B) { PicOrderCntMsb_ref = PicOrderCntMsb; pic_order_cnt_lsb_ref = pic_order_cnt_lsb; } return TopFieldOrderCnt; } static int render_picture(void) { VABufferID pic_param_buf; VAStatus va_status; int i = 0; pic_param.CurrPic.picture_id = ref_surface[current_slot]; pic_param.CurrPic.frame_idx = current_frame_num; pic_param.CurrPic.flags = 0; pic_param.CurrPic.TopFieldOrderCnt = calc_poc((current_frame_display - current_IDR_display) % MaxPicOrderCntLsb); pic_param.CurrPic.BottomFieldOrderCnt = pic_param.CurrPic.TopFieldOrderCnt; CurrentCurrPic = pic_param.CurrPic; if (getenv("TO_DEL")) { /* set RefPicList into ReferenceFrames */ update_RefPicList(); /* calc RefPicList */ memset(pic_param.ReferenceFrames, 0xff, 16 * sizeof(VAPictureH264)); /* invalid all */ if (current_frame_type == FRAME_P) { pic_param.ReferenceFrames[0] = RefPicList0_P[0]; } else if (current_frame_type == FRAME_B) { pic_param.ReferenceFrames[0] = RefPicList0_B[0]; pic_param.ReferenceFrames[1] = RefPicList1_B[0]; } } else { memcpy(pic_param.ReferenceFrames, ReferenceFrames, numShortTerm * sizeof(VAPictureH264)); for (i = numShortTerm; i < SURFACE_NUM; i++) { pic_param.ReferenceFrames[i].picture_id = VA_INVALID_SURFACE; pic_param.ReferenceFrames[i].flags = VA_PICTURE_H264_INVALID; } } pic_param.pic_fields.bits.idr_pic_flag = (current_frame_type == FRAME_IDR); pic_param.pic_fields.bits.reference_pic_flag = (current_frame_type != FRAME_B); pic_param.pic_fields.bits.entropy_coding_mode_flag = h264_entropy_mode; pic_param.pic_fields.bits.deblocking_filter_control_present_flag = 1; pic_param.frame_num = current_frame_num; pic_param.coded_buf = coded_buf[current_slot]; pic_param.last_picture = (current_frame_encoding == frame_count); pic_param.pic_init_qp = initial_qp; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPictureParameterBufferType, sizeof(pic_param), 1, &pic_param, &pic_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer");; va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); return 0; } static int render_packedsequence(void) { VAEncPackedHeaderParameterBuffer packedheader_param_buffer; VABufferID packedseq_para_bufid, packedseq_data_bufid, render_id[2]; unsigned int length_in_bits; unsigned char *packedseq_buffer = NULL; VAStatus va_status; length_in_bits = build_packed_seq_buffer(&packedseq_buffer); packedheader_param_buffer.type = VAEncPackedHeaderSequence; packedheader_param_buffer.bit_length = length_in_bits; /*length_in_bits*/ packedheader_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer, &packedseq_para_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packedseq_buffer, &packedseq_data_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); render_id[0] = packedseq_para_bufid; render_id[1] = packedseq_data_bufid; va_status = vaRenderPicture(va_dpy, context_id, render_id, 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); free(packedseq_buffer); return 0; } static int render_packedpicture(void) { VAEncPackedHeaderParameterBuffer packedheader_param_buffer; VABufferID packedpic_para_bufid, packedpic_data_bufid, render_id[2]; unsigned int length_in_bits; unsigned char *packedpic_buffer = NULL; VAStatus va_status; length_in_bits = build_packed_pic_buffer(&packedpic_buffer); packedheader_param_buffer.type = VAEncPackedHeaderPicture; packedheader_param_buffer.bit_length = length_in_bits; packedheader_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer, &packedpic_para_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packedpic_buffer, &packedpic_data_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); render_id[0] = packedpic_para_bufid; render_id[1] = packedpic_data_bufid; va_status = vaRenderPicture(va_dpy, context_id, render_id, 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); free(packedpic_buffer); return 0; } #if 0 static void render_packedsei(void) { VAEncPackedHeaderParameterBuffer packed_header_param_buffer; VABufferID packed_sei_header_param_buf_id, packed_sei_buf_id, render_id[2]; unsigned int length_in_bits /*offset_in_bytes*/; unsigned char *packed_sei_buffer = NULL; VAStatus va_status; int init_cpb_size, target_bit_rate, i_initial_cpb_removal_delay_length, i_initial_cpb_removal_delay; int i_cpb_removal_delay, i_dpb_output_delay_length, i_cpb_removal_delay_length; /* it comes for the bps defined in SPS */ target_bit_rate = frame_bitrate; init_cpb_size = (target_bit_rate * 8) >> 10; i_initial_cpb_removal_delay = init_cpb_size * 0.5 * 1024 / target_bit_rate * 90000; i_cpb_removal_delay = 2; i_initial_cpb_removal_delay_length = 24; i_cpb_removal_delay_length = 24; i_dpb_output_delay_length = 24; length_in_bits = build_packed_sei_buffer_timing( i_initial_cpb_removal_delay_length, i_initial_cpb_removal_delay, 0, i_cpb_removal_delay_length, i_cpb_removal_delay * current_frame_encoding, i_dpb_output_delay_length, 0, &packed_sei_buffer); //offset_in_bytes = 0; packed_header_param_buffer.type = VAEncPackedHeaderRawData; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &packed_sei_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_sei_buffer, &packed_sei_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); render_id[0] = packed_sei_header_param_buf_id; render_id[1] = packed_sei_buf_id; va_status = vaRenderPicture(va_dpy, context_id, render_id, 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); free(packed_sei_buffer); return; } static int render_hrd(void) { VABufferID misc_parameter_hrd_buf_id; VAStatus va_status; VAEncMiscParameterBuffer *misc_param; VAEncMiscParameterHRD *misc_hrd_param; va_status = vaCreateBuffer(va_dpy, context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterHRD), 1, NULL, &misc_parameter_hrd_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, misc_parameter_hrd_buf_id, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeHRD; misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data; if (frame_bitrate > 0) { misc_hrd_param->initial_buffer_fullness = frame_bitrate * 1024 * 4; misc_hrd_param->buffer_size = frame_bitrate * 1024 * 8; } else { misc_hrd_param->initial_buffer_fullness = 0; misc_hrd_param->buffer_size = 0; } vaUnmapBuffer(va_dpy, misc_parameter_hrd_buf_id); va_status = vaRenderPicture(va_dpy, context_id, &misc_parameter_hrd_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture");; return 0; } #endif static void render_packedslice() { VAEncPackedHeaderParameterBuffer packedheader_param_buffer; VABufferID packedslice_para_bufid, packedslice_data_bufid, render_id[2]; unsigned int length_in_bits; unsigned char *packedslice_buffer = NULL; VAStatus va_status; length_in_bits = build_packed_slice_buffer(&packedslice_buffer); packedheader_param_buffer.type = VAEncPackedHeaderSlice; packedheader_param_buffer.bit_length = length_in_bits; packedheader_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer, &packedslice_para_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packedslice_buffer, &packedslice_data_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); render_id[0] = packedslice_para_bufid; render_id[1] = packedslice_data_bufid; va_status = vaRenderPicture(va_dpy, context_id, render_id, 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); free(packedslice_buffer); } static int render_slice(void) { VABufferID slice_param_buf; VAStatus va_status; int i; update_RefPicList(); /* one frame, one slice */ slice_param.macroblock_address = 0; slice_param.num_macroblocks = frame_width_mbaligned * frame_height_mbaligned / (16 * 16); /* Measured by MB */ slice_param.slice_type = (current_frame_type == FRAME_IDR) ? 2 : current_frame_type; if (current_frame_type == FRAME_IDR) { if (current_frame_encoding != 0) ++slice_param.idr_pic_id; } else if (current_frame_type == FRAME_P) { int refpiclist0_max = h264_maxref & 0xffff; memcpy(slice_param.RefPicList0, RefPicList0_P, ((refpiclist0_max > 32) ? 32 : refpiclist0_max)*sizeof(VAPictureH264)); for (i = refpiclist0_max; i < 32; i++) { slice_param.RefPicList0[i].picture_id = VA_INVALID_SURFACE; slice_param.RefPicList0[i].flags = VA_PICTURE_H264_INVALID; } } else if (current_frame_type == FRAME_B) { int refpiclist0_max = h264_maxref & 0xffff; int refpiclist1_max = (h264_maxref >> 16) & 0xffff; memcpy(slice_param.RefPicList0, RefPicList0_B, ((refpiclist0_max > 32) ? 32 : refpiclist0_max)*sizeof(VAPictureH264)); for (i = refpiclist0_max; i < 32; i++) { slice_param.RefPicList0[i].picture_id = VA_INVALID_SURFACE; slice_param.RefPicList0[i].flags = VA_PICTURE_H264_INVALID; } memcpy(slice_param.RefPicList1, RefPicList1_B, ((refpiclist1_max > 32) ? 32 : refpiclist1_max)*sizeof(VAPictureH264)); for (i = refpiclist1_max; i < 32; i++) { slice_param.RefPicList1[i].picture_id = VA_INVALID_SURFACE; slice_param.RefPicList1[i].flags = VA_PICTURE_H264_INVALID; } } slice_param.slice_alpha_c0_offset_div2 = 0; slice_param.slice_beta_offset_div2 = 0; slice_param.direct_spatial_mv_pred_flag = 1; slice_param.pic_order_cnt_lsb = (current_frame_display - current_IDR_display) % MaxPicOrderCntLsb; if (h264_packedheader && config_attrib[enc_packed_header_idx].value & VA_ENC_PACKED_HEADER_SLICE) render_packedslice(); va_status = vaCreateBuffer(va_dpy, context_id, VAEncSliceParameterBufferType, sizeof(slice_param), 1, &slice_param, &slice_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer");; va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); return 0; } static int upload_source_YUV_once_for_all() { int box_width = 8; int row_shift = 0; int i; for (i = 0; i < SURFACE_NUM; i++) { printf("\rLoading data into surface %d.....", i); upload_surface(va_dpy, src_surface[i], box_width, row_shift, 0); row_shift++; if (row_shift == (2 * box_width)) row_shift = 0; } printf("Complete surface loading\n"); return 0; } static int load_surface(VASurfaceID surface_id, unsigned long long display_order) { unsigned char *srcyuv_ptr = NULL, *src_Y = NULL, *src_U = NULL, *src_V = NULL; unsigned long long frame_start, mmap_start; char *mmap_ptr = NULL; int frame_size, mmap_size; if (srcyuv_fp == NULL) return 0; /* allow encoding more than srcyuv_frames */ display_order = display_order % srcyuv_frames; frame_size = frame_width * frame_height * 3 / 2; /* for YUV420 */ frame_start = display_order * frame_size; mmap_start = frame_start & (~0xfff); mmap_size = (frame_size + (frame_start & 0xfff) + 0xfff) & (~0xfff); mmap_ptr = mmap(0, mmap_size, PROT_READ, MAP_SHARED, fileno(srcyuv_fp), mmap_start); if (mmap_ptr == MAP_FAILED) { printf("Failed to mmap YUV file (%s)\n", strerror(errno)); return 1; } srcyuv_ptr = (unsigned char *)mmap_ptr + (frame_start & 0xfff); if (srcyuv_fourcc == VA_FOURCC_NV12) { src_Y = srcyuv_ptr; src_U = src_Y + frame_width * frame_height; src_V = NULL; } else if (srcyuv_fourcc == VA_FOURCC_IYUV || srcyuv_fourcc == VA_FOURCC_YV12) { src_Y = srcyuv_ptr; if (srcyuv_fourcc == VA_FOURCC_IYUV) { src_U = src_Y + frame_width * frame_height; src_V = src_U + (frame_width / 2) * (frame_height / 2); } else { /* YV12 */ src_V = src_Y + frame_width * frame_height; src_U = src_V + (frame_width / 2) * (frame_height / 2); } } else { printf("Unsupported source YUV format\n"); if (mmap_ptr) munmap(mmap_ptr, mmap_size); exit(1); } upload_surface_yuv(va_dpy, surface_id, srcyuv_fourcc, frame_width, frame_height, src_Y, src_U, src_V); if (mmap_ptr) munmap(mmap_ptr, mmap_size); return 0; } static int save_recyuv(VASurfaceID surface_id, unsigned long long display_order, unsigned long long encode_order) { unsigned char *dst_Y = NULL, *dst_U = NULL, *dst_V = NULL; if (recyuv_fp == NULL) return 0; if (srcyuv_fourcc == VA_FOURCC_NV12) { int uv_size = 2 * (frame_width / 2) * (frame_height / 2); dst_Y = malloc(2 * uv_size); if (dst_Y == NULL) { printf("Failed to allocate memory for dst_Y\n"); exit(1); } dst_U = malloc(uv_size); if (dst_U == NULL) { printf("Failed to allocate memory for dst_U\n"); free(dst_Y); exit(1); } memset(dst_Y, 0, 2 * uv_size); memset(dst_U, 0, uv_size); } else if (srcyuv_fourcc == VA_FOURCC_IYUV || srcyuv_fourcc == VA_FOURCC_YV12) { int uv_size = (frame_width / 2) * (frame_height / 2); dst_Y = malloc(4 * uv_size); if (dst_Y == NULL) { printf("Failed to allocate memory for dst_Y\n"); exit(1); } dst_U = malloc(uv_size); if (dst_U == NULL) { printf("Failed to allocate memory for dst_U\n"); free(dst_Y); exit(1); } dst_V = malloc(uv_size); if (dst_V == NULL) { printf("Failed to allocate memory for dst_V\n"); free(dst_Y); free(dst_U); exit(1); } memset(dst_Y, 0, 4 * uv_size); memset(dst_U, 0, uv_size); memset(dst_V, 0, uv_size); } else { printf("Unsupported source YUV format\n"); exit(1); } download_surface_yuv(va_dpy, surface_id, srcyuv_fourcc, frame_width, frame_height, dst_Y, dst_U, dst_V); fseek(recyuv_fp, display_order * frame_width * frame_height * 1.5, SEEK_SET); if (srcyuv_fourcc == VA_FOURCC_NV12) { int uv_size = 2 * (frame_width / 2) * (frame_height / 2); fwrite(dst_Y, uv_size * 2, 1, recyuv_fp); fwrite(dst_U, uv_size, 1, recyuv_fp); } else if (srcyuv_fourcc == VA_FOURCC_IYUV || srcyuv_fourcc == VA_FOURCC_YV12) { int uv_size = (frame_width / 2) * (frame_height / 2); fwrite(dst_Y, uv_size * 4, 1, recyuv_fp); if (srcyuv_fourcc == VA_FOURCC_IYUV) { fwrite(dst_U, uv_size, 1, recyuv_fp); fwrite(dst_V, uv_size, 1, recyuv_fp); } else { fwrite(dst_V, uv_size, 1, recyuv_fp); fwrite(dst_U, uv_size, 1, recyuv_fp); } } if (dst_Y) free(dst_Y); if (dst_U) free(dst_U); if (dst_V) free(dst_V); fflush(recyuv_fp); return 0; } static int save_codeddata(unsigned long long display_order, unsigned long long encode_order) { VACodedBufferSegment *buf_list = NULL; VAStatus va_status; unsigned int coded_size = 0; va_status = vaMapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM], (void **)(&buf_list)); CHECK_VASTATUS(va_status, "vaMapBuffer"); while (buf_list != NULL) { coded_size += fwrite(buf_list->buf, 1, buf_list->size, coded_fp); buf_list = (VACodedBufferSegment *) buf_list->next; frame_size += coded_size; } vaUnmapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM]); printf("\r "); /* return back to startpoint */ switch (encode_order % 4) { case 0: printf("|"); break; case 1: printf("/"); break; case 2: printf("-"); break; case 3: printf("\\"); break; } printf("%08lld", encode_order); printf("(%06d bytes coded)", coded_size); fflush(coded_fp); return 0; } static struct storage_task_t * storage_task_dequeue(void) { struct storage_task_t *header; pthread_mutex_lock(&encode_mutex); header = storage_task_header; if (storage_task_header != NULL) { if (storage_task_tail == storage_task_header) storage_task_tail = NULL; storage_task_header = header->next; } pthread_mutex_unlock(&encode_mutex); return header; } static int storage_task_queue(unsigned long long display_order, unsigned long long encode_order) { struct storage_task_t *tmp; tmp = calloc(1, sizeof(struct storage_task_t)); assert(tmp); tmp->display_order = display_order; tmp->encode_order = encode_order; pthread_mutex_lock(&encode_mutex); if (storage_task_header == NULL) { storage_task_header = tmp; storage_task_tail = tmp; } else { storage_task_tail->next = tmp; storage_task_tail = tmp; } srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_STORAGE; pthread_cond_signal(&encode_cond); pthread_mutex_unlock(&encode_mutex); return 0; } static void storage_task(unsigned long long display_order, unsigned long long encode_order) { unsigned int tmp; VAStatus va_status; tmp = GetTickCount(); va_status = vaSyncSurface(va_dpy, src_surface[display_order % SURFACE_NUM]); CHECK_VASTATUS(va_status, "vaSyncSurface"); SyncPictureTicks += GetTickCount() - tmp; tmp = GetTickCount(); save_codeddata(display_order, encode_order); SavePictureTicks += GetTickCount() - tmp; save_recyuv(ref_surface[display_order % SURFACE_NUM], display_order, encode_order); /* reload a new frame data */ tmp = GetTickCount(); if (srcyuv_fp != NULL) load_surface(src_surface[display_order % SURFACE_NUM], display_order + SURFACE_NUM); UploadPictureTicks += GetTickCount() - tmp; pthread_mutex_lock(&encode_mutex); srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_ENCODING; pthread_mutex_unlock(&encode_mutex); } static void * storage_task_thread(void *t) { while (1) { struct storage_task_t *current; current = storage_task_dequeue(); if (current == NULL) { pthread_mutex_lock(&encode_mutex); pthread_cond_wait(&encode_cond, &encode_mutex); pthread_mutex_unlock(&encode_mutex); continue; } storage_task(current->display_order, current->encode_order); free(current); /* all frames are saved, exit the thread */ if (++frame_coded >= frame_count) break; } return 0; } static int encode_frames(void) { unsigned int i, tmp; VAStatus va_status; //VASurfaceStatus surface_status; /* upload RAW YUV data into all surfaces */ tmp = GetTickCount(); if (srcyuv_fp != NULL) { for (i = 0; i < SURFACE_NUM; i++) load_surface(src_surface[i], i); } else upload_source_YUV_once_for_all(); UploadPictureTicks += GetTickCount() - tmp; /* ready for encoding */ memset(srcsurface_status, SRC_SURFACE_IN_ENCODING, sizeof(srcsurface_status)); memset(&seq_param, 0, sizeof(seq_param)); memset(&pic_param, 0, sizeof(pic_param)); memset(&slice_param, 0, sizeof(slice_param)); if (encode_syncmode == 0) pthread_create(&encode_thread, NULL, storage_task_thread, NULL); for (current_frame_encoding = 0; current_frame_encoding < frame_count; current_frame_encoding++) { encoding2display_order(current_frame_encoding, intra_period, intra_idr_period, ip_period, ¤t_frame_display, ¤t_frame_type); if (current_frame_type == FRAME_IDR) { numShortTerm = 0; current_frame_num = 0; current_IDR_display = current_frame_display; } /* check if the source frame is ready */ while (srcsurface_status[current_slot] != SRC_SURFACE_IN_ENCODING) { usleep(1); } tmp = GetTickCount(); va_status = vaBeginPicture(va_dpy, context_id, src_surface[current_slot]); CHECK_VASTATUS(va_status, "vaBeginPicture"); BeginPictureTicks += GetTickCount() - tmp; tmp = GetTickCount(); if (current_frame_type == FRAME_IDR) { render_sequence(); render_picture(); if (h264_packedheader) { render_packedsequence(); render_packedpicture(); } //if (rc_mode == VA_RC_CBR) // render_packedsei(); //render_hrd(); } else { //render_sequence(); render_picture(); //if (rc_mode == VA_RC_CBR) // render_packedsei(); //render_hrd(); } render_slice(); RenderPictureTicks += GetTickCount() - tmp; tmp = GetTickCount(); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture");; EndPictureTicks += GetTickCount() - tmp; if (encode_syncmode) storage_task(current_frame_display, current_frame_encoding); else /* queue the storage task queue */ storage_task_queue(current_frame_display, current_frame_encoding); update_ReferenceFrames(); } if (encode_syncmode == 0) { int ret; pthread_join(encode_thread, (void **)&ret); } return 0; } static int release_encode() { int i; vaDestroySurfaces(va_dpy, &src_surface[0], SURFACE_NUM); vaDestroySurfaces(va_dpy, &ref_surface[0], SURFACE_NUM); for (i = 0; i < SURFACE_NUM; i++) vaDestroyBuffer(va_dpy, coded_buf[i]); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); return 0; } static int deinit_va() { vaTerminate(va_dpy); va_close_display(va_dpy); return 0; } static int print_input() { printf("\n\nINPUT:Try to encode H264...\n"); if (rc_mode != -1) printf("INPUT: RateControl : %s\n", rc_to_string(rc_mode)); printf("INPUT: Resolution : %dx%d, %d frames\n", frame_width, frame_height, frame_count); printf("INPUT: FrameRate : %d\n", frame_rate); printf("INPUT: Bitrate : %d\n", frame_bitrate); printf("INPUT: Slieces : %d\n", frame_slices); printf("INPUT: IntraPeriod : %d\n", intra_period); printf("INPUT: IDRPeriod : %d\n", intra_idr_period); printf("INPUT: IpPeriod : %d\n", ip_period); printf("INPUT: Initial QP : %d\n", initial_qp); printf("INPUT: Min QP : %d\n", minimal_qp); printf("INPUT: Source YUV : %s", srcyuv_fp ? "FILE" : "AUTO generated"); if (srcyuv_fp) printf(":%s (fourcc %s)\n", srcyuv_fn, fourcc_to_string(srcyuv_fourcc)); else printf("\n"); printf("INPUT: Coded Clip : %s\n", coded_fn); if (recyuv_fp == NULL) printf("INPUT: Rec Clip : %s\n", "Not save reconstructed frame"); else printf("INPUT: Rec Clip : Save reconstructed frame into %s (fourcc %s)\n", recyuv_fn, fourcc_to_string(srcyuv_fourcc)); printf("\n\n"); /* return back to startpoint */ return 0; } static int calc_PSNR(double *psnr) { char *srcyuv_ptr = NULL, *recyuv_ptr = NULL, tmp; unsigned long long min_size; unsigned long long i, sse = 0; double ssemean; int fourM = 0x400000; /* 4M */ min_size = MIN(srcyuv_frames, frame_count) * frame_width * frame_height * 1.5; for (i = 0; i < min_size; i++) { unsigned long long j = i % fourM; if ((i % fourM) == 0) { if (srcyuv_ptr) munmap(srcyuv_ptr, fourM); if (recyuv_ptr) munmap(recyuv_ptr, fourM); srcyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(srcyuv_fp), i); recyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(recyuv_fp), i); if ((srcyuv_ptr == MAP_FAILED) || (recyuv_ptr == MAP_FAILED)) { printf("Failed to mmap YUV files\n"); if (srcyuv_ptr != MAP_FAILED) munmap(srcyuv_ptr, fourM); if (recyuv_ptr != MAP_FAILED) munmap(recyuv_ptr, fourM); return 1; } } tmp = srcyuv_ptr[j] - recyuv_ptr[j]; sse += tmp * tmp; } ssemean = (double)sse / (double)min_size; *psnr = 20.0 * log10(255) - 10.0 * log10(ssemean); if (srcyuv_ptr) munmap(srcyuv_ptr, fourM); if (recyuv_ptr) munmap(recyuv_ptr, fourM); return 0; } static int print_performance(unsigned int PictureCount) { unsigned int psnr_ret = 1, others = 0; double psnr = 0, total_size = frame_width * frame_height * 1.5 * frame_count; if (calc_psnr && srcyuv_fp && recyuv_fp) psnr_ret = calc_PSNR(&psnr); others = TotalTicks - UploadPictureTicks - BeginPictureTicks - RenderPictureTicks - EndPictureTicks - SyncPictureTicks - SavePictureTicks; printf("\n\n"); printf("PERFORMANCE: Frame Rate : %.2f fps (%d frames, %d ms (%.2f ms per frame))\n", (double) 1000 * PictureCount / TotalTicks, PictureCount, TotalTicks, ((double) TotalTicks) / (double) PictureCount); printf("PERFORMANCE: Compression ratio : %d:1\n", (unsigned int)(total_size / frame_size)); if (psnr_ret == 0) printf("PERFORMANCE: PSNR : %.2f (%lld frames calculated)\n", psnr, MIN(frame_count, srcyuv_frames)); printf("PERFORMANCE: UploadPicture : %d ms (%.2f, %.2f%% percent)\n", (int) UploadPictureTicks, ((double) UploadPictureTicks) / (double) PictureCount, UploadPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaBeginPicture : %d ms (%.2f, %.2f%% percent)\n", (int) BeginPictureTicks, ((double) BeginPictureTicks) / (double) PictureCount, BeginPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaRenderHeader : %d ms (%.2f, %.2f%% percent)\n", (int) RenderPictureTicks, ((double) RenderPictureTicks) / (double) PictureCount, RenderPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaEndPicture : %d ms (%.2f, %.2f%% percent)\n", (int) EndPictureTicks, ((double) EndPictureTicks) / (double) PictureCount, EndPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaSyncSurface : %d ms (%.2f, %.2f%% percent)\n", (int) SyncPictureTicks, ((double) SyncPictureTicks) / (double) PictureCount, SyncPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: SavePicture : %d ms (%.2f, %.2f%% percent)\n", (int) SavePictureTicks, ((double) SavePictureTicks) / (double) PictureCount, SavePictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: Others : %d ms (%.2f, %.2f%% percent)\n", (int) others, ((double) others) / (double) PictureCount, others / (double) TotalTicks / 0.01); if (encode_syncmode == 0) printf("(Multithread enabled, the timing is only for reference)\n"); return 0; } int main(int argc, char **argv) { unsigned int start; process_cmdline(argc, argv); print_input(); start = GetTickCount(); init_va(); setup_encode(); encode_frames(); release_encode(); deinit_va(); TotalTicks += GetTickCount() - start; print_performance(frame_count); free(srcyuv_fn); free(recyuv_fn); free(coded_fn); if (srcyuv_fp) fclose(srcyuv_fp); if (recyuv_fp) fclose(recyuv_fp); if (coded_fp) fclose(coded_fp); return 0; } ================================================ FILE: encode/hevcencode.c ================================================ /* * Copyright (c) 2018 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #define LIBVA_UTILS_UPLOAD_DOWNLOAD_YUV_SURFACE 1 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #define ALIGN16(x) ((x+15)&~15) #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } #define CHECK_CONDITION(cond) \ if(!(cond)) \ { \ fprintf(stderr, "Unexpected condition: %s:%d\n", __func__, __LINE__);\ exit(1); \ } #include "loadsurface.h" #define NAL_REF_IDC_NONE 0 #define NAL_REF_IDC_LOW 1 #define NAL_REF_IDC_MEDIUM 2 #define NAL_REF_IDC_HIGH 3 #define FRAME_I 1 #define FRAME_P 2 #define FRAME_B 3 #define FRAME_IDR 7 // SLICE TYPE HEVC ENUM enum { SLICE_B = 0, SLICE_P = 1, SLICE_I = 2, }; #define IS_I_SLICE(type) (SLICE_I == (type)) #define IS_P_SLICE(type) (SLICE_P == (type)) #define IS_B_SLICE(type) (SLICE_B == (type)) #define ENTROPY_MODE_CAVLC 0 #define ENTROPY_MODE_CABAC 1 #define PROFILE_IDC_MAIN 1 #define PROFILE_IDC_MAIN10 2 #define BITSTREAM_ALLOCATE_STEPPING 4096 static int LCU_SIZE = 32; #define SURFACE_NUM 16 /* 16 surfaces for source YUV */ #define SURFACE_NUM 16 /* 16 surfaces for reference */ enum NALUType { NALU_TRAIL_N = 0x00, // Coded slice segment of a non-TSA, non-STSA trailing picture - slice_segment_layer_rbsp, VLC NALU_TRAIL_R = 0x01, // Coded slice segment of a non-TSA, non-STSA trailing picture - slice_segment_layer_rbsp, VLC NALU_TSA_N = 0x02, // Coded slice segment of a TSA picture - slice_segment_layer_rbsp, VLC NALU_TSA_R = 0x03, // Coded slice segment of a TSA picture - slice_segment_layer_rbsp, VLC NALU_STSA_N = 0x04, // Coded slice of an STSA picture - slice_layer_rbsp, VLC NALU_STSA_R = 0x05, // Coded slice of an STSA picture - slice_layer_rbsp, VLC NALU_RADL_N = 0x06, // Coded slice of an RADL picture - slice_layer_rbsp, VLC NALU_RADL_R = 0x07, // Coded slice of an RADL picture - slice_layer_rbsp, VLC NALU_RASL_N = 0x08, // Coded slice of an RASL picture - slice_layer_rbsp, VLC NALU_RASL_R = 0x09, // Coded slice of an RASL picture - slice_layer_rbsp, VLC /* 0x0a..0x0f - Reserved */ NALU_BLA_W_LP = 0x10, // Coded slice segment of an BLA picture - slice_segment_layer_rbsp, VLC NALU_BLA_W_DLP = 0x11, // Coded slice segment of an BLA picture - slice_segment_layer_rbsp, VLC NALU_BLA_N_LP = 0x12, // Coded slice segment of an BLA picture - slice_segment_layer_rbsp, VLC NALU_IDR_W_DLP = 0x13, // Coded slice segment of an IDR picture - slice_segment_layer_rbsp, VLC NALU_IDR_N_LP = 0x14, // Coded slice segment of an IDR picture - slice_segment_layer_rbsp, VLC NALU_CRA = 0x15, // Coded slice segment of an CRA picture - slice_segment_layer_rbsp, VLC /* 0x16..0x1f - Reserved */ NALU_VPS = 0x20, // Video parameter set - video_parameter_set_rbsp, non-VLC NALU_SPS = 0x21, // Sequence parameter set - seq_parameter_set_rbsp, non-VLC NALU_PPS = 0x22, // Picture parameter set - pic_parameter_set_rbsp, non-VLC NALU_AUD = 0x23, // Access unit delimiter - access_unit_delimiter_rbsp, non-VLC NALU_EOS = 0x24, // End of sequence - end_of_seq_rbsp, non-VLC NALU_EOB = 0x25, // End of bitsteam - end_of_bitsteam_rbsp, non-VLC NALU_FD = 0x26, // Filler data - filler_data_rbsp, non-VLC NALU_PREFIX_SEI = 0x27, // Supplemental enhancement information (SEI) - sei_rbsp, non_VLC NALU_SUFFIX_SEI = 0x28, // Supplemental enhancement information (SEI) - sei_rbsp, non_VLC /* 0x29..0x2f - Reserved */ /* 0x30..0x3f - Unspecified */ //this should be the last element of this enum //chagne this value if NAL unit type increased MAX_HEVC_NAL_TYPE = 0x3f, }; // Config const values #define MAX_TEMPORAL_SUBLAYERS 8 #define MAX_LAYER_ID 64 #define MAX_LONGTERM_REF_PIC 32 #define NUM_OF_EXTRA_SLICEHEADER_BITS 3 struct ProfileTierParamSet { uint8_t general_profile_space; //u(2) int general_tier_flag; //u(1) uint8_t general_profile_idc; //u(5) int general_profile_compatibility_flag[32]; //u(1) int general_progressive_source_flag; //u(1) int general_interlaced_source_flag; //u(1) int general_non_packed_constraint_flag; //u(1) int general_frame_only_constraint_flag; //u(1) int general_reserved_zero_43bits[43]; //u(1) int general_reserved_zero_bit; //u(1) uint8_t general_level_idc; //u(8) }; // Video parameter set structure struct VideoParamSet { uint8_t vps_video_parameter_set_id; //u(4) int vps_base_layer_internal_flag; //u(1) int vps_base_layer_available_flag; //u(1) uint8_t vps_max_layers_minus1; //u(6) uint8_t vps_max_sub_layers_minus1; //u(3) int vps_temporal_id_nesting_flag; //u(1) uint16_t vps_reserved_0xffff_16bits; //u(16) struct ProfileTierParamSet ptps; uint8_t vps_max_nuh_reserved_zero_layer_id; uint32_t vps_max_op_sets; uint32_t vps_num_op_sets_minus1; int vps_sub_layer_ordering_info_present_flag; //u(1) uint32_t vps_max_dec_pic_buffering_minus1[MAX_TEMPORAL_SUBLAYERS]; //ue(v) uint32_t vps_max_num_reorder_pics[MAX_TEMPORAL_SUBLAYERS]; //ue(v) uint32_t vps_max_latency_increase_plus1[MAX_TEMPORAL_SUBLAYERS]; //ue(v) uint8_t vps_max_layer_id; //u(6) uint32_t vps_num_layer_sets_minus1; //ue(v) int layer_id_included_flag[MAX_TEMPORAL_SUBLAYERS][MAX_LAYER_ID]; //u(1) int vps_timing_info_present_flag; //u(1) uint32_t vps_num_units_in_tick; //u(32) uint32_t vps_time_scale; //u(32 int vps_poc_proportional_to_timing_flag; //u(1) uint32_t vps_num_ticks_poc_diff_one_minus1; //ue(v) uint32_t vps_num_hrd_parameters; //ue(v) uint32_t hrd_layer_set_idx[MAX_TEMPORAL_SUBLAYERS]; //ue(v) int cprms_present_flag[MAX_TEMPORAL_SUBLAYERS]; //u(1) int vps_extension_flag; //u(1) int vps_extension_data_flag; //u(1) }; struct ShortTermRefPicParamSet { int inter_ref_pic_set_prediction_flag; //u(1) uint32_t delta_idx_minus1; //ue(v) uint8_t delta_rps_sign; //u(1) uint32_t abs_delta_rps_minus1; //ue(v) uint8_t used_by_curr_pic_flag[32]; //u(1) uint8_t use_delta_flag[32]; //u(1) uint32_t num_negative_pics; //ue(v) uint32_t num_positive_pics; //ue(v) uint32_t delta_poc_s0_minus1[32]; //ue(v) uint8_t used_by_curr_pic_s0_flag[32]; //u(1) uint32_t delta_poc_s1_minus1[32]; //ue(v) uint8_t used_by_curr_pic_s1_flag[32]; //u(1) }; struct SeqParamSet { uint8_t sps_video_parameter_set_id; //u(4) uint8_t sps_max_sub_layers_minus1; //u(3) int sps_temporal_id_nesting_flag; //u(1) struct ProfileTierParamSet ptps; uint32_t sps_seq_parameter_set_id; //ue(v) uint32_t chroma_format_idc; //ue(v) int separate_colour_plane_flag; //u(1) uint32_t pic_width_in_luma_samples; //ue(v) uint32_t pic_height_in_luma_samples; //ue(v) int conformance_window_flag; //u(1) uint32_t conf_win_left_offset; //ue(v) uint32_t conf_win_right_offset; //ue(v) uint32_t conf_win_top_offset; //ue(v) uint32_t conf_win_bottom_offset; //ue(v) uint32_t bit_depth_luma_minus8; //ue(v) uint32_t bit_depth_chroma_minus8; //ue(v) uint32_t log2_max_pic_order_cnt_lsb_minus4; //ue(v) int sps_sub_layer_ordering_info_present_flag; //u(1) uint32_t sps_max_dec_pic_buffering_minus1[MAX_TEMPORAL_SUBLAYERS]; //ue(v) uint32_t sps_max_num_reorder_pics[MAX_TEMPORAL_SUBLAYERS]; //ue(v) uint32_t sps_max_latency_increase_plus1[MAX_TEMPORAL_SUBLAYERS]; //ue(v) uint32_t log2_min_luma_coding_block_size_minus3; //ue(v) uint32_t log2_diff_max_min_luma_coding_block_size; uint32_t log2_max_coding_block_size_minus3; //ue(v) uint32_t log2_min_luma_transform_block_size_minus2; //ue(v) uint32_t log2_diff_max_min_luma_transform_block_size; //ue(v) uint32_t max_transform_hierarchy_depth_inter; //ue(v) uint32_t max_transform_hierarchy_depth_intra; //ue(v) uint8_t scaling_list_enabled_flag; //u(1) uint8_t sps_scaling_list_data_present_flag; //u(1) uint8_t amp_enabled_flag; //u(1) uint8_t sample_adaptive_offset_enabled_flag; //u(1) uint8_t pcm_enabled_flag; //u(1) uint8_t pcm_sample_bit_depth_luma_minus1; //u(4) uint8_t pcm_sample_bit_depth_chroma_minus1; //u(4) uint32_t log2_min_pcm_luma_coding_block_size_minus3; uint32_t log2_max_pcm_luma_coding_block_size_minus3; //ue(v) uint32_t log2_diff_max_min_pcm_luma_coding_block_size; //ue(v) uint8_t pcm_loop_filter_disabled_flag; //u(1) uint32_t num_short_term_ref_pic_sets; //ue(v) struct ShortTermRefPicParamSet strp[66]; uint8_t long_term_ref_pics_present_flag; //u(1) uint32_t num_long_term_ref_pics_sps; //ue(v) uint32_t lt_ref_pic_poc_lsb_sps[MAX_LONGTERM_REF_PIC]; //u(v) uint8_t used_by_curr_pic_lt_sps_flag[MAX_LONGTERM_REF_PIC]; //u(1) uint8_t sps_temporal_mvp_enabled_flag; //u(1) uint8_t strong_intra_smoothing_enabled_flag; //u(1) uint8_t vui_parameters_present_flag; //u(1) //VuiParameters vui_parameters; int sps_extension_present_flag; //u(1) int sps_range_extension_flag; //u(1) int sps_multilayer_extension_flag; //u(1) int sps_3d_extension_flag; //u(1) uint8_t sps_extension_5bits; //u(5) int sps_extension_data_flag; //u(1) }; struct PicParamSet { uint32_t pps_pic_parameter_set_id; //ue(v) uint32_t pps_seq_parameter_set_id; //ue(v) int dependent_slice_segments_enabled_flag; //u(1) int output_flag_present_flag; //u(1) uint8_t num_extra_slice_header_bits; //u(3) int sign_data_hiding_enabled_flag; //u(1) int cabac_init_present_flag; //u(1) uint32_t num_ref_idx_l0_default_active_minus1; //ue(v) uint32_t num_ref_idx_l1_default_active_minus1; //ue(v) int32_t init_qp_minus26; //se(v) int constrained_intra_pred_flag; //u(1) int transform_skip_enabled_flag; //u(1) int cu_qp_delta_enabled_flag; //u(1) uint32_t diff_cu_qp_delta_depth; //ue(v) uint32_t pps_cb_qp_offset; //se(v) uint32_t pps_cr_qp_offset; //se(v) int pps_slice_chroma_qp_offsets_present_flag; //u(1) int weighted_pred_flag; //u(1) int weighted_bipred_flag; //u(1) int transquant_bypass_enabled_flag; //u(1) int tiles_enabled_flag; //u(1) int entropy_coding_sync_enabled_flag; //u(1) uint32_t num_tile_columns_minus1; //ue(v) uint32_t num_tile_rows_minus1; //ue(v) int uniform_spacing_flag; //u(1) uint32_t *column_width_minus1; //ue(v) uint32_t *row_height_minus1; //ue(v) int loop_filter_across_tiles_enabled_flag; //u(1) int pps_loop_filter_across_slices_enabled_flag; //u(1) int deblocking_filter_control_present_flag; //u(1) int deblocking_filter_override_enabled_flag; //u(1) int pps_deblocking_filter_disabled_flag; //u(1) int32_t pps_beta_offset_div2; //se(v) int32_t pps_tc_offset_div2; //se(v) int pps_scaling_list_data_present_flag; //u(1) int lists_modification_present_flag; //u(1) uint32_t log2_parallel_merge_level_minus2; //ue(v) int slice_segment_header_extension_present_flag; //u(1) int pps_extension_present_flag; //u(1) int pps_range_extension_flag; //u(1) int pps_multilayer_extension_flag; //u(1) int pps_3d_extension_flag; //u(1) uint8_t pps_extension_5bits; //u(5) uint8_t pps_extension_data_flag; //u(1) uint32_t log2_max_transform_skip_block_size_minus2; //ue(v) uint8_t cross_component_prediction_enabled_flag; //ue(1) uint8_t chroma_qp_offset_list_enabled_flag; //ue(1) uint32_t diff_cu_chroma_qp_offset_depth; //ue(v) uint32_t chroma_qp_offset_list_len_minus1; //ue(v) uint32_t cb_qp_offset_list[6]; //se(v) uint32_t cr_qp_offset_list[6]; //se(v) uint32_t log2_sao_offset_scale_luma; //ue(v) uint32_t log2_sao_offset_scale_chroma; //ue(v) }; struct SliceHeader { int first_slice_segment_in_pic_flag; //u(1) int no_output_of_prior_pics_flag; //u(1) uint32_t slice_pic_parameter_set_id; //ue(v) int dependent_slice_segment_flag; //u(1) uint32_t picture_width_in_ctus; uint32_t picture_height_in_ctus; uint32_t slice_segment_address; //u(v) int slice_reserved_undetermined_flag[NUM_OF_EXTRA_SLICEHEADER_BITS]; //u(1) uint32_t slice_type; //ue(v) int pic_output_flag; //u(1) uint8_t colour_plane_id; //u(2) uint32_t pic_order_cnt_lsb; uint32_t num_negative_pics; uint32_t num_positive_pics; uint32_t delta_poc_s0_minus1; struct ShortTermRefPicParamSet strp; int short_term_ref_pic_set_sps_flag; //u(1) uint32_t short_term_ref_pic_set_idx; //u(v) uint32_t num_long_term_sps; //ue(v) uint32_t num_long_term_pics; //ue(v) uint32_t *lt_idx_sps; //u(v) uint32_t *poc_lsb_lt; //u(v) int *used_by_curr_pic_lt_flag; //u(1) int *delta_poc_msb_present_flag; //u(1) uint32_t *delta_poc_msb_cycle_lt; //ue(v) int slice_temporal_mvp_enabled_flag; //u(1) int slice_sao_luma_flag; //u(1) int slice_sao_chroma_flag; //u(1) int num_ref_idx_active_override_flag; //u(1) uint32_t num_ref_idx_l0_active_minus1; //ue(v) uint32_t num_ref_idx_l1_active_minus1; uint32_t num_poc_total_cur; int ref_pic_list_modification_flag_l0; int ref_pic_list_modification_flag_l1; uint32_t* list_entry_l0; uint32_t* list_entry_l1; int ref_pic_list_combination_flag; uint32_t num_ref_idx_lc_active_minus1; uint32_t ref_pic_list_modification_flag_lc; int pic_from_list_0_flag; uint32_t ref_idx_list_curr; int mvd_l1_zero_flag; //u(1) int cabac_init_present_flag; int pic_temporal_mvp_enable_flag; int collocated_from_l0_flag; //u(1) uint32_t collocated_ref_idx; //ue(v) uint32_t five_minus_max_num_merge_cand; //ue(v) int32_t delta_pic_order_cnt_bottom; //se(v) int32_t slice_qp_delta; //se(v) int32_t slice_qp_delta_cb; //se(v) int32_t slice_qp_delta_cr; //se(v) int cu_chroma_qp_offset_enabled_flag; //u(1) int deblocking_filter_override_flag; //u(1) int disable_deblocking_filter_flag; //u(1) int32_t beta_offset_div2; //se(v) int32_t tc_offset_div2; //se(v) int slice_loop_filter_across_slices_enabled_flag; //u(1) uint32_t num_entry_point_offsets; //ue(v) uint32_t offset_len_minus1; //ue(v) uint32_t *entry_point_offset; //u(v) uint32_t slice_segment_header_extension_length; //ue(v) uint8_t *slice_segment_header_extension_data_byte; //u(8) }; struct BlockSizes { uint32_t log2_max_coding_tree_block_size_minus3; uint32_t log2_min_coding_tree_block_size_minus3; uint32_t log2_min_luma_coding_block_size_minus3; uint32_t log2_max_luma_transform_block_size_minus2; uint32_t log2_min_luma_transform_block_size_minus2; uint32_t log2_max_pcm_coding_block_size_minus3; uint32_t log2_min_pcm_coding_block_size_minus3; uint32_t max_max_transform_hierarchy_depth_inter; uint32_t min_max_transform_hierarchy_depth_inter; uint32_t max_max_transform_hierarchy_depth_intra; uint32_t min_max_transform_hierarchy_depth_intra; }; struct Features { uint32_t amp; //sps->amp_enable_flag uint32_t constrained_intra_pred; uint32_t cu_qp_delta; // pps->cu_qp_delta_enabled_flag uint32_t deblocking_filter_disable; uint32_t dependent_slices; uint32_t pcm; // sps->pcm_enable_flag uint32_t sao; //sps->sample_adaptive_offset_enabled_flag uint32_t scaling_lists; uint32_t separate_colour_planes; uint32_t sign_data_hiding; uint32_t strong_intra_smoothing; uint32_t temporal_mvp; //sps->sps_temporal_mvp_enabled_flag uint32_t transform_skip; // pps->transform_skip_enabled_flag uint32_t transquant_bypass; uint32_t weighted_prediction; }; static struct VideoParamSet vps; static struct SeqParamSet sps; static struct PicParamSet pps; static struct SliceHeader ssh; static struct BlockSizes block_sizes; static int use_block_sizes = 0; static struct Features features; static int use_features = 0; static VADisplay va_dpy; static VAProfile hevc_profile = ~0; static int real_hevc_profile = 0; static VAEntrypoint entryPoint = VAEntrypointEncSlice; static int p2b = 1; static int lowpower = 0; static VAConfigAttrib attrib[VAConfigAttribTypeMax]; static VAConfigAttrib config_attrib[VAConfigAttribTypeMax]; static int config_attrib_num = 0, enc_packed_header_idx; static VASurfaceID src_surface[SURFACE_NUM]; static VABufferID coded_buf[SURFACE_NUM]; static VASurfaceID ref_surface[SURFACE_NUM]; static VAConfigID config_id; static VAContextID context_id; static struct ProfileTierParamSet protier_param; static VAEncSequenceParameterBufferHEVC seq_param; static VAEncPictureParameterBufferHEVC pic_param; static VAEncSliceParameterBufferHEVC slice_param; static VAPictureHEVC CurrentCurrPic; static VAPictureHEVC ReferenceFrames[16], RefPicList0_P[32], RefPicList0_B[32], RefPicList1_B[32]; static unsigned int MaxPicOrderCntLsb = (2 << 8); static unsigned int num_ref_frames = 2; static unsigned int num_active_ref_p = 1; static unsigned int numShortTerm = 0; static int constraint_set_flag = 0; static int hevc_packedheader = 0; static int hevc_maxref = 16; static char *coded_fn = NULL, *srcyuv_fn = NULL, *recyuv_fn = NULL; static FILE *coded_fp = NULL, *srcyuv_fp = NULL, *recyuv_fp = NULL; static unsigned long long srcyuv_frames = 0; static int srcyuv_fourcc = VA_FOURCC_NV12; static int calc_psnr = 0; static int frame_width = 176; static int frame_height = 144; static int frame_width_aligned; static int frame_height_aligned; static int frame_rate = 30; static unsigned int frame_count = 60; static unsigned int frame_coded = 0; static unsigned int frame_bitrate = 0; static unsigned int frame_slices = 1; static double frame_size = 0; static int initial_qp = 26; static int minimal_qp = 0; static int intra_period = 30; static int intra_idr_period = 60; static int ip_period = 1; static int rc_mode = -1; static int rc_default_modes[] = { VA_RC_VBR, VA_RC_CQP, VA_RC_VBR_CONSTRAINED, VA_RC_CBR, VA_RC_VCM, VA_RC_NONE, }; static unsigned long long current_frame_encoding = 0; static unsigned long long current_frame_display = 0; static unsigned long long current_IDR_display = 0; static unsigned int current_frame_num = 0; static int current_frame_type; #define current_slot (current_frame_display % SURFACE_NUM) static int misc_priv_type = 0; static int misc_priv_value = 0; #define MIN(a, b) ((a)>(b)?(b):(a)) #define MAX(a, b) ((a)>(b)?(a):(b)) /* thread to save coded data/upload source YUV */ struct storage_task_t { void *next; unsigned long long display_order; unsigned long long encode_order; }; static struct storage_task_t *storage_task_header = NULL, *storage_task_tail = NULL; #define SRC_SURFACE_IN_ENCODING 0 #define SRC_SURFACE_IN_STORAGE 1 static int srcsurface_status[SURFACE_NUM]; static int encode_syncmode = 0; static pthread_mutex_t encode_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t encode_cond = PTHREAD_COND_INITIALIZER; static pthread_t encode_thread; /* for performance profiling */ static unsigned int UploadPictureTicks = 0; static unsigned int BeginPictureTicks = 0; static unsigned int RenderPictureTicks = 0; static unsigned int EndPictureTicks = 0; static unsigned int SyncPictureTicks = 0; static unsigned int SavePictureTicks = 0; static unsigned int TotalTicks = 0; struct __bitstream { unsigned int *buffer; int bit_offset; int max_size_in_dword; }; typedef struct __bitstream bitstream; static unsigned int va_swap32(unsigned int val) { unsigned char *pval = (unsigned char *)&val; return ((pval[0] << 24) | (pval[1] << 16) | (pval[2] << 8) | (pval[3] << 0)); } static void bitstream_start(bitstream *bs) { bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING; bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1); assert(bs->buffer); bs->bit_offset = 0; } static void bitstream_end(bitstream *bs) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (bit_offset) { bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left)); } } static void put_ui(bitstream *bs, unsigned int val, int size_in_bits) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (!size_in_bits) return; bs->bit_offset += size_in_bits; if (bit_left > size_in_bits) { bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val); } else { size_in_bits -= bit_left; bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits); bs->buffer[pos] = va_swap32(bs->buffer[pos]); if (pos + 1 == bs->max_size_in_dword) { bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING; bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int)); assert(bs->buffer); } bs->buffer[pos + 1] = val; } } static void put_ue(bitstream *bs, unsigned int val) { int size_in_bits = 0; int tmp_val = ++val; while (tmp_val) { tmp_val >>= 1; size_in_bits++; } put_ui(bs, 0, size_in_bits - 1); // leading zero put_ui(bs, val, size_in_bits); } static void put_se(bitstream *bs, int val) { unsigned int new_val; if (val <= 0) new_val = -2 * val; else new_val = 2 * val - 1; put_ue(bs, new_val); } static void byte_aligning(bitstream *bs, int bit) { int bit_offset = (bs->bit_offset & 0x7); int bit_left = 8 - bit_offset; int new_val; if (!bit_offset) return; assert(bit == 0 || bit == 1); if (bit) new_val = (1 << bit_left) - 1; else new_val = 0; put_ui(bs, new_val, bit_left); } static void rbsp_trailing_bits(bitstream *bs) { put_ui(bs, 1, 1); byte_aligning(bs, 0); } static void nal_start_code_prefix(bitstream *bs, int nal_unit_type) { if (nal_unit_type == NALU_VPS || nal_unit_type == NALU_SPS || nal_unit_type == NALU_PPS || nal_unit_type == NALU_AUD) put_ui(bs, 0x00000001, 32); else put_ui(bs, 0x000001, 24); } static void nal_header(bitstream *bs, int nal_unit_type) { put_ui(bs, 0, 1); /* forbidden_zero_bit: 0 */ put_ui(bs, nal_unit_type, 6); put_ui(bs, 0, 6); put_ui(bs, 1, 3); } static int calc_poc(int pic_order_cnt_lsb) { static int picOrderCntMsb_ref = 0, pic_order_cnt_lsb_ref = 0; int prevPicOrderCntMsb, prevPicOrderCntLsb; int picOrderCntMsb, picOrderCnt; if (current_frame_type == FRAME_IDR) prevPicOrderCntMsb = prevPicOrderCntLsb = 0; else { prevPicOrderCntMsb = picOrderCntMsb_ref; prevPicOrderCntLsb = pic_order_cnt_lsb_ref; } if ((pic_order_cnt_lsb < prevPicOrderCntLsb) && ((prevPicOrderCntLsb - pic_order_cnt_lsb) >= (int)(MaxPicOrderCntLsb / 2))) picOrderCntMsb = prevPicOrderCntMsb + MaxPicOrderCntLsb; else if ((pic_order_cnt_lsb > prevPicOrderCntLsb) && ((pic_order_cnt_lsb - prevPicOrderCntLsb) > (int)(MaxPicOrderCntLsb / 2))) picOrderCntMsb = prevPicOrderCntMsb - MaxPicOrderCntLsb; else picOrderCntMsb = prevPicOrderCntMsb; picOrderCnt = picOrderCntMsb + pic_order_cnt_lsb; if (current_frame_type != FRAME_B) { picOrderCntMsb_ref = picOrderCntMsb; pic_order_cnt_lsb_ref = pic_order_cnt_lsb; } return picOrderCnt; } static void fill_profile_tier_level( uint8_t vps_max_layers_minus1, struct ProfileTierParamSet *ptps, uint8_t profilePresentFlag) { if (!profilePresentFlag) return; memset(ptps, 0, sizeof(*ptps)); ptps->general_profile_space = 0; ptps->general_tier_flag = 0; ptps->general_profile_idc = real_hevc_profile; memset(ptps->general_profile_compatibility_flag, 0, 32 * sizeof(int)); ptps->general_profile_compatibility_flag[ptps->general_profile_idc] = 1; ptps->general_progressive_source_flag = 1; ptps->general_interlaced_source_flag = 0; ptps->general_non_packed_constraint_flag = 0; ptps->general_frame_only_constraint_flag = 1; ptps->general_level_idc = 30; ptps->general_level_idc = ptps->general_level_idc * 4; } static void fill_vps_header(struct VideoParamSet *vps) { int i = 0; memset(vps, 0, sizeof(*vps)); vps->vps_video_parameter_set_id = 0; vps->vps_base_layer_internal_flag = 1; vps->vps_base_layer_available_flag = 1; vps->vps_max_layers_minus1 = 0; vps->vps_max_sub_layers_minus1 = 0; // max temporal layer minus 1 vps->vps_temporal_id_nesting_flag = 1; vps->vps_reserved_0xffff_16bits = 0xFFFF; // hevc::ProfileTierParamSet ptps; memset(&vps->ptps, 0, sizeof(vps->ptps)); fill_profile_tier_level(vps->vps_max_layers_minus1, &protier_param, 1); vps->vps_sub_layer_ordering_info_present_flag = 0; for (i = 0; i < MAX_TEMPORAL_SUBLAYERS; i++) { vps->vps_max_dec_pic_buffering_minus1[i] = intra_period == 1 ? 1 : 6; vps->vps_max_num_reorder_pics[i] = ip_period != 0 ? ip_period - 1 : 0; vps->vps_max_latency_increase_plus1[i] = 0; } vps->vps_max_layer_id = 0; vps->vps_num_layer_sets_minus1 = 0; vps->vps_sub_layer_ordering_info_present_flag = 0; vps->vps_max_nuh_reserved_zero_layer_id = 0; vps->vps_max_op_sets = 1; vps->vps_timing_info_present_flag = 0; vps->vps_extension_flag = 0; } static void fill_short_term_ref_pic_header( struct ShortTermRefPicParamSet *strp, uint8_t strp_index) { uint32_t i = 0; // inter_ref_pic_set_prediction_flag is always 0 now strp->inter_ref_pic_set_prediction_flag = 0; /* don't need to set below parameters since inter_ref_pic_set_prediction_flag equal to 0 strp->delta_idx_minus1 should be set to 0 since strp_index != num_short_term_ref_pic_sets in sps strp->delta_rps_sign; strp->abs_delta_rps_minus1; strp->used_by_curr_pic_flag[j]; strp->use_delta_flag[j]; */ strp->num_negative_pics = num_active_ref_p; int num_positive_pics = ip_period > 1 ? 1 : 0; strp->num_positive_pics = strp_index == 0 ? 0 : num_positive_pics; if (strp_index == 0) { for (i = 0; i < strp->num_negative_pics; i++) { strp->delta_poc_s0_minus1[i] = ip_period - 1; strp->used_by_curr_pic_s0_flag[i] = 1; } } else { for (i = 0; i < strp->num_negative_pics; i++) { strp->delta_poc_s0_minus1[i] = (i == 0) ? (strp_index - 1) : (ip_period - 1); strp->used_by_curr_pic_s0_flag[i] = 1; } for (i = 0; i < strp->num_positive_pics; i++) { strp->delta_poc_s1_minus1[i] = ip_period - 1 - strp_index; strp->used_by_curr_pic_s1_flag[i] = 1; } } } void fill_sps_header(struct SeqParamSet *sps, int id) { int i = 0; memset(sps, 0, sizeof(struct SeqParamSet)); sps->sps_video_parameter_set_id = 0; sps->sps_max_sub_layers_minus1 = 0; sps->sps_temporal_id_nesting_flag = 1; fill_profile_tier_level(sps->sps_max_sub_layers_minus1, &sps->ptps, 1); sps->sps_seq_parameter_set_id = id; sps->chroma_format_idc = 1; if (sps->chroma_format_idc == 3) { sps->separate_colour_plane_flag = use_features ? features.separate_colour_planes : 0; } frame_width_aligned = ALIGN16(frame_width); frame_height_aligned = ALIGN16(frame_height); sps->pic_width_in_luma_samples = frame_width_aligned; sps->pic_height_in_luma_samples = frame_height_aligned; if (frame_width_aligned != frame_width || frame_height_aligned != frame_height) { sps->conformance_window_flag = 1; sps->conf_win_left_offset = 0; sps->conf_win_top_offset = 0; switch (sps->chroma_format_idc) { case 0: case 3: // 4:4:4 format sps->conf_win_right_offset = (frame_width_aligned - frame_width); sps->conf_win_bottom_offset = (frame_height_aligned - frame_height); break; case 2: // 4:2:2 format sps->conf_win_right_offset = (frame_width_aligned - frame_width) >> 1; sps->conf_win_bottom_offset = (frame_height_aligned - frame_height); break; case 1: default: // 4:2:0 format sps->conf_win_right_offset = (frame_width_aligned - frame_width) >> 1; sps->conf_win_bottom_offset = (frame_height_aligned - frame_height) >> 1; break; } } else { sps->conformance_window_flag = 0; } sps->bit_depth_luma_minus8 = 0; sps->bit_depth_chroma_minus8 = 0; sps->log2_max_pic_order_cnt_lsb_minus4 = MAX((ceil(log(ip_period - 1 + 4) / log(2.0)) + 3), 4) - 4; sps->sps_sub_layer_ordering_info_present_flag = 0; for (i = 0; i < MAX_TEMPORAL_SUBLAYERS; i++) { sps->sps_max_dec_pic_buffering_minus1[i] = intra_period == 1 ? 1 : 6; sps->sps_max_num_reorder_pics[i] = ip_period != 0 ? ip_period - 1 : 0; sps->sps_max_latency_increase_plus1[i] = 0; } sps->log2_min_luma_coding_block_size_minus3 = use_block_sizes ? block_sizes.log2_min_luma_coding_block_size_minus3 : 0; int log2_max_luma_coding_block_size = use_block_sizes ? block_sizes.log2_max_coding_tree_block_size_minus3 + 3 : log2(LCU_SIZE); int log2_min_luma_coding_block_size = sps->log2_min_luma_coding_block_size_minus3 + 3; sps->log2_diff_max_min_luma_coding_block_size = log2_max_luma_coding_block_size - log2_min_luma_coding_block_size; sps->log2_min_luma_transform_block_size_minus2 = use_block_sizes ? block_sizes.log2_min_luma_transform_block_size_minus2 : 0; sps->log2_diff_max_min_luma_transform_block_size = use_block_sizes ? (block_sizes.log2_max_luma_transform_block_size_minus2 - sps->log2_min_luma_transform_block_size_minus2) : 3; sps->max_transform_hierarchy_depth_inter = use_block_sizes ? block_sizes.max_max_transform_hierarchy_depth_inter : 2; sps->max_transform_hierarchy_depth_intra = use_block_sizes ? block_sizes.max_max_transform_hierarchy_depth_intra : 2; sps->scaling_list_enabled_flag = 0; //sps->sps_scaling_list_data_present_flag; // ignore since scaling_list_enabled_flag equal to 0 sps->amp_enabled_flag = use_features ? features.amp >= 1 : 1; sps->sample_adaptive_offset_enabled_flag = use_features ? features.sao : 1; sps->pcm_enabled_flag = use_features ? features.pcm : 0; /* ignore below parameters seting since pcm_enabled_flag equal to 0 pcm_sample_bit_depth_luma_minus1; pcm_sample_bit_depth_chroma_minus1; log2_min_pcm_luma_coding_block_size_minus3; log2_diff_max_min_pcm_luma_coding_block_size; pcm_loop_filter_disabled_flag; */ sps->num_short_term_ref_pic_sets = ip_period; memset(&sps->strp[0], 0, sizeof(sps->strp)); for (i = 0; i < MIN(sps->num_short_term_ref_pic_sets, 64); i++) fill_short_term_ref_pic_header(&sps->strp[i], i); sps->long_term_ref_pics_present_flag = 0; /* ignore below parameters seting since long_term_ref_pics_present_flag equal to 0 num_long_term_ref_pics_sps; lt_ref_pic_poc_lsb_sps[kMaxLongTermRefPic]; used_by_curr_pic_lt_sps_flag[kMaxLongTermRefPic]; */ sps->sps_temporal_mvp_enabled_flag = use_features ? features.temporal_mvp : 1; sps->strong_intra_smoothing_enabled_flag = use_features ? features.strong_intra_smoothing : 0; sps->vui_parameters_present_flag = 0; sps->sps_extension_present_flag = 0; /* ignore below parameters seting since sps_extension_present_flag equal to 0 sps->sps_range_extension_flag sps->sps_multilayer_extension_flag sps->sps_3d_extension_flag sps->sps_extension_5bits sps->sps_extension_data_flag */ } static void fill_pps_header( struct PicParamSet *pps, uint32_t pps_id, uint32_t sps_id) { memset(pps, 0, sizeof(struct PicParamSet)); pps->pps_pic_parameter_set_id = pps_id; pps->pps_seq_parameter_set_id = sps_id; pps->dependent_slice_segments_enabled_flag = use_features ? features.dependent_slices : 0; pps->output_flag_present_flag = 0; pps->num_extra_slice_header_bits = 0; pps->sign_data_hiding_enabled_flag = use_features ? features.sign_data_hiding : 0; pps->cabac_init_present_flag = 1; pps->num_ref_idx_l0_default_active_minus1 = 0; pps->num_ref_idx_l1_default_active_minus1 = 0; pps->init_qp_minus26 = initial_qp - 26; pps->constrained_intra_pred_flag = use_features ? features.constrained_intra_pred : 0; pps->transform_skip_enabled_flag = use_features ? features.transform_skip : 0; pps->cu_qp_delta_enabled_flag = use_features ? features.cu_qp_delta >= 1 : 1; if (pps->cu_qp_delta_enabled_flag) pps->diff_cu_qp_delta_depth = 2; pps->pps_cb_qp_offset = 0; pps->pps_cr_qp_offset = 0; pps->pps_slice_chroma_qp_offsets_present_flag = 0; pps->weighted_pred_flag = use_features ? features.weighted_prediction : 0; pps->weighted_bipred_flag = 0; pps->transquant_bypass_enabled_flag = use_features ? features.transquant_bypass : 0; pps->entropy_coding_sync_enabled_flag = 0; pps->tiles_enabled_flag = 0; pps->pps_loop_filter_across_slices_enabled_flag = 0; pps->deblocking_filter_control_present_flag = 1; pps->deblocking_filter_override_enabled_flag = 0, pps->pps_deblocking_filter_disabled_flag = use_features ? features.deblocking_filter_disable : 0, pps->pps_beta_offset_div2 = 2, pps->pps_tc_offset_div2 = 0, pps->pps_scaling_list_data_present_flag = 0; pps->lists_modification_present_flag = 0; pps->log2_parallel_merge_level_minus2 = 0; pps->slice_segment_header_extension_present_flag = 0; pps->pps_extension_present_flag = 0; pps->pps_range_extension_flag = 0; } static void fill_slice_header( uint32_t count, struct PicParamSet *pps, struct SliceHeader *slice) { memset(slice, 0, sizeof(struct SliceHeader)); slice->pic_output_flag = 1; slice->colour_plane_id = 0; slice->no_output_of_prior_pics_flag = 0; slice->pic_order_cnt_lsb = calc_poc((current_frame_display - current_IDR_display) % MaxPicOrderCntLsb); //slice_segment_address (u(v)) int lcu_size = use_block_sizes ? (1 << (block_sizes.log2_max_coding_tree_block_size_minus3 + 3)) : LCU_SIZE; slice->picture_height_in_ctus = (frame_height + lcu_size - 1) / lcu_size; slice->picture_width_in_ctus = (frame_width + lcu_size - 1) / lcu_size; slice->slice_segment_address = 0; slice->first_slice_segment_in_pic_flag = ((slice->slice_segment_address == 0) ? 1 : 0); slice->slice_type = current_frame_type == FRAME_P ? (p2b ? SLICE_B : SLICE_P) : current_frame_type == FRAME_B ? SLICE_B : SLICE_I; slice->dependent_slice_segment_flag = 0; slice->short_term_ref_pic_set_sps_flag = 1; slice->num_ref_idx_active_override_flag = 0; slice->short_term_ref_pic_set_idx = slice->pic_order_cnt_lsb % ip_period; slice->strp.num_negative_pics = numShortTerm; slice->strp.num_positive_pics = 0; slice->slice_sao_luma_flag = 0; slice->slice_sao_chroma_flag = 0; slice->slice_temporal_mvp_enabled_flag = use_features ? features.temporal_mvp : 1; slice->num_ref_idx_l0_active_minus1 = pps->num_ref_idx_l0_default_active_minus1; slice->num_ref_idx_l1_active_minus1 = pps->num_ref_idx_l1_default_active_minus1; slice->num_poc_total_cur = 0; // for I slice if (current_frame_type == FRAME_I || current_frame_type == FRAME_IDR) { slice->ref_pic_list_modification_flag_l0 = 0; slice->list_entry_l0 = 0; slice->ref_pic_list_modification_flag_l1 = 0; slice->list_entry_l1 = 0; } else { slice->ref_pic_list_modification_flag_l0 = 1; slice->num_poc_total_cur = 2; } slice->ref_pic_list_combination_flag = 0; slice->num_ref_idx_lc_active_minus1 = 0; slice->ref_pic_list_modification_flag_lc = 0; slice->pic_from_list_0_flag = 0; slice->ref_idx_list_curr = 0; slice->mvd_l1_zero_flag = 0; slice->cabac_init_present_flag = 0; slice->slice_qp_delta = 0; slice->slice_qp_delta_cb = pps->pps_cb_qp_offset; slice->slice_qp_delta_cr = pps->pps_cr_qp_offset; slice->deblocking_filter_override_flag = 0; slice->disable_deblocking_filter_flag = 0; slice->tc_offset_div2 = pps->pps_tc_offset_div2; slice->beta_offset_div2 = pps->pps_beta_offset_div2; slice->collocated_from_l0_flag = 1; slice->collocated_ref_idx = pps->num_ref_idx_l0_default_active_minus1; slice->five_minus_max_num_merge_cand = 0; slice->slice_loop_filter_across_slices_enabled_flag = 0; slice->num_entry_point_offsets = 0; slice->offset_len_minus1 = 0; } static void protier_rbsp(bitstream *bs) { uint32_t i = 0; put_ui(bs, protier_param.general_profile_space, 2); put_ui(bs, protier_param.general_tier_flag, 1); put_ui(bs, protier_param.general_profile_idc, 5); for (i = 0; i < 32; i++) put_ui(bs, protier_param.general_profile_compatibility_flag[i], 1); put_ui(bs, protier_param.general_progressive_source_flag, 1); put_ui(bs, protier_param.general_interlaced_source_flag, 1); put_ui(bs, protier_param.general_non_packed_constraint_flag, 1); put_ui(bs, protier_param.general_frame_only_constraint_flag, 1); put_ui(bs, 0, 16); put_ui(bs, 0, 16); put_ui(bs, 0, 12); put_ui(bs, protier_param.general_level_idc, 8); } void pack_short_term_ref_pic_setp( bitstream *bs, struct ShortTermRefPicParamSet* strp, int first_strp) { uint32_t i = 0; if (!first_strp) put_ui(bs, strp->inter_ref_pic_set_prediction_flag, 1); // inter_ref_pic_set_prediction_flag is always 0 now put_ue(bs, strp->num_negative_pics); put_ue(bs, strp->num_positive_pics); for (i = 0; i < strp->num_negative_pics; i++) { put_ue(bs, strp->delta_poc_s0_minus1[i]); put_ui(bs, strp->used_by_curr_pic_s0_flag[i], 1); } for (i = 0; i < strp->num_positive_pics; i++) { put_ue(bs, strp->delta_poc_s1_minus1[i]); put_ui(bs, strp->used_by_curr_pic_s1_flag[i], 1); } } static void vps_rbsp(bitstream *bs) { uint32_t i = 0; put_ui(bs, vps.vps_video_parameter_set_id, 4); put_ui(bs, 3, 2); //vps_reserved_three_2bits put_ui(bs, 0, 6); //vps_reserved_zero_6bits put_ui(bs, vps.vps_max_sub_layers_minus1, 3); put_ui(bs, vps.vps_temporal_id_nesting_flag, 1); put_ui(bs, 0xFFFF, 16); //vps_reserved_0xffff_16bits protier_rbsp(bs); put_ui(bs, vps.vps_sub_layer_ordering_info_present_flag, 1); for (i = (vps.vps_sub_layer_ordering_info_present_flag ? 0 : vps.vps_max_sub_layers_minus1); i <= vps.vps_max_sub_layers_minus1; i++) { // NOTE: In teddi and mv_encoder, the setting is max_dec_pic_buffering. // here just follow the spec 7.3.2.1 put_ue(bs, vps.vps_max_dec_pic_buffering_minus1[i]); put_ue(bs, vps.vps_max_num_reorder_pics[i]); put_ue(bs, vps.vps_max_latency_increase_plus1[i]); } put_ui(bs, vps.vps_max_nuh_reserved_zero_layer_id, 6); put_ue(bs, vps.vps_num_op_sets_minus1); put_ui(bs, vps.vps_timing_info_present_flag, 1); if (vps.vps_timing_info_present_flag) { put_ue(bs, vps.vps_num_units_in_tick); put_ue(bs, vps.vps_time_scale); put_ue(bs, vps.vps_poc_proportional_to_timing_flag); if (vps.vps_poc_proportional_to_timing_flag) { put_ue(bs, vps.vps_num_ticks_poc_diff_one_minus1); } put_ue(bs, vps.vps_num_hrd_parameters); for (i = 0; i < vps.vps_num_hrd_parameters; i++) { put_ue(bs, vps.hrd_layer_set_idx[i]); if (i > 0) { put_ui(bs, vps.cprms_present_flag[i], 1); } } } // no extension flag put_ui(bs, 0, 1); } static void sps_rbsp(bitstream *bs) { uint32_t i = 0; put_ui(bs, sps.sps_video_parameter_set_id, 4); put_ui(bs, sps.sps_max_sub_layers_minus1, 3); put_ui(bs, sps.sps_temporal_id_nesting_flag, 1); protier_rbsp(bs); put_ue(bs, sps.sps_seq_parameter_set_id); put_ue(bs, sps.chroma_format_idc); if (sps.chroma_format_idc == 3) { put_ui(bs, sps.separate_colour_plane_flag, 1); } put_ue(bs, sps.pic_width_in_luma_samples); put_ue(bs, sps.pic_height_in_luma_samples); put_ui(bs, sps.conformance_window_flag, 1); if (sps.conformance_window_flag) { put_ue(bs, sps.conf_win_left_offset); put_ue(bs, sps.conf_win_right_offset); put_ue(bs, sps.conf_win_top_offset); put_ue(bs, sps.conf_win_bottom_offset); } put_ue(bs, sps.bit_depth_luma_minus8); put_ue(bs, sps.bit_depth_chroma_minus8); put_ue(bs, sps.log2_max_pic_order_cnt_lsb_minus4); put_ui(bs, sps.sps_sub_layer_ordering_info_present_flag, 1); for (i = (sps.sps_sub_layer_ordering_info_present_flag ? 0 : sps.sps_max_sub_layers_minus1); i <= sps.sps_max_sub_layers_minus1; i++) { // NOTE: In teddi and mv_encoder, the setting is max_dec_pic_buffering. // here just follow the spec 7.3.2.2 put_ue(bs, sps.sps_max_dec_pic_buffering_minus1[i]); put_ue(bs, sps.sps_max_num_reorder_pics[i]); put_ue(bs, sps.sps_max_latency_increase_plus1[i]); } put_ue(bs, sps.log2_min_luma_coding_block_size_minus3); put_ue(bs, sps.log2_diff_max_min_luma_coding_block_size); put_ue(bs, sps.log2_min_luma_transform_block_size_minus2); put_ue(bs, sps.log2_diff_max_min_luma_transform_block_size); put_ue(bs, sps.max_transform_hierarchy_depth_inter); put_ue(bs, sps.max_transform_hierarchy_depth_intra); // scaling_list_enabled_flag is set as 0 in fill_sps_header() for now put_ui(bs, sps.scaling_list_enabled_flag, 1); if (sps.scaling_list_enabled_flag) { put_ui(bs, sps.sps_scaling_list_data_present_flag, 1); if (sps.sps_scaling_list_data_present_flag) { //scaling_list_data(); } } put_ui(bs, sps.amp_enabled_flag, 1); put_ui(bs, sps.sample_adaptive_offset_enabled_flag, 1); // pcm_enabled_flag is set as 0 in fill_sps_header() for now put_ui(bs, sps.pcm_enabled_flag, 1); if (sps.pcm_enabled_flag) { put_ui(bs, sps.pcm_sample_bit_depth_luma_minus1, 4); put_ui(bs, sps.pcm_sample_bit_depth_chroma_minus1, 4); put_ue(bs, sps.log2_min_pcm_luma_coding_block_size_minus3); put_ue(bs, sps.log2_diff_max_min_pcm_luma_coding_block_size); put_ui(bs, sps.pcm_loop_filter_disabled_flag, 1); } put_ue(bs, sps.num_short_term_ref_pic_sets); for (i = 0; i < sps.num_short_term_ref_pic_sets; i++) { pack_short_term_ref_pic_setp(bs, &sps.strp[i], i == 0); } // long_term_ref_pics_present_flag is set as 0 in fill_sps_header() for now put_ui(bs, sps.long_term_ref_pics_present_flag, 1); if (sps.long_term_ref_pics_present_flag) { put_ue(bs, sps.num_long_term_ref_pics_sps); for (i = 0; i < sps.num_long_term_ref_pics_sps; i++) { put_ue(bs, sps.lt_ref_pic_poc_lsb_sps[i]); put_ui(bs, sps.used_by_curr_pic_lt_sps_flag[i], 1); } } put_ui(bs, sps.sps_temporal_mvp_enabled_flag, 1); put_ui(bs, sps.strong_intra_smoothing_enabled_flag, 1); // vui_parameters_present_flag is set as 0 in fill_sps_header() for now put_ui(bs, sps.vui_parameters_present_flag, 1); put_ui(bs, sps.sps_extension_present_flag, 1); } static void pps_rbsp(bitstream *bs) { uint32_t i = 0; put_ue(bs, pps.pps_pic_parameter_set_id); put_ue(bs, pps.pps_seq_parameter_set_id); put_ui(bs, pps.dependent_slice_segments_enabled_flag, 1); put_ui(bs, pps.output_flag_present_flag, 1); put_ui(bs, pps.num_extra_slice_header_bits, 3); put_ui(bs, pps.sign_data_hiding_enabled_flag, 1); put_ui(bs, pps.cabac_init_present_flag, 1); put_ue(bs, pps.num_ref_idx_l0_default_active_minus1); put_ue(bs, pps.num_ref_idx_l1_default_active_minus1); put_se(bs, pps.init_qp_minus26); put_ui(bs, pps.constrained_intra_pred_flag, 1); put_ui(bs, pps.transform_skip_enabled_flag, 1); put_ui(bs, pps.cu_qp_delta_enabled_flag, 1); if (pps.cu_qp_delta_enabled_flag) { put_ue(bs, pps.diff_cu_qp_delta_depth); } put_se(bs, pps.pps_cb_qp_offset); put_se(bs, pps.pps_cr_qp_offset); put_ui(bs, pps.pps_slice_chroma_qp_offsets_present_flag, 1); put_ui(bs, pps.weighted_pred_flag, 1); put_ui(bs, pps.weighted_bipred_flag, 1); put_ui(bs, pps.transquant_bypass_enabled_flag, 1); put_ui(bs, pps.tiles_enabled_flag, 1); put_ui(bs, pps.entropy_coding_sync_enabled_flag, 1); if (pps.tiles_enabled_flag) { put_ue(bs, pps.num_tile_columns_minus1); put_ue(bs, pps.num_tile_rows_minus1); put_ui(bs, pps.uniform_spacing_flag, 1); if (!pps.uniform_spacing_flag) { for (i = 0; i < pps.num_tile_columns_minus1; i++) { put_ue(bs, pps.column_width_minus1[i]); } for (i = 0; i < pps.num_tile_rows_minus1; i++) { put_ue(bs, pps.row_height_minus1[i]); } } put_ui(bs, pps.loop_filter_across_tiles_enabled_flag, 1); } put_ui(bs, pps.pps_loop_filter_across_slices_enabled_flag, 1); put_ui(bs, pps.deblocking_filter_control_present_flag, 1); if (pps.deblocking_filter_control_present_flag) { put_ui(bs, pps.deblocking_filter_override_enabled_flag, 1); put_ui(bs, pps.pps_deblocking_filter_disabled_flag, 1); if (!pps.pps_deblocking_filter_disabled_flag) { put_se(bs, pps.pps_beta_offset_div2); put_se(bs, pps.pps_tc_offset_div2); } } // pps_scaling_list_data_present_flag is set as 0 in fill_pps_header() for now put_ui(bs, pps.pps_scaling_list_data_present_flag, 1); if (pps.pps_scaling_list_data_present_flag) { //scaling_list_data(); } put_ui(bs, pps.lists_modification_present_flag, 1); put_ue(bs, pps.log2_parallel_merge_level_minus2); put_ui(bs, pps.slice_segment_header_extension_present_flag, 1); put_ui(bs, pps.pps_extension_present_flag, 1); if (pps.pps_extension_present_flag) { put_ui(bs, pps.pps_range_extension_flag, 1); put_ui(bs, pps.pps_multilayer_extension_flag, 1); put_ui(bs, pps.pps_3d_extension_flag, 1); put_ui(bs, pps.pps_extension_5bits, 1); } if (pps.pps_range_extension_flag) { if (pps.transform_skip_enabled_flag) put_ue(bs, pps.log2_max_transform_skip_block_size_minus2); put_ui(bs, pps.cross_component_prediction_enabled_flag, 1); put_ui(bs, pps.chroma_qp_offset_list_enabled_flag, 1); if (pps.chroma_qp_offset_list_enabled_flag) { put_ue(bs, pps.diff_cu_chroma_qp_offset_depth); put_ue(bs, pps.chroma_qp_offset_list_len_minus1); for (i = 0; i <= pps.chroma_qp_offset_list_len_minus1; i++) { put_ue(bs, pps.cb_qp_offset_list[i]); put_ue(bs, pps.cr_qp_offset_list[i]); } } put_ue(bs, pps.log2_sao_offset_scale_luma); put_ue(bs, pps.log2_sao_offset_scale_chroma); } } static void sliceHeader_rbsp( bitstream *bs, struct SliceHeader *slice_header, struct SeqParamSet *sps, struct PicParamSet *pps, int isidr) { uint8_t nal_unit_type = NALU_TRAIL_R; int gop_ref_distance = ip_period; int i = 0; put_ui(bs, slice_header->first_slice_segment_in_pic_flag, 1); if (slice_header->pic_order_cnt_lsb == 0) nal_unit_type = NALU_IDR_W_DLP; if (nal_unit_type >= 16 && nal_unit_type <= 23) put_ui(bs, slice_header->no_output_of_prior_pics_flag, 1); put_ue(bs, slice_header->slice_pic_parameter_set_id); if (!slice_header->first_slice_segment_in_pic_flag) { if (slice_header->dependent_slice_segment_flag) { put_ui(bs, slice_header->dependent_slice_segment_flag, 1); } put_ui(bs, slice_header->slice_segment_address, (uint8_t)(ceil(log(slice_header->picture_height_in_ctus * slice_header->picture_width_in_ctus) / log(2.0)))); } if (!slice_header->dependent_slice_segment_flag) { for (i = 0; i < pps->num_extra_slice_header_bits; i++) { put_ui(bs, slice_header->slice_reserved_undetermined_flag[i], 1); } put_ue(bs, slice_header->slice_type); if (pps->output_flag_present_flag) { put_ui(bs, slice_header->pic_output_flag, 1); } if (sps->separate_colour_plane_flag == 1) { put_ui(bs, slice_header->colour_plane_id, 2); } if (!(nal_unit_type == NALU_IDR_W_DLP || nal_unit_type == NALU_IDR_N_LP)) { put_ui(bs, slice_header->pic_order_cnt_lsb, (sps->log2_max_pic_order_cnt_lsb_minus4 + 4)); put_ui(bs, slice_header->short_term_ref_pic_set_sps_flag, 1); if (!slice_header->short_term_ref_pic_set_sps_flag) { // refer to Teddi if (sps->num_short_term_ref_pic_sets > 0) put_ui(bs, 0, 1); // inter_ref_pic_set_prediction_flag, always 0 for now put_ue(bs, slice_header->strp.num_negative_pics); put_ue(bs, slice_header->strp.num_positive_pics); // below chunks of codes (majorly two big 'for' blocks) are refering both // Teddi and mv_encoder, they look kind of ugly, however, keep them as these // since it will be pretty easy to update if change/update in Teddi side. // According to Teddi, these are CModel Implementation. int prev = 0; int frame_cnt_in_gop = slice_header->pic_order_cnt_lsb / 2; // this is the first big 'for' block for (i = 0; i < slice_header->strp.num_negative_pics; i++) { // Low Delay B case if (1 == gop_ref_distance) { put_ue(bs, 0 /*delta_poc_s0_minus1*/); } else { // For Non-BPyramid GOP i.e B0 type if (num_active_ref_p > 1) { // DeltaPOC Equals NumB int DeltaPoc = -(int)(gop_ref_distance); put_ue(bs, prev - DeltaPoc - 1 /*delta_poc_s0_minus1*/); } else { // the big 'if' wraps here is - // if (!slice_header->short_term_ref_pic_set_sps_flag) // From the Teddi logic, the short_term_ref_pic_set_sps_flag only can be '0' // either for B-Prymid or first several frames in a GOP in multi-ref cases // when there are not enough backward refs. // So though there are really some codes under this 'else'in Teddi, don't // want to introduce them in MEA to avoid confusion, and put an assert // here to guard that there is new case we need handle in the future. assert(0); } } put_ui(bs, 1 /*used_by_curr_pic_s0_flag*/, 1); } prev = 0; // this is the second big 'for' block for (i = 0; i < slice_header->strp.num_positive_pics; i++) { // Non-BPyramid GOP if (num_active_ref_p > 1) { // MultiRef Case if (frame_cnt_in_gop < gop_ref_distance) { int DeltaPoc = (int)(gop_ref_distance - frame_cnt_in_gop); put_ue(bs, DeltaPoc - prev - 1 /*delta_poc_s1_minus1*/); } else if (frame_cnt_in_gop > gop_ref_distance) { int DeltaPoc = (int)(gop_ref_distance * slice_header->strp.num_negative_pics - frame_cnt_in_gop); put_ue(bs, DeltaPoc - prev - 1 /*delta_poc_s1_minus1*/); } } else { // the big 'if' wraps here is - // if (!slice_header->short_term_ref_pic_set_sps_flag) // From the Teddi logic, the short_term_ref_pic_set_sps_flag only can be '0' // either for B-Prymid or first several frames in a GOP in multi-ref cases // when there are not enough backward refs. // So though there are really some codes under this 'else'in Teddi, don't // want to introduce them in MEA to avoid confusion, and put an assert // here to guard that there is new case we need handle in the future. assert(0); } put_ui(bs, 1 /*used_by_curr_pic_s1_flag*/, 1); } } else if (sps->num_short_term_ref_pic_sets > 1) put_ui(bs, slice_header->short_term_ref_pic_set_idx, (uint8_t)(ceil(log(sps->num_short_term_ref_pic_sets) / log(2.0)))); if (sps->long_term_ref_pics_present_flag) { if (sps->num_long_term_ref_pics_sps > 0) put_ue(bs, slice_header->num_long_term_sps); put_ue(bs, slice_header->num_long_term_pics); } if (sps->sps_temporal_mvp_enabled_flag) put_ui(bs, slice_header->slice_temporal_mvp_enabled_flag, 1); } if (sps->sample_adaptive_offset_enabled_flag) { put_ui(bs, slice_header->slice_sao_luma_flag, 1); put_ui(bs, slice_header->slice_sao_chroma_flag, 1); } if (slice_header->slice_type != SLICE_I) { put_ui(bs, slice_header->num_ref_idx_active_override_flag, 1); if (slice_header->num_ref_idx_active_override_flag) { put_ue(bs, slice_header->num_ref_idx_l0_active_minus1); if (slice_header->slice_type == SLICE_B) put_ue(bs, slice_header->num_ref_idx_l1_active_minus1); } if (pps->lists_modification_present_flag && slice_header->num_poc_total_cur > 1) { /* ref_pic_list_modification */ put_ui(bs, slice_header->ref_pic_list_modification_flag_l0, 1); if (slice_header->ref_pic_list_modification_flag_l0) { for (i = 0; i <= slice_header->num_ref_idx_l0_active_minus1; i++) { put_ui(bs, slice_header->list_entry_l0[i], (uint8_t)(ceil(log(slice_header->num_poc_total_cur) / log(2.0)))); } } put_ui(bs, slice_header->ref_pic_list_modification_flag_l1, 1); if (slice_header->ref_pic_list_modification_flag_l1) { for (i = 0; i <= slice_header->num_ref_idx_l1_active_minus1; i++) { put_ui(bs, slice_header->list_entry_l1[i], (uint8_t)(ceil(log(slice_header->num_poc_total_cur) / log(2.0)))); } } } if (slice_header->slice_type == SLICE_B) { put_ui(bs, slice_header->mvd_l1_zero_flag, 1); } if (pps->cabac_init_present_flag) { put_ui(bs, slice_header->cabac_init_present_flag, 1); } if (slice_header->slice_temporal_mvp_enabled_flag) { int collocated_from_l0_flag = 1; if (slice_header->slice_type == SLICE_B) { collocated_from_l0_flag = slice_header->collocated_from_l0_flag; put_ui(bs, slice_header->collocated_from_l0_flag, 1); } if (((collocated_from_l0_flag && (slice_header->num_ref_idx_l0_active_minus1 > 0)) || (!collocated_from_l0_flag && (slice_header->num_ref_idx_l1_active_minus1 > 0)))) { put_ue(bs, slice_header->collocated_ref_idx); } } put_ue(bs, slice_header->five_minus_max_num_merge_cand); } put_se(bs, slice_header->slice_qp_delta); if (pps->chroma_qp_offset_list_enabled_flag) { put_se(bs, slice_header->slice_qp_delta_cb); put_se(bs, slice_header->slice_qp_delta_cr); } if (pps->deblocking_filter_override_enabled_flag) { put_ui(bs, slice_header->deblocking_filter_override_flag, 1); } if (slice_header->deblocking_filter_override_flag) { put_ui(bs, slice_header->disable_deblocking_filter_flag, 1); if (!slice_header->disable_deblocking_filter_flag) { put_se(bs, slice_header->beta_offset_div2); put_se(bs, slice_header->tc_offset_div2); } } if (pps->pps_loop_filter_across_slices_enabled_flag && (slice_header->slice_sao_luma_flag || slice_header->slice_sao_chroma_flag || !slice_header->disable_deblocking_filter_flag)) { put_ui(bs, slice_header->slice_loop_filter_across_slices_enabled_flag, 1); } } if ((pps->tiles_enabled_flag) || (pps->entropy_coding_sync_enabled_flag)) { put_ue(bs, slice_header->num_entry_point_offsets); if (slice_header->num_entry_point_offsets > 0) { put_ue(bs, slice_header->offset_len_minus1); } } if (pps->slice_segment_header_extension_present_flag) { int slice_header_extension_length = 0; put_ue(bs, slice_header_extension_length); } } static int build_packed_pic_buffer(unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs, NALU_PPS); nal_header(&bs, NALU_PPS); pps_rbsp(&bs); rbsp_trailing_bits(&bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_video_buffer(unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs, NALU_VPS); nal_header(&bs, NALU_VPS); vps_rbsp(&bs); rbsp_trailing_bits(&bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_seq_buffer(unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs, NALU_SPS); nal_header(&bs, NALU_SPS); sps_rbsp(&bs); rbsp_trailing_bits(&bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_slice_buffer(unsigned char **header_buffer) { bitstream bs; int is_idr = !!pic_param.pic_fields.bits.idr_pic_flag; int naluType = is_idr ? NALU_IDR_W_DLP : NALU_TRAIL_R; bitstream_start(&bs); nal_start_code_prefix(&bs, NALU_TRAIL_R); nal_header(&bs, naluType); sliceHeader_rbsp(&bs, &ssh, &sps, &pps, 0); rbsp_trailing_bits(&bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } /* * Helper function for profiling purposes */ static unsigned int GetTickCount() { struct timeval tv; if (gettimeofday(&tv, NULL)) return 0; return tv.tv_usec / 1000 + tv.tv_sec * 1000; } /* Assume frame sequence is: Frame#0,#1,#2,...,#M,...,#X,... (encoding order) 1) period between Frame #X and Frame #N = #X - #N 2) 0 means infinite for intra_period/intra_idr_period, and 0 is invalid for ip_period 3) intra_idr_period % intra_period (intra_period > 0) and (intra_period -1)% ip_period must be 0 4) intra_period and intra_idr_period take precedence over ip_period 5) if ip_period > 1, intra_period and intra_idr_period are not the strict periods of I/IDR frames, see bellow examples ------------------------------------------------------------------- intra_period intra_idr_period ip_period frame sequence (intra_period/intra_idr_period/ip_period) 0 ignored 1 IDRPPPPPPP ... (No IDR/I any more) 0 ignored >=2 IDR(PBB)(PBB)... (No IDR/I any more) 1 0 ignored IDRIIIIIII... (No IDR any more) 1 1 ignored IDR IDR IDR IDR... 1 >=2 ignored IDRII IDRII IDR... (1/3/ignore) >=2 0 1 IDRPPP IPPP I... (3/0/1) >=2 0 >=2 IDR(PBB)(PBB)(IBB) (7/0/3) (PBB)(IBB)(PBB)(IBB)... >=2 >=2 1 IDRPPPPP IPPPPP IPPPPP (7/14/1) IDRPPPPP IPPPPP IPPPPP... >=2 >=2 >=2 {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)} (7/14/3) {IDR(PBB)(PBB)(IBB)(PBB)(IBB)(PBB)}... {IDR(PBB)(PBB)(IBB)(PBB)} (7/14/3) {IDR(PBB)(PBB)(IBB)(PBB)}... {IDR(PBB)(PBB)} (7/7/3) {IDR(PBB)(PBB)}. */ /* * Return displaying order with specified periods and encoding order * displaying_order: displaying order * frame_type: frame type */ void encoding2display_order( unsigned long long encoding_order, int intra_period, int intra_idr_period, int ip_period, unsigned long long *displaying_order, int *frame_type) { int encoding_order_gop = 0; if (intra_period == 1) { /* all are I/IDR frames */ *displaying_order = encoding_order; if (intra_idr_period == 0) *frame_type = (encoding_order == 0) ? FRAME_IDR : FRAME_I; else *frame_type = (encoding_order % intra_idr_period == 0) ? FRAME_IDR : FRAME_I; return; } if (intra_period == 0) intra_idr_period = 0; /* new sequence like * IDR PPPPP IPPPPP * IDR (PBB)(PBB)(IBB)(PBB) */ encoding_order_gop = (intra_idr_period == 0) ? encoding_order : (encoding_order % (intra_idr_period + ((ip_period == 1) ? 0 : 1))); if (encoding_order_gop == 0) { /* the first frame */ *frame_type = FRAME_IDR; *displaying_order = encoding_order; } else if (((encoding_order_gop - 1) % ip_period) != 0) { /* B frames */ *frame_type = FRAME_B; *displaying_order = encoding_order - 1; } else if ((intra_period != 0) && /* have I frames */ (encoding_order_gop >= 2) && ((ip_period == 1 && encoding_order_gop % (intra_period - 1) == 0) || /* for IDR PPPPP IPPPP */ /* for IDR (PBB)(PBB)(IBB) */ (ip_period >= 2 && ((encoding_order_gop - 1) / ip_period % ((intra_period - 1) / ip_period)) == 0))) { *frame_type = FRAME_I; *displaying_order = encoding_order + ip_period - 1; } else { *frame_type = FRAME_P; *displaying_order = encoding_order + ip_period - 1; } } static char *fourcc_to_string(int fourcc) { switch (fourcc) { case VA_FOURCC_NV12: return "NV12"; case VA_FOURCC_IYUV: return "IYUV"; case VA_FOURCC_YV12: return "YV12"; case VA_FOURCC_UYVY: return "UYVY"; default: return "Unknown"; } } static int string_to_fourcc(char *str) { int fourcc; if (!strncmp(str, "NV12", 4)) fourcc = VA_FOURCC_NV12; else if (!strncmp(str, "IYUV", 4)) fourcc = VA_FOURCC_IYUV; else if (!strncmp(str, "YV12", 4)) fourcc = VA_FOURCC_YV12; else if (!strncmp(str, "UYVY", 4)) fourcc = VA_FOURCC_UYVY; else { printf("Unknow FOURCC\n"); fourcc = -1; } return fourcc; } static char *rc_to_string(int rcmode) { switch (rc_mode) { case VA_RC_NONE: return "NONE"; case VA_RC_CBR: return "CBR"; case VA_RC_VBR: return "VBR"; case VA_RC_VCM: return "VCM"; case VA_RC_CQP: return "CQP"; case VA_RC_VBR_CONSTRAINED: return "VBR_CONSTRAINED"; default: return "Unknown"; } } static int string_to_rc(char *str) { int rc_mode; if (!strncmp(str, "NONE", 4)) rc_mode = VA_RC_NONE; else if (!strncmp(str, "CBR", 3)) rc_mode = VA_RC_CBR; else if (!strncmp(str, "VBR", 3)) rc_mode = VA_RC_VBR; else if (!strncmp(str, "VCM", 3)) rc_mode = VA_RC_VCM; else if (!strncmp(str, "CQP", 3)) rc_mode = VA_RC_CQP; else if (!strncmp(str, "VBR_CONSTRAINED", 15)) rc_mode = VA_RC_VBR_CONSTRAINED; else { printf("Unknown RC mode\n"); rc_mode = -1; } return rc_mode; } static int print_help(void) { printf("./hevcencode \n"); printf(" -w -h \n"); printf(" -framecount \n"); printf(" -n \n"); printf(" if set to 0 and srcyuv is set, the frame count is from srcuv file\n"); printf(" -o \n"); printf(" -f \n"); printf(" --intra_period \n"); printf(" --idr_period \n"); printf(" --ip_period \n"); printf(" --bitrate Kbits per second\n"); printf(" --initialqp \n"); printf(" --minqp \n"); printf(" --rcmode \n"); printf(" --syncmode: sequentially upload source, encoding, save result, no multi-thread\n"); printf(" --srcyuv load YUV from a file\n"); printf(" --fourcc source YUV fourcc\n"); printf(" --recyuv save reconstructed YUV into a file\n"); printf(" --enablePSNR calculate PSNR of recyuv vs. srcyuv\n"); printf(" --profile 1: main 2 : main10\n"); printf(" --p2b 1: enable 0 : disalbe(defalut)\n"); printf(" --lowpower 1: enable 0 : disalbe(defalut)\n"); return 0; } static int process_cmdline(int argc, char *argv[]) { int c; const struct option long_opts[] = { {"help", no_argument, NULL, 0 }, {"bitrate", required_argument, NULL, 1 }, {"minqp", required_argument, NULL, 2 }, {"initialqp", required_argument, NULL, 3 }, {"intra_period", required_argument, NULL, 4 }, {"idr_period", required_argument, NULL, 5 }, {"ip_period", required_argument, NULL, 6 }, {"rcmode", required_argument, NULL, 7 }, {"srcyuv", required_argument, NULL, 9 }, {"recyuv", required_argument, NULL, 10 }, {"fourcc", required_argument, NULL, 11 }, {"syncmode", no_argument, NULL, 12 }, {"enablePSNR", no_argument, NULL, 13 }, {"prit", required_argument, NULL, 14 }, {"priv", required_argument, NULL, 15 }, {"framecount", required_argument, NULL, 16 }, {"profile", required_argument, NULL, 17 }, {"p2b", required_argument, NULL, 18 }, {"lowpower", required_argument, NULL, 19 }, {NULL, no_argument, NULL, 0 } }; int long_index; while ((c = getopt_long_only(argc, argv, "w:h:n:f:o:?", long_opts, &long_index)) != EOF) { switch (c) { case 'w': frame_width = atoi(optarg); break; case 'h': frame_height = atoi(optarg); break; case 'n': case 16: frame_count = atoi(optarg); break; case 'f': frame_rate = atoi(optarg); break; case 'o': if (coded_fn) free(coded_fn); coded_fn = strdup(optarg); break; case 0: print_help(); exit(0); case 1: frame_bitrate = atoi(optarg)*1000; break; case 2: minimal_qp = atoi(optarg); break; case 3: initial_qp = atoi(optarg); break; case 4: intra_period = atoi(optarg); break; case 5: intra_idr_period = atoi(optarg); break; case 6: ip_period = atoi(optarg); break; case 7: rc_mode = string_to_rc(optarg); if (rc_mode < 0) { print_help(); exit(1); } break; case 9: if (srcyuv_fn) free(srcyuv_fn); srcyuv_fn = strdup(optarg); break; case 10: if (recyuv_fn) free(recyuv_fn); recyuv_fn = strdup(optarg); break; case 11: srcyuv_fourcc = string_to_fourcc(optarg); if (srcyuv_fourcc <= 0) { print_help(); exit(1); } break; case 12: encode_syncmode = 1; break; case 13: calc_psnr = 1; break; case 14: misc_priv_type = strtol(optarg, NULL, 0); break; case 15: misc_priv_value = strtol(optarg, NULL, 0); break; case 17: if (strncmp(optarg, "1", 1) == 0) { real_hevc_profile = 1; hevc_profile = VAProfileHEVCMain; } else if (strncmp(optarg, "2", 1) == 0) { real_hevc_profile = 2; hevc_profile = VAProfileHEVCMain10; } else hevc_profile = 0; break; case 18: p2b = atoi(optarg); break; case 19: lowpower = atoi(optarg); break; case ':': case '?': print_help(); exit(0); } } if (ip_period < 1) { printf(" ip_period must be greater than 0\n"); exit(0); } if (intra_period != 1 && (intra_period - 1) % ip_period != 0) { printf(" intra_period -1 must be a multiplier of ip_period\n"); exit(0); } if (intra_period != 0 && intra_idr_period % intra_period != 0) { printf(" intra_idr_period must be a multiplier of intra_period\n"); exit(0); } if (ip_period > 1) { frame_count -= (frame_count - 1) % ip_period; } if (frame_bitrate == 0) frame_bitrate = (long long int) frame_width * frame_height * 12 * frame_rate / 50; /* open source file */ if (srcyuv_fn) { srcyuv_fp = fopen(srcyuv_fn, "r"); if (srcyuv_fp == NULL) printf("Open source YUV file %s failed, use auto-generated YUV data\n", srcyuv_fn); else { struct stat tmp; int ret = fstat(fileno(srcyuv_fp), &tmp); CHECK_CONDITION(ret == 0); srcyuv_frames = tmp.st_size / (frame_width * frame_height * 1.5); printf("Source YUV file %s with %llu frames\n", srcyuv_fn, srcyuv_frames); if (frame_count == 0) frame_count = srcyuv_frames; } } /* open source file */ if (recyuv_fn) { recyuv_fp = fopen(recyuv_fn, "w+"); if (recyuv_fp == NULL) printf("Open reconstructed YUV file %s failed\n", recyuv_fn); } if (coded_fn == NULL) { struct stat buf; if (stat("/tmp", &buf) == 0) coded_fn = strdup("/tmp/test.265"); else if (stat("/sdcard", &buf) == 0) coded_fn = strdup("/sdcard/test.265"); else coded_fn = strdup("./test.265"); } /* store coded data into a file */ if (coded_fn) { coded_fp = fopen(coded_fn, "w+"); } else { printf("Copy file string failed"); exit(1); } if (coded_fp == NULL) { printf("Open file %s failed, exit\n", coded_fn); exit(1); } frame_width_aligned = (frame_width + 63) & (~63); frame_height_aligned = (frame_height + 63) & (~63); if (frame_width != frame_width_aligned || frame_height != frame_height_aligned) { printf("Source frame is %dx%d and will code clip to %dx%d with crop\n", frame_width, frame_height, frame_width_aligned, frame_height_aligned ); } return 0; } static int init_va(void) { VAProfile profile_list[] = {VAProfileHEVCMain, VAProfileHEVCMain10}; VAEntrypoint *entrypoints; int num_entrypoints, slice_entrypoint; int support_encode = 0; int support_lpEntryPoint = 0; int major_ver, minor_ver; VAStatus va_status; unsigned int i; va_dpy = va_open_display(); va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); CHECK_VASTATUS(va_status, "vaInitialize"); num_entrypoints = vaMaxNumEntrypoints(va_dpy); entrypoints = malloc(num_entrypoints * sizeof(*entrypoints)); if (!entrypoints) { fprintf(stderr, "error: failed to initialize VA entrypoints array\n"); exit(1); } /* use the highest profile */ for (i = 0; i < sizeof(profile_list) / sizeof(profile_list[0]); i++) { if ((hevc_profile != ~0) && hevc_profile != profile_list[i]) continue; hevc_profile = profile_list[i]; vaQueryConfigEntrypoints(va_dpy, hevc_profile, entrypoints, &num_entrypoints); for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) { if (entrypoints[slice_entrypoint] == VAEntrypointEncSlice) { support_encode = 1; } else if (entrypoints[slice_entrypoint] == VAEntrypointEncSliceLP) { support_encode = 1; support_lpEntryPoint = 1; } } if (support_encode == 1) break; } if (support_encode == 0) { printf("Can't find VAEntrypointEncSlice for HEVC profiles\n"); exit(1); } else { switch (hevc_profile) { case VAProfileHEVCMain: hevc_profile = VAProfileHEVCMain; printf("Use profile VAProfileHEVCMain\n"); break; case VAProfileHEVCMain10: hevc_profile = VAProfileHEVCMain10; printf("Use profile VAProfileHEVCMain10\n"); break; default: printf("unknow profile. Set to Main"); hevc_profile = VAProfileHEVCMain; constraint_set_flag |= (1 << 0 | 1 << 1); /* Annex A.2.1 & A.2.2 */ ip_period = 1; break; } } /* find out the format for the render target, and rate control mode */ for (i = 0; i < VAConfigAttribTypeMax; i++) attrib[i].type = i; if (lowpower) { LCU_SIZE = 64; if (support_lpEntryPoint == 1) { entryPoint = VAEntrypointEncSliceLP; } } va_status = vaGetConfigAttributes(va_dpy, hevc_profile, entryPoint, &attrib[0], VAConfigAttribTypeMax); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); /* check the interested configattrib */ if ((attrib[VAConfigAttribRTFormat].value & VA_RT_FORMAT_YUV420) == 0) { printf("Not find desired YUV420 RT format\n"); exit(1); } else { config_attrib[config_attrib_num].type = VAConfigAttribRTFormat; config_attrib[config_attrib_num].value = VA_RT_FORMAT_YUV420; config_attrib_num++; } if (attrib[VAConfigAttribRateControl].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribRateControl].value; printf("Support rate control mode (0x%x):", tmp); if (tmp & VA_RC_NONE) printf("NONE "); if (tmp & VA_RC_CBR) printf("CBR "); if (tmp & VA_RC_VBR) printf("VBR "); if (tmp & VA_RC_VCM) printf("VCM "); if (tmp & VA_RC_CQP) printf("CQP "); if (tmp & VA_RC_VBR_CONSTRAINED) printf("VBR_CONSTRAINED "); printf("\n"); if (rc_mode == -1 || !(rc_mode & tmp)) { if (rc_mode != -1) { printf("Warning: Don't support the specified RateControl mode: %s!!!, switch to ", rc_to_string(rc_mode)); } for (i = 0; i < sizeof(rc_default_modes) / sizeof(rc_default_modes[0]); i++) { if (rc_default_modes[i] & tmp) { rc_mode = rc_default_modes[i]; break; } } printf("RateControl mode: %s\n", rc_to_string(rc_mode)); } config_attrib[config_attrib_num].type = VAConfigAttribRateControl; config_attrib[config_attrib_num].value = rc_mode; config_attrib_num++; } if (attrib[VAConfigAttribEncPackedHeaders].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribEncPackedHeaders].value; printf("Support VAConfigAttribEncPackedHeaders\n"); hevc_packedheader = 1; config_attrib[config_attrib_num].type = VAConfigAttribEncPackedHeaders; config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE; if (tmp & VA_ENC_PACKED_HEADER_SEQUENCE) { printf("Support packed sequence headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SEQUENCE; } if (tmp & VA_ENC_PACKED_HEADER_PICTURE) { printf("Support packed picture headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_PICTURE; } if (tmp & VA_ENC_PACKED_HEADER_SLICE) { printf("Support packed slice headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_SLICE; } if (tmp & VA_ENC_PACKED_HEADER_MISC) { printf("Support packed misc headers\n"); config_attrib[config_attrib_num].value |= VA_ENC_PACKED_HEADER_MISC; } enc_packed_header_idx = config_attrib_num; config_attrib_num++; } if (attrib[VAConfigAttribEncInterlaced].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribEncInterlaced].value; printf("Support VAConfigAttribEncInterlaced\n"); if (tmp & VA_ENC_INTERLACED_FRAME) printf("support VA_ENC_INTERLACED_FRAME\n"); if (tmp & VA_ENC_INTERLACED_FIELD) printf("Support VA_ENC_INTERLACED_FIELD\n"); if (tmp & VA_ENC_INTERLACED_MBAFF) printf("Support VA_ENC_INTERLACED_MBAFF\n"); if (tmp & VA_ENC_INTERLACED_PAFF) printf("Support VA_ENC_INTERLACED_PAFF\n"); config_attrib[config_attrib_num].type = VAConfigAttribEncInterlaced; config_attrib[config_attrib_num].value = VA_ENC_PACKED_HEADER_NONE; config_attrib_num++; } if (attrib[VAConfigAttribEncMaxRefFrames].value != VA_ATTRIB_NOT_SUPPORTED) { hevc_maxref = attrib[VAConfigAttribEncMaxRefFrames].value; printf("Support %d RefPicList0 and %d RefPicList1\n", hevc_maxref & 0xffff, (hevc_maxref >> 16) & 0xffff); } if (attrib[VAConfigAttribEncMaxSlices].value != VA_ATTRIB_NOT_SUPPORTED) printf("Support %d slices\n", attrib[VAConfigAttribEncMaxSlices].value); if (attrib[VAConfigAttribEncSliceStructure].value != VA_ATTRIB_NOT_SUPPORTED) { int tmp = attrib[VAConfigAttribEncSliceStructure].value; printf("Support VAConfigAttribEncSliceStructure\n"); if (tmp & VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS) printf("Support VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS\n"); if (tmp & VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS) printf("Support VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS\n"); if (tmp & VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS) printf("Support VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS\n"); } if (attrib[VAConfigAttribEncMacroblockInfo].value != VA_ATTRIB_NOT_SUPPORTED) { printf("Support VAConfigAttribEncMacroblockInfo\n"); } if (attrib[VAConfigAttribEncHEVCBlockSizes].value != VA_ATTRIB_NOT_SUPPORTED) { printf("Support VAConfigAttribEncHEVCBlockSizes\n"); uint32_t tmp = attrib[VAConfigAttribEncHEVCBlockSizes].value; VAConfigAttribValEncHEVCBlockSizes bs = { .value = tmp }; block_sizes.log2_max_coding_tree_block_size_minus3 = bs.bits.log2_max_coding_tree_block_size_minus3; block_sizes.log2_min_coding_tree_block_size_minus3 = bs.bits.log2_min_coding_tree_block_size_minus3; block_sizes.log2_min_luma_coding_block_size_minus3 = bs.bits.log2_min_luma_coding_block_size_minus3; block_sizes.log2_max_luma_transform_block_size_minus2 = bs.bits.log2_max_luma_transform_block_size_minus2; block_sizes.log2_min_luma_transform_block_size_minus2 = bs.bits.log2_min_luma_transform_block_size_minus2; block_sizes.log2_max_pcm_coding_block_size_minus3 = bs.bits.log2_max_pcm_coding_block_size_minus3; block_sizes.log2_min_pcm_coding_block_size_minus3 = bs.bits.log2_min_pcm_coding_block_size_minus3; block_sizes.max_max_transform_hierarchy_depth_inter = bs.bits.max_max_transform_hierarchy_depth_inter; block_sizes.min_max_transform_hierarchy_depth_inter = bs.bits.min_max_transform_hierarchy_depth_inter; block_sizes.max_max_transform_hierarchy_depth_intra = bs.bits.max_max_transform_hierarchy_depth_intra; block_sizes.min_max_transform_hierarchy_depth_intra = bs.bits.min_max_transform_hierarchy_depth_intra; use_block_sizes = 1; config_attrib[config_attrib_num].type = VAConfigAttribEncHEVCBlockSizes; config_attrib[config_attrib_num].value = tmp; config_attrib_num++; } if (attrib[VAConfigAttribEncHEVCFeatures].value != VA_ATTRIB_NOT_SUPPORTED) { printf("Support VAConfigAttribEncHEVCFeatures\n"); uint32_t tmp = attrib[VAConfigAttribEncHEVCFeatures].value; VAConfigAttribValEncHEVCFeatures f = { .value = tmp }; features.amp = f.bits.amp; features.constrained_intra_pred = f.bits.constrained_intra_pred; features.cu_qp_delta = f.bits.cu_qp_delta; features.deblocking_filter_disable = f.bits.deblocking_filter_disable; features.dependent_slices = f.bits.dependent_slices; features.pcm = f.bits.pcm; features.sao = f.bits.sao; features.scaling_lists = f.bits.scaling_lists; features.separate_colour_planes = f.bits.separate_colour_planes; features.sign_data_hiding = f.bits.sign_data_hiding; features.strong_intra_smoothing = f.bits.strong_intra_smoothing; features.temporal_mvp = f.bits.temporal_mvp; features.transform_skip = f.bits.transform_skip; features.transquant_bypass = f.bits.transquant_bypass; features.weighted_prediction = f.bits.weighted_prediction; use_features = 1; config_attrib[config_attrib_num].type = VAConfigAttribEncHEVCFeatures; config_attrib[config_attrib_num].value = attrib[VAConfigAttribEncHEVCFeatures].value; config_attrib_num++; } free(entrypoints); return 0; } static int setup_encode() { VAStatus va_status; VASurfaceID *tmp_surfaceid; int codedbuf_size, i; va_status = vaCreateConfig(va_dpy, hevc_profile, entryPoint, &config_attrib[0], config_attrib_num, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); /* create source surfaces */ va_status = vaCreateSurfaces(va_dpy, VA_RT_FORMAT_YUV420, frame_width_aligned, frame_height_aligned, &src_surface[0], SURFACE_NUM, NULL, 0); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); /* create reference surfaces */ va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, frame_width_aligned, frame_height_aligned, &ref_surface[0], SURFACE_NUM, NULL, 0 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); tmp_surfaceid = calloc(2 * SURFACE_NUM, sizeof(VASurfaceID)); if (tmp_surfaceid) { memcpy(tmp_surfaceid, src_surface, SURFACE_NUM * sizeof(VASurfaceID)); memcpy(tmp_surfaceid + SURFACE_NUM, ref_surface, SURFACE_NUM * sizeof(VASurfaceID)); } /* Create a context for this encode pipe */ va_status = vaCreateContext(va_dpy, config_id, frame_width_aligned, frame_height_aligned, VA_PROGRESSIVE, tmp_surfaceid, 2 * SURFACE_NUM, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); free(tmp_surfaceid); codedbuf_size = ((long long int) frame_width_aligned * frame_height_aligned * 400) / (16 * 16); for (i = 0; i < SURFACE_NUM; i++) { /* create coded buffer once for all * other VA buffers which won't be used again after vaRenderPicture. * so APP can always vaCreateBuffer for every frame * but coded buffer need to be mapped and accessed after vaRenderPicture/vaEndPicture * so VA won't maintain the coded buffer */ va_status = vaCreateBuffer(va_dpy, context_id, VAEncCodedBufferType, codedbuf_size, 1, NULL, &coded_buf[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } return 0; } #define partition(ref, field, key, ascending) \ while (i <= j) { \ if (ascending) { \ while (ref[i].field < key) \ i++; \ while (ref[j].field > key) \ j--; \ } else { \ while (ref[i].field > key) \ i++; \ while (ref[j].field < key) \ j--; \ } \ if (i <= j) { \ tmp = ref[i]; \ ref[i] = ref[j]; \ ref[j] = tmp; \ i++; \ j--; \ } \ } \ static void sort_one(VAPictureHEVC ref[], int left, int right, int ascending) { VAPictureHEVC tmp; int i = left, j = right; unsigned int key = ref[(left + right) / 2].pic_order_cnt; partition(ref, pic_order_cnt, (signed int)key, ascending); /* recursion */ if (left < j) sort_one(ref, left, j, ascending); if (i < right) sort_one(ref, i, right, ascending); } static void sort_two(VAPictureHEVC ref[], int left, int right, unsigned int key, int partition_ascending, int list0_ascending, int list1_ascending) { VAPictureHEVC tmp; int i = left, j = right; partition(ref, pic_order_cnt, (signed int)key, partition_ascending); sort_one(ref, left, i - 1, list0_ascending); sort_one(ref, j + 1, right, list1_ascending); } static int update_ReferenceFrames(void) { int i; if (current_frame_type == FRAME_B) return 0; numShortTerm++; if (numShortTerm > num_ref_frames) numShortTerm = num_ref_frames; for (i = numShortTerm - 1; i > 0; i--) ReferenceFrames[i] = ReferenceFrames[i - 1]; ReferenceFrames[0] = CurrentCurrPic; return 0; } static int update_RefPicList(void) { unsigned int current_poc = CurrentCurrPic.pic_order_cnt; if (current_frame_type == FRAME_P) { memcpy(RefPicList0_P, ReferenceFrames, numShortTerm * sizeof(VAPictureHEVC)); sort_one(RefPicList0_P, 0, numShortTerm - 1, 0); } if (current_frame_type == FRAME_B) { memcpy(RefPicList0_B, ReferenceFrames, numShortTerm * sizeof(VAPictureHEVC)); sort_two(RefPicList0_B, 0, numShortTerm - 1, current_poc, 1, 0, 1); memcpy(RefPicList1_B, ReferenceFrames, numShortTerm * sizeof(VAPictureHEVC)); sort_two(RefPicList1_B, 0, numShortTerm - 1, current_poc, 0, 1, 0); } return 0; } static int render_sequence(struct SeqParamSet *sps) { VABufferID seq_param_buf = VA_INVALID_ID; VABufferID rc_param_buf = VA_INVALID_ID; VABufferID misc_param_tmpbuf = VA_INVALID_ID; VABufferID render_id[2] = {VA_INVALID_ID}; VAStatus va_status; VAEncMiscParameterBuffer *misc_param, *misc_param_tmp; VAEncMiscParameterRateControl *misc_rate_ctrl; seq_param.general_profile_idc = sps->ptps.general_profile_idc; seq_param.general_level_idc = sps->ptps.general_level_idc; seq_param.general_tier_flag = (uint8_t)(sps->ptps.general_tier_flag); seq_param.intra_period = intra_period; seq_param.intra_idr_period = intra_idr_period; seq_param.ip_period = ip_period; seq_param.bits_per_second = frame_bitrate; seq_param.pic_width_in_luma_samples = sps->pic_width_in_luma_samples; seq_param.pic_height_in_luma_samples = sps->pic_height_in_luma_samples; seq_param.seq_fields.bits.chroma_format_idc = 1; seq_param.seq_fields.bits.separate_colour_plane_flag = 0; seq_param.seq_fields.bits.bit_depth_luma_minus8 = sps->bit_depth_luma_minus8; seq_param.seq_fields.bits.bit_depth_chroma_minus8 = sps->bit_depth_chroma_minus8; seq_param.seq_fields.bits.scaling_list_enabled_flag = sps->scaling_list_enabled_flag; seq_param.seq_fields.bits.strong_intra_smoothing_enabled_flag = sps->strong_intra_smoothing_enabled_flag; seq_param.seq_fields.bits.amp_enabled_flag = sps->amp_enabled_flag; seq_param.seq_fields.bits.sample_adaptive_offset_enabled_flag = sps->sample_adaptive_offset_enabled_flag; seq_param.seq_fields.bits.pcm_enabled_flag = sps->pcm_enabled_flag; seq_param.seq_fields.bits.pcm_loop_filter_disabled_flag = sps->pcm_loop_filter_disabled_flag; seq_param.seq_fields.bits.sps_temporal_mvp_enabled_flag = sps->sps_temporal_mvp_enabled_flag; seq_param.log2_min_luma_coding_block_size_minus3 = sps->log2_min_luma_coding_block_size_minus3; seq_param.log2_diff_max_min_luma_coding_block_size = sps->log2_diff_max_min_luma_coding_block_size; seq_param.log2_min_transform_block_size_minus2 = sps->log2_min_luma_transform_block_size_minus2; seq_param.log2_diff_max_min_transform_block_size = sps->log2_diff_max_min_luma_transform_block_size; seq_param.max_transform_hierarchy_depth_inter = sps->max_transform_hierarchy_depth_inter; seq_param.max_transform_hierarchy_depth_intra = sps->max_transform_hierarchy_depth_intra; seq_param.vui_parameters_present_flag = sps->vui_parameters_present_flag; va_status = vaCreateBuffer(va_dpy, context_id, VAEncSequenceParameterBufferType, sizeof(seq_param), 1, &seq_param, &seq_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl), 1, NULL, &rc_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, rc_param_buf, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeRateControl; misc_rate_ctrl = (VAEncMiscParameterRateControl *)misc_param->data; memset(misc_rate_ctrl, 0, sizeof(*misc_rate_ctrl)); misc_rate_ctrl->bits_per_second = frame_bitrate; misc_rate_ctrl->target_percentage = 66; misc_rate_ctrl->window_size = 1000; misc_rate_ctrl->initial_qp = initial_qp; misc_rate_ctrl->min_qp = minimal_qp; misc_rate_ctrl->basic_unit_size = 0; vaUnmapBuffer(va_dpy, rc_param_buf); render_id[0] = seq_param_buf; render_id[1] = rc_param_buf; va_status = vaRenderPicture(va_dpy, context_id, &render_id[0], 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); if (seq_param_buf != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, seq_param_buf); seq_param_buf = VA_INVALID_ID; } if (rc_param_buf != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, rc_param_buf); rc_param_buf = VA_INVALID_ID; } if (misc_priv_type != 0) { va_status = vaCreateBuffer(va_dpy, context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer), 1, NULL, &misc_param_tmpbuf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, misc_param_tmpbuf, (void **)&misc_param_tmp); misc_param_tmp->type = misc_priv_type; misc_param_tmp->data[0] = misc_priv_value; vaUnmapBuffer(va_dpy, misc_param_tmpbuf); va_status = vaRenderPicture(va_dpy, context_id, &misc_param_tmpbuf, 1); } return 0; } static int render_picture(struct PicParamSet *pps) { VABufferID pic_param_buf = VA_INVALID_ID; VAStatus va_status; int i = 0; memcpy(pic_param.reference_frames, ReferenceFrames, numShortTerm * sizeof(VAPictureHEVC)); for (i = numShortTerm; i < SURFACE_NUM - 1; i++) { pic_param.reference_frames[i].picture_id = VA_INVALID_SURFACE; pic_param.reference_frames[i].flags = VA_PICTURE_HEVC_INVALID; } pic_param.last_picture = 0; pic_param.last_picture |= ((current_frame_encoding + 1) % intra_period == 0) ? HEVC_LAST_PICTURE_EOSEQ : 0; pic_param.last_picture |= ((current_frame_encoding + 1) == frame_count) ? HEVC_LAST_PICTURE_EOSTREAM : 0; pic_param.coded_buf = coded_buf[current_slot]; pic_param.decoded_curr_pic.picture_id = ref_surface[current_slot]; pic_param.decoded_curr_pic.pic_order_cnt = calc_poc((current_frame_display - current_IDR_display) % MaxPicOrderCntLsb) * 2; pic_param.decoded_curr_pic.flags = 0; CurrentCurrPic = pic_param.decoded_curr_pic; pic_param.collocated_ref_pic_index = pps->num_ref_idx_l0_default_active_minus1; pic_param.pic_init_qp = pps->init_qp_minus26 + 26; pic_param.diff_cu_qp_delta_depth = pps->diff_cu_qp_delta_depth; pic_param.pps_cb_qp_offset = pps->pps_cb_qp_offset; pic_param.pps_cr_qp_offset = pps->pps_cr_qp_offset; pic_param.num_tile_columns_minus1 = pps->num_tile_columns_minus1; pic_param.num_tile_rows_minus1 = pps->num_tile_rows_minus1; for (i = 0; i <= (unsigned int)(pic_param.num_tile_columns_minus1); i++) { pic_param.column_width_minus1[i] = 0; } for (i = 0; i <= (unsigned int)(pic_param.num_tile_rows_minus1); i++) { pic_param.row_height_minus1[i] = 0; } pic_param.log2_parallel_merge_level_minus2 = pps->log2_parallel_merge_level_minus2; pic_param.ctu_max_bitsize_allowed = 0; pic_param.num_ref_idx_l0_default_active_minus1 = pps->num_ref_idx_l0_default_active_minus1; pic_param.num_ref_idx_l1_default_active_minus1 = pps->num_ref_idx_l1_default_active_minus1; pic_param.slice_pic_parameter_set_id = 0; pic_param.pic_fields.bits.idr_pic_flag = (current_frame_type == FRAME_IDR); pic_param.pic_fields.bits.coding_type = current_frame_type == FRAME_IDR ? FRAME_I : current_frame_type; pic_param.pic_fields.bits.reference_pic_flag = current_frame_type != FRAME_B ? 1 : 0; pic_param.pic_fields.bits.dependent_slice_segments_enabled_flag = pps->dependent_slice_segments_enabled_flag; pic_param.pic_fields.bits.sign_data_hiding_enabled_flag = pps->sign_data_hiding_enabled_flag; pic_param.pic_fields.bits.constrained_intra_pred_flag = pps->constrained_intra_pred_flag; pic_param.pic_fields.bits.transform_skip_enabled_flag = pps->transform_skip_enabled_flag; pic_param.pic_fields.bits.cu_qp_delta_enabled_flag = pps->cu_qp_delta_enabled_flag; pic_param.pic_fields.bits.weighted_pred_flag = pps->weighted_pred_flag; pic_param.pic_fields.bits.weighted_bipred_flag = pps->weighted_bipred_flag; pic_param.pic_fields.bits.transquant_bypass_enabled_flag = pps->transquant_bypass_enabled_flag; pic_param.pic_fields.bits.tiles_enabled_flag = pps->tiles_enabled_flag; pic_param.pic_fields.bits.entropy_coding_sync_enabled_flag = pps->entropy_coding_sync_enabled_flag; pic_param.pic_fields.bits.loop_filter_across_tiles_enabled_flag = pps->loop_filter_across_tiles_enabled_flag; pic_param.pic_fields.bits.pps_loop_filter_across_slices_enabled_flag = pps->pps_loop_filter_across_slices_enabled_flag; pic_param.pic_fields.bits.scaling_list_data_present_flag = pps->pps_scaling_list_data_present_flag; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPictureParameterBufferType, sizeof(pic_param), 1, &pic_param, &pic_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer");; va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); if (pic_param_buf != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, pic_param_buf); pic_param_buf = VA_INVALID_ID; } return 0; } static int render_packedvideo(void) { VAEncPackedHeaderParameterBuffer packedheader_param_buffer; VABufferID packedvideo_para_bufid = VA_INVALID_ID; VABufferID packedvideo_data_bufid = VA_INVALID_ID; VABufferID render_id[2] = {VA_INVALID_ID}; unsigned int length_in_bits; unsigned char *packedvideo_buffer = NULL; VAStatus va_status; length_in_bits = build_packed_video_buffer(&packedvideo_buffer); packedheader_param_buffer.type = VAEncPackedHeaderSequence; packedheader_param_buffer.bit_length = length_in_bits; /*length_in_bits*/ packedheader_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer, &packedvideo_para_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packedvideo_buffer, &packedvideo_data_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); render_id[0] = packedvideo_para_bufid; render_id[1] = packedvideo_data_bufid; va_status = vaRenderPicture(va_dpy, context_id, render_id, 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); free(packedvideo_buffer); if (packedvideo_para_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packedvideo_para_bufid); packedvideo_para_bufid = VA_INVALID_ID; } if (packedvideo_data_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packedvideo_data_bufid); packedvideo_data_bufid = VA_INVALID_ID; } return 0; } static int render_packedsequence(void) { VAEncPackedHeaderParameterBuffer packedheader_param_buffer; VABufferID packedseq_para_bufid = VA_INVALID_ID; VABufferID packedseq_data_bufid = VA_INVALID_ID; VABufferID render_id[2] = {VA_INVALID_ID}; unsigned int length_in_bits; unsigned char *packedseq_buffer = NULL; VAStatus va_status; length_in_bits = build_packed_seq_buffer(&packedseq_buffer); packedheader_param_buffer.type = VAEncPackedHeaderSequence; packedheader_param_buffer.bit_length = length_in_bits; /*length_in_bits*/ packedheader_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer, &packedseq_para_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packedseq_buffer, &packedseq_data_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); render_id[0] = packedseq_para_bufid; render_id[1] = packedseq_data_bufid; va_status = vaRenderPicture(va_dpy, context_id, render_id, 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); free(packedseq_buffer); if (packedseq_para_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packedseq_para_bufid); packedseq_para_bufid = VA_INVALID_ID; } if (packedseq_data_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packedseq_data_bufid); packedseq_para_bufid = VA_INVALID_ID; } return 0; } static int render_packedpicture(void) { VAEncPackedHeaderParameterBuffer packedheader_param_buffer; VABufferID packedpic_para_bufid = VA_INVALID_ID; VABufferID packedpic_data_bufid = VA_INVALID_ID; VABufferID render_id[2] = {VA_INVALID_ID}; unsigned int length_in_bits; unsigned char *packedpic_buffer = NULL; VAStatus va_status; length_in_bits = build_packed_pic_buffer(&packedpic_buffer); packedheader_param_buffer.type = VAEncPackedHeaderPicture; packedheader_param_buffer.bit_length = length_in_bits; packedheader_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer, &packedpic_para_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packedpic_buffer, &packedpic_data_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); render_id[0] = packedpic_para_bufid; render_id[1] = packedpic_data_bufid; va_status = vaRenderPicture(va_dpy, context_id, render_id, 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); free(packedpic_buffer); if (packedpic_para_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packedpic_para_bufid); packedpic_para_bufid = VA_INVALID_ID; } if (packedpic_data_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packedpic_data_bufid); packedpic_data_bufid = VA_INVALID_ID; } return 0; } static void render_packedslice() { VAEncPackedHeaderParameterBuffer packedheader_param_buffer; VABufferID packedslice_para_bufid = VA_INVALID_ID; VABufferID packedslice_data_bufid = VA_INVALID_ID; VABufferID render_id[2] = {VA_INVALID_ID}; unsigned int length_in_bits; unsigned char *packedslice_buffer = NULL; VAStatus va_status; length_in_bits = build_packed_slice_buffer(&packedslice_buffer); packedheader_param_buffer.type = VAEncPackedHeaderSlice; packedheader_param_buffer.bit_length = length_in_bits; packedheader_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packedheader_param_buffer), 1, &packedheader_param_buffer, &packedslice_para_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packedslice_buffer, &packedslice_data_bufid); CHECK_VASTATUS(va_status, "vaCreateBuffer"); render_id[0] = packedslice_para_bufid; render_id[1] = packedslice_data_bufid; va_status = vaRenderPicture(va_dpy, context_id, render_id, 2); CHECK_VASTATUS(va_status, "vaRenderPicture"); free(packedslice_buffer); if (packedslice_para_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packedslice_para_bufid); packedslice_para_bufid = VA_INVALID_ID; } if (packedslice_data_bufid != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, packedslice_data_bufid); packedslice_para_bufid = VA_INVALID_ID; } } static int render_slice(void) { VABufferID slice_param_buf = VA_INVALID_ID; VAStatus va_status; memset(&slice_param, 0x00, sizeof(VAEncSliceParameterBufferHEVC)); update_RefPicList(); slice_param.slice_segment_address = 0; slice_param.num_ctu_in_slice = ssh.picture_width_in_ctus * ssh.picture_height_in_ctus; slice_param.slice_type = ssh.slice_type; slice_param.slice_pic_parameter_set_id = ssh.slice_pic_parameter_set_id; // right??? slice_param.num_ref_idx_l0_active_minus1 = ssh.num_ref_idx_l0_active_minus1; slice_param.num_ref_idx_l1_active_minus1 = ssh.num_ref_idx_l1_active_minus1; memset(slice_param.ref_pic_list0, 0xff, sizeof(slice_param.ref_pic_list0)); memset(slice_param.ref_pic_list1, 0xff, sizeof(slice_param.ref_pic_list1)); if (current_frame_type == FRAME_P) { memcpy(slice_param.ref_pic_list0, RefPicList0_P, sizeof(VAPictureHEVC)); if (p2b) { memcpy(slice_param.ref_pic_list1, RefPicList0_P, sizeof(VAPictureHEVC)); } } else if (current_frame_type == FRAME_B) { memcpy(slice_param.ref_pic_list0, RefPicList0_B, sizeof(VAPictureHEVC)); memcpy(slice_param.ref_pic_list1, RefPicList1_B, sizeof(VAPictureHEVC)); } slice_param.luma_log2_weight_denom = 0; slice_param.delta_chroma_log2_weight_denom = 0; slice_param.max_num_merge_cand = 5 - ssh.five_minus_max_num_merge_cand; slice_param.slice_qp_delta = ssh.slice_qp_delta; slice_param.slice_cb_qp_offset = 0; slice_param.slice_cr_qp_offset = 0; slice_param.slice_beta_offset_div2 = ssh.beta_offset_div2; slice_param.slice_tc_offset_div2 = ssh.tc_offset_div2; slice_param.slice_fields.bits.dependent_slice_segment_flag = 0; slice_param.slice_fields.bits.colour_plane_id = ssh.colour_plane_id; slice_param.slice_fields.bits.slice_temporal_mvp_enabled_flag = ssh.slice_temporal_mvp_enabled_flag; slice_param.slice_fields.bits.slice_sao_luma_flag = ssh.slice_sao_luma_flag; slice_param.slice_fields.bits.slice_sao_chroma_flag = ssh.slice_sao_luma_flag; slice_param.slice_fields.bits.num_ref_idx_active_override_flag = ssh.num_ref_idx_active_override_flag; slice_param.slice_fields.bits.mvd_l1_zero_flag = 0; slice_param.slice_fields.bits.cabac_init_flag = 0; slice_param.slice_fields.bits.slice_deblocking_filter_disabled_flag = ssh.disable_deblocking_filter_flag; slice_param.slice_fields.bits.slice_loop_filter_across_slices_enabled_flag = ssh.slice_loop_filter_across_slices_enabled_flag; slice_param.slice_fields.bits.collocated_from_l0_flag = ssh.collocated_from_l0_flag; if (hevc_packedheader && config_attrib[enc_packed_header_idx].value & VA_ENC_PACKED_HEADER_SLICE) render_packedslice(); va_status = vaCreateBuffer(va_dpy, context_id, VAEncSliceParameterBufferType, sizeof(slice_param), 1, &slice_param, &slice_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer");; va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); if (slice_param_buf != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, slice_param_buf); slice_param_buf = VA_INVALID_ID; } return 0; } static int upload_source_YUV_once_for_all() { int box_width = 8; int row_shift = 0; int i; for (i = 0; i < SURFACE_NUM; i++) { printf("\rLoading data into surface %d.....", i); upload_surface(va_dpy, src_surface[i], box_width, row_shift, 0); row_shift++; if (row_shift == (2 * box_width)) row_shift = 0; } printf("Complete surface loading\n"); return 0; } static int load_surface(VASurfaceID surface_id, unsigned long long display_order) { unsigned char *srcyuv_ptr = NULL, *src_Y = NULL, *src_U = NULL, *src_V = NULL; unsigned long long frame_start, mmap_start; char *mmap_ptr = NULL; int frame_size, mmap_size; if (srcyuv_fp == NULL) return 0; /* allow encoding more than srcyuv_frames */ display_order = display_order % srcyuv_frames; frame_size = frame_width * frame_height * 3 / 2; /* for YUV420 */ frame_start = display_order * frame_size; mmap_start = frame_start & (~0xfff); mmap_size = (frame_size + (frame_start & 0xfff) + 0xfff) & (~0xfff); mmap_ptr = mmap(0, mmap_size, PROT_READ, MAP_SHARED, fileno(srcyuv_fp), mmap_start); if (mmap_ptr == MAP_FAILED) { printf("Failed to mmap YUV file (%s)\n", strerror(errno)); return 1; } srcyuv_ptr = (unsigned char *)mmap_ptr + (frame_start & 0xfff); if (srcyuv_fourcc == VA_FOURCC_NV12) { src_Y = srcyuv_ptr; src_U = src_Y + frame_width * frame_height; src_V = NULL; } else if (srcyuv_fourcc == VA_FOURCC_IYUV || srcyuv_fourcc == VA_FOURCC_YV12) { src_Y = srcyuv_ptr; if (srcyuv_fourcc == VA_FOURCC_IYUV) { src_U = src_Y + frame_width * frame_height; src_V = src_U + (frame_width / 2) * (frame_height / 2); } else { /* YV12 */ src_V = src_Y + frame_width * frame_height; src_U = src_V + (frame_width / 2) * (frame_height / 2); } } else { printf("Unsupported source YUV format\n"); exit(1); } upload_surface_yuv(va_dpy, surface_id, srcyuv_fourcc, frame_width, frame_height, src_Y, src_U, src_V); if (mmap_ptr) munmap(mmap_ptr, mmap_size); return 0; } static int save_recyuv(VASurfaceID surface_id, unsigned long long display_order, unsigned long long encode_order) { unsigned char *dst_Y = NULL, *dst_U = NULL, *dst_V = NULL; if (recyuv_fp == NULL) return 0; if (srcyuv_fourcc == VA_FOURCC_NV12) { int uv_size = 2 * (frame_width / 2) * (frame_height / 2); dst_Y = malloc(2 * uv_size); if (dst_Y == NULL) { printf("Failed to allocate memory for dst_Y\n"); exit(1); } dst_U = malloc(uv_size); if (dst_U == NULL) { printf("Failed to allocate memory for dst_U\n"); free(dst_Y); exit(1); } memset(dst_Y, 0, 2 * uv_size); memset(dst_U, 0, uv_size); } else if (srcyuv_fourcc == VA_FOURCC_IYUV || srcyuv_fourcc == VA_FOURCC_YV12) { int uv_size = (frame_width / 2) * (frame_height / 2); dst_Y = malloc(4 * uv_size); if (dst_Y == NULL) { printf("Failed to allocate memory for dst_Y\n"); exit(1); } dst_U = malloc(uv_size); if (dst_U == NULL) { printf("Failed to allocate memory for dst_U\n"); free(dst_Y); exit(1); } dst_V = malloc(uv_size); if (dst_V == NULL) { printf("Failed to allocate memory for dst_V\n"); free(dst_Y); free(dst_U); exit(1); } memset(dst_Y, 0, 4 * uv_size); memset(dst_U, 0, uv_size); memset(dst_V, 0, uv_size); } else { printf("Unsupported source YUV format\n"); exit(1); } download_surface_yuv(va_dpy, surface_id, srcyuv_fourcc, frame_width, frame_height, dst_Y, dst_U, dst_V); fseek(recyuv_fp, display_order * frame_width * frame_height * 1.5, SEEK_SET); if (srcyuv_fourcc == VA_FOURCC_NV12) { int uv_size = 2 * (frame_width / 2) * (frame_height / 2); fwrite(dst_Y, uv_size * 2, 1, recyuv_fp); fwrite(dst_U, uv_size, 1, recyuv_fp); } else if (srcyuv_fourcc == VA_FOURCC_IYUV || srcyuv_fourcc == VA_FOURCC_YV12) { int uv_size = (frame_width / 2) * (frame_height / 2); fwrite(dst_Y, uv_size * 4, 1, recyuv_fp); if (srcyuv_fourcc == VA_FOURCC_IYUV) { fwrite(dst_U, uv_size, 1, recyuv_fp); fwrite(dst_V, uv_size, 1, recyuv_fp); } else { fwrite(dst_V, uv_size, 1, recyuv_fp); fwrite(dst_U, uv_size, 1, recyuv_fp); } } if (dst_Y) free(dst_Y); if (dst_U) free(dst_U); if (dst_V) free(dst_V); fflush(recyuv_fp); return 0; } static int save_codeddata(unsigned long long display_order, unsigned long long encode_order) { VACodedBufferSegment *buf_list = NULL; VAStatus va_status; unsigned int coded_size = 0; va_status = vaMapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM], (void **)(&buf_list)); CHECK_VASTATUS(va_status, "vaMapBuffer"); while (buf_list != NULL) { coded_size += fwrite(buf_list->buf, 1, buf_list->size, coded_fp); buf_list = (VACodedBufferSegment *) buf_list->next; frame_size += coded_size; } vaUnmapBuffer(va_dpy, coded_buf[display_order % SURFACE_NUM]); printf("\n "); /* return back to startpoint */ switch (encode_order % 4) { case 0: printf("|"); break; case 1: printf("/"); break; case 2: printf("-"); break; case 3: printf("\\"); break; } printf("%08lld", encode_order); printf("(%06d bytes coded)\n", coded_size); fflush(coded_fp); return 0; } static struct storage_task_t * storage_task_dequeue(void) { struct storage_task_t *header; pthread_mutex_lock(&encode_mutex); header = storage_task_header; if (storage_task_header != NULL) { if (storage_task_tail == storage_task_header) storage_task_tail = NULL; storage_task_header = header->next; } pthread_mutex_unlock(&encode_mutex); return header; } static int storage_task_queue(unsigned long long display_order, unsigned long long encode_order) { struct storage_task_t *tmp; tmp = calloc(1, sizeof(struct storage_task_t)); if (tmp) { tmp->display_order = display_order; tmp->encode_order = encode_order; } pthread_mutex_lock(&encode_mutex); if (storage_task_header == NULL) { storage_task_header = tmp; storage_task_tail = tmp; } else { storage_task_tail->next = tmp; storage_task_tail = tmp; } srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_STORAGE; pthread_cond_signal(&encode_cond); pthread_mutex_unlock(&encode_mutex); return 0; } static void storage_task(unsigned long long display_order, unsigned long long encode_order) { unsigned int tmp; VAStatus va_status; tmp = GetTickCount(); va_status = vaSyncSurface(va_dpy, src_surface[display_order % SURFACE_NUM]); CHECK_VASTATUS(va_status, "vaSyncSurface"); SyncPictureTicks += GetTickCount() - tmp; tmp = GetTickCount(); save_codeddata(display_order, encode_order); SavePictureTicks += GetTickCount() - tmp; save_recyuv(ref_surface[display_order % SURFACE_NUM], display_order, encode_order); /* reload a new frame data */ tmp = GetTickCount(); if (srcyuv_fp != NULL) load_surface(src_surface[display_order % SURFACE_NUM], display_order + SURFACE_NUM); UploadPictureTicks += GetTickCount() - tmp; pthread_mutex_lock(&encode_mutex); srcsurface_status[display_order % SURFACE_NUM] = SRC_SURFACE_IN_ENCODING; pthread_mutex_unlock(&encode_mutex); } static void * storage_task_thread(void *t) { while (1) { struct storage_task_t *current; current = storage_task_dequeue(); if (current == NULL) { pthread_mutex_lock(&encode_mutex); pthread_cond_wait(&encode_cond, &encode_mutex); pthread_mutex_unlock(&encode_mutex); continue; } storage_task(current->display_order, current->encode_order); free(current); /* all frames are saved, exit the thread */ if (++frame_coded >= frame_count) break; } return 0; } static int encode_frames(void) { unsigned int i, tmp; VAStatus va_status; //VASurfaceStatus surface_status; /* upload RAW YUV data into all surfaces */ tmp = GetTickCount(); if (srcyuv_fp != NULL) { for (i = 0; i < SURFACE_NUM; i++) load_surface(src_surface[i], i); } else upload_source_YUV_once_for_all(); UploadPictureTicks += GetTickCount() - tmp; /* ready for encoding */ memset(srcsurface_status, SRC_SURFACE_IN_ENCODING, sizeof(srcsurface_status)); memset(&seq_param, 0, sizeof(seq_param)); memset(&pic_param, 0, sizeof(pic_param)); memset(&slice_param, 0, sizeof(slice_param)); if (encode_syncmode == 0) pthread_create(&encode_thread, NULL, storage_task_thread, NULL); for (current_frame_encoding = 0; current_frame_encoding < frame_count; current_frame_encoding++) { encoding2display_order(current_frame_encoding, intra_period, intra_idr_period, ip_period, ¤t_frame_display, ¤t_frame_type); if (current_frame_type == FRAME_IDR) { numShortTerm = 0; current_frame_num = 0; current_IDR_display = current_frame_display; } printf("%s : %lld %s : %lld type : %d\n", "encoding order", current_frame_encoding, "Display order", current_frame_display, current_frame_type); /* check if the source frame is ready */ while (srcsurface_status[current_slot] != SRC_SURFACE_IN_ENCODING) { usleep(1); } tmp = GetTickCount(); va_status = vaBeginPicture(va_dpy, context_id, src_surface[current_slot]); CHECK_VASTATUS(va_status, "vaBeginPicture"); BeginPictureTicks += GetTickCount() - tmp; fill_vps_header(&vps); fill_sps_header(&sps, 0); fill_pps_header(&pps, 0, 0); tmp = GetTickCount(); if (current_frame_type == FRAME_IDR) { render_sequence(&sps); render_packedvideo(); render_packedsequence(); } render_packedpicture(); render_picture(&pps); fill_slice_header(0, &pps, &ssh); render_slice(); RenderPictureTicks += GetTickCount() - tmp; tmp = GetTickCount(); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture");; EndPictureTicks += GetTickCount() - tmp; if (encode_syncmode) storage_task(current_frame_display, current_frame_encoding); else /* queue the storage task queue */ storage_task_queue(current_frame_display, current_frame_encoding); update_ReferenceFrames(); } if (encode_syncmode == 0) { int ret; pthread_join(encode_thread, (void **)&ret); } return 0; } static int release_encode() { int i; vaDestroySurfaces(va_dpy, &src_surface[0], SURFACE_NUM); vaDestroySurfaces(va_dpy, &ref_surface[0], SURFACE_NUM); for (i = 0; i < SURFACE_NUM; i++) vaDestroyBuffer(va_dpy, coded_buf[i]); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); return 0; } static int deinit_va() { vaTerminate(va_dpy); va_close_display(va_dpy); return 0; } static int print_input() { printf("\n\nINPUT:Try to encode HEVC...\n"); if (rc_mode != -1) printf("INPUT: RateControl : %s\n", rc_to_string(rc_mode)); printf("INPUT: Resolution : %dx%d, %d frames\n", frame_width, frame_height, frame_count); printf("INPUT: FrameRate : %d\n", frame_rate); printf("INPUT: Bitrate : %d\n", frame_bitrate); printf("INPUT: Slieces : %d\n", frame_slices); printf("INPUT: IntraPeriod : %d\n", intra_period); printf("INPUT: IDRPeriod : %d\n", intra_idr_period); printf("INPUT: IpPeriod : %d\n", ip_period); printf("INPUT: Initial QP : %d\n", initial_qp); printf("INPUT: Min QP : %d\n", minimal_qp); printf("INPUT: P As B : %d\n", p2b); printf("INPUT: lowpower : %d\n", lowpower); printf("INPUT: Source YUV : %s", srcyuv_fp ? "FILE" : "AUTO generated"); if (srcyuv_fp) printf(":%s (fourcc %s)\n", srcyuv_fn, fourcc_to_string(srcyuv_fourcc)); else printf("\n"); printf("INPUT: Coded Clip : %s\n", coded_fn); if (recyuv_fp == NULL) printf("INPUT: Rec Clip : %s\n", "Not save reconstructed frame"); else printf("INPUT: Rec Clip : Save reconstructed frame into %s (fourcc %s)\n", recyuv_fn, fourcc_to_string(srcyuv_fourcc)); printf("\n\n"); /* return back to startpoint */ return 0; } static int calc_PSNR(double *psnr) { char *srcyuv_ptr = NULL, *recyuv_ptr = NULL, tmp; unsigned long long min_size; unsigned long long i, sse = 0; double ssemean; int fourM = 0x400000; /* 4M */ min_size = MIN(srcyuv_frames, frame_count) * frame_width * frame_height * 1.5; for (i = 0; i < min_size; i++) { unsigned long long j = i % fourM; if ((i % fourM) == 0) { if (srcyuv_ptr) munmap(srcyuv_ptr, fourM); if (recyuv_ptr) munmap(recyuv_ptr, fourM); srcyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(srcyuv_fp), i); recyuv_ptr = mmap(0, fourM, PROT_READ, MAP_SHARED, fileno(recyuv_fp), i); if ((srcyuv_ptr == MAP_FAILED) || (recyuv_ptr == MAP_FAILED)) { if (srcyuv_ptr != MAP_FAILED) munmap(srcyuv_ptr, fourM); if (recyuv_ptr != MAP_FAILED) munmap(recyuv_ptr, fourM); printf("Failed to mmap YUV files\n"); return 1; } } tmp = srcyuv_ptr[j] - recyuv_ptr[j]; sse += tmp * tmp; } ssemean = (double)sse / (double)min_size; *psnr = 20.0 * log10(255) - 10.0 * log10(ssemean); if (srcyuv_ptr) munmap(srcyuv_ptr, fourM); if (recyuv_ptr) munmap(recyuv_ptr, fourM); return 0; } static int print_performance(unsigned int PictureCount) { unsigned int psnr_ret = 1, others = 0; double psnr = 0, total_size = frame_width * frame_height * 1.5 * frame_count; if (calc_psnr && srcyuv_fp && recyuv_fp) psnr_ret = calc_PSNR(&psnr); others = TotalTicks - UploadPictureTicks - BeginPictureTicks - RenderPictureTicks - EndPictureTicks - SyncPictureTicks - SavePictureTicks; printf("\n\n"); printf("PERFORMANCE: Frame Rate : %.2f fps (%d frames, %d ms (%.2f ms per frame))\n", (double) 1000 * PictureCount / TotalTicks, PictureCount, TotalTicks, ((double) TotalTicks) / (double) PictureCount); printf("PERFORMANCE: Compression ratio : %d:1\n", (unsigned int)(total_size / frame_size)); if (psnr_ret == 0) printf("PERFORMANCE: PSNR : %.2f (%lld frames calculated)\n", psnr, MIN(frame_count, srcyuv_frames)); printf("PERFORMANCE: UploadPicture : %d ms (%.2f, %.2f%% percent)\n", (int) UploadPictureTicks, ((double) UploadPictureTicks) / (double) PictureCount, UploadPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaBeginPicture : %d ms (%.2f, %.2f%% percent)\n", (int) BeginPictureTicks, ((double) BeginPictureTicks) / (double) PictureCount, BeginPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaRenderHeader : %d ms (%.2f, %.2f%% percent)\n", (int) RenderPictureTicks, ((double) RenderPictureTicks) / (double) PictureCount, RenderPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaEndPicture : %d ms (%.2f, %.2f%% percent)\n", (int) EndPictureTicks, ((double) EndPictureTicks) / (double) PictureCount, EndPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: vaSyncSurface : %d ms (%.2f, %.2f%% percent)\n", (int) SyncPictureTicks, ((double) SyncPictureTicks) / (double) PictureCount, SyncPictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: SavePicture : %d ms (%.2f, %.2f%% percent)\n", (int) SavePictureTicks, ((double) SavePictureTicks) / (double) PictureCount, SavePictureTicks / (double) TotalTicks / 0.01); printf("PERFORMANCE: Others : %d ms (%.2f, %.2f%% percent)\n", (int) others, ((double) others) / (double) PictureCount, others / (double) TotalTicks / 0.01); if (encode_syncmode == 0) printf("(Multithread enabled, the timing is only for reference)\n"); return 0; } int main(int argc, char **argv) { unsigned int start; va_init_display_args(&argc, argv); process_cmdline(argc, argv); print_input(); start = GetTickCount(); init_va(); setup_encode(); encode_frames(); release_encode(); deinit_va(); TotalTicks += GetTickCount() - start; print_performance(frame_count); return 0; } ================================================ FILE: encode/jpegenc.c ================================================ /* * Copyright (c) 2014 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ /* * Simple JPEG encoder based on libVA. * * Usage: * ./jpegenc q * Currently supporting only I420/NV12/UYVY/YUY2/Y8 input file formats. * * NOTE: The intel-driver expects a packed header sent to it. So, the app is responsible to pack the header * and send to the driver through LibVA. This unit test also showcases how to send the header to the driver. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #include "jpegenc_utils.h" #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } void show_help() { printf("Usage: ./jpegenc q \n"); printf("Currently supporting only I420/NV12/UYVY/YUY2/Y8 input file formats.\n"); printf("Example: ./jpegenc 1024 768 input_file.yuv output.jpeg 0 50\n\n"); return; } void jpegenc_pic_param_init(VAEncPictureParameterBufferJPEG *pic_param, int width, int height, int quality, YUVComponentSpecs yuvComp) { assert(pic_param); pic_param->picture_width = width; pic_param->picture_height = height; pic_param->quality = quality; pic_param->pic_flags.bits.profile = 0; //Profile = Baseline pic_param->pic_flags.bits.progressive = 0; //Sequential encoding pic_param->pic_flags.bits.huffman = 1; //Uses Huffman coding pic_param->pic_flags.bits.interleaved = 0; //Input format is interleaved (YUV) pic_param->pic_flags.bits.differential = 0; //non-Differential Encoding pic_param->sample_bit_depth = 8; //only 8 bit sample depth is currently supported pic_param->num_scan = 1; pic_param->num_components = yuvComp.num_components; // Supporting only upto 3 components maximum //set component_id Ci and Tqi if (yuvComp.fourcc_val == VA_FOURCC_Y800) { pic_param->component_id[0] = 0; pic_param->quantiser_table_selector[0] = 0; } else { pic_param->component_id[0] = pic_param->quantiser_table_selector[0] = 0; pic_param->component_id[1] = pic_param->quantiser_table_selector[1] = 1; pic_param->component_id[2] = 2; pic_param->quantiser_table_selector[2] = 1; } pic_param->quality = quality; } void jpegenc_qmatrix_init(VAQMatrixBufferJPEG *quantization_param, YUVComponentSpecs yuvComp) { int i = 0; quantization_param->load_lum_quantiser_matrix = 1; //LibVA expects the QM in zigzag order for (i = 0; i < NUM_QUANT_ELEMENTS; i++) { quantization_param->lum_quantiser_matrix[i] = jpeg_luma_quant[jpeg_zigzag[i]]; } if (yuvComp.fourcc_val == VA_FOURCC_Y800) { quantization_param->load_chroma_quantiser_matrix = 0; } else { quantization_param->load_chroma_quantiser_matrix = 1; for (i = 0; i < NUM_QUANT_ELEMENTS; i++) { quantization_param->chroma_quantiser_matrix[i] = jpeg_chroma_quant[jpeg_zigzag[i]]; } } } void jpegenc_hufftable_init(VAHuffmanTableBufferJPEGBaseline *hufftable_param, YUVComponentSpecs yuvComp) { hufftable_param->load_huffman_table[0] = 1; //Load Luma Hufftable if (yuvComp.fourcc_val == VA_FOURCC_Y800) { hufftable_param->load_huffman_table[1] = 0; //Do not load Chroma Hufftable for Y8 } else { hufftable_param->load_huffman_table[1] = 1; //Load Chroma Hufftable for other formats } //Load Luma hufftable values //Load DC codes memcpy(hufftable_param->huffman_table[0].num_dc_codes, jpeg_hufftable_luma_dc + 1, 16); //Load DC Values memcpy(hufftable_param->huffman_table[0].dc_values, jpeg_hufftable_luma_dc + 17, 12); //Load AC codes memcpy(hufftable_param->huffman_table[0].num_ac_codes, jpeg_hufftable_luma_ac + 1, 16); //Load AC Values memcpy(hufftable_param->huffman_table[0].ac_values, jpeg_hufftable_luma_ac + 17, 162); memset(hufftable_param->huffman_table[0].pad, 0, 2); //Load Chroma hufftable values if needed if (yuvComp.fourcc_val != VA_FOURCC_Y800) { //Load DC codes memcpy(hufftable_param->huffman_table[1].num_dc_codes, jpeg_hufftable_chroma_dc + 1, 16); //Load DC Values memcpy(hufftable_param->huffman_table[1].dc_values, jpeg_hufftable_chroma_dc + 17, 12); //Load AC codes memcpy(hufftable_param->huffman_table[1].num_ac_codes, jpeg_hufftable_chroma_ac + 1, 16); //Load AC Values memcpy(hufftable_param->huffman_table[1].ac_values, jpeg_hufftable_chroma_ac + 17, 162); memset(hufftable_param->huffman_table[1].pad, 0, 2); } } void jpegenc_slice_param_init(VAEncSliceParameterBufferJPEG *slice_param, YUVComponentSpecs yuvComp) { slice_param->restart_interval = 0; slice_param->num_components = yuvComp.num_components; slice_param->components[0].component_selector = 1; slice_param->components[0].dc_table_selector = 0; slice_param->components[0].ac_table_selector = 0; if (yuvComp.num_components > 1) { slice_param->components[1].component_selector = 2; slice_param->components[1].dc_table_selector = 1; slice_param->components[1].ac_table_selector = 1; slice_param->components[2].component_selector = 3; slice_param->components[2].dc_table_selector = 1; slice_param->components[2].ac_table_selector = 1; } } void populate_quantdata(JPEGQuantSection *quantVal, int type) { uint8_t zigzag_qm[NUM_QUANT_ELEMENTS]; int i; quantVal->DQT = DQT; quantVal->Pq = 0; quantVal->Tq = type; if (type == 0) { for (i = 0; i < NUM_QUANT_ELEMENTS; i++) { zigzag_qm[i] = jpeg_luma_quant[jpeg_zigzag[i]]; } memcpy(quantVal->Qk, zigzag_qm, NUM_QUANT_ELEMENTS); } else { for (i = 0; i < NUM_QUANT_ELEMENTS; i++) { zigzag_qm[i] = jpeg_chroma_quant[jpeg_zigzag[i]]; } memcpy(quantVal->Qk, zigzag_qm, NUM_QUANT_ELEMENTS); } quantVal->Lq = 3 + NUM_QUANT_ELEMENTS; } void populate_frame_header(JPEGFrameHeader *frameHdr, YUVComponentSpecs yuvComp, int picture_width, int picture_height) { int i = 0; frameHdr->SOF = SOF0; frameHdr->Lf = 8 + (3 * yuvComp.num_components); //Size of FrameHeader in bytes without the Marker SOF frameHdr->P = 8; frameHdr->Y = picture_height; frameHdr->X = picture_width; frameHdr->Nf = yuvComp.num_components; for (i = 0; i < yuvComp.num_components; i++) { frameHdr->JPEGComponent[i].Ci = i + 1; if (i == 0) { frameHdr->JPEGComponent[i].Hi = yuvComp.y_h_subsample; frameHdr->JPEGComponent[i].Vi = yuvComp.y_v_subsample; frameHdr->JPEGComponent[i].Tqi = 0; } else { //Analyzing the sampling factors for U/V, they are 1 for all formats except for Y8. //So, it is okay to have the code below like this. For Y8, we wont reach this code. frameHdr->JPEGComponent[i].Hi = yuvComp.u_h_subsample; frameHdr->JPEGComponent[i].Vi = yuvComp.u_v_subsample; frameHdr->JPEGComponent[i].Tqi = 1; } } } void populate_huff_section_header(JPEGHuffSection *huffSectionHdr, int th, int tc) { int i = 0, totalCodeWords = 0; huffSectionHdr->DHT = DHT; huffSectionHdr->Tc = tc; huffSectionHdr->Th = th; if (th == 0) { //If Luma //If AC if (tc == 1) { memcpy(huffSectionHdr->Li, jpeg_hufftable_luma_ac + 1, NUM_AC_RUN_SIZE_BITS); memcpy(huffSectionHdr->Vij, jpeg_hufftable_luma_ac + 17, NUM_AC_CODE_WORDS_HUFFVAL); } //If DC if (tc == 0) { memcpy(huffSectionHdr->Li, jpeg_hufftable_luma_dc + 1, NUM_DC_RUN_SIZE_BITS); memcpy(huffSectionHdr->Vij, jpeg_hufftable_luma_dc + 17, NUM_DC_CODE_WORDS_HUFFVAL); } for (i = 0; i < NUM_AC_RUN_SIZE_BITS; i++) { totalCodeWords += huffSectionHdr->Li[i]; } huffSectionHdr->Lh = 3 + 16 + totalCodeWords; } else { //If Chroma //If AC if (tc == 1) { memcpy(huffSectionHdr->Li, jpeg_hufftable_chroma_ac + 1, NUM_AC_RUN_SIZE_BITS); memcpy(huffSectionHdr->Vij, jpeg_hufftable_chroma_ac + 17, NUM_AC_CODE_WORDS_HUFFVAL); } //If DC if (tc == 0) { memcpy(huffSectionHdr->Li, jpeg_hufftable_chroma_dc + 1, NUM_DC_RUN_SIZE_BITS); memcpy(huffSectionHdr->Vij, jpeg_hufftable_chroma_dc + 17, NUM_DC_CODE_WORDS_HUFFVAL); } } } void populate_scan_header(JPEGScanHeader *scanHdr, YUVComponentSpecs yuvComp) { scanHdr->SOS = SOS; scanHdr->Ns = yuvComp.num_components; //Y Component scanHdr->ScanComponent[0].Csj = 1; scanHdr->ScanComponent[0].Tdj = 0; scanHdr->ScanComponent[0].Taj = 0; if (yuvComp.num_components > 1) { //U Component scanHdr->ScanComponent[1].Csj = 2; scanHdr->ScanComponent[1].Tdj = 1; scanHdr->ScanComponent[1].Taj = 1; //V Component scanHdr->ScanComponent[2].Csj = 3; scanHdr->ScanComponent[2].Tdj = 1; scanHdr->ScanComponent[2].Taj = 1; } scanHdr->Ss = 0; //0 for Baseline scanHdr->Se = 63; //63 for Baseline scanHdr->Ah = 0; //0 for Baseline scanHdr->Al = 0; //0 for Baseline scanHdr->Ls = 3 + (yuvComp.num_components * 2) + 3; } // This method packs the header information which is to be sent to the driver through LibVA. // All the information that needs to be inserted in the encoded buffer should be built and sent. // It is the responsibility of the app talking to LibVA to build this header and send it. // This includes Markers, Quantization tables (normalized with quality factor), Huffman tables,etc. int build_packed_jpeg_header_buffer(unsigned char **header_buffer, YUVComponentSpecs yuvComp, int picture_width, int picture_height, uint16_t restart_interval, int quality) { bitstream bs; int i = 0, j = 0; uint32_t temp = 0; bitstream_start(&bs); //Add SOI bitstream_put_ui(&bs, SOI, 16); //Add AppData bitstream_put_ui(&bs, APP0, 16); //APP0 marker bitstream_put_ui(&bs, 16, 16); //Length excluding the marker bitstream_put_ui(&bs, 0x4A, 8); //J bitstream_put_ui(&bs, 0x46, 8); //F bitstream_put_ui(&bs, 0x49, 8); //I bitstream_put_ui(&bs, 0x46, 8); //F bitstream_put_ui(&bs, 0x00, 8); //0 bitstream_put_ui(&bs, 1, 8); //Major Version bitstream_put_ui(&bs, 1, 8); //Minor Version bitstream_put_ui(&bs, 1, 8); //Density units 0:no units, 1:pixels per inch, 2: pixels per cm bitstream_put_ui(&bs, 72, 16); //X density bitstream_put_ui(&bs, 72, 16); //Y density bitstream_put_ui(&bs, 0, 8); //Thumbnail width bitstream_put_ui(&bs, 0, 8); //Thumbnail height // Regarding Quantization matrices: As per JPEG Spec ISO/IEC 10918-1:1993(E), Pg-19: // "applications may specify values which customize picture quality for their particular // image characteristics, display devices, and viewing conditions" //Normalization of quality factor quality = (quality < 50) ? (5000 / quality) : (200 - (quality * 2)); //Add QTable - Y JPEGQuantSection quantLuma; populate_quantdata(&quantLuma, 0); bitstream_put_ui(&bs, quantLuma.DQT, 16); bitstream_put_ui(&bs, quantLuma.Lq, 16); bitstream_put_ui(&bs, quantLuma.Pq, 4); bitstream_put_ui(&bs, quantLuma.Tq, 4); for (i = 0; i < NUM_QUANT_ELEMENTS; i++) { //scale the quantization table with quality factor temp = (quantLuma.Qk[i] * quality) / 100; //clamp to range [1,255] temp = (temp > 255) ? 255 : temp; temp = (temp < 1) ? 1 : temp; quantLuma.Qk[i] = (unsigned char)temp; bitstream_put_ui(&bs, quantLuma.Qk[i], 8); } //Add QTable - U/V if (yuvComp.fourcc_val != VA_FOURCC_Y800) { JPEGQuantSection quantChroma; populate_quantdata(&quantChroma, 1); bitstream_put_ui(&bs, quantChroma.DQT, 16); bitstream_put_ui(&bs, quantChroma.Lq, 16); bitstream_put_ui(&bs, quantChroma.Pq, 4); bitstream_put_ui(&bs, quantChroma.Tq, 4); for (i = 0; i < NUM_QUANT_ELEMENTS; i++) { //scale the quantization table with quality factor temp = (quantChroma.Qk[i] * quality) / 100; //clamp to range [1,255] temp = (temp > 255) ? 255 : temp; temp = (temp < 1) ? 1 : temp; quantChroma.Qk[i] = (unsigned char)temp; bitstream_put_ui(&bs, quantChroma.Qk[i], 8); } } //Add FrameHeader JPEGFrameHeader frameHdr; memset(&frameHdr, 0, sizeof(JPEGFrameHeader)); populate_frame_header(&frameHdr, yuvComp, picture_width, picture_height); bitstream_put_ui(&bs, frameHdr.SOF, 16); bitstream_put_ui(&bs, frameHdr.Lf, 16); bitstream_put_ui(&bs, frameHdr.P, 8); bitstream_put_ui(&bs, frameHdr.Y, 16); bitstream_put_ui(&bs, frameHdr.X, 16); bitstream_put_ui(&bs, frameHdr.Nf, 8); for (i = 0; i < frameHdr.Nf; i++) { bitstream_put_ui(&bs, frameHdr.JPEGComponent[i].Ci, 8); bitstream_put_ui(&bs, frameHdr.JPEGComponent[i].Hi, 4); bitstream_put_ui(&bs, frameHdr.JPEGComponent[i].Vi, 4); bitstream_put_ui(&bs, frameHdr.JPEGComponent[i].Tqi, 8); } //Add HuffTable AC and DC for Y,U/V components JPEGHuffSection acHuffSectionHdr, dcHuffSectionHdr; for (i = 0; (i < yuvComp.num_components && (i <= 1)); i++) { //Add DC component (Tc = 0) populate_huff_section_header(&dcHuffSectionHdr, i, 0); bitstream_put_ui(&bs, dcHuffSectionHdr.DHT, 16); bitstream_put_ui(&bs, dcHuffSectionHdr.Lh, 16); bitstream_put_ui(&bs, dcHuffSectionHdr.Tc, 4); bitstream_put_ui(&bs, dcHuffSectionHdr.Th, 4); for (j = 0; j < NUM_DC_RUN_SIZE_BITS; j++) { bitstream_put_ui(&bs, dcHuffSectionHdr.Li[j], 8); } for (j = 0; j < NUM_DC_CODE_WORDS_HUFFVAL; j++) { bitstream_put_ui(&bs, dcHuffSectionHdr.Vij[j], 8); } //Add AC component (Tc = 1) populate_huff_section_header(&acHuffSectionHdr, i, 1); bitstream_put_ui(&bs, acHuffSectionHdr.DHT, 16); bitstream_put_ui(&bs, acHuffSectionHdr.Lh, 16); bitstream_put_ui(&bs, acHuffSectionHdr.Tc, 4); bitstream_put_ui(&bs, acHuffSectionHdr.Th, 4); for (j = 0; j < NUM_AC_RUN_SIZE_BITS; j++) { bitstream_put_ui(&bs, acHuffSectionHdr.Li[j], 8); } for (j = 0; j < NUM_AC_CODE_WORDS_HUFFVAL; j++) { bitstream_put_ui(&bs, acHuffSectionHdr.Vij[j], 8); } if (yuvComp.fourcc_val == VA_FOURCC_Y800) break; } //Add Restart Interval if restart_interval is not 0 if (restart_interval != 0) { JPEGRestartSection restartHdr; restartHdr.DRI = DRI; restartHdr.Lr = 4; restartHdr.Ri = restart_interval; bitstream_put_ui(&bs, restartHdr.DRI, 16); bitstream_put_ui(&bs, restartHdr.Lr, 16); bitstream_put_ui(&bs, restartHdr.Ri, 16); } //Add ScanHeader JPEGScanHeader scanHdr; populate_scan_header(&scanHdr, yuvComp); bitstream_put_ui(&bs, scanHdr.SOS, 16); bitstream_put_ui(&bs, scanHdr.Ls, 16); bitstream_put_ui(&bs, scanHdr.Ns, 8); for (i = 0; i < scanHdr.Ns; i++) { bitstream_put_ui(&bs, scanHdr.ScanComponent[i].Csj, 8); bitstream_put_ui(&bs, scanHdr.ScanComponent[i].Tdj, 4); bitstream_put_ui(&bs, scanHdr.ScanComponent[i].Taj, 4); } bitstream_put_ui(&bs, scanHdr.Ss, 8); bitstream_put_ui(&bs, scanHdr.Se, 8); bitstream_put_ui(&bs, scanHdr.Ah, 4); bitstream_put_ui(&bs, scanHdr.Al, 4); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } //Upload the yuv image from the file to the VASurface void upload_yuv_to_surface(VADisplay va_dpy, FILE *yuv_fp, VASurfaceID surface_id, YUVComponentSpecs yuvComp, int picture_width, int picture_height, int frame_size) { VAImage surface_image; VAStatus va_status; void *surface_p = NULL; unsigned char *newImageBuffer; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst; int y_size = picture_width * picture_height; int u_size = 0; int row, col; size_t n_items; //u_size is used for I420, NV12 formats only u_size = ((picture_width >> 1) * (picture_height >> 1)); newImageBuffer = malloc(frame_size); if (newImageBuffer == NULL) { printf("ERROR......upload_yuv_to_surface malloc failed"); exit(1); } memset(newImageBuffer, 0, frame_size); do { n_items = fread(newImageBuffer, frame_size, 1, yuv_fp); } while (n_items != 1); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); vaMapBuffer(va_dpy, surface_image.buf, &surface_p); assert(VA_STATUS_SUCCESS == va_status); y_src = newImageBuffer; u_src = newImageBuffer + y_size; /* UV offset for NV12 */ v_src = newImageBuffer + y_size + u_size; y_dst = (unsigned char *)surface_p + surface_image.offsets[0]; u_dst = (unsigned char *)surface_p + surface_image.offsets[1]; /* UV offset for NV12 */ if ((yuvComp.fourcc_val == VA_FOURCC_NV12) || (yuvComp.fourcc_val == VA_FOURCC_I420) || (yuvComp.fourcc_val == VA_FOURCC_Y800)) { /* Y plane */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += picture_width; } if (yuvComp.num_components > 1) { switch (yuvComp.fourcc_val) { case VA_FOURCC_NV12: { for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.pitches[1]; u_src += (picture_width); } break; } case VA_FOURCC_I420: { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.pitches[1]; u_src += (picture_width / 2); v_src += (picture_width / 2); } break; } }//end of switch }//end of if check } else if ((yuvComp.fourcc_val == VA_FOURCC_UYVY) || (yuvComp.fourcc_val == VA_FOURCC_YUY2)) { for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_dst += surface_image.pitches[0]; y_src += picture_width * 2; } } else if (yuvComp.fourcc_val == VA_FOURCC_RGBA) { for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_dst += surface_image.pitches[0]; y_src += picture_width * 4; } } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); free(newImageBuffer); } void init_yuv_component(YUVComponentSpecs *yuvComponent, int yuv_type, int *surface_type, VASurfaceAttrib *fourcc) { yuvComponent->yuv_type = yuv_type; // switch (yuv_type) { case 0 : //I420 case 1 : { //NV12 yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_YUV420; if (yuv_type == 0) { yuvComponent->fourcc_val = VA_FOURCC_I420; fourcc->value.value.i = VA_FOURCC_NV12; } else { yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_NV12; } yuvComponent->num_components = 3; yuvComponent->y_h_subsample = 2; yuvComponent->y_v_subsample = 2; yuvComponent->u_h_subsample = 1; yuvComponent->u_v_subsample = 1; yuvComponent->v_h_subsample = 1; yuvComponent->v_v_subsample = 1; break; } case 2: { //UYVY yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_YUV422; yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_UYVY; yuvComponent->num_components = 3; yuvComponent->y_h_subsample = 2; yuvComponent->y_v_subsample = 1; yuvComponent->u_h_subsample = 1; yuvComponent->u_v_subsample = 1; yuvComponent->v_h_subsample = 1; yuvComponent->v_v_subsample = 1; break; } case 3: { //YUY2 yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_YUV422; yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_YUY2; yuvComponent->num_components = 3; yuvComponent->y_h_subsample = 2; yuvComponent->y_v_subsample = 1; yuvComponent->u_h_subsample = 1; yuvComponent->u_v_subsample = 1; yuvComponent->v_h_subsample = 1; yuvComponent->v_v_subsample = 1; break; } case 4: { //Y8 yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_YUV400; yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_Y800; yuvComponent->num_components = 1; yuvComponent->y_h_subsample = 1; yuvComponent->y_v_subsample = 1; yuvComponent->u_h_subsample = 0; yuvComponent->u_v_subsample = 0; yuvComponent->v_h_subsample = 0; yuvComponent->v_v_subsample = 0; break; } case 5: { //RGBA yuvComponent->va_surface_format = (*surface_type) = VA_RT_FORMAT_RGB32; yuvComponent->fourcc_val = fourcc->value.value.i = VA_FOURCC_RGBA; yuvComponent->num_components = 3; yuvComponent->y_h_subsample = 1; yuvComponent->y_v_subsample = 1; yuvComponent->u_h_subsample = 1; yuvComponent->u_v_subsample = 1; yuvComponent->v_h_subsample = 1; yuvComponent->v_v_subsample = 1; break; } default: { printf("Unsupported format:\n"); show_help(); break; } } } int encode_input_image(FILE *yuv_fp, FILE *jpeg_fp, int picture_width, int picture_height, int frame_size, int yuv_type, int quality) { int num_entrypoints, enc_entrypoint; int major_ver, minor_ver; int surface_type; VAEntrypoint entrypoints[5]; VASurfaceAttrib fourcc; VAConfigAttrib attrib[2]; VADisplay va_dpy; VAStatus va_status; VAConfigID config_id; VASurfaceID surface_id; VAContextID context_id; VABufferID pic_param_buf_id; /* Picture parameter id*/ VABufferID slice_param_buf_id; /* Slice parameter id, only 1 slice per frame in jpeg encode */ VABufferID codedbuf_buf_id; /* Output buffer id, compressed data */ VABufferID packed_raw_header_param_buf_id; /* Header parameter buffer id */ VABufferID packed_raw_header_buf_id; /* Header buffer id */ VABufferID qmatrix_buf_id; /* Quantization Matrix id */ VABufferID huffmantable_buf_id; /* Huffman table id*/ VAEncPictureParameterBufferJPEG pic_param; /* Picture parameter buffer */ VAEncSliceParameterBufferJPEG slice_param; /* Slice parameter buffer */ VAQMatrixBufferJPEG quantization_param; /* Quantization Matrix buffer */ VAHuffmanTableBufferJPEGBaseline hufftable_param; /* Huffmantable buffer */ YUVComponentSpecs yuvComponent; int writeToFile = 1; //Clamp the quality factor value to [1,100] if (quality >= 100) quality = 100; if (quality <= 0) quality = 1; fourcc.type = VASurfaceAttribPixelFormat; fourcc.flags = VA_SURFACE_ATTRIB_SETTABLE; fourcc.value.type = VAGenericValueTypeInteger; init_yuv_component(&yuvComponent, yuv_type, &surface_type, &fourcc); /* 1. Initialize the va driver */ va_dpy = va_open_display(); va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* 2. Query for the entrypoints for the JPEGBaseline profile */ va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileJPEGBaseline, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); // We need picture level encoding (VAEntrypointEncPicture). Find if it is supported. for (enc_entrypoint = 0; enc_entrypoint < num_entrypoints; enc_entrypoint++) { if (entrypoints[enc_entrypoint] == VAEntrypointEncPicture) break; } if (enc_entrypoint == num_entrypoints) { /* No JPEG Encode (VAEntrypointEncPicture) entry point found */ assert(0); } /* 3. Query for the Render Target format supported */ attrib[0].type = VAConfigAttribRTFormat; attrib[1].type = VAConfigAttribEncJPEG; vaGetConfigAttributes(va_dpy, VAProfileJPEGBaseline, VAEntrypointEncPicture, &attrib[0], 2); // RT should be one of below. if (!((attrib[0].value & VA_RT_FORMAT_YUV420) || (attrib[0].value & VA_RT_FORMAT_YUV422) || (attrib[0].value & VA_RT_FORMAT_RGB32) || (attrib[0].value & VA_RT_FORMAT_YUV444) || (attrib[0].value & VA_RT_FORMAT_YUV400))) { /* Did not find the supported RT format */ assert(0); } VAConfigAttribValEncJPEG jpeg_attrib_val; jpeg_attrib_val.value = attrib[1].value; /* Set JPEG profile attribs */ jpeg_attrib_val.bits.arithmatic_coding_mode = 0; jpeg_attrib_val.bits.progressive_dct_mode = 0; jpeg_attrib_val.bits.non_interleaved_mode = 1; jpeg_attrib_val.bits.differential_mode = 0; attrib[1].value = jpeg_attrib_val.value; /* 4. Create Config for the profile=VAProfileJPEGBaseline, entrypoint=VAEntrypointEncPicture, * with RT format attribute */ va_status = vaCreateConfig(va_dpy, VAProfileJPEGBaseline, VAEntrypointEncPicture, &attrib[0], 2, &config_id); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); /* 5. Create Surface for the input picture */ va_status = vaCreateSurfaces(va_dpy, surface_type, picture_width, picture_height, &surface_id, 1, &fourcc, 1); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); //Map the input yuv file to the input surface created with the surface_id upload_yuv_to_surface(va_dpy, yuv_fp, surface_id, yuvComponent, picture_width, picture_height, frame_size); /* 6. Create Context for the encode pipe*/ va_status = vaCreateContext(va_dpy, config_id, picture_width, picture_height, VA_PROGRESSIVE, &surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); /* Create buffer for Encoded data to be stored */ va_status = vaCreateBuffer(va_dpy, context_id, VAEncCodedBufferType, frame_size, 1, NULL, &codedbuf_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); //Initialize the picture parameter buffer pic_param.coded_buf = codedbuf_buf_id; jpegenc_pic_param_init(&pic_param, picture_width, picture_height, quality, yuvComponent); /* 7. Create buffer for the picture parameter */ va_status = vaCreateBuffer(va_dpy, context_id, VAEncPictureParameterBufferType, sizeof(VAEncPictureParameterBufferJPEG), 1, &pic_param, &pic_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); //Load the QMatrix jpegenc_qmatrix_init(&quantization_param, yuvComponent); /* 8. Create buffer for Quantization Matrix */ va_status = vaCreateBuffer(va_dpy, context_id, VAQMatrixBufferType, sizeof(VAQMatrixBufferJPEG), 1, &quantization_param, &qmatrix_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); //Load the Huffman Tables jpegenc_hufftable_init(&hufftable_param, yuvComponent); /* 9. Create buffer for Huffman Tables */ va_status = vaCreateBuffer(va_dpy, context_id, VAHuffmanTableBufferType, sizeof(VAHuffmanTableBufferJPEGBaseline), 1, &hufftable_param, &huffmantable_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); //Initialize the slice parameter buffer jpegenc_slice_param_init(&slice_param, yuvComponent); /* 10. Create buffer for slice parameter */ va_status = vaCreateBuffer(va_dpy, context_id, VAEncSliceParameterBufferType, sizeof(slice_param), 1, &slice_param, &slice_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); //Pack headers and send using Raw data buffer VAEncPackedHeaderParameterBuffer packed_header_param_buffer; unsigned int length_in_bits; unsigned char *packed_header_buffer = NULL; length_in_bits = build_packed_jpeg_header_buffer(&packed_header_buffer, yuvComponent, picture_width, picture_height, slice_param.restart_interval, quality); packed_header_param_buffer.type = VAEncPackedHeaderRawData; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; /* 11. Create raw buffer for header */ va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &packed_raw_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_header_buffer, &packed_raw_header_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* 12. Begin picture */ va_status = vaBeginPicture(va_dpy, context_id, surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); /* 13. Render picture for all the VA buffers created */ va_status = vaRenderPicture(va_dpy, context_id, &pic_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &qmatrix_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &huffmantable_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &slice_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &packed_raw_header_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(va_dpy, context_id, &packed_raw_header_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (writeToFile) { VASurfaceStatus surface_status; size_t w_items; VACodedBufferSegment *coded_buffer_segment; unsigned char *coded_mem; int slice_data_length; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); surface_status = 0; va_status = vaQuerySurfaceStatus(va_dpy, surface_id, &surface_status); CHECK_VASTATUS(va_status, "vaQuerySurfaceStatus"); va_status = vaMapBuffer(va_dpy, codedbuf_buf_id, (void **)(&coded_buffer_segment)); CHECK_VASTATUS(va_status, "vaMapBuffer"); coded_mem = coded_buffer_segment->buf; if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) { vaUnmapBuffer(va_dpy, codedbuf_buf_id); printf("ERROR......Coded buffer too small\n"); } slice_data_length = coded_buffer_segment->size; do { w_items = fwrite(coded_mem, slice_data_length, 1, jpeg_fp); } while (w_items != 1); va_status = vaUnmapBuffer(va_dpy, codedbuf_buf_id); CHECK_VASTATUS(va_status, "vaUnmapBuffer"); } vaDestroyBuffer(va_dpy, pic_param_buf_id); vaDestroyBuffer(va_dpy, qmatrix_buf_id); vaDestroyBuffer(va_dpy, slice_param_buf_id); vaDestroyBuffer(va_dpy, huffmantable_buf_id); vaDestroyBuffer(va_dpy, codedbuf_buf_id); vaDestroyBuffer(va_dpy, packed_raw_header_param_buf_id); vaDestroyBuffer(va_dpy, packed_raw_header_buf_id); vaDestroySurfaces(va_dpy, &surface_id, 1); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); vaTerminate(va_dpy); va_close_display(va_dpy); return 0; } int main(int argc, char *argv[]) { FILE *yuv_fp; FILE *jpeg_fp; off_t file_size; clock_t start_time, finish_time; unsigned int duration; unsigned int yuv_type = 0; int quality = 0; unsigned int picture_width = 0; unsigned int picture_height = 0; unsigned int frame_size = 0; va_init_display_args(&argc, argv); if (argc != 7) { show_help(); return -1; } picture_width = atoi(argv[1]); picture_height = atoi(argv[2]); yuv_type = atoi(argv[5]); quality = atoi(argv[6]); // switch (yuv_type) { case 0 : //I420 case 1 : { //NV12 frame_size = picture_width * picture_height + ((picture_width * picture_height) >> 1) ; break; } case 2: //UYVY case 3: { //YUY2 frame_size = 2 * (picture_width * picture_height); break; } case 4: { //Y8 frame_size = picture_width * picture_height; break; } case 5: { //RGBA frame_size = 4 * (picture_width * picture_height) ; break; } default: { printf("Unsupported format:\n"); show_help(); return -1; } } yuv_fp = fopen(argv[3], "rb"); if (yuv_fp == NULL) { printf("Can't open input YUV file\n"); return -1; } fseeko(yuv_fp, (off_t)0, SEEK_END); file_size = ftello(yuv_fp); if ((file_size < frame_size) || ((frame_size != 0) && (file_size % frame_size))) { fclose(yuv_fp); printf("The YUV file's size is not correct: file_size=%zd, frame_size=%d\n", file_size, frame_size); return -1; } fseeko(yuv_fp, (off_t)0, SEEK_SET); jpeg_fp = fopen(argv[4], "wb"); if (jpeg_fp == NULL) { fclose(yuv_fp); printf("Can't open output destination jpeg file\n"); return -1; } start_time = clock(); encode_input_image(yuv_fp, jpeg_fp, picture_width, picture_height, frame_size, yuv_type, quality); if (yuv_fp != NULL) fclose(yuv_fp); if (jpeg_fp != NULL) fclose(jpeg_fp); finish_time = clock(); duration = finish_time - start_time; printf("Encoding finished in %u ticks\n", duration); return 0; } ================================================ FILE: encode/jpegenc_utils.h ================================================ /* * Copyright (c) 2014 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ /* * This file is a utilities file which supports JPEG Encode process */ #include #include #define MAX_JPEG_COMPONENTS 3 //only for Y, U and V #define JPEG_Y 0 #define JPEG_U 1 #define JPEG_V 2 #define NUM_QUANT_ELEMENTS 64 #define NUM_MAX_HUFFTABLE 2 #define NUM_AC_RUN_SIZE_BITS 16 #define NUM_AC_CODE_WORDS_HUFFVAL 162 #define NUM_DC_RUN_SIZE_BITS 16 #define NUM_DC_CODE_WORDS_HUFFVAL 12 #define BITSTREAM_ALLOCATE_STEPPING 4096 struct __bitstream { unsigned int *buffer; int bit_offset; int max_size_in_dword; }; typedef struct __bitstream bitstream; static unsigned int swap32(unsigned int val) { unsigned char *pval = (unsigned char *)&val; return ((pval[0] << 24) | (pval[1] << 16) | (pval[2] << 8) | (pval[3] << 0)); } static void bitstream_start(bitstream *bs) { bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING; bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1); assert(bs->buffer); bs->bit_offset = 0; } static void bitstream_end(bitstream *bs) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (bit_offset) { bs->buffer[pos] = swap32((bs->buffer[pos] << bit_left)); } } static void bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (!size_in_bits) return; if (size_in_bits < 32) val &= ((1 << size_in_bits) - 1); bs->bit_offset += size_in_bits; if (bit_left > size_in_bits) { bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val); } else { size_in_bits -= bit_left; bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits); bs->buffer[pos] = swap32(bs->buffer[pos]); if (pos + 1 == bs->max_size_in_dword) { bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING; bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int)); assert(bs->buffer); } bs->buffer[pos + 1] = val; } } //As per Jpeg Spec ISO/IEC 10918-1, below values are assigned enum jpeg_markers { //Define JPEG markers as 0xFFXX if you are adding the value directly to the buffer //Else define marker as 0xXXFF if you are assigning the marker to a structure variable. //This is needed because of the little-endedness of the IA SOI = 0xFFD8, //Start of Image EOI = 0xFFD9, //End of Image SOS = 0xFFDA, //Start of Scan DQT = 0xFFDB, //Define Quantization Table DRI = 0xFFDD, //Define restart interval RST0 = 0xFFD0, //Restart interval termination DHT = 0xFFC4, //Huffman table SOF0 = 0xFFC0, //Baseline DCT APP0 = 0xFFE0, //Application Segment COM = 0xFFFE //Comment segment }; typedef struct _JPEGFrameHeader { uint16_t SOF; //Start of Frame Header uint16_t Lf; //Length of Frame Header uint8_t P; //Sample precision uint16_t Y; //Number of lines uint16_t X; //Number of samples per line uint8_t Nf; //Number of image components in frame struct _JPEGComponent { uint8_t Ci; //Component identifier uint8_t Hi: 4; //Horizontal sampling factor uint8_t Vi: 4; //Vertical sampling factor uint8_t Tqi; //Quantization table destination selector } JPEGComponent[MAX_JPEG_COMPONENTS]; } JPEGFrameHeader; typedef struct _JPEGScanHeader { uint16_t SOS; //Start of Scan uint16_t Ls; //Length of Scan uint8_t Ns; //Number of image components in the scan struct _ScanComponent { uint8_t Csj; //Scan component selector uint8_t Tdj: 4; //DC Entropy coding table destination selector(Tdj:4 bits) uint8_t Taj: 4; //AC Entropy coding table destination selector(Taj:4 bits) } ScanComponent[MAX_JPEG_COMPONENTS]; uint8_t Ss; //Start of spectral or predictor selection, 0 for Baseline uint8_t Se; //End of spectral or predictor selection, 63 for Baseline uint8_t Ah: 4; //Successive approximation bit position high, 0 for Baseline uint8_t Al: 4; //Successive approximation bit position low, 0 for Baseline } JPEGScanHeader; typedef struct _JPEGQuantSection { uint16_t DQT; //Quantization table marker uint16_t Lq; //Length of Quantization table definition uint8_t Tq: 4; //Quantization table destination identifier uint8_t Pq: 4; //Quatization table precision. Should be 0 for 8-bit samples uint8_t Qk[NUM_QUANT_ELEMENTS]; //Quantization table elements } JPEGQuantSection; typedef struct _JPEGHuffSection { uint16_t DHT; //Huffman table marker uint16_t Lh; //Huffman table definition length uint8_t Tc: 4; //Table class- 0:DC, 1:AC uint8_t Th: 4; //Huffman table destination identifier uint8_t Li[NUM_AC_RUN_SIZE_BITS]; //Number of Huffman codes of length i uint8_t Vij[NUM_AC_CODE_WORDS_HUFFVAL]; //Value associated with each Huffman code } JPEGHuffSection; typedef struct _JPEGRestartSection { uint16_t DRI; //Restart interval marker uint16_t Lr; //Legth of restart interval segment uint16_t Ri; //Restart interval } JPEGRestartSection; typedef struct _JPEGCommentSection { uint16_t COM; //Comment marker uint16_t Lc; //Comment segment length uint8_t Cmi; //Comment byte } JPEGCommentSection; typedef struct _JPEGAppSection { uint16_t APPn; //Application data marker uint16_t Lp; //Application data segment length uint8_t Api; //Application data byte } JPEGAppSection; //Luminance quantization table //Source: Jpeg Spec ISO/IEC 10918-1, Annex K, Table K.1 uint8_t jpeg_luma_quant[NUM_QUANT_ELEMENTS] = { 16, 11, 10, 16, 24, 40, 51, 61, 12, 12, 14, 19, 26, 58, 60, 55, 14, 13, 16, 24, 40, 57, 69, 56, 14, 17, 22, 29, 51, 87, 80, 62, 18, 22, 37, 56, 68, 109, 103, 77, 24, 35, 55, 64, 81, 104, 113, 92, 49, 64, 78, 87, 103, 121, 120, 101, 72, 92, 95, 98, 112, 100, 103, 99 }; //Luminance quantization table //Source: Jpeg Spec ISO/IEC 10918-1, Annex K, Table K.2 uint8_t jpeg_chroma_quant[NUM_QUANT_ELEMENTS] = { 17, 18, 24, 47, 99, 99, 99, 99, 18, 21, 26, 66, 99, 99, 99, 99, 24, 26, 56, 99, 99, 99, 99, 99, 47, 66, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99 }; //Zigzag scan order of the the Luma and Chroma components //Note: Jpeg Spec ISO/IEC 10918-1, Figure A.6 shows the zigzag order differently. //The Spec is trying to show the zigzag pattern with number positions. The below //table will use the patter shown by A.6 and map the postion of the elements in the array uint8_t jpeg_zigzag[] = { 0, 1, 8, 16, 9, 2, 3, 10, 17, 24, 32, 25, 18, 11, 4, 5, 12, 19, 26, 33, 40, 48, 41, 34, 27, 20, 13, 6, 7, 14, 21, 28, 35, 42, 49, 56, 57, 50, 43, 36, 29, 22, 15, 23, 30, 37, 44, 51, 58, 59, 52, 45, 38, 31, 39, 46, 53, 60, 61, 54, 47, 55, 62, 63 }; //Huffman table for Luminance DC Coefficients //Reference Jpeg Spec ISO/IEC 10918-1, K.3.3.1 //K.3.3.1 is the summarized version of Table K.3 uint8_t jpeg_hufftable_luma_dc[] = { //TcTh (Tc=0 since 0:DC, 1:AC; Th=0) 0x00, //Li 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, //Vi 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B }; //Huffman table for Chrominance DC Coefficients //Reference Jpeg Spec ISO/IEC 10918-1, K.3.3.1 //K.3.3.1 is the summarized version of Table K.4 uint8_t jpeg_hufftable_chroma_dc[] = { //TcTh (Tc=0 since 0:DC, 1:AC; Th=1) 0x01, //Li 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, //Vi 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B }; //Huffman table for Luminance AC Coefficients //Reference Jpeg Spec ISO/IEC 10918-1, K.3.3.2 //K.3.3.2 is the summarized version of Table K.5 uint8_t jpeg_hufftable_luma_ac[] = { //TcTh (Tc=1 since 0:DC, 1:AC; Th=0) 0x10, //Li 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, //Vi 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, 0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA }; //Huffman table for Chrominance AC Coefficients //Reference Jpeg Spec ISO/IEC 10918-1, K.3.3.2 //K.3.3.2 is the summarized version of Table K.6 uint8_t jpeg_hufftable_chroma_ac[] = { //TcTh (Tc=1 since 0:DC, 1:AC; Th=1) 0x11, //Li 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, //Vi 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, 0x62, 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA }; typedef struct _YUVComponentSpecs { //One of 0(I420)/1(NV12)/2(UYVY)/3(YUY2)/4(Y8)/5(RGBA)> unsigned int yuv_type; // One of VA_RT_FORMAT_YUV420, VA_RT_FORMAT_YUV422, VA_RT_FORMAT_YUV400, VA_RT_FORMAT_YUV444, VA_RT_FORMAT_RGB32 unsigned int va_surface_format; //One of VA_FOURCC_I420, VA_FOURCC_NV12, VA_FOURCC_UYVY, VA_FOURCC_YUY2, VA_FOURCC_Y800, VA_FOURCC_444P, VA_FOURCC_RGBA unsigned int fourcc_val; //Using this field to evaluate the input file type. //no.of. components unsigned int num_components; //Y horizontal subsample unsigned int y_h_subsample; //Y vertical subsample unsigned int y_v_subsample; //U horizontal subsample unsigned int u_h_subsample; //U vertical subsample unsigned int u_v_subsample; //V horizontal subsample unsigned int v_h_subsample; //V vertical subsample unsigned int v_v_subsample; } YUVComponentSpecs; ================================================ FILE: encode/meson.build ================================================ m = c.find_library('m') executable('avcenc', [ 'avcenc.c' ], dependencies: [ libva_display_dep, threads ], install: true) executable('h264encode', [ 'h264encode.c' ], dependencies: [ libva_display_dep, threads, m ], install: true) executable('hevcencode', [ 'hevcencode.c' ], dependencies: [ libva_display_dep, threads, m ], install: true) executable('mpeg2vaenc', [ 'mpeg2vaenc.c' ], dependencies: [ libva_display_dep, threads ], install: true) executable('jpegenc', [ 'jpegenc.c' ], dependencies: [ libva_display_dep, threads ], install: true) executable('svctenc', [ 'svctenc.c' ], dependencies: [libva_display_dep, threads, m ]) executable('vp9enc', [ 'vp9enc.c' ], dependencies: [libva_display_dep, threads, m ], install: true) executable('vp8enc', [ 'vp8enc.c' ], dependencies: [libva_display_dep, threads, m ], install: true) if libva_dep.version().version_compare('>= 1.14.0') executable('av1encode', [ 'av1encode.c' ], dependencies: [ libva_display_dep, threads, m ], install: true) endif ================================================ FILE: encode/mpeg2vaenc.c ================================================ /* * Copyright (c) 2012 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ /* * Simple MPEG-2 encoder based on libVA. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #define START_CODE_PICUTRE 0x00000100 #define START_CODE_SLICE 0x00000101 #define START_CODE_USER 0x000001B2 #define START_CODE_SEQ 0x000001B3 #define START_CODE_EXT 0x000001B5 #define START_CODE_GOP 0x000001B8 #define CHROMA_FORMAT_RESERVED 0 #define CHROMA_FORMAT_420 1 #define CHROMA_FORMAT_422 2 #define CHROMA_FORMAT_444 3 #define MAX_SLICES 128 enum { MPEG2_MODE_I = 0, MPEG2_MODE_IP, MPEG2_MODE_IPB, }; enum { MPEG2_LEVEL_LOW = 0, MPEG2_LEVEL_MAIN, MPEG2_LEVEL_HIGH, }; #define CHECK_VASTATUS(va_status, func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr, "%s:%s (%d) failed, exit\n", __func__, func, __LINE__); \ exit(1); \ } #define CHECK_CONDITION(cond) \ if(!(cond)) \ { \ fprintf(stderr, "Unexpected condition: %s:%d\n", __func__, __LINE__); \ exit(1); \ } static VAProfile mpeg2_va_profiles[] = { VAProfileMPEG2Simple, VAProfileMPEG2Main }; static struct _mpeg2_sampling_density { int samplers_per_line; int line_per_frame; int frame_per_sec; } mpeg2_upper_samplings[2][3] = { { { 0, 0, 0 }, { 720, 576, 30 }, { 0, 0, 0 }, }, { { 352, 288, 30 }, { 720, 576, 30 }, { 1920, 1152, 60 }, } }; struct mpeg2enc_context { /* args */ int rate_control_mode; int fps; int mode; /* 0:I, 1:I/P, 2:I/P/B */ VAProfile profile; int level; int width; int height; int frame_size; int num_pictures; int qp; FILE *ifp; FILE *ofp; unsigned char *frame_data_buffer; int intra_period; int ip_period; int bit_rate; /* in kbps */ VAEncPictureType next_type; int next_display_order; int next_bframes; int new_sequence; int new_gop_header; int gop_header_in_display_order; /* VA resource */ VADisplay va_dpy; VAEncSequenceParameterBufferMPEG2 seq_param; VAEncPictureParameterBufferMPEG2 pic_param; VAEncSliceParameterBufferMPEG2 slice_param[MAX_SLICES]; VAContextID context_id; VAConfigID config_id; VABufferID seq_param_buf_id; /* Sequence level parameter */ VABufferID pic_param_buf_id; /* Picture level parameter */ VABufferID slice_param_buf_id[MAX_SLICES]; /* Slice level parameter, multil slices */ VABufferID codedbuf_buf_id; /* Output buffer, compressed data */ VABufferID packed_seq_header_param_buf_id; VABufferID packed_seq_buf_id; VABufferID packed_pic_header_param_buf_id; VABufferID packed_pic_buf_id; int num_slice_groups; int codedbuf_i_size; int codedbuf_pb_size; /* thread */ pthread_t upload_thread_id; int upload_thread_value; int current_input_surface; int current_upload_surface; }; /* * mpeg2enc helpers */ #define BITSTREAM_ALLOCATE_STEPPING 4096 struct __bitstream { unsigned int *buffer; int bit_offset; int max_size_in_dword; }; typedef struct __bitstream bitstream; static unsigned int swap32(unsigned int val) { unsigned char *pval = (unsigned char *)&val; return ((pval[0] << 24) | (pval[1] << 16) | (pval[2] << 8) | (pval[3] << 0)); } static void bitstream_start(bitstream *bs) { bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING; bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1); assert(bs->buffer); bs->bit_offset = 0; } static void bitstream_end(bitstream *bs) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (bit_offset) { bs->buffer[pos] = swap32((bs->buffer[pos] << bit_left)); } } static void bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (!size_in_bits) return; if (size_in_bits < 32) val &= ((1 << size_in_bits) - 1); bs->bit_offset += size_in_bits; if (bit_left > size_in_bits) { bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val); } else { size_in_bits -= bit_left; bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits); bs->buffer[pos] = swap32(bs->buffer[pos]); if (pos + 1 == bs->max_size_in_dword) { bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING; bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int)); assert(bs->buffer); } bs->buffer[pos + 1] = val; } } static void bitstream_byte_aligning(bitstream *bs, int bit) { int bit_offset = (bs->bit_offset & 0x7); int bit_left = 8 - bit_offset; int new_val; if (!bit_offset) return; assert(bit == 0 || bit == 1); if (bit) new_val = (1 << bit_left) - 1; else new_val = 0; bitstream_put_ui(bs, new_val, bit_left); } static struct mpeg2_frame_rate { int code; float value; } frame_rate_tab[] = { {1, 23.976}, {2, 24.0}, {3, 25.0}, {4, 29.97}, {5, 30}, {6, 50}, {7, 59.94}, {8, 60} }; static int find_frame_rate_code(const VAEncSequenceParameterBufferMPEG2 *seq_param) { unsigned int delta = -1; int code = 1, i; float frame_rate_value = seq_param->frame_rate * (seq_param->sequence_extension.bits.frame_rate_extension_d + 1) / (seq_param->sequence_extension.bits.frame_rate_extension_n + 1); for (i = 0; i < sizeof(frame_rate_tab) / sizeof(frame_rate_tab[0]); i++) { if (fabsf(1000 * frame_rate_tab[i].value - 1000 * frame_rate_value) < delta) { code = frame_rate_tab[i].code; delta = fabsf(1000 * frame_rate_tab[i].value - 1000 * frame_rate_value); } } return code; } static void sps_rbsp(struct mpeg2enc_context *ctx, const VAEncSequenceParameterBufferMPEG2 *seq_param, bitstream *bs) { int frame_rate_code = find_frame_rate_code(seq_param); if (ctx->new_sequence) { bitstream_put_ui(bs, START_CODE_SEQ, 32); bitstream_put_ui(bs, seq_param->picture_width, 12); bitstream_put_ui(bs, seq_param->picture_height, 12); bitstream_put_ui(bs, seq_param->aspect_ratio_information, 4); bitstream_put_ui(bs, frame_rate_code, 4); /* frame_rate_code */ bitstream_put_ui(bs, (seq_param->bits_per_second + 399) / 400, 18); /* the low 18 bits of bit_rate */ bitstream_put_ui(bs, 1, 1); /* marker_bit */ bitstream_put_ui(bs, seq_param->vbv_buffer_size, 10); bitstream_put_ui(bs, 0, 1); /* constraint_parameter_flag, always 0 for MPEG-2 */ bitstream_put_ui(bs, 0, 1); /* load_intra_quantiser_matrix */ bitstream_put_ui(bs, 0, 1); /* load_non_intra_quantiser_matrix */ bitstream_byte_aligning(bs, 0); bitstream_put_ui(bs, START_CODE_EXT, 32); bitstream_put_ui(bs, 1, 4); /* sequence_extension id */ bitstream_put_ui(bs, seq_param->sequence_extension.bits.profile_and_level_indication, 8); bitstream_put_ui(bs, seq_param->sequence_extension.bits.progressive_sequence, 1); bitstream_put_ui(bs, seq_param->sequence_extension.bits.chroma_format, 2); bitstream_put_ui(bs, seq_param->picture_width >> 12, 2); bitstream_put_ui(bs, seq_param->picture_height >> 12, 2); bitstream_put_ui(bs, ((seq_param->bits_per_second + 399) / 400) >> 18, 12); /* bit_rate_extension */ bitstream_put_ui(bs, 1, 1); /* marker_bit */ bitstream_put_ui(bs, seq_param->vbv_buffer_size >> 10, 8); bitstream_put_ui(bs, seq_param->sequence_extension.bits.low_delay, 1); bitstream_put_ui(bs, seq_param->sequence_extension.bits.frame_rate_extension_n, 2); bitstream_put_ui(bs, seq_param->sequence_extension.bits.frame_rate_extension_d, 5); bitstream_byte_aligning(bs, 0); } if (ctx->new_gop_header) { bitstream_put_ui(bs, START_CODE_GOP, 32); bitstream_put_ui(bs, seq_param->gop_header.bits.time_code, 25); bitstream_put_ui(bs, seq_param->gop_header.bits.closed_gop, 1); bitstream_put_ui(bs, seq_param->gop_header.bits.broken_link, 1); bitstream_byte_aligning(bs, 0); } } static void pps_rbsp(const VAEncSequenceParameterBufferMPEG2 *seq_param, const VAEncPictureParameterBufferMPEG2 *pic_param, bitstream *bs) { int chroma_420_type; if (seq_param->sequence_extension.bits.chroma_format == CHROMA_FORMAT_420) chroma_420_type = pic_param->picture_coding_extension.bits.progressive_frame; else chroma_420_type = 0; bitstream_put_ui(bs, START_CODE_PICUTRE, 32); bitstream_put_ui(bs, pic_param->temporal_reference, 10); bitstream_put_ui(bs, pic_param->picture_type == VAEncPictureTypeIntra ? 1 : pic_param->picture_type == VAEncPictureTypePredictive ? 2 : 3, 3); bitstream_put_ui(bs, 0xFFFF, 16); /* vbv_delay, always 0xFFFF */ if (pic_param->picture_type == VAEncPictureTypePredictive || pic_param->picture_type == VAEncPictureTypeBidirectional) { bitstream_put_ui(bs, 0, 1); /* full_pel_forward_vector, always 0 for MPEG-2 */ bitstream_put_ui(bs, 7, 3); /* forward_f_code, always 7 for MPEG-2 */ } if (pic_param->picture_type == VAEncPictureTypeBidirectional) { bitstream_put_ui(bs, 0, 1); /* full_pel_backward_vector, always 0 for MPEG-2 */ bitstream_put_ui(bs, 7, 3); /* backward_f_code, always 7 for MPEG-2 */ } bitstream_put_ui(bs, 0, 1); /* extra_bit_picture, 0 */ bitstream_byte_aligning(bs, 0); bitstream_put_ui(bs, START_CODE_EXT, 32); bitstream_put_ui(bs, 8, 4); /* Picture Coding Extension ID: 8 */ bitstream_put_ui(bs, pic_param->f_code[0][0], 4); bitstream_put_ui(bs, pic_param->f_code[0][1], 4); bitstream_put_ui(bs, pic_param->f_code[1][0], 4); bitstream_put_ui(bs, pic_param->f_code[1][1], 4); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.intra_dc_precision, 2); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.picture_structure, 2); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.top_field_first, 1); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.frame_pred_frame_dct, 1); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.concealment_motion_vectors, 1); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.q_scale_type, 1); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.intra_vlc_format, 1); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.alternate_scan, 1); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.repeat_first_field, 1); bitstream_put_ui(bs, chroma_420_type, 1); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.progressive_frame, 1); bitstream_put_ui(bs, pic_param->picture_coding_extension.bits.composite_display_flag, 1); bitstream_byte_aligning(bs, 0); } static int build_packed_pic_buffer(const VAEncSequenceParameterBufferMPEG2 *seq_param, const VAEncPictureParameterBufferMPEG2 *pic_param, unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); pps_rbsp(seq_param, pic_param, &bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_seq_buffer(struct mpeg2enc_context *ctx, const VAEncSequenceParameterBufferMPEG2 *seq_param, unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); sps_rbsp(ctx, seq_param, &bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } /* * mpeg2enc */ #define SID_INPUT_PICTURE_0 0 #define SID_INPUT_PICTURE_1 1 #define SID_REFERENCE_PICTURE_L0 2 #define SID_REFERENCE_PICTURE_L1 3 #define SID_RECON_PICTURE 4 #define SID_NUMBER SID_RECON_PICTURE + 1 static VASurfaceID surface_ids[SID_NUMBER]; /* * upload thread function */ static void * upload_yuv_to_surface(void *data) { struct mpeg2enc_context *ctx = data; VAImage surface_image; VAStatus va_status; void *surface_p = NULL; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst, *v_dst; int y_size = ctx->width * ctx->height; int u_size = (ctx->width >> 1) * (ctx->height >> 1); int row, col; size_t n_items; do { n_items = fread(ctx->frame_data_buffer, ctx->frame_size, 1, ctx->ifp); } while (n_items != 1); va_status = vaDeriveImage(ctx->va_dpy, surface_ids[ctx->current_upload_surface], &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); vaMapBuffer(ctx->va_dpy, surface_image.buf, &surface_p); assert(VA_STATUS_SUCCESS == va_status); y_src = ctx->frame_data_buffer; u_src = ctx->frame_data_buffer + y_size; /* UV offset for NV12 */ v_src = ctx->frame_data_buffer + y_size + u_size; y_dst = (unsigned char *)surface_p + surface_image.offsets[0]; u_dst = (unsigned char *)surface_p + surface_image.offsets[1]; /* UV offset for NV12 */ v_dst = (unsigned char *)surface_p + surface_image.offsets[2]; /* Y plane */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += ctx->width; } if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */ for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.pitches[1]; u_src += (ctx->width / 2); v_src += (ctx->width / 2); } } else { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col]; v_dst[col] = v_src[col]; } u_dst += surface_image.pitches[1]; v_dst += surface_image.pitches[2]; u_src += (ctx->width / 2); v_src += (ctx->width / 2); } } vaUnmapBuffer(ctx->va_dpy, surface_image.buf); vaDestroyImage(ctx->va_dpy, surface_image.image_id); return NULL; } static void mpeg2enc_exit(struct mpeg2enc_context *ctx, int exit_code) { if (ctx->frame_data_buffer) { free(ctx->frame_data_buffer); ctx->frame_data_buffer = NULL; } if (ctx->ifp) { fclose(ctx->ifp); ctx->ifp = NULL; } if (ctx->ofp) { fclose(ctx->ofp); ctx->ofp = NULL; } exit(exit_code); } static void usage(char *program) { fprintf(stderr, "Usage: %s --help\n", program); fprintf(stderr, "\t--help print this message\n"); fprintf(stderr, "Usage: %s [options]\n", program); fprintf(stderr, "\t specifies the frame width\n"); fprintf(stderr, "\t specifies the frame height\n"); fprintf(stderr, "\t specifies the I420/IYUV YUV file\n"); fprintf(stderr, "\t specifies the encoded MPEG-2 file\n"); fprintf(stderr, "where options include:\n"); fprintf(stderr, "\t--cqp const qp mode with specified \n"); fprintf(stderr, "\t--fps specify the frame rate\n"); fprintf(stderr, "\t--mode specify the mode 0 (I), 1 (I/P) and 2 (I/P/B)\n"); fprintf(stderr, "\t--profile specify the profile 0(Simple), or 1(Main, default)\n"); fprintf(stderr, "\t--level specify the level 0(Low), 1(Main, default) or 2(High)\n"); } void mpeg2_profile_level(struct mpeg2enc_context *ctx, int profile, int level) { int l = 2, p; for (p = profile; p < 2; p++) { for (l = level; l < 3; l++) { if (ctx->width <= mpeg2_upper_samplings[p][l].samplers_per_line && ctx->height <= mpeg2_upper_samplings[p][l].line_per_frame && ctx->fps <= mpeg2_upper_samplings[p][l].frame_per_sec) { goto __find; break; } } } if (p == 2) { fprintf(stderr, "Warning: can't find a proper profile and level for the specified width/height/fps\n"); p = 1; l = 2; } __find: ctx->profile = mpeg2_va_profiles[p]; ctx->level = l; } static void parse_args(struct mpeg2enc_context *ctx, int argc, char **argv) { int c, tmp; int option_index = 0; long file_size; int profile = 1, level = 1; static struct option long_options[] = { {"help", no_argument, 0, 'h'}, {"cqp", required_argument, 0, 'c'}, {"fps", required_argument, 0, 'f'}, {"mode", required_argument, 0, 'm'}, {"profile", required_argument, 0, 'p'}, {"level", required_argument, 0, 'l'}, { NULL, 0, NULL, 0 } }; if ((argc == 2 && strcmp(argv[1], "--help") == 0) || (argc < 5)) goto print_usage; ctx->width = atoi(argv[1]); ctx->height = atoi(argv[2]); if (ctx->width <= 0 || ctx->height <= 0) { fprintf(stderr, " and must be greater than 0\n"); goto err_exit; } ctx->ifp = fopen(argv[3], "rb"); if (ctx->ifp == NULL) { fprintf(stderr, "Can't open the input file\n"); goto err_exit; } fseek(ctx->ifp, 0l, SEEK_END); file_size = ftell(ctx->ifp); ctx->frame_size = ctx->width * ctx->height * 3 / 2; if ((file_size < ctx->frame_size) || (file_size % ctx->frame_size)) { fprintf(stderr, "The input file size %ld isn't a multiple of the frame size %d\n", file_size, ctx->frame_size); goto err_exit; } ctx->num_pictures = file_size / ctx->frame_size; fseek(ctx->ifp, 0l, SEEK_SET); ctx->ofp = fopen(argv[4], "wb"); if (ctx->ofp == NULL) { fprintf(stderr, "Can't create the output file\n"); goto err_exit; } opterr = 0; ctx->fps = 30; ctx->qp = 8; ctx->rate_control_mode = VA_RC_CQP; ctx->mode = MPEG2_MODE_IP; ctx->profile = VAProfileMPEG2Main; ctx->level = MPEG2_LEVEL_MAIN; optind = 5; while ((c = getopt_long(argc, argv, "", long_options, &option_index)) != -1) { switch (c) { case 'c': tmp = atoi(optarg); /* only support q_scale_type = 0 */ if (tmp > 62 || tmp < 2) { fprintf(stderr, "Warning: QP must be in [2, 62]\n"); if (tmp > 62) tmp = 62; if (tmp < 2) tmp = 2; } ctx->qp = tmp & 0xFE; ctx->rate_control_mode = VA_RC_CQP; break; case 'f': tmp = atoi(optarg); if (tmp <= 0) fprintf(stderr, "Warning: FPS must be greater than 0\n"); else ctx->fps = tmp; ctx->rate_control_mode = VA_RC_CBR; break; case 'm': tmp = atoi(optarg); if (tmp < MPEG2_MODE_I || tmp > MPEG2_MODE_IPB) fprintf(stderr, "Waning: MODE must be 0, 1, or 2\n"); else ctx->mode = tmp; break; case 'p': tmp = atoi(optarg); if (tmp < 0 || tmp > 1) fprintf(stderr, "Waning: PROFILE must be 0 or 1\n"); else profile = tmp; break; case 'l': tmp = atoi(optarg); if (tmp < MPEG2_LEVEL_LOW || tmp > MPEG2_LEVEL_HIGH) fprintf(stderr, "Waning: LEVEL must be 0, 1, or 2\n"); else level = tmp; break; case '?': fprintf(stderr, "Error: unkown command options\n"); case 'h': goto print_usage; } } mpeg2_profile_level(ctx, profile, level); return; print_usage: usage(argv[0]); err_exit: mpeg2enc_exit(ctx, 1); } /* * init */ void mpeg2enc_init_sequence_parameter(struct mpeg2enc_context *ctx, VAEncSequenceParameterBufferMPEG2 *seq_param) { int profile = 4, level = 8; switch (ctx->profile) { case VAProfileMPEG2Simple: profile = 5; break; case VAProfileMPEG2Main: profile = 4; break; default: assert(0); break; } switch (ctx->level) { case MPEG2_LEVEL_LOW: level = 10; break; case MPEG2_LEVEL_MAIN: level = 8; break; case MPEG2_LEVEL_HIGH: level = 4; break; default: assert(0); break; } seq_param->intra_period = ctx->intra_period; seq_param->ip_period = ctx->ip_period; /* FIXME: ??? */ seq_param->picture_width = ctx->width; seq_param->picture_height = ctx->height; if (ctx->bit_rate > 0) seq_param->bits_per_second = 1024 * ctx->bit_rate; /* use kbps as input */ else seq_param->bits_per_second = 0x3FFFF * 400; seq_param->frame_rate = ctx->fps; seq_param->aspect_ratio_information = 1; seq_param->vbv_buffer_size = 3; /* B = 16 * 1024 * vbv_buffer_size */ seq_param->sequence_extension.bits.profile_and_level_indication = profile << 4 | level; seq_param->sequence_extension.bits.progressive_sequence = 1; /* progressive frame-pictures */ seq_param->sequence_extension.bits.chroma_format = CHROMA_FORMAT_420; /* 4:2:0 */ seq_param->sequence_extension.bits.low_delay = 0; /* FIXME */ seq_param->sequence_extension.bits.frame_rate_extension_n = 0; seq_param->sequence_extension.bits.frame_rate_extension_d = 0; seq_param->gop_header.bits.time_code = (1 << 12); /* bit12: marker_bit */ seq_param->gop_header.bits.closed_gop = 0; seq_param->gop_header.bits.broken_link = 0; } static void mpeg2enc_init_picture_parameter(struct mpeg2enc_context *ctx, VAEncPictureParameterBufferMPEG2 *pic_param) { pic_param->forward_reference_picture = VA_INVALID_ID; pic_param->backward_reference_picture = VA_INVALID_ID; pic_param->reconstructed_picture = VA_INVALID_ID; pic_param->coded_buf = VA_INVALID_ID; pic_param->picture_type = VAEncPictureTypeIntra; pic_param->temporal_reference = 0; pic_param->f_code[0][0] = 0xf; pic_param->f_code[0][1] = 0xf; pic_param->f_code[1][0] = 0xf; pic_param->f_code[1][1] = 0xf; pic_param->picture_coding_extension.bits.intra_dc_precision = 0; /* 8bits */ pic_param->picture_coding_extension.bits.picture_structure = 3; /* frame picture */ pic_param->picture_coding_extension.bits.top_field_first = 0; pic_param->picture_coding_extension.bits.frame_pred_frame_dct = 1; /* FIXME */ pic_param->picture_coding_extension.bits.concealment_motion_vectors = 0; pic_param->picture_coding_extension.bits.q_scale_type = 0; pic_param->picture_coding_extension.bits.intra_vlc_format = 0; pic_param->picture_coding_extension.bits.alternate_scan = 0; pic_param->picture_coding_extension.bits.repeat_first_field = 0; pic_param->picture_coding_extension.bits.progressive_frame = 1; pic_param->picture_coding_extension.bits.composite_display_flag = 0; } static void mpeg2enc_alloc_va_resources(struct mpeg2enc_context *ctx) { VAEntrypoint *entrypoint_list; VAConfigAttrib attrib_list[2]; VAStatus va_status; int max_entrypoints, num_entrypoints, entrypoint; int major_ver, minor_ver; ctx->va_dpy = va_open_display(); va_status = vaInitialize(ctx->va_dpy, &major_ver, &minor_ver); CHECK_VASTATUS(va_status, "vaInitialize"); max_entrypoints = vaMaxNumEntrypoints(ctx->va_dpy); entrypoint_list = malloc(max_entrypoints * sizeof(VAEntrypoint)); assert(entrypoint_list); vaQueryConfigEntrypoints(ctx->va_dpy, ctx->profile, entrypoint_list, &num_entrypoints); for (entrypoint = 0; entrypoint < num_entrypoints; entrypoint++) { if (entrypoint_list[entrypoint] == VAEntrypointEncSlice) break; } free(entrypoint_list); if (entrypoint == num_entrypoints) { /* not find Slice entry point */ assert(0); } /* find out the format for the render target, and rate control mode */ attrib_list[0].type = VAConfigAttribRTFormat; attrib_list[1].type = VAConfigAttribRateControl; vaGetConfigAttributes(ctx->va_dpy, ctx->profile, VAEntrypointEncSlice, &attrib_list[0], 2); if ((attrib_list[0].value & VA_RT_FORMAT_YUV420) == 0) { /* not find desired YUV420 RT format */ assert(0); } if ((attrib_list[1].value & ctx->rate_control_mode) == 0) { /* Can't find matched RC mode */ fprintf(stderr, "RC mode %d isn't found, exit\n", ctx->rate_control_mode); assert(0); } attrib_list[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */ attrib_list[1].value = ctx->rate_control_mode; /* set to desired RC mode */ va_status = vaCreateConfig(ctx->va_dpy, ctx->profile, VAEntrypointEncSlice, attrib_list, 2, &ctx->config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); /* Create a context for this decode pipe */ va_status = vaCreateContext(ctx->va_dpy, ctx->config_id, ctx->width, ctx->height, VA_PROGRESSIVE, 0, 0, &ctx->context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); va_status = vaCreateSurfaces(ctx->va_dpy, VA_RT_FORMAT_YUV420, ctx->width, ctx->height, surface_ids, SID_NUMBER, NULL, 0); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); } static void mpeg2enc_init(struct mpeg2enc_context *ctx) { int i; ctx->frame_data_buffer = (unsigned char *)malloc(ctx->frame_size); ctx->seq_param_buf_id = VA_INVALID_ID; ctx->pic_param_buf_id = VA_INVALID_ID; ctx->packed_seq_header_param_buf_id = VA_INVALID_ID; ctx->packed_seq_buf_id = VA_INVALID_ID; ctx->packed_pic_header_param_buf_id = VA_INVALID_ID; ctx->packed_pic_buf_id = VA_INVALID_ID; ctx->codedbuf_buf_id = VA_INVALID_ID; ctx->codedbuf_i_size = ctx->frame_size; ctx->codedbuf_pb_size = 0; ctx->next_display_order = 0; ctx->next_type = VAEncPictureTypeIntra; if (ctx->mode == MPEG2_MODE_I) { ctx->intra_period = 1; ctx->ip_period = 0; } else if (ctx->mode == MPEG2_MODE_IP) { ctx->intra_period = 16; ctx->ip_period = 0; } else { ctx->intra_period = 16; ctx->ip_period = 2; } ctx->next_bframes = ctx->ip_period; ctx->new_sequence = 1; ctx->new_gop_header = 1; ctx->gop_header_in_display_order = 0; ctx->bit_rate = -1; for (i = 0; i < MAX_SLICES; i++) { ctx->slice_param_buf_id[i] = VA_INVALID_ID; } mpeg2enc_init_sequence_parameter(ctx, &ctx->seq_param); mpeg2enc_init_picture_parameter(ctx, &ctx->pic_param); mpeg2enc_alloc_va_resources(ctx); /* thread */ ctx->current_input_surface = SID_INPUT_PICTURE_0; ctx->current_upload_surface = SID_INPUT_PICTURE_1; ctx->upload_thread_value = pthread_create(&ctx->upload_thread_id, NULL, upload_yuv_to_surface, ctx); } static int mpeg2enc_time_code(VAEncSequenceParameterBufferMPEG2 *seq_param, int num_frames) { int fps = (int)(seq_param->frame_rate + 0.5); int time_code = 0; int time_code_pictures, time_code_seconds, time_code_minutes, time_code_hours; int drop_frame_flag = 0; assert(fps <= 60); time_code_seconds = num_frames / fps; time_code_pictures = num_frames % fps; time_code |= time_code_pictures; time_code_minutes = time_code_seconds / 60; time_code_seconds = time_code_seconds % 60; time_code |= (time_code_seconds << 6); time_code_hours = time_code_minutes / 60; time_code_minutes = time_code_minutes % 60; time_code |= (1 << 12); /* marker_bit */ time_code |= (time_code_minutes << 13); time_code_hours = time_code_hours % 24; time_code |= (time_code_hours << 19); time_code |= (drop_frame_flag << 24); return time_code; } /* * run */ static void mpeg2enc_update_sequence_parameter(struct mpeg2enc_context *ctx, VAEncPictureType picture_type, int coded_order, int display_order) { VAEncSequenceParameterBufferMPEG2 *seq_param = &ctx->seq_param; /* update the time_code info for the new GOP */ if (ctx->new_gop_header) { seq_param->gop_header.bits.time_code = mpeg2enc_time_code(seq_param, display_order); } } static void mpeg2enc_update_picture_parameter(struct mpeg2enc_context *ctx, VAEncPictureType picture_type, int coded_order, int display_order) { VAEncPictureParameterBufferMPEG2 *pic_param = &ctx->pic_param; uint8_t f_code_x, f_code_y; pic_param->picture_type = picture_type; pic_param->temporal_reference = (display_order - ctx->gop_header_in_display_order) & 0x3FF; pic_param->reconstructed_picture = surface_ids[SID_RECON_PICTURE]; pic_param->forward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L0]; pic_param->backward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L1]; f_code_x = 0xf; f_code_y = 0xf; if (pic_param->picture_type != VAEncPictureTypeIntra) { if (ctx->level == MPEG2_LEVEL_LOW) { f_code_x = 7; f_code_y = 4; } else if (ctx->level == MPEG2_LEVEL_MAIN) { f_code_x = 8; f_code_y = 5; } else { f_code_x = 9; f_code_y = 5; } } if (pic_param->picture_type == VAEncPictureTypeIntra) { pic_param->f_code[0][0] = 0xf; pic_param->f_code[0][1] = 0xf; pic_param->f_code[1][0] = 0xf; pic_param->f_code[1][1] = 0xf; pic_param->forward_reference_picture = VA_INVALID_SURFACE; pic_param->backward_reference_picture = VA_INVALID_SURFACE; } else if (pic_param->picture_type == VAEncPictureTypePredictive) { pic_param->f_code[0][0] = f_code_x; pic_param->f_code[0][1] = f_code_y; pic_param->f_code[1][0] = 0xf; pic_param->f_code[1][1] = 0xf; pic_param->forward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L0]; pic_param->backward_reference_picture = VA_INVALID_SURFACE; } else if (pic_param->picture_type == VAEncPictureTypeBidirectional) { pic_param->f_code[0][0] = f_code_x; pic_param->f_code[0][1] = f_code_y; pic_param->f_code[1][0] = f_code_x; pic_param->f_code[1][1] = f_code_y; pic_param->forward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L0]; pic_param->backward_reference_picture = surface_ids[SID_REFERENCE_PICTURE_L1]; } else { assert(0); } } static void mpeg2enc_update_picture_parameter_buffer(struct mpeg2enc_context *ctx, VAEncPictureType picture_type, int coded_order, int display_order) { VAEncPictureParameterBufferMPEG2 *pic_param = &ctx->pic_param; VAStatus va_status; /* update the coded buffer id */ pic_param->coded_buf = ctx->codedbuf_buf_id; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPictureParameterBufferType, sizeof(*pic_param), 1, pic_param, &ctx->pic_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } static void mpeg2enc_update_slice_parameter(struct mpeg2enc_context *ctx, VAEncPictureType picture_type) { VAEncSequenceParameterBufferMPEG2 *seq_param; VAEncPictureParameterBufferMPEG2 *pic_param; VAEncSliceParameterBufferMPEG2 *slice_param; VAStatus va_status; int i, width_in_mbs, height_in_mbs; pic_param = &ctx->pic_param; assert(pic_param->picture_coding_extension.bits.q_scale_type == 0); seq_param = &ctx->seq_param; width_in_mbs = (seq_param->picture_width + 15) / 16; height_in_mbs = (seq_param->picture_height + 15) / 16; ctx->num_slice_groups = 1; for (i = 0; i < height_in_mbs; i++) { slice_param = &ctx->slice_param[i]; slice_param->macroblock_address = i * width_in_mbs; slice_param->num_macroblocks = width_in_mbs; slice_param->is_intra_slice = (picture_type == VAEncPictureTypeIntra); slice_param->quantiser_scale_code = ctx->qp / 2; } va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncSliceParameterBufferType, sizeof(*slice_param), height_in_mbs, ctx->slice_param, ctx->slice_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer");; } static int begin_picture(struct mpeg2enc_context *ctx, int coded_order, int display_order, VAEncPictureType picture_type) { VAStatus va_status; int tmp; VAEncPackedHeaderParameterBuffer packed_header_param_buffer; unsigned int length_in_bits; unsigned char *packed_seq_buffer = NULL, *packed_pic_buffer = NULL; if (ctx->upload_thread_value != 0) { fprintf(stderr, "FATAL error!!!\n"); exit(1); } pthread_join(ctx->upload_thread_id, NULL); ctx->upload_thread_value = -1; tmp = ctx->current_input_surface; ctx->current_input_surface = ctx->current_upload_surface; ctx->current_upload_surface = tmp; mpeg2enc_update_sequence_parameter(ctx, picture_type, coded_order, display_order); mpeg2enc_update_picture_parameter(ctx, picture_type, coded_order, display_order); if (ctx->new_sequence || ctx->new_gop_header) { assert(picture_type == VAEncPictureTypeIntra); length_in_bits = build_packed_seq_buffer(ctx, &ctx->seq_param, &packed_seq_buffer); packed_header_param_buffer.type = VAEncPackedHeaderMPEG2_SPS; packed_header_param_buffer.has_emulation_bytes = 0; packed_header_param_buffer.bit_length = length_in_bits; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &ctx->packed_seq_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_seq_buffer, &ctx->packed_seq_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); free(packed_seq_buffer); } length_in_bits = build_packed_pic_buffer(&ctx->seq_param, &ctx->pic_param, &packed_pic_buffer); packed_header_param_buffer.type = VAEncPackedHeaderMPEG2_PPS; packed_header_param_buffer.has_emulation_bytes = 0; packed_header_param_buffer.bit_length = length_in_bits; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &ctx->packed_pic_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_pic_buffer, &ctx->packed_pic_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); free(packed_pic_buffer); /* sequence parameter set */ VAEncSequenceParameterBufferMPEG2 *seq_param = &ctx->seq_param; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncSequenceParameterBufferType, sizeof(*seq_param), 1, seq_param, &ctx->seq_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer");; /* slice parameter */ mpeg2enc_update_slice_parameter(ctx, picture_type); return 0; } static int mpeg2enc_render_picture(struct mpeg2enc_context *ctx) { VAStatus va_status; VABufferID va_buffers[16]; unsigned int num_va_buffers = 0; va_buffers[num_va_buffers++] = ctx->seq_param_buf_id; va_buffers[num_va_buffers++] = ctx->pic_param_buf_id; if (ctx->packed_seq_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_seq_header_param_buf_id; if (ctx->packed_seq_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_seq_buf_id; if (ctx->packed_pic_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_pic_header_param_buf_id; if (ctx->packed_pic_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_pic_buf_id; va_status = vaBeginPicture(ctx->va_dpy, ctx->context_id, surface_ids[ctx->current_input_surface]); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(ctx->va_dpy, ctx->context_id, va_buffers, num_va_buffers); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(ctx->va_dpy, ctx->context_id, &ctx->slice_param_buf_id[0], ctx->num_slice_groups); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(ctx->va_dpy, ctx->context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); return 0; } static int mpeg2enc_destroy_buffers(struct mpeg2enc_context *ctx, VABufferID *va_buffers, unsigned int num_va_buffers) { VAStatus va_status; unsigned int i; for (i = 0; i < num_va_buffers; i++) { if (va_buffers[i] != VA_INVALID_ID) { va_status = vaDestroyBuffer(ctx->va_dpy, va_buffers[i]); CHECK_VASTATUS(va_status, "vaDestroyBuffer"); va_buffers[i] = VA_INVALID_ID; } } return 0; } static void end_picture(struct mpeg2enc_context *ctx, VAEncPictureType picture_type, int next_is_bpic) { VABufferID tempID; /* Prepare for next picture */ tempID = surface_ids[SID_RECON_PICTURE]; if (picture_type != VAEncPictureTypeBidirectional) { if (next_is_bpic) { surface_ids[SID_RECON_PICTURE] = surface_ids[SID_REFERENCE_PICTURE_L1]; surface_ids[SID_REFERENCE_PICTURE_L1] = tempID; } else { surface_ids[SID_RECON_PICTURE] = surface_ids[SID_REFERENCE_PICTURE_L0]; surface_ids[SID_REFERENCE_PICTURE_L0] = tempID; } } else { if (!next_is_bpic) { surface_ids[SID_RECON_PICTURE] = surface_ids[SID_REFERENCE_PICTURE_L0]; surface_ids[SID_REFERENCE_PICTURE_L0] = surface_ids[SID_REFERENCE_PICTURE_L1]; surface_ids[SID_REFERENCE_PICTURE_L1] = tempID; } } mpeg2enc_destroy_buffers(ctx, &ctx->seq_param_buf_id, 1); mpeg2enc_destroy_buffers(ctx, &ctx->pic_param_buf_id, 1); mpeg2enc_destroy_buffers(ctx, &ctx->packed_seq_header_param_buf_id, 1); mpeg2enc_destroy_buffers(ctx, &ctx->packed_seq_buf_id, 1); mpeg2enc_destroy_buffers(ctx, &ctx->packed_pic_header_param_buf_id, 1); mpeg2enc_destroy_buffers(ctx, &ctx->packed_pic_buf_id, 1); mpeg2enc_destroy_buffers(ctx, &ctx->slice_param_buf_id[0], ctx->num_slice_groups); mpeg2enc_destroy_buffers(ctx, &ctx->codedbuf_buf_id, 1); memset(ctx->slice_param, 0, sizeof(ctx->slice_param)); ctx->num_slice_groups = 0; } static int store_coded_buffer(struct mpeg2enc_context *ctx, VAEncPictureType picture_type) { VACodedBufferSegment *coded_buffer_segment; unsigned char *coded_mem; int slice_data_length; VAStatus va_status; VASurfaceStatus surface_status; size_t w_items; va_status = vaSyncSurface(ctx->va_dpy, surface_ids[ctx->current_input_surface]); CHECK_VASTATUS(va_status, "vaSyncSurface"); surface_status = 0; va_status = vaQuerySurfaceStatus(ctx->va_dpy, surface_ids[ctx->current_input_surface], &surface_status); CHECK_VASTATUS(va_status, "vaQuerySurfaceStatus"); va_status = vaMapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id, (void **)(&coded_buffer_segment)); CHECK_VASTATUS(va_status, "vaMapBuffer"); coded_mem = coded_buffer_segment->buf; if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) { if (picture_type == VAEncPictureTypeIntra) ctx->codedbuf_i_size *= 2; else ctx->codedbuf_pb_size *= 2; vaUnmapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id); return -1; } slice_data_length = coded_buffer_segment->size; do { w_items = fwrite(coded_mem, slice_data_length, 1, ctx->ofp); } while (w_items != 1); if (picture_type == VAEncPictureTypeIntra) { if (ctx->codedbuf_i_size > slice_data_length * 3 / 2) { ctx->codedbuf_i_size = slice_data_length * 3 / 2; } if (ctx->codedbuf_pb_size < slice_data_length) { ctx->codedbuf_pb_size = slice_data_length; } } else { if (ctx->codedbuf_pb_size > slice_data_length * 3 / 2) { ctx->codedbuf_pb_size = slice_data_length * 3 / 2; } } vaUnmapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id); return 0; } static void encode_picture(struct mpeg2enc_context *ctx, int coded_order, int display_order, VAEncPictureType picture_type, int next_is_bpic, int next_display_order) { VAStatus va_status; int ret = 0, codedbuf_size; begin_picture(ctx, coded_order, display_order, picture_type); if (1) { /* upload YUV data to VA surface for next frame */ if (next_display_order >= ctx->num_pictures) next_display_order = ctx->num_pictures - 1; ret = fseek(ctx->ifp, ctx->frame_size * next_display_order, SEEK_SET); CHECK_CONDITION(ret == 0); ctx->upload_thread_value = pthread_create(&ctx->upload_thread_id, NULL, upload_yuv_to_surface, ctx); } do { mpeg2enc_destroy_buffers(ctx, &ctx->codedbuf_buf_id, 1); mpeg2enc_destroy_buffers(ctx, &ctx->pic_param_buf_id, 1); if (VAEncPictureTypeIntra == picture_type) { codedbuf_size = ctx->codedbuf_i_size; } else { codedbuf_size = ctx->codedbuf_pb_size; } /* coded buffer */ va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncCodedBufferType, codedbuf_size, 1, NULL, &ctx->codedbuf_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* picture parameter set */ mpeg2enc_update_picture_parameter_buffer(ctx, picture_type, coded_order, display_order); mpeg2enc_render_picture(ctx); ret = store_coded_buffer(ctx, picture_type); } while (ret); end_picture(ctx, picture_type, next_is_bpic); } static void update_next_frame_info(struct mpeg2enc_context *ctx, VAEncPictureType curr_type, int curr_coded_order, int curr_display_order) { if (((curr_coded_order + 1) % ctx->intra_period) == 0) { ctx->next_type = VAEncPictureTypeIntra; ctx->next_display_order = curr_coded_order + 1; return; } if (curr_type == VAEncPictureTypeIntra) { assert(curr_display_order == curr_coded_order); ctx->next_type = VAEncPictureTypePredictive; ctx->next_bframes = ctx->ip_period; ctx->next_display_order = curr_display_order + ctx->next_bframes + 1; } else if (curr_type == VAEncPictureTypePredictive) { if (ctx->ip_period == 0) { assert(curr_display_order == curr_coded_order); ctx->next_type = VAEncPictureTypePredictive; ctx->next_display_order = curr_display_order + 1; } else { ctx->next_type = VAEncPictureTypeBidirectional; ctx->next_display_order = curr_display_order - ctx->next_bframes; ctx->next_bframes--; } } else if (curr_type == VAEncPictureTypeBidirectional) { if (ctx->next_bframes == 0) { ctx->next_type = VAEncPictureTypePredictive; ctx->next_bframes = ctx->ip_period; ctx->next_display_order = curr_display_order + ctx->next_bframes + 2; } else { ctx->next_type = VAEncPictureTypeBidirectional; ctx->next_display_order = curr_display_order + 1; ctx->next_bframes--; } } if (ctx->next_display_order >= ctx->num_pictures) { int rtmp = ctx->next_display_order - (ctx->num_pictures - 1); ctx->next_display_order = ctx->num_pictures - 1; ctx->next_bframes -= rtmp; } } static void mpeg2enc_run(struct mpeg2enc_context *ctx) { int display_order = 0, coded_order = 0; VAEncPictureType type; ctx->new_sequence = 1; ctx->new_gop_header = 1; ctx->gop_header_in_display_order = display_order; while (coded_order < ctx->num_pictures) { type = ctx->next_type; display_order = ctx->next_display_order; /* follow the IPBxxBPBxxB mode */ update_next_frame_info(ctx, type, coded_order, display_order); encode_picture(ctx, coded_order, display_order, type, ctx->next_type == VAEncPictureTypeBidirectional, ctx->next_display_order); /* update gop_header */ ctx->new_sequence = 0; ctx->new_gop_header = ctx->next_type == VAEncPictureTypeIntra; if (ctx->new_gop_header) ctx->gop_header_in_display_order += ctx->intra_period; coded_order++; fprintf(stderr, "\r %d/%d ...", coded_order, ctx->num_pictures); fflush(stdout); } } /* * end */ static void mpeg2enc_release_va_resources(struct mpeg2enc_context *ctx) { vaDestroySurfaces(ctx->va_dpy, surface_ids, SID_NUMBER); vaDestroyContext(ctx->va_dpy, ctx->context_id); vaDestroyConfig(ctx->va_dpy, ctx->config_id); vaTerminate(ctx->va_dpy); va_close_display(ctx->va_dpy); } static void mpeg2enc_end(struct mpeg2enc_context *ctx) { pthread_join(ctx->upload_thread_id, NULL); mpeg2enc_release_va_resources(ctx); } int main(int argc, char *argv[]) { struct mpeg2enc_context ctx; struct timeval tpstart, tpend; float timeuse; gettimeofday(&tpstart, NULL); memset(&ctx, 0, sizeof(ctx)); if (argv) { parse_args(&ctx, argc, argv); } mpeg2enc_init(&ctx); mpeg2enc_run(&ctx); mpeg2enc_end(&ctx); gettimeofday(&tpend, NULL); timeuse = 1000000 * (tpend.tv_sec - tpstart.tv_sec) + tpend.tv_usec - tpstart.tv_usec; timeuse /= 1000000; fprintf(stderr, "\ndone!\n"); fprintf(stderr, "encode %d frames in %f secondes, FPS is %.1f\n", ctx.num_pictures, timeuse, ctx.num_pictures / timeuse); mpeg2enc_exit(&ctx, 0); return 0; } ================================================ FILE: encode/svctenc.c ================================================ /* * Copyright (c) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ /* * Simple H.264/AVC temporal scalability encoder based on libVA. * */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #define SLICE_TYPE_P 0 #define SLICE_TYPE_B 1 #define SLICE_TYPE_I 2 #define IS_I_SLICE(type) (SLICE_TYPE_I == (type) || SLICE_TYPE_I == (type - 5)) #define IS_P_SLICE(type) (SLICE_TYPE_P == (type) || SLICE_TYPE_P == (type - 5)) #define IS_B_SLICE(type) (SLICE_TYPE_B == (type) || SLICE_TYPE_B == (type - 5)) #define NAL_REF_IDC_NONE 0 #define NAL_REF_IDC_LOW 1 #define NAL_REF_IDC_MEDIUM 2 #define NAL_REF_IDC_HIGH 3 #define NAL_NON_IDR 1 #define NAL_IDR 5 #define NAL_SEI 6 #define NAL_SPS 7 #define NAL_PPS 8 #define NAL_PREFIX 14 #define NAL_SUBSET_SPS 15 #define ENTROPY_MODE_CAVLC 0 #define ENTROPY_MODE_CABAC 1 #define PROFILE_IDC_BASELINE 66 #define PROFILE_IDC_MAIN 77 #define PROFILE_IDC_SCALABLE_BASELINE 83 #define PROFILE_IDC_SCALABLE_HIGH 86 #define PROFILE_IDC_HIGH 100 #define SRC_SURFACE_IN_ENCODING 0 #define SRC_SURFACE_IN_STORAGE 1 #define NUM_SURFACES 32 #define ARRAY_ELEMS(a) (sizeof(a) / sizeof((a)[0])) #define CHECK_VASTATUS(va_status, func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed, exit\n", __func__, func, __LINE__); \ exit(1); \ } #define CHECK_CONDITION(cond) \ if(!(cond)) \ { \ fprintf(stderr, "Unexpected condition: %s:%d\n", __func__, __LINE__); \ exit(1); \ } #define MAX_SLICES 32 #define MAX_LAYERS 4 #define MIN(a, b) ((a) > (b) ? (b) : (a)) #define MAX(a, b) ((a) > (b) ? (a) : (b)) static VASurfaceID src_surfaces[NUM_SURFACES]; static VASurfaceID rec_surfaces[NUM_SURFACES]; static int src_surface_status[NUM_SURFACES]; static int temporal_ids_in_bgop[16] = { // index is (encoding order) % gop_size - 1, available from the 2nd encoded frame 0, /* temporal 0 */ 1, /* temporal 1 */ 2, 2, /* temporal 2 */ 3, 3, 3, 3, /* temporal 3 */ 4, 4, 4, 4, 4, 4, 4, 4 /* temporal 4 */ }; static int temporal_ids_in_pgop[16] = { // index is (encoding order) % gop_size - 1, available from the 2nd encoded frame 1, 2, 1, 3, // each element is (the number of temporal layers - temporal id) 1, 2, 1, 3, 1, 2, 1, 3, 1, 2, 1, 3, }; static int gop_factors_in_bgop[16] = { 1, 1, 1, 3, 1, 3, 5, 7, 1, 3, 5, 7, 9, 11, 13, 15 }; static float frame_rates[4] = { 7.5, 15, 30, 60, }; static VAProfile g_va_profiles[] = { VAProfileH264High, VAProfileH264ConstrainedBaseline, }; typedef struct _svcenc_surface { int slot_in_surfaces; /* index in src_surfaces and rec_surfaces */ int coding_order; int display_order; int temporal_id; int frame_num; int poc; unsigned int is_intra : 1; unsigned int is_idr : 1; unsigned int is_ref : 1; VAEncPictureType picture_type; VASurfaceID rec_surface; } svcenc_surface; static svcenc_surface ref_frames[16], ref_list0[32], ref_list1[32]; static pthread_mutex_t upload_mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t upload_cond = PTHREAD_COND_INITIALIZER; struct upload_task_t { void *next; unsigned int display_order; unsigned int surface; }; struct svcenc_context { /* parameter info */ FILE *ifp; /* a FILE pointer for source YUV file */ FILE *ofp; /* a FILE pointer for output SVC file */ int width; int height; int frame_size; int num_pictures; int num_slices; int qp; /* quantisation parameter, default value is 26 */ unsigned char *frame_data_buffer; /* buffer for input surface, the length is the maximum frame_size */ int gop_size; int max_num_ref_frames; int num_ref_frames; int hierarchical_levels; int layer_brc; /* the info for next picture in encoding order */ svcenc_surface next_svcenc_surface; /* GOP info */ int intra_idr_period; int intra_period; int ip_period; int num_remainder_bframes; int gop_type; /* 0: p hierarchical, 1: B hierarchical, default is 0 */ /* bitrate info */ int rate_control_mode; int bits_per_kbps; int framerate_per_100s; int i_initial_cpb_removal_delay; int i_initial_cpb_removal_delay_offset; int i_initial_cpb_removal_delay_length; int i_cpb_removal_delay; int i_cpb_removal_delay_length; int i_dpb_output_delay_length; int time_offset_length; unsigned long long idr_frame_num; unsigned long long prev_idr_cpb_removal; unsigned long long current_idr_cpb_removal; unsigned long long current_cpb_removal; /* This is relative to the current_cpb_removal */ unsigned int current_dpb_removal_delta; int profile_idc; int constraint_set_flag; int svc_profile_idc; int svc_constraint_set_flag; /* reordering info for l0/l1, * bit0-3: ref_pic_list_modification_flag_lX (X=0,1), * bit4-7: modification_of_pic_nums_idc, * bit8-15: abs_diff_pic_num_minus1 * bit16-23: num_ref_idx_active_override_flag * bit24-31: num_ref_idx_lX_active_minus1 (X=0,1), */ unsigned int reordering_info[2]; /* VA info */ VADisplay va_dpy; VAProfile profile; VAEncSequenceParameterBufferH264 seq_param; VAEncPictureParameterBufferH264 pic_param; VAEncSliceParameterBufferH264 slice_param[MAX_SLICES]; VAContextID context_id; VAConfigID config_id; VABufferID seq_param_buf_id; /* Sequence level parameter */ VABufferID pic_param_buf_id; /* Picture level parameter */ VABufferID slice_param_buf_id[MAX_SLICES]; /* Slice level parameter, multil slices */ VABufferID codedbuf_buf_id; /* Output buffer, compressed data */ VABufferID packed_sei_scalability_info_header_param_buf_id; VABufferID packed_sei_scalability_info_buf_id; VABufferID packed_seq_header_param_buf_id; VABufferID packed_seq_buf_id; VABufferID packed_svc_seq_header_param_buf_id; VABufferID packed_svc_seq_buf_id; VABufferID packed_pic_header_param_buf_id; VABufferID packed_pic_buf_id; VABufferID packed_sei_header_param_buf_id; /* the SEI buffer */ VABufferID packed_sei_buf_id; VABufferID misc_parameter_layer_structure_buf_id; VABufferID misc_parameter_ratecontrol_buf_id[MAX_LAYERS]; VABufferID misc_parameter_framerate_buf_id[MAX_LAYERS]; VABufferID misc_parameter_hrd_buf_id; VABufferID packed_slice_header_param_buf_id[MAX_SLICES]; VABufferID packed_slice_header_data_buf_id[MAX_SLICES]; VABufferID packed_prefix_nal_unit_param_buf_id[MAX_SLICES]; VABufferID packed_prefix_nal_unit_data_buf_id[MAX_SLICES]; /* thread info */ pthread_t upload_thread; struct upload_task_t *upload_task_header; struct upload_task_t *upload_task_tail; }; /* bitstream */ #define BITSTREAM_ALLOCATE_STEPPING 4096 struct __bitstream { unsigned int *buffer; int bit_offset; int max_size_in_dword; }; typedef struct __bitstream bitstream; static unsigned int va_swap32(unsigned int val) { unsigned char *pval = (unsigned char *)&val; return ((pval[0] << 24) | (pval[1] << 16) | (pval[2] << 8) | (pval[3] << 0)); } static void bitstream_start(bitstream *bs) { bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING; bs->buffer = calloc(bs->max_size_in_dword * sizeof(int), 1); bs->bit_offset = 0; } static void bitstream_end(bitstream *bs) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (bit_offset) { bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left)); } } static void bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits) { int pos = (bs->bit_offset >> 5); int bit_offset = (bs->bit_offset & 0x1f); int bit_left = 32 - bit_offset; if (!size_in_bits) return; bs->bit_offset += size_in_bits; if (bit_left > size_in_bits) { bs->buffer[pos] = (bs->buffer[pos] << size_in_bits | val); } else { size_in_bits -= bit_left; bs->buffer[pos] = (bs->buffer[pos] << bit_left) | (val >> size_in_bits); bs->buffer[pos] = va_swap32(bs->buffer[pos]); if (pos + 1 == bs->max_size_in_dword) { bs->max_size_in_dword += BITSTREAM_ALLOCATE_STEPPING; bs->buffer = realloc(bs->buffer, bs->max_size_in_dword * sizeof(unsigned int)); assert(bs->buffer); } bs->buffer[pos + 1] = val; } } static void bitstream_put_ue(bitstream *bs, unsigned int val) { int size_in_bits = 0; int tmp_val = ++val; while (tmp_val) { tmp_val >>= 1; size_in_bits++; } bitstream_put_ui(bs, 0, size_in_bits - 1); // leading zero bitstream_put_ui(bs, val, size_in_bits); } static void bitstream_put_se(bitstream *bs, int val) { unsigned int new_val; if (val <= 0) new_val = -2 * val; else new_val = 2 * val - 1; bitstream_put_ue(bs, new_val); } static void bitstream_byte_aligning(bitstream *bs, int bit) { int bit_offset = (bs->bit_offset & 0x7); int bit_left = 8 - bit_offset; int new_val; if (!bit_offset) return; assert(bit == 0 || bit == 1); if (bit) new_val = (1 << bit_left) - 1; else new_val = 0; bitstream_put_ui(bs, new_val, bit_left); } static void rbsp_trailing_bits(bitstream *bs) { bitstream_put_ui(bs, 1, 1); bitstream_byte_aligning(bs, 0); } static void nal_start_code_prefix(bitstream *bs) { bitstream_put_ui(bs, 0x00000001, 32); } static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type) { bitstream_put_ui(bs, 0, 1); /* forbidden_zero_bit: 0 */ bitstream_put_ui(bs, nal_ref_idc, 2); bitstream_put_ui(bs, nal_unit_type, 5); } static void sps_data(struct svcenc_context *ctx, const VAEncSequenceParameterBufferH264 *seq_param, bitstream *bs) { bitstream_put_ui(bs, ctx->profile_idc, 8); /* profile_idc */ bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 1), 1); /* constraint_set0_flag */ bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 2), 1); /* constraint_set1_flag */ bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 4), 1); /* constraint_set2_flag */ bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 8), 1); /* constraint_set3_flag */ bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 16), 1); /* constraint_set4_flag */ bitstream_put_ui(bs, !!(ctx->constraint_set_flag & 32), 1); /* constraint_set5_flag */ bitstream_put_ui(bs, 0, 2); /* reserved_zero_2bits */ bitstream_put_ui(bs, seq_param->level_idc, 8); /* level_idc */ bitstream_put_ue(bs, seq_param->seq_parameter_set_id); /* seq_parameter_set_id */ if (ctx->profile_idc == PROFILE_IDC_HIGH || ctx->profile_idc == PROFILE_IDC_SCALABLE_HIGH || ctx->profile_idc == PROFILE_IDC_SCALABLE_BASELINE) { bitstream_put_ue(bs, 1); /* chroma_format_idc = 1, 4:2:0 */ bitstream_put_ue(bs, 0); /* bit_depth_luma_minus8 */ bitstream_put_ue(bs, 0); /* bit_depth_chroma_minus8 */ bitstream_put_ui(bs, 0, 1); /* qpprime_y_zero_transform_bypass_flag */ bitstream_put_ui(bs, 0, 1); /* seq_scaling_matrix_present_flag */ } bitstream_put_ue(bs, seq_param->seq_fields.bits.log2_max_frame_num_minus4); /* log2_max_frame_num_minus4 */ bitstream_put_ue(bs, seq_param->seq_fields.bits.pic_order_cnt_type); /* pic_order_cnt_type */ if (seq_param->seq_fields.bits.pic_order_cnt_type == 0) bitstream_put_ue(bs, seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4); /* log2_max_pic_order_cnt_lsb_minus4 */ else { assert(0); } bitstream_put_ue(bs, seq_param->max_num_ref_frames); /* num_ref_frames */ bitstream_put_ui(bs, 0, 1); /* gaps_in_frame_num_value_allowed_flag */ bitstream_put_ue(bs, seq_param->picture_width_in_mbs - 1); /* pic_width_in_mbs_minus1 */ bitstream_put_ue(bs, seq_param->picture_height_in_mbs - 1); /* pic_height_in_map_units_minus1 */ bitstream_put_ui(bs, seq_param->seq_fields.bits.frame_mbs_only_flag, 1); /* frame_mbs_only_flag */ if (!seq_param->seq_fields.bits.frame_mbs_only_flag) { assert(0); } bitstream_put_ui(bs, seq_param->seq_fields.bits.direct_8x8_inference_flag, 1); /* direct_8x8_inference_flag */ bitstream_put_ui(bs, seq_param->frame_cropping_flag, 1); /* frame_cropping_flag */ if (seq_param->frame_cropping_flag) { bitstream_put_ue(bs, seq_param->frame_crop_left_offset); /* frame_crop_left_offset */ bitstream_put_ue(bs, seq_param->frame_crop_right_offset); /* frame_crop_right_offset */ bitstream_put_ue(bs, seq_param->frame_crop_top_offset); /* frame_crop_top_offset */ bitstream_put_ue(bs, seq_param->frame_crop_bottom_offset); /* frame_crop_bottom_offset */ } if (ctx->bits_per_kbps < 0) { bitstream_put_ui(bs, 0, 1); /* vui_parameters_present_flag */ } else { bitstream_put_ui(bs, 1, 1); /* vui_parameters_present_flag */ bitstream_put_ui(bs, 0, 1); /* aspect_ratio_info_present_flag */ bitstream_put_ui(bs, 0, 1); /* overscan_info_present_flag */ bitstream_put_ui(bs, 0, 1); /* video_signal_type_present_flag */ bitstream_put_ui(bs, 0, 1); /* chroma_loc_info_present_flag */ bitstream_put_ui(bs, 1, 1); /* timing_info_present_flag */ { bitstream_put_ui(bs, seq_param->num_units_in_tick, 32); bitstream_put_ui(bs, seq_param->time_scale, 32); bitstream_put_ui(bs, 1, 1); } bitstream_put_ui(bs, 1, 1); /* nal_hrd_parameters_present_flag */ { // hrd_parameters bitstream_put_ue(bs, 0); /* cpb_cnt_minus1 */ bitstream_put_ui(bs, 0, 4); /* bit_rate_scale */ bitstream_put_ui(bs, 2, 4); /* cpb_size_scale */ /* the bits_per_kbps is in kbps */ bitstream_put_ue(bs, (((ctx->bits_per_kbps * 1024) >> 6) - 1)); /* bit_rate_value_minus1[0] */ bitstream_put_ue(bs, ((ctx->bits_per_kbps * 8 * 1024) >> 6) - 1); /* cpb_size_value_minus1[0] */ bitstream_put_ui(bs, 1, 1); /* cbr_flag[0] */ /* initial_cpb_removal_delay_length_minus1 */ bitstream_put_ui(bs, (ctx->i_initial_cpb_removal_delay_length - 1), 5); /* cpb_removal_delay_length_minus1 */ bitstream_put_ui(bs, (ctx->i_cpb_removal_delay_length - 1), 5); /* dpb_output_delay_length_minus1 */ bitstream_put_ui(bs, (ctx->i_dpb_output_delay_length - 1), 5); /* time_offset_length */ bitstream_put_ui(bs, (ctx->time_offset_length - 1), 5); } bitstream_put_ui(bs, 0, 1); /* vcl_hrd_parameters_present_flag */ bitstream_put_ui(bs, 0, 1); /* low_delay_hrd_flag */ bitstream_put_ui(bs, 0, 1); /* pic_struct_present_flag */ bitstream_put_ui(bs, 0, 1); /* bitstream_restriction_flag */ } } static void sps_svc_extension(struct svcenc_context *ctx, const VAEncSequenceParameterBufferH264 *sps_param, bitstream *bs) { bitstream_put_ui(bs, 0, 1); /* inter_layer_deblocking_filter_control_present_flag */ bitstream_put_ui(bs, 0, 2); /* extended_spatial_scalability_idc */ /* if (ChromaArrayType == 1) */ bitstream_put_ui(bs, 0, 1); /* chroma_phase_x_plus1_flag */ bitstream_put_ui(bs, 1, 2); /* chroma_phase_y_plus1 */ #if 0 if (extended_spatial_scalability_idc == 1) { /* if (ChromaArrayType > 0) */ bitstream_put_ui(bs, 0, 1); /* seq_ref_layer_chroma_phase_x_plus1_flag */ bitstream_put_ui(bs, 0, 2); /* seq_ref_layer_chroma_phase_y_plus1 */ bitstream_put_se(bs, 0); /* seq_scaled_ref_layer_left_offset */ bitstream_put_se(bs, 0); /* seq_scaled_ref_layer_top_offset */ bitstream_put_se(bs, 0); /* seq_scaled_ref_layer_right_offset */ bitstream_put_se(bs, 0); /* seq_scaled_ref_layer_bottom_offset */ } #endif bitstream_put_ui(bs, 0, 1); /* seq_tcoeff_level_prediction_flag */ #if 0 if (seq_tcoeff_level_prediction_flag) bitstream_put_ui(bs, 0, 1); /* adaptive_tcoeff_level_prediction_flag */ #endif bitstream_put_ui(bs, 0, 1); /* slice_header_restriction_flag */ } static void sps_svc_vui_parameters_extension(struct svcenc_context *ctx, const VAEncSequenceParameterBufferH264 *sps_param, bitstream *bs) { bitstream_put_ui(bs, 0, 1); /* svc_vui_parameters_present_flag */ } static void sps_additional_extension2(struct svcenc_context *ctx, const VAEncSequenceParameterBufferH264 *sps_param, bitstream *bs) { bitstream_put_ui(bs, 0, 1); /* additional_extension2_flag */ } static void pps_rbsp(struct svcenc_context *ctx, const VAEncPictureParameterBufferH264 *pic_param, bitstream *bs) { bitstream_put_ue(bs, pic_param->pic_parameter_set_id); /* pic_parameter_set_id */ bitstream_put_ue(bs, pic_param->seq_parameter_set_id); /* seq_parameter_set_id */ bitstream_put_ui(bs, pic_param->pic_fields.bits.entropy_coding_mode_flag, 1); /* entropy_coding_mode_flag */ bitstream_put_ui(bs, 0, 1); /* pic_order_present_flag: 0 */ bitstream_put_ue(bs, 0); /* num_slice_groups_minus1 */ bitstream_put_ue(bs, pic_param->num_ref_idx_l0_active_minus1); /* num_ref_idx_l0_active_minus1 */ bitstream_put_ue(bs, pic_param->num_ref_idx_l1_active_minus1); /* num_ref_idx_l1_active_minus1 1 */ bitstream_put_ui(bs, pic_param->pic_fields.bits.weighted_pred_flag, 1); /* weighted_pred_flag: 0 */ bitstream_put_ui(bs, pic_param->pic_fields.bits.weighted_bipred_idc, 2); /* weighted_bipred_idc: 0 */ bitstream_put_se(bs, pic_param->pic_init_qp - 26); /* pic_init_qp_minus26 */ bitstream_put_se(bs, 0); /* pic_init_qs_minus26 */ bitstream_put_se(bs, 0); /* chroma_qp_index_offset */ bitstream_put_ui(bs, pic_param->pic_fields.bits.deblocking_filter_control_present_flag, 1); /* deblocking_filter_control_present_flag */ bitstream_put_ui(bs, 0, 1); /* constrained_intra_pred_flag */ bitstream_put_ui(bs, 0, 1); /* redundant_pic_cnt_present_flag */ /* more_rbsp_data */ bitstream_put_ui(bs, pic_param->pic_fields.bits.transform_8x8_mode_flag, 1); /*transform_8x8_mode_flag */ bitstream_put_ui(bs, 0, 1); /* pic_scaling_matrix_present_flag */ bitstream_put_se(bs, pic_param->second_chroma_qp_index_offset); /*second_chroma_qp_index_offset */ rbsp_trailing_bits(bs); } static int build_packed_seq_buffer(struct svcenc_context *ctx, const VAEncSequenceParameterBufferH264 *seq_param, unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SPS); sps_data(ctx, seq_param, &bs); rbsp_trailing_bits(&bs); /* rbsp_trailing_bits */ bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_subset_seq_buffer(struct svcenc_context *ctx, const VAEncSequenceParameterBufferH264 *seq_param, unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_HIGH, NAL_SUBSET_SPS); sps_data(ctx, seq_param, &bs); sps_svc_extension(ctx, seq_param, &bs); sps_svc_vui_parameters_extension(ctx, seq_param, &bs); sps_additional_extension2(ctx, seq_param, &bs); rbsp_trailing_bits(&bs); /* rbsp_trailing_bits */ bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_pic_buffer(struct svcenc_context *ctx, const VAEncPictureParameterBufferH264 *pic_param, unsigned char **header_buffer) { bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, NAL_REF_IDC_HIGH, NAL_PPS); pps_rbsp(ctx, pic_param, &bs); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_sei_buffering_period_buffer(struct svcenc_context *ctx, const VAEncSequenceParameterBufferH264 *seq_param, int frame_num, unsigned char **sei_buffer) { bitstream sei_bp_bs; if (ctx->rate_control_mode & VA_RC_CQP || frame_num) { *sei_buffer = NULL; return 0; } bitstream_start(&sei_bp_bs); bitstream_put_ue(&sei_bp_bs, seq_param->seq_parameter_set_id); /* seq_parameter_set_id */ /* SEI buffer period info */ /* NALHrdBpPresentFlag == 1 */ bitstream_put_ui(&sei_bp_bs, ctx->i_initial_cpb_removal_delay, ctx->i_initial_cpb_removal_delay_length); bitstream_put_ui(&sei_bp_bs, ctx->i_initial_cpb_removal_delay_offset, ctx->i_initial_cpb_removal_delay_length); if (sei_bp_bs.bit_offset & 0x7) { bitstream_put_ui(&sei_bp_bs, 1, 1); } bitstream_end(&sei_bp_bs); *sei_buffer = (unsigned char *)sei_bp_bs.buffer; return (sei_bp_bs.bit_offset + 7) / 8; } static int build_packed_sei_pic_timing_buffer(struct svcenc_context *ctx, int frame_num, unsigned char **sei_buffer) { bitstream sei_pic_bs; unsigned int cpb_removal_delay; if (ctx->rate_control_mode & VA_RC_CQP) { *sei_buffer = 0; return 0; } /* SEI pic timing info */ bitstream_start(&sei_pic_bs); /* The info of CPB and DPB delay is controlled by CpbDpbDelaysPresentFlag, * which is derived as 1 if one of the following conditions is true: * nal_hrd_parameters_present_flag is present in the bitstream and is equal to 1, * vcl_hrd_parameters_present_flag is present in the bitstream and is equal to 1, */ cpb_removal_delay = (ctx->current_cpb_removal - ctx->prev_idr_cpb_removal); bitstream_put_ui(&sei_pic_bs, cpb_removal_delay, ctx->i_cpb_removal_delay_length); bitstream_put_ui(&sei_pic_bs, ctx->current_dpb_removal_delta, ctx->i_dpb_output_delay_length); if (sei_pic_bs.bit_offset & 0x7) { bitstream_put_ui(&sei_pic_bs, 1, 1); } /* The pic_structure_present_flag determines whether the pic_structure * info is written into the SEI pic timing info. * Currently it is set to zero. */ bitstream_end(&sei_pic_bs); *sei_buffer = (unsigned char *)sei_pic_bs.buffer; return (sei_pic_bs.bit_offset + 7) / 8; } static int build_packed_sei_scalability_info_buffer(struct svcenc_context *ctx, const VAEncSequenceParameterBufferH264 *seq_param, const VAEncPictureParameterBufferH264 *pic_param, int frame_num, unsigned char **sei_buffer) { bitstream scalability_info_bs; int i; if (frame_num) { // non IDR *sei_buffer = NULL; return 0; } /* Write scalability_info */ bitstream_start(&scalability_info_bs); bitstream_put_ui(&scalability_info_bs, 0, 1); // temporal_id_nesting_flag: false bitstream_put_ui(&scalability_info_bs, 0, 1); // priority_layer_info_present_flag: false bitstream_put_ui(&scalability_info_bs, 0, 1); // priority_id_setting_flag: false bitstream_put_ue(&scalability_info_bs, ctx->hierarchical_levels - 1); // num_layers_minus1 for (i = 0; i < ctx->hierarchical_levels; i++) { bitstream_put_ue(&scalability_info_bs, i); // layer_id[i] bitstream_put_ui(&scalability_info_bs, 0, 6); // priority_id[i[ bitstream_put_ui(&scalability_info_bs, 0, 1); // discardable_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 3); // dependency_id[i] bitstream_put_ui(&scalability_info_bs, 0, 4); // quality_id[i] bitstream_put_ui(&scalability_info_bs, i, 3); // temporal_id[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // sub_pic_layer_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // sub_region_layer_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // iroi_division_info_present_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // profile_level_info_present_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // bitrate_info_present_flag[i] bitstream_put_ui(&scalability_info_bs, 1, 1); // frm_rate_info_present_flag[i] bitstream_put_ui(&scalability_info_bs, 1, 1); // frm_size_info_present_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // layer_dependency_info_present_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // parameter_sets_info_present_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // bitstream_restriction_info_present_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // exact_interlayer_pred_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // layer_conversion_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 1); // layer_output_flag[i] bitstream_put_ui(&scalability_info_bs, 0, 2); // constant_frm_bitrate_idc[i] bitstream_put_ui(&scalability_info_bs, (int)floor(frame_rates[i] * 256 + 0.5), 16); // avg_frm_rate bitstream_put_ue(&scalability_info_bs, seq_param->picture_width_in_mbs - 1); // frm_width_in_mbs_minus1 bitstream_put_ue(&scalability_info_bs, seq_param->picture_height_in_mbs - 1); // frm_height_in_mbs_minus1 bitstream_put_ue(&scalability_info_bs, 0); // layer_dependency_info_src_layer_id_delta[i] bitstream_put_ue(&scalability_info_bs, 0); // parameter_sets_info_src_layer_id_delta[i] } rbsp_trailing_bits(&scalability_info_bs); bitstream_end(&scalability_info_bs); *sei_buffer = (unsigned char *)scalability_info_bs.buffer; return (scalability_info_bs.bit_offset + 7) / 8; } static void svcenc_update_sei_info(struct svcenc_context *ctx, svcenc_surface *current_surface) { unsigned long long frame_interval; if (!(ctx->rate_control_mode & VA_RC_CBR)) { return; } frame_interval = current_surface->coding_order - ctx->idr_frame_num; if (current_surface->is_idr) { ctx->current_cpb_removal = ctx->prev_idr_cpb_removal + frame_interval * 2; ctx->idr_frame_num = current_surface->coding_order; ctx->current_idr_cpb_removal = ctx->current_cpb_removal; if (ctx->ip_period) ctx->current_dpb_removal_delta = (ctx->ip_period + 1) * 2; else ctx->current_dpb_removal_delta = 2; } else { ctx->current_cpb_removal = ctx->current_idr_cpb_removal + frame_interval * 2; if (current_surface->picture_type == VAEncPictureTypeIntra || current_surface->picture_type == VAEncPictureTypePredictive) { if (ctx->ip_period) ctx->current_dpb_removal_delta = (ctx->ip_period + 1) * 2; else ctx->current_dpb_removal_delta = 2; } else ctx->current_dpb_removal_delta = 2; } } static int build_packed_sei_buffer(struct svcenc_context *ctx, const VAEncSequenceParameterBufferH264 *seq_param, const VAEncPictureParameterBufferH264 *pic_param, svcenc_surface *current_surface, unsigned char **sei_buffer) { unsigned char *scalability_info_buffer = NULL, *buffering_period_buffer = NULL, *pic_timing_buffer = NULL; int scalability_info_size = 0, buffering_period_size = 0, pic_timing_size = 0; bitstream nal_bs; int i; svcenc_update_sei_info(ctx, current_surface); buffering_period_size = build_packed_sei_buffering_period_buffer(ctx, seq_param, current_surface->frame_num, &buffering_period_buffer); pic_timing_size = build_packed_sei_pic_timing_buffer(ctx, current_surface->frame_num, &pic_timing_buffer); scalability_info_size = build_packed_sei_scalability_info_buffer(ctx, seq_param, pic_param, current_surface->frame_num, &scalability_info_buffer); if (!buffering_period_buffer && !pic_timing_buffer && !scalability_info_buffer) { *sei_buffer = NULL; return 0; } bitstream_start(&nal_bs); nal_start_code_prefix(&nal_bs); nal_header(&nal_bs, NAL_REF_IDC_NONE, NAL_SEI); /* Write the SEI buffer */ if (buffering_period_buffer) { assert(buffering_period_size); bitstream_put_ui(&nal_bs, 0, 8); // last_payload_type_byte: 0 bitstream_put_ui(&nal_bs, buffering_period_size, 8); // last_payload_size_byte for (i = 0; i < buffering_period_size; i++) { bitstream_put_ui(&nal_bs, buffering_period_buffer[i], 8); } free(buffering_period_buffer); } if (pic_timing_buffer) { assert(pic_timing_size); bitstream_put_ui(&nal_bs, 1, 8); // last_payload_type_byte: 1 bitstream_put_ui(&nal_bs, pic_timing_size, 8); // last_payload_size_byte for (i = 0; i < pic_timing_size; i++) { bitstream_put_ui(&nal_bs, pic_timing_buffer[i], 8); } free(pic_timing_buffer); } if (scalability_info_buffer) { assert(scalability_info_size); bitstream_put_ui(&nal_bs, 24, 8); // last_payload_type_byte: 24 bitstream_put_ui(&nal_bs, scalability_info_size, 8); // last_payload_size_byte for (i = 0; i < scalability_info_size; i++) { bitstream_put_ui(&nal_bs, scalability_info_buffer[i], 8); } free(scalability_info_buffer); } rbsp_trailing_bits(&nal_bs); bitstream_end(&nal_bs); *sei_buffer = (unsigned char *)nal_bs.buffer; return nal_bs.bit_offset; } static void slice_header(bitstream *bs, VAEncSequenceParameterBufferH264 *sps_param, VAEncPictureParameterBufferH264 *pic_param, VAEncSliceParameterBufferH264 *slice_param, unsigned int reordering_info[2]) { int first_mb_in_slice = slice_param->macroblock_address; int i; bitstream_put_ue(bs, first_mb_in_slice); /* first_mb_in_slice: 0 */ bitstream_put_ue(bs, slice_param->slice_type); /* slice_type */ bitstream_put_ue(bs, slice_param->pic_parameter_set_id); /* pic_parameter_set_id: 0 */ bitstream_put_ui(bs, pic_param->frame_num, sps_param->seq_fields.bits.log2_max_frame_num_minus4 + 4); /* frame_num */ /* frame_mbs_only_flag == 1 */ if (!sps_param->seq_fields.bits.frame_mbs_only_flag) { /* FIXME: */ assert(0); } if (pic_param->pic_fields.bits.idr_pic_flag) bitstream_put_ue(bs, slice_param->idr_pic_id); /* idr_pic_id: 0 */ if (sps_param->seq_fields.bits.pic_order_cnt_type == 0) { bitstream_put_ui(bs, pic_param->CurrPic.TopFieldOrderCnt, sps_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 + 4); /* pic_order_present_flag == 0 */ } else { /* FIXME: */ assert(0); } /* redundant_pic_cnt_present_flag == 0 */ /* slice type */ if (IS_P_SLICE(slice_param->slice_type)) { bitstream_put_ui(bs, !!((reordering_info[0] >> 16) & 0xFF), 1); /* num_ref_idx_active_override_flag: */ if ((reordering_info[0] >> 16) & 0xFF) bitstream_put_ue(bs, (reordering_info[0] >> 24) & 0xFF); /* num_ref_idx_l0_active_minus1 */ /* ref_pic_list_reordering */ if (!(reordering_info[0] & 0x0F)) bitstream_put_ui(bs, 0, 1); /* ref_pic_list_reordering_flag_l0: 0 */ else { bitstream_put_ui(bs, 1, 1); /* ref_pic_list_reordering_flag_l0: 1 */ bitstream_put_ue(bs, (reordering_info[0] >> 4) & 0x0F); bitstream_put_ue(bs, (reordering_info[0] >> 8) & 0xFF); bitstream_put_ue(bs, 3); /* modification_of_pic_nums_idc: 3 */ } } else if (IS_B_SLICE(slice_param->slice_type)) { bitstream_put_ui(bs, slice_param->direct_spatial_mv_pred_flag, 1); /* direct_spatial_mv_pred: 1 */ bitstream_put_ui(bs, ((reordering_info[0] >> 16) & 0xFF) || ((reordering_info[1] >> 16) & 0xFF), 1); /* num_ref_idx_active_override_flag: */ if (((reordering_info[0] >> 16) & 0xFF) || ((reordering_info[1] >> 16) & 0xFF)) { bitstream_put_ue(bs, (reordering_info[0] >> 24) & 0xFF); /* num_ref_idx_l0_active_minus1 */ bitstream_put_ue(bs, (reordering_info[1] >> 24) & 0xFF); /* num_ref_idx_l0_active_minus1 */ } /* ref_pic_list_reordering */ for (i = 0; i < 2; i++) { if (!(reordering_info[i] & 0x0F)) bitstream_put_ui(bs, 0, 1); /* ref_pic_list_reordering_flag_l0/l1: 0 */ else { bitstream_put_ui(bs, 1, 1); /* ref_pic_list_reordering_flag_l0/l1: 1 */ bitstream_put_ue(bs, (reordering_info[i] >> 4) & 0x0F); bitstream_put_ue(bs, (reordering_info[i] >> 8) & 0xFF); bitstream_put_ue(bs, 3); /* modification_of_pic_nums_idc: 3 */ } } } if ((pic_param->pic_fields.bits.weighted_pred_flag && IS_P_SLICE(slice_param->slice_type)) || ((pic_param->pic_fields.bits.weighted_bipred_idc == 1) && IS_B_SLICE(slice_param->slice_type))) { /* FIXME: fill weight/offset table */ assert(0); } /* dec_ref_pic_marking */ if (pic_param->pic_fields.bits.reference_pic_flag) { /* nal_ref_idc != 0 */ unsigned char no_output_of_prior_pics_flag = 0; unsigned char long_term_reference_flag = 0; unsigned char adaptive_ref_pic_marking_mode_flag = 0; if (pic_param->pic_fields.bits.idr_pic_flag) { bitstream_put_ui(bs, no_output_of_prior_pics_flag, 1); /* no_output_of_prior_pics_flag: 0 */ bitstream_put_ui(bs, long_term_reference_flag, 1); /* long_term_reference_flag: 0 */ } else { bitstream_put_ui(bs, adaptive_ref_pic_marking_mode_flag, 1); /* adaptive_ref_pic_marking_mode_flag: 0 */ } } if (pic_param->pic_fields.bits.entropy_coding_mode_flag && !IS_I_SLICE(slice_param->slice_type)) bitstream_put_ue(bs, slice_param->cabac_init_idc); /* cabac_init_idc: 0 */ bitstream_put_se(bs, slice_param->slice_qp_delta); /* slice_qp_delta: 0 */ /* ignore for SP/SI */ if (pic_param->pic_fields.bits.deblocking_filter_control_present_flag) { bitstream_put_ue(bs, slice_param->disable_deblocking_filter_idc); /* disable_deblocking_filter_idc: 0 */ if (slice_param->disable_deblocking_filter_idc != 1) { bitstream_put_se(bs, slice_param->slice_alpha_c0_offset_div2); /* slice_alpha_c0_offset_div2: 2 */ bitstream_put_se(bs, slice_param->slice_beta_offset_div2); /* slice_beta_offset_div2: 2 */ } } if (pic_param->pic_fields.bits.entropy_coding_mode_flag) { bitstream_byte_aligning(bs, 1); } } static void nal_header_extension(bitstream *bs, VAEncPictureParameterBufferH264 *pic_param, unsigned int temporal_id) { int is_idr = !!pic_param->pic_fields.bits.idr_pic_flag; /* 3 bytes */ bitstream_put_ui(bs, 1, 1); /* svc_extension_flag */ bitstream_put_ui(bs, !!is_idr, 1); bitstream_put_ui(bs, 0, 6); /* priority_id */ bitstream_put_ui(bs, 1, 1); /* no_inter_layer_pred_flag */ bitstream_put_ui(bs, 0, 3); /* dependency_id */ bitstream_put_ui(bs, 0, 4); /* quality_id */ bitstream_put_ui(bs, temporal_id, 3); /* temporal_id */ bitstream_put_ui(bs, 0, 1); /* use_ref_base_pic_flag */ bitstream_put_ui(bs, 1, 1); /* discardable_flag */ bitstream_put_ui(bs, 1, 1); /* output_flag */ bitstream_put_ui(bs, 3, 2); /* reserved_three_2bits */ } static void nal_unit_svc_prefix_rbsp(bitstream *bs, int is_ref) { if (is_ref) { bitstream_put_ui(bs, 0, 1); /* store_ref_base_pic_flag */ bitstream_put_ui(bs, 0, 1); /* additional_prefix_nal_unit_extension_flag*/ } else { /* no more rbsp data */ } rbsp_trailing_bits(bs); } static int build_packed_svc_prefix_nal_unit(VAEncPictureParameterBufferH264 *pic_param, unsigned int temporal_id, unsigned char **nal_unit_buffer) { int is_ref = !!pic_param->pic_fields.bits.reference_pic_flag; bitstream bs; bitstream_start(&bs); nal_start_code_prefix(&bs); nal_header(&bs, is_ref ? NAL_REF_IDC_LOW : NAL_REF_IDC_NONE, NAL_PREFIX); nal_header_extension(&bs, pic_param, temporal_id); nal_unit_svc_prefix_rbsp(&bs, is_ref); bitstream_end(&bs); *nal_unit_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } static int build_packed_slice_header_buffer(struct svcenc_context *ctx, VAEncSequenceParameterBufferH264 *sps_param, VAEncPictureParameterBufferH264 *pic_param, VAEncSliceParameterBufferH264 *slice_param, unsigned int reordering_info[2], unsigned char **header_buffer) { bitstream bs; int is_idr = !!pic_param->pic_fields.bits.idr_pic_flag; int is_ref = !!pic_param->pic_fields.bits.reference_pic_flag; bitstream_start(&bs); nal_start_code_prefix(&bs); if (IS_I_SLICE(slice_param->slice_type)) { nal_header(&bs, NAL_REF_IDC_HIGH, is_idr ? NAL_IDR : NAL_NON_IDR); } else if (IS_P_SLICE(slice_param->slice_type)) { assert(!is_idr); nal_header(&bs, is_ref ? NAL_REF_IDC_MEDIUM : NAL_REF_IDC_NONE, NAL_NON_IDR); } else { assert(IS_B_SLICE(slice_param->slice_type)); assert(!is_idr); nal_header(&bs, is_ref ? NAL_REF_IDC_LOW : NAL_REF_IDC_NONE, NAL_NON_IDR); } slice_header(&bs, sps_param, pic_param, slice_param, reordering_info); bitstream_end(&bs); *header_buffer = (unsigned char *)bs.buffer; return bs.bit_offset; } /* upload thread */ static struct upload_task_t * upload_task_dequeue(struct svcenc_context *ctx) { struct upload_task_t *task; pthread_mutex_lock(&upload_mutex); task = ctx->upload_task_header; if (task) { ctx->upload_task_header = task->next; if (!ctx->upload_task_header) ctx->upload_task_tail = NULL; } pthread_mutex_unlock(&upload_mutex); return task; } static int upload_task_queue(struct svcenc_context *ctx, unsigned int display_order, int surface) { struct upload_task_t *task; task = calloc(1, sizeof(struct upload_task_t)); assert(task); task->display_order = display_order; task->surface = surface; task->next = NULL; pthread_mutex_lock(&upload_mutex); if (!ctx->upload_task_header) ctx->upload_task_header = task; if (ctx->upload_task_tail) ctx->upload_task_tail->next = task; ctx->upload_task_tail = task; src_surface_status[surface] = SRC_SURFACE_IN_STORAGE; pthread_cond_signal(&upload_cond); pthread_mutex_unlock(&upload_mutex); return 0; } static void upload_task(struct svcenc_context *ctx, unsigned int display_order, int surface) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; size_t n_items; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst, *v_dst; int row, col; int y_size = ctx->width * ctx->height; int u_size = (ctx->width >> 1) * (ctx->height >> 1); int ret = fseek(ctx->ifp, ctx->frame_size * display_order, SEEK_SET); CHECK_CONDITION(ret == 0); do { n_items = fread(ctx->frame_data_buffer, ctx->frame_size, 1, ctx->ifp); } while (n_items != 1); va_status = vaDeriveImage(ctx->va_dpy, src_surfaces[surface], &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); vaMapBuffer(ctx->va_dpy, surface_image.buf, &surface_p); assert(VA_STATUS_SUCCESS == va_status); y_src = ctx->frame_data_buffer; u_src = ctx->frame_data_buffer + y_size; /* UV offset for NV12 */ v_src = ctx->frame_data_buffer + y_size + u_size; y_dst = (unsigned char *)surface_p + surface_image.offsets[0]; u_dst = (unsigned char *)surface_p + surface_image.offsets[1]; /* UV offset for NV12 */ v_dst = (unsigned char *)surface_p + surface_image.offsets[2]; /* Y plane */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += ctx->width; } if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */ for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.pitches[1]; u_src += (ctx->width / 2); v_src += (ctx->width / 2); } } else { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col]; v_dst[col] = v_src[col]; } u_dst += surface_image.pitches[1]; v_dst += surface_image.pitches[2]; u_src += (ctx->width / 2); v_src += (ctx->width / 2); } } vaUnmapBuffer(ctx->va_dpy, surface_image.buf); vaDestroyImage(ctx->va_dpy, surface_image.image_id); pthread_mutex_lock(&upload_mutex); src_surface_status[surface] = SRC_SURFACE_IN_ENCODING; pthread_mutex_unlock(&upload_mutex); } static void * upload_task_thread(void *data) { struct svcenc_context *ctx = (struct svcenc_context *)data; int num = 0; while (1) { struct upload_task_t *task; task = upload_task_dequeue(ctx); if (!task) { pthread_mutex_lock(&upload_mutex); pthread_cond_wait(&upload_cond, &upload_mutex); pthread_mutex_unlock(&upload_mutex); continue; } upload_task(ctx, task->display_order, task->surface); free(task); if (++num >= ctx->num_pictures) break; } return 0; } /* main thread */ static void usage(char *program) { fprintf(stderr, "Usage: %s --help\n", program); fprintf(stderr, "\t--help print this message\n"); fprintf(stderr, "Usage: %s [options] \n", program); fprintf(stderr, "\t\t\tThe base picture width\n"); fprintf(stderr, "\t\tThe base picture height\n"); fprintf(stderr, "\t\tThe input YUV I420 file\n"); fprintf(stderr, "\t\t\tThe output H.264/SVC file\n\n"); fprintf(stderr, "\tAvailable options:\n"); fprintf(stderr, "\t--gop \t\tGOP size, default is 8\n"); fprintf(stderr, "\t--goptype \tGOP hierarchical type, 0 is P hierarchical GOP, 1 is B hierarchical GOP, default is 0\n"); fprintf(stderr, "\t--brcmode \tBRC mode, 0 is CQP mode, otherwise CBR mode, default mode is CQP\n"); fprintf(stderr, "\t--brclayer\tDisable/Enalbe BRC per temporal layer, default is disable(0)\n"); fprintf(stderr, "\t--bitrate \tbit rate in Kbps(1024 bits). It is available for CBR mode only and default value is 2000\n"); } static void svcenc_exit(struct svcenc_context *ctx, int exit_code) { if (ctx->ifp) { fclose(ctx->ifp); ctx->ifp = NULL; } if (ctx->ofp) { fclose(ctx->ofp); ctx->ofp = NULL; } exit(exit_code); } static void parse_args(struct svcenc_context *ctx, int argc, char **argv) { int c, tmp; int option_index = 0; long file_size; static struct option long_options[] = { {"gop", required_argument, 0, 'g'}, {"goptype", required_argument, 0, 't'}, {"bitrate", required_argument, 0, 'b'}, {"brcmode", required_argument, 0, 'm'}, {"brclayer", required_argument, 0, 'l'}, {"help", no_argument, 0, 'h'}, { NULL, 0, NULL, 0 } }; va_init_display_args(&argc, argv); if ((argc == 2 && strcmp(argv[1], "--help") == 0) || (argc < 5)) goto print_usage; ctx->width = atoi(argv[1]); ctx->height = atoi(argv[2]); if (ctx->width <= 0 || ctx->height <= 0) { fprintf(stderr, " and must be greater than 0\n"); goto err_exit; } ctx->frame_size = ctx->width * ctx->height * 3 / 2; ctx->ifp = fopen(argv[3], "rb"); if (ctx->ifp == NULL) { fprintf(stderr, "Can't open the input file\n"); goto err_exit; } fseek(ctx->ifp, 0l, SEEK_END); file_size = ftell(ctx->ifp); if ((file_size < ctx->frame_size) || (file_size % ctx->frame_size)) { fprintf(stderr, "The input file size %ld isn't a multiple of the frame size %d\n", file_size, ctx->frame_size); goto err_exit; } assert(ctx->num_pictures == 0); ctx->num_pictures = file_size / ctx->frame_size; fseek(ctx->ifp, 0l, SEEK_SET); ctx->ofp = fopen(argv[4], "wb"); if (ctx->ofp == NULL) { fprintf(stderr, "Can't create the output file\n"); goto err_exit; } opterr = 0; optind = 5; ctx->gop_size = 8; ctx->gop_type = 0; ctx->bits_per_kbps = -1; ctx->rate_control_mode = VA_RC_CQP; ctx->layer_brc = 0; while ((c = getopt_long(argc, argv, "", long_options, &option_index)) != -1) { switch (c) { case 'g': tmp = atoi(optarg); if ((tmp & (tmp - 1)) || tmp > 8) { fprintf(stderr, "Warning: invalid GOP size\n"); tmp = 8; } ctx->gop_size = tmp; break; case 't': tmp = atoi(optarg); ctx->gop_type = !!tmp; break; case 'b': tmp = atoi(optarg); if (tmp <= 0) ctx->bits_per_kbps = -1; else { if (tmp >= 30000) tmp = 30000; ctx->bits_per_kbps = tmp; } break; case 'm': tmp = atoi(optarg); if (tmp == 0) ctx->rate_control_mode = VA_RC_CQP; else ctx->rate_control_mode = VA_RC_CBR; break; case 'l': tmp = atoi(optarg); ctx->layer_brc = !!tmp; break; case '?': fprintf(stderr, "Error: unkown command options\n"); case 'h': goto print_usage; } } ctx->num_pictures = ((ctx->num_pictures - 1) & ~(ctx->gop_size - 1)) + 1; if (ctx->rate_control_mode == VA_RC_CQP) ctx->bits_per_kbps = -1; else { if (ctx->bits_per_kbps == -1) ctx->bits_per_kbps = 2000; } return; print_usage: usage(argv[0]); err_exit: svcenc_exit(ctx, 1); } void svcenc_update_ref_frames(struct svcenc_context *ctx, svcenc_surface *current_surface) { int i; if (!current_surface->is_ref) return; if (current_surface->is_idr) ctx->num_ref_frames = 1; else ctx->num_ref_frames++; if (ctx->num_ref_frames > ctx->max_num_ref_frames) ctx->num_ref_frames = ctx->max_num_ref_frames; for (i = ctx->num_ref_frames - 1; i > 0; i--) ref_frames[i] = ref_frames[i - 1]; ref_frames[0] = *current_surface; } static int svcenc_coding_order_to_display_order(struct svcenc_context *ctx, int coding_order) { int n, m; int level; assert(coding_order > 0); n = (coding_order - 1) / ctx->gop_size; m = (coding_order - 1) % ctx->gop_size; level = ctx->hierarchical_levels - temporal_ids_in_bgop[m] - 1; return n * ctx->gop_size + gop_factors_in_bgop[m] * (int)pow(2.00, level); } static void update_next_picture_info(struct svcenc_context *ctx) { svcenc_surface *current_surface = NULL; svcenc_surface next_surface; int current_frame_num; current_surface = &ctx->next_svcenc_surface; current_frame_num = current_surface->frame_num; next_surface.coding_order = current_surface->coding_order + 1; next_surface.display_order = svcenc_coding_order_to_display_order(ctx, next_surface.coding_order); next_surface.slot_in_surfaces = (current_surface->slot_in_surfaces + 1) % NUM_SURFACES; next_surface.temporal_id = temporal_ids_in_bgop[current_surface->coding_order % ctx->gop_size]; next_surface.is_ref = (next_surface.temporal_id != ctx->hierarchical_levels - 1); if (next_surface.temporal_id == 0) { if (!(next_surface.display_order % ctx->intra_period)) next_surface.picture_type = VAEncPictureTypeIntra; else next_surface.picture_type = VAEncPictureTypePredictive; } else next_surface.picture_type = VAEncPictureTypeBidirectional; if (current_surface->temporal_id == ctx->hierarchical_levels - 1) next_surface.frame_num = current_frame_num; else next_surface.frame_num = current_frame_num + 1; next_surface.is_intra = (next_surface.picture_type == VAEncPictureTypeIntra); next_surface.is_idr = 0; next_surface.rec_surface = rec_surfaces[next_surface.slot_in_surfaces]; next_surface.poc = next_surface.display_order; if (next_surface.is_idr) next_surface.frame_num = 0; *current_surface = next_surface; } static int svcenc_coding_order_to_level_pgop(struct svcenc_context *ctx, int coding_order) { int m; int level; assert(coding_order > 0); m = coding_order % ctx->gop_size; if (m == 0) return 0; level = ctx->hierarchical_levels - temporal_ids_in_pgop[m - 1]; assert(level > 0 && level < 5); return level; } static void update_next_picture_info_pgop(struct svcenc_context *ctx) { svcenc_surface *current_surface = NULL; svcenc_surface next_surface; int current_frame_num; current_surface = &ctx->next_svcenc_surface; current_frame_num = current_surface->frame_num; next_surface.coding_order = current_surface->coding_order + 1; next_surface.display_order = next_surface.coding_order; next_surface.slot_in_surfaces = (current_surface->slot_in_surfaces + 1) % NUM_SURFACES; next_surface.temporal_id = svcenc_coding_order_to_level_pgop(ctx, next_surface.coding_order); next_surface.is_ref = (next_surface.temporal_id != ctx->hierarchical_levels - 1); if (next_surface.temporal_id == 0) { if (!(next_surface.display_order % ctx->intra_period)) next_surface.picture_type = VAEncPictureTypeIntra; else next_surface.picture_type = VAEncPictureTypePredictive; } else { next_surface.picture_type = VAEncPictureTypePredictive; } next_surface.frame_num = current_frame_num + 1; next_surface.is_intra = (next_surface.picture_type == VAEncPictureTypeIntra); next_surface.is_idr = !(next_surface.display_order % ctx->intra_idr_period); next_surface.rec_surface = rec_surfaces[next_surface.slot_in_surfaces]; next_surface.poc = next_surface.display_order % ctx->intra_idr_period; if (next_surface.is_idr) { next_surface.frame_num = 0; assert(next_surface.poc == 0); } *current_surface = next_surface; } static int svcenc_seq_parameter_set_id(struct svcenc_context *ctx, svcenc_surface *current_surface) { return 0; } static int svcenc_pic_parameter_set_id(struct svcenc_context *ctx, svcenc_surface *current_surface) { return 0; } void svcenc_update_sequence_parameter_buffer(struct svcenc_context *ctx, svcenc_surface *current_surface) { VAEncSequenceParameterBufferH264 *seq_param = &ctx->seq_param; VAStatus va_status; int width_in_mbs = (ctx->width + 15) / 16; int height_in_mbs = (ctx->height + 15) / 16; int frame_cropping_flag = 0; int frame_crop_bottom_offset = 0; memset(seq_param, 0, sizeof(*seq_param)); seq_param->seq_parameter_set_id = svcenc_seq_parameter_set_id(ctx, current_surface); seq_param->level_idc = 41; seq_param->intra_period = ctx->intra_period; seq_param->ip_period = ctx->ip_period; seq_param->intra_idr_period = ctx->intra_idr_period; seq_param->max_num_ref_frames = ctx->max_num_ref_frames; seq_param->picture_width_in_mbs = width_in_mbs; seq_param->picture_height_in_mbs = height_in_mbs; seq_param->seq_fields.bits.frame_mbs_only_flag = 1; if (ctx->bits_per_kbps > 0) seq_param->bits_per_second = 1024 * ctx->bits_per_kbps; else seq_param->bits_per_second = 0; seq_param->time_scale = ctx->framerate_per_100s * 2; seq_param->num_units_in_tick = 100; if (height_in_mbs * 16 - ctx->height) { frame_cropping_flag = 1; frame_crop_bottom_offset = (height_in_mbs * 16 - ctx->height) / (2 * (!seq_param->seq_fields.bits.frame_mbs_only_flag + 1)); } seq_param->frame_cropping_flag = frame_cropping_flag; seq_param->frame_crop_left_offset = 0; seq_param->frame_crop_right_offset = 0; seq_param->frame_crop_top_offset = 0; seq_param->frame_crop_bottom_offset = frame_crop_bottom_offset; seq_param->seq_fields.bits.pic_order_cnt_type = 0; if ((ctx->profile_idc == PROFILE_IDC_SCALABLE_HIGH && ctx->constraint_set_flag & (1 << 3)) || (ctx->profile_idc == PROFILE_IDC_SCALABLE_BASELINE && ctx->constraint_set_flag & (1 << 5))) seq_param->seq_fields.bits.direct_8x8_inference_flag = 0; else seq_param->seq_fields.bits.direct_8x8_inference_flag = 1; seq_param->seq_fields.bits.log2_max_frame_num_minus4 = 10; seq_param->seq_fields.bits.log2_max_pic_order_cnt_lsb_minus4 = 10; if (ctx->bits_per_kbps > 0) seq_param->vui_parameters_present_flag = 1; //HRD info located in vui else seq_param->vui_parameters_present_flag = 0; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncSequenceParameterBufferType, sizeof(*seq_param), 1, seq_param, &ctx->seq_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } void svcenc_update_picture_parameter_buffer(struct svcenc_context *ctx, svcenc_surface *current_surface) { VAEncPictureParameterBufferH264 *pic_param; VAStatus va_status; int i; /* Allocate the new coded buffer */ va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncCodedBufferType, ctx->frame_size, 1, NULL, &ctx->codedbuf_buf_id); assert(ctx->codedbuf_buf_id != VA_INVALID_ID); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* H.264 picture parameter */ pic_param = &ctx->pic_param; memset(pic_param, 0, sizeof(*pic_param)); pic_param->seq_parameter_set_id = svcenc_seq_parameter_set_id(ctx, current_surface); pic_param->pic_parameter_set_id = svcenc_pic_parameter_set_id(ctx, current_surface); pic_param->last_picture = 0; pic_param->pic_init_qp = 34; pic_param->num_ref_idx_l0_active_minus1 = ctx->hierarchical_levels - 1; pic_param->num_ref_idx_l1_active_minus1 = ctx->hierarchical_levels - 1; pic_param->coded_buf = ctx->codedbuf_buf_id; pic_param->frame_num = current_surface->frame_num; pic_param->CurrPic.picture_id = current_surface->rec_surface; pic_param->CurrPic.TopFieldOrderCnt = current_surface->poc * 2; pic_param->CurrPic.BottomFieldOrderCnt = pic_param->CurrPic.TopFieldOrderCnt; pic_param->CurrPic.frame_idx = current_surface->frame_num; pic_param->CurrPic.flags = 0; /* frame */ for (i = 0; i < ctx->num_ref_frames; i++) { assert(pic_param->CurrPic.picture_id != ref_frames[i].rec_surface); pic_param->ReferenceFrames[i].picture_id = ref_frames[i].rec_surface; pic_param->ReferenceFrames[i].TopFieldOrderCnt = ref_frames[i].poc * 2; pic_param->ReferenceFrames[i].BottomFieldOrderCnt = pic_param->ReferenceFrames[i].TopFieldOrderCnt; pic_param->ReferenceFrames[i].flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE; } for (; i < 16; i++) { pic_param->ReferenceFrames[i].picture_id = VA_INVALID_ID; pic_param->ReferenceFrames[i].flags = VA_PICTURE_H264_INVALID; } pic_param->pic_fields.bits.entropy_coding_mode_flag = ENTROPY_MODE_CAVLC; pic_param->pic_fields.bits.weighted_pred_flag = 0; pic_param->pic_fields.bits.weighted_bipred_idc = 0; pic_param->pic_fields.bits.idr_pic_flag = !!current_surface->is_idr; pic_param->pic_fields.bits.reference_pic_flag = !!current_surface->is_ref; pic_param->pic_fields.bits.deblocking_filter_control_present_flag = 1; pic_param->pic_fields.bits.transform_8x8_mode_flag = 0; /* Allocate the new picture parameter buffer */ va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPictureParameterBufferType, sizeof(*pic_param), 1, pic_param, &ctx->pic_param_buf_id); assert(ctx->pic_param_buf_id != VA_INVALID_ID); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } #define partition(ref, field, key, ascending) \ while (i <= j) { \ if (ascending) { \ while (ref[i].field < key) \ i++; \ while (ref[j].field > key) \ j--; \ } else { \ while (ref[i].field > key) \ i++; \ while (ref[j].field < key) \ j--; \ } \ if (i <= j) { \ tmp = ref[i]; \ ref[i] = ref[j]; \ ref[j] = tmp; \ i++; \ j--; \ } \ } \ static void sort_one(svcenc_surface ref[], int left, int right, int ascending, int is_frame_num) { int i = left, j = right; int key; svcenc_surface tmp; if (is_frame_num) { key = ref[(left + right) / 2].frame_num; partition(ref, frame_num, key, ascending); } else { key = ref[(left + right) / 2].display_order; partition(ref, display_order, (signed int)key, ascending); } /* recursion */ if (left < j) sort_one(ref, left, j, ascending, is_frame_num); if (i < right) sort_one(ref, i, right, ascending, is_frame_num); } static void sort_two(svcenc_surface ref[], int left, int right, int key, int is_frame_num, int partition_ascending, int list0_ascending, int list1_ascending) { int i = left, j = right; svcenc_surface tmp; if (is_frame_num) { partition(ref, frame_num, key, partition_ascending); } else { partition(ref, display_order, key, partition_ascending); } sort_one(ref, left, i - 1, list0_ascending, is_frame_num); sort_one(ref, j + 1, right, list1_ascending, is_frame_num); } static void svcenc_update_ref_lists(struct svcenc_context *ctx, svcenc_surface *current_surface) { if (current_surface->picture_type == VAEncPictureTypePredictive) { memcpy(ref_list0, ref_frames, ctx->num_ref_frames * sizeof(svcenc_surface)); sort_one(ref_list0, 0, ctx->num_ref_frames - 1, 0, 1); } else if (current_surface->picture_type == VAEncPictureTypeBidirectional) { memcpy(ref_list0, ref_frames, ctx->num_ref_frames * sizeof(svcenc_surface)); sort_two(ref_list0, 0, ctx->num_ref_frames - 1, current_surface->display_order, 0, 1, 0, 1); memcpy(ref_list1, ref_frames, ctx->num_ref_frames * sizeof(svcenc_surface)); sort_two(ref_list1, 0, ctx->num_ref_frames - 1, current_surface->display_order, 0, 0, 1, 0); } } static int avc_temporal_find_surface(VAPictureH264 *curr_pic, VAPictureH264 *ref_list, int num_pictures, int dir) { int i, found = -1, min = 0x7FFFFFFF; for (i = 0; i < num_pictures; i++) { int tmp; if ((ref_list[i].flags & VA_PICTURE_H264_INVALID) || (ref_list[i].picture_id == VA_INVALID_SURFACE)) break; tmp = curr_pic->TopFieldOrderCnt - ref_list[i].TopFieldOrderCnt; if (dir) tmp = -tmp; if (tmp > 0 && tmp < min) { min = tmp; found = i; } } assert(found != -1); return found; } static int avc_temporal_find_surface_pgop(svcenc_surface *curr_pic, svcenc_surface *ref_list, int num_pictures) { int i, found = -1, min = 0x7FFFFFFF; for (i = 0; i < num_pictures; i++) { int tmp; if (ref_list[i].rec_surface == VA_INVALID_SURFACE) break; if (curr_pic->temporal_id < ref_list[i].temporal_id) continue; tmp = curr_pic->display_order - ref_list[i].display_order; if (tmp > 0 && tmp < min) { min = tmp; found = i; } } assert(found != -1); return found; } void svcenc_update_slice_parameter_buffer(struct svcenc_context *ctx, svcenc_surface *current_surface) { VAEncPictureParameterBufferH264 *pic_param = &ctx->pic_param; VAEncSliceParameterBufferH264 *slice_param; VAStatus va_status; int i, width_in_mbs, height_in_mbs; int slice_type; int num_ref_idx_active_override_flag = 0, num_ref_l0 = 1, num_ref_l1 = 1; VAPictureH264 RefPicList0[32]; VAPictureH264 RefPicList1[32]; VAPictureH264 *curr_pic; int ref_idx; memset(RefPicList0, 0, sizeof(RefPicList0)); memset(RefPicList1, 0, sizeof(RefPicList1)); svcenc_update_ref_lists(ctx, current_surface); switch (current_surface->picture_type) { case VAEncPictureTypeBidirectional: slice_type = SLICE_TYPE_B; break; case VAEncPictureTypePredictive: slice_type = SLICE_TYPE_P; break; case VAEncPictureTypeIntra: default: slice_type = SLICE_TYPE_I; break; } width_in_mbs = (ctx->width + 15) / 16; height_in_mbs = (ctx->height + 15) / 16; // Slice level i = 0; slice_param = &ctx->slice_param[i]; memset(slice_param, 0, sizeof(*slice_param)); slice_param->macroblock_address = 0; slice_param->num_macroblocks = height_in_mbs * width_in_mbs; slice_param->pic_parameter_set_id = svcenc_pic_parameter_set_id(ctx, current_surface); slice_param->slice_type = slice_type; slice_param->direct_spatial_mv_pred_flag = 1; /* * It is required for the slice layer extension and the base * layer bitstream * See G.7.4.3 j), G.10.1.2 a), G.10.1.2.1 a) */ slice_param->num_ref_idx_active_override_flag = 0; slice_param->num_ref_idx_l0_active_minus1 = 0; slice_param->num_ref_idx_l1_active_minus1 = 0; slice_param->cabac_init_idc = 0; slice_param->slice_qp_delta = 0; slice_param->disable_deblocking_filter_idc = 0; slice_param->slice_alpha_c0_offset_div2 = 2; slice_param->slice_beta_offset_div2 = 2; slice_param->idr_pic_id = 0; ctx->reordering_info[0] = ctx->reordering_info[1] = 0; /* FIXME: fill other fields */ if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) { int j; num_ref_l0 = MIN((pic_param->num_ref_idx_l0_active_minus1 + 1), ctx->num_ref_frames); for (j = 0; j < num_ref_l0; j++) { RefPicList0[j].picture_id = ref_list0[j].rec_surface; RefPicList0[j].TopFieldOrderCnt = ref_list0[j].poc * 2; RefPicList0[j].BottomFieldOrderCnt = RefPicList0[j].TopFieldOrderCnt; RefPicList0[j].frame_idx = ref_list0[j].frame_num; RefPicList0[j].flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE; } for (; j < 32; j++) { RefPicList0[j].picture_id = VA_INVALID_SURFACE; RefPicList0[j].flags = VA_PICTURE_H264_INVALID; } if (num_ref_l0 != pic_param->num_ref_idx_l0_active_minus1 + 1) num_ref_idx_active_override_flag = 1; } if (slice_type == SLICE_TYPE_B) { int j; num_ref_l1 = MIN((pic_param->num_ref_idx_l1_active_minus1 + 1), ctx->num_ref_frames); for (j = 0; j < num_ref_l1; j++) { RefPicList1[j].picture_id = ref_list1[j].rec_surface; RefPicList1[j].TopFieldOrderCnt = ref_list1[j].poc * 2; RefPicList1[j].BottomFieldOrderCnt = RefPicList1[j].TopFieldOrderCnt; RefPicList1[j].frame_idx = ref_list1[j].frame_num; RefPicList1[j].flags = VA_PICTURE_H264_SHORT_TERM_REFERENCE; } for (; j < 32; j++) { RefPicList1[j].picture_id = VA_INVALID_SURFACE; RefPicList1[j].flags = VA_PICTURE_H264_INVALID; } if (num_ref_l1 != pic_param->num_ref_idx_l1_active_minus1 + 1) num_ref_idx_active_override_flag = 1; } if (num_ref_l0 != 1 || num_ref_l1 != 1) { curr_pic = &pic_param->CurrPic; /* select the reference frame in temporal space */ if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) { if (ctx->gop_type == 1) ref_idx = avc_temporal_find_surface(curr_pic, RefPicList0, num_ref_l0, 0); else ref_idx = avc_temporal_find_surface_pgop(current_surface, ref_list0, num_ref_l0); if (ref_idx != 0) { ctx->reordering_info[0] |= (1 << 0); if (curr_pic->frame_idx > RefPicList0[ref_idx].frame_idx) { ctx->reordering_info[0] |= (0 << 4); ctx->reordering_info[0] |= ((curr_pic->frame_idx - RefPicList0[ref_idx].frame_idx - 1) << 8); } else { ctx->reordering_info[0] |= (1 << 4); ctx->reordering_info[0] |= ((RefPicList0[ref_idx].frame_idx - curr_pic->frame_idx - 1) << 8); } } slice_param->RefPicList0[0] = RefPicList0[ref_idx]; } if (slice_type == SLICE_TYPE_B) { assert(ctx->gop_type == 1); ref_idx = avc_temporal_find_surface(curr_pic, RefPicList1, num_ref_l1, 1); if (ref_idx != 0) { ctx->reordering_info[1] |= (1 << 0); if (curr_pic->frame_idx > RefPicList1[ref_idx].frame_idx) { ctx->reordering_info[1] |= (0 << 4); ctx->reordering_info[1] |= ((curr_pic->frame_idx - RefPicList1[ref_idx].frame_idx - 1) << 8); } else { ctx->reordering_info[1] |= (1 << 4); ctx->reordering_info[1] |= ((RefPicList1[ref_idx].frame_idx - curr_pic->frame_idx - 1) << 8); } } slice_param->RefPicList1[0] = RefPicList1[ref_idx]; } slice_param->num_ref_idx_active_override_flag = 1; slice_param->num_ref_idx_l0_active_minus1 = 0; slice_param->num_ref_idx_l1_active_minus1 = 0; ctx->reordering_info[0] |= ((1 << 16) | (0 << 24)); ctx->reordering_info[1] |= ((1 << 16) | (0 << 24)); } else { if (num_ref_idx_active_override_flag == 1) { slice_param->num_ref_idx_active_override_flag = 1; slice_param->num_ref_idx_l0_active_minus1 = 0; slice_param->num_ref_idx_l1_active_minus1 = 0; ctx->reordering_info[0] |= ((1 << 16) | (0 << 24)); ctx->reordering_info[1] |= ((1 << 16) | (0 << 24)); } if ((slice_type == SLICE_TYPE_P) || (slice_type == SLICE_TYPE_B)) { slice_param->RefPicList0[0] = RefPicList0[0]; } if (slice_type == SLICE_TYPE_B) { slice_param->RefPicList1[0] = RefPicList1[0]; } } va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncSliceParameterBufferType, sizeof(*slice_param), 1, slice_param, &ctx->slice_param_buf_id[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer");; ctx->num_slices = ++i; } void svcenc_update_misc_parameter_buffer(struct svcenc_context *ctx, svcenc_surface *current_surface) { VAStatus va_status; VAEncMiscParameterBuffer *misc_param; VAEncMiscParameterTemporalLayerStructure *misc_layer_structure_param; VAEncMiscParameterRateControl *misc_ratecontrol_param; VAEncMiscParameterFrameRate *misc_framerate_param; VAEncMiscParameterHRD *misc_hrd_param; if (current_surface->frame_num != 0) return; if (ctx->rate_control_mode & VA_RC_CQP) return; assert(ctx->bits_per_kbps > 0); if (!ctx->layer_brc) { va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl), 1, NULL, &ctx->misc_parameter_ratecontrol_buf_id[0]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[0], (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeRateControl; misc_ratecontrol_param = (VAEncMiscParameterRateControl *)misc_param->data; misc_ratecontrol_param->bits_per_second = 1024 * ctx->bits_per_kbps; vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[0]); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterFrameRate), 1, NULL, &ctx->misc_parameter_framerate_buf_id[0]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(ctx->va_dpy, ctx->misc_parameter_framerate_buf_id[0], (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeFrameRate; misc_framerate_param = (VAEncMiscParameterFrameRate *)misc_param->data; misc_framerate_param->framerate = ((100 << 16) | ctx->framerate_per_100s); misc_ratecontrol_param->bits_per_second = 1024 * ctx->bits_per_kbps; vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[0]); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterHRD), 1, NULL, &ctx->misc_parameter_hrd_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(ctx->va_dpy, ctx->misc_parameter_hrd_buf_id, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeHRD; misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data; misc_hrd_param->initial_buffer_fullness = ctx->bits_per_kbps * 1024 * 4; misc_hrd_param->buffer_size = ctx->bits_per_kbps * 1024 * 8; vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_hrd_buf_id); } else { int i, j, nlayers = 0; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterTemporalLayerStructure), 1, NULL, &ctx->misc_parameter_layer_structure_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(ctx->va_dpy, ctx->misc_parameter_layer_structure_buf_id, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeTemporalLayerStructure; misc_layer_structure_param = (VAEncMiscParameterTemporalLayerStructure *)misc_param->data; misc_layer_structure_param->number_of_layers = ctx->hierarchical_levels; misc_layer_structure_param->periodicity = ctx->gop_size; for (i = 0; i < ctx->gop_size; i++) { if (ctx->gop_type == 1) { // B misc_layer_structure_param->layer_id[i] = temporal_ids_in_bgop[i]; } else { misc_layer_structure_param->layer_id[i] = svcenc_coding_order_to_level_pgop(ctx, i + 1); } } vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_layer_structure_buf_id); for (i = 1; i <= ctx->hierarchical_levels; i++) { nlayers += i; } for (i = 0; i < ctx->hierarchical_levels; i++) { int framerate_per_100s = frame_rates[i] * 100; int numerator = 0; for (j = 0; j < ctx->gop_size; j++) { if (misc_layer_structure_param->layer_id[j] <= i) numerator++; } va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl), 1, NULL, &ctx->misc_parameter_ratecontrol_buf_id[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[i], (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeRateControl; misc_ratecontrol_param = (VAEncMiscParameterRateControl *)misc_param->data; misc_ratecontrol_param->bits_per_second = 1024 * ctx->bits_per_kbps * ((float)numerator / ctx->gop_size); misc_ratecontrol_param->rc_flags.bits.temporal_id = i; vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[i]); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterFrameRate), 1, NULL, &ctx->misc_parameter_framerate_buf_id[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(ctx->va_dpy, ctx->misc_parameter_framerate_buf_id[i], (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeFrameRate; misc_framerate_param = (VAEncMiscParameterFrameRate *)misc_param->data; misc_framerate_param->framerate = ((100 << 16) | framerate_per_100s); misc_framerate_param->framerate_flags.bits.temporal_id = i; vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_ratecontrol_buf_id[i]); } va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterHRD), 1, NULL, &ctx->misc_parameter_hrd_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(ctx->va_dpy, ctx->misc_parameter_hrd_buf_id, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeHRD; misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data; misc_hrd_param->initial_buffer_fullness = ctx->bits_per_kbps * 1024 * 4; misc_hrd_param->buffer_size = ctx->bits_per_kbps * 1024 * 8; vaUnmapBuffer(ctx->va_dpy, ctx->misc_parameter_hrd_buf_id); } } static void svcenc_update_packed_slice_header_buffer(struct svcenc_context *ctx, unsigned int temporal_id) { VAStatus va_status; VAEncPackedHeaderParameterBuffer packed_header_param_buffer; unsigned int length_in_bits; unsigned char *packed_header_data_buffer = NULL; int i; for (i = 0; i < ctx->num_slices; i++) { length_in_bits = build_packed_svc_prefix_nal_unit(&ctx->pic_param, temporal_id, &packed_header_data_buffer); packed_header_param_buffer.type = VAEncPackedHeaderRawData; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &ctx->packed_prefix_nal_unit_param_buf_id[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_header_data_buffer, &ctx->packed_prefix_nal_unit_data_buf_id[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); free(packed_header_data_buffer); length_in_bits = build_packed_slice_header_buffer(ctx, &ctx->seq_param, &ctx->pic_param, &ctx->slice_param[i], ctx->reordering_info, &packed_header_data_buffer); packed_header_param_buffer.type = VAEncPackedHeaderSlice; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &ctx->packed_slice_header_param_buf_id[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_header_data_buffer, &ctx->packed_slice_header_data_buf_id[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); free(packed_header_data_buffer); } } void svcenc_update_packed_buffers(struct svcenc_context *ctx, svcenc_surface *current_surface) { VAStatus va_status; VAEncPackedHeaderParameterBuffer packed_header_param_buffer; unsigned int length_in_bits; unsigned char *packed_seq_buffer = NULL, *packed_pic_buffer = NULL, *packed_sei_buffer = NULL; length_in_bits = build_packed_sei_buffer(ctx, &ctx->seq_param, &ctx->pic_param, current_surface, &packed_sei_buffer); if (packed_sei_buffer) { assert(length_in_bits); packed_header_param_buffer.type = VAEncPackedHeaderRawData; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &ctx->packed_sei_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_sei_buffer, &ctx->packed_sei_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); free(packed_sei_buffer); } if (current_surface->frame_num == 0) { int save_profile_idc, save_constraint_set_flag; unsigned char *packed_svc_seq_buffer = NULL; length_in_bits = build_packed_seq_buffer(ctx, &ctx->seq_param, &packed_seq_buffer); packed_header_param_buffer.type = VAEncPackedHeaderH264_SPS; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &ctx->packed_seq_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_seq_buffer, &ctx->packed_seq_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); save_profile_idc = ctx->profile_idc; save_constraint_set_flag = ctx->constraint_set_flag; ctx->profile_idc = ctx->svc_profile_idc; ctx->constraint_set_flag = ctx->svc_constraint_set_flag; length_in_bits = build_packed_subset_seq_buffer(ctx, &ctx->seq_param, &packed_svc_seq_buffer); packed_header_param_buffer.type = VAEncPackedHeaderRawData; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &ctx->packed_svc_seq_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_svc_seq_buffer, &ctx->packed_svc_seq_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); ctx->profile_idc = save_profile_idc; ctx->constraint_set_flag = save_constraint_set_flag; free(packed_svc_seq_buffer); length_in_bits = build_packed_pic_buffer(ctx, &ctx->pic_param, &packed_pic_buffer); packed_header_param_buffer.type = VAEncPackedHeaderH264_PPS; packed_header_param_buffer.bit_length = length_in_bits; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &ctx->packed_pic_header_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(ctx->va_dpy, ctx->context_id, VAEncPackedHeaderDataBufferType, (length_in_bits + 7) / 8, 1, packed_pic_buffer, &ctx->packed_pic_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); free(packed_seq_buffer); free(packed_pic_buffer); } svcenc_update_packed_slice_header_buffer(ctx, current_surface->temporal_id); } void svcenc_update_profile_idc(struct svcenc_context *ctx, svcenc_surface *current_surface) { ctx->profile_idc = PROFILE_IDC_HIGH; ctx->constraint_set_flag = 0; switch (ctx->profile) { case VAProfileH264High: ctx->profile_idc = PROFILE_IDC_HIGH; ctx->constraint_set_flag |= (1 << 1); break; case VAProfileH264ConstrainedBaseline: ctx->profile_idc = PROFILE_IDC_BASELINE; ctx->constraint_set_flag |= (1 << 0 | 1 << 1 | 1 << 2); break; default: /* Never get here !!! */ assert(0); break; } ctx->svc_profile_idc = PROFILE_IDC_SCALABLE_HIGH; ctx->svc_constraint_set_flag = 0; switch (ctx->profile) { case VAProfileH264High: ctx->svc_profile_idc = PROFILE_IDC_SCALABLE_HIGH; ctx->svc_constraint_set_flag |= (1 << 1); break; case VAProfileH264ConstrainedBaseline: ctx->svc_profile_idc = PROFILE_IDC_SCALABLE_BASELINE; ctx->svc_constraint_set_flag |= (1 << 0 | 1 << 1 | 1 << 5); break; default: /* Never get here !!! */ assert(0); break; } } int begin_picture(struct svcenc_context *ctx, svcenc_surface *current_surface) { svcenc_update_profile_idc(ctx, current_surface); svcenc_update_sequence_parameter_buffer(ctx, current_surface); svcenc_update_picture_parameter_buffer(ctx, current_surface); svcenc_update_slice_parameter_buffer(ctx, current_surface); svcenc_update_misc_parameter_buffer(ctx, current_surface); svcenc_update_packed_buffers(ctx, current_surface); return 0; } static int svcenc_store_coded_buffer(struct svcenc_context *ctx, svcenc_surface *current_surface) { VACodedBufferSegment *coded_buffer_segment; unsigned char *coded_mem; int slice_data_length; VAStatus va_status; size_t w_items; va_status = vaSyncSurface(ctx->va_dpy, src_surfaces[current_surface->slot_in_surfaces]); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaMapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id, (void **)(&coded_buffer_segment)); CHECK_VASTATUS(va_status, "vaMapBuffer"); coded_mem = coded_buffer_segment->buf; if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) { /* Fatal error !!! */ assert(0); } slice_data_length = coded_buffer_segment->size; do { w_items = fwrite(coded_mem, slice_data_length, 1, ctx->ofp); } while (w_items != 1); vaUnmapBuffer(ctx->va_dpy, ctx->codedbuf_buf_id); return 0; } int render_picture(struct svcenc_context *ctx, svcenc_surface *current_surface) { VAStatus va_status; VABufferID va_buffers[32]; unsigned int num_va_buffers = 0; int i; va_buffers[num_va_buffers++] = ctx->seq_param_buf_id; va_buffers[num_va_buffers++] = ctx->pic_param_buf_id; if (ctx->packed_sei_scalability_info_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_sei_scalability_info_header_param_buf_id; if (ctx->packed_sei_scalability_info_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_sei_scalability_info_buf_id; if (ctx->packed_seq_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_seq_header_param_buf_id; if (ctx->packed_seq_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_seq_buf_id; if (ctx->packed_svc_seq_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_svc_seq_header_param_buf_id; if (ctx->packed_svc_seq_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_svc_seq_buf_id; if (ctx->packed_pic_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_pic_header_param_buf_id; if (ctx->packed_pic_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_pic_buf_id; if (ctx->packed_sei_header_param_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_sei_header_param_buf_id; if (ctx->packed_sei_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->packed_sei_buf_id; if (ctx->misc_parameter_layer_structure_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->misc_parameter_layer_structure_buf_id; for (i = 0; i < MAX_LAYERS; i++) { if (ctx->misc_parameter_ratecontrol_buf_id[i] != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->misc_parameter_ratecontrol_buf_id[i]; if (ctx->misc_parameter_framerate_buf_id[i] != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->misc_parameter_framerate_buf_id[i]; } if (ctx->misc_parameter_hrd_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = ctx->misc_parameter_hrd_buf_id; va_status = vaBeginPicture(ctx->va_dpy, ctx->context_id, src_surfaces[current_surface->slot_in_surfaces]); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(ctx->va_dpy, ctx->context_id, va_buffers, num_va_buffers); CHECK_VASTATUS(va_status, "vaRenderPicture"); for (i = 0; i < ctx->num_slices; i++) { va_status = vaRenderPicture(ctx->va_dpy, ctx->context_id, &ctx->packed_prefix_nal_unit_param_buf_id[i], 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(ctx->va_dpy, ctx->context_id, &ctx->packed_prefix_nal_unit_data_buf_id[i], 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(ctx->va_dpy, ctx->context_id, &ctx->packed_slice_header_param_buf_id[i], 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(ctx->va_dpy, ctx->context_id, &ctx->packed_slice_header_data_buf_id[i], 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaRenderPicture(ctx->va_dpy, ctx->context_id, &ctx->slice_param_buf_id[i], 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); } va_status = vaEndPicture(ctx->va_dpy, ctx->context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); svcenc_store_coded_buffer(ctx, current_surface); return 0; } static int svcenc_destroy_buffers(struct svcenc_context *ctx, VABufferID *va_buffers, unsigned int num_va_buffers) { VAStatus va_status; unsigned int i; for (i = 0; i < num_va_buffers; i++) { if (va_buffers[i] != VA_INVALID_ID) { va_status = vaDestroyBuffer(ctx->va_dpy, va_buffers[i]); CHECK_VASTATUS(va_status, "vaDestroyBuffer"); va_buffers[i] = VA_INVALID_ID; } } return 0; } int end_picture(struct svcenc_context *ctx, svcenc_surface *current_surface) { svcenc_destroy_buffers(ctx, &ctx->seq_param_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->pic_param_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_sei_scalability_info_header_param_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_sei_scalability_info_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_seq_header_param_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_seq_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_svc_seq_header_param_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_svc_seq_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_pic_header_param_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_pic_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->slice_param_buf_id[0], ctx->num_slices); svcenc_destroy_buffers(ctx, &ctx->codedbuf_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->misc_parameter_layer_structure_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->misc_parameter_ratecontrol_buf_id[0], MAX_LAYERS); svcenc_destroy_buffers(ctx, &ctx->misc_parameter_framerate_buf_id[0], MAX_LAYERS); svcenc_destroy_buffers(ctx, &ctx->misc_parameter_hrd_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_sei_header_param_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_sei_buf_id, 1); svcenc_destroy_buffers(ctx, &ctx->packed_slice_header_param_buf_id[0], ctx->num_slices); svcenc_destroy_buffers(ctx, &ctx->packed_slice_header_data_buf_id[0], ctx->num_slices); svcenc_destroy_buffers(ctx, &ctx->packed_prefix_nal_unit_param_buf_id[0], ctx->num_slices); svcenc_destroy_buffers(ctx, &ctx->packed_prefix_nal_unit_data_buf_id[0], ctx->num_slices); memset(ctx->slice_param, 0, sizeof(ctx->slice_param)); ctx->num_slices = 0; return 0; } void encode_picture(struct svcenc_context *ctx, svcenc_surface *current_surface) { begin_picture(ctx, current_surface); render_picture(ctx, current_surface); end_picture(ctx, current_surface); svcenc_update_ref_frames(ctx, current_surface); if ((current_surface->is_idr) && (ctx->rate_control_mode & VA_RC_CBR)) { ctx->prev_idr_cpb_removal = ctx->current_idr_cpb_removal; } } static void svcenc_va_init(struct svcenc_context *ctx) { VAProfile *profile_list; VAEntrypoint *entrypoint_list; VAConfigAttrib attrib_list[4]; VAStatus va_status; int max_profiles, num_profiles = 0, profile = VAProfileNone; int max_entrypoints, num_entrypoints = 0, entrypoint; int major_ver, minor_ver; int i, j; ctx->va_dpy = va_open_display(); va_status = vaInitialize(ctx->va_dpy, &major_ver, &minor_ver); CHECK_VASTATUS(va_status, "vaInitialize"); max_profiles = vaMaxNumProfiles(ctx->va_dpy); profile_list = malloc(max_profiles * sizeof(VAProfile)); assert(profile_list); vaQueryConfigProfiles(ctx->va_dpy, profile_list, &num_profiles); for (i = 0; i < ARRAY_ELEMS(g_va_profiles); i++) { for (j = 0; j < num_profiles; j++) { if (g_va_profiles[i] == profile_list[j]) { profile = g_va_profiles[i]; break; } } if (profile != VAProfileNone) break; } free(profile_list); if (profile == VAProfileNone) { fprintf(stderr, "Can't find a supported profile\n"); exit(-1); } ctx->profile = profile; max_entrypoints = vaMaxNumEntrypoints(ctx->va_dpy); entrypoint_list = malloc(max_entrypoints * sizeof(VAEntrypoint)); assert(entrypoint_list); vaQueryConfigEntrypoints(ctx->va_dpy, ctx->profile, entrypoint_list, &num_entrypoints); for (entrypoint = 0; entrypoint < num_entrypoints; entrypoint++) { if (entrypoint_list[entrypoint] == VAEntrypointEncSlice) break; } free(entrypoint_list); if (entrypoint == num_entrypoints) { /* not find Slice entry point */ fprintf(stderr, "Can't find the supported entrypoint\n"); exit(-1); } /* find out the format for the render target, and rate control mode */ attrib_list[0].type = VAConfigAttribRTFormat; attrib_list[1].type = VAConfigAttribRateControl; attrib_list[2].type = VAConfigAttribEncPackedHeaders; attrib_list[3].type = VAConfigAttribEncRateControlExt; vaGetConfigAttributes(ctx->va_dpy, ctx->profile, VAEntrypointEncSlice, &attrib_list[0], 4); if ((attrib_list[0].value & VA_RT_FORMAT_YUV420) == 0) { /* not find desired YUV420 RT format */ assert(0); } if ((attrib_list[1].value & ctx->rate_control_mode) == 0) { /* Can't find matched RC mode */ fprintf(stderr, "RC mode %d isn't found, exit\n", ctx->rate_control_mode); assert(0); } if ((attrib_list[2].value & (VA_ENC_PACKED_HEADER_SEQUENCE | VA_ENC_PACKED_HEADER_PICTURE | VA_ENC_PACKED_HEADER_SLICE | VA_ENC_PACKED_HEADER_RAW_DATA)) == 0) { /* Can't find matched PACKED HEADER mode */ assert(0); } if (attrib_list[3].value == VA_ATTRIB_NOT_SUPPORTED) { ctx->layer_brc = 0; // force to 0 } else { VAConfigAttribValEncRateControlExt *val = (VAConfigAttribValEncRateControlExt *)&attrib_list[3].value; if (!val->bits.max_num_temporal_layers_minus1) { fprintf(stderr, "Do not support temporal layer\n"); assert(0); } if (ctx->hierarchical_levels > (val->bits.max_num_temporal_layers_minus1 + 1)) { fprintf(stderr, "Over the maximum number of the supported layers\n"); assert(0); } if (!val->bits.temporal_layer_bitrate_control_flag) ctx->layer_brc = 0; // force to 0 } attrib_list[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */ attrib_list[1].value = ctx->rate_control_mode; /* set to desired RC mode */ attrib_list[2].value = (VA_ENC_PACKED_HEADER_SEQUENCE | VA_ENC_PACKED_HEADER_PICTURE | VA_ENC_PACKED_HEADER_SLICE | VA_ENC_PACKED_HEADER_RAW_DATA); va_status = vaCreateConfig(ctx->va_dpy, ctx->profile, VAEntrypointEncSlice, attrib_list, 3, &ctx->config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); /* Create a context for this decode pipe */ va_status = vaCreateContext(ctx->va_dpy, ctx->config_id, ctx->width, ctx->height, VA_PROGRESSIVE, 0, 0, &ctx->context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); va_status = vaCreateSurfaces(ctx->va_dpy, VA_RT_FORMAT_YUV420, ctx->width, ctx->height, src_surfaces, NUM_SURFACES, NULL, 0); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); va_status = vaCreateSurfaces(ctx->va_dpy, VA_RT_FORMAT_YUV420, ctx->width, ctx->height, rec_surfaces, NUM_SURFACES, NULL, 0); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); } static void svcenc_sei_init(struct svcenc_context *ctx) { if (!(ctx->rate_control_mode & VA_RC_CBR)) return; /* it comes for the bps defined in SPS */ ctx->i_initial_cpb_removal_delay = 2 * 90000; ctx->i_initial_cpb_removal_delay_offset = 2 * 90000; ctx->i_cpb_removal_delay = 2; ctx->i_initial_cpb_removal_delay_length = 24; ctx->i_cpb_removal_delay_length = 24; ctx->i_dpb_output_delay_length = 24; ctx->time_offset_length = 24; ctx->prev_idr_cpb_removal = ctx->i_initial_cpb_removal_delay / 90000; ctx->current_idr_cpb_removal = ctx->prev_idr_cpb_removal; ctx->current_cpb_removal = 0; ctx->idr_frame_num = 0; } static void svcenc_init(struct svcenc_context *ctx) { int i; ctx->frame_data_buffer = (unsigned char *)malloc(ctx->frame_size); ctx->num_remainder_bframes = 0; ctx->max_num_ref_frames = ctx->gop_size; ctx->num_ref_frames = 0; switch (ctx->gop_size) { case 1: ctx->hierarchical_levels = 1; break; case 2: ctx->hierarchical_levels = 2; break; case 4: ctx->hierarchical_levels = 3; break; case 8: ctx->hierarchical_levels = 4; break; default: /* Never get here !!! */ assert(0); break; } if (ctx->gop_type == 1) { // B ctx->intra_period = 2 * ctx->gop_size; ctx->ip_period = ctx->gop_size; ctx->intra_idr_period = 0; // 0 means infinite } else { ctx->intra_period = 2 * ctx->gop_size; ctx->ip_period = 1; ctx->intra_idr_period = 8 * ctx->intra_period; } ctx->framerate_per_100s = frame_rates[ctx->hierarchical_levels - 1] * 100; ctx->upload_task_header = NULL; ctx->upload_task_tail = NULL; ctx->reordering_info[0] = ctx->reordering_info[1] = 0; ctx->seq_param_buf_id = VA_INVALID_ID; ctx->pic_param_buf_id = VA_INVALID_ID; ctx->packed_sei_scalability_info_header_param_buf_id = VA_INVALID_ID; ctx->packed_sei_scalability_info_buf_id = VA_INVALID_ID; ctx->packed_seq_header_param_buf_id = VA_INVALID_ID; ctx->packed_seq_buf_id = VA_INVALID_ID; ctx->packed_svc_seq_header_param_buf_id = VA_INVALID_ID; ctx->packed_svc_seq_buf_id = VA_INVALID_ID; ctx->packed_pic_header_param_buf_id = VA_INVALID_ID; ctx->packed_pic_buf_id = VA_INVALID_ID; ctx->codedbuf_buf_id = VA_INVALID_ID; ctx->misc_parameter_layer_structure_buf_id = VA_INVALID_ID; for (i = 0; i < MAX_LAYERS; i++) { ctx->misc_parameter_ratecontrol_buf_id[i] = VA_INVALID_ID; ctx->misc_parameter_framerate_buf_id[i] = VA_INVALID_ID; } ctx->misc_parameter_hrd_buf_id = VA_INVALID_ID; ctx->packed_sei_header_param_buf_id = VA_INVALID_ID; ctx->packed_sei_buf_id = VA_INVALID_ID; for (i = 0; i < MAX_SLICES; i++) { ctx->packed_slice_header_param_buf_id[i] = VA_INVALID_ID; ctx->packed_slice_header_data_buf_id[i] = VA_INVALID_ID; ctx->packed_prefix_nal_unit_param_buf_id[i] = VA_INVALID_ID; ctx->packed_prefix_nal_unit_data_buf_id[i] = VA_INVALID_ID; } svcenc_va_init(ctx); /* update the next surface status */ ctx->next_svcenc_surface.slot_in_surfaces = 0; ctx->next_svcenc_surface.coding_order = 0; ctx->next_svcenc_surface.display_order = 0; ctx->next_svcenc_surface.temporal_id = 0; ctx->next_svcenc_surface.frame_num = 0; ctx->next_svcenc_surface.poc = 0; ctx->next_svcenc_surface.picture_type = VAEncPictureTypeIntra; ctx->next_svcenc_surface.is_intra = 1; ctx->next_svcenc_surface.is_idr = 1; ctx->next_svcenc_surface.is_ref = 1; ctx->next_svcenc_surface.rec_surface = rec_surfaces[ctx->next_svcenc_surface.slot_in_surfaces]; memset(src_surface_status, SRC_SURFACE_IN_STORAGE, sizeof(src_surface_status)); svcenc_sei_init(ctx); } static void svcenc_run(struct svcenc_context *ctx) { int coding_order = 0; svcenc_surface current_surface; pthread_create(&ctx->upload_thread, NULL, upload_task_thread, ctx); current_surface = ctx->next_svcenc_surface; upload_task_queue(ctx, current_surface.display_order, current_surface.slot_in_surfaces); while (coding_order < ctx->num_pictures) { if (coding_order < (ctx->num_pictures - 1)) { if (ctx->gop_type == 1) { update_next_picture_info(ctx); } else { update_next_picture_info_pgop(ctx); } assert(current_surface.display_order != ctx->next_svcenc_surface.display_order); upload_task_queue(ctx, ctx->next_svcenc_surface.display_order, ctx->next_svcenc_surface.slot_in_surfaces); } while (src_surface_status[current_surface.slot_in_surfaces] != SRC_SURFACE_IN_ENCODING) usleep(1); encode_picture(ctx, ¤t_surface); if (coding_order < (ctx->num_pictures - 1)) current_surface = ctx->next_svcenc_surface; coding_order++; fprintf(stderr, "\r %d/%d ...", coding_order, ctx->num_pictures); fflush(stdout); } pthread_join(ctx->upload_thread, NULL); } static void svcenc_va_end(struct svcenc_context *ctx) { vaDestroySurfaces(ctx->va_dpy, src_surfaces, NUM_SURFACES); vaDestroySurfaces(ctx->va_dpy, rec_surfaces, NUM_SURFACES); vaDestroyContext(ctx->va_dpy, ctx->context_id); vaDestroyConfig(ctx->va_dpy, ctx->config_id); vaTerminate(ctx->va_dpy); va_close_display(ctx->va_dpy); } static void svcenc_end(struct svcenc_context *ctx) { free(ctx->frame_data_buffer); ctx->frame_data_buffer = NULL; svcenc_va_end(ctx); } int main(int argc, char *argv[]) { struct svcenc_context ctx; struct timeval tpstart, tpend; float timeuse; gettimeofday(&tpstart, NULL); memset(&ctx, 0, sizeof(ctx)); parse_args(&ctx, argc, argv); svcenc_init(&ctx); svcenc_run(&ctx); svcenc_end(&ctx); gettimeofday(&tpend, NULL); timeuse = 1000000 * (tpend.tv_sec - tpstart.tv_sec) + tpend.tv_usec - tpstart.tv_usec; timeuse /= 1000000; fprintf(stderr, "\ndone!\n"); fprintf(stderr, "encode %d frames in %f secondes, FPS is %.1f\n", ctx.num_pictures, timeuse, ctx.num_pictures / timeuse); svcenc_exit(&ctx, 0); return 0; } ================================================ FILE: encode/vp8enc.c ================================================ /* * Copyright (c) 2018 Georg Ottinger. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ /* This file includes code taken from vp9enc.c (libva-utils) copyright 2017 * by Intel Cooperation and licensed under same conditions. * This file includes code ported from vaapiencoder_vp8.cpp (libyami) copyright * by 2014-2016 Intel Corporation. https://github.com/intel/libyami * The original copyright and licence statement as below. */ /* * Copyright (C) 2014-2016 Intel Corporation. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #define MAX_XY_RESOLUTION 16364 #define KEY_FRAME 0 #define INTER_FRAME 1 #define NUM_REF_SURFACES 4 #define NUM_INPUT_SURFACES 2 #define NUM_SURFACES_TOTAL (NUM_REF_SURFACES+NUM_INPUT_SURFACES) #define SID_INPUT_PICTURE_0 (NUM_REF_SURFACES) #define SID_INPUT_PICTURE_1 (NUM_REF_SURFACES+1) #define NUM_BUFFERS 10 #define VP8ENC_OK 0 #define VP8ENC_FAIL -1 #define PARSE_OPTIONS_OK 0 #define PARSE_OPTIONS_FAIL -1 #ifndef N_ELEMENTS #define N_ELEMENTS(array) (sizeof(array)/sizeof(array[0])) #endif #ifndef CHECK_VASTATUS #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } #endif #define CHECK_CONDITION(cond) \ if(!(cond)) \ { \ fprintf(stderr, "Unexpected condition: %s:%d\n", __func__, __LINE__); \ exit(1); \ } static const struct option long_opts[] = { {"help", no_argument, NULL, 0 }, {"rcmode", required_argument, NULL, 1 }, {"qp", required_argument, NULL, 2 }, {"intra_period", required_argument, NULL, 3 }, {"fb", required_argument, NULL, 4 }, {"lf_level", required_argument, NULL, 5 }, {"hrd_win", required_argument, NULL, 6}, {"vbr_max", required_argument, NULL, 7}, {"fn_num", required_argument, NULL, 8}, {"error_resilient", no_argument, NULL, 9}, {"debug", no_argument, NULL, 10}, {"temp_svc", required_argument, NULL, 11}, {"repeat", required_argument, NULL, 12}, {NULL, no_argument, NULL, 0 } }; static const int default_rc_modes[4] = { VA_RC_CQP, // 0 VA_RC_CBR, // 1 VA_RC_VBR, // 2 VA_RC_NONE }; struct vp8enc_settings { int width; int height; int frame_rate; int frame_size; int loop_filter_level; int clamp_qindex_low; int clamp_qindex_high; int intra_period; int quantization_parameter; int frame_bitrate; int max_variable_bitrate; int rc_mode; int num_frames; VAEntrypoint vaapi_entry_point; int codedbuf_size; int hrd_window; int error_resilient; int debug; int temporal_svc_layers; int repeat_times; }; static struct vp8enc_settings settings = { //Default Values - unless otherwise specified with command line options .frame_rate = 30, .loop_filter_level = 19, .clamp_qindex_low = 9, .clamp_qindex_high = 127, .intra_period = 30, .quantization_parameter = 60, .frame_bitrate = -1, .max_variable_bitrate = -1, .num_frames = 0, .rc_mode = VA_RC_CQP, .vaapi_entry_point = VAEntrypointEncSlice, //VAEntrypointEncSliceLP would be LowPower Mode - but not supported with VP8Encoder .hrd_window = 1500, .error_resilient = 0, .debug = 0, .temporal_svc_layers = 1, .repeat_times = 1, }; struct vp8enc_vaapi_context { VADisplay display; VAProfile profile; VAContextID context_id; VAConfigID config_id; VAEncSequenceParameterBufferVP8 seq_param; VAEncPictureParameterBufferVP8 pic_param; VAQMatrixBufferVP8 q_matrix; VASurfaceID surfaces[NUM_SURFACES_TOTAL]; VASurfaceID recon_surface, last_ref_surface, golden_ref_surface, alt_ref_surface; VASurfaceID input_surface; VABufferID codedbuf_buf_id; VABufferID va_buffers[NUM_BUFFERS]; int num_va_buffers; int is_golden_refreshed; struct { VAEncMiscParameterBuffer header; VAEncMiscParameterHRD data; } hrd_param; struct { VAEncMiscParameterBuffer header; VAEncMiscParameterFrameRate data; } frame_rate_param; struct { VAEncMiscParameterBuffer header; VAEncMiscParameterRateControl data; } rate_control_param; struct { pthread_t id; int value; FILE *input_fp; int input_surface_num; VASurfaceID input_surface; int processed_frame; } upload_thread; }; static struct vp8enc_vaapi_context vaapi_context; /******************************************** * * START: IVF Container Releated Stuff * ********************************************/ static void vp8enc_write_word(char *ptr, uint32_t value) { uint8_t *tmp; tmp = (uint8_t *)ptr; *(tmp) = (value >> 0) & 0XFF; *(tmp + 1) = (value >> 8) & 0XFF; } static void vp8enc_write_dword(char *ptr, uint32_t value) { uint8_t *tmp; tmp = (uint8_t *)ptr; *(tmp) = (value >> 0) & 0XFF; *(tmp + 1) = (value >> 8) & 0XFF; *(tmp + 2) = (value >> 16) & 0XFF; *(tmp + 3) = (value >> 24) & 0XFF; } static void vp8enc_write_qword(char *ptr, uint64_t value) { uint8_t *tmp; tmp = (uint8_t *)ptr; *(tmp) = (value >> 0) & 0XFF; *(tmp + 1) = (value >> 8) & 0XFF; *(tmp + 2) = (value >> 16) & 0XFF; *(tmp + 3) = (value >> 24) & 0XFF; *(tmp + 4) = (value >> 32) & 0XFF; *(tmp + 5) = (value >> 40) & 0XFF; *(tmp + 6) = (value >> 48) & 0XFF; *(tmp + 7) = (value >> 56) & 0XFF; } static void vp8enc_write_frame_header(FILE *vp8_output, uint32_t data_length, uint64_t timestamp) { char header[12]; vp8enc_write_dword(header, data_length); vp8enc_write_qword(header + 4, timestamp); fwrite(header, 1, 12, vp8_output); } static void vp8enc_write_ivf_header(FILE *vp8_file) { #define VP8_FOURCC 0x30385056 char header[32]; header[0] = 'D'; header[1] = 'K'; header[2] = 'I'; header[3] = 'F'; vp8enc_write_word(header + 4, 0); vp8enc_write_word(header + 6, 32); vp8enc_write_dword(header + 8, VP8_FOURCC); vp8enc_write_word(header + 12, settings.width); vp8enc_write_word(header + 14, settings.height); vp8enc_write_dword(header + 16, settings.frame_rate); vp8enc_write_dword(header + 20, 1); vp8enc_write_dword(header + 24, settings.num_frames * settings.repeat_times); vp8enc_write_dword(header + 28, 0); fwrite(header, 1, 32, vp8_file); } /******************************************** * * END: IVF Container Releated Stuff * ********************************************/ /******************************************** * * START: Read YUV Input File Releated Stuff * ********************************************/ static void vp8enc_upload_yuv_to_surface(FILE *yuv_fp, VASurfaceID surface_id, int current_frame) { VAImage surface_image; VAStatus va_status; void *surface_p = NULL; uint8_t *y_src, *u_src, *v_src; uint8_t *y_dst, *u_dst, *v_dst; int y_size = settings.width * settings.height; int u_size = (settings.width >> 1) * (settings.height >> 1); int row, col; char *yuv_mmap_ptr = NULL; unsigned long long frame_start_pos, mmap_start; int mmap_size; frame_start_pos = (unsigned long long)current_frame * settings.frame_size; mmap_start = frame_start_pos & (~0xfff); mmap_size = (settings.frame_size + (frame_start_pos & 0xfff) + 0xfff) & (~0xfff); yuv_mmap_ptr = mmap(0, mmap_size, PROT_READ, MAP_SHARED, fileno(yuv_fp), mmap_start); if (yuv_mmap_ptr == MAP_FAILED) { fprintf(stderr, "Error: Failed to mmap YUV file.\n"); assert(0); } y_src = (uint8_t*)yuv_mmap_ptr + (frame_start_pos & 0xfff); u_src = y_src + y_size; /* UV offset for NV12 */ v_src = y_src + y_size + u_size; va_status = vaDeriveImage(vaapi_context.display, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); vaMapBuffer(vaapi_context.display, surface_image.buf, &surface_p); assert(VA_STATUS_SUCCESS == va_status); y_dst = (unsigned char *)surface_p + surface_image.offsets[0]; u_dst = (unsigned char *)surface_p + surface_image.offsets[1]; /* UV offset for NV12 */ v_dst = (unsigned char *)surface_p + surface_image.offsets[2]; /* Y plane */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += settings.width; } if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */ for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.pitches[1]; u_src += (settings.width / 2); v_src += (settings.width / 2); } } else if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { const int U = surface_image.format.fourcc == VA_FOURCC_I420 ? 1 : 2; const int V = surface_image.format.fourcc == VA_FOURCC_I420 ? 2 : 1; u_dst = (unsigned char *)surface_p + surface_image.offsets[U]; v_dst = (unsigned char *)surface_p + surface_image.offsets[V]; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width / 2); memcpy(v_dst, v_src, surface_image.width / 2); u_dst += surface_image.pitches[U]; v_dst += surface_image.pitches[V]; u_src += (settings.width / 2); v_src += (settings.width / 2); } } vaUnmapBuffer(vaapi_context.display, surface_image.buf); vaDestroyImage(vaapi_context.display, surface_image.image_id); if (yuv_mmap_ptr) munmap(yuv_mmap_ptr, mmap_size); } static void * vp8enc_upload_thread_function(void *data) { vp8enc_upload_yuv_to_surface(vaapi_context.upload_thread.input_fp, vaapi_context.upload_thread.input_surface, vaapi_context.upload_thread.processed_frame); return NULL; } /******************************************** * * END: Read YUV Input File Releated Stuff * ********************************************/ void vp8enc_init_QMatrix(VAQMatrixBufferVP8 *qMatrix) { // When segmentation is disabled, only quantization_index[0] will be used size_t i; for (i = 0; i < N_ELEMENTS(qMatrix->quantization_index); i++) { qMatrix->quantization_index[i] = settings.quantization_parameter; } for (i = 0; i < N_ELEMENTS(qMatrix->quantization_index_delta); i++) { qMatrix->quantization_index_delta[i] = 0; } } void vp8enc_init_SequenceParameterBuffer(VAEncSequenceParameterBufferVP8* seqParam) { size_t i; memset(seqParam, 0, sizeof(VAEncSequenceParameterBufferVP8)); seqParam->frame_width = settings.width; seqParam->frame_height = settings.height; if (settings.frame_bitrate > 0) seqParam->bits_per_second = settings.frame_bitrate * 1000; else seqParam->bits_per_second = 0; seqParam->intra_period = settings.intra_period; seqParam->error_resilient = settings.error_resilient; for (i = 0; i < N_ELEMENTS(seqParam->reference_frames); i++) seqParam->reference_frames[i] = VA_INVALID_ID; } void vp8enc_init_PictureParameterBuffer(VAEncPictureParameterBufferVP8 *picParam) { size_t i; memset(picParam, 0, sizeof(VAEncPictureParameterBufferVP8)); picParam->ref_last_frame = VA_INVALID_SURFACE; picParam->ref_gf_frame = VA_INVALID_SURFACE; picParam->ref_arf_frame = VA_INVALID_SURFACE; /* always show it */ picParam->pic_flags.bits.show_frame = 1; for (i = 0; i < N_ELEMENTS(picParam->loop_filter_level); i++) { picParam->loop_filter_level[i] = settings.loop_filter_level; } picParam->clamp_qindex_low = settings.clamp_qindex_low; picParam->clamp_qindex_high = settings.clamp_qindex_high; } void vp8enc_set_refreshparameter_for_svct_2layers(VAEncPictureParameterBufferVP8 *picParam, int current_frame, int *is_golden_refreshed) { //Pattern taken from libyami picParam->ref_flags.bits.no_ref_arf = 1; if (! *is_golden_refreshed) picParam->ref_flags.bits.no_ref_gf = 1; switch (current_frame % 2) { case 0: //Layer 0 picParam->pic_flags.bits.refresh_last = 1; picParam->ref_flags.bits.no_ref_gf = 1; picParam->ref_flags.bits.temporal_id = 0; break; case 1: //Layer 1 picParam->pic_flags.bits.refresh_golden_frame = 1; *is_golden_refreshed = 1; picParam->ref_flags.bits.temporal_id = 1; break; } } void vp8enc_set_refreshparameter_for_svct_3layers(VAEncPictureParameterBufferVP8 *picParam, int current_frame, int *is_golden_refreshed) { //Pattern taken from libyami - Note that the alternate frame is never referenced, //this is because, libyami implementation suggests to be able to drop individual //frames from Layer 2 on bad network connections picParam->ref_flags.bits.no_ref_arf = 1; if (! *is_golden_refreshed) picParam->ref_flags.bits.no_ref_gf = 1; switch (current_frame % 4) { case 0: //Layer 0 picParam->pic_flags.bits.refresh_last = 1; picParam->ref_flags.bits.no_ref_gf = 1; picParam->ref_flags.bits.temporal_id = 0; break; case 1: case 3: //Layer 2 picParam->pic_flags.bits.refresh_alternate_frame = 1; picParam->ref_flags.bits.temporal_id = 2; break; case 2: //Layer 1 picParam->pic_flags.bits.refresh_golden_frame = 1; *is_golden_refreshed = 1; picParam->ref_flags.bits.temporal_id = 1; break; } } void vp8enc_reset_picture_parameter_references(VAEncPictureParameterBufferVP8 *picParam) { picParam->ref_last_frame = VA_INVALID_SURFACE; picParam->ref_gf_frame = VA_INVALID_SURFACE; picParam->ref_arf_frame = VA_INVALID_SURFACE; picParam->pic_flags.bits.refresh_last = 0; picParam->pic_flags.bits.refresh_golden_frame = 0; picParam->pic_flags.bits.refresh_alternate_frame = 0; picParam->pic_flags.bits.copy_buffer_to_golden = 0; picParam->pic_flags.bits.copy_buffer_to_alternate = 0; picParam->ref_flags.bits.no_ref_last = 0; picParam->ref_flags.bits.no_ref_gf = 0; picParam->ref_flags.bits.no_ref_arf = 0; } void vp8enc_update_picture_parameter(int frame_type, int current_frame) { VAEncPictureParameterBufferVP8 *picParam = &vaapi_context.pic_param; picParam->reconstructed_frame = vaapi_context.recon_surface; vp8enc_reset_picture_parameter_references(picParam); if (frame_type == KEY_FRAME) { picParam->ref_flags.bits.force_kf = 1; picParam->pic_flags.bits.frame_type = KEY_FRAME; vaapi_context.is_golden_refreshed = 0; return; } // INTER_FRAME picParam->ref_flags.bits.force_kf = 0; picParam->pic_flags.bits.frame_type = INTER_FRAME; switch (settings.temporal_svc_layers) { case 1: //Standard behavoir only 1 Temporal Layer picParam->pic_flags.bits.refresh_last = 1; picParam->pic_flags.bits.copy_buffer_to_golden = 1; picParam->pic_flags.bits.copy_buffer_to_alternate = 2; picParam->ref_flags.bits.temporal_id = 0; break; case 2: //2 Temporal Layers vp8enc_set_refreshparameter_for_svct_2layers(picParam, current_frame, &vaapi_context.is_golden_refreshed); break; case 3: //3 Temporal Layers vp8enc_set_refreshparameter_for_svct_3layers(picParam, current_frame, &vaapi_context.is_golden_refreshed); break; default: //should never happen fprintf(stderr, "Error: Only 1,2 or 3 TemporalLayers supported.\n"); assert(0); break; } if (!picParam->ref_flags.bits.no_ref_last) picParam->ref_last_frame = vaapi_context.last_ref_surface; if (!picParam->ref_flags.bits.no_ref_gf) picParam->ref_gf_frame = vaapi_context.golden_ref_surface; if (!picParam->ref_flags.bits.no_ref_arf) picParam->ref_arf_frame = vaapi_context.alt_ref_surface; } VASurfaceID vp8enc_get_unused_surface() { VASurfaceID current_surface; size_t i = 0; for (i = 0; i < NUM_REF_SURFACES; i++) { current_surface = vaapi_context.surfaces[i]; if (current_surface != vaapi_context.last_ref_surface && current_surface != vaapi_context.golden_ref_surface && current_surface != vaapi_context.alt_ref_surface) return current_surface; } //No unused surface found - should never happen. fprintf(stderr, "Error: No unused surface found!\n"); assert(0); return VA_INVALID_ID; // should never happen } VASurfaceID vp8enc_update_reference(VASurfaceID current_surface, VASurfaceID second_copy_surface, bool refresh_with_recon, int copy_flag) { if (refresh_with_recon) return vaapi_context.recon_surface; switch (copy_flag) { case 0: return current_surface; case 1: return vaapi_context.last_ref_surface; case 2: return second_copy_surface; default: // should never happen fprintf(stderr, "Error: Invalid copy_buffer_to_X flag\n"); assert(0); } return VA_INVALID_ID; // should never happen } void vp8enc_update_reference_list(int frame_type) { VAEncPictureParameterBufferVP8 *picParam = &vaapi_context.pic_param; if (frame_type == KEY_FRAME) { vaapi_context.last_ref_surface = vaapi_context.recon_surface; vaapi_context.golden_ref_surface = vaapi_context.recon_surface; vaapi_context.alt_ref_surface = vaapi_context.recon_surface; } else { // INTER_FRAME //check refresh_X and copy_buffer_to_golden_X and update references accordingly if (picParam->pic_flags.bits.refresh_last) vaapi_context.last_ref_surface = vaapi_context.recon_surface; vaapi_context.golden_ref_surface = vp8enc_update_reference(vaapi_context.golden_ref_surface, vaapi_context.alt_ref_surface, picParam->pic_flags.bits.refresh_golden_frame, picParam->pic_flags.bits.copy_buffer_to_golden); vaapi_context.alt_ref_surface = vp8enc_update_reference(vaapi_context.alt_ref_surface, vaapi_context.golden_ref_surface, picParam->pic_flags.bits.refresh_alternate_frame, picParam->pic_flags.bits.copy_buffer_to_alternate); } vaapi_context.recon_surface = vp8enc_get_unused_surface(); } void vp8enc_init_MiscParameterBuffers(VAEncMiscParameterHRD *hrd, VAEncMiscParameterFrameRate *frame_rate, VAEncMiscParameterRateControl *rate_control) { if (hrd != NULL) { if (settings.frame_bitrate) { hrd->initial_buffer_fullness = settings.frame_bitrate * settings.hrd_window / 2; hrd->buffer_size = settings.frame_bitrate * settings.hrd_window; } else { hrd->initial_buffer_fullness = 0; hrd->buffer_size = 0; } } if (frame_rate != NULL) { frame_rate->framerate = settings.frame_rate; } if (rate_control != NULL) { rate_control->window_size = settings.hrd_window; rate_control->initial_qp = settings.quantization_parameter; rate_control->min_qp = settings.clamp_qindex_low; //rate_control->rc_flags.bits.disable_bit_stuffing = 1; if (settings.rc_mode == VA_RC_VBR) { rate_control->bits_per_second = settings.max_variable_bitrate * 1000; rate_control->target_percentage = (settings.frame_bitrate * 100) / settings.max_variable_bitrate; } else { rate_control->bits_per_second = settings.frame_bitrate * 1000; rate_control->target_percentage = 95; } } } void vp8enc_create_EncoderPipe() { VAEntrypoint entrypoints[5]; int num_entrypoints; VAConfigAttrib conf_attrib[2]; VASurfaceAttrib surface_attrib; int major_ver, minor_ver; VAStatus va_status; vaapi_context.display = va_open_display(); va_status = vaInitialize(vaapi_context.display, &major_ver, &minor_ver); CHECK_VASTATUS(va_status, "vaInitialize"); vaQueryConfigEntrypoints(vaapi_context.display, vaapi_context.profile, entrypoints, &num_entrypoints); /* find out the format for the render target, and rate control mode */ conf_attrib[0].type = VAConfigAttribRTFormat; conf_attrib[1].type = VAConfigAttribRateControl; vaGetConfigAttributes(vaapi_context.display, vaapi_context.profile, settings.vaapi_entry_point, &conf_attrib[0], 2); if ((conf_attrib[0].value & VA_RT_FORMAT_YUV420) == 0) { fprintf(stderr, "Error: Input colorspace YUV420 not supported, exit\n"); assert(0); } if ((conf_attrib[1].value & settings.rc_mode) == 0) { /* Can't find matched RC mode */ fprintf(stderr, "Error: Can't find the desired RC mode, exit\n"); assert(0); } conf_attrib[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */ conf_attrib[1].value = settings.rc_mode; /* set to desired RC mode */ va_status = vaCreateConfig(vaapi_context.display, vaapi_context.profile, settings.vaapi_entry_point, &conf_attrib[0], 2, &vaapi_context.config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = VA_FOURCC_NV12; // Create surface (Reference Surfaces + Input Surfaces) va_status = vaCreateSurfaces( vaapi_context.display, VA_RT_FORMAT_YUV420, settings.width, settings.height, vaapi_context.surfaces, NUM_SURFACES_TOTAL, &surface_attrib, 1 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); vaapi_context.recon_surface = vaapi_context.surfaces[0]; vaapi_context.last_ref_surface = VA_INVALID_SURFACE; vaapi_context.golden_ref_surface = VA_INVALID_SURFACE; vaapi_context.alt_ref_surface = VA_INVALID_SURFACE; vaapi_context.input_surface = vaapi_context.surfaces[NUM_REF_SURFACES]; // input surfaces trail the reference surfaces /* Create a context for this Encoder pipe */ /* the surface is added to the render_target list when creating the context */ va_status = vaCreateContext(vaapi_context.display, vaapi_context.config_id, settings.width, settings.height, VA_PROGRESSIVE, vaapi_context.surfaces, NUM_SURFACES_TOTAL, &vaapi_context.context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); } void vp8enc_destory_EncoderPipe() { pthread_join(vaapi_context.upload_thread.id, NULL); vaDestroySurfaces(vaapi_context.display, vaapi_context.surfaces, NUM_SURFACES_TOTAL); vaDestroyContext(vaapi_context.display, vaapi_context.context_id); vaDestroyConfig(vaapi_context.display, vaapi_context.config_id); vaTerminate(vaapi_context.display); va_close_display(vaapi_context.display); } void vp8enc_init_VaapiContext() { size_t i; vaapi_context.profile = VAProfileVP8Version0_3; vp8enc_init_SequenceParameterBuffer(&vaapi_context.seq_param); vp8enc_init_PictureParameterBuffer(&vaapi_context.pic_param); vp8enc_init_QMatrix(&vaapi_context.q_matrix); vaapi_context.hrd_param.header.type = VAEncMiscParameterTypeHRD; vaapi_context.frame_rate_param.header.type = VAEncMiscParameterTypeFrameRate; vaapi_context.rate_control_param.header.type = VAEncMiscParameterTypeRateControl; vp8enc_init_MiscParameterBuffers(&vaapi_context.hrd_param.data, &vaapi_context.frame_rate_param.data, &vaapi_context.rate_control_param.data); for (i = 0; i < N_ELEMENTS(vaapi_context.va_buffers); i++) vaapi_context.va_buffers[i] = VA_INVALID_ID; vaapi_context.num_va_buffers = 0; vaapi_context.is_golden_refreshed = 0; } static int vp8enc_store_coded_buffer(FILE *vp8_fp, uint64_t timestamp) { VACodedBufferSegment *coded_buffer_segment; uint8_t *coded_mem; int data_length; VAStatus va_status; VASurfaceStatus surface_status; size_t w_items; va_status = vaSyncSurface(vaapi_context.display, vaapi_context.recon_surface); CHECK_VASTATUS(va_status, "vaSyncSurface"); surface_status = 0; va_status = vaQuerySurfaceStatus(vaapi_context.display, vaapi_context.recon_surface, &surface_status); CHECK_VASTATUS(va_status, "vaQuerySurfaceStatus"); va_status = vaMapBuffer(vaapi_context.display, vaapi_context.codedbuf_buf_id, (void **)(&coded_buffer_segment)); CHECK_VASTATUS(va_status, "vaMapBuffer"); coded_mem = coded_buffer_segment->buf; if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) { fprintf(stderr, "Error: CodeBuffer Size too small\n"); vaUnmapBuffer(vaapi_context.display, vaapi_context.codedbuf_buf_id); assert(0); } data_length = coded_buffer_segment->size; vp8enc_write_frame_header(vp8_fp, data_length, timestamp); do { w_items = fwrite(coded_mem, data_length, 1, vp8_fp); } while (w_items != 1); if (settings.debug) fprintf(stderr, "Timestamp: %ld Bytes written %d\n", timestamp, data_length); vaUnmapBuffer(vaapi_context.display, vaapi_context.codedbuf_buf_id); return 0; } size_t vp8enc_get_FileSize(FILE *fp) { struct stat st; int ret = fstat(fileno(fp), &st); CHECK_CONDITION(ret == 0); return st.st_size; } int vp8enc_prepare_buffers(int frame_type) { int num_buffers = 0; VABufferID *va_buffers; VAStatus va_status; VAEncPictureParameterBufferVP8 *picParam = &vaapi_context.pic_param; va_buffers = vaapi_context.va_buffers; /* coded buffer */ va_status = vaCreateBuffer(vaapi_context.display, vaapi_context.context_id, VAEncCodedBufferType, settings.codedbuf_size, 1, NULL, &vaapi_context.codedbuf_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* sequence parameter set */ va_status = vaCreateBuffer(vaapi_context.display, vaapi_context.context_id, VAEncSequenceParameterBufferType, sizeof(vaapi_context.seq_param), 1, &vaapi_context.seq_param, va_buffers); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_buffers ++; num_buffers++; /* picture parameter set */ picParam->coded_buf = vaapi_context.codedbuf_buf_id; va_status = vaCreateBuffer(vaapi_context.display, vaapi_context.context_id, VAEncPictureParameterBufferType, sizeof(vaapi_context.pic_param), 1, &vaapi_context.pic_param, va_buffers); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_buffers ++; num_buffers++; /* hrd parameter */ va_status = vaCreateBuffer(vaapi_context.display, vaapi_context.context_id, VAEncMiscParameterBufferType, sizeof(vaapi_context.hrd_param), 1, &vaapi_context.hrd_param, va_buffers); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_buffers ++; num_buffers++; /* QMatrix */ va_status = vaCreateBuffer(vaapi_context.display, vaapi_context.context_id, VAQMatrixBufferType, sizeof(vaapi_context.q_matrix), 1, &vaapi_context.q_matrix, va_buffers); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_buffers ++; num_buffers++; /* Create the Misc FR/RC buffer under non-CQP mode */ if (settings.rc_mode != VA_RC_CQP && frame_type == KEY_FRAME) { va_status = vaCreateBuffer(vaapi_context.display, vaapi_context.context_id, VAEncMiscParameterBufferType, sizeof(vaapi_context.frame_rate_param), 1, &vaapi_context.frame_rate_param, va_buffers); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_buffers ++; num_buffers++; va_status = vaCreateBuffer(vaapi_context.display, vaapi_context.context_id, VAEncMiscParameterBufferType, sizeof(vaapi_context.rate_control_param), 1, &vaapi_context.rate_control_param, va_buffers); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_buffers ++; num_buffers++; } vaapi_context.num_va_buffers = num_buffers; return num_buffers; } static void vp8enc_render_picture() { VAStatus va_status; va_status = vaBeginPicture(vaapi_context.display, vaapi_context.context_id, vaapi_context.input_surface); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(vaapi_context.display, vaapi_context.context_id, vaapi_context.va_buffers, vaapi_context.num_va_buffers); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(vaapi_context.display, vaapi_context.context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); } void vp8enc_destroy_buffers() { int i; VAStatus va_status; for (i = 0; i < vaapi_context.num_va_buffers; i++) { if (vaapi_context.va_buffers[i] != VA_INVALID_ID) { va_status = vaDestroyBuffer(vaapi_context.display, vaapi_context.va_buffers[i]); CHECK_VASTATUS(va_status, "vaDestroyBuffer"); vaapi_context.va_buffers[i] = VA_INVALID_ID; } } if (vaapi_context.codedbuf_buf_id != VA_INVALID_ID) { va_status = vaDestroyBuffer(vaapi_context.display, vaapi_context.codedbuf_buf_id); CHECK_VASTATUS(va_status, "vaDestroyBuffer"); vaapi_context.codedbuf_buf_id = VA_INVALID_ID; } } void vp8enc_show_help() { printf("Usage: vp8enc additional_option\n"); printf("output_vp8 should use *.ivf\n"); printf("The additional option is listed\n"); printf("-f \n"); printf("--intra_period \n"); printf("--qp \n"); printf("--rcmode 0: CQP, 1: CBR, 2: VBR\n"); printf("--fb (kbps unit)\n"); printf("--lf_level [0-63]\n"); printf("--hrd_win [1000-8000]\n"); printf("--vbr_max (kbps unit. It should be greater than fb)\n"); printf("--fn_num \n how many frames to be encoded\n"); printf("--error_resilient Turn on Error resilient mode\n"); printf("--debug Turn debug info on\n"); printf("--temp_svc Number of temporal layers 2 or 3\n"); printf("--repeat Number of times to repeat the encoding\n"); } void parameter_check(const char *param, int val, int min, int max) { if (val < min || val > max) { fprintf(stderr, "Error: %s out of range (%d..%d) \n", param, min, max); exit(VP8ENC_FAIL); } } void parameter_check_positive(const char *param, int val, int min) { if (val < 1) { fprintf(stderr, "Error: %s demands a positive value greater than %d \n", param, min); exit(VP8ENC_FAIL); } } int parse_options(int ac, char *av[]) { int c, long_index, tmp_input; while (1) { c = getopt_long_only(ac, av, "hf:?", long_opts, &long_index); if (c == -1) break; switch (c) { case 'f': tmp_input = atoi(optarg); parameter_check_positive("-f", tmp_input, 1); settings.frame_rate = tmp_input; break; case 1: tmp_input = atoi(optarg); parameter_check("--rcmode", tmp_input, 0, 2); settings.rc_mode = default_rc_modes[tmp_input]; break; case 2: tmp_input = atoi(optarg); parameter_check("--qp", tmp_input, 0, 255); settings.quantization_parameter = tmp_input; break; case 3: tmp_input = atoi(optarg); parameter_check_positive("--intra_period", tmp_input, 1); settings.intra_period = tmp_input; break; case 4: tmp_input = atoi(optarg); parameter_check_positive("--fb", tmp_input, 1); settings.frame_bitrate = tmp_input; break; case 5: tmp_input = atoi(optarg); parameter_check("--lf_level", tmp_input, 0, 63); settings.loop_filter_level = tmp_input; break; case 6: tmp_input = atoi(optarg); parameter_check("--hrd_win", tmp_input, 1000, 8000); settings.hrd_window = tmp_input; break; case 7: tmp_input = atoi(optarg); parameter_check_positive("--vbr_max", tmp_input, 1); settings.max_variable_bitrate = tmp_input; break; case 8: tmp_input = atoi(optarg); parameter_check_positive("--fn_num", tmp_input, 1); settings.num_frames = tmp_input; break; case 9: settings.error_resilient = 1; break; case 10: settings.debug = 1; break; case 11: tmp_input = atoi(optarg); parameter_check("--temp_svc", tmp_input, 2, 3); settings.temporal_svc_layers = tmp_input; break; case 12: tmp_input = atoi(optarg); parameter_check("--repeat", tmp_input, 1, 1000000); settings.repeat_times = tmp_input; break; case 'h': case 0: default: return PARSE_OPTIONS_FAIL; break; } } return PARSE_OPTIONS_OK; } int main(int argc, char *argv[]) { int current_frame, frame_type; FILE *fp_vp8_output = NULL; FILE *fp_yuv_input = NULL; uint64_t timestamp; struct timeval t1, t2; double fps, elapsed_time; if (argc < 5) { vp8enc_show_help(); return VP8ENC_FAIL; } if (parse_options(argc - 4, &argv[4]) != PARSE_OPTIONS_OK) { vp8enc_show_help(); return VP8ENC_FAIL; } settings.width = atoi(argv[1]); parameter_check("Width", settings.width, 16, MAX_XY_RESOLUTION); settings.height = atoi(argv[2]); parameter_check("Height", settings.height, 16, MAX_XY_RESOLUTION); if (settings.rc_mode == VA_RC_VBR && settings.max_variable_bitrate < settings.frame_bitrate) { fprintf(stderr, "Error: max. variable bitrate should be greater than frame bitrate (--vbr_max >= --fb)\n"); return VP8ENC_FAIL; } if (argv[3]) { fp_yuv_input = fopen(argv[3], "rb"); } if (fp_yuv_input == NULL) { fprintf(stderr, "Error: Couldn't open input file.\n"); return VP8ENC_FAIL; } vaapi_context.upload_thread.input_fp = fp_yuv_input; fp_vp8_output = fopen(argv[4], "wb"); if (fp_vp8_output == NULL) { fprintf(stderr, "Error: Couldn't open output file.\n"); return VP8ENC_FAIL; } if (settings.temporal_svc_layers == 2 && settings.intra_period % 2) fprintf(stderr, "Warning: Choose Key-Frame interval (--intra_period) to be integer mutliply of 2 to match temporal layer pattern"); if (settings.temporal_svc_layers == 3 && settings.intra_period % 4) fprintf(stderr, "Warning: Choose Key-Frame interval (--intra_period) to be integer mutliply of 4 to match temporal layer pattern"); settings.frame_size = settings.width * settings.height * 3 / 2; //NV12 Colorspace - For a 2x2 group of pixels, you have 4 Y samples and 1 U and 1 V sample. if (!settings.num_frames) settings.num_frames = vp8enc_get_FileSize(fp_yuv_input) / (size_t)settings.frame_size; settings.codedbuf_size = settings.width * settings.height; //just a generous assumptions fprintf(stderr, "Info: Encoding total of %d frames.\n", settings.num_frames); gettimeofday(&t1, 0); //Measure Runtime vp8enc_init_VaapiContext(); vp8enc_create_EncoderPipe(); vp8enc_write_ivf_header(fp_vp8_output); current_frame = 0; timestamp = 0; vaapi_context.input_surface = vaapi_context.surfaces[SID_INPUT_PICTURE_0]; vaapi_context.upload_thread.input_surface_num = SID_INPUT_PICTURE_0; while (current_frame < settings.num_frames * settings.repeat_times) { fprintf(stderr, "\rProcessing frame: %d", current_frame); if ((current_frame % settings.intra_period) == 0) frame_type = KEY_FRAME; else frame_type = INTER_FRAME; if (current_frame == 0) { // Preload first input_surface vp8enc_upload_yuv_to_surface(fp_yuv_input, vaapi_context.input_surface, current_frame); //prefill } else { // wait for input processing thread to finish pthread_join(vaapi_context.upload_thread.id, NULL); vaapi_context.input_surface = vaapi_context.upload_thread.input_surface; } // Start Upload thread if ((current_frame + 1) < settings.num_frames * settings.repeat_times) { vaapi_context.upload_thread.processed_frame = (current_frame % settings.num_frames - 1) + 1; if (vaapi_context.upload_thread.input_surface_num == SID_INPUT_PICTURE_0) vaapi_context.upload_thread.input_surface_num = SID_INPUT_PICTURE_1; else vaapi_context.upload_thread.input_surface_num = SID_INPUT_PICTURE_0; vaapi_context.upload_thread.input_surface = vaapi_context.surfaces[vaapi_context.upload_thread.input_surface_num]; vaapi_context.upload_thread.value = pthread_create(&vaapi_context.upload_thread.id, NULL, vp8enc_upload_thread_function, NULL); } vp8enc_update_picture_parameter(frame_type, current_frame); vp8enc_prepare_buffers(frame_type); vp8enc_render_picture(); vp8enc_store_coded_buffer(fp_vp8_output, timestamp); vp8enc_destroy_buffers(); vp8enc_update_reference_list(frame_type); current_frame ++; timestamp ++; } vp8enc_destory_EncoderPipe(); fclose(fp_vp8_output); fclose(fp_yuv_input); gettimeofday(&t2, 0); elapsed_time = (double)(t2.tv_sec - t1.tv_sec) + (double)(t2.tv_usec - t1.tv_usec) / 1000000.0; fps = (double)current_frame / elapsed_time; fprintf(stderr, "\nProcessed %d frames in %.0f ms (%.2f FPS)\n", current_frame, elapsed_time * 1000.0, fps); return VP8ENC_OK; } ================================================ FILE: encode/vp9enc.c ================================================ /* * Copyright (c) 2017 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ /* * This file has some codes for vp9 bitstream built, and * they are ported from libvpx (https://github.com/webmproject/libvpx/). * The original copyright and licence statement as below. */ /* * Copyright (c) 2010 The WebM project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #define KEY_FRAME 0 #define INTER_FRAME 1 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } #define CHECK_CONDITION(cond) \ if(!(cond)) \ { \ fprintf(stderr, "Unexpected condition: %s:%d\n", __func__, __LINE__); \ exit(1); \ } static VADisplay va_dpy; static int rc_mode; static int picture_width; static int picture_height; static int frame_size; static uint8_t *newImageBuffer = 0; static int hrd_window = 1500; static int vbr_max; static int qp_value = 60; static int intra_period = 30; static int frame_bit_rate = -1; static int frame_rate = 30; static int lf_level = 10; static int opt_header = 0; static int current_slot; static int frame_number; static int current_frame_type; static VASurfaceID vp9_ref_list[8]; #define SURFACE_NUM 8 #define SID_INPUT_PICTURE_0 0 #define SID_INPUT_PICTURE_1 1 #define SID_REFERENCE_PICTURE_L0 2 #define SID_REFERENCE_PICTURE_L1 3 #define SID_NUMBER 2 static VASurfaceID surface_ids[SID_NUMBER]; static VASurfaceID ref_surfaces[SURFACE_NUM + SID_NUMBER]; static int use_slot[SURFACE_NUM]; #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif static int rc_default_mode[4] = { VA_RC_CQP, VA_RC_CBR, VA_RC_VBR, VA_RC_NONE }; static int vp9enc_entrypoint_lists[2] = { VAEntrypointEncSlice, VAEntrypointEncSliceLP }; static int select_entrypoint = -1; static const struct option long_opts[] = { {"help", no_argument, NULL, 0 }, {"rcmode", required_argument, NULL, 1 }, {"qp", required_argument, NULL, 2 }, {"intra_period", required_argument, NULL, 3 }, {"fb", required_argument, NULL, 4 }, {"lf_level", required_argument, NULL, 6 }, {"opt_header", required_argument, NULL, 7}, {"hrd_win", required_argument, NULL, 8}, {"vbr_max", required_argument, NULL, 9}, {"fn_num", required_argument, NULL, 10}, {"low_power", required_argument, NULL, 11}, {NULL, no_argument, NULL, 0 } }; struct vp9enc_bit_buffer { uint8_t *bit_buffer; int bit_offset; }; struct upload_thread_param { FILE *yuv_fp; VASurfaceID surface_id; }; struct vp9encode_context { VAProfile profile; VAEncSequenceParameterBufferVP9 seq_param; VAEncPictureParameterBufferVP9 pic_param; VAContextID context_id; VAConfigID config_id; VABufferID seq_param_buf_id; /* Sequence level parameter */ VABufferID pic_param_buf_id; /* Picture level parameter */ VABufferID codedbuf_buf_id; /* Output buffer, compressed data */ VABufferID misc_parameter_hrd_buf_id; /* for VAEncMiscParameterTypeVP9PerSegmantParam. VAQMatrixBufferType */ VABufferID qmatrix_buf_id; /* the buffer for VP9 super block. VAEncMacroblockMapBufferType */ VABufferID mb_seg_buf_id; VABufferID raw_data_header_buf_id; VABufferID raw_data_buf_id; VABufferID misc_fr_buf_id; VABufferID misc_rc_buf_id; int codedbuf_i_size; int codedbuf_pb_size; int current_input_surface; int rate_control_method; struct upload_thread_param upload_thread_param; pthread_t upload_thread_id; int upload_thread_value; }; static struct vp9encode_context vp9enc_context; static void vp9enc_write_word(char *ptr, uint32_t value) { uint8_t *tmp; tmp = (uint8_t *)ptr; *(tmp) = (value >> 0) & 0XFF; *(tmp + 1) = (value >> 8) & 0XFF; } static void vp9enc_write_dword(char *ptr, uint32_t value) { uint8_t *tmp; tmp = (uint8_t *)ptr; *(tmp) = (value >> 0) & 0XFF; *(tmp + 1) = (value >> 8) & 0XFF; *(tmp + 2) = (value >> 16) & 0XFF; *(tmp + 3) = (value >> 24) & 0XFF; } static void vp9enc_wb_write_bit(struct vp9enc_bit_buffer *wb, int bit) { const int off = wb->bit_offset; const int p = off / 8; const int q = 7 - off % 8; if (q == 7) { wb->bit_buffer[p] = bit << q; } else { wb->bit_buffer[p] &= ~(1 << q); wb->bit_buffer[p] |= bit << q; } wb->bit_offset = off + 1; } static void vp9enc_wb_write_literal(struct vp9enc_bit_buffer *wb, int data, int bits) { int bit; for (bit = bits - 1; bit >= 0; bit--) vp9enc_wb_write_bit(wb, (data >> bit) & 1); } static void vp9enc_write_bitdepth_colorspace_sampling(int codec_profile, struct vp9enc_bit_buffer *wb) { if (codec_profile >= 2) { /* the bit-depth will be added for VP9Profile2/3 */ /* this will be added later */ assert(0); } /* Add the default color-space */ vp9enc_wb_write_literal(wb, 0, 3); vp9enc_wb_write_bit(wb, 0); // 0: [16, 235] (i.e. xvYCC), 1: [0, 255] /* the sampling_x/y will be added for VP9Profile1/2/3 later */ } #define MAX_TILE_WIDTH_B64 64 #define MIN_TILE_WIDTH_B64 4 static int vp9enc_get_min_log2_tile_cols(const int sb_cols) { int min_log2 = 0; while ((MAX_TILE_WIDTH_B64 << min_log2) < sb_cols) ++min_log2; return min_log2; } static int vp9enc_get_max_log2_tile_cols(const int sb_cols) { int max_log2 = 1; while ((sb_cols >> max_log2) >= MIN_TILE_WIDTH_B64) ++max_log2; return max_log2 - 1; } static void vp9enc_write_uncompressed_header(struct vp9encode_context *enc_context, char *header_data, int *header_length) { #define VP9_SYNC_CODE_0 0x49 #define VP9_SYNC_CODE_1 0x83 #define VP9_SYNC_CODE_2 0x42 #define VP9_FRAME_MARKER 0x2 #define REFS_PER_FRAME 3 #define REF_FRAMES_LOG2 3 #define REF_FRAMES (1 << REF_FRAMES_LOG2) #define VP9_KEY_FRAME 0 VAEncPictureParameterBufferVP9 *pic_param; struct vp9enc_bit_buffer *wb, vp9_wb; if (!header_data || !header_length) return; pic_param = &enc_context->pic_param; vp9_wb.bit_buffer = (uint8_t *)header_data; vp9_wb.bit_offset = 0; wb = &vp9_wb; vp9enc_wb_write_literal(wb, VP9_FRAME_MARKER, 2); vp9enc_wb_write_literal(wb, 0, 2); vp9enc_wb_write_bit(wb, 0); // show_existing_frame vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.frame_type); vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.show_frame); vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.error_resilient_mode); if (pic_param->pic_flags.bits.frame_type == VP9_KEY_FRAME) { vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_0, 8); vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_1, 8); vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_2, 8); vp9enc_write_bitdepth_colorspace_sampling(0, wb); /* write the encoded frame size */ vp9enc_wb_write_literal(wb, pic_param->frame_width_dst - 1, 16); vp9enc_wb_write_literal(wb, pic_param->frame_height_dst - 1, 16); /* write display size */ if ((pic_param->frame_width_dst != pic_param->frame_width_src) || (pic_param->frame_height_dst != pic_param->frame_height_src)) { vp9enc_wb_write_bit(wb, 1); vp9enc_wb_write_literal(wb, pic_param->frame_width_src - 1, 16); vp9enc_wb_write_literal(wb, pic_param->frame_height_src - 1, 16); } else vp9enc_wb_write_bit(wb, 0); } else { /* for the non-Key frame */ if (!pic_param->pic_flags.bits.show_frame) vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.intra_only); if (!pic_param->pic_flags.bits.error_resilient_mode) vp9enc_wb_write_literal(wb, pic_param->pic_flags.bits.reset_frame_context, 2); if (pic_param->pic_flags.bits.intra_only) { vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_0, 8); vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_1, 8); vp9enc_wb_write_literal(wb, VP9_SYNC_CODE_2, 8); /* Add the bit_depth for VP9Profile1/2/3 */ /* write the refreshed_frame_flags */ vp9enc_wb_write_literal(wb, pic_param->refresh_frame_flags, REF_FRAMES); /* write the encoded frame size */ vp9enc_wb_write_literal(wb, pic_param->frame_width_dst - 1, 16); vp9enc_wb_write_literal(wb, pic_param->frame_height_dst - 1, 16); /* write display size */ if ((pic_param->frame_width_dst != pic_param->frame_width_src) || (pic_param->frame_height_dst != pic_param->frame_height_src)) { vp9enc_wb_write_bit(wb, 1); vp9enc_wb_write_literal(wb, pic_param->frame_width_src - 1, 16); vp9enc_wb_write_literal(wb, pic_param->frame_height_src - 1, 16); } else vp9enc_wb_write_bit(wb, 0); } else { /* The refresh_frame_map is for the next frame so that it can select Last/Godlen/Alt ref_index */ vp9enc_wb_write_literal(wb, pic_param->refresh_frame_flags, REF_FRAMES); vp9enc_wb_write_literal(wb, pic_param->ref_flags.bits.ref_last_idx, REF_FRAMES_LOG2); vp9enc_wb_write_bit(wb, pic_param->ref_flags.bits.ref_last_sign_bias); vp9enc_wb_write_literal(wb, pic_param->ref_flags.bits.ref_gf_idx, REF_FRAMES_LOG2); vp9enc_wb_write_bit(wb, pic_param->ref_flags.bits.ref_gf_sign_bias); vp9enc_wb_write_literal(wb, pic_param->ref_flags.bits.ref_arf_idx, REF_FRAMES_LOG2); vp9enc_wb_write_bit(wb, pic_param->ref_flags.bits.ref_arf_sign_bias); /* write three bits with zero so that it can parse width/height directly */ vp9enc_wb_write_literal(wb, 0, 3); vp9enc_wb_write_literal(wb, pic_param->frame_width_dst - 1, 16); vp9enc_wb_write_literal(wb, pic_param->frame_height_dst - 1, 16); /* write display size */ if ((pic_param->frame_width_dst != pic_param->frame_width_src) || (pic_param->frame_height_dst != pic_param->frame_height_src)) { vp9enc_wb_write_bit(wb, 1); vp9enc_wb_write_literal(wb, pic_param->frame_width_src - 1, 16); vp9enc_wb_write_literal(wb, pic_param->frame_height_src - 1, 16); } else vp9enc_wb_write_bit(wb, 0); vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.allow_high_precision_mv); #define SWITCHABLE_FILTER 4 #define FILTER_MASK 3 if (pic_param->pic_flags.bits.mcomp_filter_type == SWITCHABLE_FILTER) vp9enc_wb_write_bit(wb, 1); else { const int filter_to_literal[4] = { 1, 0, 2, 3 }; uint8_t filter_flag = pic_param->pic_flags.bits.mcomp_filter_type; filter_flag = filter_flag & FILTER_MASK; vp9enc_wb_write_bit(wb, 0); vp9enc_wb_write_literal(wb, filter_to_literal[filter_flag], 2); } } } /* write refresh_frame_context/paralle frame_decoding */ if (!pic_param->pic_flags.bits.error_resilient_mode) { vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.refresh_frame_context); vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.frame_parallel_decoding_mode); } vp9enc_wb_write_literal(wb, pic_param->pic_flags.bits.frame_context_idx, 2); /* write loop filter */ pic_param->bit_offset_lf_level = wb->bit_offset; vp9enc_wb_write_literal(wb, pic_param->filter_level, 6); vp9enc_wb_write_literal(wb, pic_param->sharpness_level, 3); { int i, mode_flag; vp9enc_wb_write_bit(wb, 1); vp9enc_wb_write_bit(wb, 1); pic_param->bit_offset_ref_lf_delta = wb->bit_offset; for (i = 0; i < 4; i++) { /* * This check is skipped to prepare the bit_offset_lf_ref if (pic_param->ref_lf_delta[i] == 0) { vp9enc_wb_write_bit(wb, 0); continue; } */ vp9enc_wb_write_bit(wb, 1); mode_flag = pic_param->ref_lf_delta[i]; if (mode_flag >= 0) { vp9enc_wb_write_literal(wb, mode_flag & (0x3F), 6); vp9enc_wb_write_bit(wb, 0); } else { mode_flag = -mode_flag; vp9enc_wb_write_literal(wb, mode_flag & (0x3F), 6); vp9enc_wb_write_bit(wb, 1); } } pic_param->bit_offset_mode_lf_delta = wb->bit_offset; for (i = 0; i < 2; i++) { /* * This check is skipped to prepare the bit_offset_lf_ref if (pic_param->mode_lf_delta[i] == 0) { vp9enc_wb_write_bit(wb, 0); continue; } */ vp9enc_wb_write_bit(wb, 1); mode_flag = pic_param->mode_lf_delta[i]; if (mode_flag >= 0) { vp9enc_wb_write_literal(wb, mode_flag & (0x3F), 6); vp9enc_wb_write_bit(wb, 0); } else { mode_flag = -mode_flag; vp9enc_wb_write_literal(wb, mode_flag & (0x3F), 6); vp9enc_wb_write_bit(wb, 1); } } } /* write basic quantizer */ pic_param->bit_offset_qindex = wb->bit_offset; vp9enc_wb_write_literal(wb, pic_param->luma_ac_qindex, 8); if (pic_param->luma_dc_qindex_delta) { int delta_q = pic_param->luma_dc_qindex_delta; vp9enc_wb_write_bit(wb, 1); vp9enc_wb_write_literal(wb, abs(delta_q), 4); vp9enc_wb_write_bit(wb, delta_q < 0); } else vp9enc_wb_write_bit(wb, 0); if (pic_param->chroma_dc_qindex_delta) { int delta_q = pic_param->chroma_dc_qindex_delta; vp9enc_wb_write_bit(wb, 1); vp9enc_wb_write_literal(wb, abs(delta_q), 4); vp9enc_wb_write_bit(wb, delta_q < 0); } else vp9enc_wb_write_bit(wb, 0); if (pic_param->chroma_ac_qindex_delta) { int delta_q = pic_param->chroma_ac_qindex_delta; vp9enc_wb_write_bit(wb, 1); vp9enc_wb_write_literal(wb, abs(delta_q), 4); vp9enc_wb_write_bit(wb, delta_q < 0); } else vp9enc_wb_write_bit(wb, 0); /* segment is not enabled */ //vp9enc_wb_write_bit(wb, pic_param->pic_flags.bits.segmentation_enabled); vp9enc_wb_write_bit(wb, 0); { int sb_cols = (pic_param->frame_width_dst + 63) / 64; int min_log2_tile_cols, max_log2_tile_cols; int col_data; /* write tile column info */ min_log2_tile_cols = vp9enc_get_min_log2_tile_cols(sb_cols); max_log2_tile_cols = vp9enc_get_max_log2_tile_cols(sb_cols); col_data = pic_param->log2_tile_columns - min_log2_tile_cols; while (col_data--) { vp9enc_wb_write_bit(wb, 1); } if (pic_param->log2_tile_columns < max_log2_tile_cols) vp9enc_wb_write_bit(wb, 0); /* write tile row info */ vp9enc_wb_write_bit(wb, pic_param->log2_tile_rows); if (pic_param->log2_tile_rows) vp9enc_wb_write_bit(wb, (pic_param->log2_tile_rows != 1)); } /* get the bit_offset of the first partition size */ pic_param->bit_offset_first_partition_size = wb->bit_offset; /* reserve the space for writing the first partitions ize */ vp9enc_wb_write_literal(wb, 0, 16); *header_length = (wb->bit_offset + 7) / 8; } static void vp9enc_upload_yuv_to_surface(FILE *yuv_fp, VASurfaceID surface_id) { VAImage surface_image; VAStatus va_status; void *surface_p = NULL; uint8_t *y_src, *u_src, *v_src; uint8_t *y_dst, *u_dst, *v_dst; int y_size = picture_width * picture_height; int u_size = (picture_width >> 1) * (picture_height >> 1); int row, col; size_t n_items; do { n_items = fread(newImageBuffer, frame_size, 1, yuv_fp); } while (n_items != 1); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); vaMapBuffer(va_dpy, surface_image.buf, &surface_p); assert(VA_STATUS_SUCCESS == va_status); y_src = newImageBuffer; u_src = newImageBuffer + y_size; /* UV offset for NV12 */ v_src = newImageBuffer + y_size + u_size; y_dst = (unsigned char *)surface_p + surface_image.offsets[0]; u_dst = (unsigned char *)surface_p + surface_image.offsets[1]; /* UV offset for NV12 */ v_dst = (unsigned char *)surface_p + surface_image.offsets[2]; /* Y plane */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += picture_width; } if (surface_image.format.fourcc == VA_FOURCC_NV12) { /* UV plane */ for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.pitches[1]; u_src += (picture_width / 2); v_src += (picture_width / 2); } } else if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { const int U = surface_image.format.fourcc == VA_FOURCC_I420 ? 1 : 2; const int V = surface_image.format.fourcc == VA_FOURCC_I420 ? 2 : 1; u_dst = (unsigned char *)surface_p + surface_image.offsets[U]; v_dst = (unsigned char *)surface_p + surface_image.offsets[V]; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width / 2); memcpy(v_dst, v_src, surface_image.width / 2); u_dst += surface_image.pitches[U]; v_dst += surface_image.pitches[V]; u_src += (picture_width / 2); v_src += (picture_width / 2); } } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); } static void * vp9enc_upload_thread_function(void *data) { struct upload_thread_param *param = data; vp9enc_upload_yuv_to_surface(param->yuv_fp, param->surface_id); return NULL; } static void vp9enc_alloc_encode_resource(FILE *yuv_fp) { VAStatus va_status; VASurfaceAttrib attrib; int i; attrib.type = VASurfaceAttribPixelFormat; attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; attrib.value.type = VAGenericValueTypeInteger; attrib.value.value.i = VA_FOURCC_NV12; // Create surface va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, picture_width, picture_height, surface_ids, SID_NUMBER, &attrib, 1 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); // Create surface va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, picture_width, picture_height, ref_surfaces, SURFACE_NUM, &attrib, 1 ); for (i = 0; i < SID_NUMBER; i++) ref_surfaces[i + SURFACE_NUM] = surface_ids[i]; CHECK_VASTATUS(va_status, "vaCreateSurfaces"); newImageBuffer = (uint8_t *)malloc(frame_size); /* firstly upload YUV data to SID_INPUT_PICTURE_0 */ vp9enc_context.upload_thread_param.yuv_fp = yuv_fp; vp9enc_context.upload_thread_param.surface_id = surface_ids[SID_INPUT_PICTURE_0]; vp9enc_context.upload_thread_value = pthread_create(&vp9enc_context.upload_thread_id, NULL, vp9enc_upload_thread_function, (void*)&vp9enc_context.upload_thread_param); } static void vp9enc_create_encode_pipe(FILE *yuv_fp) { VAEntrypoint entrypoints[5]; int num_entrypoints, slice_entrypoint; VAConfigAttrib attrib[2]; int major_ver, minor_ver; VAStatus va_status; int i; va_dpy = va_open_display(); va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); CHECK_VASTATUS(va_status, "vaInitialize"); vaQueryConfigEntrypoints(va_dpy, vp9enc_context.profile, entrypoints, &num_entrypoints); for (slice_entrypoint = 0; slice_entrypoint < num_entrypoints; slice_entrypoint++) { if (select_entrypoint == -1) { for (i = 0; i < 2; i++) { if (entrypoints[slice_entrypoint] == vp9enc_entrypoint_lists[i]) break; } if (i < 2) { select_entrypoint = i; break; } } else { assert(select_entrypoint == 0 || select_entrypoint == 1); if (entrypoints[slice_entrypoint] == vp9enc_entrypoint_lists[select_entrypoint]) break; } } if (slice_entrypoint == num_entrypoints) { /* not find Slice entry point */ assert(0); } /* find out the format for the render target, and rate control mode */ attrib[0].type = VAConfigAttribRTFormat; attrib[1].type = VAConfigAttribRateControl; vaGetConfigAttributes(va_dpy, vp9enc_context.profile, vp9enc_entrypoint_lists[select_entrypoint], &attrib[0], 2); if ((attrib[0].value & VA_RT_FORMAT_YUV420) == 0) { /* not find desired YUV420 RT format */ assert(0); } if ((attrib[1].value & vp9enc_context.rate_control_method) == 0) { /* Can't find matched RC mode */ printf("Can't find the desired RC mode, exit\n"); assert(0); } attrib[0].value = VA_RT_FORMAT_YUV420; /* set to desired RT format */ attrib[1].value = vp9enc_context.rate_control_method; /* set to desired RC mode */ va_status = vaCreateConfig(va_dpy, vp9enc_context.profile, vp9enc_entrypoint_lists[select_entrypoint], &attrib[0], 2, &vp9enc_context.config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); vp9enc_alloc_encode_resource(yuv_fp); /* Create a context for this decode pipe */ /* the surface is added to the render_target list when creating the context */ va_status = vaCreateContext(va_dpy, vp9enc_context.config_id, picture_width, picture_height, VA_PROGRESSIVE, ref_surfaces, SURFACE_NUM + 2, &vp9enc_context.context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); } static void vp9enc_destory_encode_pipe() { vaDestroyContext(va_dpy, vp9enc_context.context_id); vaDestroyConfig(va_dpy, vp9enc_context.config_id); vaTerminate(va_dpy); va_close_display(va_dpy); } static void vp9enc_release_encode_resource() { pthread_join(vp9enc_context.upload_thread_id, NULL); free(newImageBuffer); vaDestroySurfaces(va_dpy, surface_ids, SID_NUMBER); vaDestroySurfaces(va_dpy, ref_surfaces, SURFACE_NUM); } static int vp9enc_get_free_slot() { int i, index = -1; for (i = 0; i < SURFACE_NUM; i++) { if (use_slot[i] == 0) { index = i; break; } } if (index < 0) { printf("WARNING: No free slot to store the reconstructed frame \n"); index = SURFACE_NUM - 1; } return index; } static void vp9enc_update_reference_list(void) { VASurfaceID last_surf; int last_slot; int i; /* Todo: Add the full support of reference frames */ if (current_frame_type == KEY_FRAME) { memset(use_slot, 0, sizeof(use_slot)); use_slot[current_slot] = 1; for (i = 0; i < SURFACE_NUM; i++) vp9_ref_list[i] = ref_surfaces[current_slot]; return; } last_slot = -1; use_slot[current_slot] = 1; last_surf = vp9_ref_list[0]; vp9_ref_list[0] = ref_surfaces[current_slot]; for (i = 0; i < SURFACE_NUM; i++) { if (ref_surfaces[i] == last_surf) { last_slot = i; break; } } if (last_slot != -1) { int used_flag = 0; for (i = 1; i < SURFACE_NUM; i++) { if (vp9_ref_list[i] == last_surf) { used_flag = 1; break; } } if (!used_flag) use_slot[last_slot] = 0; } } static void vp9enc_update_picture_parameter(int frame_type) { VAEncPictureParameterBufferVP9 *pic_param; int recon_index; VASurfaceID current_surface; int ref_num = 0; int i = 0; recon_index = vp9enc_get_free_slot(); current_slot = recon_index; current_surface = ref_surfaces[recon_index]; pic_param = &vp9enc_context.pic_param; pic_param->reconstructed_frame = current_surface; pic_param->coded_buf = vp9enc_context.codedbuf_buf_id; ref_num = sizeof(pic_param->reference_frames) / sizeof(VASurfaceID); if (frame_type == KEY_FRAME) { pic_param->pic_flags.bits.frame_type = KEY_FRAME; pic_param->pic_flags.bits.frame_context_idx = 0; pic_param->ref_flags.bits.ref_last_idx = 0; pic_param->ref_flags.bits.ref_gf_idx = 0; pic_param->ref_flags.bits.ref_arf_idx = 0; pic_param->pic_flags.bits.frame_context_idx = 0; pic_param->ref_flags.bits.ref_frame_ctrl_l0 = 0; for (i = 0; i < ref_num; i++) pic_param->reference_frames[i] = VA_INVALID_ID; } else { pic_param->refresh_frame_flags = 0x01; pic_param->pic_flags.bits.frame_type = INTER_FRAME; pic_param->ref_flags.bits.ref_frame_ctrl_l0 = 0x7; pic_param->ref_flags.bits.ref_last_idx = 0; pic_param->ref_flags.bits.ref_gf_idx = 1; pic_param->ref_flags.bits.ref_arf_idx = 2; pic_param->pic_flags.bits.frame_context_idx = 0; memcpy(&pic_param->reference_frames, vp9_ref_list, sizeof(vp9_ref_list)); } } static void vp9enc_create_picture_parameter_buf() { VAStatus va_status; va_status = vaCreateBuffer(va_dpy, vp9enc_context.context_id, VAEncPictureParameterBufferType, sizeof(vp9enc_context.pic_param), 1, &vp9enc_context.pic_param, &vp9enc_context.pic_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } static void vp9enc_begin_picture(FILE *yuv_fp, int frame_num, int frame_type) { VAStatus va_status; if (vp9enc_context.upload_thread_value != 0) { fprintf(stderr, "FATAL error!!!\n"); exit(1); } pthread_join(vp9enc_context.upload_thread_id, NULL); vp9enc_context.upload_thread_value = -1; /* sequence parameter set */ VAEncSequenceParameterBufferVP9 *seq_param = &vp9enc_context.seq_param; va_status = vaCreateBuffer(va_dpy, vp9enc_context.context_id, VAEncSequenceParameterBufferType, sizeof(*seq_param), 1, seq_param, &vp9enc_context.seq_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* hrd parameter */ VAEncMiscParameterBuffer *misc_param; VAEncMiscParameterHRD *misc_hrd_param; va_status = vaCreateBuffer(va_dpy, vp9enc_context.context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl), 1, NULL, &vp9enc_context.misc_parameter_hrd_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, vp9enc_context.misc_parameter_hrd_buf_id, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeHRD; misc_hrd_param = (VAEncMiscParameterHRD *)misc_param->data; if (frame_bit_rate > 0) { misc_hrd_param->initial_buffer_fullness = frame_bit_rate * hrd_window / 2; misc_hrd_param->buffer_size = frame_bit_rate * hrd_window; } else { misc_hrd_param->initial_buffer_fullness = 0; misc_hrd_param->buffer_size = 0; } vaUnmapBuffer(va_dpy, vp9enc_context.misc_parameter_hrd_buf_id); VAEncMiscParameterTypeVP9PerSegmantParam seg_param; memset(&seg_param, 0, sizeof(seg_param)); va_status = vaCreateBuffer(va_dpy, vp9enc_context.context_id, VAQMatrixBufferType, sizeof(seg_param), 1, &seg_param, &vp9enc_context.qmatrix_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* Create the Misc FR/RC buffer under non-CQP mode */ if (rc_mode != VA_RC_CQP && frame_type == KEY_FRAME) { VAEncMiscParameterFrameRate *misc_fr; VAEncMiscParameterRateControl *misc_rc; va_status = vaCreateBuffer(va_dpy, vp9enc_context.context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterFrameRate), 1, NULL, &vp9enc_context.misc_fr_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, vp9enc_context.misc_fr_buf_id, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeFrameRate; misc_fr = (VAEncMiscParameterFrameRate *)misc_param->data; misc_fr->framerate = frame_rate; vaUnmapBuffer(va_dpy, vp9enc_context.misc_fr_buf_id); va_status = vaCreateBuffer(va_dpy, vp9enc_context.context_id, VAEncMiscParameterBufferType, sizeof(VAEncMiscParameterBuffer) + sizeof(VAEncMiscParameterRateControl), 1, NULL, &vp9enc_context.misc_rc_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); vaMapBuffer(va_dpy, vp9enc_context.misc_rc_buf_id, (void **)&misc_param); misc_param->type = VAEncMiscParameterTypeRateControl; misc_rc = (VAEncMiscParameterRateControl *)misc_param->data; misc_rc->bits_per_second = frame_bit_rate * 1000; misc_rc->window_size = hrd_window; misc_rc->initial_qp = qp_value; /* The target percentage is only for VBR. It is ignored in CBR */ misc_rc->target_percentage = 95; if (rc_mode == VA_RC_VBR) { misc_rc->bits_per_second = vbr_max * 1000; misc_rc->target_percentage = (frame_bit_rate * 100) / vbr_max; } vaUnmapBuffer(va_dpy, vp9enc_context.misc_rc_buf_id); } } static void vp9enc_render_picture() { VAStatus va_status; VABufferID va_buffers[10]; uint32_t num_va_buffers = 0; va_buffers[num_va_buffers++] = vp9enc_context.seq_param_buf_id; va_buffers[num_va_buffers++] = vp9enc_context.pic_param_buf_id; if (vp9enc_context.misc_parameter_hrd_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = vp9enc_context.misc_parameter_hrd_buf_id; if (vp9enc_context.qmatrix_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = vp9enc_context.qmatrix_buf_id; if (vp9enc_context.mb_seg_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = vp9enc_context.mb_seg_buf_id; if (vp9enc_context.raw_data_header_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = vp9enc_context.raw_data_header_buf_id; if (vp9enc_context.raw_data_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = vp9enc_context.raw_data_buf_id; if (vp9enc_context.misc_fr_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = vp9enc_context.misc_fr_buf_id; if (vp9enc_context.misc_rc_buf_id != VA_INVALID_ID) va_buffers[num_va_buffers++] = vp9enc_context.misc_rc_buf_id; va_status = vaBeginPicture(va_dpy, vp9enc_context.context_id, surface_ids[vp9enc_context.current_input_surface]); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, vp9enc_context.context_id, va_buffers, num_va_buffers); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, vp9enc_context.context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); } static void vp9enc_destroy_buffers(VABufferID *va_buffers, uint32_t num_va_buffers) { VAStatus va_status; uint32_t i; for (i = 0; i < num_va_buffers; i++) { if (va_buffers[i] != VA_INVALID_ID) { va_status = vaDestroyBuffer(va_dpy, va_buffers[i]); CHECK_VASTATUS(va_status, "vaDestroyBuffer"); va_buffers[i] = VA_INVALID_ID; } } } static void vp9enc_write_frame_header(FILE *vp9_output, int frame_size) { char header[12]; vp9enc_write_dword(header, (uint32_t)frame_size); vp9enc_write_dword(header + 4, 0); vp9enc_write_dword(header + 8, 0); fwrite(header, 1, 12, vp9_output); } static int vp9enc_store_coded_buffer(FILE *vp9_fp, int frame_type) { VACodedBufferSegment *coded_buffer_segment; uint8_t *coded_mem; int data_length; VAStatus va_status; VASurfaceStatus surface_status; size_t w_items; va_status = vaSyncSurface(va_dpy, surface_ids[vp9enc_context.current_input_surface]); CHECK_VASTATUS(va_status, "vaSyncSurface"); surface_status = 0; va_status = vaQuerySurfaceStatus(va_dpy, surface_ids[vp9enc_context.current_input_surface], &surface_status); CHECK_VASTATUS(va_status, "vaQuerySurfaceStatus"); va_status = vaMapBuffer(va_dpy, vp9enc_context.codedbuf_buf_id, (void **)(&coded_buffer_segment)); CHECK_VASTATUS(va_status, "vaMapBuffer"); coded_mem = coded_buffer_segment->buf; if (coded_buffer_segment->status & VA_CODED_BUF_STATUS_SLICE_OVERFLOW_MASK) { if (frame_type == KEY_FRAME) vp9enc_context.codedbuf_i_size *= 2; else vp9enc_context.codedbuf_pb_size *= 2; vaUnmapBuffer(va_dpy, vp9enc_context.codedbuf_buf_id); return -1; } data_length = coded_buffer_segment->size; vp9enc_write_frame_header(vp9_fp, data_length); do { w_items = fwrite(coded_mem, data_length, 1, vp9_fp); } while (w_items != 1); vaUnmapBuffer(va_dpy, vp9enc_context.codedbuf_buf_id); return 0; } static void vp9enc_write_ivf_header(FILE *vp9_file, int width, int height, int frame_num, int frame_rate) { #define VP9_FOURCC 0x30395056 char header[32]; header[0] = 'D'; header[1] = 'K'; header[2] = 'I'; header[3] = 'F'; vp9enc_write_word(header + 4, 0); vp9enc_write_word(header + 6, 32); vp9enc_write_dword(header + 8, VP9_FOURCC); vp9enc_write_word(header + 12, width); vp9enc_write_word(header + 14, height); vp9enc_write_dword(header + 16, 1); vp9enc_write_dword(header + 20, frame_rate); vp9enc_write_dword(header + 24, frame_num); vp9enc_write_dword(header + 28, 0); fwrite(header, 1, 32, vp9_file); } static void vp9enc_get_frame_type(int encoding_order, int gop_size, int ip_period, int *frame_type) { if (ip_period == 0 || (encoding_order % gop_size == 0)) *frame_type = KEY_FRAME; else *frame_type = INTER_FRAME; } static void vp9enc_end_picture() { vp9enc_destroy_buffers(&vp9enc_context.seq_param_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.pic_param_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.codedbuf_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.qmatrix_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.misc_parameter_hrd_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.mb_seg_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.raw_data_header_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.raw_data_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.misc_fr_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.misc_rc_buf_id, 1); if (vp9enc_context.current_input_surface == SID_INPUT_PICTURE_0) vp9enc_context.current_input_surface = SID_INPUT_PICTURE_1; else vp9enc_context.current_input_surface = SID_INPUT_PICTURE_0; } static void vp9enc_encode_picture(FILE *yuv_fp, FILE *vp9_fp, int frame_num, int frame_type, int next_enc_frame) { VAStatus va_status; int ret = 0, codedbuf_size; vp9enc_begin_picture(yuv_fp, frame_num, frame_type); if (next_enc_frame < frame_num) { int index; /* prepare for next frame */ if (vp9enc_context.current_input_surface == SID_INPUT_PICTURE_0) index = SID_INPUT_PICTURE_1; else index = SID_INPUT_PICTURE_0; ret = fseeko(yuv_fp, (off_t)frame_size * next_enc_frame, SEEK_SET); CHECK_CONDITION(ret == 0); vp9enc_context.upload_thread_param.yuv_fp = yuv_fp; vp9enc_context.upload_thread_param.surface_id = surface_ids[index]; vp9enc_context.upload_thread_value = pthread_create(&vp9enc_context.upload_thread_id, NULL, vp9enc_upload_thread_function, (void*)&vp9enc_context.upload_thread_param); } do { vp9enc_destroy_buffers(&vp9enc_context.codedbuf_buf_id, 1); vp9enc_destroy_buffers(&vp9enc_context.pic_param_buf_id, 1); if (frame_type == KEY_FRAME) codedbuf_size = vp9enc_context.codedbuf_i_size; else codedbuf_size = vp9enc_context.codedbuf_pb_size; /* coded buffer */ va_status = vaCreateBuffer(va_dpy, vp9enc_context.context_id, VAEncCodedBufferType, codedbuf_size, 1, NULL, &vp9enc_context.codedbuf_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* picture parameter set */ vp9enc_update_picture_parameter(current_frame_type); if (opt_header) { char raw_data[64]; int raw_data_length; VAEncPackedHeaderParameterBuffer packed_header_param_buffer; memset(raw_data, 0, sizeof(raw_data)); vp9enc_write_uncompressed_header(&vp9enc_context, raw_data, &raw_data_length); packed_header_param_buffer.type = VAEncPackedHeaderRawData; packed_header_param_buffer.bit_length = raw_data_length * 8; packed_header_param_buffer.has_emulation_bytes = 0; va_status = vaCreateBuffer(va_dpy, vp9enc_context.context_id, VAEncPackedHeaderParameterBufferType, sizeof(packed_header_param_buffer), 1, &packed_header_param_buffer, &vp9enc_context.raw_data_header_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, vp9enc_context.context_id, VAEncPackedHeaderDataBufferType, raw_data_length, 1, raw_data, &vp9enc_context.raw_data_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } vp9enc_create_picture_parameter_buf(); vp9enc_render_picture(); ret = vp9enc_store_coded_buffer(vp9_fp, current_frame_type); } while (ret); vp9enc_update_reference_list(); vp9enc_end_picture(); } static void vp9enc_context_seq_param_init(VAEncSequenceParameterBufferVP9 *seq_param, int width, int height) { seq_param->intra_period = intra_period; seq_param->max_frame_width = width; seq_param->max_frame_height = height; seq_param->kf_auto = 0; seq_param->kf_min_dist = 1; seq_param->kf_max_dist = intra_period; if (frame_bit_rate > 0) seq_param->bits_per_second = 1000 * frame_bit_rate; /* use kbps as input */ else seq_param->bits_per_second = 0; } static void vp9enc_context_pic_param_init(VAEncPictureParameterBufferVP9 *pic_param, int width, int height) { int i, ref_num; memset(pic_param, 0, sizeof(VAEncPictureParameterBufferVP9)); ref_num = sizeof(pic_param->reference_frames) / sizeof(VASurfaceID); for (i = 0; i < ref_num; i++) pic_param->reference_frames[i] = VA_INVALID_ID; pic_param->coded_buf = VA_INVALID_ID; pic_param->reconstructed_frame = VA_INVALID_ID; pic_param->frame_width_src = width; pic_param->frame_height_src = height; pic_param->frame_width_dst = width; pic_param->frame_height_dst = height; pic_param->ref_flags.bits.force_kf = 0; /* always show it */ pic_param->pic_flags.bits.show_frame = 1; /* Not use silience mode */ pic_param->pic_flags.bits.error_resilient_mode = 0; /* Not use the frame parallel mode */ pic_param->pic_flags.bits.frame_parallel_decoding_mode = 0; pic_param->luma_ac_qindex = qp_value; pic_param->luma_dc_qindex_delta = 1; pic_param->chroma_ac_qindex_delta = 1; pic_param->chroma_dc_qindex_delta = 1; /* use the zero sharpness_level/lf_ref&mode deltas */ pic_param->filter_level = lf_level; for (i = 0; i < 4; i++) pic_param->ref_lf_delta[i] = 1; for (i = 0; i < 2; i++) pic_param->mode_lf_delta[i] = 1; } static void vp9enc_context_init(int width, int height) { memset(&vp9enc_context, 0, sizeof(vp9enc_context)); vp9enc_context.profile = VAProfileVP9Profile0; memset(&use_slot, 0, sizeof(use_slot)); vp9enc_context.seq_param_buf_id = VA_INVALID_ID; vp9enc_context.pic_param_buf_id = VA_INVALID_ID; vp9enc_context.mb_seg_buf_id = VA_INVALID_ID; vp9enc_context.misc_parameter_hrd_buf_id = VA_INVALID_ID; vp9enc_context.qmatrix_buf_id = VA_INVALID_ID; vp9enc_context.codedbuf_buf_id = VA_INVALID_ID; vp9enc_context.raw_data_header_buf_id = VA_INVALID_ID; vp9enc_context.raw_data_buf_id = VA_INVALID_ID; vp9enc_context.misc_fr_buf_id = VA_INVALID_ID; vp9enc_context.misc_rc_buf_id = VA_INVALID_ID; vp9enc_context.codedbuf_i_size = width * height; vp9enc_context.codedbuf_pb_size = width * height; vp9enc_context.current_input_surface = SID_INPUT_PICTURE_0; vp9enc_context.upload_thread_value = -1; vp9enc_context.rate_control_method = rc_mode; vp9enc_context_seq_param_init(&vp9enc_context.seq_param, 8192, 8192); vp9enc_context_pic_param_init(&vp9enc_context.pic_param, width, height); } static void vp9enc_show_help() { printf("Usage: vp9encode additional_option\n"); printf("output_vp9 should use *.ivf\n"); printf("The additional option is listed\n"); printf("-f \n"); printf("--intra_period \n"); printf("--qp \n"); printf("--rcmode 0: CQP, 1: CBR, 2: VBR\n"); printf("--fb (kbps unit)\n"); printf("--lf_level [0-63]\n"); printf("--hrd_win [1000-8000]\n"); printf("--vbr_max (kbps unit. It should be greater than fb)\n"); printf("--opt_header \n write the uncompressed header manually. without this, the driver will add those headers by itself\n"); printf("--fn_num \n how many frames to be encoded\n"); printf("--low_power 0: Normal mode, 1: Low power mode, others: auto mode\n"); } int main(int argc, char *argv[]) { char *yuv_input, *vp9_output, *tmp_vp9; FILE *yuv_fp; FILE *vp9_fp; off_t file_size; struct timeval tpstart, tpend; float timeuse; int ip_period; int fn_num; int frame_idx; va_init_display_args(&argc, argv); //TODO may be we should using option analytics library if (argc < 5) { vp9enc_show_help(); exit(0); } picture_width = atoi(argv[1]); picture_height = atoi(argv[2]); yuv_input = argv[3]; vp9_output = argv[4]; fn_num = -1; if (!yuv_input || !vp9_output) { vp9enc_show_help(); exit(0); } tmp_vp9 = strdup(argv[4]); assert(tmp_vp9); if (!strstr(tmp_vp9, ".ivf")) { free(tmp_vp9); vp9enc_show_help(); exit(0); } free(tmp_vp9); rc_mode = VA_RC_CQP; frame_rate = 30; qp_value = 60; intra_period = 30; frame_bit_rate = -1; vbr_max = -1; if (argc > 5) { int c, long_index, tmp_input; while (1) { c = getopt_long_only(argc - 4, argv + 4, "hf:?", long_opts, &long_index); if (c == -1) break; switch (c) { case 'h': case 0: vp9enc_show_help(); exit(0); break; case 'f': frame_rate = atoi(optarg); break; case 1: tmp_input = atoi(optarg); if (tmp_input > 3 || tmp_input < 0) tmp_input = 0; rc_mode = rc_default_mode[tmp_input]; break; case 2: tmp_input = atoi(optarg); if (tmp_input < 0 || tmp_input > 255) tmp_input = 60; qp_value = tmp_input; break; case 3: tmp_input = atoi(optarg); if (tmp_input < 0) tmp_input = 30; intra_period = tmp_input; break; case 4: tmp_input = atoi(optarg); frame_bit_rate = tmp_input; break; case 6: tmp_input = atoi(optarg); if (tmp_input < 0 || tmp_input > 63) tmp_input = 10; lf_level = tmp_input; break; case 7: tmp_input = atoi(optarg); if (tmp_input) tmp_input = 1; opt_header = tmp_input; break; case 8: tmp_input = atoi(optarg); if (tmp_input > 8000 || tmp_input < 1000) tmp_input = 1500; hrd_window = tmp_input; break; case 9: tmp_input = atoi(optarg); if (tmp_input < 0) tmp_input = 20000; else if (tmp_input > 100000) tmp_input = 100000; vbr_max = tmp_input; break; case 10: tmp_input = atoi(optarg); fn_num = tmp_input; break; case 11: tmp_input = atoi(optarg); if (tmp_input == 0 || tmp_input == 1) select_entrypoint = tmp_input; else select_entrypoint = -1; break; default: vp9enc_show_help(); exit(0); break; } } } if (rc_mode != VA_RC_CQP && (frame_bit_rate < 0)) { printf("Please specifiy the bit rate for CBR/VBR\n"); vp9enc_show_help(); exit(0); } if (rc_mode == VA_RC_VBR) { if (vbr_max < 0) { vbr_max = frame_bit_rate; frame_bit_rate = (vbr_max * 95 / 100); } if (vbr_max < frame_bit_rate) { printf("Under VBR, the max bit rate should be greater than or equal to fb\n"); vp9enc_show_help(); exit(0); } if (vbr_max > (frame_bit_rate * 2)) { printf("under VBR, the max bit rate is too much greater than the average bit\n"); vp9enc_show_help(); exit(0); } } yuv_fp = fopen(yuv_input, "rb"); if (yuv_fp == NULL) { printf("Can't open input YUV file\n"); return -1; } fseeko(yuv_fp, (off_t)0, SEEK_END); file_size = ftello(yuv_fp); frame_size = picture_width * picture_height + ((picture_width * picture_height) >> 1) ; if (frame_size == 0) { fclose(yuv_fp); printf("Frame size is not correct\n"); return -1; } if ((file_size < frame_size) || (file_size % frame_size)) { fclose(yuv_fp); printf("The YUV file's size is not correct\n"); return -1; } frame_number = file_size / frame_size; fseeko(yuv_fp, (off_t)0, SEEK_SET); if (fn_num > 0 && fn_num <= frame_number) frame_number = fn_num; vp9_fp = fopen(vp9_output, "wb"); if (vp9_fp == NULL) { fclose(yuv_fp); printf("Can't open output avc file\n"); return -1; } if (intra_period == 0) intra_period = frame_number; ip_period = 1; if (intra_period == 1) ip_period = 0; gettimeofday(&tpstart, NULL); vp9enc_write_ivf_header(vp9_fp, picture_width, picture_height, frame_number, frame_rate); vp9enc_context_init(picture_width, picture_height); vp9enc_create_encode_pipe(yuv_fp); for (frame_idx = 0; frame_idx < frame_number; frame_idx++) { vp9enc_get_frame_type(frame_idx, intra_period, ip_period, ¤t_frame_type); vp9enc_encode_picture(yuv_fp, vp9_fp, frame_number, current_frame_type, frame_idx + 1); printf("\r %d/%d ...", (frame_idx + 1), frame_number); fflush(stdout); } gettimeofday(&tpend, NULL); timeuse = 1000000 * (tpend.tv_sec - tpstart.tv_sec) + tpend.tv_usec - tpstart.tv_usec; timeuse /= 1000000; printf("\ndone!\n"); printf("encode %d frames in %f secondes, FPS is %.1f\n", frame_number, timeuse, frame_number / timeuse); vp9enc_release_encode_resource(); vp9enc_destory_encode_pipe(); fclose(yuv_fp); fclose(vp9_fp); return 0; } ================================================ FILE: getopt/getopt.h ================================================ /* $OpenBSD: getopt.h,v 1.2 2008/06/26 05:42:04 ray Exp $ */ /* $NetBSD: getopt.h,v 1.4 2000/07/07 10:43:54 ad Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Dieter Baron and Thomas Klausner. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifndef _GETOPT_H_ #define _GETOPT_H_ /* * GNU-like getopt_long() and 4.4BSD getsubopt()/optreset extensions */ #define no_argument 0 #define required_argument 1 #define optional_argument 2 #ifdef __cplusplus extern "C" { #endif struct option { /* name of long option */ const char *name; /* * one of no_argument, required_argument, and optional_argument: * whether option takes an argument */ int has_arg; /* if not NULL, set *flag to val when option found */ int *flag; /* if flag not NULL, value to set *flag to; else return value */ int val; }; int getopt_long(int, char * const *, const char *, const struct option *, int *); int getopt_long_only(int, char * const *, const char *, const struct option *, int *); #ifndef _GETOPT_DEFINED_ #define _GETOPT_DEFINED_ int getopt(int, char * const *, const char *); int getsubopt(char **, char * const *, char **); extern char *optarg; /* getopt(3) external variables */ extern int opterr; extern int optind; extern int optopt; extern int optreset; extern char *suboptarg; /* getsubopt(3) external variable */ #endif #ifdef __cplusplus } #endif #endif /* !_GETOPT_H_ */ ================================================ FILE: getopt/getopt_long.c ================================================ /* $OpenBSD: getopt_long.c,v 1.24 2010/07/22 19:31:53 blambert Exp $ */ /* $NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ */ /* * Copyright (c) 2002 Todd C. Miller * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Sponsored in part by the Defense Advanced Research Projects * Agency (DARPA) and Air Force Research Laboratory, Air Force * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Dieter Baron and Thomas Klausner. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include int opterr = 1; /* if error message should be printed */ int optind = 1; /* index into parent argv vector */ int optopt = '?'; /* character checked for validity */ int optreset; /* reset getopt */ char *optarg; /* argument associated with option */ #define PRINT_ERROR ((opterr) && (*options != ':')) #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */ #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */ #define FLAG_LONGONLY 0x04 /* operate as getopt_long_only */ /* return values */ #define BADCH (int)'?' #define BADARG ((*options == ':') ? (int)':' : (int)'?') #define INORDER (int)1 #define EMSG "" static int getopt_internal(int, char * const *, const char *, const struct option *, int *, int); static int parse_long_options(char * const *, const char *, const struct option *, int *, int); static int gcd(int, int); static void permute_args(int, int, int, char * const *); static char *place = EMSG; /* option letter processing */ /* XXX: set optreset to 1 rather than these two */ static int nonopt_start = -1; /* first non option argument (for permute) */ static int nonopt_end = -1; /* first option after non options (for permute) */ /* Error messages */ static const char recargchar[] = "option requires an argument -- %c"; static const char recargstring[] = "option requires an argument -- %s"; static const char ambig[] = "ambiguous option -- %.*s"; static const char noarg[] = "option doesn't take an argument -- %.*s"; static const char illoptchar[] = "unknown option -- %c"; static const char illoptstring[] = "unknown option -- %s"; /* * Compute the greatest common divisor of a and b. */ static int gcd(int a, int b) { int c; c = a % b; while (c != 0) { a = b; b = c; c = a % b; } return (b); } /* * Exchange the block from nonopt_start to nonopt_end with the block * from nonopt_end to opt_end (keeping the same order of arguments * in each block). */ static void permute_args(int panonopt_start, int panonopt_end, int opt_end, char * const *nargv) { int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos; char *swap; /* * compute lengths of blocks and number and size of cycles */ nnonopts = panonopt_end - panonopt_start; nopts = opt_end - panonopt_end; ncycle = gcd(nnonopts, nopts); cyclelen = (opt_end - panonopt_start) / ncycle; for (i = 0; i < ncycle; i++) { cstart = panonopt_end+i; pos = cstart; for (j = 0; j < cyclelen; j++) { if (pos >= panonopt_end) pos -= nnonopts; else pos += nopts; swap = nargv[pos]; /* LINTED const cast */ ((char **) nargv)[pos] = nargv[cstart]; /* LINTED const cast */ ((char **)nargv)[cstart] = swap; } } } /* * parse_long_options -- * Parse long options in argc/argv argument vector. * Returns -1 if short_too is set and the option does not match long_options. */ static int parse_long_options(char * const *nargv, const char *options, const struct option *long_options, int *idx, int short_too) { char *current_argv, *has_equal; size_t current_argv_len; int i, match; current_argv = place; match = -1; optind++; if ((has_equal = strchr(current_argv, '=')) != NULL) { /* argument found (--option=arg) */ current_argv_len = has_equal - current_argv; has_equal++; } else current_argv_len = strlen(current_argv); for (i = 0; long_options[i].name; i++) { /* find matching long option */ if (strncmp(current_argv, long_options[i].name, current_argv_len)) continue; if (strlen(long_options[i].name) == current_argv_len) { /* exact match */ match = i; break; } /* * If this is a known short option, don't allow * a partial match of a single character. */ if (short_too && current_argv_len == 1) continue; if (match == -1) /* partial match */ match = i; else { /* ambiguous abbreviation */ if (PRINT_ERROR) fprintf(stderr, ambig, (int)current_argv_len, current_argv); optopt = 0; return (BADCH); } } if (match != -1) { /* option found */ if (long_options[match].has_arg == no_argument && has_equal) { if (PRINT_ERROR) fprintf(stderr, noarg, (int)current_argv_len, current_argv); /* * XXX: GNU sets optopt to val regardless of flag */ if (long_options[match].flag == NULL) optopt = long_options[match].val; else optopt = 0; return (BADARG); } if (long_options[match].has_arg == required_argument || long_options[match].has_arg == optional_argument) { if (has_equal) optarg = has_equal; else if (long_options[match].has_arg == required_argument) { /* * optional argument doesn't use next nargv */ optarg = nargv[optind++]; } } if ((long_options[match].has_arg == required_argument) && (optarg == NULL)) { /* * Missing argument; leading ':' indicates no error * should be generated. */ if (PRINT_ERROR) fprintf(stderr, recargstring, current_argv); /* * XXX: GNU sets optopt to val regardless of flag */ if (long_options[match].flag == NULL) optopt = long_options[match].val; else optopt = 0; --optind; return (BADARG); } } else { /* unknown option */ if (short_too) { --optind; return (-1); } if (PRINT_ERROR) fprintf(stderr, illoptstring, current_argv); optopt = 0; return (BADCH); } if (idx) *idx = match; if (long_options[match].flag) { *long_options[match].flag = long_options[match].val; return (0); } else return (long_options[match].val); } /* * getopt_internal -- * Parse argc/argv argument vector. Called by user level routines. */ static int getopt_internal(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx, int flags) { char *oli; /* option letter list index */ int optchar, short_too; static int posixly_correct = -1; if (options == NULL) return (-1); /* * Disable GNU extensions if POSIXLY_CORRECT is set or options * string begins with a '+'. */ if (posixly_correct == -1) posixly_correct = (getenv("POSIXLY_CORRECT") != NULL); if (posixly_correct || *options == '+') flags &= ~FLAG_PERMUTE; else if (*options == '-') flags |= FLAG_ALLARGS; if (*options == '+' || *options == '-') options++; /* * XXX Some GNU programs (like cvs) set optind to 0 instead of * XXX using optreset. Work around this braindamage. */ if (optind == 0) optind = optreset = 1; optarg = NULL; if (optreset) nonopt_start = nonopt_end = -1; start: if (optreset || !*place) { /* update scanning pointer */ optreset = 0; if (optind >= nargc) { /* end of argument vector */ place = EMSG; if (nonopt_end != -1) { /* do permutation, if we have to */ permute_args(nonopt_start, nonopt_end, optind, nargv); optind -= nonopt_end - nonopt_start; } else if (nonopt_start != -1) { /* * If we skipped non-options, set optind * to the first of them. */ optind = nonopt_start; } nonopt_start = nonopt_end = -1; return (-1); } if (*(place = nargv[optind]) != '-' || (place[1] == '\0' && strchr(options, '-') == NULL)) { place = EMSG; /* found non-option */ if (flags & FLAG_ALLARGS) { /* * GNU extension: * return non-option as argument to option 1 */ optarg = nargv[optind++]; return (INORDER); } if (!(flags & FLAG_PERMUTE)) { /* * If no permutation wanted, stop parsing * at first non-option. */ return (-1); } /* do permutation */ if (nonopt_start == -1) nonopt_start = optind; else if (nonopt_end != -1) { permute_args(nonopt_start, nonopt_end, optind, nargv); nonopt_start = optind - (nonopt_end - nonopt_start); nonopt_end = -1; } optind++; /* process next argument */ goto start; } if (nonopt_start != -1 && nonopt_end == -1) nonopt_end = optind; /* * If we have "-" do nothing, if "--" we are done. */ if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { optind++; place = EMSG; /* * We found an option (--), so if we skipped * non-options, we have to permute. */ if (nonopt_end != -1) { permute_args(nonopt_start, nonopt_end, optind, nargv); optind -= nonopt_end - nonopt_start; } nonopt_start = nonopt_end = -1; return (-1); } } /* * Check long options if: * 1) we were passed some * 2) the arg is not just "-" * 3) either the arg starts with -- we are getopt_long_only() */ if (long_options != NULL && place != nargv[optind] && (*place == '-' || (flags & FLAG_LONGONLY))) { short_too = 0; if (*place == '-') place++; /* --foo long option */ else if (*place != ':' && strchr(options, *place) != NULL) short_too = 1; /* could be short option too */ optchar = parse_long_options(nargv, options, long_options, idx, short_too); if (optchar != -1) { place = EMSG; return (optchar); } } if ((optchar = (int)*place++) == (int)':' || (optchar == (int)'-' && *place != '\0') || (oli = strchr(options, optchar)) == NULL) { /* * If the user specified "-" and '-' isn't listed in * options, return -1 (non-option) as per POSIX. * Otherwise, it is an unknown option character (or ':'). */ if (optchar == (int)'-' && *place == '\0') return (-1); if (!*place) ++optind; if (PRINT_ERROR) fprintf(stderr, illoptchar, optchar); optopt = optchar; return (BADCH); } if (long_options != NULL && optchar == 'W' && oli[1] == ';') { /* -W long-option */ if (*place) /* no space */ /* NOTHING */; else if (++optind >= nargc) { /* no arg */ place = EMSG; if (PRINT_ERROR) fprintf(stderr, recargchar, optchar); optopt = optchar; return (BADARG); } else /* white space */ place = nargv[optind]; optchar = parse_long_options(nargv, options, long_options, idx, 0); place = EMSG; return (optchar); } if (*++oli != ':') { /* doesn't take argument */ if (!*place) ++optind; } else { /* takes (optional) argument */ optarg = NULL; if (*place) /* no white space */ optarg = place; else if (oli[1] != ':') { /* arg not optional */ if (++optind >= nargc) { /* no arg */ place = EMSG; if (PRINT_ERROR) fprintf(stderr, recargchar, optchar); optopt = optchar; return (BADARG); } else optarg = nargv[optind]; } place = EMSG; ++optind; } /* dump back option letter */ return (optchar); } /* * getopt -- * Parse argc/argv argument vector. * * [eventually this will replace the BSD getopt] */ int getopt(int nargc, char * const *nargv, const char *options) { /* * We don't pass FLAG_PERMUTE to getopt_internal() since * the BSD getopt(3) (unlike GNU) has never done this. * * Furthermore, since many privileged programs call getopt() * before dropping privileges it makes sense to keep things * as simple (and bug-free) as possible. */ return (getopt_internal(nargc, nargv, options, NULL, NULL, 0)); } /* * getopt_long -- * Parse argc/argv argument vector. */ int getopt_long(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) { return (getopt_internal(nargc, nargv, options, long_options, idx, FLAG_PERMUTE)); } /* * getopt_long_only -- * Parse argc/argv argument vector. */ int getopt_long_only(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) { return (getopt_internal(nargc, nargv, options, long_options, idx, FLAG_PERMUTE|FLAG_LONGONLY)); } ================================================ FILE: getopt/meson.build ================================================ libgetopt = static_library( 'getopt', 'getopt_long.c', ) idep_getopt = declare_dependency( link_with : libgetopt, include_directories : include_directories('.', is_system : true), ) ================================================ FILE: meson.build ================================================ project('libva-utils', 'c', 'cpp', version : '2.24.0.1', default_options : [ 'warning_level=2', 'c_std=gnu99', 'default_library=static', ], license : 'MIT', meson_version : '>= 0.42.0') c = meson.get_compiler('c') threads = dependency('threads') libva_dep = dependency('libva', version: '>= 1.1.0') libva_utils_flags = [ '-Wno-unused-parameter', '-Wno-sign-compare' ] backends = '' # DRM use_drm = false drm_deps=[] if get_option('drm') != 'false' require_drm = get_option('drm') == 'true' drm_deps = [ dependency('libva-drm', version: libva_dep.version(), required: require_drm), dependency('libdrm', required: require_drm), ] use_drm = true foreach d : drm_deps if not d.found() use_drm = false endif endforeach if use_drm backends += ' drm' libva_utils_flags += [ '-DHAVE_VA_DRM=1' ] endif endif # X11 use_x11 = false if get_option('x11') != 'false' require_x11 = get_option('x11') == 'true' x11_deps = [ dependency('x11', required: require_x11), dependency('libva-x11', version: libva_dep.version(), required: require_x11), ] use_x11 = true foreach d : x11_deps if not d.found() use_x11 = false endif endforeach if use_x11 backends += ' x11' libva_utils_flags += [ '-DHAVE_VA_X11=1' ] endif endif # WAYLAND use_wayland = false if get_option('wayland') != 'false' require_wayland = get_option('wayland') == 'true' wayland_deps = [ dependency('wayland-client', version: '>= 1.0.0', required: require_wayland), dependency('libva-wayland', version: libva_dep.version(), required: require_wayland), ] use_wayland = true foreach d : wayland_deps if not d.found() use_wayland = false endif endforeach if use_wayland backends += ' wayland' libva_utils_flags += [ '-DHAVE_VA_WAYLAND=1' ] endif endif # WIN32 use_win32 = false if get_option('win32') != 'false' require_win32 = get_option('win32') == 'true' use_win32 = dependency('libva-win32', version: libva_dep.version(), required: require_win32).found() if use_win32 libva_utils_flags = [ '-DHAVE_VA_WIN32=1', '-DNOMINMAX'] dep_dxheaders = dependency('directx-headers', required : false) if not dep_dxheaders.found() dep_dxheaders = dependency('DirectX-Headers', version : '>= v1.0.2', fallback : ['DirectX-Headers', 'dep_dxheaders'], required : use_win32 ) endif endif endif add_project_arguments(libva_utils_flags, language: ['c', 'cpp']) if use_win32 subdir('getopt') win32_deps = [ dependency('libva-win32', required: require_win32), idep_getopt, dep_dxheaders] endif subdir('common') # Uses win32_deps subdir('vainfo') if not use_win32 subdir('decode') subdir('encode') subdir('putsurface') subdir('videoprocess') subdir('vendor/intel') subdir('vendor/intel/sfcsample') endif if get_option('tests') subdir('test') endif if meson.version().version_compare('>= 0.53') summary({ 'Libva VA-API version' : libva_dep.version(), 'Installation prefix' : get_option('prefix'), 'Extra window systems' : backends, 'Enable Unit-tests': get_option('tests') }, bool_yn: true) endif ================================================ FILE: meson_options.txt ================================================ option('drm', type : 'combo', value : 'auto', choices: [ 'auto', 'true', 'false' ]) option('x11', type : 'combo', value : 'auto', choices: [ 'auto', 'true', 'false' ]) option('wayland', type : 'combo', value : 'auto', choices: [ 'auto', 'true', 'false' ]) option('win32', type : 'combo', value : 'auto', choices: [ 'auto', 'true', 'false' ]) option('tests', type : 'boolean', value : false) ================================================ FILE: putsurface/Makefile.am ================================================ # Copyright (c) 2007 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. bin_PROGRAMS = TEST_CFLAGS = \ $(LIBVA_CFLAGS) \ -I$(top_srcdir)/common \ -Wall \ $(NULL) if USE_SSP TEST_CFLAGS += -fstack-protector endif TEST_LIBS = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ -lpthread \ $(NULL) if USE_X11 bin_PROGRAMS += putsurface putsurface_SOURCES = putsurface_x11.c putsurface_CFLAGS = $(X11_CFLAGS) $(TEST_CFLAGS) putsurface_LDADD = $(X11_LIBS) $(LIBVA_X11_LIBS) $(TEST_LIBS) endif if USE_WAYLAND bin_PROGRAMS += putsurface_wayland putsurface_wayland_SOURCES = putsurface_wayland.c putsurface_wayland_CFLAGS = $(WAYLAND_CFLAGS) $(TEST_CFLAGS) putsurface_wayland_LDADD = $(WAYLAND_LIBS) $(LIBVA_WAYLAND_LIBS) $(TEST_LIBS) endif EXTRA_DIST = putsurface_common.c valgrind: $(bin_PROGRAMS) for a in $(bin_PROGRAMS); do \ valgrind --leak-check=full --show-reachable=yes .libs/$$a; \ done ================================================ FILE: putsurface/meson.build ================================================ deps = [ libva_display_dep, threads, ] if use_x11 executable('putsurface', [ 'putsurface_x11.c' ], dependencies: deps, install: true) endif if use_wayland executable('putsurface_wayland', [ 'putsurface_wayland.c' ], dependencies: deps, install: true) endif ================================================ FILE: putsurface/putsurface_common.c ================================================ /* * Copyright (c) 2008-2009 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include #include #include #include #include #include #include #include #include #include #include #include /*currently, if XCheckWindowEvent was called in more than one thread, it would cause * XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0" * after 87 requests (83 known processed) with 0 events remaining. * * X Error of failed request: BadGC (invalid GC parameter) * Major opcode of failed request: 60 (X_FreeGC) * Resource id in failed request: 0x600034 * Serial number of failed request: 398 * Current serial number in output stream: 399 * The root cause is unknown. */ #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } #include "loadsurface.h" #define SURFACE_NUM 16 static void *win_display; static VADisplay va_dpy; static VAImageFormat *va_image_formats; static int va_num_image_formats = -1; static VAConfigID vpp_config_id = VA_INVALID_ID; static VASurfaceAttrib *va_surface_attribs; static int va_num_surface_attribs = -1; static VASurfaceID surface_id[SURFACE_NUM]; static pthread_mutex_t surface_mutex[SURFACE_NUM]; static void *drawable_thread0, *drawable_thread1; static int surface_width = 352, surface_height = 288; static int win_x = 0, win_y = 0; static int win_width = 352, win_height = 288; static int frame_rate = 0; static unsigned long long frame_num_total = ~0; static int check_event = 1; static int put_pixmap = 0; static int test_clip = 0; static int display_field = VA_FRAME_PICTURE; static pthread_mutex_t gmutex; static int box_width = 32; static int multi_thread = 0; static int verbose = 0; static int test_color_conversion = 0; static int csc_src_fourcc = 0, csc_dst_fourcc = 0; static VAImage csc_dst_fourcc_image; static VASurfaceID csc_render_surface; typedef struct { char* fmt_str; unsigned int fourcc; } fourcc_map; fourcc_map va_fourcc_map[] = { {"YUYV", VA_FOURCC_YUY2}, {"YUY2", VA_FOURCC_YUY2}, {"NV12", VA_FOURCC_NV12}, {"YV12", VA_FOURCC_YV12}, {"BGRA", VA_FOURCC_BGRA}, {"RGBA", VA_FOURCC_RGBA}, {"BGRX", VA_FOURCC_BGRX}, {"RGBX", VA_FOURCC_RGBX}, }; unsigned int map_str_to_vafourcc(char * str) { int i; for (i = 0; i < sizeof(va_fourcc_map) / sizeof(fourcc_map); i++) { if (!strcmp(va_fourcc_map[i].fmt_str, str)) { return va_fourcc_map[i].fourcc; } } return 0; } char* map_vafourcc_to_str(unsigned int format) { static char unknown_format[] = "unknown-format"; int i; for (i = 0; i < sizeof(va_fourcc_map) / sizeof(fourcc_map); i++) { if (va_fourcc_map[i].fourcc == format) { return va_fourcc_map[i].fmt_str; } } return unknown_format; } static int va_value_equals(const VAGenericValue *v1, const VAGenericValue *v2) { if (v1->type != v2->type) return 0; switch (v1->type) { case VAGenericValueTypeInteger: return v1->value.i == v2->value.i; case VAGenericValueTypeFloat: return v1->value.f == v2->value.f; case VAGenericValueTypePointer: return v1->value.p == v2->value.p; case VAGenericValueTypeFunc: return v1->value.fn == v2->value.fn; } return 0; } static int ensure_image_formats(void) { VAStatus va_status; VAImageFormat *image_formats; int num_image_formats; if (va_num_image_formats >= 0) return va_num_image_formats; num_image_formats = vaMaxNumImageFormats(va_dpy); if (num_image_formats == 0) return 0; image_formats = (VAImageFormat *)malloc(num_image_formats * sizeof(*image_formats)); if (!image_formats) return 0; va_status = vaQueryImageFormats(va_dpy, image_formats, &num_image_formats); CHECK_VASTATUS(va_status, "vaQuerySurfaceAttributes()"); va_image_formats = image_formats; va_num_image_formats = num_image_formats; return num_image_formats; } static const VAImageFormat * lookup_image_format(uint32_t fourcc) { int i; if (!ensure_image_formats()) return NULL; for (i = 0; i < va_num_image_formats; i++) { const VAImageFormat * const image_format = &va_image_formats[i]; if (image_format->fourcc == fourcc) return image_format; } return NULL; } static int ensure_surface_attribs(void) { VAStatus va_status; VASurfaceAttrib *surface_attribs; unsigned int num_image_formats, num_surface_attribs; if (va_num_surface_attribs >= 0) return va_num_surface_attribs; num_image_formats = vaMaxNumImageFormats(va_dpy); if (num_image_formats == 0) return 0; va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, NULL, 0, &vpp_config_id); CHECK_VASTATUS(va_status, "vaCreateConfig()"); /* Guess the number of surface attributes, thus including any pixel-format supported by the VA driver */ num_surface_attribs = VASurfaceAttribCount + num_image_formats; surface_attribs = (VASurfaceAttrib *)malloc(num_surface_attribs * sizeof(*surface_attribs)); if (!surface_attribs) return 0; va_status = vaQuerySurfaceAttributes(va_dpy, vpp_config_id, surface_attribs, &num_surface_attribs); if (va_status == VA_STATUS_SUCCESS) va_surface_attribs = surface_attribs; else if (va_status == VA_STATUS_ERROR_MAX_NUM_EXCEEDED) { va_surface_attribs = (VASurfaceAttrib *)realloc(surface_attribs, num_surface_attribs * sizeof(*va_surface_attribs)); if (!va_surface_attribs) { free(surface_attribs); return 0; } va_status = vaQuerySurfaceAttributes(va_dpy, vpp_config_id, va_surface_attribs, &num_surface_attribs); } CHECK_VASTATUS(va_status, "vaQuerySurfaceAttributes()"); va_num_surface_attribs = num_surface_attribs; return num_surface_attribs; } static const VASurfaceAttrib * lookup_surface_attrib(VASurfaceAttribType type, const VAGenericValue *value) { int i; if (!ensure_surface_attribs()) return NULL; for (i = 0; i < va_num_surface_attribs; i++) { const VASurfaceAttrib * const surface_attrib = &va_surface_attribs[i]; if (surface_attrib->type != type) continue; if (!(surface_attrib->flags & VA_SURFACE_ATTRIB_SETTABLE)) continue; if (va_value_equals(&surface_attrib->value, value)) return surface_attrib; } return NULL; } int csc_preparation() { VAStatus va_status; // 1. make sure dst fourcc is supported for vaImage if (!lookup_image_format(csc_dst_fourcc)) { test_color_conversion = 0; printf("VA driver doesn't support %s image, skip additional color conversion\n", map_vafourcc_to_str(csc_dst_fourcc)); return test_color_conversion; } // 2. make sure src_fourcc is supported for vaSurface VASurfaceAttrib surface_attribs[1], * const s_attrib = &surface_attribs[0]; s_attrib->type = VASurfaceAttribPixelFormat; s_attrib->flags = VA_SURFACE_ATTRIB_SETTABLE; s_attrib->value.type = VAGenericValueTypeInteger; s_attrib->value.value.i = csc_src_fourcc; if (!lookup_surface_attrib(VASurfaceAttribPixelFormat, &s_attrib->value)) { printf("VA driver doesn't support %s surface, skip additional color conversion\n", map_vafourcc_to_str(csc_src_fourcc)); test_color_conversion = 0; goto cleanup; } // 3 create all objs required by csc // 3.1 vaSurface with src fourcc va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, surface_width, surface_height, &surface_id[0], SURFACE_NUM, surface_attribs, 1 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); // 3.2 vaImage with dst fourcc VAImageFormat image_format; image_format.fourcc = csc_dst_fourcc; image_format.byte_order = VA_LSB_FIRST; image_format.bits_per_pixel = 16; va_status = vaCreateImage(va_dpy, &image_format, surface_width, surface_height, &csc_dst_fourcc_image); CHECK_VASTATUS(va_status, "vaCreateImage"); // 3.3 create a temp VASurface for final rendering(vaPutSurface) s_attrib->value.value.i = VA_FOURCC_NV12; va_status = vaCreateSurfaces(va_dpy, VA_RT_FORMAT_YUV420, surface_width, surface_height, &csc_render_surface, 1, surface_attribs, 1); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); cleanup: return test_color_conversion; } static VASurfaceID get_next_free_surface(int *index) { VASurfaceStatus surface_status; int i; assert(index); if (multi_thread == 0) { i = *index; i++; if (i == SURFACE_NUM) i = 0; *index = i; return surface_id[i]; } for (i = 0; i < SURFACE_NUM; i++) { surface_status = (VASurfaceStatus)0; vaQuerySurfaceStatus(va_dpy, surface_id[i], &surface_status); if (surface_status == VASurfaceReady) { if (0 == pthread_mutex_trylock(&surface_mutex[i])) { *index = i; break; } } } if (i == SURFACE_NUM) return VA_INVALID_SURFACE; else return surface_id[i]; } static int upload_source_YUV_once_for_all() { int box_width_loc = 8; int row_shift_loc = 0; int i; for (i = 0; i < SURFACE_NUM; i++) { printf("\rLoading data into surface %d.....", i); upload_surface(va_dpy, surface_id[i], box_width_loc, row_shift_loc, 0); row_shift_loc++; if (row_shift_loc == (2 * box_width_loc)) row_shift_loc = 0; } printf("\n"); return 0; } /* * Helper function for profiling purposes */ static unsigned long get_tick_count(void) { struct timeval tv; if (gettimeofday(&tv, NULL)) return 0; return tv.tv_usec / 1000 + tv.tv_sec * 1000; } static void update_clipbox(VARectangle *cliprects, int width, int height) { if (test_clip == 0) return; srand((unsigned)time(NULL)); cliprects[0].x = (rand() % width); cliprects[0].y = (rand() % height); cliprects[0].width = (rand() % (width - cliprects[0].x)); cliprects[0].height = (rand() % (height - cliprects[0].y)); cliprects[1].x = (rand() % width); cliprects[1].y = (rand() % height); cliprects[1].width = (rand() % (width - cliprects[1].x)); cliprects[1].height = (rand() % (height - cliprects[1].y)); printf("\nTest clip (%d,%d, %d x %d) and (%d,%d, %d x %d) \n", cliprects[0].x, cliprects[0].y, cliprects[0].width, cliprects[0].height, cliprects[1].x, cliprects[1].y, cliprects[1].width, cliprects[1].height); } static void* putsurface_thread(void *data) { int width = win_width, height = win_height; void *drawable = data; int quit = 0; VAStatus vaStatus; int row_shift = 0; int index = 0; unsigned int frame_num = 0, start_time, putsurface_time; VARectangle cliprects[2]; /* client supplied clip list */ int continue_display = 0; if (drawable == drawable_thread0) printf("Enter into thread0\n\n"); if (drawable == drawable_thread1) printf("Enter into thread1\n\n"); putsurface_time = 0; while (!quit) { VASurfaceID surface_id = VA_INVALID_SURFACE; while (surface_id == VA_INVALID_SURFACE) surface_id = get_next_free_surface(&index); if (verbose) printf("Thread: %p Display surface 0x%x,\n", drawable, surface_id); if (multi_thread) upload_surface(va_dpy, surface_id, box_width, row_shift, display_field); if (check_event) pthread_mutex_lock(&gmutex); start_time = get_tick_count(); if ((continue_display == 0) && getenv("FRAME_STOP")) { char c; printf("Press any key to display frame %d...(c/C to continue)\n", frame_num); c = getchar(); if (c == 'c' || c == 'C') continue_display = 1; } if (test_color_conversion) { static int _put_surface_count = 0; if (_put_surface_count++ % 50 == 0) { printf("do additional colorcoversion from %s to %s\n", map_vafourcc_to_str(csc_src_fourcc), map_vafourcc_to_str(csc_dst_fourcc)); } // get image from surface, csc_src_fourcc to csc_dst_fourcc conversion happens vaStatus = vaGetImage(va_dpy, surface_id, 0, 0, surface_width, surface_height, csc_dst_fourcc_image.image_id); CHECK_VASTATUS(vaStatus, "vaGetImage"); // render csc_dst_fourcc image to temp surface vaStatus = vaPutImage(va_dpy, csc_render_surface, csc_dst_fourcc_image.image_id, 0, 0, surface_width, surface_height, 0, 0, surface_width, surface_height); CHECK_VASTATUS(vaStatus, "vaPutImage"); // render the temp surface, it should be same with original surface without color conversion test vaStatus = vaPutSurface(va_dpy, csc_render_surface, CAST_DRAWABLE(drawable), 0, 0, surface_width, surface_height, 0, 0, width, height, (test_clip == 0) ? NULL : &cliprects[0], (test_clip == 0) ? 0 : 2, display_field); CHECK_VASTATUS(vaStatus, "vaPutSurface"); } else { vaStatus = vaPutSurface(va_dpy, surface_id, CAST_DRAWABLE(drawable), 0, 0, surface_width, surface_height, 0, 0, width, height, (test_clip == 0) ? NULL : &cliprects[0], (test_clip == 0) ? 0 : 2, display_field); CHECK_VASTATUS(vaStatus, "vaPutSurface"); } putsurface_time += (get_tick_count() - start_time); if (check_event) pthread_mutex_unlock(&gmutex); pthread_mutex_unlock(&surface_mutex[index]); /* locked in get_next_free_surface */ if ((frame_num % 0xff) == 0) { fprintf(stderr, "%.2f FPS \r", 256000.0 / (float)putsurface_time); putsurface_time = 0; update_clipbox(cliprects, width, height); } if (check_event) check_window_event(win_display, drawable, &width, &height, &quit); if (multi_thread) { /* reload surface content */ row_shift++; if (row_shift == (2 * box_width)) row_shift = 0; } if (frame_rate != 0) /* rough framerate control */ usleep(1000 / frame_rate * 1000); frame_num++; if (frame_num >= frame_num_total) quit = 1; } if (drawable == drawable_thread1) pthread_exit(NULL); return 0; } int main(int argc, char **argv) { int major_ver, minor_ver; VAStatus va_status; pthread_t thread1; int ret; int c; int i; char str_src_fmt[5], str_dst_fmt[5]; static struct option long_options[] = { {"fmt1", required_argument, NULL, '1'}, {"fmt2", required_argument, NULL, '2'}, {0, 0, 0, 0} }; while ((c = getopt_long(argc, argv, "w:h:g:r:d:f:tcep?n:1:2:v", long_options, NULL)) != EOF) { switch (c) { case '?': printf("putsurface \n"); printf(" -g window geometry\n"); printf(" -w/-h resolution of surface\n"); printf(" -r \n"); printf(" -d the dimension of black/write square box, default is 32\n"); printf(" -t multi-threads\n"); printf(" -c test clipbox\n"); printf(" -f <1/2> top field, or bottom field\n"); printf(" -1 source format (fourcc) for color conversion test\n"); printf(" -2 dest format (fourcc) for color conversion test\n"); printf(" --fmt1 same to -1\n"); printf(" --fmt2 same to -2\n"); printf(" -v verbose output\n"); exit(0); break; case 'g': ret = sscanf(optarg, "%dx%d+%d+%d", &win_width, &win_height, &win_x, &win_y); if (ret != 4) { printf("invalid window geometry, must be widthxheight+x_location+y_location\n"); exit(0); } else printf("Create window at (%d, %d), width = %d, height = %d\n", win_x, win_y, win_width, win_height); break; case 'r': frame_rate = atoi(optarg); break; case 'w': surface_width = atoi(optarg); break; case 'h': surface_height = atoi(optarg); break; case 'n': frame_num_total = atoi(optarg); break; case 'd': box_width = atoi(optarg); break; case 't': multi_thread = 1; printf("Two threads to do vaPutSurface\n"); break; case 'e': check_event = 0; break; case 'p': put_pixmap = 1; break; case 'c': test_clip = 1; break; case 'f': if (atoi(optarg) == 1) { printf("Display TOP field\n"); display_field = VA_TOP_FIELD; } else if (atoi(optarg) == 2) { printf("Display BOTTOM field\n"); display_field = VA_BOTTOM_FIELD; } else printf("The validate input for -f is: 1(top field)/2(bottom field)\n"); break; case '1': sscanf(optarg, "%5s", str_src_fmt); csc_src_fourcc = map_str_to_vafourcc(str_src_fmt); if (!csc_src_fourcc) { printf("invalid fmt1: %s\n", str_src_fmt); exit(0); } break; case '2': sscanf(optarg, "%5s", str_dst_fmt); csc_dst_fourcc = map_str_to_vafourcc(str_dst_fmt); if (!csc_dst_fourcc) { printf("invalid fmt1: %s\n", str_dst_fmt); exit(0); } break; case 'v': verbose = 1; printf("Enable verbose output\n"); break; } } if (csc_src_fourcc && csc_dst_fourcc) { test_color_conversion = 1; } win_display = (void *)open_display(); if (win_display == NULL) { fprintf(stderr, "Can't open the connection of display!\n"); exit(-1); } create_window(win_display, win_x, win_y, win_width, win_height); va_dpy = vaGetDisplay(win_display); va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); CHECK_VASTATUS(va_status, "vaInitialize"); if (test_color_conversion) { ret = csc_preparation(); } if (!test_color_conversion || !ret) { va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, surface_width, surface_height, &surface_id[0], SURFACE_NUM, NULL, 0 ); } CHECK_VASTATUS(va_status, "vaCreateSurfaces"); if (multi_thread == 0) /* upload the content for all surfaces */ upload_source_YUV_once_for_all(); if (check_event) pthread_mutex_init(&gmutex, NULL); for (i = 0; i < SURFACE_NUM; i++) pthread_mutex_init(&surface_mutex[i], NULL); if (multi_thread == 1) ret = pthread_create(&thread1, NULL, putsurface_thread, (void*)drawable_thread1); putsurface_thread((void *)drawable_thread0); if (multi_thread == 1) pthread_join(thread1, (void **)&ret); printf("thread1 is free\n"); if (test_color_conversion) { // destroy temp surface/image va_status = vaDestroySurfaces(va_dpy, &csc_render_surface, 1); CHECK_VASTATUS(va_status, "vaDestroySurfaces"); va_status = vaDestroyImage(va_dpy, csc_dst_fourcc_image.image_id); CHECK_VASTATUS(va_status, "vaDestroyImage"); } if (vpp_config_id != VA_INVALID_ID) { vaDestroyConfig(va_dpy, vpp_config_id); vpp_config_id = VA_INVALID_ID; } vaDestroySurfaces(va_dpy, &surface_id[0], SURFACE_NUM); vaTerminate(va_dpy); free(va_image_formats); free(va_surface_attribs); close_display(win_display); return 0; } ================================================ FILE: putsurface/putsurface_wayland.c ================================================ /* * Copyright (c) 2011 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include #include #include #include #ifdef IN_LIBVA # include "va/wayland/va_wayland.h" #else # include #endif #include static void *open_display(void); static void close_display(void *win_display); static int create_window(void *win_display, int x, int y, int width, int height); static int check_window_event(void *win_display, void *drawable, int *width, int *height, int *quit); struct display; struct drawable; static VAStatus va_put_surface( VADisplay dpy, struct drawable *wl_drawable, VASurfaceID va_surface, const VARectangle *src_rect, const VARectangle *dst_rect, const VARectangle *cliprects, unsigned int num_cliprects, unsigned int flags ); /* Glue code for the current PutSurface test design */ #define CAST_DRAWABLE(a) (struct drawable *)(a) static inline VADisplay vaGetDisplay(VANativeDisplay native_dpy) { return vaGetDisplayWl(native_dpy); } static VAStatus vaPutSurface( VADisplay dpy, VASurfaceID surface, struct drawable *wl_drawable, short src_x, short src_y, unsigned short src_w, unsigned short src_h, short dst_x, short dst_y, unsigned short dst_w, unsigned short dst_h, const VARectangle *cliprects, unsigned int num_cliprects, unsigned int flags ) { VARectangle src_rect, dst_rect; src_rect.x = src_x; src_rect.y = src_y; src_rect.width = src_w; src_rect.height = src_h; dst_rect.x = src_x; dst_rect.y = src_y; dst_rect.width = src_w; dst_rect.height = src_h; return va_put_surface(dpy, wl_drawable, surface, &src_rect, &dst_rect, cliprects, num_cliprects, flags); } #include "putsurface_common.c" struct display { struct wl_display *display; struct wl_compositor *compositor; struct wl_shell *shell; struct wl_registry *registry; int event_fd; }; struct drawable { struct wl_display *display; struct wl_surface *surface; unsigned int redraw_pending : 1; }; static void frame_redraw_callback(void *data, struct wl_callback *callback, uint32_t time) { struct drawable * const drawable = data; drawable->redraw_pending = 0; wl_callback_destroy(callback); } static const struct wl_callback_listener frame_callback_listener = { frame_redraw_callback }; static VAStatus va_put_surface( VADisplay dpy, struct drawable *wl_drawable, VASurfaceID va_surface, const VARectangle *src_rect, const VARectangle *dst_rect, const VARectangle *cliprects, unsigned int num_cliprects, unsigned int flags ) { struct display *d; struct wl_callback *callback; VAStatus va_status; struct wl_buffer *buffer; int ret = 0; if (!wl_drawable) return VA_STATUS_ERROR_INVALID_SURFACE; d = wl_display_get_user_data(wl_drawable->display); if (!d) return VA_STATUS_ERROR_INVALID_DISPLAY; /* Wait for the previous frame to complete redraw */ if (wl_drawable->redraw_pending) { wl_display_flush(d->display); while (wl_drawable->redraw_pending && ret >= 0) ret = wl_display_dispatch(wl_drawable->display); } va_status = vaGetSurfaceBufferWl(va_dpy, va_surface, VA_FRAME_PICTURE, &buffer); if (va_status != VA_STATUS_SUCCESS) return va_status; wl_surface_attach(wl_drawable->surface, buffer, 0, 0); wl_surface_damage( wl_drawable->surface, dst_rect->x, dst_rect->y, dst_rect->width, dst_rect->height ); wl_display_flush(d->display); wl_drawable->redraw_pending = 1; callback = wl_surface_frame(wl_drawable->surface); wl_surface_commit(wl_drawable->surface); wl_callback_add_listener(callback, &frame_callback_listener, wl_drawable); return VA_STATUS_SUCCESS; } static void registry_handle_global( void *data, struct wl_registry *registry, uint32_t id, const char *interface, uint32_t version ) { struct display * const d = data; if (strcmp(interface, "wl_compositor") == 0) d->compositor = wl_registry_bind(registry, id, &wl_compositor_interface, 1); else if (strcmp(interface, "wl_shell") == 0) d->shell = wl_registry_bind(registry, id, &wl_shell_interface, 1); } static const struct wl_registry_listener registry_listener = { registry_handle_global, NULL, }; static void * open_display(void) { struct display *d; d = calloc(1, sizeof * d); if (!d) return NULL; d->display = wl_display_connect(NULL); if (!d->display) { free(d); return NULL; } wl_display_set_user_data(d->display, d); d->registry = wl_display_get_registry(d->display); wl_registry_add_listener(d->registry, ®istry_listener, d); d->event_fd = wl_display_get_fd(d->display); wl_display_dispatch(d->display); return d->display; } static void close_display(void *win_display) { struct display * const d = wl_display_get_user_data(win_display); if (d->shell) { wl_shell_destroy(d->shell); d->shell = NULL; } if (d->compositor) { wl_compositor_destroy(d->compositor); d->compositor = NULL; } if (d->display) { wl_display_disconnect(d->display); d->display = NULL; } free(d); } static int create_window(void *win_display, int x, int y, int width, int height) { struct wl_display * const display = win_display; struct display * const d = wl_display_get_user_data(display); struct wl_surface *surface1, *surface2; struct wl_shell_surface *shell_surface; struct wl_shell_surface *shell_surface_2; struct drawable *drawable1, *drawable2; surface1 = wl_compositor_create_surface(d->compositor); shell_surface = wl_shell_get_shell_surface(d->shell, surface1); wl_shell_surface_set_toplevel(shell_surface); drawable1 = malloc(sizeof(*drawable1)); assert(drawable1); drawable1->display = display; drawable1->surface = surface1; drawable1->redraw_pending = 0; /* global out */ drawable_thread0 = drawable1; if (multi_thread == 0) return 0; surface2 = wl_compositor_create_surface(d->compositor); shell_surface_2 = wl_shell_get_shell_surface(d->shell, surface2); wl_shell_surface_set_toplevel(shell_surface_2); drawable2 = malloc(sizeof(*drawable2)); assert(drawable2); drawable2->display = display; drawable2->surface = surface2; drawable2->redraw_pending = 0; /* global out */ drawable_thread1 = drawable2; return 0; } static int check_window_event( void *win_display, void *drawable, int *width, int *height, int *quit ) { struct wl_display * const display = win_display; struct display * const d = wl_display_get_user_data(display); struct timeval tv; fd_set rfds; int retval; if (check_event == 0) return 0; tv.tv_sec = 0; tv.tv_usec = 0; do { FD_ZERO(&rfds); FD_SET(d->event_fd, &rfds); retval = select(d->event_fd + 1, &rfds, NULL, NULL, &tv); if (retval < 0) { perror("select"); break; } if (retval == 1) wl_display_dispatch(d->display); } while (retval > 0); #if 0 /* bail on any focused key press */ if (event.type == KeyPress) { *quit = 1; return 0; } #endif #if 0 /* rescale the video to fit the window */ if (event.type == ConfigureNotify) { *width = event.xconfigure.width; *height = event.xconfigure.height; printf("Scale window to %dx%d\n", width, height); } #endif return 0; } ================================================ FILE: putsurface/putsurface_x11.c ================================================ /* * Copyright (c) 2008-2009 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include #include #include static Window window_thread0, window_thread1; static GC context_thread0, context_thread1; static pthread_mutex_t gmutex; static void *open_display(void); static void close_display(void *win_display); static int create_window(void *win_display, int x, int y, int width, int height); static int check_window_event(void *x11_display, void *drawable, int *width, int *height, int *quit); #define CAST_DRAWABLE(a) (Drawable)(a) #include "putsurface_common.c" static void *open_display(void) { return XOpenDisplay(NULL); } static void close_display(void *win_display) { XCloseDisplay(win_display); } static Pixmap create_pixmap(void *win_display, int width, int height) { Display *x11_display = (Display *)win_display; int screen = DefaultScreen(x11_display); Window root; Pixmap pixmap; XWindowAttributes attr; root = RootWindow(x11_display, screen); XGetWindowAttributes(x11_display, root, &attr); printf("Create a pixmap from ROOT window %dx%d, pixmap size %dx%d\n\n", attr.width, attr.height, width, height); pixmap = XCreatePixmap(x11_display, root, width, height, DefaultDepth(x11_display, DefaultScreen(x11_display))); return pixmap; } static int create_window(void *win_display, int x, int y, int width, int height) { Display *x11_display = (Display *)win_display; int screen = DefaultScreen(x11_display); Window root, win; root = RootWindow(x11_display, screen); printf("Create window0 for thread0\n"); drawable_thread0 = (void *)XCreateSimpleWindow(x11_display, root, x, y, width, height, 0, 0, WhitePixel(x11_display, 0)); win = (Window)drawable_thread0; if (drawable_thread0) { XSizeHints sizehints; sizehints.width = width; sizehints.height = height; sizehints.flags = USSize; XSetNormalHints(x11_display, win, &sizehints); XSetStandardProperties(x11_display, win, "Thread 0", "Thread 0", None, (char **)NULL, 0, &sizehints); XMapWindow(x11_display, win); } context_thread0 = XCreateGC(x11_display, win, 0, 0); XSelectInput(x11_display, win, KeyPressMask | StructureNotifyMask); XSync(x11_display, False); if (put_pixmap) { window_thread0 = (Window)drawable_thread0; drawable_thread0 = (void *)create_pixmap(x11_display, width, height); } if (multi_thread == 0) return 0; printf("Create window1 for thread1\n"); drawable_thread1 = (void *)XCreateSimpleWindow(x11_display, root, width, 0, width, height, 0, 0, WhitePixel(x11_display, 0)); win = (Window)drawable_thread1; if (drawable_thread1) { XSizeHints sizehints; sizehints.width = width; sizehints.height = height; sizehints.flags = USSize; XSetNormalHints(x11_display, win, &sizehints); XSetStandardProperties(x11_display, win, "Thread 1", "Thread 1", None, (char **)NULL, 0, &sizehints); XMapWindow(x11_display, win); } if (put_pixmap) { window_thread1 = (Window)drawable_thread1; drawable_thread1 = (void *)create_pixmap(x11_display, width, height); } context_thread1 = XCreateGC(x11_display, win, 0, 0); XSelectInput(x11_display, win, KeyPressMask | StructureNotifyMask); XSync(x11_display, False); return 0; } static int check_window_event(void *win_display, void *drawable, int *width, int *height, int *quit) { int is_event = 0; XEvent event; Window win = (Window)drawable; Display *x11_display = (Display *)win_display; if (check_event == 0) return 0; pthread_mutex_lock(&gmutex); is_event = XCheckWindowEvent(x11_display, win, StructureNotifyMask | KeyPressMask, &event); pthread_mutex_unlock(&gmutex); if (is_event == 0) return 0; /* bail on any focused key press */ if (event.type == KeyPress) { *quit = 1; return 0; } #if 0 /* rescale the video to fit the window */ if (event.type == ConfigureNotify) { *width = event.xconfigure.width; *height = event.xconfigure.height; printf("Scale window to %dx%d\n", width, height); } #endif return 0; } ================================================ FILE: security.md ================================================ # Security Policy Intel is committed to rapidly addressing security vulnerabilities affecting our customers and providing clear guidance on the solution, impact, severity and mitigation. ## Reporting a Vulnerability Please report any security vulnerabilities in this project utilizing the guidelines [here](https://www.intel.com/content/www/us/en/security-center/vulnerability-handling-guidelines.html). ================================================ FILE: style_unify ================================================ #!/bin/bash file=$(find . -path ./test/gtest/ -prune -name "*.[ch]" -o -name "*.cpp") for i in $file do echo $i astyle --style=linux -s4 -c -s -p -U -H -n $i done ================================================ FILE: subprojects/DirectX-Headers.wrap ================================================ [wrap-git] directory = DirectX-Headers-1.0 url = https://github.com/microsoft/DirectX-Headers.git revision = v1.0.2 ================================================ FILE: test/Makefile.am ================================================ AUTOMAKE_OPTIONS = subdir-objects AM_CXXFLAGS = \ -I$(top_srcdir)/test/gtest/include \ $(NULL) AM_CPPFLAGS = \ -DGTEST_HAS_PTHREAD=1 \ -DGTEST_USE_OWN_TR1_TUPLE=0 \ -DGTEST_LANG_CXX11=1 \ -DGTEST_HAS_TR1_TUPLE=1 \ -DPTHREADS \ -DVA_DRIVERS_PATH="\"$(LIBVA_DRIVERS_PATH)\"" \ -std=c++11 \ $(NULL) AM_LDFLAGS = \ -pthread \ $(NULL) # libgtest noinst_LTLIBRARIES = libgtest.la libgtest_la_SOURCES = \ gtest/src/gtest-all.cc \ gtest/src/gtest_main.cc \ $(NULL) libgtest_la_CXXFLAGS = \ -I$(top_srcdir)/test/gtest \ $(AM_CXXFLAGS) \ $(NULL) EXTRA_DIST = \ gtest/docs \ gtest/include \ gtest/src/*.cc \ gtest/src/*.h \ gtest/README.md \ gtest/LICENSE \ $(NULL) # test_va_api bin_PROGRAMS = test_va_api noinst_HEADERS = \ test.h \ test_data.h \ test_defs.h \ test_streamable.h \ test_utils.h \ test_va_api_fixture.h \ $(NULL) test_va_api_SOURCES = \ test_main.cpp \ test_internal.cpp \ test_va_api_fixture.cpp \ test_va_api_get_create_config.cpp \ test_va_api_config_attribs.cpp \ test_va_api_createsurfaces.cpp \ test_va_api_createcontext.cpp \ test_va_api_createbuffer.cpp \ test_va_api_display_attribs.cpp \ test_va_api_get_max_values.cpp \ test_va_api_init_terminate.cpp \ test_va_api_query_config.cpp \ test_va_api_query_vendor.cpp \ $(NULL) test_va_api_LDFLAGS = \ $(LIBVA_LDFLAGS) \ $(LIBVA_DRM_LDFLAGS) \ $(AM_LDFLAGS) \ $(NULL) test_va_api_LDADD = \ libgtest.la \ $(LIBVA_DEPS_LIBS) \ $(LIBVA_DRM_LIBS) \ $(NULL) test_va_api_CPPFLAGS = \ $(LIBVA_CFLAGS) \ $(LIBVA_DRM_CFLAGS) \ $(AM_CPPFLAGS) \ $(NULL) test_va_api_CXXFLAGS = \ -Wall -Werror \ $(AM_CXXFLAGS) \ $(NULL) check-local: test_va_api $(builddir)/test_va_api ================================================ FILE: test/compat_win32.h ================================================ /* * Copyright © Microsoft Corporation * * 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 (including the next * paragraph) 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. */ #ifndef _COMPAT_WIN32_H_ #define _COMPAT_WIN32_H_ #include #ifdef __cplusplus extern "C" { #endif /* The setenv() function returns zero on success, or -1 on error, with * errno set to indicate the cause of the error. * * SetEnvironmentVariableA Return value * If the function succeeds, the return value is nonzero. * If the function fails, the return value is zero. */ inline int setenv(const char *varname, const char *value_string, int overwrite) { return SetEnvironmentVariableA(varname, value_string) ? 0 : -1; } /* The unsetenv() function returns zero on success, or -1 on error, * with errno set to indicate the cause of the error. * SetEnvironmentVariableA Return value * If the function succeeds, the return value is nonzero. * If the function fails, the return value is zero. */ inline int unsetenv(const char *varname) { return SetEnvironmentVariableA(varname, NULL) ? 0 : -1; } #ifdef __cplusplus } #endif #endif /* _COMPAT_WIN32_H_ */ ================================================ FILE: test/gtest/LICENSE ================================================ Copyright 2008, Google Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================ FILE: test/gtest/README.md ================================================ ### Generic Build Instructions ### #### Setup #### To build Google Test and your tests that use it, you need to tell your build system where to find its headers and source files. The exact way to do it depends on which build system you use, and is usually straightforward. #### Build #### Suppose you put Google Test in directory `${GTEST_DIR}`. To build it, create a library build target (or a project as called by Visual Studio and Xcode) to compile ${GTEST_DIR}/src/gtest-all.cc with `${GTEST_DIR}/include` in the system header search path and `${GTEST_DIR}` in the normal header search path. Assuming a Linux-like system and gcc, something like the following will do: g++ -isystem ${GTEST_DIR}/include -I${GTEST_DIR} \ -pthread -c ${GTEST_DIR}/src/gtest-all.cc ar -rv libgtest.a gtest-all.o (We need `-pthread` as Google Test uses threads.) Next, you should compile your test source file with `${GTEST_DIR}/include` in the system header search path, and link it with gtest and any other necessary libraries: g++ -isystem ${GTEST_DIR}/include -pthread path/to/your_test.cc libgtest.a \ -o your_test As an example, the make/ directory contains a Makefile that you can use to build Google Test on systems where GNU make is available (e.g. Linux, Mac OS X, and Cygwin). It doesn't try to build Google Test's own tests. Instead, it just builds the Google Test library and a sample test. You can use it as a starting point for your own build script. If the default settings are correct for your environment, the following commands should succeed: cd ${GTEST_DIR}/make make ./sample1_unittest If you see errors, try to tweak the contents of `make/Makefile` to make them go away. There are instructions in `make/Makefile` on how to do it. ### Using CMake ### Google Test comes with a CMake build script ( [CMakeLists.txt](CMakeLists.txt)) that can be used on a wide range of platforms ("C" stands for cross-platform.). If you don't have CMake installed already, you can download it for free from . CMake works by generating native makefiles or build projects that can be used in the compiler environment of your choice. The typical workflow starts with: mkdir mybuild # Create a directory to hold the build output. cd mybuild cmake ${GTEST_DIR} # Generate native build scripts. If you want to build Google Test's samples, you should replace the last command with cmake -Dgtest_build_samples=ON ${GTEST_DIR} If you are on a \*nix system, you should now see a Makefile in the current directory. Just type 'make' to build gtest. If you use Windows and have Visual Studio installed, a `gtest.sln` file and several `.vcproj` files will be created. You can then build them using Visual Studio. On Mac OS X with Xcode installed, a `.xcodeproj` file will be generated. ### Legacy Build Scripts ### Before settling on CMake, we have been providing hand-maintained build projects/scripts for Visual Studio, Xcode, and Autotools. While we continue to provide them for convenience, they are not actively maintained any more. We highly recommend that you follow the instructions in the previous two sections to integrate Google Test with your existing build system. If you still need to use the legacy build scripts, here's how: The msvc\ folder contains two solutions with Visual C++ projects. Open the `gtest.sln` or `gtest-md.sln` file using Visual Studio, and you are ready to build Google Test the same way you build any Visual Studio project. Files that have names ending with -md use DLL versions of Microsoft runtime libraries (the /MD or the /MDd compiler option). Files without that suffix use static versions of the runtime libraries (the /MT or the /MTd option). Please note that one must use the same option to compile both gtest and the test code. If you use Visual Studio 2005 or above, we recommend the -md version as /MD is the default for new projects in these versions of Visual Studio. On Mac OS X, open the `gtest.xcodeproj` in the `xcode/` folder using Xcode. Build the "gtest" target. The universal binary framework will end up in your selected build directory (selected in the Xcode "Preferences..." -> "Building" pane and defaults to xcode/build). Alternatively, at the command line, enter: xcodebuild This will build the "Release" configuration of gtest.framework in your default build location. See the "xcodebuild" man page for more information about building different configurations and building in different locations. If you wish to use the Google Test Xcode project with Xcode 4.x and above, you need to either: * update the SDK configuration options in xcode/Config/General.xconfig. Comment options `SDKROOT`, `MACOS_DEPLOYMENT_TARGET`, and `GCC_VERSION`. If you choose this route you lose the ability to target earlier versions of MacOS X. * Install an SDK for an earlier version. This doesn't appear to be supported by Apple, but has been reported to work (http://stackoverflow.com/questions/5378518). ### Tweaking Google Test ### Google Test can be used in diverse environments. The default configuration may not work (or may not work well) out of the box in some environments. However, you can easily tweak Google Test by defining control macros on the compiler command line. Generally, these macros are named like `GTEST_XYZ` and you define them to either 1 or 0 to enable or disable a certain feature. We list the most frequently used macros below. For a complete list, see file [include/gtest/internal/gtest-port.h](include/gtest/internal/gtest-port.h). ### Choosing a TR1 Tuple Library ### Some Google Test features require the C++ Technical Report 1 (TR1) tuple library, which is not yet available with all compilers. The good news is that Google Test implements a subset of TR1 tuple that's enough for its own need, and will automatically use this when the compiler doesn't provide TR1 tuple. Usually you don't need to care about which tuple library Google Test uses. However, if your project already uses TR1 tuple, you need to tell Google Test to use the same TR1 tuple library the rest of your project uses, or the two tuple implementations will clash. To do that, add -DGTEST_USE_OWN_TR1_TUPLE=0 to the compiler flags while compiling Google Test and your tests. If you want to force Google Test to use its own tuple library, just add -DGTEST_USE_OWN_TR1_TUPLE=1 to the compiler flags instead. If you don't want Google Test to use tuple at all, add -DGTEST_HAS_TR1_TUPLE=0 and all features using tuple will be disabled. ### Multi-threaded Tests ### Google Test is thread-safe where the pthread library is available. After `#include "gtest/gtest.h"`, you can check the `GTEST_IS_THREADSAFE` macro to see whether this is the case (yes if the macro is `#defined` to 1, no if it's undefined.). If Google Test doesn't correctly detect whether pthread is available in your environment, you can force it with -DGTEST_HAS_PTHREAD=1 or -DGTEST_HAS_PTHREAD=0 When Google Test uses pthread, you may need to add flags to your compiler and/or linker to select the pthread library, or you'll get link errors. If you use the CMake script or the deprecated Autotools script, this is taken care of for you. If you use your own build script, you'll need to read your compiler and linker's manual to figure out what flags to add. ### As a Shared Library (DLL) ### Google Test is compact, so most users can build and link it as a static library for the simplicity. You can choose to use Google Test as a shared library (known as a DLL on Windows) if you prefer. To compile *gtest* as a shared library, add -DGTEST_CREATE_SHARED_LIBRARY=1 to the compiler flags. You'll also need to tell the linker to produce a shared library instead - consult your linker's manual for how to do it. To compile your *tests* that use the gtest shared library, add -DGTEST_LINKED_AS_SHARED_LIBRARY=1 to the compiler flags. Note: while the above steps aren't technically necessary today when using some compilers (e.g. GCC), they may become necessary in the future, if we decide to improve the speed of loading the library (see for details). Therefore you are recommended to always add the above flags when using Google Test as a shared library. Otherwise a future release of Google Test may break your build script. ### Avoiding Macro Name Clashes ### In C++, macros don't obey namespaces. Therefore two libraries that both define a macro of the same name will clash if you `#include` both definitions. In case a Google Test macro clashes with another library, you can force Google Test to rename its macro to avoid the conflict. Specifically, if both Google Test and some other code define macro FOO, you can add -DGTEST_DONT_DEFINE_FOO=1 to the compiler flags to tell Google Test to change the macro's name from `FOO` to `GTEST_FOO`. Currently `FOO` can be `FAIL`, `SUCCEED`, or `TEST`. For example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll need to write GTEST_TEST(SomeTest, DoesThis) { ... } instead of TEST(SomeTest, DoesThis) { ... } in order to define a test. ## Developing Google Test ## This section discusses how to make your own changes to Google Test. ### Testing Google Test Itself ### To make sure your changes work as intended and don't break existing functionality, you'll want to compile and run Google Test's own tests. For that you can use CMake: mkdir mybuild cd mybuild cmake -Dgtest_build_tests=ON ${GTEST_DIR} Make sure you have Python installed, as some of Google Test's tests are written in Python. If the cmake command complains about not being able to find Python (`Could NOT find PythonInterp (missing: PYTHON_EXECUTABLE)`), try telling it explicitly where your Python executable can be found: cmake -DPYTHON_EXECUTABLE=path/to/python -Dgtest_build_tests=ON ${GTEST_DIR} Next, you can build Google Test and all of its own tests. On \*nix, this is usually done by 'make'. To run the tests, do make test All tests should pass. Normally you don't need to worry about regenerating the source files, unless you need to modify them. In that case, you should modify the corresponding .pump files instead and run the pump.py Python script to regenerate them. You can find pump.py in the [scripts/](scripts/) directory. Read the [Pump manual](docs/PumpManual.md) for how to use it. ================================================ FILE: test/gtest/docs/AdvancedGuide.md ================================================ Now that you have read [Primer](Primer.md) and learned how to write tests using Google Test, it's time to learn some new tricks. This document will show you more assertions as well as how to construct complex failure messages, propagate fatal failures, reuse and speed up your test fixtures, and use various flags with your tests. # More Assertions # This section covers some less frequently used, but still significant, assertions. ## Explicit Success and Failure ## These three assertions do not actually test a value or expression. Instead, they generate a success or failure directly. Like the macros that actually perform a test, you may stream a custom failure message into the them. | `SUCCEED();` | |:-------------| Generates a success. This does NOT make the overall test succeed. A test is considered successful only if none of its assertions fail during its execution. Note: `SUCCEED()` is purely documentary and currently doesn't generate any user-visible output. However, we may add `SUCCEED()` messages to Google Test's output in the future. | `FAIL();` | `ADD_FAILURE();` | `ADD_FAILURE_AT("`_file\_path_`", `_line\_number_`);` | |:-----------|:-----------------|:------------------------------------------------------| `FAIL()` generates a fatal failure, while `ADD_FAILURE()` and `ADD_FAILURE_AT()` generate a nonfatal failure. These are useful when control flow, rather than a Boolean expression, deteremines the test's success or failure. For example, you might want to write something like: ``` switch(expression) { case 1: ... some checks ... case 2: ... some other checks ... default: FAIL() << "We shouldn't get here."; } ``` Note: you can only use `FAIL()` in functions that return `void`. See the [Assertion Placement section](#assertion-placement) for more information. _Availability_: Linux, Windows, Mac. ## Exception Assertions ## These are for verifying that a piece of code throws (or does not throw) an exception of the given type: | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_THROW(`_statement_, _exception\_type_`);` | `EXPECT_THROW(`_statement_, _exception\_type_`);` | _statement_ throws an exception of the given type | | `ASSERT_ANY_THROW(`_statement_`);` | `EXPECT_ANY_THROW(`_statement_`);` | _statement_ throws an exception of any type | | `ASSERT_NO_THROW(`_statement_`);` | `EXPECT_NO_THROW(`_statement_`);` | _statement_ doesn't throw any exception | Examples: ``` ASSERT_THROW(Foo(5), bar_exception); EXPECT_NO_THROW({ int n = 5; Bar(&n); }); ``` _Availability_: Linux, Windows, Mac; since version 1.1.0. ## Predicate Assertions for Better Error Messages ## Even though Google Test has a rich set of assertions, they can never be complete, as it's impossible (nor a good idea) to anticipate all the scenarios a user might run into. Therefore, sometimes a user has to use `EXPECT_TRUE()` to check a complex expression, for lack of a better macro. This has the problem of not showing you the values of the parts of the expression, making it hard to understand what went wrong. As a workaround, some users choose to construct the failure message by themselves, streaming it into `EXPECT_TRUE()`. However, this is awkward especially when the expression has side-effects or is expensive to evaluate. Google Test gives you three different options to solve this problem: ### Using an Existing Boolean Function ### If you already have a function or a functor that returns `bool` (or a type that can be implicitly converted to `bool`), you can use it in a _predicate assertion_ to get the function arguments printed for free: | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_PRED1(`_pred1, val1_`);` | `EXPECT_PRED1(`_pred1, val1_`);` | _pred1(val1)_ returns true | | `ASSERT_PRED2(`_pred2, val1, val2_`);` | `EXPECT_PRED2(`_pred2, val1, val2_`);` | _pred2(val1, val2)_ returns true | | ... | ... | ... | In the above, _predn_ is an _n_-ary predicate function or functor, where _val1_, _val2_, ..., and _valn_ are its arguments. The assertion succeeds if the predicate returns `true` when applied to the given arguments, and fails otherwise. When the assertion fails, it prints the value of each argument. In either case, the arguments are evaluated exactly once. Here's an example. Given ``` // Returns true iff m and n have no common divisors except 1. bool MutuallyPrime(int m, int n) { ... } const int a = 3; const int b = 4; const int c = 10; ``` the assertion `EXPECT_PRED2(MutuallyPrime, a, b);` will succeed, while the assertion `EXPECT_PRED2(MutuallyPrime, b, c);` will fail with the message
!MutuallyPrime(b, c) is false, where
b is 4
c is 10
**Notes:** 1. If you see a compiler error "no matching function to call" when using `ASSERT_PRED*` or `EXPECT_PRED*`, please see [this FAQ](FAQ.md#the-compiler-complains-no-matching-function-to-call-when-i-use-assert_predn-how-do-i-fix-it) for how to resolve it. 1. Currently we only provide predicate assertions of arity <= 5. If you need a higher-arity assertion, let us know. _Availability_: Linux, Windows, Mac ### Using a Function That Returns an AssertionResult ### While `EXPECT_PRED*()` and friends are handy for a quick job, the syntax is not satisfactory: you have to use different macros for different arities, and it feels more like Lisp than C++. The `::testing::AssertionResult` class solves this problem. An `AssertionResult` object represents the result of an assertion (whether it's a success or a failure, and an associated message). You can create an `AssertionResult` using one of these factory functions: ``` namespace testing { // Returns an AssertionResult object to indicate that an assertion has // succeeded. AssertionResult AssertionSuccess(); // Returns an AssertionResult object to indicate that an assertion has // failed. AssertionResult AssertionFailure(); } ``` You can then use the `<<` operator to stream messages to the `AssertionResult` object. To provide more readable messages in Boolean assertions (e.g. `EXPECT_TRUE()`), write a predicate function that returns `AssertionResult` instead of `bool`. For example, if you define `IsEven()` as: ``` ::testing::AssertionResult IsEven(int n) { if ((n % 2) == 0) return ::testing::AssertionSuccess(); else return ::testing::AssertionFailure() << n << " is odd"; } ``` instead of: ``` bool IsEven(int n) { return (n % 2) == 0; } ``` the failed assertion `EXPECT_TRUE(IsEven(Fib(4)))` will print:
Value of: IsEven(Fib(4))
Actual: false (*3 is odd*)
Expected: true
instead of a more opaque
Value of: IsEven(Fib(4))
Actual: false
Expected: true
If you want informative messages in `EXPECT_FALSE` and `ASSERT_FALSE` as well, and are fine with making the predicate slower in the success case, you can supply a success message: ``` ::testing::AssertionResult IsEven(int n) { if ((n % 2) == 0) return ::testing::AssertionSuccess() << n << " is even"; else return ::testing::AssertionFailure() << n << " is odd"; } ``` Then the statement `EXPECT_FALSE(IsEven(Fib(6)))` will print
Value of: IsEven(Fib(6))
Actual: true (8 is even)
Expected: false
_Availability_: Linux, Windows, Mac; since version 1.4.1. ### Using a Predicate-Formatter ### If you find the default message generated by `(ASSERT|EXPECT)_PRED*` and `(ASSERT|EXPECT)_(TRUE|FALSE)` unsatisfactory, or some arguments to your predicate do not support streaming to `ostream`, you can instead use the following _predicate-formatter assertions_ to _fully_ customize how the message is formatted: | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_PRED_FORMAT1(`_pred\_format1, val1_`);` | `EXPECT_PRED_FORMAT1(`_pred\_format1, val1_`);` | _pred\_format1(val1)_ is successful | | `ASSERT_PRED_FORMAT2(`_pred\_format2, val1, val2_`);` | `EXPECT_PRED_FORMAT2(`_pred\_format2, val1, val2_`);` | _pred\_format2(val1, val2)_ is successful | | `...` | `...` | `...` | The difference between this and the previous two groups of macros is that instead of a predicate, `(ASSERT|EXPECT)_PRED_FORMAT*` take a _predicate-formatter_ (_pred\_formatn_), which is a function or functor with the signature: `::testing::AssertionResult PredicateFormattern(const char* `_expr1_`, const char* `_expr2_`, ... const char* `_exprn_`, T1 `_val1_`, T2 `_val2_`, ... Tn `_valn_`);` where _val1_, _val2_, ..., and _valn_ are the values of the predicate arguments, and _expr1_, _expr2_, ..., and _exprn_ are the corresponding expressions as they appear in the source code. The types `T1`, `T2`, ..., and `Tn` can be either value types or reference types. For example, if an argument has type `Foo`, you can declare it as either `Foo` or `const Foo&`, whichever is appropriate. A predicate-formatter returns a `::testing::AssertionResult` object to indicate whether the assertion has succeeded or not. The only way to create such an object is to call one of these factory functions: As an example, let's improve the failure message in the previous example, which uses `EXPECT_PRED2()`: ``` // Returns the smallest prime common divisor of m and n, // or 1 when m and n are mutually prime. int SmallestPrimeCommonDivisor(int m, int n) { ... } // A predicate-formatter for asserting that two integers are mutually prime. ::testing::AssertionResult AssertMutuallyPrime(const char* m_expr, const char* n_expr, int m, int n) { if (MutuallyPrime(m, n)) return ::testing::AssertionSuccess(); return ::testing::AssertionFailure() << m_expr << " and " << n_expr << " (" << m << " and " << n << ") are not mutually prime, " << "as they have a common divisor " << SmallestPrimeCommonDivisor(m, n); } ``` With this predicate-formatter, we can use ``` EXPECT_PRED_FORMAT2(AssertMutuallyPrime, b, c); ``` to generate the message
b and c (4 and 10) are not mutually prime, as they have a common divisor 2.
As you may have realized, many of the assertions we introduced earlier are special cases of `(EXPECT|ASSERT)_PRED_FORMAT*`. In fact, most of them are indeed defined using `(EXPECT|ASSERT)_PRED_FORMAT*`. _Availability_: Linux, Windows, Mac. ## Floating-Point Comparison ## Comparing floating-point numbers is tricky. Due to round-off errors, it is very unlikely that two floating-points will match exactly. Therefore, `ASSERT_EQ` 's naive comparison usually doesn't work. And since floating-points can have a wide value range, no single fixed error bound works. It's better to compare by a fixed relative error bound, except for values close to 0 due to the loss of precision there. In general, for floating-point comparison to make sense, the user needs to carefully choose the error bound. If they don't want or care to, comparing in terms of Units in the Last Place (ULPs) is a good default, and Google Test provides assertions to do this. Full details about ULPs are quite long; if you want to learn more, see [this article on float comparison](http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm). ### Floating-Point Macros ### | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_FLOAT_EQ(`_val1, val2_`);` | `EXPECT_FLOAT_EQ(`_val1, val2_`);` | the two `float` values are almost equal | | `ASSERT_DOUBLE_EQ(`_val1, val2_`);` | `EXPECT_DOUBLE_EQ(`_val1, val2_`);` | the two `double` values are almost equal | By "almost equal", we mean the two values are within 4 ULP's from each other. The following assertions allow you to choose the acceptable error bound: | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_NEAR(`_val1, val2, abs\_error_`);` | `EXPECT_NEAR`_(val1, val2, abs\_error_`);` | the difference between _val1_ and _val2_ doesn't exceed the given absolute error | _Availability_: Linux, Windows, Mac. ### Floating-Point Predicate-Format Functions ### Some floating-point operations are useful, but not that often used. In order to avoid an explosion of new macros, we provide them as predicate-format functions that can be used in predicate assertion macros (e.g. `EXPECT_PRED_FORMAT2`, etc). ``` EXPECT_PRED_FORMAT2(::testing::FloatLE, val1, val2); EXPECT_PRED_FORMAT2(::testing::DoubleLE, val1, val2); ``` Verifies that _val1_ is less than, or almost equal to, _val2_. You can replace `EXPECT_PRED_FORMAT2` in the above table with `ASSERT_PRED_FORMAT2`. _Availability_: Linux, Windows, Mac. ## Windows HRESULT assertions ## These assertions test for `HRESULT` success or failure. | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_HRESULT_SUCCEEDED(`_expression_`);` | `EXPECT_HRESULT_SUCCEEDED(`_expression_`);` | _expression_ is a success `HRESULT` | | `ASSERT_HRESULT_FAILED(`_expression_`);` | `EXPECT_HRESULT_FAILED(`_expression_`);` | _expression_ is a failure `HRESULT` | The generated output contains the human-readable error message associated with the `HRESULT` code returned by _expression_. You might use them like this: ``` CComPtr shell; ASSERT_HRESULT_SUCCEEDED(shell.CoCreateInstance(L"Shell.Application")); CComVariant empty; ASSERT_HRESULT_SUCCEEDED(shell->ShellExecute(CComBSTR(url), empty, empty, empty, empty)); ``` _Availability_: Windows. ## Type Assertions ## You can call the function ``` ::testing::StaticAssertTypeEq(); ``` to assert that types `T1` and `T2` are the same. The function does nothing if the assertion is satisfied. If the types are different, the function call will fail to compile, and the compiler error message will likely (depending on the compiler) show you the actual values of `T1` and `T2`. This is mainly useful inside template code. _Caveat:_ When used inside a member function of a class template or a function template, `StaticAssertTypeEq()` is effective _only if_ the function is instantiated. For example, given: ``` template class Foo { public: void Bar() { ::testing::StaticAssertTypeEq(); } }; ``` the code: ``` void Test1() { Foo foo; } ``` will _not_ generate a compiler error, as `Foo::Bar()` is never actually instantiated. Instead, you need: ``` void Test2() { Foo foo; foo.Bar(); } ``` to cause a compiler error. _Availability:_ Linux, Windows, Mac; since version 1.3.0. ## Assertion Placement ## You can use assertions in any C++ function. In particular, it doesn't have to be a method of the test fixture class. The one constraint is that assertions that generate a fatal failure (`FAIL*` and `ASSERT_*`) can only be used in void-returning functions. This is a consequence of Google Test not using exceptions. By placing it in a non-void function you'll get a confusing compile error like `"error: void value not ignored as it ought to be"`. If you need to use assertions in a function that returns non-void, one option is to make the function return the value in an out parameter instead. For example, you can rewrite `T2 Foo(T1 x)` to `void Foo(T1 x, T2* result)`. You need to make sure that `*result` contains some sensible value even when the function returns prematurely. As the function now returns `void`, you can use any assertion inside of it. If changing the function's type is not an option, you should just use assertions that generate non-fatal failures, such as `ADD_FAILURE*` and `EXPECT_*`. _Note_: Constructors and destructors are not considered void-returning functions, according to the C++ language specification, and so you may not use fatal assertions in them. You'll get a compilation error if you try. A simple workaround is to transfer the entire body of the constructor or destructor to a private void-returning method. However, you should be aware that a fatal assertion failure in a constructor does not terminate the current test, as your intuition might suggest; it merely returns from the constructor early, possibly leaving your object in a partially-constructed state. Likewise, a fatal assertion failure in a destructor may leave your object in a partially-destructed state. Use assertions carefully in these situations! # Teaching Google Test How to Print Your Values # When a test assertion such as `EXPECT_EQ` fails, Google Test prints the argument values to help you debug. It does this using a user-extensible value printer. This printer knows how to print built-in C++ types, native arrays, STL containers, and any type that supports the `<<` operator. For other types, it prints the raw bytes in the value and hopes that you the user can figure it out. As mentioned earlier, the printer is _extensible_. That means you can teach it to do a better job at printing your particular type than to dump the bytes. To do that, define `<<` for your type: ``` #include namespace foo { class Bar { ... }; // We want Google Test to be able to print instances of this. // It's important that the << operator is defined in the SAME // namespace that defines Bar. C++'s look-up rules rely on that. ::std::ostream& operator<<(::std::ostream& os, const Bar& bar) { return os << bar.DebugString(); // whatever needed to print bar to os } } // namespace foo ``` Sometimes, this might not be an option: your team may consider it bad style to have a `<<` operator for `Bar`, or `Bar` may already have a `<<` operator that doesn't do what you want (and you cannot change it). If so, you can instead define a `PrintTo()` function like this: ``` #include namespace foo { class Bar { ... }; // It's important that PrintTo() is defined in the SAME // namespace that defines Bar. C++'s look-up rules rely on that. void PrintTo(const Bar& bar, ::std::ostream* os) { *os << bar.DebugString(); // whatever needed to print bar to os } } // namespace foo ``` If you have defined both `<<` and `PrintTo()`, the latter will be used when Google Test is concerned. This allows you to customize how the value appears in Google Test's output without affecting code that relies on the behavior of its `<<` operator. If you want to print a value `x` using Google Test's value printer yourself, just call `::testing::PrintToString(`_x_`)`, which returns an `std::string`: ``` vector > bar_ints = GetBarIntVector(); EXPECT_TRUE(IsCorrectBarIntVector(bar_ints)) << "bar_ints = " << ::testing::PrintToString(bar_ints); ``` # Death Tests # In many applications, there are assertions that can cause application failure if a condition is not met. These sanity checks, which ensure that the program is in a known good state, are there to fail at the earliest possible time after some program state is corrupted. If the assertion checks the wrong condition, then the program may proceed in an erroneous state, which could lead to memory corruption, security holes, or worse. Hence it is vitally important to test that such assertion statements work as expected. Since these precondition checks cause the processes to die, we call such tests _death tests_. More generally, any test that checks that a program terminates (except by throwing an exception) in an expected fashion is also a death test. Note that if a piece of code throws an exception, we don't consider it "death" for the purpose of death tests, as the caller of the code could catch the exception and avoid the crash. If you want to verify exceptions thrown by your code, see [Exception Assertions](#exception-assertions). If you want to test `EXPECT_*()/ASSERT_*()` failures in your test code, see [Catching Failures](#catching-failures). ## How to Write a Death Test ## Google Test has the following macros to support death tests: | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_DEATH(`_statement, regex_`);` | `EXPECT_DEATH(`_statement, regex_`);` | _statement_ crashes with the given error | | `ASSERT_DEATH_IF_SUPPORTED(`_statement, regex_`);` | `EXPECT_DEATH_IF_SUPPORTED(`_statement, regex_`);` | if death tests are supported, verifies that _statement_ crashes with the given error; otherwise verifies nothing | | `ASSERT_EXIT(`_statement, predicate, regex_`);` | `EXPECT_EXIT(`_statement, predicate, regex_`);` |_statement_ exits with the given error and its exit code matches _predicate_ | where _statement_ is a statement that is expected to cause the process to die, _predicate_ is a function or function object that evaluates an integer exit status, and _regex_ is a regular expression that the stderr output of _statement_ is expected to match. Note that _statement_ can be _any valid statement_ (including _compound statement_) and doesn't have to be an expression. As usual, the `ASSERT` variants abort the current test function, while the `EXPECT` variants do not. **Note:** We use the word "crash" here to mean that the process terminates with a _non-zero_ exit status code. There are two possibilities: either the process has called `exit()` or `_exit()` with a non-zero value, or it may be killed by a signal. This means that if _statement_ terminates the process with a 0 exit code, it is _not_ considered a crash by `EXPECT_DEATH`. Use `EXPECT_EXIT` instead if this is the case, or if you want to restrict the exit code more precisely. A predicate here must accept an `int` and return a `bool`. The death test succeeds only if the predicate returns `true`. Google Test defines a few predicates that handle the most common cases: ``` ::testing::ExitedWithCode(exit_code) ``` This expression is `true` if the program exited normally with the given exit code. ``` ::testing::KilledBySignal(signal_number) // Not available on Windows. ``` This expression is `true` if the program was killed by the given signal. The `*_DEATH` macros are convenient wrappers for `*_EXIT` that use a predicate that verifies the process' exit code is non-zero. Note that a death test only cares about three things: 1. does _statement_ abort or exit the process? 1. (in the case of `ASSERT_EXIT` and `EXPECT_EXIT`) does the exit status satisfy _predicate_? Or (in the case of `ASSERT_DEATH` and `EXPECT_DEATH`) is the exit status non-zero? And 1. does the stderr output match _regex_? In particular, if _statement_ generates an `ASSERT_*` or `EXPECT_*` failure, it will **not** cause the death test to fail, as Google Test assertions don't abort the process. To write a death test, simply use one of the above macros inside your test function. For example, ``` TEST(MyDeathTest, Foo) { // This death test uses a compound statement. ASSERT_DEATH({ int n = 5; Foo(&n); }, "Error on line .* of Foo()"); } TEST(MyDeathTest, NormalExit) { EXPECT_EXIT(NormalExit(), ::testing::ExitedWithCode(0), "Success"); } TEST(MyDeathTest, KillMyself) { EXPECT_EXIT(KillMyself(), ::testing::KilledBySignal(SIGKILL), "Sending myself unblockable signal"); } ``` verifies that: * calling `Foo(5)` causes the process to die with the given error message, * calling `NormalExit()` causes the process to print `"Success"` to stderr and exit with exit code 0, and * calling `KillMyself()` kills the process with signal `SIGKILL`. The test function body may contain other assertions and statements as well, if necessary. _Important:_ We strongly recommend you to follow the convention of naming your test case (not test) `*DeathTest` when it contains a death test, as demonstrated in the above example. The `Death Tests And Threads` section below explains why. If a test fixture class is shared by normal tests and death tests, you can use typedef to introduce an alias for the fixture class and avoid duplicating its code: ``` class FooTest : public ::testing::Test { ... }; typedef FooTest FooDeathTest; TEST_F(FooTest, DoesThis) { // normal test } TEST_F(FooDeathTest, DoesThat) { // death test } ``` _Availability:_ Linux, Windows (requires MSVC 8.0 or above), Cygwin, and Mac (the latter three are supported since v1.3.0). `(ASSERT|EXPECT)_DEATH_IF_SUPPORTED` are new in v1.4.0. ## Regular Expression Syntax ## On POSIX systems (e.g. Linux, Cygwin, and Mac), Google Test uses the [POSIX extended regular expression](http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html#tag_09_04) syntax in death tests. To learn about this syntax, you may want to read this [Wikipedia entry](http://en.wikipedia.org/wiki/Regular_expression#POSIX_Extended_Regular_Expressions). On Windows, Google Test uses its own simple regular expression implementation. It lacks many features you can find in POSIX extended regular expressions. For example, we don't support union (`"x|y"`), grouping (`"(xy)"`), brackets (`"[xy]"`), and repetition count (`"x{5,7}"`), among others. Below is what we do support (Letter `A` denotes a literal character, period (`.`), or a single `\\` escape sequence; `x` and `y` denote regular expressions.): | `c` | matches any literal character `c` | |:----|:----------------------------------| | `\\d` | matches any decimal digit | | `\\D` | matches any character that's not a decimal digit | | `\\f` | matches `\f` | | `\\n` | matches `\n` | | `\\r` | matches `\r` | | `\\s` | matches any ASCII whitespace, including `\n` | | `\\S` | matches any character that's not a whitespace | | `\\t` | matches `\t` | | `\\v` | matches `\v` | | `\\w` | matches any letter, `_`, or decimal digit | | `\\W` | matches any character that `\\w` doesn't match | | `\\c` | matches any literal character `c`, which must be a punctuation | | `\\.` | matches the `.` character | | `.` | matches any single character except `\n` | | `A?` | matches 0 or 1 occurrences of `A` | | `A*` | matches 0 or many occurrences of `A` | | `A+` | matches 1 or many occurrences of `A` | | `^` | matches the beginning of a string (not that of each line) | | `$` | matches the end of a string (not that of each line) | | `xy` | matches `x` followed by `y` | To help you determine which capability is available on your system, Google Test defines macro `GTEST_USES_POSIX_RE=1` when it uses POSIX extended regular expressions, or `GTEST_USES_SIMPLE_RE=1` when it uses the simple version. If you want your death tests to work in both cases, you can either `#if` on these macros or use the more limited syntax only. ## How It Works ## Under the hood, `ASSERT_EXIT()` spawns a new process and executes the death test statement in that process. The details of of how precisely that happens depend on the platform and the variable `::testing::GTEST_FLAG(death_test_style)` (which is initialized from the command-line flag `--gtest_death_test_style`). * On POSIX systems, `fork()` (or `clone()` on Linux) is used to spawn the child, after which: * If the variable's value is `"fast"`, the death test statement is immediately executed. * If the variable's value is `"threadsafe"`, the child process re-executes the unit test binary just as it was originally invoked, but with some extra flags to cause just the single death test under consideration to be run. * On Windows, the child is spawned using the `CreateProcess()` API, and re-executes the binary to cause just the single death test under consideration to be run - much like the `threadsafe` mode on POSIX. Other values for the variable are illegal and will cause the death test to fail. Currently, the flag's default value is `"fast"`. However, we reserve the right to change it in the future. Therefore, your tests should not depend on this. In either case, the parent process waits for the child process to complete, and checks that 1. the child's exit status satisfies the predicate, and 1. the child's stderr matches the regular expression. If the death test statement runs to completion without dying, the child process will nonetheless terminate, and the assertion fails. ## Death Tests And Threads ## The reason for the two death test styles has to do with thread safety. Due to well-known problems with forking in the presence of threads, death tests should be run in a single-threaded context. Sometimes, however, it isn't feasible to arrange that kind of environment. For example, statically-initialized modules may start threads before main is ever reached. Once threads have been created, it may be difficult or impossible to clean them up. Google Test has three features intended to raise awareness of threading issues. 1. A warning is emitted if multiple threads are running when a death test is encountered. 1. Test cases with a name ending in "DeathTest" are run before all other tests. 1. It uses `clone()` instead of `fork()` to spawn the child process on Linux (`clone()` is not available on Cygwin and Mac), as `fork()` is more likely to cause the child to hang when the parent process has multiple threads. It's perfectly fine to create threads inside a death test statement; they are executed in a separate process and cannot affect the parent. ## Death Test Styles ## The "threadsafe" death test style was introduced in order to help mitigate the risks of testing in a possibly multithreaded environment. It trades increased test execution time (potentially dramatically so) for improved thread safety. We suggest using the faster, default "fast" style unless your test has specific problems with it. You can choose a particular style of death tests by setting the flag programmatically: ``` ::testing::FLAGS_gtest_death_test_style = "threadsafe"; ``` You can do this in `main()` to set the style for all death tests in the binary, or in individual tests. Recall that flags are saved before running each test and restored afterwards, so you need not do that yourself. For example: ``` TEST(MyDeathTest, TestOne) { ::testing::FLAGS_gtest_death_test_style = "threadsafe"; // This test is run in the "threadsafe" style: ASSERT_DEATH(ThisShouldDie(), ""); } TEST(MyDeathTest, TestTwo) { // This test is run in the "fast" style: ASSERT_DEATH(ThisShouldDie(), ""); } int main(int argc, char** argv) { ::testing::InitGoogleTest(&argc, argv); ::testing::FLAGS_gtest_death_test_style = "fast"; return RUN_ALL_TESTS(); } ``` ## Caveats ## The _statement_ argument of `ASSERT_EXIT()` can be any valid C++ statement. If it leaves the current function via a `return` statement or by throwing an exception, the death test is considered to have failed. Some Google Test macros may return from the current function (e.g. `ASSERT_TRUE()`), so be sure to avoid them in _statement_. Since _statement_ runs in the child process, any in-memory side effect (e.g. modifying a variable, releasing memory, etc) it causes will _not_ be observable in the parent process. In particular, if you release memory in a death test, your program will fail the heap check as the parent process will never see the memory reclaimed. To solve this problem, you can 1. try not to free memory in a death test; 1. free the memory again in the parent process; or 1. do not use the heap checker in your program. Due to an implementation detail, you cannot place multiple death test assertions on the same line; otherwise, compilation will fail with an unobvious error message. Despite the improved thread safety afforded by the "threadsafe" style of death test, thread problems such as deadlock are still possible in the presence of handlers registered with `pthread_atfork(3)`. # Using Assertions in Sub-routines # ## Adding Traces to Assertions ## If a test sub-routine is called from several places, when an assertion inside it fails, it can be hard to tell which invocation of the sub-routine the failure is from. You can alleviate this problem using extra logging or custom failure messages, but that usually clutters up your tests. A better solution is to use the `SCOPED_TRACE` macro: | `SCOPED_TRACE(`_message_`);` | |:-----------------------------| where _message_ can be anything streamable to `std::ostream`. This macro will cause the current file name, line number, and the given message to be added in every failure message. The effect will be undone when the control leaves the current lexical scope. For example, ``` 10: void Sub1(int n) { 11: EXPECT_EQ(1, Bar(n)); 12: EXPECT_EQ(2, Bar(n + 1)); 13: } 14: 15: TEST(FooTest, Bar) { 16: { 17: SCOPED_TRACE("A"); // This trace point will be included in 18: // every failure in this scope. 19: Sub1(1); 20: } 21: // Now it won't. 22: Sub1(9); 23: } ``` could result in messages like these: ``` path/to/foo_test.cc:11: Failure Value of: Bar(n) Expected: 1 Actual: 2 Trace: path/to/foo_test.cc:17: A path/to/foo_test.cc:12: Failure Value of: Bar(n + 1) Expected: 2 Actual: 3 ``` Without the trace, it would've been difficult to know which invocation of `Sub1()` the two failures come from respectively. (You could add an extra message to each assertion in `Sub1()` to indicate the value of `n`, but that's tedious.) Some tips on using `SCOPED_TRACE`: 1. With a suitable message, it's often enough to use `SCOPED_TRACE` at the beginning of a sub-routine, instead of at each call site. 1. When calling sub-routines inside a loop, make the loop iterator part of the message in `SCOPED_TRACE` such that you can know which iteration the failure is from. 1. Sometimes the line number of the trace point is enough for identifying the particular invocation of a sub-routine. In this case, you don't have to choose a unique message for `SCOPED_TRACE`. You can simply use `""`. 1. You can use `SCOPED_TRACE` in an inner scope when there is one in the outer scope. In this case, all active trace points will be included in the failure messages, in reverse order they are encountered. 1. The trace dump is clickable in Emacs' compilation buffer - hit return on a line number and you'll be taken to that line in the source file! _Availability:_ Linux, Windows, Mac. ## Propagating Fatal Failures ## A common pitfall when using `ASSERT_*` and `FAIL*` is not understanding that when they fail they only abort the _current function_, not the entire test. For example, the following test will segfault: ``` void Subroutine() { // Generates a fatal failure and aborts the current function. ASSERT_EQ(1, 2); // The following won't be executed. ... } TEST(FooTest, Bar) { Subroutine(); // The intended behavior is for the fatal failure // in Subroutine() to abort the entire test. // The actual behavior: the function goes on after Subroutine() returns. int* p = NULL; *p = 3; // Segfault! } ``` Since we don't use exceptions, it is technically impossible to implement the intended behavior here. To alleviate this, Google Test provides two solutions. You could use either the `(ASSERT|EXPECT)_NO_FATAL_FAILURE` assertions or the `HasFatalFailure()` function. They are described in the following two subsections. ### Asserting on Subroutines ### As shown above, if your test calls a subroutine that has an `ASSERT_*` failure in it, the test will continue after the subroutine returns. This may not be what you want. Often people want fatal failures to propagate like exceptions. For that Google Test offers the following macros: | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_NO_FATAL_FAILURE(`_statement_`);` | `EXPECT_NO_FATAL_FAILURE(`_statement_`);` | _statement_ doesn't generate any new fatal failures in the current thread. | Only failures in the thread that executes the assertion are checked to determine the result of this type of assertions. If _statement_ creates new threads, failures in these threads are ignored. Examples: ``` ASSERT_NO_FATAL_FAILURE(Foo()); int i; EXPECT_NO_FATAL_FAILURE({ i = Bar(); }); ``` _Availability:_ Linux, Windows, Mac. Assertions from multiple threads are currently not supported. ### Checking for Failures in the Current Test ### `HasFatalFailure()` in the `::testing::Test` class returns `true` if an assertion in the current test has suffered a fatal failure. This allows functions to catch fatal failures in a sub-routine and return early. ``` class Test { public: ... static bool HasFatalFailure(); }; ``` The typical usage, which basically simulates the behavior of a thrown exception, is: ``` TEST(FooTest, Bar) { Subroutine(); // Aborts if Subroutine() had a fatal failure. if (HasFatalFailure()) return; // The following won't be executed. ... } ``` If `HasFatalFailure()` is used outside of `TEST()` , `TEST_F()` , or a test fixture, you must add the `::testing::Test::` prefix, as in: ``` if (::testing::Test::HasFatalFailure()) return; ``` Similarly, `HasNonfatalFailure()` returns `true` if the current test has at least one non-fatal failure, and `HasFailure()` returns `true` if the current test has at least one failure of either kind. _Availability:_ Linux, Windows, Mac. `HasNonfatalFailure()` and `HasFailure()` are available since version 1.4.0. # Logging Additional Information # In your test code, you can call `RecordProperty("key", value)` to log additional information, where `value` can be either a string or an `int`. The _last_ value recorded for a key will be emitted to the XML output if you specify one. For example, the test ``` TEST_F(WidgetUsageTest, MinAndMaxWidgets) { RecordProperty("MaximumWidgets", ComputeMaxUsage()); RecordProperty("MinimumWidgets", ComputeMinUsage()); } ``` will output XML like this: ``` ... ... ``` _Note_: * `RecordProperty()` is a static member of the `Test` class. Therefore it needs to be prefixed with `::testing::Test::` if used outside of the `TEST` body and the test fixture class. * `key` must be a valid XML attribute name, and cannot conflict with the ones already used by Google Test (`name`, `status`, `time`, `classname`, `type_param`, and `value_param`). * Calling `RecordProperty()` outside of the lifespan of a test is allowed. If it's called outside of a test but between a test case's `SetUpTestCase()` and `TearDownTestCase()` methods, it will be attributed to the XML element for the test case. If it's called outside of all test cases (e.g. in a test environment), it will be attributed to the top-level XML element. _Availability_: Linux, Windows, Mac. # Sharing Resources Between Tests in the Same Test Case # Google Test creates a new test fixture object for each test in order to make tests independent and easier to debug. However, sometimes tests use resources that are expensive to set up, making the one-copy-per-test model prohibitively expensive. If the tests don't change the resource, there's no harm in them sharing a single resource copy. So, in addition to per-test set-up/tear-down, Google Test also supports per-test-case set-up/tear-down. To use it: 1. In your test fixture class (say `FooTest` ), define as `static` some member variables to hold the shared resources. 1. In the same test fixture class, define a `static void SetUpTestCase()` function (remember not to spell it as **`SetupTestCase`** with a small `u`!) to set up the shared resources and a `static void TearDownTestCase()` function to tear them down. That's it! Google Test automatically calls `SetUpTestCase()` before running the _first test_ in the `FooTest` test case (i.e. before creating the first `FooTest` object), and calls `TearDownTestCase()` after running the _last test_ in it (i.e. after deleting the last `FooTest` object). In between, the tests can use the shared resources. Remember that the test order is undefined, so your code can't depend on a test preceding or following another. Also, the tests must either not modify the state of any shared resource, or, if they do modify the state, they must restore the state to its original value before passing control to the next test. Here's an example of per-test-case set-up and tear-down: ``` class FooTest : public ::testing::Test { protected: // Per-test-case set-up. // Called before the first test in this test case. // Can be omitted if not needed. static void SetUpTestCase() { shared_resource_ = new ...; } // Per-test-case tear-down. // Called after the last test in this test case. // Can be omitted if not needed. static void TearDownTestCase() { delete shared_resource_; shared_resource_ = NULL; } // You can define per-test set-up and tear-down logic as usual. virtual void SetUp() { ... } virtual void TearDown() { ... } // Some expensive resource shared by all tests. static T* shared_resource_; }; T* FooTest::shared_resource_ = NULL; TEST_F(FooTest, Test1) { ... you can refer to shared_resource here ... } TEST_F(FooTest, Test2) { ... you can refer to shared_resource here ... } ``` _Availability:_ Linux, Windows, Mac. # Global Set-Up and Tear-Down # Just as you can do set-up and tear-down at the test level and the test case level, you can also do it at the test program level. Here's how. First, you subclass the `::testing::Environment` class to define a test environment, which knows how to set-up and tear-down: ``` class Environment { public: virtual ~Environment() {} // Override this to define how to set up the environment. virtual void SetUp() {} // Override this to define how to tear down the environment. virtual void TearDown() {} }; ``` Then, you register an instance of your environment class with Google Test by calling the `::testing::AddGlobalTestEnvironment()` function: ``` Environment* AddGlobalTestEnvironment(Environment* env); ``` Now, when `RUN_ALL_TESTS()` is called, it first calls the `SetUp()` method of the environment object, then runs the tests if there was no fatal failures, and finally calls `TearDown()` of the environment object. It's OK to register multiple environment objects. In this case, their `SetUp()` will be called in the order they are registered, and their `TearDown()` will be called in the reverse order. Note that Google Test takes ownership of the registered environment objects. Therefore **do not delete them** by yourself. You should call `AddGlobalTestEnvironment()` before `RUN_ALL_TESTS()` is called, probably in `main()`. If you use `gtest_main`, you need to call this before `main()` starts for it to take effect. One way to do this is to define a global variable like this: ``` ::testing::Environment* const foo_env = ::testing::AddGlobalTestEnvironment(new FooEnvironment); ``` However, we strongly recommend you to write your own `main()` and call `AddGlobalTestEnvironment()` there, as relying on initialization of global variables makes the code harder to read and may cause problems when you register multiple environments from different translation units and the environments have dependencies among them (remember that the compiler doesn't guarantee the order in which global variables from different translation units are initialized). _Availability:_ Linux, Windows, Mac. # Value Parameterized Tests # _Value-parameterized tests_ allow you to test your code with different parameters without writing multiple copies of the same test. Suppose you write a test for your code and then realize that your code is affected by a presence of a Boolean command line flag. ``` TEST(MyCodeTest, TestFoo) { // A code to test foo(). } ``` Usually people factor their test code into a function with a Boolean parameter in such situations. The function sets the flag, then executes the testing code. ``` void TestFooHelper(bool flag_value) { flag = flag_value; // A code to test foo(). } TEST(MyCodeTest, TestFoo) { TestFooHelper(false); TestFooHelper(true); } ``` But this setup has serious drawbacks. First, when a test assertion fails in your tests, it becomes unclear what value of the parameter caused it to fail. You can stream a clarifying message into your `EXPECT`/`ASSERT` statements, but it you'll have to do it with all of them. Second, you have to add one such helper function per test. What if you have ten tests? Twenty? A hundred? Value-parameterized tests will let you write your test only once and then easily instantiate and run it with an arbitrary number of parameter values. Here are some other situations when value-parameterized tests come handy: * You want to test different implementations of an OO interface. * You want to test your code over various inputs (a.k.a. data-driven testing). This feature is easy to abuse, so please exercise your good sense when doing it! ## How to Write Value-Parameterized Tests ## To write value-parameterized tests, first you should define a fixture class. It must be derived from both `::testing::Test` and `::testing::WithParamInterface` (the latter is a pure interface), where `T` is the type of your parameter values. For convenience, you can just derive the fixture class from `::testing::TestWithParam`, which itself is derived from both `::testing::Test` and `::testing::WithParamInterface`. `T` can be any copyable type. If it's a raw pointer, you are responsible for managing the lifespan of the pointed values. ``` class FooTest : public ::testing::TestWithParam { // You can implement all the usual fixture class members here. // To access the test parameter, call GetParam() from class // TestWithParam. }; // Or, when you want to add parameters to a pre-existing fixture class: class BaseTest : public ::testing::Test { ... }; class BarTest : public BaseTest, public ::testing::WithParamInterface { ... }; ``` Then, use the `TEST_P` macro to define as many test patterns using this fixture as you want. The `_P` suffix is for "parameterized" or "pattern", whichever you prefer to think. ``` TEST_P(FooTest, DoesBlah) { // Inside a test, access the test parameter with the GetParam() method // of the TestWithParam class: EXPECT_TRUE(foo.Blah(GetParam())); ... } TEST_P(FooTest, HasBlahBlah) { ... } ``` Finally, you can use `INSTANTIATE_TEST_CASE_P` to instantiate the test case with any set of parameters you want. Google Test defines a number of functions for generating test parameters. They return what we call (surprise!) _parameter generators_. Here is a summary of them, which are all in the `testing` namespace: | `Range(begin, end[, step])` | Yields values `{begin, begin+step, begin+step+step, ...}`. The values do not include `end`. `step` defaults to 1. | |:----------------------------|:------------------------------------------------------------------------------------------------------------------| | `Values(v1, v2, ..., vN)` | Yields values `{v1, v2, ..., vN}`. | | `ValuesIn(container)` and `ValuesIn(begin, end)` | Yields values from a C-style array, an STL-style container, or an iterator range `[begin, end)`. `container`, `begin`, and `end` can be expressions whose values are determined at run time. | | `Bool()` | Yields sequence `{false, true}`. | | `Combine(g1, g2, ..., gN)` | Yields all combinations (the Cartesian product for the math savvy) of the values generated by the `N` generators. This is only available if your system provides the `` header. If you are sure your system does, and Google Test disagrees, you can override it by defining `GTEST_HAS_TR1_TUPLE=1`. See comments in [include/gtest/internal/gtest-port.h](../include/gtest/internal/gtest-port.h) for more information. | For more details, see the comments at the definitions of these functions in the [source code](../include/gtest/gtest-param-test.h). The following statement will instantiate tests from the `FooTest` test case each with parameter values `"meeny"`, `"miny"`, and `"moe"`. ``` INSTANTIATE_TEST_CASE_P(InstantiationName, FooTest, ::testing::Values("meeny", "miny", "moe")); ``` To distinguish different instances of the pattern (yes, you can instantiate it more than once), the first argument to `INSTANTIATE_TEST_CASE_P` is a prefix that will be added to the actual test case name. Remember to pick unique prefixes for different instantiations. The tests from the instantiation above will have these names: * `InstantiationName/FooTest.DoesBlah/0` for `"meeny"` * `InstantiationName/FooTest.DoesBlah/1` for `"miny"` * `InstantiationName/FooTest.DoesBlah/2` for `"moe"` * `InstantiationName/FooTest.HasBlahBlah/0` for `"meeny"` * `InstantiationName/FooTest.HasBlahBlah/1` for `"miny"` * `InstantiationName/FooTest.HasBlahBlah/2` for `"moe"` You can use these names in [--gtest\_filter](#running-a-subset-of-the-tests). This statement will instantiate all tests from `FooTest` again, each with parameter values `"cat"` and `"dog"`: ``` const char* pets[] = {"cat", "dog"}; INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ::testing::ValuesIn(pets)); ``` The tests from the instantiation above will have these names: * `AnotherInstantiationName/FooTest.DoesBlah/0` for `"cat"` * `AnotherInstantiationName/FooTest.DoesBlah/1` for `"dog"` * `AnotherInstantiationName/FooTest.HasBlahBlah/0` for `"cat"` * `AnotherInstantiationName/FooTest.HasBlahBlah/1` for `"dog"` Please note that `INSTANTIATE_TEST_CASE_P` will instantiate _all_ tests in the given test case, whether their definitions come before or _after_ the `INSTANTIATE_TEST_CASE_P` statement. You can see [these](../samples/sample7_unittest.cc) [files](../samples/sample8_unittest.cc) for more examples. _Availability_: Linux, Windows (requires MSVC 8.0 or above), Mac; since version 1.2.0. ## Creating Value-Parameterized Abstract Tests ## In the above, we define and instantiate `FooTest` in the same source file. Sometimes you may want to define value-parameterized tests in a library and let other people instantiate them later. This pattern is known as abstract tests. As an example of its application, when you are designing an interface you can write a standard suite of abstract tests (perhaps using a factory function as the test parameter) that all implementations of the interface are expected to pass. When someone implements the interface, he can instantiate your suite to get all the interface-conformance tests for free. To define abstract tests, you should organize your code like this: 1. Put the definition of the parameterized test fixture class (e.g. `FooTest`) in a header file, say `foo_param_test.h`. Think of this as _declaring_ your abstract tests. 1. Put the `TEST_P` definitions in `foo_param_test.cc`, which includes `foo_param_test.h`. Think of this as _implementing_ your abstract tests. Once they are defined, you can instantiate them by including `foo_param_test.h`, invoking `INSTANTIATE_TEST_CASE_P()`, and linking with `foo_param_test.cc`. You can instantiate the same abstract test case multiple times, possibly in different source files. # Typed Tests # Suppose you have multiple implementations of the same interface and want to make sure that all of them satisfy some common requirements. Or, you may have defined several types that are supposed to conform to the same "concept" and you want to verify it. In both cases, you want the same test logic repeated for different types. While you can write one `TEST` or `TEST_F` for each type you want to test (and you may even factor the test logic into a function template that you invoke from the `TEST`), it's tedious and doesn't scale: if you want _m_ tests over _n_ types, you'll end up writing _m\*n_ `TEST`s. _Typed tests_ allow you to repeat the same test logic over a list of types. You only need to write the test logic once, although you must know the type list when writing typed tests. Here's how you do it: First, define a fixture class template. It should be parameterized by a type. Remember to derive it from `::testing::Test`: ``` template class FooTest : public ::testing::Test { public: ... typedef std::list List; static T shared_; T value_; }; ``` Next, associate a list of types with the test case, which will be repeated for each type in the list: ``` typedef ::testing::Types MyTypes; TYPED_TEST_CASE(FooTest, MyTypes); ``` The `typedef` is necessary for the `TYPED_TEST_CASE` macro to parse correctly. Otherwise the compiler will think that each comma in the type list introduces a new macro argument. Then, use `TYPED_TEST()` instead of `TEST_F()` to define a typed test for this test case. You can repeat this as many times as you want: ``` TYPED_TEST(FooTest, DoesBlah) { // Inside a test, refer to the special name TypeParam to get the type // parameter. Since we are inside a derived class template, C++ requires // us to visit the members of FooTest via 'this'. TypeParam n = this->value_; // To visit static members of the fixture, add the 'TestFixture::' // prefix. n += TestFixture::shared_; // To refer to typedefs in the fixture, add the 'typename TestFixture::' // prefix. The 'typename' is required to satisfy the compiler. typename TestFixture::List values; values.push_back(n); ... } TYPED_TEST(FooTest, HasPropertyA) { ... } ``` You can see `samples/sample6_unittest.cc` for a complete example. _Availability:_ Linux, Windows (requires MSVC 8.0 or above), Mac; since version 1.1.0. # Type-Parameterized Tests # _Type-parameterized tests_ are like typed tests, except that they don't require you to know the list of types ahead of time. Instead, you can define the test logic first and instantiate it with different type lists later. You can even instantiate it more than once in the same program. If you are designing an interface or concept, you can define a suite of type-parameterized tests to verify properties that any valid implementation of the interface/concept should have. Then, the author of each implementation can just instantiate the test suite with his type to verify that it conforms to the requirements, without having to write similar tests repeatedly. Here's an example: First, define a fixture class template, as we did with typed tests: ``` template class FooTest : public ::testing::Test { ... }; ``` Next, declare that you will define a type-parameterized test case: ``` TYPED_TEST_CASE_P(FooTest); ``` The `_P` suffix is for "parameterized" or "pattern", whichever you prefer to think. Then, use `TYPED_TEST_P()` to define a type-parameterized test. You can repeat this as many times as you want: ``` TYPED_TEST_P(FooTest, DoesBlah) { // Inside a test, refer to TypeParam to get the type parameter. TypeParam n = 0; ... } TYPED_TEST_P(FooTest, HasPropertyA) { ... } ``` Now the tricky part: you need to register all test patterns using the `REGISTER_TYPED_TEST_CASE_P` macro before you can instantiate them. The first argument of the macro is the test case name; the rest are the names of the tests in this test case: ``` REGISTER_TYPED_TEST_CASE_P(FooTest, DoesBlah, HasPropertyA); ``` Finally, you are free to instantiate the pattern with the types you want. If you put the above code in a header file, you can `#include` it in multiple C++ source files and instantiate it multiple times. ``` typedef ::testing::Types MyTypes; INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, MyTypes); ``` To distinguish different instances of the pattern, the first argument to the `INSTANTIATE_TYPED_TEST_CASE_P` macro is a prefix that will be added to the actual test case name. Remember to pick unique prefixes for different instances. In the special case where the type list contains only one type, you can write that type directly without `::testing::Types<...>`, like this: ``` INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, int); ``` You can see `samples/sample6_unittest.cc` for a complete example. _Availability:_ Linux, Windows (requires MSVC 8.0 or above), Mac; since version 1.1.0. # Testing Private Code # If you change your software's internal implementation, your tests should not break as long as the change is not observable by users. Therefore, per the _black-box testing principle_, most of the time you should test your code through its public interfaces. If you still find yourself needing to test internal implementation code, consider if there's a better design that wouldn't require you to do so. If you absolutely have to test non-public interface code though, you can. There are two cases to consider: * Static functions (_not_ the same as static member functions!) or unnamed namespaces, and * Private or protected class members ## Static Functions ## Both static functions and definitions/declarations in an unnamed namespace are only visible within the same translation unit. To test them, you can `#include` the entire `.cc` file being tested in your `*_test.cc` file. (`#include`ing `.cc` files is not a good way to reuse code - you should not do this in production code!) However, a better approach is to move the private code into the `foo::internal` namespace, where `foo` is the namespace your project normally uses, and put the private declarations in a `*-internal.h` file. Your production `.cc` files and your tests are allowed to include this internal header, but your clients are not. This way, you can fully test your internal implementation without leaking it to your clients. ## Private Class Members ## Private class members are only accessible from within the class or by friends. To access a class' private members, you can declare your test fixture as a friend to the class and define accessors in your fixture. Tests using the fixture can then access the private members of your production class via the accessors in the fixture. Note that even though your fixture is a friend to your production class, your tests are not automatically friends to it, as they are technically defined in sub-classes of the fixture. Another way to test private members is to refactor them into an implementation class, which is then declared in a `*-internal.h` file. Your clients aren't allowed to include this header but your tests can. Such is called the Pimpl (Private Implementation) idiom. Or, you can declare an individual test as a friend of your class by adding this line in the class body: ``` FRIEND_TEST(TestCaseName, TestName); ``` For example, ``` // foo.h #include "gtest/gtest_prod.h" // Defines FRIEND_TEST. class Foo { ... private: FRIEND_TEST(FooTest, BarReturnsZeroOnNull); int Bar(void* x); }; // foo_test.cc ... TEST(FooTest, BarReturnsZeroOnNull) { Foo foo; EXPECT_EQ(0, foo.Bar(NULL)); // Uses Foo's private member Bar(). } ``` Pay special attention when your class is defined in a namespace, as you should define your test fixtures and tests in the same namespace if you want them to be friends of your class. For example, if the code to be tested looks like: ``` namespace my_namespace { class Foo { friend class FooTest; FRIEND_TEST(FooTest, Bar); FRIEND_TEST(FooTest, Baz); ... definition of the class Foo ... }; } // namespace my_namespace ``` Your test code should be something like: ``` namespace my_namespace { class FooTest : public ::testing::Test { protected: ... }; TEST_F(FooTest, Bar) { ... } TEST_F(FooTest, Baz) { ... } } // namespace my_namespace ``` # Catching Failures # If you are building a testing utility on top of Google Test, you'll want to test your utility. What framework would you use to test it? Google Test, of course. The challenge is to verify that your testing utility reports failures correctly. In frameworks that report a failure by throwing an exception, you could catch the exception and assert on it. But Google Test doesn't use exceptions, so how do we test that a piece of code generates an expected failure? `"gtest/gtest-spi.h"` contains some constructs to do this. After `#include`ing this header, you can use | `EXPECT_FATAL_FAILURE(`_statement, substring_`);` | |:--------------------------------------------------| to assert that _statement_ generates a fatal (e.g. `ASSERT_*`) failure whose message contains the given _substring_, or use | `EXPECT_NONFATAL_FAILURE(`_statement, substring_`);` | |:-----------------------------------------------------| if you are expecting a non-fatal (e.g. `EXPECT_*`) failure. For technical reasons, there are some caveats: 1. You cannot stream a failure message to either macro. 1. _statement_ in `EXPECT_FATAL_FAILURE()` cannot reference local non-static variables or non-static members of `this` object. 1. _statement_ in `EXPECT_FATAL_FAILURE()` cannot return a value. _Note:_ Google Test is designed with threads in mind. Once the synchronization primitives in `"gtest/internal/gtest-port.h"` have been implemented, Google Test will become thread-safe, meaning that you can then use assertions in multiple threads concurrently. Before that, however, Google Test only supports single-threaded usage. Once thread-safe, `EXPECT_FATAL_FAILURE()` and `EXPECT_NONFATAL_FAILURE()` will capture failures in the current thread only. If _statement_ creates new threads, failures in these threads will be ignored. If you want to capture failures from all threads instead, you should use the following macros: | `EXPECT_FATAL_FAILURE_ON_ALL_THREADS(`_statement, substring_`);` | |:-----------------------------------------------------------------| | `EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(`_statement, substring_`);` | # Getting the Current Test's Name # Sometimes a function may need to know the name of the currently running test. For example, you may be using the `SetUp()` method of your test fixture to set the golden file name based on which test is running. The `::testing::TestInfo` class has this information: ``` namespace testing { class TestInfo { public: // Returns the test case name and the test name, respectively. // // Do NOT delete or free the return value - it's managed by the // TestInfo class. const char* test_case_name() const; const char* name() const; }; } // namespace testing ``` > To obtain a `TestInfo` object for the currently running test, call `current_test_info()` on the `UnitTest` singleton object: ``` // Gets information about the currently running test. // Do NOT delete the returned object - it's managed by the UnitTest class. const ::testing::TestInfo* const test_info = ::testing::UnitTest::GetInstance()->current_test_info(); printf("We are in test %s of test case %s.\n", test_info->name(), test_info->test_case_name()); ``` `current_test_info()` returns a null pointer if no test is running. In particular, you cannot find the test case name in `TestCaseSetUp()`, `TestCaseTearDown()` (where you know the test case name implicitly), or functions called from them. _Availability:_ Linux, Windows, Mac. # Extending Google Test by Handling Test Events # Google Test provides an event listener API to let you receive notifications about the progress of a test program and test failures. The events you can listen to include the start and end of the test program, a test case, or a test method, among others. You may use this API to augment or replace the standard console output, replace the XML output, or provide a completely different form of output, such as a GUI or a database. You can also use test events as checkpoints to implement a resource leak checker, for example. _Availability:_ Linux, Windows, Mac; since v1.4.0. ## Defining Event Listeners ## To define a event listener, you subclass either [testing::TestEventListener](../include/gtest/gtest.h#L991) or [testing::EmptyTestEventListener](../include/gtest/gtest.h#L1044). The former is an (abstract) interface, where each pure virtual method
can be overridden to handle a test event
(For example, when a test starts, the `OnTestStart()` method will be called.). The latter provides an empty implementation of all methods in the interface, such that a subclass only needs to override the methods it cares about. When an event is fired, its context is passed to the handler function as an argument. The following argument types are used: * [UnitTest](../include/gtest/gtest.h#L1151) reflects the state of the entire test program, * [TestCase](../include/gtest/gtest.h#L778) has information about a test case, which can contain one or more tests, * [TestInfo](../include/gtest/gtest.h#L644) contains the state of a test, and * [TestPartResult](../include/gtest/gtest-test-part.h#L47) represents the result of a test assertion. An event handler function can examine the argument it receives to find out interesting information about the event and the test program's state. Here's an example: ``` class MinimalistPrinter : public ::testing::EmptyTestEventListener { // Called before a test starts. virtual void OnTestStart(const ::testing::TestInfo& test_info) { printf("*** Test %s.%s starting.\n", test_info.test_case_name(), test_info.name()); } // Called after a failed assertion or a SUCCEED() invocation. virtual void OnTestPartResult( const ::testing::TestPartResult& test_part_result) { printf("%s in %s:%d\n%s\n", test_part_result.failed() ? "*** Failure" : "Success", test_part_result.file_name(), test_part_result.line_number(), test_part_result.summary()); } // Called after a test ends. virtual void OnTestEnd(const ::testing::TestInfo& test_info) { printf("*** Test %s.%s ending.\n", test_info.test_case_name(), test_info.name()); } }; ``` ## Using Event Listeners ## To use the event listener you have defined, add an instance of it to the Google Test event listener list (represented by class [TestEventListeners](../include/gtest/gtest.h#L1064) - note the "s" at the end of the name) in your `main()` function, before calling `RUN_ALL_TESTS()`: ``` int main(int argc, char** argv) { ::testing::InitGoogleTest(&argc, argv); // Gets hold of the event listener list. ::testing::TestEventListeners& listeners = ::testing::UnitTest::GetInstance()->listeners(); // Adds a listener to the end. Google Test takes the ownership. listeners.Append(new MinimalistPrinter); return RUN_ALL_TESTS(); } ``` There's only one problem: the default test result printer is still in effect, so its output will mingle with the output from your minimalist printer. To suppress the default printer, just release it from the event listener list and delete it. You can do so by adding one line: ``` ... delete listeners.Release(listeners.default_result_printer()); listeners.Append(new MinimalistPrinter); return RUN_ALL_TESTS(); ``` Now, sit back and enjoy a completely different output from your tests. For more details, you can read this [sample](../samples/sample9_unittest.cc). You may append more than one listener to the list. When an `On*Start()` or `OnTestPartResult()` event is fired, the listeners will receive it in the order they appear in the list (since new listeners are added to the end of the list, the default text printer and the default XML generator will receive the event first). An `On*End()` event will be received by the listeners in the _reverse_ order. This allows output by listeners added later to be framed by output from listeners added earlier. ## Generating Failures in Listeners ## You may use failure-raising macros (`EXPECT_*()`, `ASSERT_*()`, `FAIL()`, etc) when processing an event. There are some restrictions: 1. You cannot generate any failure in `OnTestPartResult()` (otherwise it will cause `OnTestPartResult()` to be called recursively). 1. A listener that handles `OnTestPartResult()` is not allowed to generate any failure. When you add listeners to the listener list, you should put listeners that handle `OnTestPartResult()` _before_ listeners that can generate failures. This ensures that failures generated by the latter are attributed to the right test by the former. We have a sample of failure-raising listener [here](../samples/sample10_unittest.cc). # Running Test Programs: Advanced Options # Google Test test programs are ordinary executables. Once built, you can run them directly and affect their behavior via the following environment variables and/or command line flags. For the flags to work, your programs must call `::testing::InitGoogleTest()` before calling `RUN_ALL_TESTS()`. To see a list of supported flags and their usage, please run your test program with the `--help` flag. You can also use `-h`, `-?`, or `/?` for short. This feature is added in version 1.3.0. If an option is specified both by an environment variable and by a flag, the latter takes precedence. Most of the options can also be set/read in code: to access the value of command line flag `--gtest_foo`, write `::testing::GTEST_FLAG(foo)`. A common pattern is to set the value of a flag before calling `::testing::InitGoogleTest()` to change the default value of the flag: ``` int main(int argc, char** argv) { // Disables elapsed time by default. ::testing::GTEST_FLAG(print_time) = false; // This allows the user to override the flag on the command line. ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } ``` ## Selecting Tests ## This section shows various options for choosing which tests to run. ### Listing Test Names ### Sometimes it is necessary to list the available tests in a program before running them so that a filter may be applied if needed. Including the flag `--gtest_list_tests` overrides all other flags and lists tests in the following format: ``` TestCase1. TestName1 TestName2 TestCase2. TestName ``` None of the tests listed are actually run if the flag is provided. There is no corresponding environment variable for this flag. _Availability:_ Linux, Windows, Mac. ### Running a Subset of the Tests ### By default, a Google Test program runs all tests the user has defined. Sometimes, you want to run only a subset of the tests (e.g. for debugging or quickly verifying a change). If you set the `GTEST_FILTER` environment variable or the `--gtest_filter` flag to a filter string, Google Test will only run the tests whose full names (in the form of `TestCaseName.TestName`) match the filter. The format of a filter is a '`:`'-separated list of wildcard patterns (called the positive patterns) optionally followed by a '`-`' and another '`:`'-separated pattern list (called the negative patterns). A test matches the filter if and only if it matches any of the positive patterns but does not match any of the negative patterns. A pattern may contain `'*'` (matches any string) or `'?'` (matches any single character). For convenience, the filter `'*-NegativePatterns'` can be also written as `'-NegativePatterns'`. For example: * `./foo_test` Has no flag, and thus runs all its tests. * `./foo_test --gtest_filter=*` Also runs everything, due to the single match-everything `*` value. * `./foo_test --gtest_filter=FooTest.*` Runs everything in test case `FooTest`. * `./foo_test --gtest_filter=*Null*:*Constructor*` Runs any test whose full name contains either `"Null"` or `"Constructor"`. * `./foo_test --gtest_filter=-*DeathTest.*` Runs all non-death tests. * `./foo_test --gtest_filter=FooTest.*-FooTest.Bar` Runs everything in test case `FooTest` except `FooTest.Bar`. _Availability:_ Linux, Windows, Mac. ### Temporarily Disabling Tests ### If you have a broken test that you cannot fix right away, you can add the `DISABLED_` prefix to its name. This will exclude it from execution. This is better than commenting out the code or using `#if 0`, as disabled tests are still compiled (and thus won't rot). If you need to disable all tests in a test case, you can either add `DISABLED_` to the front of the name of each test, or alternatively add it to the front of the test case name. For example, the following tests won't be run by Google Test, even though they will still be compiled: ``` // Tests that Foo does Abc. TEST(FooTest, DISABLED_DoesAbc) { ... } class DISABLED_BarTest : public ::testing::Test { ... }; // Tests that Bar does Xyz. TEST_F(DISABLED_BarTest, DoesXyz) { ... } ``` _Note:_ This feature should only be used for temporary pain-relief. You still have to fix the disabled tests at a later date. As a reminder, Google Test will print a banner warning you if a test program contains any disabled tests. _Tip:_ You can easily count the number of disabled tests you have using `grep`. This number can be used as a metric for improving your test quality. _Availability:_ Linux, Windows, Mac. ### Temporarily Enabling Disabled Tests ### To include [disabled tests](#temporarily-disabling-tests) in test execution, just invoke the test program with the `--gtest_also_run_disabled_tests` flag or set the `GTEST_ALSO_RUN_DISABLED_TESTS` environment variable to a value other than `0`. You can combine this with the [--gtest\_filter](#running-a-subset-of-the-tests) flag to further select which disabled tests to run. _Availability:_ Linux, Windows, Mac; since version 1.3.0. ## Repeating the Tests ## Once in a while you'll run into a test whose result is hit-or-miss. Perhaps it will fail only 1% of the time, making it rather hard to reproduce the bug under a debugger. This can be a major source of frustration. The `--gtest_repeat` flag allows you to repeat all (or selected) test methods in a program many times. Hopefully, a flaky test will eventually fail and give you a chance to debug. Here's how to use it: | `$ foo_test --gtest_repeat=1000` | Repeat foo\_test 1000 times and don't stop at failures. | |:---------------------------------|:--------------------------------------------------------| | `$ foo_test --gtest_repeat=-1` | A negative count means repeating forever. | | `$ foo_test --gtest_repeat=1000 --gtest_break_on_failure` | Repeat foo\_test 1000 times, stopping at the first failure. This is especially useful when running under a debugger: when the testfails, it will drop into the debugger and you can then inspect variables and stacks. | | `$ foo_test --gtest_repeat=1000 --gtest_filter=FooBar` | Repeat the tests whose name matches the filter 1000 times. | If your test program contains global set-up/tear-down code registered using `AddGlobalTestEnvironment()`, it will be repeated in each iteration as well, as the flakiness may be in it. You can also specify the repeat count by setting the `GTEST_REPEAT` environment variable. _Availability:_ Linux, Windows, Mac. ## Shuffling the Tests ## You can specify the `--gtest_shuffle` flag (or set the `GTEST_SHUFFLE` environment variable to `1`) to run the tests in a program in a random order. This helps to reveal bad dependencies between tests. By default, Google Test uses a random seed calculated from the current time. Therefore you'll get a different order every time. The console output includes the random seed value, such that you can reproduce an order-related test failure later. To specify the random seed explicitly, use the `--gtest_random_seed=SEED` flag (or set the `GTEST_RANDOM_SEED` environment variable), where `SEED` is an integer between 0 and 99999. The seed value 0 is special: it tells Google Test to do the default behavior of calculating the seed from the current time. If you combine this with `--gtest_repeat=N`, Google Test will pick a different random seed and re-shuffle the tests in each iteration. _Availability:_ Linux, Windows, Mac; since v1.4.0. ## Controlling Test Output ## This section teaches how to tweak the way test results are reported. ### Colored Terminal Output ### Google Test can use colors in its terminal output to make it easier to spot the separation between tests, and whether tests passed. You can set the GTEST\_COLOR environment variable or set the `--gtest_color` command line flag to `yes`, `no`, or `auto` (the default) to enable colors, disable colors, or let Google Test decide. When the value is `auto`, Google Test will use colors if and only if the output goes to a terminal and (on non-Windows platforms) the `TERM` environment variable is set to `xterm` or `xterm-color`. _Availability:_ Linux, Windows, Mac. ### Suppressing the Elapsed Time ### By default, Google Test prints the time it takes to run each test. To suppress that, run the test program with the `--gtest_print_time=0` command line flag. Setting the `GTEST_PRINT_TIME` environment variable to `0` has the same effect. _Availability:_ Linux, Windows, Mac. (In Google Test 1.3.0 and lower, the default behavior is that the elapsed time is **not** printed.) ### Generating an XML Report ### Google Test can emit a detailed XML report to a file in addition to its normal textual output. The report contains the duration of each test, and thus can help you identify slow tests. To generate the XML report, set the `GTEST_OUTPUT` environment variable or the `--gtest_output` flag to the string `"xml:_path_to_output_file_"`, which will create the file at the given location. You can also just use the string `"xml"`, in which case the output can be found in the `test_detail.xml` file in the current directory. If you specify a directory (for example, `"xml:output/directory/"` on Linux or `"xml:output\directory\"` on Windows), Google Test will create the XML file in that directory, named after the test executable (e.g. `foo_test.xml` for test program `foo_test` or `foo_test.exe`). If the file already exists (perhaps left over from a previous run), Google Test will pick a different name (e.g. `foo_test_1.xml`) to avoid overwriting it. The report uses the format described here. It is based on the `junitreport` Ant task and can be parsed by popular continuous build systems like [Hudson](https://hudson.dev.java.net/). Since that format was originally intended for Java, a little interpretation is required to make it apply to Google Test tests, as shown here: ``` ``` * The root `` element corresponds to the entire test program. * `` elements correspond to Google Test test cases. * `` elements correspond to Google Test test functions. For instance, the following program ``` TEST(MathTest, Addition) { ... } TEST(MathTest, Subtraction) { ... } TEST(LogicTest, NonContradiction) { ... } ``` could generate this report: ``` ``` Things to note: * The `tests` attribute of a `` or `` element tells how many test functions the Google Test program or test case contains, while the `failures` attribute tells how many of them failed. * The `time` attribute expresses the duration of the test, test case, or entire test program in milliseconds. * Each `` element corresponds to a single failed Google Test assertion. * Some JUnit concepts don't apply to Google Test, yet we have to conform to the DTD. Therefore you'll see some dummy elements and attributes in the report. You can safely ignore these parts. _Availability:_ Linux, Windows, Mac. ## Controlling How Failures Are Reported ## ### Turning Assertion Failures into Break-Points ### When running test programs under a debugger, it's very convenient if the debugger can catch an assertion failure and automatically drop into interactive mode. Google Test's _break-on-failure_ mode supports this behavior. To enable it, set the `GTEST_BREAK_ON_FAILURE` environment variable to a value other than `0` . Alternatively, you can use the `--gtest_break_on_failure` command line flag. _Availability:_ Linux, Windows, Mac. ### Disabling Catching Test-Thrown Exceptions ### Google Test can be used either with or without exceptions enabled. If a test throws a C++ exception or (on Windows) a structured exception (SEH), by default Google Test catches it, reports it as a test failure, and continues with the next test method. This maximizes the coverage of a test run. Also, on Windows an uncaught exception will cause a pop-up window, so catching the exceptions allows you to run the tests automatically. When debugging the test failures, however, you may instead want the exceptions to be handled by the debugger, such that you can examine the call stack when an exception is thrown. To achieve that, set the `GTEST_CATCH_EXCEPTIONS` environment variable to `0`, or use the `--gtest_catch_exceptions=0` flag when running the tests. **Availability**: Linux, Windows, Mac. ### Letting Another Testing Framework Drive ### If you work on a project that has already been using another testing framework and is not ready to completely switch to Google Test yet, you can get much of Google Test's benefit by using its assertions in your existing tests. Just change your `main()` function to look like: ``` #include "gtest/gtest.h" int main(int argc, char** argv) { ::testing::GTEST_FLAG(throw_on_failure) = true; // Important: Google Test must be initialized. ::testing::InitGoogleTest(&argc, argv); ... whatever your existing testing framework requires ... } ``` With that, you can use Google Test assertions in addition to the native assertions your testing framework provides, for example: ``` void TestFooDoesBar() { Foo foo; EXPECT_LE(foo.Bar(1), 100); // A Google Test assertion. CPPUNIT_ASSERT(foo.IsEmpty()); // A native assertion. } ``` If a Google Test assertion fails, it will print an error message and throw an exception, which will be treated as a failure by your host testing framework. If you compile your code with exceptions disabled, a failed Google Test assertion will instead exit your program with a non-zero code, which will also signal a test failure to your test runner. If you don't write `::testing::GTEST_FLAG(throw_on_failure) = true;` in your `main()`, you can alternatively enable this feature by specifying the `--gtest_throw_on_failure` flag on the command-line or setting the `GTEST_THROW_ON_FAILURE` environment variable to a non-zero value. Death tests are _not_ supported when other test framework is used to organize tests. _Availability:_ Linux, Windows, Mac; since v1.3.0. ## Distributing Test Functions to Multiple Machines ## If you have more than one machine you can use to run a test program, you might want to run the test functions in parallel and get the result faster. We call this technique _sharding_, where each machine is called a _shard_. Google Test is compatible with test sharding. To take advantage of this feature, your test runner (not part of Google Test) needs to do the following: 1. Allocate a number of machines (shards) to run the tests. 1. On each shard, set the `GTEST_TOTAL_SHARDS` environment variable to the total number of shards. It must be the same for all shards. 1. On each shard, set the `GTEST_SHARD_INDEX` environment variable to the index of the shard. Different shards must be assigned different indices, which must be in the range `[0, GTEST_TOTAL_SHARDS - 1]`. 1. Run the same test program on all shards. When Google Test sees the above two environment variables, it will select a subset of the test functions to run. Across all shards, each test function in the program will be run exactly once. 1. Wait for all shards to finish, then collect and report the results. Your project may have tests that were written without Google Test and thus don't understand this protocol. In order for your test runner to figure out which test supports sharding, it can set the environment variable `GTEST_SHARD_STATUS_FILE` to a non-existent file path. If a test program supports sharding, it will create this file to acknowledge the fact (the actual contents of the file are not important at this time; although we may stick some useful information in it in the future.); otherwise it will not create it. Here's an example to make it clear. Suppose you have a test program `foo_test` that contains the following 5 test functions: ``` TEST(A, V) TEST(A, W) TEST(B, X) TEST(B, Y) TEST(B, Z) ``` and you have 3 machines at your disposal. To run the test functions in parallel, you would set `GTEST_TOTAL_SHARDS` to 3 on all machines, and set `GTEST_SHARD_INDEX` to 0, 1, and 2 on the machines respectively. Then you would run the same `foo_test` on each machine. Google Test reserves the right to change how the work is distributed across the shards, but here's one possible scenario: * Machine #0 runs `A.V` and `B.X`. * Machine #1 runs `A.W` and `B.Y`. * Machine #2 runs `B.Z`. _Availability:_ Linux, Windows, Mac; since version 1.3.0. # Fusing Google Test Source Files # Google Test's implementation consists of ~30 files (excluding its own tests). Sometimes you may want them to be packaged up in two files (a `.h` and a `.cc`) instead, such that you can easily copy them to a new machine and start hacking there. For this we provide an experimental Python script `fuse_gtest_files.py` in the `scripts/` directory (since release 1.3.0). Assuming you have Python 2.4 or above installed on your machine, just go to that directory and run ``` python fuse_gtest_files.py OUTPUT_DIR ``` and you should see an `OUTPUT_DIR` directory being created with files `gtest/gtest.h` and `gtest/gtest-all.cc` in it. These files contain everything you need to use Google Test. Just copy them to anywhere you want and you are ready to write tests. You can use the [scripts/test/Makefile](../scripts/test/Makefile) file as an example on how to compile your tests against them. # Where to Go from Here # Congratulations! You've now learned more advanced Google Test tools and are ready to tackle more complex testing tasks. If you want to dive even deeper, you can read the [Frequently-Asked Questions](FAQ.md). ================================================ FILE: test/gtest/docs/DevGuide.md ================================================ If you are interested in understanding the internals of Google Test, building from source, or contributing ideas or modifications to the project, then this document is for you. # Introduction # First, let's give you some background of the project. ## Licensing ## All Google Test source and pre-built packages are provided under the [New BSD License](http://www.opensource.org/licenses/bsd-license.php). ## The Google Test Community ## The Google Test community exists primarily through the [discussion group](http://groups.google.com/group/googletestframework) and the GitHub repository. You are definitely encouraged to contribute to the discussion and you can also help us to keep the effectiveness of the group high by following and promoting the guidelines listed here. ### Please Be Friendly ### Showing courtesy and respect to others is a vital part of the Google culture, and we strongly encourage everyone participating in Google Test development to join us in accepting nothing less. Of course, being courteous is not the same as failing to constructively disagree with each other, but it does mean that we should be respectful of each other when enumerating the 42 technical reasons that a particular proposal may not be the best choice. There's never a reason to be antagonistic or dismissive toward anyone who is sincerely trying to contribute to a discussion. Sure, C++ testing is serious business and all that, but it's also a lot of fun. Let's keep it that way. Let's strive to be one of the friendliest communities in all of open source. As always, discuss Google Test in the official GoogleTest discussion group. You don't have to actually submit code in order to sign up. Your participation itself is a valuable contribution. # Working with the Code # If you want to get your hands dirty with the code inside Google Test, this is the section for you. ## Compiling from Source ## Once you check out the code, you can find instructions on how to compile it in the [README](../README.md) file. ## Testing ## A testing framework is of no good if itself is not thoroughly tested. Tests should be written for any new code, and changes should be verified to not break existing tests before they are submitted for review. To perform the tests, follow the instructions in [README](../README.md) and verify that there are no failures. # Contributing Code # We are excited that Google Test is now open source, and hope to get great patches from the community. Before you fire up your favorite IDE and begin hammering away at that new feature, though, please take the time to read this section and understand the process. While it seems rigorous, we want to keep a high standard of quality in the code base. ## Contributor License Agreements ## You must sign a Contributor License Agreement (CLA) before we can accept any code. The CLA protects you and us. * If you are an individual writing original source code and you're sure you own the intellectual property, then you'll need to sign an [individual CLA](http://code.google.com/legal/individual-cla-v1.0.html). * If you work for a company that wants to allow you to contribute your work to Google Test, then you'll need to sign a [corporate CLA](http://code.google.com/legal/corporate-cla-v1.0.html). Follow either of the two links above to access the appropriate CLA and instructions for how to sign and return it. ## Coding Style ## To keep the source consistent, readable, diffable and easy to merge, we use a fairly rigid coding style, as defined by the [google-styleguide](http://code.google.com/p/google-styleguide/) project. All patches will be expected to conform to the style outlined [here](http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml). ## Updating Generated Code ## Some of Google Test's source files are generated by the Pump tool (a Python script). If you need to update such files, please modify the source (`foo.h.pump`) and re-generate the C++ file using Pump. You can read the PumpManual for details. ## Submitting Patches ## Please do submit code. Here's what you need to do: 1. A submission should be a set of changes that addresses one issue in the [issue tracker](https://github.com/google/googletest/issues). Please don't mix more than one logical change per submittal, because it makes the history hard to follow. If you want to make a change that doesn't have a corresponding issue in the issue tracker, please create one. 1. Also, coordinate with team members that are listed on the issue in question. This ensures that work isn't being duplicated and communicating your plan early also generally leads to better patches. 1. Ensure that your code adheres to the [Google Test source code style](#Coding_Style.md). 1. Ensure that there are unit tests for your code. 1. Sign a Contributor License Agreement. 1. Create a Pull Request in the usual way. ## Google Test Committers ## The current members of the Google Test engineering team are the only committers at present. In the great tradition of eating one's own dogfood, we will be requiring each new Google Test engineering team member to earn the right to become a committer by following the procedures in this document, writing consistently great code, and demonstrating repeatedly that he or she truly gets the zen of Google Test. # Release Process # We follow a typical release process: 1. A release branch named `release-X.Y` is created. 1. Bugs are fixed and features are added in trunk; those individual patches are merged into the release branch until it's stable. 1. An individual point release (the `Z` in `X.Y.Z`) is made by creating a tag from the branch. 1. Repeat steps 2 and 3 throughout one release cycle (as determined by features or time). 1. Go back to step 1 to create another release branch and so on. --- This page is based on the [Making GWT Better](http://code.google.com/webtoolkit/makinggwtbetter.html) guide from the [Google Web Toolkit](http://code.google.com/webtoolkit/) project. Except as otherwise [noted](http://code.google.com/policies.html#restrictions), the content of this page is licensed under the [Creative Commons Attribution 2.5 License](http://creativecommons.org/licenses/by/2.5/). ================================================ FILE: test/gtest/docs/Documentation.md ================================================ This page lists all documentation wiki pages for Google Test **(the SVN trunk version)** -- **if you use a released version of Google Test, please read the documentation for that specific version instead.** * [Primer](Primer.md) -- start here if you are new to Google Test. * [Samples](Samples.md) -- learn from examples. * [AdvancedGuide](AdvancedGuide.md) -- learn more about Google Test. * [XcodeGuide](XcodeGuide.md) -- how to use Google Test in Xcode on Mac. * [Frequently-Asked Questions](FAQ.md) -- check here before asking a question on the mailing list. To contribute code to Google Test, read: * [DevGuide](DevGuide.md) -- read this _before_ writing your first patch. * [PumpManual](PumpManual.md) -- how we generate some of Google Test's source files. ================================================ FILE: test/gtest/docs/FAQ.md ================================================ If you cannot find the answer to your question here, and you have read [Primer](Primer.md) and [AdvancedGuide](AdvancedGuide.md), send it to googletestframework@googlegroups.com. ## Why should I use Google Test instead of my favorite C++ testing framework? ## First, let us say clearly that we don't want to get into the debate of which C++ testing framework is **the best**. There exist many fine frameworks for writing C++ tests, and we have tremendous respect for the developers and users of them. We don't think there is (or will be) a single best framework - you have to pick the right tool for the particular task you are tackling. We created Google Test because we couldn't find the right combination of features and conveniences in an existing framework to satisfy _our_ needs. The following is a list of things that _we_ like about Google Test. We don't claim them to be unique to Google Test - rather, the combination of them makes Google Test the choice for us. We hope this list can help you decide whether it is for you too. * Google Test is designed to be portable: it doesn't require exceptions or RTTI; it works around various bugs in various compilers and environments; etc. As a result, it works on Linux, Mac OS X, Windows and several embedded operating systems. * Nonfatal assertions (`EXPECT_*`) have proven to be great time savers, as they allow a test to report multiple failures in a single edit-compile-test cycle. * It's easy to write assertions that generate informative messages: you just use the stream syntax to append any additional information, e.g. `ASSERT_EQ(5, Foo(i)) << " where i = " << i;`. It doesn't require a new set of macros or special functions. * Google Test automatically detects your tests and doesn't require you to enumerate them in order to run them. * Death tests are pretty handy for ensuring that your asserts in production code are triggered by the right conditions. * `SCOPED_TRACE` helps you understand the context of an assertion failure when it comes from inside a sub-routine or loop. * You can decide which tests to run using name patterns. This saves time when you want to quickly reproduce a test failure. * Google Test can generate XML test result reports that can be parsed by popular continuous build system like Hudson. * Simple things are easy in Google Test, while hard things are possible: in addition to advanced features like [global test environments](AdvancedGuide.md#global-set-up-and-tear-down) and tests parameterized by [values](AdvancedGuide.md#value-parameterized-tests) or [types](docs/AdvancedGuide.md#typed-tests), Google Test supports various ways for the user to extend the framework -- if Google Test doesn't do something out of the box, chances are that a user can implement the feature using Google Test's public API, without changing Google Test itself. In particular, you can: * expand your testing vocabulary by defining [custom predicates](AdvancedGuide.md#predicate-assertions-for-better-error-messages), * teach Google Test how to [print your types](AdvancedGuide.md#teaching-google-test-how-to-print-your-values), * define your own testing macros or utilities and verify them using Google Test's [Service Provider Interface](AdvancedGuide.md#catching-failures), and * reflect on the test cases or change the test output format by intercepting the [test events](AdvancedGuide.md#extending-google-test-by-handling-test-events). ## I'm getting warnings when compiling Google Test. Would you fix them? ## We strive to minimize compiler warnings Google Test generates. Before releasing a new version, we test to make sure that it doesn't generate warnings when compiled using its CMake script on Windows, Linux, and Mac OS. Unfortunately, this doesn't mean you are guaranteed to see no warnings when compiling Google Test in your environment: * You may be using a different compiler as we use, or a different version of the same compiler. We cannot possibly test for all compilers. * You may be compiling on a different platform as we do. * Your project may be using different compiler flags as we do. It is not always possible to make Google Test warning-free for everyone. Or, it may not be desirable if the warning is rarely enabled and fixing the violations makes the code more complex. If you see warnings when compiling Google Test, we suggest that you use the `-isystem` flag (assuming your are using GCC) to mark Google Test headers as system headers. That'll suppress warnings from Google Test headers. ## Why should not test case names and test names contain underscore? ## Underscore (`_`) is special, as C++ reserves the following to be used by the compiler and the standard library: 1. any identifier that starts with an `_` followed by an upper-case letter, and 1. any identifier that containers two consecutive underscores (i.e. `__`) _anywhere_ in its name. User code is _prohibited_ from using such identifiers. Now let's look at what this means for `TEST` and `TEST_F`. Currently `TEST(TestCaseName, TestName)` generates a class named `TestCaseName_TestName_Test`. What happens if `TestCaseName` or `TestName` contains `_`? 1. If `TestCaseName` starts with an `_` followed by an upper-case letter (say, `_Foo`), we end up with `_Foo_TestName_Test`, which is reserved and thus invalid. 1. If `TestCaseName` ends with an `_` (say, `Foo_`), we get `Foo__TestName_Test`, which is invalid. 1. If `TestName` starts with an `_` (say, `_Bar`), we get `TestCaseName__Bar_Test`, which is invalid. 1. If `TestName` ends with an `_` (say, `Bar_`), we get `TestCaseName_Bar__Test`, which is invalid. So clearly `TestCaseName` and `TestName` cannot start or end with `_` (Actually, `TestCaseName` can start with `_` -- as long as the `_` isn't followed by an upper-case letter. But that's getting complicated. So for simplicity we just say that it cannot start with `_`.). It may seem fine for `TestCaseName` and `TestName` to contain `_` in the middle. However, consider this: ``` cpp TEST(Time, Flies_Like_An_Arrow) { ... } TEST(Time_Flies, Like_An_Arrow) { ... } ``` Now, the two `TEST`s will both generate the same class (`Time_Files_Like_An_Arrow_Test`). That's not good. So for simplicity, we just ask the users to avoid `_` in `TestCaseName` and `TestName`. The rule is more constraining than necessary, but it's simple and easy to remember. It also gives Google Test some wiggle room in case its implementation needs to change in the future. If you violate the rule, there may not be immediately consequences, but your test may (just may) break with a new compiler (or a new version of the compiler you are using) or with a new version of Google Test. Therefore it's best to follow the rule. ## Why is it not recommended to install a pre-compiled copy of Google Test (for example, into /usr/local)? ## In the early days, we said that you could install compiled Google Test libraries on `*`nix systems using `make install`. Then every user of your machine can write tests without recompiling Google Test. This seemed like a good idea, but it has a got-cha: every user needs to compile his tests using the _same_ compiler flags used to compile the installed Google Test libraries; otherwise he may run into undefined behaviors (i.e. the tests can behave strangely and may even crash for no obvious reasons). Why? Because C++ has this thing called the One-Definition Rule: if two C++ source files contain different definitions of the same class/function/variable, and you link them together, you violate the rule. The linker may or may not catch the error (in many cases it's not required by the C++ standard to catch the violation). If it doesn't, you get strange run-time behaviors that are unexpected and hard to debug. If you compile Google Test and your test code using different compiler flags, they may see different definitions of the same class/function/variable (e.g. due to the use of `#if` in Google Test). Therefore, for your sanity, we recommend to avoid installing pre-compiled Google Test libraries. Instead, each project should compile Google Test itself such that it can be sure that the same flags are used for both Google Test and the tests. ## How do I generate 64-bit binaries on Windows (using Visual Studio 2008)? ## (Answered by Trevor Robinson) Load the supplied Visual Studio solution file, either `msvc\gtest-md.sln` or `msvc\gtest.sln`. Go through the migration wizard to migrate the solution and project files to Visual Studio 2008. Select `Configuration Manager...` from the `Build` menu. Select `` from the `Active solution platform` dropdown. Select `x64` from the new platform dropdown, leave `Copy settings from` set to `Win32` and `Create new project platforms` checked, then click `OK`. You now have `Win32` and `x64` platform configurations, selectable from the `Standard` toolbar, which allow you to toggle between building 32-bit or 64-bit binaries (or both at once using Batch Build). In order to prevent build output files from overwriting one another, you'll need to change the `Intermediate Directory` settings for the newly created platform configuration across all the projects. To do this, multi-select (e.g. using shift-click) all projects (but not the solution) in the `Solution Explorer`. Right-click one of them and select `Properties`. In the left pane, select `Configuration Properties`, and from the `Configuration` dropdown, select `All Configurations`. Make sure the selected platform is `x64`. For the `Intermediate Directory` setting, change the value from `$(PlatformName)\$(ConfigurationName)` to `$(OutDir)\$(ProjectName)`. Click `OK` and then build the solution. When the build is complete, the 64-bit binaries will be in the `msvc\x64\Debug` directory. ## Can I use Google Test on MinGW? ## We haven't tested this ourselves, but Per Abrahamsen reported that he was able to compile and install Google Test successfully when using MinGW from Cygwin. You'll need to configure it with: `PATH/TO/configure CC="gcc -mno-cygwin" CXX="g++ -mno-cygwin"` You should be able to replace the `-mno-cygwin` option with direct links to the real MinGW binaries, but we haven't tried that. Caveats: * There are many warnings when compiling. * `make check` will produce some errors as not all tests for Google Test itself are compatible with MinGW. We also have reports on successful cross compilation of Google Test MinGW binaries on Linux using [these instructions](http://wiki.wxwidgets.org/Cross-Compiling_Under_Linux#Cross-compiling_under_Linux_for_MS_Windows) on the WxWidgets site. Please contact `googletestframework@googlegroups.com` if you are interested in improving the support for MinGW. ## Why does Google Test support EXPECT\_EQ(NULL, ptr) and ASSERT\_EQ(NULL, ptr) but not EXPECT\_NE(NULL, ptr) and ASSERT\_NE(NULL, ptr)? ## Due to some peculiarity of C++, it requires some non-trivial template meta programming tricks to support using `NULL` as an argument of the `EXPECT_XX()` and `ASSERT_XX()` macros. Therefore we only do it where it's most needed (otherwise we make the implementation of Google Test harder to maintain and more error-prone than necessary). The `EXPECT_EQ()` macro takes the _expected_ value as its first argument and the _actual_ value as the second. It's reasonable that someone wants to write `EXPECT_EQ(NULL, some_expression)`, and this indeed was requested several times. Therefore we implemented it. The need for `EXPECT_NE(NULL, ptr)` isn't nearly as strong. When the assertion fails, you already know that `ptr` must be `NULL`, so it doesn't add any information to print ptr in this case. That means `EXPECT_TRUE(ptr != NULL)` works just as well. If we were to support `EXPECT_NE(NULL, ptr)`, for consistency we'll have to support `EXPECT_NE(ptr, NULL)` as well, as unlike `EXPECT_EQ`, we don't have a convention on the order of the two arguments for `EXPECT_NE`. This means using the template meta programming tricks twice in the implementation, making it even harder to understand and maintain. We believe the benefit doesn't justify the cost. Finally, with the growth of Google Mock's [matcher](../../googlemock/docs/CookBook.md#using-matchers-in-google-test-assertions) library, we are encouraging people to use the unified `EXPECT_THAT(value, matcher)` syntax more often in tests. One significant advantage of the matcher approach is that matchers can be easily combined to form new matchers, while the `EXPECT_NE`, etc, macros cannot be easily combined. Therefore we want to invest more in the matchers than in the `EXPECT_XX()` macros. ## Does Google Test support running tests in parallel? ## Test runners tend to be tightly coupled with the build/test environment, and Google Test doesn't try to solve the problem of running tests in parallel. Instead, we tried to make Google Test work nicely with test runners. For example, Google Test's XML report contains the time spent on each test, and its `gtest_list_tests` and `gtest_filter` flags can be used for splitting the execution of test methods into multiple processes. These functionalities can help the test runner run the tests in parallel. ## Why don't Google Test run the tests in different threads to speed things up? ## It's difficult to write thread-safe code. Most tests are not written with thread-safety in mind, and thus may not work correctly in a multi-threaded setting. If you think about it, it's already hard to make your code work when you know what other threads are doing. It's much harder, and sometimes even impossible, to make your code work when you don't know what other threads are doing (remember that test methods can be added, deleted, or modified after your test was written). If you want to run the tests in parallel, you'd better run them in different processes. ## Why aren't Google Test assertions implemented using exceptions? ## Our original motivation was to be able to use Google Test in projects that disable exceptions. Later we realized some additional benefits of this approach: 1. Throwing in a destructor is undefined behavior in C++. Not using exceptions means Google Test's assertions are safe to use in destructors. 1. The `EXPECT_*` family of macros will continue even after a failure, allowing multiple failures in a `TEST` to be reported in a single run. This is a popular feature, as in C++ the edit-compile-test cycle is usually quite long and being able to fixing more than one thing at a time is a blessing. 1. If assertions are implemented using exceptions, a test may falsely ignore a failure if it's caught by user code: ``` cpp try { ... ASSERT_TRUE(...) ... } catch (...) { ... } ``` The above code will pass even if the `ASSERT_TRUE` throws. While it's unlikely for someone to write this in a test, it's possible to run into this pattern when you write assertions in callbacks that are called by the code under test. The downside of not using exceptions is that `ASSERT_*` (implemented using `return`) will only abort the current function, not the current `TEST`. ## Why do we use two different macros for tests with and without fixtures? ## Unfortunately, C++'s macro system doesn't allow us to use the same macro for both cases. One possibility is to provide only one macro for tests with fixtures, and require the user to define an empty fixture sometimes: ``` cpp class FooTest : public ::testing::Test {}; TEST_F(FooTest, DoesThis) { ... } ``` or ``` cpp typedef ::testing::Test FooTest; TEST_F(FooTest, DoesThat) { ... } ``` Yet, many people think this is one line too many. :-) Our goal was to make it really easy to write tests, so we tried to make simple tests trivial to create. That means using a separate macro for such tests. We think neither approach is ideal, yet either of them is reasonable. In the end, it probably doesn't matter much either way. ## Why don't we use structs as test fixtures? ## We like to use structs only when representing passive data. This distinction between structs and classes is good for documenting the intent of the code's author. Since test fixtures have logic like `SetUp()` and `TearDown()`, they are better defined as classes. ## Why are death tests implemented as assertions instead of using a test runner? ## Our goal was to make death tests as convenient for a user as C++ possibly allows. In particular: * The runner-style requires to split the information into two pieces: the definition of the death test itself, and the specification for the runner on how to run the death test and what to expect. The death test would be written in C++, while the runner spec may or may not be. A user needs to carefully keep the two in sync. `ASSERT_DEATH(statement, expected_message)` specifies all necessary information in one place, in one language, without boilerplate code. It is very declarative. * `ASSERT_DEATH` has a similar syntax and error-reporting semantics as other Google Test assertions, and thus is easy to learn. * `ASSERT_DEATH` can be mixed with other assertions and other logic at your will. You are not limited to one death test per test method. For example, you can write something like: ``` cpp if (FooCondition()) { ASSERT_DEATH(Bar(), "blah"); } else { ASSERT_EQ(5, Bar()); } ``` If you prefer one death test per test method, you can write your tests in that style too, but we don't want to impose that on the users. The fewer artificial limitations the better. * `ASSERT_DEATH` can reference local variables in the current function, and you can decide how many death tests you want based on run-time information. For example, ``` cpp const int count = GetCount(); // Only known at run time. for (int i = 1; i <= count; i++) { ASSERT_DEATH({ double* buffer = new double[i]; ... initializes buffer ... Foo(buffer, i) }, "blah blah"); } ``` The runner-based approach tends to be more static and less flexible, or requires more user effort to get this kind of flexibility. Another interesting thing about `ASSERT_DEATH` is that it calls `fork()` to create a child process to run the death test. This is lightening fast, as `fork()` uses copy-on-write pages and incurs almost zero overhead, and the child process starts from the user-supplied statement directly, skipping all global and local initialization and any code leading to the given statement. If you launch the child process from scratch, it can take seconds just to load everything and start running if the test links to many libraries dynamically. ## My death test modifies some state, but the change seems lost after the death test finishes. Why? ## Death tests (`EXPECT_DEATH`, etc) are executed in a sub-process s.t. the expected crash won't kill the test program (i.e. the parent process). As a result, any in-memory side effects they incur are observable in their respective sub-processes, but not in the parent process. You can think of them as running in a parallel universe, more or less. ## The compiler complains about "undefined references" to some static const member variables, but I did define them in the class body. What's wrong? ## If your class has a static data member: ``` cpp // foo.h class Foo { ... static const int kBar = 100; }; ``` You also need to define it _outside_ of the class body in `foo.cc`: ``` cpp const int Foo::kBar; // No initializer here. ``` Otherwise your code is **invalid C++**, and may break in unexpected ways. In particular, using it in Google Test comparison assertions (`EXPECT_EQ`, etc) will generate an "undefined reference" linker error. ## I have an interface that has several implementations. Can I write a set of tests once and repeat them over all the implementations? ## Google Test doesn't yet have good support for this kind of tests, or data-driven tests in general. We hope to be able to make improvements in this area soon. ## Can I derive a test fixture from another? ## Yes. Each test fixture has a corresponding and same named test case. This means only one test case can use a particular fixture. Sometimes, however, multiple test cases may want to use the same or slightly different fixtures. For example, you may want to make sure that all of a GUI library's test cases don't leak important system resources like fonts and brushes. In Google Test, you share a fixture among test cases by putting the shared logic in a base test fixture, then deriving from that base a separate fixture for each test case that wants to use this common logic. You then use `TEST_F()` to write tests using each derived fixture. Typically, your code looks like this: ``` cpp // Defines a base test fixture. class BaseTest : public ::testing::Test { protected: ... }; // Derives a fixture FooTest from BaseTest. class FooTest : public BaseTest { protected: virtual void SetUp() { BaseTest::SetUp(); // Sets up the base fixture first. ... additional set-up work ... } virtual void TearDown() { ... clean-up work for FooTest ... BaseTest::TearDown(); // Remember to tear down the base fixture // after cleaning up FooTest! } ... functions and variables for FooTest ... }; // Tests that use the fixture FooTest. TEST_F(FooTest, Bar) { ... } TEST_F(FooTest, Baz) { ... } ... additional fixtures derived from BaseTest ... ``` If necessary, you can continue to derive test fixtures from a derived fixture. Google Test has no limit on how deep the hierarchy can be. For a complete example using derived test fixtures, see [sample5](../samples/sample5_unittest.cc). ## My compiler complains "void value not ignored as it ought to be." What does this mean? ## You're probably using an `ASSERT_*()` in a function that doesn't return `void`. `ASSERT_*()` can only be used in `void` functions. ## My death test hangs (or seg-faults). How do I fix it? ## In Google Test, death tests are run in a child process and the way they work is delicate. To write death tests you really need to understand how they work. Please make sure you have read this. In particular, death tests don't like having multiple threads in the parent process. So the first thing you can try is to eliminate creating threads outside of `EXPECT_DEATH()`. Sometimes this is impossible as some library you must use may be creating threads before `main()` is even reached. In this case, you can try to minimize the chance of conflicts by either moving as many activities as possible inside `EXPECT_DEATH()` (in the extreme case, you want to move everything inside), or leaving as few things as possible in it. Also, you can try to set the death test style to `"threadsafe"`, which is safer but slower, and see if it helps. If you go with thread-safe death tests, remember that they rerun the test program from the beginning in the child process. Therefore make sure your program can run side-by-side with itself and is deterministic. In the end, this boils down to good concurrent programming. You have to make sure that there is no race conditions or dead locks in your program. No silver bullet - sorry! ## Should I use the constructor/destructor of the test fixture or the set-up/tear-down function? ## The first thing to remember is that Google Test does not reuse the same test fixture object across multiple tests. For each `TEST_F`, Google Test will create a fresh test fixture object, _immediately_ call `SetUp()`, run the test body, call `TearDown()`, and then _immediately_ delete the test fixture object. When you need to write per-test set-up and tear-down logic, you have the choice between using the test fixture constructor/destructor or `SetUp()/TearDown()`. The former is usually preferred, as it has the following benefits: * By initializing a member variable in the constructor, we have the option to make it `const`, which helps prevent accidental changes to its value and makes the tests more obviously correct. * In case we need to subclass the test fixture class, the subclass' constructor is guaranteed to call the base class' constructor first, and the subclass' destructor is guaranteed to call the base class' destructor afterward. With `SetUp()/TearDown()`, a subclass may make the mistake of forgetting to call the base class' `SetUp()/TearDown()` or call them at the wrong moment. You may still want to use `SetUp()/TearDown()` in the following rare cases: * If the tear-down operation could throw an exception, you must use `TearDown()` as opposed to the destructor, as throwing in a destructor leads to undefined behavior and usually will kill your program right away. Note that many standard libraries (like STL) may throw when exceptions are enabled in the compiler. Therefore you should prefer `TearDown()` if you want to write portable tests that work with or without exceptions. * The assertion macros throw an exception when flag `--gtest_throw_on_failure` is specified. Therefore, you shouldn't use Google Test assertions in a destructor if you plan to run your tests with this flag. * In a constructor or destructor, you cannot make a virtual function call on this object. (You can call a method declared as virtual, but it will be statically bound.) Therefore, if you need to call a method that will be overriden in a derived class, you have to use `SetUp()/TearDown()`. ## The compiler complains "no matching function to call" when I use ASSERT\_PREDn. How do I fix it? ## If the predicate function you use in `ASSERT_PRED*` or `EXPECT_PRED*` is overloaded or a template, the compiler will have trouble figuring out which overloaded version it should use. `ASSERT_PRED_FORMAT*` and `EXPECT_PRED_FORMAT*` don't have this problem. If you see this error, you might want to switch to `(ASSERT|EXPECT)_PRED_FORMAT*`, which will also give you a better failure message. If, however, that is not an option, you can resolve the problem by explicitly telling the compiler which version to pick. For example, suppose you have ``` cpp bool IsPositive(int n) { return n > 0; } bool IsPositive(double x) { return x > 0; } ``` you will get a compiler error if you write ``` cpp EXPECT_PRED1(IsPositive, 5); ``` However, this will work: ``` cpp EXPECT_PRED1(*static_cast*(IsPositive), 5); ``` (The stuff inside the angled brackets for the `static_cast` operator is the type of the function pointer for the `int`-version of `IsPositive()`.) As another example, when you have a template function ``` cpp template bool IsNegative(T x) { return x < 0; } ``` you can use it in a predicate assertion like this: ``` cpp ASSERT_PRED1(IsNegative**, -5); ``` Things are more interesting if your template has more than one parameters. The following won't compile: ``` cpp ASSERT_PRED2(*GreaterThan*, 5, 0); ``` as the C++ pre-processor thinks you are giving `ASSERT_PRED2` 4 arguments, which is one more than expected. The workaround is to wrap the predicate function in parentheses: ``` cpp ASSERT_PRED2(*(GreaterThan)*, 5, 0); ``` ## My compiler complains about "ignoring return value" when I call RUN\_ALL\_TESTS(). Why? ## Some people had been ignoring the return value of `RUN_ALL_TESTS()`. That is, instead of ``` cpp return RUN_ALL_TESTS(); ``` they write ``` cpp RUN_ALL_TESTS(); ``` This is wrong and dangerous. A test runner needs to see the return value of `RUN_ALL_TESTS()` in order to determine if a test has passed. If your `main()` function ignores it, your test will be considered successful even if it has a Google Test assertion failure. Very bad. To help the users avoid this dangerous bug, the implementation of `RUN_ALL_TESTS()` causes gcc to raise this warning, when the return value is ignored. If you see this warning, the fix is simple: just make sure its value is used as the return value of `main()`. ## My compiler complains that a constructor (or destructor) cannot return a value. What's going on? ## Due to a peculiarity of C++, in order to support the syntax for streaming messages to an `ASSERT_*`, e.g. ``` cpp ASSERT_EQ(1, Foo()) << "blah blah" << foo; ``` we had to give up using `ASSERT*` and `FAIL*` (but not `EXPECT*` and `ADD_FAILURE*`) in constructors and destructors. The workaround is to move the content of your constructor/destructor to a private void member function, or switch to `EXPECT_*()` if that works. This section in the user's guide explains it. ## My set-up function is not called. Why? ## C++ is case-sensitive. It should be spelled as `SetUp()`. Did you spell it as `Setup()`? Similarly, sometimes people spell `SetUpTestCase()` as `SetupTestCase()` and wonder why it's never called. ## How do I jump to the line of a failure in Emacs directly? ## Google Test's failure message format is understood by Emacs and many other IDEs, like acme and XCode. If a Google Test message is in a compilation buffer in Emacs, then it's clickable. You can now hit `enter` on a message to jump to the corresponding source code, or use `C-x `` to jump to the next failure. ## I have several test cases which share the same test fixture logic, do I have to define a new test fixture class for each of them? This seems pretty tedious. ## You don't have to. Instead of ``` cpp class FooTest : public BaseTest {}; TEST_F(FooTest, Abc) { ... } TEST_F(FooTest, Def) { ... } class BarTest : public BaseTest {}; TEST_F(BarTest, Abc) { ... } TEST_F(BarTest, Def) { ... } ``` you can simply `typedef` the test fixtures: ``` cpp typedef BaseTest FooTest; TEST_F(FooTest, Abc) { ... } TEST_F(FooTest, Def) { ... } typedef BaseTest BarTest; TEST_F(BarTest, Abc) { ... } TEST_F(BarTest, Def) { ... } ``` ## The Google Test output is buried in a whole bunch of log messages. What do I do? ## The Google Test output is meant to be a concise and human-friendly report. If your test generates textual output itself, it will mix with the Google Test output, making it hard to read. However, there is an easy solution to this problem. Since most log messages go to stderr, we decided to let Google Test output go to stdout. This way, you can easily separate the two using redirection. For example: ``` ./my_test > googletest_output.txt ``` ## Why should I prefer test fixtures over global variables? ## There are several good reasons: 1. It's likely your test needs to change the states of its global variables. This makes it difficult to keep side effects from escaping one test and contaminating others, making debugging difficult. By using fixtures, each test has a fresh set of variables that's different (but with the same names). Thus, tests are kept independent of each other. 1. Global variables pollute the global namespace. 1. Test fixtures can be reused via subclassing, which cannot be done easily with global variables. This is useful if many test cases have something in common. ## How do I test private class members without writing FRIEND\_TEST()s? ## You should try to write testable code, which means classes should be easily tested from their public interface. One way to achieve this is the Pimpl idiom: you move all private members of a class into a helper class, and make all members of the helper class public. You have several other options that don't require using `FRIEND_TEST`: * Write the tests as members of the fixture class: ``` cpp class Foo { friend class FooTest; ... }; class FooTest : public ::testing::Test { protected: ... void Test1() {...} // This accesses private members of class Foo. void Test2() {...} // So does this one. }; TEST_F(FooTest, Test1) { Test1(); } TEST_F(FooTest, Test2) { Test2(); } ``` * In the fixture class, write accessors for the tested class' private members, then use the accessors in your tests: ``` cpp class Foo { friend class FooTest; ... }; class FooTest : public ::testing::Test { protected: ... T1 get_private_member1(Foo* obj) { return obj->private_member1_; } }; TEST_F(FooTest, Test1) { ... get_private_member1(x) ... } ``` * If the methods are declared **protected**, you can change their access level in a test-only subclass: ``` cpp class YourClass { ... protected: // protected access for testability. int DoSomethingReturningInt(); ... }; // in the your_class_test.cc file: class TestableYourClass : public YourClass { ... public: using YourClass::DoSomethingReturningInt; // changes access rights ... }; TEST_F(YourClassTest, DoSomethingTest) { TestableYourClass obj; assertEquals(expected_value, obj.DoSomethingReturningInt()); } ``` ## How do I test private class static members without writing FRIEND\_TEST()s? ## We find private static methods clutter the header file. They are implementation details and ideally should be kept out of a .h. So often I make them free functions instead. Instead of: ``` cpp // foo.h class Foo { ... private: static bool Func(int n); }; // foo.cc bool Foo::Func(int n) { ... } // foo_test.cc EXPECT_TRUE(Foo::Func(12345)); ``` You probably should better write: ``` cpp // foo.h class Foo { ... }; // foo.cc namespace internal { bool Func(int n) { ... } } // foo_test.cc namespace internal { bool Func(int n); } EXPECT_TRUE(internal::Func(12345)); ``` ## I would like to run a test several times with different parameters. Do I need to write several similar copies of it? ## No. You can use a feature called [value-parameterized tests](AdvancedGuide.md#Value_Parameterized_Tests) which lets you repeat your tests with different parameters, without defining it more than once. ## How do I test a file that defines main()? ## To test a `foo.cc` file, you need to compile and link it into your unit test program. However, when the file contains a definition for the `main()` function, it will clash with the `main()` of your unit test, and will result in a build error. The right solution is to split it into three files: 1. `foo.h` which contains the declarations, 1. `foo.cc` which contains the definitions except `main()`, and 1. `foo_main.cc` which contains nothing but the definition of `main()`. Then `foo.cc` can be easily tested. If you are adding tests to an existing file and don't want an intrusive change like this, there is a hack: just include the entire `foo.cc` file in your unit test. For example: ``` cpp // File foo_unittest.cc // The headers section ... // Renames main() in foo.cc to make room for the unit test main() #define main FooMain #include "a/b/foo.cc" // The tests start here. ... ``` However, please remember this is a hack and should only be used as the last resort. ## What can the statement argument in ASSERT\_DEATH() be? ## `ASSERT_DEATH(_statement_, _regex_)` (or any death assertion macro) can be used wherever `_statement_` is valid. So basically `_statement_` can be any C++ statement that makes sense in the current context. In particular, it can reference global and/or local variables, and can be: * a simple function call (often the case), * a complex expression, or * a compound statement. Some examples are shown here: ``` cpp // A death test can be a simple function call. TEST(MyDeathTest, FunctionCall) { ASSERT_DEATH(Xyz(5), "Xyz failed"); } // Or a complex expression that references variables and functions. TEST(MyDeathTest, ComplexExpression) { const bool c = Condition(); ASSERT_DEATH((c ? Func1(0) : object2.Method("test")), "(Func1|Method) failed"); } // Death assertions can be used any where in a function. In // particular, they can be inside a loop. TEST(MyDeathTest, InsideLoop) { // Verifies that Foo(0), Foo(1), ..., and Foo(4) all die. for (int i = 0; i < 5; i++) { EXPECT_DEATH_M(Foo(i), "Foo has \\d+ errors", ::testing::Message() << "where i is " << i); } } // A death assertion can contain a compound statement. TEST(MyDeathTest, CompoundStatement) { // Verifies that at lease one of Bar(0), Bar(1), ..., and // Bar(4) dies. ASSERT_DEATH({ for (int i = 0; i < 5; i++) { Bar(i); } }, "Bar has \\d+ errors");} ``` `googletest_unittest.cc` contains more examples if you are interested. ## What syntax does the regular expression in ASSERT\_DEATH use? ## On POSIX systems, Google Test uses the POSIX Extended regular expression syntax (http://en.wikipedia.org/wiki/Regular_expression#POSIX_Extended_Regular_Expressions). On Windows, it uses a limited variant of regular expression syntax. For more details, see the [regular expression syntax](AdvancedGuide.md#Regular_Expression_Syntax). ## I have a fixture class Foo, but TEST\_F(Foo, Bar) gives me error "no matching function for call to Foo::Foo()". Why? ## Google Test needs to be able to create objects of your test fixture class, so it must have a default constructor. Normally the compiler will define one for you. However, there are cases where you have to define your own: * If you explicitly declare a non-default constructor for class `Foo`, then you need to define a default constructor, even if it would be empty. * If `Foo` has a const non-static data member, then you have to define the default constructor _and_ initialize the const member in the initializer list of the constructor. (Early versions of `gcc` doesn't force you to initialize the const member. It's a bug that has been fixed in `gcc 4`.) ## Why does ASSERT\_DEATH complain about previous threads that were already joined? ## With the Linux pthread library, there is no turning back once you cross the line from single thread to multiple threads. The first time you create a thread, a manager thread is created in addition, so you get 3, not 2, threads. Later when the thread you create joins the main thread, the thread count decrements by 1, but the manager thread will never be killed, so you still have 2 threads, which means you cannot safely run a death test. The new NPTL thread library doesn't suffer from this problem, as it doesn't create a manager thread. However, if you don't control which machine your test runs on, you shouldn't depend on this. ## Why does Google Test require the entire test case, instead of individual tests, to be named FOODeathTest when it uses ASSERT\_DEATH? ## Google Test does not interleave tests from different test cases. That is, it runs all tests in one test case first, and then runs all tests in the next test case, and so on. Google Test does this because it needs to set up a test case before the first test in it is run, and tear it down afterwords. Splitting up the test case would require multiple set-up and tear-down processes, which is inefficient and makes the semantics unclean. If we were to determine the order of tests based on test name instead of test case name, then we would have a problem with the following situation: ``` cpp TEST_F(FooTest, AbcDeathTest) { ... } TEST_F(FooTest, Uvw) { ... } TEST_F(BarTest, DefDeathTest) { ... } TEST_F(BarTest, Xyz) { ... } ``` Since `FooTest.AbcDeathTest` needs to run before `BarTest.Xyz`, and we don't interleave tests from different test cases, we need to run all tests in the `FooTest` case before running any test in the `BarTest` case. This contradicts with the requirement to run `BarTest.DefDeathTest` before `FooTest.Uvw`. ## But I don't like calling my entire test case FOODeathTest when it contains both death tests and non-death tests. What do I do? ## You don't have to, but if you like, you may split up the test case into `FooTest` and `FooDeathTest`, where the names make it clear that they are related: ``` cpp class FooTest : public ::testing::Test { ... }; TEST_F(FooTest, Abc) { ... } TEST_F(FooTest, Def) { ... } typedef FooTest FooDeathTest; TEST_F(FooDeathTest, Uvw) { ... EXPECT_DEATH(...) ... } TEST_F(FooDeathTest, Xyz) { ... ASSERT_DEATH(...) ... } ``` ## The compiler complains about "no match for 'operator<<'" when I use an assertion. What gives? ## If you use a user-defined type `FooType` in an assertion, you must make sure there is an `std::ostream& operator<<(std::ostream&, const FooType&)` function defined such that we can print a value of `FooType`. In addition, if `FooType` is declared in a name space, the `<<` operator also needs to be defined in the _same_ name space. ## How do I suppress the memory leak messages on Windows? ## Since the statically initialized Google Test singleton requires allocations on the heap, the Visual C++ memory leak detector will report memory leaks at the end of the program run. The easiest way to avoid this is to use the `_CrtMemCheckpoint` and `_CrtMemDumpAllObjectsSince` calls to not report any statically initialized heap objects. See MSDN for more details and additional heap check/debug routines. ## I am building my project with Google Test in Visual Studio and all I'm getting is a bunch of linker errors (or warnings). Help! ## You may get a number of the following linker error or warnings if you attempt to link your test project with the Google Test library when your project and the are not built using the same compiler settings. * LNK2005: symbol already defined in object * LNK4217: locally defined symbol 'symbol' imported in function 'function' * LNK4049: locally defined symbol 'symbol' imported The Google Test project (gtest.vcproj) has the Runtime Library option set to /MT (use multi-threaded static libraries, /MTd for debug). If your project uses something else, for example /MD (use multi-threaded DLLs, /MDd for debug), you need to change the setting in the Google Test project to match your project's. To update this setting open the project properties in the Visual Studio IDE then select the branch Configuration Properties | C/C++ | Code Generation and change the option "Runtime Library". You may also try using gtest-md.vcproj instead of gtest.vcproj. ## I put my tests in a library and Google Test doesn't run them. What's happening? ## Have you read a [warning](Primer.md#important-note-for-visual-c-users) on the Google Test Primer page? ## I want to use Google Test with Visual Studio but don't know where to start. ## Many people are in your position and one of the posted his solution to our mailing list. ## I am seeing compile errors mentioning std::type\_traits when I try to use Google Test on Solaris. ## Google Test uses parts of the standard C++ library that SunStudio does not support. Our users reported success using alternative implementations. Try running the build after runing this commad: `export CC=cc CXX=CC CXXFLAGS='-library=stlport4'` ## How can my code detect if it is running in a test? ## If you write code that sniffs whether it's running in a test and does different things accordingly, you are leaking test-only logic into production code and there is no easy way to ensure that the test-only code paths aren't run by mistake in production. Such cleverness also leads to [Heisenbugs](http://en.wikipedia.org/wiki/Unusual_software_bug#Heisenbug). Therefore we strongly advise against the practice, and Google Test doesn't provide a way to do it. In general, the recommended way to cause the code to behave differently under test is [dependency injection](http://jamesshore.com/Blog/Dependency-Injection-Demystified.html). You can inject different functionality from the test and from the production code. Since your production code doesn't link in the for-test logic at all, there is no danger in accidentally running it. However, if you _really_, _really_, _really_ have no choice, and if you follow the rule of ending your test program names with `_test`, you can use the _horrible_ hack of sniffing your executable name (`argv[0]` in `main()`) to know whether the code is under test. ## Google Test defines a macro that clashes with one defined by another library. How do I deal with that? ## In C++, macros don't obey namespaces. Therefore two libraries that both define a macro of the same name will clash if you `#include` both definitions. In case a Google Test macro clashes with another library, you can force Google Test to rename its macro to avoid the conflict. Specifically, if both Google Test and some other code define macro `FOO`, you can add ``` -DGTEST_DONT_DEFINE_FOO=1 ``` to the compiler flags to tell Google Test to change the macro's name from `FOO` to `GTEST_FOO`. For example, with `-DGTEST_DONT_DEFINE_TEST=1`, you'll need to write ``` cpp GTEST_TEST(SomeTest, DoesThis) { ... } ``` instead of ``` cpp TEST(SomeTest, DoesThis) { ... } ``` in order to define a test. Currently, the following `TEST`, `FAIL`, `SUCCEED`, and the basic comparison assertion macros can have alternative names. You can see the full list of covered macros [here](http://www.google.com/codesearch?q=if+!GTEST_DONT_DEFINE_\w%2B+package:http://googletest\.googlecode\.com+file:/include/gtest/gtest.h). More information can be found in the "Avoiding Macro Name Clashes" section of the README file. ## Is it OK if I have two separate `TEST(Foo, Bar)` test methods defined in different namespaces? ## Yes. The rule is **all test methods in the same test case must use the same fixture class**. This means that the following is **allowed** because both tests use the same fixture class (`::testing::Test`). ``` cpp namespace foo { TEST(CoolTest, DoSomething) { SUCCEED(); } } // namespace foo namespace bar { TEST(CoolTest, DoSomething) { SUCCEED(); } } // namespace foo ``` However, the following code is **not allowed** and will produce a runtime error from Google Test because the test methods are using different test fixture classes with the same test case name. ``` cpp namespace foo { class CoolTest : public ::testing::Test {}; // Fixture foo::CoolTest TEST_F(CoolTest, DoSomething) { SUCCEED(); } } // namespace foo namespace bar { class CoolTest : public ::testing::Test {}; // Fixture: bar::CoolTest TEST_F(CoolTest, DoSomething) { SUCCEED(); } } // namespace foo ``` ## How do I build Google Testing Framework with Xcode 4? ## If you try to build Google Test's Xcode project with Xcode 4.0 or later, you may encounter an error message that looks like "Missing SDK in target gtest\_framework: /Developer/SDKs/MacOSX10.4u.sdk". That means that Xcode does not support the SDK the project is targeting. See the Xcode section in the [README](../README.md) file on how to resolve this. ## My question is not covered in your FAQ! ## If you cannot find the answer to your question in this FAQ, there are some other resources you can use: 1. read other [wiki pages](../docs), 1. search the mailing list [archive](https://groups.google.com/forum/#!forum/googletestframework), 1. ask it on [googletestframework@googlegroups.com](mailto:googletestframework@googlegroups.com) and someone will answer it (to prevent spam, we require you to join the [discussion group](http://groups.google.com/group/googletestframework) before you can post.). Please note that creating an issue in the [issue tracker](https://github.com/google/googletest/issues) is _not_ a good way to get your answer, as it is monitored infrequently by a very small number of people. When asking a question, it's helpful to provide as much of the following information as possible (people cannot help you if there's not enough information in your question): * the version (or the commit hash if you check out from Git directly) of Google Test you use (Google Test is under active development, so it's possible that your problem has been solved in a later version), * your operating system, * the name and version of your compiler, * the complete command line flags you give to your compiler, * the complete compiler error messages (if the question is about compilation), * the _actual_ code (ideally, a minimal but complete program) that has the problem you encounter. ================================================ FILE: test/gtest/docs/Primer.md ================================================ # Introduction: Why Google C++ Testing Framework? # _Google C++ Testing Framework_ helps you write better C++ tests. No matter whether you work on Linux, Windows, or a Mac, if you write C++ code, Google Test can help you. So what makes a good test, and how does Google C++ Testing Framework fit in? We believe: 1. Tests should be _independent_ and _repeatable_. It's a pain to debug a test that succeeds or fails as a result of other tests. Google C++ Testing Framework isolates the tests by running each of them on a different object. When a test fails, Google C++ Testing Framework allows you to run it in isolation for quick debugging. 1. Tests should be well _organized_ and reflect the structure of the tested code. Google C++ Testing Framework groups related tests into test cases that can share data and subroutines. This common pattern is easy to recognize and makes tests easy to maintain. Such consistency is especially helpful when people switch projects and start to work on a new code base. 1. Tests should be _portable_ and _reusable_. The open-source community has a lot of code that is platform-neutral, its tests should also be platform-neutral. Google C++ Testing Framework works on different OSes, with different compilers (gcc, MSVC, and others), with or without exceptions, so Google C++ Testing Framework tests can easily work with a variety of configurations. (Note that the current release only contains build scripts for Linux - we are actively working on scripts for other platforms.) 1. When tests fail, they should provide as much _information_ about the problem as possible. Google C++ Testing Framework doesn't stop at the first test failure. Instead, it only stops the current test and continues with the next. You can also set up tests that report non-fatal failures after which the current test continues. Thus, you can detect and fix multiple bugs in a single run-edit-compile cycle. 1. The testing framework should liberate test writers from housekeeping chores and let them focus on the test _content_. Google C++ Testing Framework automatically keeps track of all tests defined, and doesn't require the user to enumerate them in order to run them. 1. Tests should be _fast_. With Google C++ Testing Framework, you can reuse shared resources across tests and pay for the set-up/tear-down only once, without making tests depend on each other. Since Google C++ Testing Framework is based on the popular xUnit architecture, you'll feel right at home if you've used JUnit or PyUnit before. If not, it will take you about 10 minutes to learn the basics and get started. So let's go! _Note:_ We sometimes refer to Google C++ Testing Framework informally as _Google Test_. # Setting up a New Test Project # To write a test program using Google Test, you need to compile Google Test into a library and link your test with it. We provide build files for some popular build systems: `msvc/` for Visual Studio, `xcode/` for Mac Xcode, `make/` for GNU make, `codegear/` for Borland C++ Builder, and the autotools script (deprecated) and `CMakeLists.txt` for CMake (recommended) in the Google Test root directory. If your build system is not on this list, you can take a look at `make/Makefile` to learn how Google Test should be compiled (basically you want to compile `src/gtest-all.cc` with `GTEST_ROOT` and `GTEST_ROOT/include` in the header search path, where `GTEST_ROOT` is the Google Test root directory). Once you are able to compile the Google Test library, you should create a project or build target for your test program. Make sure you have `GTEST_ROOT/include` in the header search path so that the compiler can find `"gtest/gtest.h"` when compiling your test. Set up your test project to link with the Google Test library (for example, in Visual Studio, this is done by adding a dependency on `gtest.vcproj`). If you still have questions, take a look at how Google Test's own tests are built and use them as examples. # Basic Concepts # When using Google Test, you start by writing _assertions_, which are statements that check whether a condition is true. An assertion's result can be _success_, _nonfatal failure_, or _fatal failure_. If a fatal failure occurs, it aborts the current function; otherwise the program continues normally. _Tests_ use assertions to verify the tested code's behavior. If a test crashes or has a failed assertion, then it _fails_; otherwise it _succeeds_. A _test case_ contains one or many tests. You should group your tests into test cases that reflect the structure of the tested code. When multiple tests in a test case need to share common objects and subroutines, you can put them into a _test fixture_ class. A _test program_ can contain multiple test cases. We'll now explain how to write a test program, starting at the individual assertion level and building up to tests and test cases. # Assertions # Google Test assertions are macros that resemble function calls. You test a class or function by making assertions about its behavior. When an assertion fails, Google Test prints the assertion's source file and line number location, along with a failure message. You may also supply a custom failure message which will be appended to Google Test's message. The assertions come in pairs that test the same thing but have different effects on the current function. `ASSERT_*` versions generate fatal failures when they fail, and **abort the current function**. `EXPECT_*` versions generate nonfatal failures, which don't abort the current function. Usually `EXPECT_*` are preferred, as they allow more than one failures to be reported in a test. However, you should use `ASSERT_*` if it doesn't make sense to continue when the assertion in question fails. Since a failed `ASSERT_*` returns from the current function immediately, possibly skipping clean-up code that comes after it, it may cause a space leak. Depending on the nature of the leak, it may or may not be worth fixing - so keep this in mind if you get a heap checker error in addition to assertion errors. To provide a custom failure message, simply stream it into the macro using the `<<` operator, or a sequence of such operators. An example: ``` ASSERT_EQ(x.size(), y.size()) << "Vectors x and y are of unequal length"; for (int i = 0; i < x.size(); ++i) { EXPECT_EQ(x[i], y[i]) << "Vectors x and y differ at index " << i; } ``` Anything that can be streamed to an `ostream` can be streamed to an assertion macro--in particular, C strings and `string` objects. If a wide string (`wchar_t*`, `TCHAR*` in `UNICODE` mode on Windows, or `std::wstring`) is streamed to an assertion, it will be translated to UTF-8 when printed. ## Basic Assertions ## These assertions do basic true/false condition testing. | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_TRUE(`_condition_`)`; | `EXPECT_TRUE(`_condition_`)`; | _condition_ is true | | `ASSERT_FALSE(`_condition_`)`; | `EXPECT_FALSE(`_condition_`)`; | _condition_ is false | Remember, when they fail, `ASSERT_*` yields a fatal failure and returns from the current function, while `EXPECT_*` yields a nonfatal failure, allowing the function to continue running. In either case, an assertion failure means its containing test fails. _Availability_: Linux, Windows, Mac. ## Binary Comparison ## This section describes assertions that compare two values. | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| |`ASSERT_EQ(`_val1_`, `_val2_`);`|`EXPECT_EQ(`_val1_`, `_val2_`);`| _val1_ `==` _val2_ | |`ASSERT_NE(`_val1_`, `_val2_`);`|`EXPECT_NE(`_val1_`, `_val2_`);`| _val1_ `!=` _val2_ | |`ASSERT_LT(`_val1_`, `_val2_`);`|`EXPECT_LT(`_val1_`, `_val2_`);`| _val1_ `<` _val2_ | |`ASSERT_LE(`_val1_`, `_val2_`);`|`EXPECT_LE(`_val1_`, `_val2_`);`| _val1_ `<=` _val2_ | |`ASSERT_GT(`_val1_`, `_val2_`);`|`EXPECT_GT(`_val1_`, `_val2_`);`| _val1_ `>` _val2_ | |`ASSERT_GE(`_val1_`, `_val2_`);`|`EXPECT_GE(`_val1_`, `_val2_`);`| _val1_ `>=` _val2_ | In the event of a failure, Google Test prints both _val1_ and _val2_. Value arguments must be comparable by the assertion's comparison operator or you'll get a compiler error. We used to require the arguments to support the `<<` operator for streaming to an `ostream`, but it's no longer necessary since v1.6.0 (if `<<` is supported, it will be called to print the arguments when the assertion fails; otherwise Google Test will attempt to print them in the best way it can. For more details and how to customize the printing of the arguments, see this Google Mock [recipe](../../googlemock/docs/CookBook.md#teaching-google-mock-how-to-print-your-values).). These assertions can work with a user-defined type, but only if you define the corresponding comparison operator (e.g. `==`, `<`, etc). If the corresponding operator is defined, prefer using the `ASSERT_*()` macros because they will print out not only the result of the comparison, but the two operands as well. Arguments are always evaluated exactly once. Therefore, it's OK for the arguments to have side effects. However, as with any ordinary C/C++ function, the arguments' evaluation order is undefined (i.e. the compiler is free to choose any order) and your code should not depend on any particular argument evaluation order. `ASSERT_EQ()` does pointer equality on pointers. If used on two C strings, it tests if they are in the same memory location, not if they have the same value. Therefore, if you want to compare C strings (e.g. `const char*`) by value, use `ASSERT_STREQ()` , which will be described later on. In particular, to assert that a C string is `NULL`, use `ASSERT_STREQ(NULL, c_string)` . However, to compare two `string` objects, you should use `ASSERT_EQ`. Macros in this section work with both narrow and wide string objects (`string` and `wstring`). _Availability_: Linux, Windows, Mac. _Historical note_: Before February 2016 `*_EQ` had a convention of calling it as `ASSERT_EQ(expected, actual)`, so lots of existing code uses this order. Now `*_EQ` treats both parameters in the same way. ## String Comparison ## The assertions in this group compare two **C strings**. If you want to compare two `string` objects, use `EXPECT_EQ`, `EXPECT_NE`, and etc instead. | **Fatal assertion** | **Nonfatal assertion** | **Verifies** | |:--------------------|:-----------------------|:-------------| | `ASSERT_STREQ(`_str1_`, `_str2_`);` | `EXPECT_STREQ(`_str1_`, `_str_2`);` | the two C strings have the same content | | `ASSERT_STRNE(`_str1_`, `_str2_`);` | `EXPECT_STRNE(`_str1_`, `_str2_`);` | the two C strings have different content | | `ASSERT_STRCASEEQ(`_str1_`, `_str2_`);`| `EXPECT_STRCASEEQ(`_str1_`, `_str2_`);` | the two C strings have the same content, ignoring case | | `ASSERT_STRCASENE(`_str1_`, `_str2_`);`| `EXPECT_STRCASENE(`_str1_`, `_str2_`);` | the two C strings have different content, ignoring case | Note that "CASE" in an assertion name means that case is ignored. `*STREQ*` and `*STRNE*` also accept wide C strings (`wchar_t*`). If a comparison of two wide strings fails, their values will be printed as UTF-8 narrow strings. A `NULL` pointer and an empty string are considered _different_. _Availability_: Linux, Windows, Mac. See also: For more string comparison tricks (substring, prefix, suffix, and regular expression matching, for example), see the [Advanced Google Test Guide](AdvancedGuide.md). # Simple Tests # To create a test: 1. Use the `TEST()` macro to define and name a test function, These are ordinary C++ functions that don't return a value. 1. In this function, along with any valid C++ statements you want to include, use the various Google Test assertions to check values. 1. The test's result is determined by the assertions; if any assertion in the test fails (either fatally or non-fatally), or if the test crashes, the entire test fails. Otherwise, it succeeds. ``` TEST(test_case_name, test_name) { ... test body ... } ``` `TEST()` arguments go from general to specific. The _first_ argument is the name of the test case, and the _second_ argument is the test's name within the test case. Both names must be valid C++ identifiers, and they should not contain underscore (`_`). A test's _full name_ consists of its containing test case and its individual name. Tests from different test cases can have the same individual name. For example, let's take a simple integer function: ``` int Factorial(int n); // Returns the factorial of n ``` A test case for this function might look like: ``` // Tests factorial of 0. TEST(FactorialTest, HandlesZeroInput) { EXPECT_EQ(1, Factorial(0)); } // Tests factorial of positive numbers. TEST(FactorialTest, HandlesPositiveInput) { EXPECT_EQ(1, Factorial(1)); EXPECT_EQ(2, Factorial(2)); EXPECT_EQ(6, Factorial(3)); EXPECT_EQ(40320, Factorial(8)); } ``` Google Test groups the test results by test cases, so logically-related tests should be in the same test case; in other words, the first argument to their `TEST()` should be the same. In the above example, we have two tests, `HandlesZeroInput` and `HandlesPositiveInput`, that belong to the same test case `FactorialTest`. _Availability_: Linux, Windows, Mac. # Test Fixtures: Using the Same Data Configuration for Multiple Tests # If you find yourself writing two or more tests that operate on similar data, you can use a _test fixture_. It allows you to reuse the same configuration of objects for several different tests. To create a fixture, just: 1. Derive a class from `::testing::Test` . Start its body with `protected:` or `public:` as we'll want to access fixture members from sub-classes. 1. Inside the class, declare any objects you plan to use. 1. If necessary, write a default constructor or `SetUp()` function to prepare the objects for each test. A common mistake is to spell `SetUp()` as `Setup()` with a small `u` - don't let that happen to you. 1. If necessary, write a destructor or `TearDown()` function to release any resources you allocated in `SetUp()` . To learn when you should use the constructor/destructor and when you should use `SetUp()/TearDown()`, read this [FAQ entry](FAQ.md#should-i-use-the-constructordestructor-of-the-test-fixture-or-the-set-uptear-down-function). 1. If needed, define subroutines for your tests to share. When using a fixture, use `TEST_F()` instead of `TEST()` as it allows you to access objects and subroutines in the test fixture: ``` TEST_F(test_case_name, test_name) { ... test body ... } ``` Like `TEST()`, the first argument is the test case name, but for `TEST_F()` this must be the name of the test fixture class. You've probably guessed: `_F` is for fixture. Unfortunately, the C++ macro system does not allow us to create a single macro that can handle both types of tests. Using the wrong macro causes a compiler error. Also, you must first define a test fixture class before using it in a `TEST_F()`, or you'll get the compiler error "`virtual outside class declaration`". For each test defined with `TEST_F()`, Google Test will: 1. Create a _fresh_ test fixture at runtime 1. Immediately initialize it via `SetUp()` , 1. Run the test 1. Clean up by calling `TearDown()` 1. Delete the test fixture. Note that different tests in the same test case have different test fixture objects, and Google Test always deletes a test fixture before it creates the next one. Google Test does not reuse the same test fixture for multiple tests. Any changes one test makes to the fixture do not affect other tests. As an example, let's write tests for a FIFO queue class named `Queue`, which has the following interface: ``` template // E is the element type. class Queue { public: Queue(); void Enqueue(const E& element); E* Dequeue(); // Returns NULL if the queue is empty. size_t size() const; ... }; ``` First, define a fixture class. By convention, you should give it the name `FooTest` where `Foo` is the class being tested. ``` class QueueTest : public ::testing::Test { protected: virtual void SetUp() { q1_.Enqueue(1); q2_.Enqueue(2); q2_.Enqueue(3); } // virtual void TearDown() {} Queue q0_; Queue q1_; Queue q2_; }; ``` In this case, `TearDown()` is not needed since we don't have to clean up after each test, other than what's already done by the destructor. Now we'll write tests using `TEST_F()` and this fixture. ``` TEST_F(QueueTest, IsEmptyInitially) { EXPECT_EQ(0, q0_.size()); } TEST_F(QueueTest, DequeueWorks) { int* n = q0_.Dequeue(); EXPECT_EQ(NULL, n); n = q1_.Dequeue(); ASSERT_TRUE(n != NULL); EXPECT_EQ(1, *n); EXPECT_EQ(0, q1_.size()); delete n; n = q2_.Dequeue(); ASSERT_TRUE(n != NULL); EXPECT_EQ(2, *n); EXPECT_EQ(1, q2_.size()); delete n; } ``` The above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is to use `EXPECT_*` when you want the test to continue to reveal more errors after the assertion failure, and use `ASSERT_*` when continuing after failure doesn't make sense. For example, the second assertion in the `Dequeue` test is `ASSERT_TRUE(n != NULL)`, as we need to dereference the pointer `n` later, which would lead to a segfault when `n` is `NULL`. When these tests run, the following happens: 1. Google Test constructs a `QueueTest` object (let's call it `t1` ). 1. `t1.SetUp()` initializes `t1` . 1. The first test ( `IsEmptyInitially` ) runs on `t1` . 1. `t1.TearDown()` cleans up after the test finishes. 1. `t1` is destructed. 1. The above steps are repeated on another `QueueTest` object, this time running the `DequeueWorks` test. _Availability_: Linux, Windows, Mac. _Note_: Google Test automatically saves all _Google Test_ flags when a test object is constructed, and restores them when it is destructed. # Invoking the Tests # `TEST()` and `TEST_F()` implicitly register their tests with Google Test. So, unlike with many other C++ testing frameworks, you don't have to re-list all your defined tests in order to run them. After defining your tests, you can run them with `RUN_ALL_TESTS()` , which returns `0` if all the tests are successful, or `1` otherwise. Note that `RUN_ALL_TESTS()` runs _all tests_ in your link unit -- they can be from different test cases, or even different source files. When invoked, the `RUN_ALL_TESTS()` macro: 1. Saves the state of all Google Test flags. 1. Creates a test fixture object for the first test. 1. Initializes it via `SetUp()`. 1. Runs the test on the fixture object. 1. Cleans up the fixture via `TearDown()`. 1. Deletes the fixture. 1. Restores the state of all Google Test flags. 1. Repeats the above steps for the next test, until all tests have run. In addition, if the text fixture's constructor generates a fatal failure in step 2, there is no point for step 3 - 5 and they are thus skipped. Similarly, if step 3 generates a fatal failure, step 4 will be skipped. _Important_: You must not ignore the return value of `RUN_ALL_TESTS()`, or `gcc` will give you a compiler error. The rationale for this design is that the automated testing service determines whether a test has passed based on its exit code, not on its stdout/stderr output; thus your `main()` function must return the value of `RUN_ALL_TESTS()`. Also, you should call `RUN_ALL_TESTS()` only **once**. Calling it more than once conflicts with some advanced Google Test features (e.g. thread-safe death tests) and thus is not supported. _Availability_: Linux, Windows, Mac. # Writing the main() Function # You can start from this boilerplate: ``` #include "this/package/foo.h" #include "gtest/gtest.h" namespace { // The fixture for testing class Foo. class FooTest : public ::testing::Test { protected: // You can remove any or all of the following functions if its body // is empty. FooTest() { // You can do set-up work for each test here. } virtual ~FooTest() { // You can do clean-up work that doesn't throw exceptions here. } // If the constructor and destructor are not enough for setting up // and cleaning up each test, you can define the following methods: virtual void SetUp() { // Code here will be called immediately after the constructor (right // before each test). } virtual void TearDown() { // Code here will be called immediately after each test (right // before the destructor). } // Objects declared here can be used by all tests in the test case for Foo. }; // Tests that the Foo::Bar() method does Abc. TEST_F(FooTest, MethodBarDoesAbc) { const string input_filepath = "this/package/testdata/myinputfile.dat"; const string output_filepath = "this/package/testdata/myoutputfile.dat"; Foo f; EXPECT_EQ(0, f.Bar(input_filepath, output_filepath)); } // Tests that Foo does Xyz. TEST_F(FooTest, DoesXyz) { // Exercises the Xyz feature of Foo. } } // namespace int main(int argc, char **argv) { ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } ``` The `::testing::InitGoogleTest()` function parses the command line for Google Test flags, and removes all recognized flags. This allows the user to control a test program's behavior via various flags, which we'll cover in [AdvancedGuide](AdvancedGuide.md). You must call this function before calling `RUN_ALL_TESTS()`, or the flags won't be properly initialized. On Windows, `InitGoogleTest()` also works with wide strings, so it can be used in programs compiled in `UNICODE` mode as well. But maybe you think that writing all those main() functions is too much work? We agree with you completely and that's why Google Test provides a basic implementation of main(). If it fits your needs, then just link your test with gtest\_main library and you are good to go. ## Important note for Visual C++ users ## If you put your tests into a library and your `main()` function is in a different library or in your .exe file, those tests will not run. The reason is a [bug](https://connect.microsoft.com/feedback/viewfeedback.aspx?FeedbackID=244410&siteid=210) in Visual C++. When you define your tests, Google Test creates certain static objects to register them. These objects are not referenced from elsewhere but their constructors are still supposed to run. When Visual C++ linker sees that nothing in the library is referenced from other places it throws the library out. You have to reference your library with tests from your main program to keep the linker from discarding it. Here is how to do it. Somewhere in your library code declare a function: ``` __declspec(dllexport) int PullInMyLibrary() { return 0; } ``` If you put your tests in a static library (not DLL) then `__declspec(dllexport)` is not required. Now, in your main program, write a code that invokes that function: ``` int PullInMyLibrary(); static int dummy = PullInMyLibrary(); ``` This will keep your tests referenced and will make them register themselves at startup. In addition, if you define your tests in a static library, add `/OPT:NOREF` to your main program linker options. If you use MSVC++ IDE, go to your .exe project properties/Configuration Properties/Linker/Optimization and set References setting to `Keep Unreferenced Data (/OPT:NOREF)`. This will keep Visual C++ linker from discarding individual symbols generated by your tests from the final executable. There is one more pitfall, though. If you use Google Test as a static library (that's how it is defined in gtest.vcproj) your tests must also reside in a static library. If you have to have them in a DLL, you _must_ change Google Test to build into a DLL as well. Otherwise your tests will not run correctly or will not run at all. The general conclusion here is: make your life easier - do not write your tests in libraries! # Where to Go from Here # Congratulations! You've learned the Google Test basics. You can start writing and running Google Test tests, read some [samples](Samples.md), or continue with [AdvancedGuide](AdvancedGuide.md), which describes many more useful Google Test features. # Known Limitations # Google Test is designed to be thread-safe. The implementation is thread-safe on systems where the `pthreads` library is available. It is currently _unsafe_ to use Google Test assertions from two threads concurrently on other systems (e.g. Windows). In most tests this is not an issue as usually the assertions are done in the main thread. If you want to help, you can volunteer to implement the necessary synchronization primitives in `gtest-port.h` for your platform. ================================================ FILE: test/gtest/docs/PumpManual.md ================================================ Pump is Useful for Meta Programming. # The Problem # Template and macro libraries often need to define many classes, functions, or macros that vary only (or almost only) in the number of arguments they take. It's a lot of repetitive, mechanical, and error-prone work. Variadic templates and variadic macros can alleviate the problem. However, while both are being considered by the C++ committee, neither is in the standard yet or widely supported by compilers. Thus they are often not a good choice, especially when your code needs to be portable. And their capabilities are still limited. As a result, authors of such libraries often have to write scripts to generate their implementation. However, our experience is that it's tedious to write such scripts, which tend to reflect the structure of the generated code poorly and are often hard to read and edit. For example, a small change needed in the generated code may require some non-intuitive, non-trivial changes in the script. This is especially painful when experimenting with the code. # Our Solution # Pump (for Pump is Useful for Meta Programming, Pretty Useful for Meta Programming, or Practical Utility for Meta Programming, whichever you prefer) is a simple meta-programming tool for C++. The idea is that a programmer writes a `foo.pump` file which contains C++ code plus meta code that manipulates the C++ code. The meta code can handle iterations over a range, nested iterations, local meta variable definitions, simple arithmetic, and conditional expressions. You can view it as a small Domain-Specific Language. The meta language is designed to be non-intrusive (s.t. it won't confuse Emacs' C++ mode, for example) and concise, making Pump code intuitive and easy to maintain. ## Highlights ## * The implementation is in a single Python script and thus ultra portable: no build or installation is needed and it works cross platforms. * Pump tries to be smart with respect to [Google's style guide](http://code.google.com/p/google-styleguide/): it breaks long lines (easy to have when they are generated) at acceptable places to fit within 80 columns and indent the continuation lines correctly. * The format is human-readable and more concise than XML. * The format works relatively well with Emacs' C++ mode. ## Examples ## The following Pump code (where meta keywords start with `$`, `[[` and `]]` are meta brackets, and `$$` starts a meta comment that ends with the line): ``` $var n = 3 $$ Defines a meta variable n. $range i 0..n $$ Declares the range of meta iterator i (inclusive). $for i [[ $$ Meta loop. // Foo$i does blah for $i-ary predicates. $range j 1..i template class Foo$i { $if i == 0 [[ blah a; ]] $elif i <= 2 [[ blah b; ]] $else [[ blah c; ]] }; ]] ``` will be translated by the Pump compiler to: ``` // Foo0 does blah for 0-ary predicates. template class Foo0 { blah a; }; // Foo1 does blah for 1-ary predicates. template class Foo1 { blah b; }; // Foo2 does blah for 2-ary predicates. template class Foo2 { blah b; }; // Foo3 does blah for 3-ary predicates. template class Foo3 { blah c; }; ``` In another example, ``` $range i 1..n Func($for i + [[a$i]]); $$ The text between i and [[ is the separator between iterations. ``` will generate one of the following lines (without the comments), depending on the value of `n`: ``` Func(); // If n is 0. Func(a1); // If n is 1. Func(a1 + a2); // If n is 2. Func(a1 + a2 + a3); // If n is 3. // And so on... ``` ## Constructs ## We support the following meta programming constructs: | `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. | |:----------------|:-----------------------------------------------------------------------------------------------| | `$range id exp..exp` | Sets the range of an iteration variable, which can be reused in multiple loops later. | | `$for id sep [[ code ]]` | Iteration. The range of `id` must have been defined earlier. `$id` is valid in `code`. | | `$($)` | Generates a single `$` character. | | `$id` | Value of the named constant or iteration variable. | | `$(exp)` | Value of the expression. | | `$if exp [[ code ]] else_branch` | Conditional. | | `[[ code ]]` | Meta lexical block. | | `cpp_code` | Raw C++ code. | | `$$ comment` | Meta comment. | **Note:** To give the user some freedom in formatting the Pump source code, Pump ignores a new-line character if it's right after `$for foo` or next to `[[` or `]]`. Without this rule you'll often be forced to write very long lines to get the desired output. Therefore sometimes you may need to insert an extra new-line in such places for a new-line to show up in your output. ## Grammar ## ``` code ::= atomic_code* atomic_code ::= $var id = exp | $var id = [[ code ]] | $range id exp..exp | $for id sep [[ code ]] | $($) | $id | $(exp) | $if exp [[ code ]] else_branch | [[ code ]] | cpp_code sep ::= cpp_code | empty_string else_branch ::= $else [[ code ]] | $elif exp [[ code ]] else_branch | empty_string exp ::= simple_expression_in_Python_syntax ``` ## Code ## You can find the source code of Pump in [scripts/pump.py](../scripts/pump.py). It is still very unpolished and lacks automated tests, although it has been successfully used many times. If you find a chance to use it in your project, please let us know what you think! We also welcome help on improving Pump. ## Real Examples ## You can find real-world applications of Pump in [Google Test](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgoogletest\.googlecode\.com) and [Google Mock](http://www.google.com/codesearch?q=file%3A\.pump%24+package%3Ahttp%3A%2F%2Fgooglemock\.googlecode\.com). The source file `foo.h.pump` generates `foo.h`. ## Tips ## * If a meta variable is followed by a letter or digit, you can separate them using `[[]]`, which inserts an empty string. For example `Foo$j[[]]Helper` generate `Foo1Helper` when `j` is 1. * To avoid extra-long Pump source lines, you can break a line anywhere you want by inserting `[[]]` followed by a new line. Since any new-line character next to `[[` or `]]` is ignored, the generated code won't contain this new line. ================================================ FILE: test/gtest/docs/README.md ================================================ # Content Moved We are working on updates to the GoogleTest documentation, which has moved to the top-level [docs](../../docs) directory. ================================================ FILE: test/gtest/docs/Samples.md ================================================ If you're like us, you'd like to look at some Google Test sample code. The [samples folder](../samples) has a number of well-commented samples showing how to use a variety of Google Test features. * [Sample #1](../samples/sample1_unittest.cc) shows the basic steps of using Google Test to test C++ functions. * [Sample #2](../samples/sample2_unittest.cc) shows a more complex unit test for a class with multiple member functions. * [Sample #3](../samples/sample3_unittest.cc) uses a test fixture. * [Sample #4](../samples/sample4_unittest.cc) is another basic example of using Google Test. * [Sample #5](../samples/sample5_unittest.cc) teaches how to reuse a test fixture in multiple test cases by deriving sub-fixtures from it. * [Sample #6](../samples/sample6_unittest.cc) demonstrates type-parameterized tests. * [Sample #7](../samples/sample7_unittest.cc) teaches the basics of value-parameterized tests. * [Sample #8](../samples/sample8_unittest.cc) shows using `Combine()` in value-parameterized tests. * [Sample #9](../samples/sample9_unittest.cc) shows use of the listener API to modify Google Test's console output and the use of its reflection API to inspect test results. * [Sample #10](../samples/sample10_unittest.cc) shows use of the listener API to implement a primitive memory leak checker. ================================================ FILE: test/gtest/docs/XcodeGuide.md ================================================ This guide will explain how to use the Google Testing Framework in your Xcode projects on Mac OS X. This tutorial begins by quickly explaining what to do for experienced users. After the quick start, the guide goes provides additional explanation about each step. # Quick Start # Here is the quick guide for using Google Test in your Xcode project. 1. Download the source from the [website](http://code.google.com/p/googletest) using this command: `svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only` 1. Open up the `gtest.xcodeproj` in the `googletest-read-only/xcode/` directory and build the gtest.framework. 1. Create a new "Shell Tool" target in your Xcode project called something like "UnitTests" 1. Add the gtest.framework to your project and add it to the "Link Binary with Libraries" build phase of "UnitTests" 1. Add your unit test source code to the "Compile Sources" build phase of "UnitTests" 1. Edit the "UnitTests" executable and add an environment variable named "DYLD\_FRAMEWORK\_PATH" with a value equal to the path to the framework containing the gtest.framework relative to the compiled executable. 1. Build and Go The following sections further explain each of the steps listed above in depth, describing in more detail how to complete it including some variations. # Get the Source # Currently, the gtest.framework discussed here isn't available in a tagged release of Google Test, it is only available in the trunk. As explained at the Google Test [site](http://code.google.com/p/googletest/source/checkout">svn), you can get the code from anonymous SVN with this command: ``` svn checkout http://googletest.googlecode.com/svn/trunk/ googletest-read-only ``` Alternatively, if you are working with Subversion in your own code base, you can add Google Test as an external dependency to your own Subversion repository. By following this approach, everyone that checks out your svn repository will also receive a copy of Google Test (a specific version, if you wish) without having to check it out explicitly. This makes the set up of your project simpler and reduces the copied code in the repository. To use `svn:externals`, decide where you would like to have the external source reside. You might choose to put the external source inside the trunk, because you want it to be part of the branch when you make a release. However, keeping it outside the trunk in a version-tagged directory called something like `third-party/googletest/1.0.1`, is another option. Once the location is established, use `svn propedit svn:externals _directory_` to set the svn:externals property on a directory in your repository. This directory won't contain the code, but be its versioned parent directory. The command `svn propedit` will bring up your Subversion editor, making editing the long, (potentially multi-line) property simpler. This same method can be used to check out a tagged branch, by using the appropriate URL (e.g. `http://googletest.googlecode.com/svn/tags/release-1.0.1`). Additionally, the svn:externals property allows the specification of a particular revision of the trunk with the `-r_##_` option (e.g. `externals/src/googletest -r60 http://googletest.googlecode.com/svn/trunk`). Here is an example of using the svn:externals properties on a trunk (read via `svn propget`) of a project. This value checks out a copy of Google Test into the `trunk/externals/src/googletest/` directory. ``` [Computer:svn] user$ svn propget svn:externals trunk externals/src/googletest http://googletest.googlecode.com/svn/trunk ``` # Add the Framework to Your Project # The next step is to build and add the gtest.framework to your own project. This guide describes two common ways below. * **Option 1** --- The simplest way to add Google Test to your own project, is to open gtest.xcodeproj (found in the xcode/ directory of the Google Test trunk) and build the framework manually. Then, add the built framework into your project using the "Add->Existing Framework..." from the context menu or "Project->Add..." from the main menu. The gtest.framework is relocatable and contains the headers and object code that you'll need to make tests. This method requires rebuilding every time you upgrade Google Test in your project. * **Option 2** --- If you are going to be living off the trunk of Google Test, incorporating its latest features into your unit tests (or are a Google Test developer yourself). You'll want to rebuild the framework every time the source updates. to do this, you'll need to add the gtest.xcodeproj file, not the framework itself, to your own Xcode project. Then, from the build products that are revealed by the project's disclosure triangle, you can find the gtest.framework, which can be added to your targets (discussed below). # Make a Test Target # To start writing tests, make a new "Shell Tool" target. This target template is available under BSD, Cocoa, or Carbon. Add your unit test source code to the "Compile Sources" build phase of the target. Next, you'll want to add gtest.framework in two different ways, depending upon which option you chose above. * **Option 1** --- During compilation, Xcode will need to know that you are linking against the gtest.framework. Add the gtest.framework to the "Link Binary with Libraries" build phase of your test target. This will include the Google Test headers in your header search path, and will tell the linker where to find the library. * **Option 2** --- If your working out of the trunk, you'll also want to add gtest.framework to your "Link Binary with Libraries" build phase of your test target. In addition, you'll want to add the gtest.framework as a dependency to your unit test target. This way, Xcode will make sure that gtest.framework is up to date, every time your build your target. Finally, if you don't share build directories with Google Test, you'll have to copy the gtest.framework into your own build products directory using a "Run Script" build phase. # Set Up the Executable Run Environment # Since the unit test executable is a shell tool, it doesn't have a bundle with a `Contents/Frameworks` directory, in which to place gtest.framework. Instead, the dynamic linker must be told at runtime to search for the framework in another location. This can be accomplished by setting the "DYLD\_FRAMEWORK\_PATH" environment variable in the "Edit Active Executable ..." Arguments tab, under "Variables to be set in the environment:". The path for this value is the path (relative or absolute) of the directory containing the gtest.framework. If you haven't set up the DYLD\_FRAMEWORK\_PATH, correctly, you might get a message like this: ``` [Session started at 2008-08-15 06:23:57 -0600.] dyld: Library not loaded: @loader_path/../Frameworks/gtest.framework/Versions/A/gtest Referenced from: /Users/username/Documents/Sandbox/gtestSample/build/Debug/WidgetFrameworkTest Reason: image not found ``` To correct this problem, got to the directory containing the executable named in "Referenced from:" value in the error message above. Then, with the terminal in this location, find the relative path to the directory containing the gtest.framework. That is the value you'll need to set as the DYLD\_FRAMEWORK\_PATH. # Build and Go # Now, when you click "Build and Go", the test will be executed. Dumping out something like this: ``` [Session started at 2008-08-06 06:36:13 -0600.] [==========] Running 2 tests from 1 test case. [----------] Global test environment set-up. [----------] 2 tests from WidgetInitializerTest [ RUN ] WidgetInitializerTest.TestConstructor [ OK ] WidgetInitializerTest.TestConstructor [ RUN ] WidgetInitializerTest.TestConversion [ OK ] WidgetInitializerTest.TestConversion [----------] Global test environment tear-down [==========] 2 tests from 1 test case ran. [ PASSED ] 2 tests. The Debugger has exited with status 0. ``` # Summary # Unit testing is a valuable way to ensure your data model stays valid even during rapid development or refactoring. The Google Testing Framework is a great unit testing framework for C and C++ which integrates well with an Xcode development environment. ================================================ FILE: test/gtest/include/gtest/gtest-death-test.h ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines the public API for death tests. It is // #included by gtest.h so a user doesn't need to include this // directly. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ #include "gtest/internal/gtest-death-test-internal.h" namespace testing { // This flag controls the style of death tests. Valid values are "threadsafe", // meaning that the death test child process will re-execute the test binary // from the start, running only a single death test, or "fast", // meaning that the child process will execute the test logic immediately // after forking. GTEST_DECLARE_string_(death_test_style); #if GTEST_HAS_DEATH_TEST namespace internal { // Returns a Boolean value indicating whether the caller is currently // executing in the context of the death test child process. Tools such as // Valgrind heap checkers may need this to modify their behavior in death // tests. IMPORTANT: This is an internal utility. Using it may break the // implementation of death tests. User code MUST NOT use it. GTEST_API_ bool InDeathTestChild(); } // namespace internal // The following macros are useful for writing death tests. // Here's what happens when an ASSERT_DEATH* or EXPECT_DEATH* is // executed: // // 1. It generates a warning if there is more than one active // thread. This is because it's safe to fork() or clone() only // when there is a single thread. // // 2. The parent process clone()s a sub-process and runs the death // test in it; the sub-process exits with code 0 at the end of the // death test, if it hasn't exited already. // // 3. The parent process waits for the sub-process to terminate. // // 4. The parent process checks the exit code and error message of // the sub-process. // // Examples: // // ASSERT_DEATH(server.SendMessage(56, "Hello"), "Invalid port number"); // for (int i = 0; i < 5; i++) { // EXPECT_DEATH(server.ProcessRequest(i), // "Invalid request .* in ProcessRequest()") // << "Failed to die on request " << i; // } // // ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting"); // // bool KilledBySIGHUP(int exit_code) { // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP; // } // // ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!"); // // The final parameter to each of these macros is a matcher applied to any data // the sub-process wrote to stderr. For compatibility with existing tests, a // bare string is interpreted as a regular expression matcher. // // On the regular expressions used in death tests: // // GOOGLETEST_CM0005 DO NOT DELETE // On POSIX-compliant systems (*nix), we use the library, // which uses the POSIX extended regex syntax. // // On other platforms (e.g. Windows or Mac), we only support a simple regex // syntax implemented as part of Google Test. This limited // implementation should be enough most of the time when writing // death tests; though it lacks many features you can find in PCRE // or POSIX extended regex syntax. For example, we don't support // union ("x|y"), grouping ("(xy)"), brackets ("[xy]"), and // repetition count ("x{5,7}"), among others. // // Below is the syntax that we do support. We chose it to be a // subset of both PCRE and POSIX extended regex, so it's easy to // learn wherever you come from. In the following: 'A' denotes a // literal character, period (.), or a single \\ escape sequence; // 'x' and 'y' denote regular expressions; 'm' and 'n' are for // natural numbers. // // c matches any literal character c // \\d matches any decimal digit // \\D matches any character that's not a decimal digit // \\f matches \f // \\n matches \n // \\r matches \r // \\s matches any ASCII whitespace, including \n // \\S matches any character that's not a whitespace // \\t matches \t // \\v matches \v // \\w matches any letter, _, or decimal digit // \\W matches any character that \\w doesn't match // \\c matches any literal character c, which must be a punctuation // . matches any single character except \n // A? matches 0 or 1 occurrences of A // A* matches 0 or many occurrences of A // A+ matches 1 or many occurrences of A // ^ matches the beginning of a string (not that of each line) // $ matches the end of a string (not that of each line) // xy matches x followed by y // // If you accidentally use PCRE or POSIX extended regex features // not implemented by us, you will get a run-time failure. In that // case, please try to rewrite your regular expression within the // above syntax. // // This implementation is *not* meant to be as highly tuned or robust // as a compiled regex library, but should perform well enough for a // death test, which already incurs significant overhead by launching // a child process. // // Known caveats: // // A "threadsafe" style death test obtains the path to the test // program from argv[0] and re-executes it in the sub-process. For // simplicity, the current implementation doesn't search the PATH // when launching the sub-process. This means that the user must // invoke the test program via a path that contains at least one // path separator (e.g. path/to/foo_test and // /absolute/path/to/bar_test are fine, but foo_test is not). This // is rarely a problem as people usually don't put the test binary // directory in PATH. // // Asserts that a given `statement` causes the program to exit, with an // integer exit status that satisfies `predicate`, and emitting error output // that matches `matcher`. # define ASSERT_EXIT(statement, predicate, matcher) \ GTEST_DEATH_TEST_(statement, predicate, matcher, GTEST_FATAL_FAILURE_) // Like `ASSERT_EXIT`, but continues on to successive tests in the // test suite, if any: # define EXPECT_EXIT(statement, predicate, matcher) \ GTEST_DEATH_TEST_(statement, predicate, matcher, GTEST_NONFATAL_FAILURE_) // Asserts that a given `statement` causes the program to exit, either by // explicitly exiting with a nonzero exit code or being killed by a // signal, and emitting error output that matches `matcher`. # define ASSERT_DEATH(statement, matcher) \ ASSERT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, matcher) // Like `ASSERT_DEATH`, but continues on to successive tests in the // test suite, if any: # define EXPECT_DEATH(statement, matcher) \ EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, matcher) // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*: // Tests that an exit code describes a normal exit with a given exit code. class GTEST_API_ ExitedWithCode { public: explicit ExitedWithCode(int exit_code); ExitedWithCode(const ExitedWithCode&) = default; void operator=(const ExitedWithCode& other) = delete; bool operator()(int exit_status) const; private: const int exit_code_; }; # if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA // Tests that an exit code describes an exit due to termination by a // given signal. // GOOGLETEST_CM0006 DO NOT DELETE class GTEST_API_ KilledBySignal { public: explicit KilledBySignal(int signum); bool operator()(int exit_status) const; private: const int signum_; }; # endif // !GTEST_OS_WINDOWS // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode. // The death testing framework causes this to have interesting semantics, // since the sideeffects of the call are only visible in opt mode, and not // in debug mode. // // In practice, this can be used to test functions that utilize the // LOG(DFATAL) macro using the following style: // // int DieInDebugOr12(int* sideeffect) { // if (sideeffect) { // *sideeffect = 12; // } // LOG(DFATAL) << "death"; // return 12; // } // // TEST(TestSuite, TestDieOr12WorksInDgbAndOpt) { // int sideeffect = 0; // // Only asserts in dbg. // EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death"); // // #ifdef NDEBUG // // opt-mode has sideeffect visible. // EXPECT_EQ(12, sideeffect); // #else // // dbg-mode no visible sideeffect. // EXPECT_EQ(0, sideeffect); // #endif // } // // This will assert that DieInDebugReturn12InOpt() crashes in debug // mode, usually due to a DCHECK or LOG(DFATAL), but returns the // appropriate fallback value (12 in this case) in opt mode. If you // need to test that a function has appropriate side-effects in opt // mode, include assertions against the side-effects. A general // pattern for this is: // // EXPECT_DEBUG_DEATH({ // // Side-effects here will have an effect after this statement in // // opt mode, but none in debug mode. // EXPECT_EQ(12, DieInDebugOr12(&sideeffect)); // }, "death"); // # ifdef NDEBUG # define EXPECT_DEBUG_DEATH(statement, regex) \ GTEST_EXECUTE_STATEMENT_(statement, regex) # define ASSERT_DEBUG_DEATH(statement, regex) \ GTEST_EXECUTE_STATEMENT_(statement, regex) # else # define EXPECT_DEBUG_DEATH(statement, regex) \ EXPECT_DEATH(statement, regex) # define ASSERT_DEBUG_DEATH(statement, regex) \ ASSERT_DEATH(statement, regex) # endif // NDEBUG for EXPECT_DEBUG_DEATH #endif // GTEST_HAS_DEATH_TEST // This macro is used for implementing macros such as // EXPECT_DEATH_IF_SUPPORTED and ASSERT_DEATH_IF_SUPPORTED on systems where // death tests are not supported. Those macros must compile on such systems // if and only if EXPECT_DEATH and ASSERT_DEATH compile with the same parameters // on systems that support death tests. This allows one to write such a macro on // a system that does not support death tests and be sure that it will compile // on a death-test supporting system. It is exposed publicly so that systems // that have death-tests with stricter requirements than GTEST_HAS_DEATH_TEST // can write their own equivalent of EXPECT_DEATH_IF_SUPPORTED and // ASSERT_DEATH_IF_SUPPORTED. // // Parameters: // statement - A statement that a macro such as EXPECT_DEATH would test // for program termination. This macro has to make sure this // statement is compiled but not executed, to ensure that // EXPECT_DEATH_IF_SUPPORTED compiles with a certain // parameter if and only if EXPECT_DEATH compiles with it. // regex - A regex that a macro such as EXPECT_DEATH would use to test // the output of statement. This parameter has to be // compiled but not evaluated by this macro, to ensure that // this macro only accepts expressions that a macro such as // EXPECT_DEATH would accept. // terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED // and a return statement for ASSERT_DEATH_IF_SUPPORTED. // This ensures that ASSERT_DEATH_IF_SUPPORTED will not // compile inside functions where ASSERT_DEATH doesn't // compile. // // The branch that has an always false condition is used to ensure that // statement and regex are compiled (and thus syntactically correct) but // never executed. The unreachable code macro protects the terminator // statement from generating an 'unreachable code' warning in case // statement unconditionally returns or throws. The Message constructor at // the end allows the syntax of streaming additional messages into the // macro, for compilational compatibility with EXPECT_DEATH/ASSERT_DEATH. # define GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, terminator) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ GTEST_LOG_(WARNING) \ << "Death tests are not supported on this platform.\n" \ << "Statement '" #statement "' cannot be verified."; \ } else if (::testing::internal::AlwaysFalse()) { \ ::testing::internal::RE::PartialMatch(".*", (regex)); \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ terminator; \ } else \ ::testing::Message() // EXPECT_DEATH_IF_SUPPORTED(statement, regex) and // ASSERT_DEATH_IF_SUPPORTED(statement, regex) expand to real death tests if // death tests are supported; otherwise they just issue a warning. This is // useful when you are combining death test assertions with normal test // assertions in one test. #if GTEST_HAS_DEATH_TEST # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ EXPECT_DEATH(statement, regex) # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ ASSERT_DEATH(statement, regex) #else # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \ GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, ) # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \ GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, return) #endif } // namespace testing #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_DEATH_TEST_H_ ================================================ FILE: test/gtest/include/gtest/gtest-matchers.h ================================================ // Copyright 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // The Google C++ Testing and Mocking Framework (Google Test) // // This file implements just enough of the matcher interface to allow // EXPECT_DEATH and friends to accept a matcher argument. #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_MATCHERS_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_MATCHERS_H_ #include #include #include #include #include #include "gtest/gtest-printers.h" #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-port.h" // MSVC warning C5046 is new as of VS2017 version 15.8. #if defined(_MSC_VER) && _MSC_VER >= 1915 #define GTEST_MAYBE_5046_ 5046 #else #define GTEST_MAYBE_5046_ #endif GTEST_DISABLE_MSC_WARNINGS_PUSH_( 4251 GTEST_MAYBE_5046_ /* class A needs to have dll-interface to be used by clients of class B */ /* Symbol involving type with internal linkage not defined */) namespace testing { // To implement a matcher Foo for type T, define: // 1. a class FooMatcherMatcher that implements the matcher interface: // using is_gtest_matcher = void; // bool MatchAndExplain(const T&, std::ostream*); // (MatchResultListener* can also be used instead of std::ostream*) // void DescribeTo(std::ostream*); // void DescribeNegationTo(std::ostream*); // // 2. a factory function that creates a Matcher object from a // FooMatcherMatcher. class MatchResultListener { public: // Creates a listener object with the given underlying ostream. The // listener does not own the ostream, and does not dereference it // in the constructor or destructor. explicit MatchResultListener(::std::ostream* os) : stream_(os) {} virtual ~MatchResultListener() = 0; // Makes this class abstract. // Streams x to the underlying ostream; does nothing if the ostream // is NULL. template MatchResultListener& operator<<(const T& x) { if (stream_ != nullptr) *stream_ << x; return *this; } // Returns the underlying ostream. ::std::ostream* stream() { return stream_; } // Returns true if and only if the listener is interested in an explanation // of the match result. A matcher's MatchAndExplain() method can use // this information to avoid generating the explanation when no one // intends to hear it. bool IsInterested() const { return stream_ != nullptr; } private: ::std::ostream* const stream_; GTEST_DISALLOW_COPY_AND_ASSIGN_(MatchResultListener); }; inline MatchResultListener::~MatchResultListener() { } // An instance of a subclass of this knows how to describe itself as a // matcher. class GTEST_API_ MatcherDescriberInterface { public: virtual ~MatcherDescriberInterface() {} // Describes this matcher to an ostream. The function should print // a verb phrase that describes the property a value matching this // matcher should have. The subject of the verb phrase is the value // being matched. For example, the DescribeTo() method of the Gt(7) // matcher prints "is greater than 7". virtual void DescribeTo(::std::ostream* os) const = 0; // Describes the negation of this matcher to an ostream. For // example, if the description of this matcher is "is greater than // 7", the negated description could be "is not greater than 7". // You are not required to override this when implementing // MatcherInterface, but it is highly advised so that your matcher // can produce good error messages. virtual void DescribeNegationTo(::std::ostream* os) const { *os << "not ("; DescribeTo(os); *os << ")"; } }; // The implementation of a matcher. template class MatcherInterface : public MatcherDescriberInterface { public: // Returns true if and only if the matcher matches x; also explains the // match result to 'listener' if necessary (see the next paragraph), in // the form of a non-restrictive relative clause ("which ...", // "whose ...", etc) that describes x. For example, the // MatchAndExplain() method of the Pointee(...) matcher should // generate an explanation like "which points to ...". // // Implementations of MatchAndExplain() should add an explanation of // the match result *if and only if* they can provide additional // information that's not already present (or not obvious) in the // print-out of x and the matcher's description. Whether the match // succeeds is not a factor in deciding whether an explanation is // needed, as sometimes the caller needs to print a failure message // when the match succeeds (e.g. when the matcher is used inside // Not()). // // For example, a "has at least 10 elements" matcher should explain // what the actual element count is, regardless of the match result, // as it is useful information to the reader; on the other hand, an // "is empty" matcher probably only needs to explain what the actual // size is when the match fails, as it's redundant to say that the // size is 0 when the value is already known to be empty. // // You should override this method when defining a new matcher. // // It's the responsibility of the caller (Google Test) to guarantee // that 'listener' is not NULL. This helps to simplify a matcher's // implementation when it doesn't care about the performance, as it // can talk to 'listener' without checking its validity first. // However, in order to implement dummy listeners efficiently, // listener->stream() may be NULL. virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0; // Inherits these methods from MatcherDescriberInterface: // virtual void DescribeTo(::std::ostream* os) const = 0; // virtual void DescribeNegationTo(::std::ostream* os) const; }; namespace internal { struct AnyEq { template bool operator()(const A& a, const B& b) const { return a == b; } }; struct AnyNe { template bool operator()(const A& a, const B& b) const { return a != b; } }; struct AnyLt { template bool operator()(const A& a, const B& b) const { return a < b; } }; struct AnyGt { template bool operator()(const A& a, const B& b) const { return a > b; } }; struct AnyLe { template bool operator()(const A& a, const B& b) const { return a <= b; } }; struct AnyGe { template bool operator()(const A& a, const B& b) const { return a >= b; } }; // A match result listener that ignores the explanation. class DummyMatchResultListener : public MatchResultListener { public: DummyMatchResultListener() : MatchResultListener(nullptr) {} private: GTEST_DISALLOW_COPY_AND_ASSIGN_(DummyMatchResultListener); }; // A match result listener that forwards the explanation to a given // ostream. The difference between this and MatchResultListener is // that the former is concrete. class StreamMatchResultListener : public MatchResultListener { public: explicit StreamMatchResultListener(::std::ostream* os) : MatchResultListener(os) {} private: GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamMatchResultListener); }; struct SharedPayloadBase { std::atomic ref{1}; void Ref() { ref.fetch_add(1, std::memory_order_relaxed); } bool Unref() { return ref.fetch_sub(1, std::memory_order_acq_rel) == 1; } }; template struct SharedPayload : SharedPayloadBase { explicit SharedPayload(const T& v) : value(v) {} explicit SharedPayload(T&& v) : value(std::move(v)) {} static void Destroy(SharedPayloadBase* shared) { delete static_cast(shared); } T value; }; // An internal class for implementing Matcher, which will derive // from it. We put functionalities common to all Matcher // specializations here to avoid code duplication. template class MatcherBase : private MatcherDescriberInterface { public: // Returns true if and only if the matcher matches x; also explains the // match result to 'listener'. bool MatchAndExplain(const T& x, MatchResultListener* listener) const { GTEST_CHECK_(vtable_ != nullptr); return vtable_->match_and_explain(*this, x, listener); } // Returns true if and only if this matcher matches x. bool Matches(const T& x) const { DummyMatchResultListener dummy; return MatchAndExplain(x, &dummy); } // Describes this matcher to an ostream. void DescribeTo(::std::ostream* os) const final { GTEST_CHECK_(vtable_ != nullptr); vtable_->describe(*this, os, false); } // Describes the negation of this matcher to an ostream. void DescribeNegationTo(::std::ostream* os) const final { GTEST_CHECK_(vtable_ != nullptr); vtable_->describe(*this, os, true); } // Explains why x matches, or doesn't match, the matcher. void ExplainMatchResultTo(const T& x, ::std::ostream* os) const { StreamMatchResultListener listener(os); MatchAndExplain(x, &listener); } // Returns the describer for this matcher object; retains ownership // of the describer, which is only guaranteed to be alive when // this matcher object is alive. const MatcherDescriberInterface* GetDescriber() const { if (vtable_ == nullptr) return nullptr; return vtable_->get_describer(*this); } protected: MatcherBase() : vtable_(nullptr) {} // Constructs a matcher from its implementation. template explicit MatcherBase(const MatcherInterface* impl) { Init(impl); } template ::type::is_gtest_matcher> MatcherBase(M&& m) { // NOLINT Init(std::forward(m)); } MatcherBase(const MatcherBase& other) : vtable_(other.vtable_), buffer_(other.buffer_) { if (IsShared()) buffer_.shared->Ref(); } MatcherBase& operator=(const MatcherBase& other) { if (this == &other) return *this; Destroy(); vtable_ = other.vtable_; buffer_ = other.buffer_; if (IsShared()) buffer_.shared->Ref(); return *this; } MatcherBase(MatcherBase&& other) : vtable_(other.vtable_), buffer_(other.buffer_) { other.vtable_ = nullptr; } MatcherBase& operator=(MatcherBase&& other) { if (this == &other) return *this; Destroy(); vtable_ = other.vtable_; buffer_ = other.buffer_; other.vtable_ = nullptr; return *this; } ~MatcherBase() override { Destroy(); } private: struct VTable { bool (*match_and_explain)(const MatcherBase&, const T&, MatchResultListener*); void (*describe)(const MatcherBase&, std::ostream*, bool negation); // Returns the captured object if it implements the interface, otherwise // returns the MatcherBase itself. const MatcherDescriberInterface* (*get_describer)(const MatcherBase&); // Called on shared instances when the reference count reaches 0. void (*shared_destroy)(SharedPayloadBase*); }; bool IsShared() const { return vtable_ != nullptr && vtable_->shared_destroy != nullptr; } // If the implementation uses a listener, call that. template static auto MatchAndExplainImpl(const MatcherBase& m, const T& value, MatchResultListener* listener) -> decltype(P::Get(m).MatchAndExplain(value, listener->stream())) { return P::Get(m).MatchAndExplain(value, listener->stream()); } template static auto MatchAndExplainImpl(const MatcherBase& m, const T& value, MatchResultListener* listener) -> decltype(P::Get(m).MatchAndExplain(value, listener)) { return P::Get(m).MatchAndExplain(value, listener); } template static void DescribeImpl(const MatcherBase& m, std::ostream* os, bool negation) { if (negation) { P::Get(m).DescribeNegationTo(os); } else { P::Get(m).DescribeTo(os); } } template static const MatcherDescriberInterface* GetDescriberImpl( const MatcherBase& m) { // If the impl is a MatcherDescriberInterface, then return it. // Otherwise use MatcherBase itself. // This allows us to implement the GetDescriber() function without support // from the impl, but some users really want to get their impl back when // they call GetDescriber(). // We use std::get on a tuple as a workaround of not having `if constexpr`. return std::get<( std::is_convertible::value ? 1 : 0)>(std::make_tuple(&m, &P::Get(m))); } template const VTable* GetVTable() { static constexpr VTable kVTable = {&MatchAndExplainImpl

, &DescribeImpl

, &GetDescriberImpl

, P::shared_destroy}; return &kVTable; } union Buffer { // Add some types to give Buffer some common alignment/size use cases. void* ptr; double d; int64_t i; // And add one for the out-of-line cases. SharedPayloadBase* shared; }; void Destroy() { if (IsShared() && buffer_.shared->Unref()) { vtable_->shared_destroy(buffer_.shared); } } template static constexpr bool IsInlined() { return sizeof(M) <= sizeof(Buffer) && alignof(M) <= alignof(Buffer) && std::is_trivially_copy_constructible::value && std::is_trivially_destructible::value; } template ()> struct ValuePolicy { static const M& Get(const MatcherBase& m) { // When inlined along with Init, need to be explicit to avoid violating // strict aliasing rules. const M *ptr = static_cast( static_cast(&m.buffer_)); return *ptr; } static void Init(MatcherBase& m, M impl) { ::new (static_cast(&m.buffer_)) M(impl); } static constexpr auto shared_destroy = nullptr; }; template struct ValuePolicy { using Shared = SharedPayload; static const M& Get(const MatcherBase& m) { return static_cast(m.buffer_.shared)->value; } template static void Init(MatcherBase& m, Arg&& arg) { m.buffer_.shared = new Shared(std::forward(arg)); } static constexpr auto shared_destroy = &Shared::Destroy; }; template struct ValuePolicy*, B> { using M = const MatcherInterface; using Shared = SharedPayload>; static const M& Get(const MatcherBase& m) { return *static_cast(m.buffer_.shared)->value; } static void Init(MatcherBase& m, M* impl) { m.buffer_.shared = new Shared(std::unique_ptr(impl)); } static constexpr auto shared_destroy = &Shared::Destroy; }; template void Init(M&& m) { using MM = typename std::decay::type; using Policy = ValuePolicy; vtable_ = GetVTable(); Policy::Init(*this, std::forward(m)); } const VTable* vtable_; Buffer buffer_; }; } // namespace internal // A Matcher is a copyable and IMMUTABLE (except by assignment) // object that can check whether a value of type T matches. The // implementation of Matcher is just a std::shared_ptr to const // MatcherInterface. Don't inherit from Matcher! template class Matcher : public internal::MatcherBase { public: // Constructs a null matcher. Needed for storing Matcher objects in STL // containers. A default-constructed matcher is not yet initialized. You // cannot use it until a valid value has been assigned to it. explicit Matcher() {} // NOLINT // Constructs a matcher from its implementation. explicit Matcher(const MatcherInterface* impl) : internal::MatcherBase(impl) {} template explicit Matcher( const MatcherInterface* impl, typename std::enable_if::value>::type* = nullptr) : internal::MatcherBase(impl) {} template ::type::is_gtest_matcher> Matcher(M&& m) : internal::MatcherBase(std::forward(m)) {} // NOLINT // Implicit constructor here allows people to write // EXPECT_CALL(foo, Bar(5)) instead of EXPECT_CALL(foo, Bar(Eq(5))) sometimes Matcher(T value); // NOLINT }; // The following two specializations allow the user to write str // instead of Eq(str) and "foo" instead of Eq("foo") when a std::string // matcher is expected. template <> class GTEST_API_ Matcher : public internal::MatcherBase { public: Matcher() {} explicit Matcher(const MatcherInterface* impl) : internal::MatcherBase(impl) {} template ::type::is_gtest_matcher> Matcher(M&& m) // NOLINT : internal::MatcherBase(std::forward(m)) {} // Allows the user to write str instead of Eq(str) sometimes, where // str is a std::string object. Matcher(const std::string& s); // NOLINT // Allows the user to write "foo" instead of Eq("foo") sometimes. Matcher(const char* s); // NOLINT }; template <> class GTEST_API_ Matcher : public internal::MatcherBase { public: Matcher() {} explicit Matcher(const MatcherInterface* impl) : internal::MatcherBase(impl) {} explicit Matcher(const MatcherInterface* impl) : internal::MatcherBase(impl) {} template ::type::is_gtest_matcher> Matcher(M&& m) // NOLINT : internal::MatcherBase(std::forward(m)) {} // Allows the user to write str instead of Eq(str) sometimes, where // str is a string object. Matcher(const std::string& s); // NOLINT // Allows the user to write "foo" instead of Eq("foo") sometimes. Matcher(const char* s); // NOLINT }; #if GTEST_INTERNAL_HAS_STRING_VIEW // The following two specializations allow the user to write str // instead of Eq(str) and "foo" instead of Eq("foo") when a absl::string_view // matcher is expected. template <> class GTEST_API_ Matcher : public internal::MatcherBase { public: Matcher() {} explicit Matcher(const MatcherInterface* impl) : internal::MatcherBase(impl) {} template ::type::is_gtest_matcher> Matcher(M&& m) // NOLINT : internal::MatcherBase(std::forward(m)) { } // Allows the user to write str instead of Eq(str) sometimes, where // str is a std::string object. Matcher(const std::string& s); // NOLINT // Allows the user to write "foo" instead of Eq("foo") sometimes. Matcher(const char* s); // NOLINT // Allows the user to pass absl::string_views or std::string_views directly. Matcher(internal::StringView s); // NOLINT }; template <> class GTEST_API_ Matcher : public internal::MatcherBase { public: Matcher() {} explicit Matcher(const MatcherInterface* impl) : internal::MatcherBase(impl) {} explicit Matcher(const MatcherInterface* impl) : internal::MatcherBase(impl) {} template ::type::is_gtest_matcher> Matcher(M&& m) // NOLINT : internal::MatcherBase(std::forward(m)) {} // Allows the user to write str instead of Eq(str) sometimes, where // str is a std::string object. Matcher(const std::string& s); // NOLINT // Allows the user to write "foo" instead of Eq("foo") sometimes. Matcher(const char* s); // NOLINT // Allows the user to pass absl::string_views or std::string_views directly. Matcher(internal::StringView s); // NOLINT }; #endif // GTEST_INTERNAL_HAS_STRING_VIEW // Prints a matcher in a human-readable format. template std::ostream& operator<<(std::ostream& os, const Matcher& matcher) { matcher.DescribeTo(&os); return os; } // The PolymorphicMatcher class template makes it easy to implement a // polymorphic matcher (i.e. a matcher that can match values of more // than one type, e.g. Eq(n) and NotNull()). // // To define a polymorphic matcher, a user should provide an Impl // class that has a DescribeTo() method and a DescribeNegationTo() // method, and define a member function (or member function template) // // bool MatchAndExplain(const Value& value, // MatchResultListener* listener) const; // // See the definition of NotNull() for a complete example. template class PolymorphicMatcher { public: explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {} // Returns a mutable reference to the underlying matcher // implementation object. Impl& mutable_impl() { return impl_; } // Returns an immutable reference to the underlying matcher // implementation object. const Impl& impl() const { return impl_; } template operator Matcher() const { return Matcher(new MonomorphicImpl(impl_)); } private: template class MonomorphicImpl : public MatcherInterface { public: explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} void DescribeTo(::std::ostream* os) const override { impl_.DescribeTo(os); } void DescribeNegationTo(::std::ostream* os) const override { impl_.DescribeNegationTo(os); } bool MatchAndExplain(T x, MatchResultListener* listener) const override { return impl_.MatchAndExplain(x, listener); } private: const Impl impl_; }; Impl impl_; }; // Creates a matcher from its implementation. // DEPRECATED: Especially in the generic code, prefer: // Matcher(new MyMatcherImpl(...)); // // MakeMatcher may create a Matcher that accepts its argument by value, which // leads to unnecessary copies & lack of support for non-copyable types. template inline Matcher MakeMatcher(const MatcherInterface* impl) { return Matcher(impl); } // Creates a polymorphic matcher from its implementation. This is // easier to use than the PolymorphicMatcher constructor as it // doesn't require you to explicitly write the template argument, e.g. // // MakePolymorphicMatcher(foo); // vs // PolymorphicMatcher(foo); template inline PolymorphicMatcher MakePolymorphicMatcher(const Impl& impl) { return PolymorphicMatcher(impl); } namespace internal { // Implements a matcher that compares a given value with a // pre-supplied value using one of the ==, <=, <, etc, operators. The // two values being compared don't have to have the same type. // // The matcher defined here is polymorphic (for example, Eq(5) can be // used to match an int, a short, a double, etc). Therefore we use // a template type conversion operator in the implementation. // // The following template definition assumes that the Rhs parameter is // a "bare" type (i.e. neither 'const T' nor 'T&'). template class ComparisonBase { public: explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} using is_gtest_matcher = void; template bool MatchAndExplain(const Lhs& lhs, std::ostream*) const { return Op()(lhs, Unwrap(rhs_)); } void DescribeTo(std::ostream* os) const { *os << D::Desc() << " "; UniversalPrint(Unwrap(rhs_), os); } void DescribeNegationTo(std::ostream* os) const { *os << D::NegatedDesc() << " "; UniversalPrint(Unwrap(rhs_), os); } private: template static const T& Unwrap(const T& v) { return v; } template static const T& Unwrap(std::reference_wrapper v) { return v; } Rhs rhs_; }; template class EqMatcher : public ComparisonBase, Rhs, AnyEq> { public: explicit EqMatcher(const Rhs& rhs) : ComparisonBase, Rhs, AnyEq>(rhs) { } static const char* Desc() { return "is equal to"; } static const char* NegatedDesc() { return "isn't equal to"; } }; template class NeMatcher : public ComparisonBase, Rhs, AnyNe> { public: explicit NeMatcher(const Rhs& rhs) : ComparisonBase, Rhs, AnyNe>(rhs) { } static const char* Desc() { return "isn't equal to"; } static const char* NegatedDesc() { return "is equal to"; } }; template class LtMatcher : public ComparisonBase, Rhs, AnyLt> { public: explicit LtMatcher(const Rhs& rhs) : ComparisonBase, Rhs, AnyLt>(rhs) { } static const char* Desc() { return "is <"; } static const char* NegatedDesc() { return "isn't <"; } }; template class GtMatcher : public ComparisonBase, Rhs, AnyGt> { public: explicit GtMatcher(const Rhs& rhs) : ComparisonBase, Rhs, AnyGt>(rhs) { } static const char* Desc() { return "is >"; } static const char* NegatedDesc() { return "isn't >"; } }; template class LeMatcher : public ComparisonBase, Rhs, AnyLe> { public: explicit LeMatcher(const Rhs& rhs) : ComparisonBase, Rhs, AnyLe>(rhs) { } static const char* Desc() { return "is <="; } static const char* NegatedDesc() { return "isn't <="; } }; template class GeMatcher : public ComparisonBase, Rhs, AnyGe> { public: explicit GeMatcher(const Rhs& rhs) : ComparisonBase, Rhs, AnyGe>(rhs) { } static const char* Desc() { return "is >="; } static const char* NegatedDesc() { return "isn't >="; } }; template ::value>::type> using StringLike = T; // Implements polymorphic matchers MatchesRegex(regex) and // ContainsRegex(regex), which can be used as a Matcher as long as // T can be converted to a string. class MatchesRegexMatcher { public: MatchesRegexMatcher(const RE* regex, bool full_match) : regex_(regex), full_match_(full_match) {} #if GTEST_INTERNAL_HAS_STRING_VIEW bool MatchAndExplain(const internal::StringView& s, MatchResultListener* listener) const { return MatchAndExplain(std::string(s), listener); } #endif // GTEST_INTERNAL_HAS_STRING_VIEW // Accepts pointer types, particularly: // const char* // char* // const wchar_t* // wchar_t* template bool MatchAndExplain(CharType* s, MatchResultListener* listener) const { return s != nullptr && MatchAndExplain(std::string(s), listener); } // Matches anything that can convert to std::string. // // This is a template, not just a plain function with const std::string&, // because absl::string_view has some interfering non-explicit constructors. template bool MatchAndExplain(const MatcheeStringType& s, MatchResultListener* /* listener */) const { const std::string& s2(s); return full_match_ ? RE::FullMatch(s2, *regex_) : RE::PartialMatch(s2, *regex_); } void DescribeTo(::std::ostream* os) const { *os << (full_match_ ? "matches" : "contains") << " regular expression "; UniversalPrinter::Print(regex_->pattern(), os); } void DescribeNegationTo(::std::ostream* os) const { *os << "doesn't " << (full_match_ ? "match" : "contain") << " regular expression "; UniversalPrinter::Print(regex_->pattern(), os); } private: const std::shared_ptr regex_; const bool full_match_; }; } // namespace internal // Matches a string that fully matches regular expression 'regex'. // The matcher takes ownership of 'regex'. inline PolymorphicMatcher MatchesRegex( const internal::RE* regex) { return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, true)); } template PolymorphicMatcher MatchesRegex( const internal::StringLike& regex) { return MatchesRegex(new internal::RE(std::string(regex))); } // Matches a string that contains regular expression 'regex'. // The matcher takes ownership of 'regex'. inline PolymorphicMatcher ContainsRegex( const internal::RE* regex) { return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, false)); } template PolymorphicMatcher ContainsRegex( const internal::StringLike& regex) { return ContainsRegex(new internal::RE(std::string(regex))); } // Creates a polymorphic matcher that matches anything equal to x. // Note: if the parameter of Eq() were declared as const T&, Eq("foo") // wouldn't compile. template inline internal::EqMatcher Eq(T x) { return internal::EqMatcher(x); } // Constructs a Matcher from a 'value' of type T. The constructed // matcher matches any value that's equal to 'value'. template Matcher::Matcher(T value) { *this = Eq(value); } // Creates a monomorphic matcher that matches anything with type Lhs // and equal to rhs. A user may need to use this instead of Eq(...) // in order to resolve an overloading ambiguity. // // TypedEq(x) is just a convenient short-hand for Matcher(Eq(x)) // or Matcher(x), but more readable than the latter. // // We could define similar monomorphic matchers for other comparison // operations (e.g. TypedLt, TypedGe, and etc), but decided not to do // it yet as those are used much less than Eq() in practice. A user // can always write Matcher(Lt(5)) to be explicit about the type, // for example. template inline Matcher TypedEq(const Rhs& rhs) { return Eq(rhs); } // Creates a polymorphic matcher that matches anything >= x. template inline internal::GeMatcher Ge(Rhs x) { return internal::GeMatcher(x); } // Creates a polymorphic matcher that matches anything > x. template inline internal::GtMatcher Gt(Rhs x) { return internal::GtMatcher(x); } // Creates a polymorphic matcher that matches anything <= x. template inline internal::LeMatcher Le(Rhs x) { return internal::LeMatcher(x); } // Creates a polymorphic matcher that matches anything < x. template inline internal::LtMatcher Lt(Rhs x) { return internal::LtMatcher(x); } // Creates a polymorphic matcher that matches anything != x. template inline internal::NeMatcher Ne(Rhs x) { return internal::NeMatcher(x); } } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 5046 #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_MATCHERS_H_ ================================================ FILE: test/gtest/include/gtest/gtest-message.h ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines the Message class. // // IMPORTANT NOTE: Due to limitation of the C++ language, we have to // leave some internal implementation details in this header file. // They are clearly marked by comments like this: // // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. // // Such code is NOT meant to be used by a user directly, and is subject // to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user // program! // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ #include #include #include #include "gtest/internal/gtest-port.h" GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) // Ensures that there is at least one operator<< in the global namespace. // See Message& operator<<(...) below for why. void operator<<(const testing::internal::Secret&, int); namespace testing { // The Message class works like an ostream repeater. // // Typical usage: // // 1. You stream a bunch of values to a Message object. // It will remember the text in a stringstream. // 2. Then you stream the Message object to an ostream. // This causes the text in the Message to be streamed // to the ostream. // // For example; // // testing::Message foo; // foo << 1 << " != " << 2; // std::cout << foo; // // will print "1 != 2". // // Message is not intended to be inherited from. In particular, its // destructor is not virtual. // // Note that stringstream behaves differently in gcc and in MSVC. You // can stream a NULL char pointer to it in the former, but not in the // latter (it causes an access violation if you do). The Message // class hides this difference by treating a NULL char pointer as // "(null)". class GTEST_API_ Message { private: // The type of basic IO manipulators (endl, ends, and flush) for // narrow streams. typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&); public: // Constructs an empty Message. Message(); // Copy constructor. Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT *ss_ << msg.GetString(); } // Constructs a Message from a C-string. explicit Message(const char* str) : ss_(new ::std::stringstream) { *ss_ << str; } // Streams a non-pointer value to this object. template inline Message& operator <<(const T& val) { // Some libraries overload << for STL containers. These // overloads are defined in the global namespace instead of ::std. // // C++'s symbol lookup rule (i.e. Koenig lookup) says that these // overloads are visible in either the std namespace or the global // namespace, but not other namespaces, including the testing // namespace which Google Test's Message class is in. // // To allow STL containers (and other types that has a << operator // defined in the global namespace) to be used in Google Test // assertions, testing::Message must access the custom << operator // from the global namespace. With this using declaration, // overloads of << defined in the global namespace and those // visible via Koenig lookup are both exposed in this function. using ::operator <<; *ss_ << val; return *this; } // Streams a pointer value to this object. // // This function is an overload of the previous one. When you // stream a pointer to a Message, this definition will be used as it // is more specialized. (The C++ Standard, section // [temp.func.order].) If you stream a non-pointer, then the // previous definition will be used. // // The reason for this overload is that streaming a NULL pointer to // ostream is undefined behavior. Depending on the compiler, you // may get "0", "(nil)", "(null)", or an access violation. To // ensure consistent result across compilers, we always treat NULL // as "(null)". template inline Message& operator <<(T* const& pointer) { // NOLINT if (pointer == nullptr) { *ss_ << "(null)"; } else { *ss_ << pointer; } return *this; } // Since the basic IO manipulators are overloaded for both narrow // and wide streams, we have to provide this specialized definition // of operator <<, even though its body is the same as the // templatized version above. Without this definition, streaming // endl or other basic IO manipulators to Message will confuse the // compiler. Message& operator <<(BasicNarrowIoManip val) { *ss_ << val; return *this; } // Instead of 1/0, we want to see true/false for bool values. Message& operator <<(bool b) { return *this << (b ? "true" : "false"); } // These two overloads allow streaming a wide C string to a Message // using the UTF-8 encoding. Message& operator <<(const wchar_t* wide_c_str); Message& operator <<(wchar_t* wide_c_str); #if GTEST_HAS_STD_WSTRING // Converts the given wide string to a narrow string using the UTF-8 // encoding, and streams the result to this Message object. Message& operator <<(const ::std::wstring& wstr); #endif // GTEST_HAS_STD_WSTRING // Gets the text streamed to this object so far as an std::string. // Each '\0' character in the buffer is replaced with "\\0". // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. std::string GetString() const; private: // We'll hold the text streamed to this object here. const std::unique_ptr< ::std::stringstream> ss_; // We declare (but don't implement) this to prevent the compiler // from implementing the assignment operator. void operator=(const Message&); }; // Streams a Message to an ostream. inline std::ostream& operator <<(std::ostream& os, const Message& sb) { return os << sb.GetString(); } namespace internal { // Converts a streamable value to an std::string. A NULL pointer is // converted to "(null)". When the input value is a ::string, // ::std::string, ::wstring, or ::std::wstring object, each NUL // character in it is replaced with "\\0". template std::string StreamableToString(const T& streamable) { return (Message() << streamable).GetString(); } } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_MESSAGE_H_ ================================================ FILE: test/gtest/include/gtest/gtest-param-test.h ================================================ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Macros and functions for implementing parameterized tests // in Google C++ Testing and Mocking Framework (Google Test) // // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ // Value-parameterized tests allow you to test your code with different // parameters without writing multiple copies of the same test. // // Here is how you use value-parameterized tests: #if 0 // To write value-parameterized tests, first you should define a fixture // class. It is usually derived from testing::TestWithParam (see below for // another inheritance scheme that's sometimes useful in more complicated // class hierarchies), where the type of your parameter values. // TestWithParam is itself derived from testing::Test. T can be any // copyable type. If it's a raw pointer, you are responsible for managing the // lifespan of the pointed values. class FooTest : public ::testing::TestWithParam { // You can implement all the usual class fixture members here. }; // Then, use the TEST_P macro to define as many parameterized tests // for this fixture as you want. The _P suffix is for "parameterized" // or "pattern", whichever you prefer to think. TEST_P(FooTest, DoesBlah) { // Inside a test, access the test parameter with the GetParam() method // of the TestWithParam class: EXPECT_TRUE(foo.Blah(GetParam())); ... } TEST_P(FooTest, HasBlahBlah) { ... } // Finally, you can use INSTANTIATE_TEST_SUITE_P to instantiate the test // case with any set of parameters you want. Google Test defines a number // of functions for generating test parameters. They return what we call // (surprise!) parameter generators. Here is a summary of them, which // are all in the testing namespace: // // // Range(begin, end [, step]) - Yields values {begin, begin+step, // begin+step+step, ...}. The values do not // include end. step defaults to 1. // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}. // ValuesIn(container) - Yields values from a C-style array, an STL // ValuesIn(begin,end) container, or an iterator range [begin, end). // Bool() - Yields sequence {false, true}. // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product // for the math savvy) of the values generated // by the N generators. // // For more details, see comments at the definitions of these functions below // in this file. // // The following statement will instantiate tests from the FooTest test suite // each with parameter values "meeny", "miny", and "moe". INSTANTIATE_TEST_SUITE_P(InstantiationName, FooTest, Values("meeny", "miny", "moe")); // To distinguish different instances of the pattern, (yes, you // can instantiate it more than once) the first argument to the // INSTANTIATE_TEST_SUITE_P macro is a prefix that will be added to the // actual test suite name. Remember to pick unique prefixes for different // instantiations. The tests from the instantiation above will have // these names: // // * InstantiationName/FooTest.DoesBlah/0 for "meeny" // * InstantiationName/FooTest.DoesBlah/1 for "miny" // * InstantiationName/FooTest.DoesBlah/2 for "moe" // * InstantiationName/FooTest.HasBlahBlah/0 for "meeny" // * InstantiationName/FooTest.HasBlahBlah/1 for "miny" // * InstantiationName/FooTest.HasBlahBlah/2 for "moe" // // You can use these names in --gtest_filter. // // This statement will instantiate all tests from FooTest again, each // with parameter values "cat" and "dog": const char* pets[] = {"cat", "dog"}; INSTANTIATE_TEST_SUITE_P(AnotherInstantiationName, FooTest, ValuesIn(pets)); // The tests from the instantiation above will have these names: // // * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat" // * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog" // * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat" // * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog" // // Please note that INSTANTIATE_TEST_SUITE_P will instantiate all tests // in the given test suite, whether their definitions come before or // AFTER the INSTANTIATE_TEST_SUITE_P statement. // // Please also note that generator expressions (including parameters to the // generators) are evaluated in InitGoogleTest(), after main() has started. // This allows the user on one hand, to adjust generator parameters in order // to dynamically determine a set of tests to run and on the other hand, // give the user a chance to inspect the generated tests with Google Test // reflection API before RUN_ALL_TESTS() is executed. // // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc // for more examples. // // In the future, we plan to publish the API for defining new parameter // generators. But for now this interface remains part of the internal // implementation and is subject to change. // // // A parameterized test fixture must be derived from testing::Test and from // testing::WithParamInterface, where T is the type of the parameter // values. Inheriting from TestWithParam satisfies that requirement because // TestWithParam inherits from both Test and WithParamInterface. In more // complicated hierarchies, however, it is occasionally useful to inherit // separately from Test and WithParamInterface. For example: class BaseTest : public ::testing::Test { // You can inherit all the usual members for a non-parameterized test // fixture here. }; class DerivedTest : public BaseTest, public ::testing::WithParamInterface { // The usual test fixture members go here too. }; TEST_F(BaseTest, HasFoo) { // This is an ordinary non-parameterized test. } TEST_P(DerivedTest, DoesBlah) { // GetParam works just the same here as if you inherit from TestWithParam. EXPECT_TRUE(foo.Blah(GetParam())); } #endif // 0 #include #include #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-param-util.h" #include "gtest/internal/gtest-port.h" namespace testing { // Functions producing parameter generators. // // Google Test uses these generators to produce parameters for value- // parameterized tests. When a parameterized test suite is instantiated // with a particular generator, Google Test creates and runs tests // for each element in the sequence produced by the generator. // // In the following sample, tests from test suite FooTest are instantiated // each three times with parameter values 3, 5, and 8: // // class FooTest : public TestWithParam { ... }; // // TEST_P(FooTest, TestThis) { // } // TEST_P(FooTest, TestThat) { // } // INSTANTIATE_TEST_SUITE_P(TestSequence, FooTest, Values(3, 5, 8)); // // Range() returns generators providing sequences of values in a range. // // Synopsis: // Range(start, end) // - returns a generator producing a sequence of values {start, start+1, // start+2, ..., }. // Range(start, end, step) // - returns a generator producing a sequence of values {start, start+step, // start+step+step, ..., }. // Notes: // * The generated sequences never include end. For example, Range(1, 5) // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) // returns a generator producing {1, 3, 5, 7}. // * start and end must have the same type. That type may be any integral or // floating-point type or a user defined type satisfying these conditions: // * It must be assignable (have operator=() defined). // * It must have operator+() (operator+(int-compatible type) for // two-operand version). // * It must have operator<() defined. // Elements in the resulting sequences will also have that type. // * Condition start < end must be satisfied in order for resulting sequences // to contain any elements. // template internal::ParamGenerator Range(T start, T end, IncrementT step) { return internal::ParamGenerator( new internal::RangeGenerator(start, end, step)); } template internal::ParamGenerator Range(T start, T end) { return Range(start, end, 1); } // ValuesIn() function allows generation of tests with parameters coming from // a container. // // Synopsis: // ValuesIn(const T (&array)[N]) // - returns a generator producing sequences with elements from // a C-style array. // ValuesIn(const Container& container) // - returns a generator producing sequences with elements from // an STL-style container. // ValuesIn(Iterator begin, Iterator end) // - returns a generator producing sequences with elements from // a range [begin, end) defined by a pair of STL-style iterators. These // iterators can also be plain C pointers. // // Please note that ValuesIn copies the values from the containers // passed in and keeps them to generate tests in RUN_ALL_TESTS(). // // Examples: // // This instantiates tests from test suite StringTest // each with C-string values of "foo", "bar", and "baz": // // const char* strings[] = {"foo", "bar", "baz"}; // INSTANTIATE_TEST_SUITE_P(StringSequence, StringTest, ValuesIn(strings)); // // This instantiates tests from test suite StlStringTest // each with STL strings with values "a" and "b": // // ::std::vector< ::std::string> GetParameterStrings() { // ::std::vector< ::std::string> v; // v.push_back("a"); // v.push_back("b"); // return v; // } // // INSTANTIATE_TEST_SUITE_P(CharSequence, // StlStringTest, // ValuesIn(GetParameterStrings())); // // // This will also instantiate tests from CharTest // each with parameter values 'a' and 'b': // // ::std::list GetParameterChars() { // ::std::list list; // list.push_back('a'); // list.push_back('b'); // return list; // } // ::std::list l = GetParameterChars(); // INSTANTIATE_TEST_SUITE_P(CharSequence2, // CharTest, // ValuesIn(l.begin(), l.end())); // template internal::ParamGenerator< typename std::iterator_traits::value_type> ValuesIn(ForwardIterator begin, ForwardIterator end) { typedef typename std::iterator_traits::value_type ParamType; return internal::ParamGenerator( new internal::ValuesInIteratorRangeGenerator(begin, end)); } template internal::ParamGenerator ValuesIn(const T (&array)[N]) { return ValuesIn(array, array + N); } template internal::ParamGenerator ValuesIn( const Container& container) { return ValuesIn(container.begin(), container.end()); } // Values() allows generating tests from explicitly specified list of // parameters. // // Synopsis: // Values(T v1, T v2, ..., T vN) // - returns a generator producing sequences with elements v1, v2, ..., vN. // // For example, this instantiates tests from test suite BarTest each // with values "one", "two", and "three": // // INSTANTIATE_TEST_SUITE_P(NumSequence, // BarTest, // Values("one", "two", "three")); // // This instantiates tests from test suite BazTest each with values 1, 2, 3.5. // The exact type of values will depend on the type of parameter in BazTest. // // INSTANTIATE_TEST_SUITE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); // // template internal::ValueArray Values(T... v) { return internal::ValueArray(std::move(v)...); } // Bool() allows generating tests with parameters in a set of (false, true). // // Synopsis: // Bool() // - returns a generator producing sequences with elements {false, true}. // // It is useful when testing code that depends on Boolean flags. Combinations // of multiple flags can be tested when several Bool()'s are combined using // Combine() function. // // In the following example all tests in the test suite FlagDependentTest // will be instantiated twice with parameters false and true. // // class FlagDependentTest : public testing::TestWithParam { // virtual void SetUp() { // external_flag = GetParam(); // } // } // INSTANTIATE_TEST_SUITE_P(BoolSequence, FlagDependentTest, Bool()); // inline internal::ParamGenerator Bool() { return Values(false, true); } // Combine() allows the user to combine two or more sequences to produce // values of a Cartesian product of those sequences' elements. // // Synopsis: // Combine(gen1, gen2, ..., genN) // - returns a generator producing sequences with elements coming from // the Cartesian product of elements from the sequences generated by // gen1, gen2, ..., genN. The sequence elements will have a type of // std::tuple where T1, T2, ..., TN are the types // of elements from sequences produces by gen1, gen2, ..., genN. // // Example: // // This will instantiate tests in test suite AnimalTest each one with // the parameter values tuple("cat", BLACK), tuple("cat", WHITE), // tuple("dog", BLACK), and tuple("dog", WHITE): // // enum Color { BLACK, GRAY, WHITE }; // class AnimalTest // : public testing::TestWithParam > {...}; // // TEST_P(AnimalTest, AnimalLooksNice) {...} // // INSTANTIATE_TEST_SUITE_P(AnimalVariations, AnimalTest, // Combine(Values("cat", "dog"), // Values(BLACK, WHITE))); // // This will instantiate tests in FlagDependentTest with all variations of two // Boolean flags: // // class FlagDependentTest // : public testing::TestWithParam > { // virtual void SetUp() { // // Assigns external_flag_1 and external_flag_2 values from the tuple. // std::tie(external_flag_1, external_flag_2) = GetParam(); // } // }; // // TEST_P(FlagDependentTest, TestFeature1) { // // Test your code using external_flag_1 and external_flag_2 here. // } // INSTANTIATE_TEST_SUITE_P(TwoBoolSequence, FlagDependentTest, // Combine(Bool(), Bool())); // template internal::CartesianProductHolder Combine(const Generator&... g) { return internal::CartesianProductHolder(g...); } #define TEST_P(test_suite_name, test_name) \ class GTEST_TEST_CLASS_NAME_(test_suite_name, test_name) \ : public test_suite_name { \ public: \ GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)() {} \ void TestBody() override; \ \ private: \ static int AddToRegistry() { \ ::testing::UnitTest::GetInstance() \ ->parameterized_test_registry() \ .GetTestSuitePatternHolder( \ GTEST_STRINGIFY_(test_suite_name), \ ::testing::internal::CodeLocation(__FILE__, __LINE__)) \ ->AddTestPattern( \ GTEST_STRINGIFY_(test_suite_name), GTEST_STRINGIFY_(test_name), \ new ::testing::internal::TestMetaFactory(), \ ::testing::internal::CodeLocation(__FILE__, __LINE__)); \ return 0; \ } \ static int gtest_registering_dummy_ GTEST_ATTRIBUTE_UNUSED_; \ GTEST_DISALLOW_COPY_AND_ASSIGN_(GTEST_TEST_CLASS_NAME_(test_suite_name, \ test_name)); \ }; \ int GTEST_TEST_CLASS_NAME_(test_suite_name, \ test_name)::gtest_registering_dummy_ = \ GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)::AddToRegistry(); \ void GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)::TestBody() // The last argument to INSTANTIATE_TEST_SUITE_P allows the user to specify // generator and an optional function or functor that generates custom test name // suffixes based on the test parameters. Such a function or functor should // accept one argument of type testing::TestParamInfo, and // return std::string. // // testing::PrintToStringParamName is a builtin test suffix generator that // returns the value of testing::PrintToString(GetParam()). // // Note: test names must be non-empty, unique, and may only contain ASCII // alphanumeric characters or underscore. Because PrintToString adds quotes // to std::string and C strings, it won't work for these types. #define GTEST_EXPAND_(arg) arg #define GTEST_GET_FIRST_(first, ...) first #define GTEST_GET_SECOND_(first, second, ...) second #define INSTANTIATE_TEST_SUITE_P(prefix, test_suite_name, ...) \ static ::testing::internal::ParamGenerator \ gtest_##prefix##test_suite_name##_EvalGenerator_() { \ return GTEST_EXPAND_(GTEST_GET_FIRST_(__VA_ARGS__, DUMMY_PARAM_)); \ } \ static ::std::string gtest_##prefix##test_suite_name##_EvalGenerateName_( \ const ::testing::TestParamInfo& info) { \ if (::testing::internal::AlwaysFalse()) { \ ::testing::internal::TestNotEmpty(GTEST_EXPAND_(GTEST_GET_SECOND_( \ __VA_ARGS__, \ ::testing::internal::DefaultParamName, \ DUMMY_PARAM_))); \ auto t = std::make_tuple(__VA_ARGS__); \ static_assert(std::tuple_size::value <= 2, \ "Too Many Args!"); \ } \ return ((GTEST_EXPAND_(GTEST_GET_SECOND_( \ __VA_ARGS__, \ ::testing::internal::DefaultParamName, \ DUMMY_PARAM_))))(info); \ } \ static int gtest_##prefix##test_suite_name##_dummy_ \ GTEST_ATTRIBUTE_UNUSED_ = \ ::testing::UnitTest::GetInstance() \ ->parameterized_test_registry() \ .GetTestSuitePatternHolder( \ GTEST_STRINGIFY_(test_suite_name), \ ::testing::internal::CodeLocation(__FILE__, __LINE__)) \ ->AddTestSuiteInstantiation( \ GTEST_STRINGIFY_(prefix), \ >est_##prefix##test_suite_name##_EvalGenerator_, \ >est_##prefix##test_suite_name##_EvalGenerateName_, \ __FILE__, __LINE__) // Allow Marking a Parameterized test class as not needing to be instantiated. #define GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(T) \ namespace gtest_do_not_use_outside_namespace_scope {} \ static const ::testing::internal::MarkAsIgnored gtest_allow_ignore_##T( \ GTEST_STRINGIFY_(T)) // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ #define INSTANTIATE_TEST_CASE_P \ static_assert(::testing::internal::InstantiateTestCase_P_IsDeprecated(), \ ""); \ INSTANTIATE_TEST_SUITE_P #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ } // namespace testing #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ ================================================ FILE: test/gtest/include/gtest/gtest-param-test.h.pump ================================================ $$ -*- mode: c++; -*- $var n = 50 $$ Maximum length of Values arguments we want to support. $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Authors: vladl@google.com (Vlad Losev) // // Macros and functions for implementing parameterized tests // in Google C++ Testing Framework (Google Test) // // This file is generated by a SCRIPT. DO NOT EDIT BY HAND! // #ifndef GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ #define GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ // Value-parameterized tests allow you to test your code with different // parameters without writing multiple copies of the same test. // // Here is how you use value-parameterized tests: #if 0 // To write value-parameterized tests, first you should define a fixture // class. It is usually derived from testing::TestWithParam (see below for // another inheritance scheme that's sometimes useful in more complicated // class hierarchies), where the type of your parameter values. // TestWithParam is itself derived from testing::Test. T can be any // copyable type. If it's a raw pointer, you are responsible for managing the // lifespan of the pointed values. class FooTest : public ::testing::TestWithParam { // You can implement all the usual class fixture members here. }; // Then, use the TEST_P macro to define as many parameterized tests // for this fixture as you want. The _P suffix is for "parameterized" // or "pattern", whichever you prefer to think. TEST_P(FooTest, DoesBlah) { // Inside a test, access the test parameter with the GetParam() method // of the TestWithParam class: EXPECT_TRUE(foo.Blah(GetParam())); ... } TEST_P(FooTest, HasBlahBlah) { ... } // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test // case with any set of parameters you want. Google Test defines a number // of functions for generating test parameters. They return what we call // (surprise!) parameter generators. Here is a summary of them, which // are all in the testing namespace: // // // Range(begin, end [, step]) - Yields values {begin, begin+step, // begin+step+step, ...}. The values do not // include end. step defaults to 1. // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}. // ValuesIn(container) - Yields values from a C-style array, an STL // ValuesIn(begin,end) container, or an iterator range [begin, end). // Bool() - Yields sequence {false, true}. // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product // for the math savvy) of the values generated // by the N generators. // // For more details, see comments at the definitions of these functions below // in this file. // // The following statement will instantiate tests from the FooTest test case // each with parameter values "meeny", "miny", and "moe". INSTANTIATE_TEST_CASE_P(InstantiationName, FooTest, Values("meeny", "miny", "moe")); // To distinguish different instances of the pattern, (yes, you // can instantiate it more then once) the first argument to the // INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the // actual test case name. Remember to pick unique prefixes for different // instantiations. The tests from the instantiation above will have // these names: // // * InstantiationName/FooTest.DoesBlah/0 for "meeny" // * InstantiationName/FooTest.DoesBlah/1 for "miny" // * InstantiationName/FooTest.DoesBlah/2 for "moe" // * InstantiationName/FooTest.HasBlahBlah/0 for "meeny" // * InstantiationName/FooTest.HasBlahBlah/1 for "miny" // * InstantiationName/FooTest.HasBlahBlah/2 for "moe" // // You can use these names in --gtest_filter. // // This statement will instantiate all tests from FooTest again, each // with parameter values "cat" and "dog": const char* pets[] = {"cat", "dog"}; INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets)); // The tests from the instantiation above will have these names: // // * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat" // * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog" // * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat" // * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog" // // Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests // in the given test case, whether their definitions come before or // AFTER the INSTANTIATE_TEST_CASE_P statement. // // Please also note that generator expressions (including parameters to the // generators) are evaluated in InitGoogleTest(), after main() has started. // This allows the user on one hand, to adjust generator parameters in order // to dynamically determine a set of tests to run and on the other hand, // give the user a chance to inspect the generated tests with Google Test // reflection API before RUN_ALL_TESTS() is executed. // // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc // for more examples. // // In the future, we plan to publish the API for defining new parameter // generators. But for now this interface remains part of the internal // implementation and is subject to change. // // // A parameterized test fixture must be derived from testing::Test and from // testing::WithParamInterface, where T is the type of the parameter // values. Inheriting from TestWithParam satisfies that requirement because // TestWithParam inherits from both Test and WithParamInterface. In more // complicated hierarchies, however, it is occasionally useful to inherit // separately from Test and WithParamInterface. For example: class BaseTest : public ::testing::Test { // You can inherit all the usual members for a non-parameterized test // fixture here. }; class DerivedTest : public BaseTest, public ::testing::WithParamInterface { // The usual test fixture members go here too. }; TEST_F(BaseTest, HasFoo) { // This is an ordinary non-parameterized test. } TEST_P(DerivedTest, DoesBlah) { // GetParam works just the same here as if you inherit from TestWithParam. EXPECT_TRUE(foo.Blah(GetParam())); } #endif // 0 #include "gtest/internal/gtest-port.h" #if !GTEST_OS_SYMBIAN # include #endif // scripts/fuse_gtest.py depends on gtest's own header being #included // *unconditionally*. Therefore these #includes cannot be moved // inside #if GTEST_HAS_PARAM_TEST. #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-param-util.h" #include "gtest/internal/gtest-param-util-generated.h" #if GTEST_HAS_PARAM_TEST namespace testing { // Functions producing parameter generators. // // Google Test uses these generators to produce parameters for value- // parameterized tests. When a parameterized test case is instantiated // with a particular generator, Google Test creates and runs tests // for each element in the sequence produced by the generator. // // In the following sample, tests from test case FooTest are instantiated // each three times with parameter values 3, 5, and 8: // // class FooTest : public TestWithParam { ... }; // // TEST_P(FooTest, TestThis) { // } // TEST_P(FooTest, TestThat) { // } // INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8)); // // Range() returns generators providing sequences of values in a range. // // Synopsis: // Range(start, end) // - returns a generator producing a sequence of values {start, start+1, // start+2, ..., }. // Range(start, end, step) // - returns a generator producing a sequence of values {start, start+step, // start+step+step, ..., }. // Notes: // * The generated sequences never include end. For example, Range(1, 5) // returns a generator producing a sequence {1, 2, 3, 4}. Range(1, 9, 2) // returns a generator producing {1, 3, 5, 7}. // * start and end must have the same type. That type may be any integral or // floating-point type or a user defined type satisfying these conditions: // * It must be assignable (have operator=() defined). // * It must have operator+() (operator+(int-compatible type) for // two-operand version). // * It must have operator<() defined. // Elements in the resulting sequences will also have that type. // * Condition start < end must be satisfied in order for resulting sequences // to contain any elements. // template internal::ParamGenerator Range(T start, T end, IncrementT step) { return internal::ParamGenerator( new internal::RangeGenerator(start, end, step)); } template internal::ParamGenerator Range(T start, T end) { return Range(start, end, 1); } // ValuesIn() function allows generation of tests with parameters coming from // a container. // // Synopsis: // ValuesIn(const T (&array)[N]) // - returns a generator producing sequences with elements from // a C-style array. // ValuesIn(const Container& container) // - returns a generator producing sequences with elements from // an STL-style container. // ValuesIn(Iterator begin, Iterator end) // - returns a generator producing sequences with elements from // a range [begin, end) defined by a pair of STL-style iterators. These // iterators can also be plain C pointers. // // Please note that ValuesIn copies the values from the containers // passed in and keeps them to generate tests in RUN_ALL_TESTS(). // // Examples: // // This instantiates tests from test case StringTest // each with C-string values of "foo", "bar", and "baz": // // const char* strings[] = {"foo", "bar", "baz"}; // INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings)); // // This instantiates tests from test case StlStringTest // each with STL strings with values "a" and "b": // // ::std::vector< ::std::string> GetParameterStrings() { // ::std::vector< ::std::string> v; // v.push_back("a"); // v.push_back("b"); // return v; // } // // INSTANTIATE_TEST_CASE_P(CharSequence, // StlStringTest, // ValuesIn(GetParameterStrings())); // // // This will also instantiate tests from CharTest // each with parameter values 'a' and 'b': // // ::std::list GetParameterChars() { // ::std::list list; // list.push_back('a'); // list.push_back('b'); // return list; // } // ::std::list l = GetParameterChars(); // INSTANTIATE_TEST_CASE_P(CharSequence2, // CharTest, // ValuesIn(l.begin(), l.end())); // template internal::ParamGenerator< typename ::testing::internal::IteratorTraits::value_type> ValuesIn(ForwardIterator begin, ForwardIterator end) { typedef typename ::testing::internal::IteratorTraits ::value_type ParamType; return internal::ParamGenerator( new internal::ValuesInIteratorRangeGenerator(begin, end)); } template internal::ParamGenerator ValuesIn(const T (&array)[N]) { return ValuesIn(array, array + N); } template internal::ParamGenerator ValuesIn( const Container& container) { return ValuesIn(container.begin(), container.end()); } // Values() allows generating tests from explicitly specified list of // parameters. // // Synopsis: // Values(T v1, T v2, ..., T vN) // - returns a generator producing sequences with elements v1, v2, ..., vN. // // For example, this instantiates tests from test case BarTest each // with values "one", "two", and "three": // // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three")); // // This instantiates tests from test case BazTest each with values 1, 2, 3.5. // The exact type of values will depend on the type of parameter in BazTest. // // INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5)); // // Currently, Values() supports from 1 to $n parameters. // $range i 1..n $for i [[ $range j 1..i template <$for j, [[typename T$j]]> internal::ValueArray$i<$for j, [[T$j]]> Values($for j, [[T$j v$j]]) { return internal::ValueArray$i<$for j, [[T$j]]>($for j, [[v$j]]); } ]] // Bool() allows generating tests with parameters in a set of (false, true). // // Synopsis: // Bool() // - returns a generator producing sequences with elements {false, true}. // // It is useful when testing code that depends on Boolean flags. Combinations // of multiple flags can be tested when several Bool()'s are combined using // Combine() function. // // In the following example all tests in the test case FlagDependentTest // will be instantiated twice with parameters false and true. // // class FlagDependentTest : public testing::TestWithParam { // virtual void SetUp() { // external_flag = GetParam(); // } // } // INSTANTIATE_TEST_CASE_P(BoolSequence, FlagDependentTest, Bool()); // inline internal::ParamGenerator Bool() { return Values(false, true); } # if GTEST_HAS_COMBINE // Combine() allows the user to combine two or more sequences to produce // values of a Cartesian product of those sequences' elements. // // Synopsis: // Combine(gen1, gen2, ..., genN) // - returns a generator producing sequences with elements coming from // the Cartesian product of elements from the sequences generated by // gen1, gen2, ..., genN. The sequence elements will have a type of // tuple where T1, T2, ..., TN are the types // of elements from sequences produces by gen1, gen2, ..., genN. // // Combine can have up to $maxtuple arguments. This number is currently limited // by the maximum number of elements in the tuple implementation used by Google // Test. // // Example: // // This will instantiate tests in test case AnimalTest each one with // the parameter values tuple("cat", BLACK), tuple("cat", WHITE), // tuple("dog", BLACK), and tuple("dog", WHITE): // // enum Color { BLACK, GRAY, WHITE }; // class AnimalTest // : public testing::TestWithParam > {...}; // // TEST_P(AnimalTest, AnimalLooksNice) {...} // // INSTANTIATE_TEST_CASE_P(AnimalVariations, AnimalTest, // Combine(Values("cat", "dog"), // Values(BLACK, WHITE))); // // This will instantiate tests in FlagDependentTest with all variations of two // Boolean flags: // // class FlagDependentTest // : public testing::TestWithParam > { // virtual void SetUp() { // // Assigns external_flag_1 and external_flag_2 values from the tuple. // tie(external_flag_1, external_flag_2) = GetParam(); // } // }; // // TEST_P(FlagDependentTest, TestFeature1) { // // Test your code using external_flag_1 and external_flag_2 here. // } // INSTANTIATE_TEST_CASE_P(TwoBoolSequence, FlagDependentTest, // Combine(Bool(), Bool())); // $range i 2..maxtuple $for i [[ $range j 1..i template <$for j, [[typename Generator$j]]> internal::CartesianProductHolder$i<$for j, [[Generator$j]]> Combine( $for j, [[const Generator$j& g$j]]) { return internal::CartesianProductHolder$i<$for j, [[Generator$j]]>( $for j, [[g$j]]); } ]] # endif // GTEST_HAS_COMBINE # define TEST_P(test_case_name, test_name) \ class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \ : public test_case_name { \ public: \ GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \ virtual void TestBody(); \ private: \ static int AddToRegistry() { \ ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ GetTestCasePatternHolder(\ #test_case_name, \ ::testing::internal::CodeLocation(\ __FILE__, __LINE__))->AddTestPattern(\ #test_case_name, \ #test_name, \ new ::testing::internal::TestMetaFactory< \ GTEST_TEST_CLASS_NAME_(\ test_case_name, test_name)>()); \ return 0; \ } \ static int gtest_registering_dummy_ GTEST_ATTRIBUTE_UNUSED_; \ GTEST_DISALLOW_COPY_AND_ASSIGN_(\ GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \ }; \ int GTEST_TEST_CLASS_NAME_(test_case_name, \ test_name)::gtest_registering_dummy_ = \ GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \ void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() // The optional last argument to INSTANTIATE_TEST_CASE_P allows the user // to specify a function or functor that generates custom test name suffixes // based on the test parameters. The function should accept one argument of // type testing::TestParamInfo, and return std::string. // // testing::PrintToStringParamName is a builtin test suffix generator that // returns the value of testing::PrintToString(GetParam()). // // Note: test names must be non-empty, unique, and may only contain ASCII // alphanumeric characters or underscore. Because PrintToString adds quotes // to std::string and C strings, it won't work for these types. # define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator, ...) \ ::testing::internal::ParamGenerator \ gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \ ::std::string gtest_##prefix##test_case_name##_EvalGenerateName_( \ const ::testing::TestParamInfo& info) { \ return ::testing::internal::GetParamNameGen \ (__VA_ARGS__)(info); \ } \ int gtest_##prefix##test_case_name##_dummy_ GTEST_ATTRIBUTE_UNUSED_ = \ ::testing::UnitTest::GetInstance()->parameterized_test_registry(). \ GetTestCasePatternHolder(\ #test_case_name, \ ::testing::internal::CodeLocation(\ __FILE__, __LINE__))->AddTestCaseInstantiation(\ #prefix, \ >est_##prefix##test_case_name##_EvalGenerator_, \ >est_##prefix##test_case_name##_EvalGenerateName_, \ __FILE__, __LINE__) } // namespace testing #endif // GTEST_HAS_PARAM_TEST #endif // GTEST_INCLUDE_GTEST_GTEST_PARAM_TEST_H_ ================================================ FILE: test/gtest/include/gtest/gtest-printers.h ================================================ // Copyright 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Google Test - The Google C++ Testing and Mocking Framework // // This file implements a universal value printer that can print a // value of any type T: // // void ::testing::internal::UniversalPrinter::Print(value, ostream_ptr); // // A user can teach this function how to print a class type T by // defining either operator<<() or PrintTo() in the namespace that // defines T. More specifically, the FIRST defined function in the // following list will be used (assuming T is defined in namespace // foo): // // 1. foo::PrintTo(const T&, ostream*) // 2. operator<<(ostream&, const T&) defined in either foo or the // global namespace. // // However if T is an STL-style container then it is printed element-wise // unless foo::PrintTo(const T&, ostream*) is defined. Note that // operator<<() is ignored for container types. // // If none of the above is defined, it will print the debug string of // the value if it is a protocol buffer, or print the raw bytes in the // value otherwise. // // To aid debugging: when T is a reference type, the address of the // value is also printed; when T is a (const) char pointer, both the // pointer value and the NUL-terminated string it points to are // printed. // // We also provide some convenient wrappers: // // // Prints a value to a string. For a (const or not) char // // pointer, the NUL-terminated string (but not the pointer) is // // printed. // std::string ::testing::PrintToString(const T& value); // // // Prints a value tersely: for a reference type, the referenced // // value (but not the address) is printed; for a (const or not) char // // pointer, the NUL-terminated string (but not the pointer) is // // printed. // void ::testing::internal::UniversalTersePrint(const T& value, ostream*); // // // Prints value using the type inferred by the compiler. The difference // // from UniversalTersePrint() is that this function prints both the // // pointer and the NUL-terminated string for a (const or not) char pointer. // void ::testing::internal::UniversalPrint(const T& value, ostream*); // // // Prints the fields of a tuple tersely to a string vector, one // // element for each field. Tuple support must be enabled in // // gtest-port.h. // std::vector UniversalTersePrintTupleFieldsToStrings( // const Tuple& value); // // Known limitation: // // The print primitives print the elements of an STL-style container // using the compiler-inferred type of *iter where iter is a // const_iterator of the container. When const_iterator is an input // iterator but not a forward iterator, this inferred type may not // match value_type, and the print output may be incorrect. In // practice, this is rarely a problem as for most containers // const_iterator is a forward iterator. We'll fix this if there's an // actual need for it. Note that this fix cannot rely on value_type // being defined as many user-defined container types don't have // value_type. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ #include #include #include // NOLINT #include #include #include #include #include #include #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-port.h" namespace testing { // Definitions in the internal* namespaces are subject to change without notice. // DO NOT USE THEM IN USER CODE! namespace internal { template void UniversalPrint(const T& value, ::std::ostream* os); // Used to print an STL-style container when the user doesn't define // a PrintTo() for it. struct ContainerPrinter { template (0)) == sizeof(IsContainer)) && !IsRecursiveContainer::value>::type> static void PrintValue(const T& container, std::ostream* os) { const size_t kMaxCount = 32; // The maximum number of elements to print. *os << '{'; size_t count = 0; for (auto&& elem : container) { if (count > 0) { *os << ','; if (count == kMaxCount) { // Enough has been printed. *os << " ..."; break; } } *os << ' '; // We cannot call PrintTo(elem, os) here as PrintTo() doesn't // handle `elem` being a native array. internal::UniversalPrint(elem, os); ++count; } if (count > 0) { *os << ' '; } *os << '}'; } }; // Used to print a pointer that is neither a char pointer nor a member // pointer, when the user doesn't define PrintTo() for it. (A member // variable pointer or member function pointer doesn't really point to // a location in the address space. Their representation is // implementation-defined. Therefore they will be printed as raw // bytes.) struct FunctionPointerPrinter { template ::value>::type> static void PrintValue(T* p, ::std::ostream* os) { if (p == nullptr) { *os << "NULL"; } else { // T is a function type, so '*os << p' doesn't do what we want // (it just prints p as bool). We want to print p as a const // void*. *os << reinterpret_cast(p); } } }; struct PointerPrinter { template static void PrintValue(T* p, ::std::ostream* os) { if (p == nullptr) { *os << "NULL"; } else { // T is not a function type. We just call << to print p, // relying on ADL to pick up user-defined << for their pointer // types, if any. *os << p; } } }; namespace internal_stream_operator_without_lexical_name_lookup { // The presence of an operator<< here will terminate lexical scope lookup // straight away (even though it cannot be a match because of its argument // types). Thus, the two operator<< calls in StreamPrinter will find only ADL // candidates. struct LookupBlocker {}; void operator<<(LookupBlocker, LookupBlocker); struct StreamPrinter { template ::value>::type, // Only accept types for which we can find a streaming operator via // ADL (possibly involving implicit conversions). typename = decltype(std::declval() << std::declval())> static void PrintValue(const T& value, ::std::ostream* os) { // Call streaming operator found by ADL, possibly with implicit conversions // of the arguments. *os << value; } }; } // namespace internal_stream_operator_without_lexical_name_lookup struct ProtobufPrinter { // We print a protobuf using its ShortDebugString() when the string // doesn't exceed this many characters; otherwise we print it using // DebugString() for better readability. static const size_t kProtobufOneLinerMaxLength = 50; template ::value>::type> static void PrintValue(const T& value, ::std::ostream* os) { std::string pretty_str = value.ShortDebugString(); if (pretty_str.length() > kProtobufOneLinerMaxLength) { pretty_str = "\n" + value.DebugString(); } *os << ("<" + pretty_str + ">"); } }; struct ConvertibleToIntegerPrinter { // Since T has no << operator or PrintTo() but can be implicitly // converted to BiggestInt, we print it as a BiggestInt. // // Most likely T is an enum type (either named or unnamed), in which // case printing it as an integer is the desired behavior. In case // T is not an enum, printing it as an integer is the best we can do // given that it has no user-defined printer. static void PrintValue(internal::BiggestInt value, ::std::ostream* os) { *os << value; } }; struct ConvertibleToStringViewPrinter { #if GTEST_INTERNAL_HAS_STRING_VIEW static void PrintValue(internal::StringView value, ::std::ostream* os) { internal::UniversalPrint(value, os); } #endif }; // Prints the given number of bytes in the given object to the given // ostream. GTEST_API_ void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, ::std::ostream* os); struct RawBytesPrinter { // SFINAE on `sizeof` to make sure we have a complete type. template static void PrintValue(const T& value, ::std::ostream* os) { PrintBytesInObjectTo( static_cast( // Load bearing cast to void* to support iOS reinterpret_cast(std::addressof(value))), sizeof(value), os); } }; struct FallbackPrinter { template static void PrintValue(const T&, ::std::ostream* os) { *os << "(incomplete type)"; } }; // Try every printer in order and return the first one that works. template struct FindFirstPrinter : FindFirstPrinter {}; template struct FindFirstPrinter< T, decltype(Printer::PrintValue(std::declval(), nullptr)), Printer, Printers...> { using type = Printer; }; // Select the best printer in the following order: // - Print containers (they have begin/end/etc). // - Print function pointers. // - Print object pointers. // - Use the stream operator, if available. // - Print protocol buffers. // - Print types convertible to BiggestInt. // - Print types convertible to StringView, if available. // - Fallback to printing the raw bytes of the object. template void PrintWithFallback(const T& value, ::std::ostream* os) { using Printer = typename FindFirstPrinter< T, void, ContainerPrinter, FunctionPointerPrinter, PointerPrinter, internal_stream_operator_without_lexical_name_lookup::StreamPrinter, ProtobufPrinter, ConvertibleToIntegerPrinter, ConvertibleToStringViewPrinter, RawBytesPrinter, FallbackPrinter>::type; Printer::PrintValue(value, os); } // FormatForComparison::Format(value) formats a // value of type ToPrint that is an operand of a comparison assertion // (e.g. ASSERT_EQ). OtherOperand is the type of the other operand in // the comparison, and is used to help determine the best way to // format the value. In particular, when the value is a C string // (char pointer) and the other operand is an STL string object, we // want to format the C string as a string, since we know it is // compared by value with the string object. If the value is a char // pointer but the other operand is not an STL string object, we don't // know whether the pointer is supposed to point to a NUL-terminated // string, and thus want to print it as a pointer to be safe. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. // The default case. template class FormatForComparison { public: static ::std::string Format(const ToPrint& value) { return ::testing::PrintToString(value); } }; // Array. template class FormatForComparison { public: static ::std::string Format(const ToPrint* value) { return FormatForComparison::Format(value); } }; // By default, print C string as pointers to be safe, as we don't know // whether they actually point to a NUL-terminated string. #define GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(CharType) \ template \ class FormatForComparison { \ public: \ static ::std::string Format(CharType* value) { \ return ::testing::PrintToString(static_cast(value)); \ } \ } GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(wchar_t); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const wchar_t); #ifdef __cpp_char8_t GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char8_t); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char8_t); #endif GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char16_t); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char16_t); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(char32_t); GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_(const char32_t); #undef GTEST_IMPL_FORMAT_C_STRING_AS_POINTER_ // If a C string is compared with an STL string object, we know it's meant // to point to a NUL-terminated string, and thus can print it as a string. #define GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(CharType, OtherStringType) \ template <> \ class FormatForComparison { \ public: \ static ::std::string Format(CharType* value) { \ return ::testing::PrintToString(value); \ } \ } GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char, ::std::string); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char, ::std::string); #ifdef __cpp_char8_t GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char8_t, ::std::u8string); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char8_t, ::std::u8string); #endif GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char16_t, ::std::u16string); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char16_t, ::std::u16string); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(char32_t, ::std::u32string); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const char32_t, ::std::u32string); #if GTEST_HAS_STD_WSTRING GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(wchar_t, ::std::wstring); GTEST_IMPL_FORMAT_C_STRING_AS_STRING_(const wchar_t, ::std::wstring); #endif #undef GTEST_IMPL_FORMAT_C_STRING_AS_STRING_ // Formats a comparison assertion (e.g. ASSERT_EQ, EXPECT_LT, and etc) // operand to be used in a failure message. The type (but not value) // of the other operand may affect the format. This allows us to // print a char* as a raw pointer when it is compared against another // char* or void*, and print it as a C string when it is compared // against an std::string object, for example. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. template std::string FormatForComparisonFailureMessage( const T1& value, const T2& /* other_operand */) { return FormatForComparison::Format(value); } // UniversalPrinter::Print(value, ostream_ptr) prints the given // value to the given ostream. The caller must ensure that // 'ostream_ptr' is not NULL, or the behavior is undefined. // // We define UniversalPrinter as a class template (as opposed to a // function template), as we need to partially specialize it for // reference types, which cannot be done with function templates. template class UniversalPrinter; // Prints the given value using the << operator if it has one; // otherwise prints the bytes in it. This is what // UniversalPrinter::Print() does when PrintTo() is not specialized // or overloaded for type T. // // A user can override this behavior for a class type Foo by defining // an overload of PrintTo() in the namespace where Foo is defined. We // give the user this option as sometimes defining a << operator for // Foo is not desirable (e.g. the coding style may prevent doing it, // or there is already a << operator but it doesn't do what the user // wants). template void PrintTo(const T& value, ::std::ostream* os) { internal::PrintWithFallback(value, os); } // The following list of PrintTo() overloads tells // UniversalPrinter::Print() how to print standard types (built-in // types, strings, plain arrays, and pointers). // Overloads for various char types. GTEST_API_ void PrintTo(unsigned char c, ::std::ostream* os); GTEST_API_ void PrintTo(signed char c, ::std::ostream* os); inline void PrintTo(char c, ::std::ostream* os) { // When printing a plain char, we always treat it as unsigned. This // way, the output won't be affected by whether the compiler thinks // char is signed or not. PrintTo(static_cast(c), os); } // Overloads for other simple built-in types. inline void PrintTo(bool x, ::std::ostream* os) { *os << (x ? "true" : "false"); } // Overload for wchar_t type. // Prints a wchar_t as a symbol if it is printable or as its internal // code otherwise and also as its decimal code (except for L'\0'). // The L'\0' char is printed as "L'\\0'". The decimal code is printed // as signed integer when wchar_t is implemented by the compiler // as a signed type and is printed as an unsigned integer when wchar_t // is implemented as an unsigned type. GTEST_API_ void PrintTo(wchar_t wc, ::std::ostream* os); GTEST_API_ void PrintTo(char32_t c, ::std::ostream* os); inline void PrintTo(char16_t c, ::std::ostream* os) { PrintTo(ImplicitCast_(c), os); } #ifdef __cpp_char8_t inline void PrintTo(char8_t c, ::std::ostream* os) { PrintTo(ImplicitCast_(c), os); } #endif // Overloads for C strings. GTEST_API_ void PrintTo(const char* s, ::std::ostream* os); inline void PrintTo(char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } // signed/unsigned char is often used for representing binary data, so // we print pointers to it as void* to be safe. inline void PrintTo(const signed char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } inline void PrintTo(signed char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } inline void PrintTo(const unsigned char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } inline void PrintTo(unsigned char* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } #ifdef __cpp_char8_t // Overloads for u8 strings. GTEST_API_ void PrintTo(const char8_t* s, ::std::ostream* os); inline void PrintTo(char8_t* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } #endif // Overloads for u16 strings. GTEST_API_ void PrintTo(const char16_t* s, ::std::ostream* os); inline void PrintTo(char16_t* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } // Overloads for u32 strings. GTEST_API_ void PrintTo(const char32_t* s, ::std::ostream* os); inline void PrintTo(char32_t* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } // MSVC can be configured to define wchar_t as a typedef of unsigned // short. It defines _NATIVE_WCHAR_T_DEFINED when wchar_t is a native // type. When wchar_t is a typedef, defining an overload for const // wchar_t* would cause unsigned short* be printed as a wide string, // possibly causing invalid memory accesses. #if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) // Overloads for wide C strings GTEST_API_ void PrintTo(const wchar_t* s, ::std::ostream* os); inline void PrintTo(wchar_t* s, ::std::ostream* os) { PrintTo(ImplicitCast_(s), os); } #endif // Overload for C arrays. Multi-dimensional arrays are printed // properly. // Prints the given number of elements in an array, without printing // the curly braces. template void PrintRawArrayTo(const T a[], size_t count, ::std::ostream* os) { UniversalPrint(a[0], os); for (size_t i = 1; i != count; i++) { *os << ", "; UniversalPrint(a[i], os); } } // Overloads for ::std::string. GTEST_API_ void PrintStringTo(const ::std::string&s, ::std::ostream* os); inline void PrintTo(const ::std::string& s, ::std::ostream* os) { PrintStringTo(s, os); } // Overloads for ::std::u8string #ifdef __cpp_char8_t GTEST_API_ void PrintU8StringTo(const ::std::u8string& s, ::std::ostream* os); inline void PrintTo(const ::std::u8string& s, ::std::ostream* os) { PrintU8StringTo(s, os); } #endif // Overloads for ::std::u16string GTEST_API_ void PrintU16StringTo(const ::std::u16string& s, ::std::ostream* os); inline void PrintTo(const ::std::u16string& s, ::std::ostream* os) { PrintU16StringTo(s, os); } // Overloads for ::std::u32string GTEST_API_ void PrintU32StringTo(const ::std::u32string& s, ::std::ostream* os); inline void PrintTo(const ::std::u32string& s, ::std::ostream* os) { PrintU32StringTo(s, os); } // Overloads for ::std::wstring. #if GTEST_HAS_STD_WSTRING GTEST_API_ void PrintWideStringTo(const ::std::wstring&s, ::std::ostream* os); inline void PrintTo(const ::std::wstring& s, ::std::ostream* os) { PrintWideStringTo(s, os); } #endif // GTEST_HAS_STD_WSTRING #if GTEST_INTERNAL_HAS_STRING_VIEW // Overload for internal::StringView. inline void PrintTo(internal::StringView sp, ::std::ostream* os) { PrintTo(::std::string(sp), os); } #endif // GTEST_INTERNAL_HAS_STRING_VIEW inline void PrintTo(std::nullptr_t, ::std::ostream* os) { *os << "(nullptr)"; } template void PrintTo(std::reference_wrapper ref, ::std::ostream* os) { UniversalPrinter::Print(ref.get(), os); } inline const void* VoidifyPointer(const void* p) { return p; } inline const void* VoidifyPointer(volatile const void* p) { return const_cast(p); } template void PrintSmartPointer(const Ptr& ptr, std::ostream* os, char) { if (ptr == nullptr) { *os << "(nullptr)"; } else { // We can't print the value. Just print the pointer.. *os << "(" << (VoidifyPointer)(ptr.get()) << ")"; } } template ::value && !std::is_array::value>::type> void PrintSmartPointer(const Ptr& ptr, std::ostream* os, int) { if (ptr == nullptr) { *os << "(nullptr)"; } else { *os << "(ptr = " << (VoidifyPointer)(ptr.get()) << ", value = "; UniversalPrinter::Print(*ptr, os); *os << ")"; } } template void PrintTo(const std::unique_ptr& ptr, std::ostream* os) { (PrintSmartPointer)(ptr, os, 0); } template void PrintTo(const std::shared_ptr& ptr, std::ostream* os) { (PrintSmartPointer)(ptr, os, 0); } // Helper function for printing a tuple. T must be instantiated with // a tuple type. template void PrintTupleTo(const T&, std::integral_constant, ::std::ostream*) {} template void PrintTupleTo(const T& t, std::integral_constant, ::std::ostream* os) { PrintTupleTo(t, std::integral_constant(), os); GTEST_INTENTIONAL_CONST_COND_PUSH_() if (I > 1) { GTEST_INTENTIONAL_CONST_COND_POP_() *os << ", "; } UniversalPrinter::type>::Print( std::get(t), os); } template void PrintTo(const ::std::tuple& t, ::std::ostream* os) { *os << "("; PrintTupleTo(t, std::integral_constant(), os); *os << ")"; } // Overload for std::pair. template void PrintTo(const ::std::pair& value, ::std::ostream* os) { *os << '('; // We cannot use UniversalPrint(value.first, os) here, as T1 may be // a reference type. The same for printing value.second. UniversalPrinter::Print(value.first, os); *os << ", "; UniversalPrinter::Print(value.second, os); *os << ')'; } // Implements printing a non-reference type T by letting the compiler // pick the right overload of PrintTo() for T. template class UniversalPrinter { public: // MSVC warns about adding const to a function type, so we want to // disable the warning. GTEST_DISABLE_MSC_WARNINGS_PUSH_(4180) // Note: we deliberately don't call this PrintTo(), as that name // conflicts with ::testing::internal::PrintTo in the body of the // function. static void Print(const T& value, ::std::ostream* os) { // By default, ::testing::internal::PrintTo() is used for printing // the value. // // Thanks to Koenig look-up, if T is a class and has its own // PrintTo() function defined in its namespace, that function will // be visible here. Since it is more specific than the generic ones // in ::testing::internal, it will be picked by the compiler in the // following statement - exactly what we want. PrintTo(value, os); } GTEST_DISABLE_MSC_WARNINGS_POP_() }; // Remove any const-qualifiers before passing a type to UniversalPrinter. template class UniversalPrinter : public UniversalPrinter {}; #if GTEST_INTERNAL_HAS_ANY // Printer for std::any / absl::any template <> class UniversalPrinter { public: static void Print(const Any& value, ::std::ostream* os) { if (value.has_value()) { *os << "value of type " << GetTypeName(value); } else { *os << "no value"; } } private: static std::string GetTypeName(const Any& value) { #if GTEST_HAS_RTTI return internal::GetTypeName(value.type()); #else static_cast(value); // possibly unused return ""; #endif // GTEST_HAS_RTTI } }; #endif // GTEST_INTERNAL_HAS_ANY #if GTEST_INTERNAL_HAS_OPTIONAL // Printer for std::optional / absl::optional template class UniversalPrinter> { public: static void Print(const Optional& value, ::std::ostream* os) { *os << '('; if (!value) { *os << "nullopt"; } else { UniversalPrint(*value, os); } *os << ')'; } }; #endif // GTEST_INTERNAL_HAS_OPTIONAL #if GTEST_INTERNAL_HAS_VARIANT // Printer for std::variant / absl::variant template class UniversalPrinter> { public: static void Print(const Variant& value, ::std::ostream* os) { *os << '('; #if GTEST_HAS_ABSL absl::visit(Visitor{os, value.index()}, value); #else std::visit(Visitor{os, value.index()}, value); #endif // GTEST_HAS_ABSL *os << ')'; } private: struct Visitor { template void operator()(const U& u) const { *os << "'" << GetTypeName() << "(index = " << index << ")' with value "; UniversalPrint(u, os); } ::std::ostream* os; std::size_t index; }; }; #endif // GTEST_INTERNAL_HAS_VARIANT // UniversalPrintArray(begin, len, os) prints an array of 'len' // elements, starting at address 'begin'. template void UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) { if (len == 0) { *os << "{}"; } else { *os << "{ "; const size_t kThreshold = 18; const size_t kChunkSize = 8; // If the array has more than kThreshold elements, we'll have to // omit some details by printing only the first and the last // kChunkSize elements. if (len <= kThreshold) { PrintRawArrayTo(begin, len, os); } else { PrintRawArrayTo(begin, kChunkSize, os); *os << ", ..., "; PrintRawArrayTo(begin + len - kChunkSize, kChunkSize, os); } *os << " }"; } } // This overload prints a (const) char array compactly. GTEST_API_ void UniversalPrintArray( const char* begin, size_t len, ::std::ostream* os); #ifdef __cpp_char8_t // This overload prints a (const) char8_t array compactly. GTEST_API_ void UniversalPrintArray(const char8_t* begin, size_t len, ::std::ostream* os); #endif // This overload prints a (const) char16_t array compactly. GTEST_API_ void UniversalPrintArray(const char16_t* begin, size_t len, ::std::ostream* os); // This overload prints a (const) char32_t array compactly. GTEST_API_ void UniversalPrintArray(const char32_t* begin, size_t len, ::std::ostream* os); // This overload prints a (const) wchar_t array compactly. GTEST_API_ void UniversalPrintArray( const wchar_t* begin, size_t len, ::std::ostream* os); // Implements printing an array type T[N]. template class UniversalPrinter { public: // Prints the given array, omitting some elements when there are too // many. static void Print(const T (&a)[N], ::std::ostream* os) { UniversalPrintArray(a, N, os); } }; // Implements printing a reference type T&. template class UniversalPrinter { public: // MSVC warns about adding const to a function type, so we want to // disable the warning. GTEST_DISABLE_MSC_WARNINGS_PUSH_(4180) static void Print(const T& value, ::std::ostream* os) { // Prints the address of the value. We use reinterpret_cast here // as static_cast doesn't compile when T is a function type. *os << "@" << reinterpret_cast(&value) << " "; // Then prints the value itself. UniversalPrint(value, os); } GTEST_DISABLE_MSC_WARNINGS_POP_() }; // Prints a value tersely: for a reference type, the referenced value // (but not the address) is printed; for a (const) char pointer, the // NUL-terminated string (but not the pointer) is printed. template class UniversalTersePrinter { public: static void Print(const T& value, ::std::ostream* os) { UniversalPrint(value, os); } }; template class UniversalTersePrinter { public: static void Print(const T& value, ::std::ostream* os) { UniversalPrint(value, os); } }; template class UniversalTersePrinter { public: static void Print(const T (&value)[N], ::std::ostream* os) { UniversalPrinter::Print(value, os); } }; template <> class UniversalTersePrinter { public: static void Print(const char* str, ::std::ostream* os) { if (str == nullptr) { *os << "NULL"; } else { UniversalPrint(std::string(str), os); } } }; template <> class UniversalTersePrinter : public UniversalTersePrinter { }; #ifdef __cpp_char8_t template <> class UniversalTersePrinter { public: static void Print(const char8_t* str, ::std::ostream* os) { if (str == nullptr) { *os << "NULL"; } else { UniversalPrint(::std::u8string(str), os); } } }; template <> class UniversalTersePrinter : public UniversalTersePrinter {}; #endif template <> class UniversalTersePrinter { public: static void Print(const char16_t* str, ::std::ostream* os) { if (str == nullptr) { *os << "NULL"; } else { UniversalPrint(::std::u16string(str), os); } } }; template <> class UniversalTersePrinter : public UniversalTersePrinter {}; template <> class UniversalTersePrinter { public: static void Print(const char32_t* str, ::std::ostream* os) { if (str == nullptr) { *os << "NULL"; } else { UniversalPrint(::std::u32string(str), os); } } }; template <> class UniversalTersePrinter : public UniversalTersePrinter {}; #if GTEST_HAS_STD_WSTRING template <> class UniversalTersePrinter { public: static void Print(const wchar_t* str, ::std::ostream* os) { if (str == nullptr) { *os << "NULL"; } else { UniversalPrint(::std::wstring(str), os); } } }; #endif template <> class UniversalTersePrinter { public: static void Print(wchar_t* str, ::std::ostream* os) { UniversalTersePrinter::Print(str, os); } }; template void UniversalTersePrint(const T& value, ::std::ostream* os) { UniversalTersePrinter::Print(value, os); } // Prints a value using the type inferred by the compiler. The // difference between this and UniversalTersePrint() is that for a // (const) char pointer, this prints both the pointer and the // NUL-terminated string. template void UniversalPrint(const T& value, ::std::ostream* os) { // A workarond for the bug in VC++ 7.1 that prevents us from instantiating // UniversalPrinter with T directly. typedef T T1; UniversalPrinter::Print(value, os); } typedef ::std::vector< ::std::string> Strings; // Tersely prints the first N fields of a tuple to a string vector, // one element for each field. template void TersePrintPrefixToStrings(const Tuple&, std::integral_constant, Strings*) {} template void TersePrintPrefixToStrings(const Tuple& t, std::integral_constant, Strings* strings) { TersePrintPrefixToStrings(t, std::integral_constant(), strings); ::std::stringstream ss; UniversalTersePrint(std::get(t), &ss); strings->push_back(ss.str()); } // Prints the fields of a tuple tersely to a string vector, one // element for each field. See the comment before // UniversalTersePrint() for how we define "tersely". template Strings UniversalTersePrintTupleFieldsToStrings(const Tuple& value) { Strings result; TersePrintPrefixToStrings( value, std::integral_constant::value>(), &result); return result; } } // namespace internal template ::std::string PrintToString(const T& value) { ::std::stringstream ss; internal::UniversalTersePrinter::Print(value, &ss); return ss.str(); } } // namespace testing // Include any custom printer added by the local installation. // We must include this header at the end to make sure it can use the // declarations from this file. #include "gtest/internal/custom/gtest-printers.h" #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_PRINTERS_H_ ================================================ FILE: test/gtest/include/gtest/gtest-spi.h ================================================ // Copyright 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Utilities for testing Google Test itself and code that uses Google Test // (e.g. frameworks built on top of Google Test). // GOOGLETEST_CM0004 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_SPI_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_SPI_H_ #include "gtest/gtest.h" GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) namespace testing { // This helper class can be used to mock out Google Test failure reporting // so that we can test Google Test or code that builds on Google Test. // // An object of this class appends a TestPartResult object to the // TestPartResultArray object given in the constructor whenever a Google Test // failure is reported. It can either intercept only failures that are // generated in the same thread that created this object or it can intercept // all generated failures. The scope of this mock object can be controlled with // the second argument to the two arguments constructor. class GTEST_API_ ScopedFakeTestPartResultReporter : public TestPartResultReporterInterface { public: // The two possible mocking modes of this object. enum InterceptMode { INTERCEPT_ONLY_CURRENT_THREAD, // Intercepts only thread local failures. INTERCEPT_ALL_THREADS // Intercepts all failures. }; // The c'tor sets this object as the test part result reporter used // by Google Test. The 'result' parameter specifies where to report the // results. This reporter will only catch failures generated in the current // thread. DEPRECATED explicit ScopedFakeTestPartResultReporter(TestPartResultArray* result); // Same as above, but you can choose the interception scope of this object. ScopedFakeTestPartResultReporter(InterceptMode intercept_mode, TestPartResultArray* result); // The d'tor restores the previous test part result reporter. ~ScopedFakeTestPartResultReporter() override; // Appends the TestPartResult object to the TestPartResultArray // received in the constructor. // // This method is from the TestPartResultReporterInterface // interface. void ReportTestPartResult(const TestPartResult& result) override; private: void Init(); const InterceptMode intercept_mode_; TestPartResultReporterInterface* old_reporter_; TestPartResultArray* const result_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedFakeTestPartResultReporter); }; namespace internal { // A helper class for implementing EXPECT_FATAL_FAILURE() and // EXPECT_NONFATAL_FAILURE(). Its destructor verifies that the given // TestPartResultArray contains exactly one failure that has the given // type and contains the given substring. If that's not the case, a // non-fatal failure will be generated. class GTEST_API_ SingleFailureChecker { public: // The constructor remembers the arguments. SingleFailureChecker(const TestPartResultArray* results, TestPartResult::Type type, const std::string& substr); ~SingleFailureChecker(); private: const TestPartResultArray* const results_; const TestPartResult::Type type_; const std::string substr_; GTEST_DISALLOW_COPY_AND_ASSIGN_(SingleFailureChecker); }; } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 // A set of macros for testing Google Test assertions or code that's expected // to generate Google Test fatal failures. It verifies that the given // statement will cause exactly one fatal Google Test failure with 'substr' // being part of the failure message. // // There are two different versions of this macro. EXPECT_FATAL_FAILURE only // affects and considers failures generated in the current thread and // EXPECT_FATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. // // The verification of the assertion is done correctly even when the statement // throws an exception or aborts the current function. // // Known restrictions: // - 'statement' cannot reference local non-static variables or // non-static members of the current object. // - 'statement' cannot return a value. // - You cannot stream a failure message to this macro. // // Note that even though the implementations of the following two // macros are much alike, we cannot refactor them to use a common // helper macro, due to some peculiarity in how the preprocessor // works. The AcceptsMacroThatExpandsToUnprotectedComma test in // gtest_unittest.cc will fail to compile if we do that. #define EXPECT_FATAL_FAILURE(statement, substr) \ do { \ class GTestExpectFatalFailureHelper {\ public:\ static void Execute() { statement; }\ };\ ::testing::TestPartResultArray gtest_failures;\ ::testing::internal::SingleFailureChecker gtest_checker(\ >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ {\ ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ ::testing::ScopedFakeTestPartResultReporter:: \ INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ GTestExpectFatalFailureHelper::Execute();\ }\ } while (::testing::internal::AlwaysFalse()) #define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ do { \ class GTestExpectFatalFailureHelper {\ public:\ static void Execute() { statement; }\ };\ ::testing::TestPartResultArray gtest_failures;\ ::testing::internal::SingleFailureChecker gtest_checker(\ >est_failures, ::testing::TestPartResult::kFatalFailure, (substr));\ {\ ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ ::testing::ScopedFakeTestPartResultReporter:: \ INTERCEPT_ALL_THREADS, >est_failures);\ GTestExpectFatalFailureHelper::Execute();\ }\ } while (::testing::internal::AlwaysFalse()) // A macro for testing Google Test assertions or code that's expected to // generate Google Test non-fatal failures. It asserts that the given // statement will cause exactly one non-fatal Google Test failure with 'substr' // being part of the failure message. // // There are two different versions of this macro. EXPECT_NONFATAL_FAILURE only // affects and considers failures generated in the current thread and // EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS does the same but for all threads. // // 'statement' is allowed to reference local variables and members of // the current object. // // The verification of the assertion is done correctly even when the statement // throws an exception or aborts the current function. // // Known restrictions: // - You cannot stream a failure message to this macro. // // Note that even though the implementations of the following two // macros are much alike, we cannot refactor them to use a common // helper macro, due to some peculiarity in how the preprocessor // works. If we do that, the code won't compile when the user gives // EXPECT_NONFATAL_FAILURE() a statement that contains a macro that // expands to code containing an unprotected comma. The // AcceptsMacroThatExpandsToUnprotectedComma test in gtest_unittest.cc // catches that. // // For the same reason, we have to write // if (::testing::internal::AlwaysTrue()) { statement; } // instead of // GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) // to avoid an MSVC warning on unreachable code. #define EXPECT_NONFATAL_FAILURE(statement, substr) \ do {\ ::testing::TestPartResultArray gtest_failures;\ ::testing::internal::SingleFailureChecker gtest_checker(\ >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ (substr));\ {\ ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ ::testing::ScopedFakeTestPartResultReporter:: \ INTERCEPT_ONLY_CURRENT_THREAD, >est_failures);\ if (::testing::internal::AlwaysTrue()) { statement; }\ }\ } while (::testing::internal::AlwaysFalse()) #define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \ do {\ ::testing::TestPartResultArray gtest_failures;\ ::testing::internal::SingleFailureChecker gtest_checker(\ >est_failures, ::testing::TestPartResult::kNonFatalFailure, \ (substr));\ {\ ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\ ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS, \ >est_failures);\ if (::testing::internal::AlwaysTrue()) { statement; }\ }\ } while (::testing::internal::AlwaysFalse()) #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_SPI_H_ ================================================ FILE: test/gtest/include/gtest/gtest-test-part.h ================================================ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ #include #include #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-string.h" GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) namespace testing { // A copyable object representing the result of a test part (i.e. an // assertion or an explicit FAIL(), ADD_FAILURE(), or SUCCESS()). // // Don't inherit from TestPartResult as its destructor is not virtual. class GTEST_API_ TestPartResult { public: // The possible outcomes of a test part (i.e. an assertion or an // explicit SUCCEED(), FAIL(), or ADD_FAILURE()). enum Type { kSuccess, // Succeeded. kNonFatalFailure, // Failed but the test can continue. kFatalFailure, // Failed and the test should be terminated. kSkip // Skipped. }; // C'tor. TestPartResult does NOT have a default constructor. // Always use this constructor (with parameters) to create a // TestPartResult object. TestPartResult(Type a_type, const char* a_file_name, int a_line_number, const char* a_message) : type_(a_type), file_name_(a_file_name == nullptr ? "" : a_file_name), line_number_(a_line_number), summary_(ExtractSummary(a_message)), message_(a_message) {} // Gets the outcome of the test part. Type type() const { return type_; } // Gets the name of the source file where the test part took place, or // NULL if it's unknown. const char* file_name() const { return file_name_.empty() ? nullptr : file_name_.c_str(); } // Gets the line in the source file where the test part took place, // or -1 if it's unknown. int line_number() const { return line_number_; } // Gets the summary of the failure message. const char* summary() const { return summary_.c_str(); } // Gets the message associated with the test part. const char* message() const { return message_.c_str(); } // Returns true if and only if the test part was skipped. bool skipped() const { return type_ == kSkip; } // Returns true if and only if the test part passed. bool passed() const { return type_ == kSuccess; } // Returns true if and only if the test part non-fatally failed. bool nonfatally_failed() const { return type_ == kNonFatalFailure; } // Returns true if and only if the test part fatally failed. bool fatally_failed() const { return type_ == kFatalFailure; } // Returns true if and only if the test part failed. bool failed() const { return fatally_failed() || nonfatally_failed(); } private: Type type_; // Gets the summary of the failure message by omitting the stack // trace in it. static std::string ExtractSummary(const char* message); // The name of the source file where the test part took place, or // "" if the source file is unknown. std::string file_name_; // The line in the source file where the test part took place, or -1 // if the line number is unknown. int line_number_; std::string summary_; // The test failure summary. std::string message_; // The test failure message. }; // Prints a TestPartResult object. std::ostream& operator<<(std::ostream& os, const TestPartResult& result); // An array of TestPartResult objects. // // Don't inherit from TestPartResultArray as its destructor is not // virtual. class GTEST_API_ TestPartResultArray { public: TestPartResultArray() {} // Appends the given TestPartResult to the array. void Append(const TestPartResult& result); // Returns the TestPartResult at the given index (0-based). const TestPartResult& GetTestPartResult(int index) const; // Returns the number of TestPartResult objects in the array. int size() const; private: std::vector array_; GTEST_DISALLOW_COPY_AND_ASSIGN_(TestPartResultArray); }; // This interface knows how to report a test part result. class GTEST_API_ TestPartResultReporterInterface { public: virtual ~TestPartResultReporterInterface() {} virtual void ReportTestPartResult(const TestPartResult& result) = 0; }; namespace internal { // This helper class is used by {ASSERT|EXPECT}_NO_FATAL_FAILURE to check if a // statement generates new fatal failures. To do so it registers itself as the // current test part result reporter. Besides checking if fatal failures were // reported, it only delegates the reporting to the former result reporter. // The original result reporter is restored in the destructor. // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. class GTEST_API_ HasNewFatalFailureHelper : public TestPartResultReporterInterface { public: HasNewFatalFailureHelper(); ~HasNewFatalFailureHelper() override; void ReportTestPartResult(const TestPartResult& result) override; bool has_new_fatal_failure() const { return has_new_fatal_failure_; } private: bool has_new_fatal_failure_; TestPartResultReporterInterface* original_reporter_; GTEST_DISALLOW_COPY_AND_ASSIGN_(HasNewFatalFailureHelper); }; } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_TEST_PART_H_ ================================================ FILE: test/gtest/include/gtest/gtest-typed-test.h ================================================ // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ // This header implements typed tests and type-parameterized tests. // Typed (aka type-driven) tests repeat the same test for types in a // list. You must know which types you want to test with when writing // typed tests. Here's how you do it: #if 0 // First, define a fixture class template. It should be parameterized // by a type. Remember to derive it from testing::Test. template class FooTest : public testing::Test { public: ... typedef std::list List; static T shared_; T value_; }; // Next, associate a list of types with the test suite, which will be // repeated for each type in the list. The typedef is necessary for // the macro to parse correctly. typedef testing::Types MyTypes; TYPED_TEST_SUITE(FooTest, MyTypes); // If the type list contains only one type, you can write that type // directly without Types<...>: // TYPED_TEST_SUITE(FooTest, int); // Then, use TYPED_TEST() instead of TEST_F() to define as many typed // tests for this test suite as you want. TYPED_TEST(FooTest, DoesBlah) { // Inside a test, refer to the special name TypeParam to get the type // parameter. Since we are inside a derived class template, C++ requires // us to visit the members of FooTest via 'this'. TypeParam n = this->value_; // To visit static members of the fixture, add the TestFixture:: // prefix. n += TestFixture::shared_; // To refer to typedefs in the fixture, add the "typename // TestFixture::" prefix. typename TestFixture::List values; values.push_back(n); ... } TYPED_TEST(FooTest, HasPropertyA) { ... } // TYPED_TEST_SUITE takes an optional third argument which allows to specify a // class that generates custom test name suffixes based on the type. This should // be a class which has a static template function GetName(int index) returning // a string for each type. The provided integer index equals the index of the // type in the provided type list. In many cases the index can be ignored. // // For example: // class MyTypeNames { // public: // template // static std::string GetName(int) { // if (std::is_same()) return "char"; // if (std::is_same()) return "int"; // if (std::is_same()) return "unsignedInt"; // } // }; // TYPED_TEST_SUITE(FooTest, MyTypes, MyTypeNames); #endif // 0 // Type-parameterized tests are abstract test patterns parameterized // by a type. Compared with typed tests, type-parameterized tests // allow you to define the test pattern without knowing what the type // parameters are. The defined pattern can be instantiated with // different types any number of times, in any number of translation // units. // // If you are designing an interface or concept, you can define a // suite of type-parameterized tests to verify properties that any // valid implementation of the interface/concept should have. Then, // each implementation can easily instantiate the test suite to verify // that it conforms to the requirements, without having to write // similar tests repeatedly. Here's an example: #if 0 // First, define a fixture class template. It should be parameterized // by a type. Remember to derive it from testing::Test. template class FooTest : public testing::Test { ... }; // Next, declare that you will define a type-parameterized test suite // (the _P suffix is for "parameterized" or "pattern", whichever you // prefer): TYPED_TEST_SUITE_P(FooTest); // Then, use TYPED_TEST_P() to define as many type-parameterized tests // for this type-parameterized test suite as you want. TYPED_TEST_P(FooTest, DoesBlah) { // Inside a test, refer to TypeParam to get the type parameter. TypeParam n = 0; ... } TYPED_TEST_P(FooTest, HasPropertyA) { ... } // Now the tricky part: you need to register all test patterns before // you can instantiate them. The first argument of the macro is the // test suite name; the rest are the names of the tests in this test // case. REGISTER_TYPED_TEST_SUITE_P(FooTest, DoesBlah, HasPropertyA); // Finally, you are free to instantiate the pattern with the types you // want. If you put the above code in a header file, you can #include // it in multiple C++ source files and instantiate it multiple times. // // To distinguish different instances of the pattern, the first // argument to the INSTANTIATE_* macro is a prefix that will be added // to the actual test suite name. Remember to pick unique prefixes for // different instances. typedef testing::Types MyTypes; INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes); // If the type list contains only one type, you can write that type // directly without Types<...>: // INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, int); // // Similar to the optional argument of TYPED_TEST_SUITE above, // INSTANTIATE_TEST_SUITE_P takes an optional fourth argument which allows to // generate custom names. // INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes, MyTypeNames); #endif // 0 #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-port.h" #include "gtest/internal/gtest-type-util.h" // Implements typed tests. // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Expands to the name of the typedef for the type parameters of the // given test suite. #define GTEST_TYPE_PARAMS_(TestSuiteName) gtest_type_params_##TestSuiteName##_ // Expands to the name of the typedef for the NameGenerator, responsible for // creating the suffixes of the name. #define GTEST_NAME_GENERATOR_(TestSuiteName) \ gtest_type_params_##TestSuiteName##_NameGenerator #define TYPED_TEST_SUITE(CaseName, Types, ...) \ typedef ::testing::internal::GenerateTypeList::type \ GTEST_TYPE_PARAMS_(CaseName); \ typedef ::testing::internal::NameGeneratorSelector<__VA_ARGS__>::type \ GTEST_NAME_GENERATOR_(CaseName) #define TYPED_TEST(CaseName, TestName) \ static_assert(sizeof(GTEST_STRINGIFY_(TestName)) > 1, \ "test-name must not be empty"); \ template \ class GTEST_TEST_CLASS_NAME_(CaseName, TestName) \ : public CaseName { \ private: \ typedef CaseName TestFixture; \ typedef gtest_TypeParam_ TypeParam; \ void TestBody() override; \ }; \ static bool gtest_##CaseName##_##TestName##_registered_ \ GTEST_ATTRIBUTE_UNUSED_ = ::testing::internal::TypeParameterizedTest< \ CaseName, \ ::testing::internal::TemplateSel, \ GTEST_TYPE_PARAMS_( \ CaseName)>::Register("", \ ::testing::internal::CodeLocation( \ __FILE__, __LINE__), \ GTEST_STRINGIFY_(CaseName), \ GTEST_STRINGIFY_(TestName), 0, \ ::testing::internal::GenerateNames< \ GTEST_NAME_GENERATOR_(CaseName), \ GTEST_TYPE_PARAMS_(CaseName)>()); \ template \ void GTEST_TEST_CLASS_NAME_(CaseName, \ TestName)::TestBody() // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ #define TYPED_TEST_CASE \ static_assert(::testing::internal::TypedTestCaseIsDeprecated(), ""); \ TYPED_TEST_SUITE #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Implements type-parameterized tests. // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Expands to the namespace name that the type-parameterized tests for // the given type-parameterized test suite are defined in. The exact // name of the namespace is subject to change without notice. #define GTEST_SUITE_NAMESPACE_(TestSuiteName) gtest_suite_##TestSuiteName##_ // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Expands to the name of the variable used to remember the names of // the defined tests in the given test suite. #define GTEST_TYPED_TEST_SUITE_P_STATE_(TestSuiteName) \ gtest_typed_test_suite_p_state_##TestSuiteName##_ // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY. // // Expands to the name of the variable used to remember the names of // the registered tests in the given test suite. #define GTEST_REGISTERED_TEST_NAMES_(TestSuiteName) \ gtest_registered_test_names_##TestSuiteName##_ // The variables defined in the type-parameterized test macros are // static as typically these macros are used in a .h file that can be // #included in multiple translation units linked together. #define TYPED_TEST_SUITE_P(SuiteName) \ static ::testing::internal::TypedTestSuitePState \ GTEST_TYPED_TEST_SUITE_P_STATE_(SuiteName) // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ #define TYPED_TEST_CASE_P \ static_assert(::testing::internal::TypedTestCase_P_IsDeprecated(), ""); \ TYPED_TEST_SUITE_P #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ #define TYPED_TEST_P(SuiteName, TestName) \ namespace GTEST_SUITE_NAMESPACE_(SuiteName) { \ template \ class TestName : public SuiteName { \ private: \ typedef SuiteName TestFixture; \ typedef gtest_TypeParam_ TypeParam; \ void TestBody() override; \ }; \ static bool gtest_##TestName##_defined_ GTEST_ATTRIBUTE_UNUSED_ = \ GTEST_TYPED_TEST_SUITE_P_STATE_(SuiteName).AddTestName( \ __FILE__, __LINE__, GTEST_STRINGIFY_(SuiteName), \ GTEST_STRINGIFY_(TestName)); \ } \ template \ void GTEST_SUITE_NAMESPACE_( \ SuiteName)::TestName::TestBody() // Note: this won't work correctly if the trailing arguments are macros. #define REGISTER_TYPED_TEST_SUITE_P(SuiteName, ...) \ namespace GTEST_SUITE_NAMESPACE_(SuiteName) { \ typedef ::testing::internal::Templates<__VA_ARGS__> gtest_AllTests_; \ } \ static const char* const GTEST_REGISTERED_TEST_NAMES_( \ SuiteName) GTEST_ATTRIBUTE_UNUSED_ = \ GTEST_TYPED_TEST_SUITE_P_STATE_(SuiteName).VerifyRegisteredTestNames( \ GTEST_STRINGIFY_(SuiteName), __FILE__, __LINE__, #__VA_ARGS__) // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ #define REGISTER_TYPED_TEST_CASE_P \ static_assert(::testing::internal::RegisterTypedTestCase_P_IsDeprecated(), \ ""); \ REGISTER_TYPED_TEST_SUITE_P #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ #define INSTANTIATE_TYPED_TEST_SUITE_P(Prefix, SuiteName, Types, ...) \ static_assert(sizeof(GTEST_STRINGIFY_(Prefix)) > 1, \ "test-suit-prefix must not be empty"); \ static bool gtest_##Prefix##_##SuiteName GTEST_ATTRIBUTE_UNUSED_ = \ ::testing::internal::TypeParameterizedTestSuite< \ SuiteName, GTEST_SUITE_NAMESPACE_(SuiteName)::gtest_AllTests_, \ ::testing::internal::GenerateTypeList::type>:: \ Register(GTEST_STRINGIFY_(Prefix), \ ::testing::internal::CodeLocation(__FILE__, __LINE__), \ >EST_TYPED_TEST_SUITE_P_STATE_(SuiteName), \ GTEST_STRINGIFY_(SuiteName), \ GTEST_REGISTERED_TEST_NAMES_(SuiteName), \ ::testing::internal::GenerateNames< \ ::testing::internal::NameGeneratorSelector< \ __VA_ARGS__>::type, \ ::testing::internal::GenerateTypeList::type>()) // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ #define INSTANTIATE_TYPED_TEST_CASE_P \ static_assert( \ ::testing::internal::InstantiateTypedTestCase_P_IsDeprecated(), ""); \ INSTANTIATE_TYPED_TEST_SUITE_P #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_ ================================================ FILE: test/gtest/include/gtest/gtest.h ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines the public API for Google Test. It should be // included by any test program that uses Google Test. // // IMPORTANT NOTE: Due to limitation of the C++ language, we have to // leave some internal implementation details in this header file. // They are clearly marked by comments like this: // // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. // // Such code is NOT meant to be used by a user directly, and is subject // to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user // program! // // Acknowledgment: Google Test borrowed the idea of automatic test // registration from Barthelemy Dagenais' (barthelemy@prologique.com) // easyUnit framework. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_H_ #include #include #include #include #include #include #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-string.h" #include "gtest/gtest-death-test.h" #include "gtest/gtest-matchers.h" #include "gtest/gtest-message.h" #include "gtest/gtest-param-test.h" #include "gtest/gtest-printers.h" #include "gtest/gtest_prod.h" #include "gtest/gtest-test-part.h" #include "gtest/gtest-typed-test.h" GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) namespace testing { // Silence C4100 (unreferenced formal parameter) and 4805 // unsafe mix of type 'const int' and type 'const bool' #ifdef _MSC_VER # pragma warning(push) # pragma warning(disable:4805) # pragma warning(disable:4100) #endif // Declares the flags. // This flag temporary enables the disabled tests. GTEST_DECLARE_bool_(also_run_disabled_tests); // This flag brings the debugger on an assertion failure. GTEST_DECLARE_bool_(break_on_failure); // This flag controls whether Google Test catches all test-thrown exceptions // and logs them as failures. GTEST_DECLARE_bool_(catch_exceptions); // This flag enables using colors in terminal output. Available values are // "yes" to enable colors, "no" (disable colors), or "auto" (the default) // to let Google Test decide. GTEST_DECLARE_string_(color); // This flag controls whether the test runner should continue execution past // first failure. GTEST_DECLARE_bool_(fail_fast); // This flag sets up the filter to select by name using a glob pattern // the tests to run. If the filter is not given all tests are executed. GTEST_DECLARE_string_(filter); // This flag controls whether Google Test installs a signal handler that dumps // debugging information when fatal signals are raised. GTEST_DECLARE_bool_(install_failure_signal_handler); // This flag causes the Google Test to list tests. None of the tests listed // are actually run if the flag is provided. GTEST_DECLARE_bool_(list_tests); // This flag controls whether Google Test emits a detailed XML report to a file // in addition to its normal textual output. GTEST_DECLARE_string_(output); // This flags control whether Google Test prints only test failures. GTEST_DECLARE_bool_(brief); // This flags control whether Google Test prints the elapsed time for each // test. GTEST_DECLARE_bool_(print_time); // This flags control whether Google Test prints UTF8 characters as text. GTEST_DECLARE_bool_(print_utf8); // This flag specifies the random number seed. GTEST_DECLARE_int32_(random_seed); // This flag sets how many times the tests are repeated. The default value // is 1. If the value is -1 the tests are repeating forever. GTEST_DECLARE_int32_(repeat); // This flag controls whether Google Test includes Google Test internal // stack frames in failure stack traces. GTEST_DECLARE_bool_(show_internal_stack_frames); // When this flag is specified, tests' order is randomized on every iteration. GTEST_DECLARE_bool_(shuffle); // This flag specifies the maximum number of stack frames to be // printed in a failure message. GTEST_DECLARE_int32_(stack_trace_depth); // When this flag is specified, a failed assertion will throw an // exception if exceptions are enabled, or exit the program with a // non-zero code otherwise. For use with an external test framework. GTEST_DECLARE_bool_(throw_on_failure); // When this flag is set with a "host:port" string, on supported // platforms test results are streamed to the specified port on // the specified host machine. GTEST_DECLARE_string_(stream_result_to); #if GTEST_USE_OWN_FLAGFILE_FLAG_ GTEST_DECLARE_string_(flagfile); #endif // GTEST_USE_OWN_FLAGFILE_FLAG_ // The upper limit for valid stack trace depths. const int kMaxStackTraceDepth = 100; namespace internal { class AssertHelper; class DefaultGlobalTestPartResultReporter; class ExecDeathTest; class NoExecDeathTest; class FinalSuccessChecker; class GTestFlagSaver; class StreamingListenerTest; class TestResultAccessor; class TestEventListenersAccessor; class TestEventRepeater; class UnitTestRecordPropertyTestHelper; class WindowsDeathTest; class FuchsiaDeathTest; class UnitTestImpl* GetUnitTestImpl(); void ReportFailureInUnknownLocation(TestPartResult::Type result_type, const std::string& message); std::set* GetIgnoredParameterizedTestSuites(); } // namespace internal // The friend relationship of some of these classes is cyclic. // If we don't forward declare them the compiler might confuse the classes // in friendship clauses with same named classes on the scope. class Test; class TestSuite; // Old API is still available but deprecated #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ using TestCase = TestSuite; #endif class TestInfo; class UnitTest; // A class for indicating whether an assertion was successful. When // the assertion wasn't successful, the AssertionResult object // remembers a non-empty message that describes how it failed. // // To create an instance of this class, use one of the factory functions // (AssertionSuccess() and AssertionFailure()). // // This class is useful for two purposes: // 1. Defining predicate functions to be used with Boolean test assertions // EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts // 2. Defining predicate-format functions to be // used with predicate assertions (ASSERT_PRED_FORMAT*, etc). // // For example, if you define IsEven predicate: // // testing::AssertionResult IsEven(int n) { // if ((n % 2) == 0) // return testing::AssertionSuccess(); // else // return testing::AssertionFailure() << n << " is odd"; // } // // Then the failed expectation EXPECT_TRUE(IsEven(Fib(5))) // will print the message // // Value of: IsEven(Fib(5)) // Actual: false (5 is odd) // Expected: true // // instead of a more opaque // // Value of: IsEven(Fib(5)) // Actual: false // Expected: true // // in case IsEven is a simple Boolean predicate. // // If you expect your predicate to be reused and want to support informative // messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up // about half as often as positive ones in our tests), supply messages for // both success and failure cases: // // testing::AssertionResult IsEven(int n) { // if ((n % 2) == 0) // return testing::AssertionSuccess() << n << " is even"; // else // return testing::AssertionFailure() << n << " is odd"; // } // // Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print // // Value of: IsEven(Fib(6)) // Actual: true (8 is even) // Expected: false // // NB: Predicates that support negative Boolean assertions have reduced // performance in positive ones so be careful not to use them in tests // that have lots (tens of thousands) of positive Boolean assertions. // // To use this class with EXPECT_PRED_FORMAT assertions such as: // // // Verifies that Foo() returns an even number. // EXPECT_PRED_FORMAT1(IsEven, Foo()); // // you need to define: // // testing::AssertionResult IsEven(const char* expr, int n) { // if ((n % 2) == 0) // return testing::AssertionSuccess(); // else // return testing::AssertionFailure() // << "Expected: " << expr << " is even\n Actual: it's " << n; // } // // If Foo() returns 5, you will see the following message: // // Expected: Foo() is even // Actual: it's 5 // class GTEST_API_ AssertionResult { public: // Copy constructor. // Used in EXPECT_TRUE/FALSE(assertion_result). AssertionResult(const AssertionResult& other); // C4800 is a level 3 warning in Visual Studio 2015 and earlier. // This warning is not emitted in Visual Studio 2017. // This warning is off by default starting in Visual Studio 2019 but can be // enabled with command-line options. #if defined(_MSC_VER) && (_MSC_VER < 1910 || _MSC_VER >= 1920) GTEST_DISABLE_MSC_WARNINGS_PUSH_(4800 /* forcing value to bool */) #endif // Used in the EXPECT_TRUE/FALSE(bool_expression). // // T must be contextually convertible to bool. // // The second parameter prevents this overload from being considered if // the argument is implicitly convertible to AssertionResult. In that case // we want AssertionResult's copy constructor to be used. template explicit AssertionResult( const T& success, typename std::enable_if< !std::is_convertible::value>::type* /*enabler*/ = nullptr) : success_(success) {} #if defined(_MSC_VER) && (_MSC_VER < 1910 || _MSC_VER >= 1920) GTEST_DISABLE_MSC_WARNINGS_POP_() #endif // Assignment operator. AssertionResult& operator=(AssertionResult other) { swap(other); return *this; } // Returns true if and only if the assertion succeeded. operator bool() const { return success_; } // NOLINT // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. AssertionResult operator!() const; // Returns the text streamed into this AssertionResult. Test assertions // use it when they fail (i.e., the predicate's outcome doesn't match the // assertion's expectation). When nothing has been streamed into the // object, returns an empty string. const char* message() const { return message_.get() != nullptr ? message_->c_str() : ""; } // Deprecated; please use message() instead. const char* failure_message() const { return message(); } // Streams a custom failure message into this object. template AssertionResult& operator<<(const T& value) { AppendMessage(Message() << value); return *this; } // Allows streaming basic output manipulators such as endl or flush into // this object. AssertionResult& operator<<( ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) { AppendMessage(Message() << basic_manipulator); return *this; } private: // Appends the contents of message to message_. void AppendMessage(const Message& a_message) { if (message_.get() == nullptr) message_.reset(new ::std::string); message_->append(a_message.GetString().c_str()); } // Swap the contents of this AssertionResult with other. void swap(AssertionResult& other); // Stores result of the assertion predicate. bool success_; // Stores the message describing the condition in case the expectation // construct is not satisfied with the predicate's outcome. // Referenced via a pointer to avoid taking too much stack frame space // with test assertions. std::unique_ptr< ::std::string> message_; }; // Makes a successful assertion result. GTEST_API_ AssertionResult AssertionSuccess(); // Makes a failed assertion result. GTEST_API_ AssertionResult AssertionFailure(); // Makes a failed assertion result with the given failure message. // Deprecated; use AssertionFailure() << msg. GTEST_API_ AssertionResult AssertionFailure(const Message& msg); } // namespace testing // Includes the auto-generated header that implements a family of generic // predicate assertion macros. This include comes late because it relies on // APIs declared above. #include "gtest/gtest_pred_impl.h" namespace testing { // The abstract class that all tests inherit from. // // In Google Test, a unit test program contains one or many TestSuites, and // each TestSuite contains one or many Tests. // // When you define a test using the TEST macro, you don't need to // explicitly derive from Test - the TEST macro automatically does // this for you. // // The only time you derive from Test is when defining a test fixture // to be used in a TEST_F. For example: // // class FooTest : public testing::Test { // protected: // void SetUp() override { ... } // void TearDown() override { ... } // ... // }; // // TEST_F(FooTest, Bar) { ... } // TEST_F(FooTest, Baz) { ... } // // Test is not copyable. class GTEST_API_ Test { public: friend class TestInfo; // The d'tor is virtual as we intend to inherit from Test. virtual ~Test(); // Sets up the stuff shared by all tests in this test suite. // // Google Test will call Foo::SetUpTestSuite() before running the first // test in test suite Foo. Hence a sub-class can define its own // SetUpTestSuite() method to shadow the one defined in the super // class. static void SetUpTestSuite() {} // Tears down the stuff shared by all tests in this test suite. // // Google Test will call Foo::TearDownTestSuite() after running the last // test in test suite Foo. Hence a sub-class can define its own // TearDownTestSuite() method to shadow the one defined in the super // class. static void TearDownTestSuite() {} // Legacy API is deprecated but still available. Use SetUpTestSuite and // TearDownTestSuite instead. #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ static void TearDownTestCase() {} static void SetUpTestCase() {} #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Returns true if and only if the current test has a fatal failure. static bool HasFatalFailure(); // Returns true if and only if the current test has a non-fatal failure. static bool HasNonfatalFailure(); // Returns true if and only if the current test was skipped. static bool IsSkipped(); // Returns true if and only if the current test has a (either fatal or // non-fatal) failure. static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); } // Logs a property for the current test, test suite, or for the entire // invocation of the test program when used outside of the context of a // test suite. Only the last value for a given key is remembered. These // are public static so they can be called from utility functions that are // not members of the test fixture. Calls to RecordProperty made during // lifespan of the test (from the moment its constructor starts to the // moment its destructor finishes) will be output in XML as attributes of // the element. Properties recorded from fixture's // SetUpTestSuite or TearDownTestSuite are logged as attributes of the // corresponding element. Calls to RecordProperty made in the // global context (before or after invocation of RUN_ALL_TESTS and from // SetUp/TearDown method of Environment objects registered with Google // Test) will be output as attributes of the element. static void RecordProperty(const std::string& key, const std::string& value); static void RecordProperty(const std::string& key, int value); protected: // Creates a Test object. Test(); // Sets up the test fixture. virtual void SetUp(); // Tears down the test fixture. virtual void TearDown(); private: // Returns true if and only if the current test has the same fixture class // as the first test in the current test suite. static bool HasSameFixtureClass(); // Runs the test after the test fixture has been set up. // // A sub-class must implement this to define the test logic. // // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM. // Instead, use the TEST or TEST_F macro. virtual void TestBody() = 0; // Sets up, executes, and tears down the test. void Run(); // Deletes self. We deliberately pick an unusual name for this // internal method to avoid clashing with names used in user TESTs. void DeleteSelf_() { delete this; } const std::unique_ptr gtest_flag_saver_; // Often a user misspells SetUp() as Setup() and spends a long time // wondering why it is never called by Google Test. The declaration of // the following method is solely for catching such an error at // compile time: // // - The return type is deliberately chosen to be not void, so it // will be a conflict if void Setup() is declared in the user's // test fixture. // // - This method is private, so it will be another compiler error // if the method is called from the user's test fixture. // // DO NOT OVERRIDE THIS FUNCTION. // // If you see an error about overriding the following function or // about it being private, you have mis-spelled SetUp() as Setup(). struct Setup_should_be_spelled_SetUp {}; virtual Setup_should_be_spelled_SetUp* Setup() { return nullptr; } // We disallow copying Tests. GTEST_DISALLOW_COPY_AND_ASSIGN_(Test); }; typedef internal::TimeInMillis TimeInMillis; // A copyable object representing a user specified test property which can be // output as a key/value string pair. // // Don't inherit from TestProperty as its destructor is not virtual. class TestProperty { public: // C'tor. TestProperty does NOT have a default constructor. // Always use this constructor (with parameters) to create a // TestProperty object. TestProperty(const std::string& a_key, const std::string& a_value) : key_(a_key), value_(a_value) { } // Gets the user supplied key. const char* key() const { return key_.c_str(); } // Gets the user supplied value. const char* value() const { return value_.c_str(); } // Sets a new value, overriding the one supplied in the constructor. void SetValue(const std::string& new_value) { value_ = new_value; } private: // The key supplied by the user. std::string key_; // The value supplied by the user. std::string value_; }; // The result of a single Test. This includes a list of // TestPartResults, a list of TestProperties, a count of how many // death tests there are in the Test, and how much time it took to run // the Test. // // TestResult is not copyable. class GTEST_API_ TestResult { public: // Creates an empty TestResult. TestResult(); // D'tor. Do not inherit from TestResult. ~TestResult(); // Gets the number of all test parts. This is the sum of the number // of successful test parts and the number of failed test parts. int total_part_count() const; // Returns the number of the test properties. int test_property_count() const; // Returns true if and only if the test passed (i.e. no test part failed). bool Passed() const { return !Skipped() && !Failed(); } // Returns true if and only if the test was skipped. bool Skipped() const; // Returns true if and only if the test failed. bool Failed() const; // Returns true if and only if the test fatally failed. bool HasFatalFailure() const; // Returns true if and only if the test has a non-fatal failure. bool HasNonfatalFailure() const; // Returns the elapsed time, in milliseconds. TimeInMillis elapsed_time() const { return elapsed_time_; } // Gets the time of the test case start, in ms from the start of the // UNIX epoch. TimeInMillis start_timestamp() const { return start_timestamp_; } // Returns the i-th test part result among all the results. i can range from 0 // to total_part_count() - 1. If i is not in that range, aborts the program. const TestPartResult& GetTestPartResult(int i) const; // Returns the i-th test property. i can range from 0 to // test_property_count() - 1. If i is not in that range, aborts the // program. const TestProperty& GetTestProperty(int i) const; private: friend class TestInfo; friend class TestSuite; friend class UnitTest; friend class internal::DefaultGlobalTestPartResultReporter; friend class internal::ExecDeathTest; friend class internal::TestResultAccessor; friend class internal::UnitTestImpl; friend class internal::WindowsDeathTest; friend class internal::FuchsiaDeathTest; // Gets the vector of TestPartResults. const std::vector& test_part_results() const { return test_part_results_; } // Gets the vector of TestProperties. const std::vector& test_properties() const { return test_properties_; } // Sets the start time. void set_start_timestamp(TimeInMillis start) { start_timestamp_ = start; } // Sets the elapsed time. void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; } // Adds a test property to the list. The property is validated and may add // a non-fatal failure if invalid (e.g., if it conflicts with reserved // key names). If a property is already recorded for the same key, the // value will be updated, rather than storing multiple values for the same // key. xml_element specifies the element for which the property is being // recorded and is used for validation. void RecordProperty(const std::string& xml_element, const TestProperty& test_property); // Adds a failure if the key is a reserved attribute of Google Test // testsuite tags. Returns true if the property is valid. // FIXME: Validate attribute names are legal and human readable. static bool ValidateTestProperty(const std::string& xml_element, const TestProperty& test_property); // Adds a test part result to the list. void AddTestPartResult(const TestPartResult& test_part_result); // Returns the death test count. int death_test_count() const { return death_test_count_; } // Increments the death test count, returning the new count. int increment_death_test_count() { return ++death_test_count_; } // Clears the test part results. void ClearTestPartResults(); // Clears the object. void Clear(); // Protects mutable state of the property vector and of owned // properties, whose values may be updated. internal::Mutex test_properties_mutex_; // The vector of TestPartResults std::vector test_part_results_; // The vector of TestProperties std::vector test_properties_; // Running count of death tests. int death_test_count_; // The start time, in milliseconds since UNIX Epoch. TimeInMillis start_timestamp_; // The elapsed time, in milliseconds. TimeInMillis elapsed_time_; // We disallow copying TestResult. GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult); }; // class TestResult // A TestInfo object stores the following information about a test: // // Test suite name // Test name // Whether the test should be run // A function pointer that creates the test object when invoked // Test result // // The constructor of TestInfo registers itself with the UnitTest // singleton such that the RUN_ALL_TESTS() macro knows which tests to // run. class GTEST_API_ TestInfo { public: // Destructs a TestInfo object. This function is not virtual, so // don't inherit from TestInfo. ~TestInfo(); // Returns the test suite name. const char* test_suite_name() const { return test_suite_name_.c_str(); } // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ const char* test_case_name() const { return test_suite_name(); } #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Returns the test name. const char* name() const { return name_.c_str(); } // Returns the name of the parameter type, or NULL if this is not a typed // or a type-parameterized test. const char* type_param() const { if (type_param_.get() != nullptr) return type_param_->c_str(); return nullptr; } // Returns the text representation of the value parameter, or NULL if this // is not a value-parameterized test. const char* value_param() const { if (value_param_.get() != nullptr) return value_param_->c_str(); return nullptr; } // Returns the file name where this test is defined. const char* file() const { return location_.file.c_str(); } // Returns the line where this test is defined. int line() const { return location_.line; } // Return true if this test should not be run because it's in another shard. bool is_in_another_shard() const { return is_in_another_shard_; } // Returns true if this test should run, that is if the test is not // disabled (or it is disabled but the also_run_disabled_tests flag has // been specified) and its full name matches the user-specified filter. // // Google Test allows the user to filter the tests by their full names. // The full name of a test Bar in test suite Foo is defined as // "Foo.Bar". Only the tests that match the filter will run. // // A filter is a colon-separated list of glob (not regex) patterns, // optionally followed by a '-' and a colon-separated list of // negative patterns (tests to exclude). A test is run if it // matches one of the positive patterns and does not match any of // the negative patterns. // // For example, *A*:Foo.* is a filter that matches any string that // contains the character 'A' or starts with "Foo.". bool should_run() const { return should_run_; } // Returns true if and only if this test will appear in the XML report. bool is_reportable() const { // The XML report includes tests matching the filter, excluding those // run in other shards. return matches_filter_ && !is_in_another_shard_; } // Returns the result of the test. const TestResult* result() const { return &result_; } private: #if GTEST_HAS_DEATH_TEST friend class internal::DefaultDeathTestFactory; #endif // GTEST_HAS_DEATH_TEST friend class Test; friend class TestSuite; friend class internal::UnitTestImpl; friend class internal::StreamingListenerTest; friend TestInfo* internal::MakeAndRegisterTestInfo( const char* test_suite_name, const char* name, const char* type_param, const char* value_param, internal::CodeLocation code_location, internal::TypeId fixture_class_id, internal::SetUpTestSuiteFunc set_up_tc, internal::TearDownTestSuiteFunc tear_down_tc, internal::TestFactoryBase* factory); // Constructs a TestInfo object. The newly constructed instance assumes // ownership of the factory object. TestInfo(const std::string& test_suite_name, const std::string& name, const char* a_type_param, // NULL if not a type-parameterized test const char* a_value_param, // NULL if not a value-parameterized test internal::CodeLocation a_code_location, internal::TypeId fixture_class_id, internal::TestFactoryBase* factory); // Increments the number of death tests encountered in this test so // far. int increment_death_test_count() { return result_.increment_death_test_count(); } // Creates the test object, runs it, records its result, and then // deletes it. void Run(); // Skip and records the test result for this object. void Skip(); static void ClearTestResult(TestInfo* test_info) { test_info->result_.Clear(); } // These fields are immutable properties of the test. const std::string test_suite_name_; // test suite name const std::string name_; // Test name // Name of the parameter type, or NULL if this is not a typed or a // type-parameterized test. const std::unique_ptr type_param_; // Text representation of the value parameter, or NULL if this is not a // value-parameterized test. const std::unique_ptr value_param_; internal::CodeLocation location_; const internal::TypeId fixture_class_id_; // ID of the test fixture class bool should_run_; // True if and only if this test should run bool is_disabled_; // True if and only if this test is disabled bool matches_filter_; // True if this test matches the // user-specified filter. bool is_in_another_shard_; // Will be run in another shard. internal::TestFactoryBase* const factory_; // The factory that creates // the test object // This field is mutable and needs to be reset before running the // test for the second time. TestResult result_; GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo); }; // A test suite, which consists of a vector of TestInfos. // // TestSuite is not copyable. class GTEST_API_ TestSuite { public: // Creates a TestSuite with the given name. // // TestSuite does NOT have a default constructor. Always use this // constructor to create a TestSuite object. // // Arguments: // // name: name of the test suite // a_type_param: the name of the test's type parameter, or NULL if // this is not a type-parameterized test. // set_up_tc: pointer to the function that sets up the test suite // tear_down_tc: pointer to the function that tears down the test suite TestSuite(const char* name, const char* a_type_param, internal::SetUpTestSuiteFunc set_up_tc, internal::TearDownTestSuiteFunc tear_down_tc); // Destructor of TestSuite. virtual ~TestSuite(); // Gets the name of the TestSuite. const char* name() const { return name_.c_str(); } // Returns the name of the parameter type, or NULL if this is not a // type-parameterized test suite. const char* type_param() const { if (type_param_.get() != nullptr) return type_param_->c_str(); return nullptr; } // Returns true if any test in this test suite should run. bool should_run() const { return should_run_; } // Gets the number of successful tests in this test suite. int successful_test_count() const; // Gets the number of skipped tests in this test suite. int skipped_test_count() const; // Gets the number of failed tests in this test suite. int failed_test_count() const; // Gets the number of disabled tests that will be reported in the XML report. int reportable_disabled_test_count() const; // Gets the number of disabled tests in this test suite. int disabled_test_count() const; // Gets the number of tests to be printed in the XML report. int reportable_test_count() const; // Get the number of tests in this test suite that should run. int test_to_run_count() const; // Gets the number of all tests in this test suite. int total_test_count() const; // Returns true if and only if the test suite passed. bool Passed() const { return !Failed(); } // Returns true if and only if the test suite failed. bool Failed() const { return failed_test_count() > 0 || ad_hoc_test_result().Failed(); } // Returns the elapsed time, in milliseconds. TimeInMillis elapsed_time() const { return elapsed_time_; } // Gets the time of the test suite start, in ms from the start of the // UNIX epoch. TimeInMillis start_timestamp() const { return start_timestamp_; } // Returns the i-th test among all the tests. i can range from 0 to // total_test_count() - 1. If i is not in that range, returns NULL. const TestInfo* GetTestInfo(int i) const; // Returns the TestResult that holds test properties recorded during // execution of SetUpTestSuite and TearDownTestSuite. const TestResult& ad_hoc_test_result() const { return ad_hoc_test_result_; } private: friend class Test; friend class internal::UnitTestImpl; // Gets the (mutable) vector of TestInfos in this TestSuite. std::vector& test_info_list() { return test_info_list_; } // Gets the (immutable) vector of TestInfos in this TestSuite. const std::vector& test_info_list() const { return test_info_list_; } // Returns the i-th test among all the tests. i can range from 0 to // total_test_count() - 1. If i is not in that range, returns NULL. TestInfo* GetMutableTestInfo(int i); // Sets the should_run member. void set_should_run(bool should) { should_run_ = should; } // Adds a TestInfo to this test suite. Will delete the TestInfo upon // destruction of the TestSuite object. void AddTestInfo(TestInfo * test_info); // Clears the results of all tests in this test suite. void ClearResult(); // Clears the results of all tests in the given test suite. static void ClearTestSuiteResult(TestSuite* test_suite) { test_suite->ClearResult(); } // Runs every test in this TestSuite. void Run(); // Skips the execution of tests under this TestSuite void Skip(); // Runs SetUpTestSuite() for this TestSuite. This wrapper is needed // for catching exceptions thrown from SetUpTestSuite(). void RunSetUpTestSuite() { if (set_up_tc_ != nullptr) { (*set_up_tc_)(); } } // Runs TearDownTestSuite() for this TestSuite. This wrapper is // needed for catching exceptions thrown from TearDownTestSuite(). void RunTearDownTestSuite() { if (tear_down_tc_ != nullptr) { (*tear_down_tc_)(); } } // Returns true if and only if test passed. static bool TestPassed(const TestInfo* test_info) { return test_info->should_run() && test_info->result()->Passed(); } // Returns true if and only if test skipped. static bool TestSkipped(const TestInfo* test_info) { return test_info->should_run() && test_info->result()->Skipped(); } // Returns true if and only if test failed. static bool TestFailed(const TestInfo* test_info) { return test_info->should_run() && test_info->result()->Failed(); } // Returns true if and only if the test is disabled and will be reported in // the XML report. static bool TestReportableDisabled(const TestInfo* test_info) { return test_info->is_reportable() && test_info->is_disabled_; } // Returns true if and only if test is disabled. static bool TestDisabled(const TestInfo* test_info) { return test_info->is_disabled_; } // Returns true if and only if this test will appear in the XML report. static bool TestReportable(const TestInfo* test_info) { return test_info->is_reportable(); } // Returns true if the given test should run. static bool ShouldRunTest(const TestInfo* test_info) { return test_info->should_run(); } // Shuffles the tests in this test suite. void ShuffleTests(internal::Random* random); // Restores the test order to before the first shuffle. void UnshuffleTests(); // Name of the test suite. std::string name_; // Name of the parameter type, or NULL if this is not a typed or a // type-parameterized test. const std::unique_ptr type_param_; // The vector of TestInfos in their original order. It owns the // elements in the vector. std::vector test_info_list_; // Provides a level of indirection for the test list to allow easy // shuffling and restoring the test order. The i-th element in this // vector is the index of the i-th test in the shuffled test list. std::vector test_indices_; // Pointer to the function that sets up the test suite. internal::SetUpTestSuiteFunc set_up_tc_; // Pointer to the function that tears down the test suite. internal::TearDownTestSuiteFunc tear_down_tc_; // True if and only if any test in this test suite should run. bool should_run_; // The start time, in milliseconds since UNIX Epoch. TimeInMillis start_timestamp_; // Elapsed time, in milliseconds. TimeInMillis elapsed_time_; // Holds test properties recorded during execution of SetUpTestSuite and // TearDownTestSuite. TestResult ad_hoc_test_result_; // We disallow copying TestSuites. GTEST_DISALLOW_COPY_AND_ASSIGN_(TestSuite); }; // An Environment object is capable of setting up and tearing down an // environment. You should subclass this to define your own // environment(s). // // An Environment object does the set-up and tear-down in virtual // methods SetUp() and TearDown() instead of the constructor and the // destructor, as: // // 1. You cannot safely throw from a destructor. This is a problem // as in some cases Google Test is used where exceptions are enabled, and // we may want to implement ASSERT_* using exceptions where they are // available. // 2. You cannot use ASSERT_* directly in a constructor or // destructor. class Environment { public: // The d'tor is virtual as we need to subclass Environment. virtual ~Environment() {} // Override this to define how to set up the environment. virtual void SetUp() {} // Override this to define how to tear down the environment. virtual void TearDown() {} private: // If you see an error about overriding the following function or // about it being private, you have mis-spelled SetUp() as Setup(). struct Setup_should_be_spelled_SetUp {}; virtual Setup_should_be_spelled_SetUp* Setup() { return nullptr; } }; #if GTEST_HAS_EXCEPTIONS // Exception which can be thrown from TestEventListener::OnTestPartResult. class GTEST_API_ AssertionException : public internal::GoogleTestFailureException { public: explicit AssertionException(const TestPartResult& result) : GoogleTestFailureException(result) {} }; #endif // GTEST_HAS_EXCEPTIONS // The interface for tracing execution of tests. The methods are organized in // the order the corresponding events are fired. class TestEventListener { public: virtual ~TestEventListener() {} // Fired before any test activity starts. virtual void OnTestProgramStart(const UnitTest& unit_test) = 0; // Fired before each iteration of tests starts. There may be more than // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration // index, starting from 0. virtual void OnTestIterationStart(const UnitTest& unit_test, int iteration) = 0; // Fired before environment set-up for each iteration of tests starts. virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0; // Fired after environment set-up for each iteration of tests ends. virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0; // Fired before the test suite starts. virtual void OnTestSuiteStart(const TestSuite& /*test_suite*/) {} // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ virtual void OnTestCaseStart(const TestCase& /*test_case*/) {} #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Fired before the test starts. virtual void OnTestStart(const TestInfo& test_info) = 0; // Fired after a failed assertion or a SUCCEED() invocation. // If you want to throw an exception from this function to skip to the next // TEST, it must be AssertionException defined above, or inherited from it. virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0; // Fired after the test ends. virtual void OnTestEnd(const TestInfo& test_info) = 0; // Fired after the test suite ends. virtual void OnTestSuiteEnd(const TestSuite& /*test_suite*/) {} // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {} #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Fired before environment tear-down for each iteration of tests starts. virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0; // Fired after environment tear-down for each iteration of tests ends. virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0; // Fired after each iteration of tests finishes. virtual void OnTestIterationEnd(const UnitTest& unit_test, int iteration) = 0; // Fired after all test activities have ended. virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0; }; // The convenience class for users who need to override just one or two // methods and are not concerned that a possible change to a signature of // the methods they override will not be caught during the build. For // comments about each method please see the definition of TestEventListener // above. class EmptyTestEventListener : public TestEventListener { public: void OnTestProgramStart(const UnitTest& /*unit_test*/) override {} void OnTestIterationStart(const UnitTest& /*unit_test*/, int /*iteration*/) override {} void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) override {} void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) override {} void OnTestSuiteStart(const TestSuite& /*test_suite*/) override {} // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestCaseStart(const TestCase& /*test_case*/) override {} #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestStart(const TestInfo& /*test_info*/) override {} void OnTestPartResult(const TestPartResult& /*test_part_result*/) override {} void OnTestEnd(const TestInfo& /*test_info*/) override {} void OnTestSuiteEnd(const TestSuite& /*test_suite*/) override {} #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestCaseEnd(const TestCase& /*test_case*/) override {} #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) override {} void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) override {} void OnTestIterationEnd(const UnitTest& /*unit_test*/, int /*iteration*/) override {} void OnTestProgramEnd(const UnitTest& /*unit_test*/) override {} }; // TestEventListeners lets users add listeners to track events in Google Test. class GTEST_API_ TestEventListeners { public: TestEventListeners(); ~TestEventListeners(); // Appends an event listener to the end of the list. Google Test assumes // the ownership of the listener (i.e. it will delete the listener when // the test program finishes). void Append(TestEventListener* listener); // Removes the given event listener from the list and returns it. It then // becomes the caller's responsibility to delete the listener. Returns // NULL if the listener is not found in the list. TestEventListener* Release(TestEventListener* listener); // Returns the standard listener responsible for the default console // output. Can be removed from the listeners list to shut down default // console output. Note that removing this object from the listener list // with Release transfers its ownership to the caller and makes this // function return NULL the next time. TestEventListener* default_result_printer() const { return default_result_printer_; } // Returns the standard listener responsible for the default XML output // controlled by the --gtest_output=xml flag. Can be removed from the // listeners list by users who want to shut down the default XML output // controlled by this flag and substitute it with custom one. Note that // removing this object from the listener list with Release transfers its // ownership to the caller and makes this function return NULL the next // time. TestEventListener* default_xml_generator() const { return default_xml_generator_; } private: friend class TestSuite; friend class TestInfo; friend class internal::DefaultGlobalTestPartResultReporter; friend class internal::NoExecDeathTest; friend class internal::TestEventListenersAccessor; friend class internal::UnitTestImpl; // Returns repeater that broadcasts the TestEventListener events to all // subscribers. TestEventListener* repeater(); // Sets the default_result_printer attribute to the provided listener. // The listener is also added to the listener list and previous // default_result_printer is removed from it and deleted. The listener can // also be NULL in which case it will not be added to the list. Does // nothing if the previous and the current listener objects are the same. void SetDefaultResultPrinter(TestEventListener* listener); // Sets the default_xml_generator attribute to the provided listener. The // listener is also added to the listener list and previous // default_xml_generator is removed from it and deleted. The listener can // also be NULL in which case it will not be added to the list. Does // nothing if the previous and the current listener objects are the same. void SetDefaultXmlGenerator(TestEventListener* listener); // Controls whether events will be forwarded by the repeater to the // listeners in the list. bool EventForwardingEnabled() const; void SuppressEventForwarding(); // The actual list of listeners. internal::TestEventRepeater* repeater_; // Listener responsible for the standard result output. TestEventListener* default_result_printer_; // Listener responsible for the creation of the XML output file. TestEventListener* default_xml_generator_; // We disallow copying TestEventListeners. GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners); }; // A UnitTest consists of a vector of TestSuites. // // This is a singleton class. The only instance of UnitTest is // created when UnitTest::GetInstance() is first called. This // instance is never deleted. // // UnitTest is not copyable. // // This class is thread-safe as long as the methods are called // according to their specification. class GTEST_API_ UnitTest { public: // Gets the singleton UnitTest object. The first time this method // is called, a UnitTest object is constructed and returned. // Consecutive calls will return the same object. static UnitTest* GetInstance(); // Runs all tests in this UnitTest object and prints the result. // Returns 0 if successful, or 1 otherwise. // // This method can only be called from the main thread. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. int Run() GTEST_MUST_USE_RESULT_; // Returns the working directory when the first TEST() or TEST_F() // was executed. The UnitTest object owns the string. const char* original_working_dir() const; // Returns the TestSuite object for the test that's currently running, // or NULL if no test is running. const TestSuite* current_test_suite() const GTEST_LOCK_EXCLUDED_(mutex_); // Legacy API is still available but deprecated #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ const TestCase* current_test_case() const GTEST_LOCK_EXCLUDED_(mutex_); #endif // Returns the TestInfo object for the test that's currently running, // or NULL if no test is running. const TestInfo* current_test_info() const GTEST_LOCK_EXCLUDED_(mutex_); // Returns the random seed used at the start of the current test run. int random_seed() const; // Returns the ParameterizedTestSuiteRegistry object used to keep track of // value-parameterized tests and instantiate and register them. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. internal::ParameterizedTestSuiteRegistry& parameterized_test_registry() GTEST_LOCK_EXCLUDED_(mutex_); // Gets the number of successful test suites. int successful_test_suite_count() const; // Gets the number of failed test suites. int failed_test_suite_count() const; // Gets the number of all test suites. int total_test_suite_count() const; // Gets the number of all test suites that contain at least one test // that should run. int test_suite_to_run_count() const; // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ int successful_test_case_count() const; int failed_test_case_count() const; int total_test_case_count() const; int test_case_to_run_count() const; #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Gets the number of successful tests. int successful_test_count() const; // Gets the number of skipped tests. int skipped_test_count() const; // Gets the number of failed tests. int failed_test_count() const; // Gets the number of disabled tests that will be reported in the XML report. int reportable_disabled_test_count() const; // Gets the number of disabled tests. int disabled_test_count() const; // Gets the number of tests to be printed in the XML report. int reportable_test_count() const; // Gets the number of all tests. int total_test_count() const; // Gets the number of tests that should run. int test_to_run_count() const; // Gets the time of the test program start, in ms from the start of the // UNIX epoch. TimeInMillis start_timestamp() const; // Gets the elapsed time, in milliseconds. TimeInMillis elapsed_time() const; // Returns true if and only if the unit test passed (i.e. all test suites // passed). bool Passed() const; // Returns true if and only if the unit test failed (i.e. some test suite // failed or something outside of all tests failed). bool Failed() const; // Gets the i-th test suite among all the test suites. i can range from 0 to // total_test_suite_count() - 1. If i is not in that range, returns NULL. const TestSuite* GetTestSuite(int i) const; // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ const TestCase* GetTestCase(int i) const; #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Returns the TestResult containing information on test failures and // properties logged outside of individual test suites. const TestResult& ad_hoc_test_result() const; // Returns the list of event listeners that can be used to track events // inside Google Test. TestEventListeners& listeners(); private: // Registers and returns a global test environment. When a test // program is run, all global test environments will be set-up in // the order they were registered. After all tests in the program // have finished, all global test environments will be torn-down in // the *reverse* order they were registered. // // The UnitTest object takes ownership of the given environment. // // This method can only be called from the main thread. Environment* AddEnvironment(Environment* env); // Adds a TestPartResult to the current TestResult object. All // Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) // eventually call this to report their results. The user code // should use the assertion macros instead of calling this directly. void AddTestPartResult(TestPartResult::Type result_type, const char* file_name, int line_number, const std::string& message, const std::string& os_stack_trace) GTEST_LOCK_EXCLUDED_(mutex_); // Adds a TestProperty to the current TestResult object when invoked from // inside a test, to current TestSuite's ad_hoc_test_result_ when invoked // from SetUpTestSuite or TearDownTestSuite, or to the global property set // when invoked elsewhere. If the result already contains a property with // the same key, the value will be updated. void RecordProperty(const std::string& key, const std::string& value); // Gets the i-th test suite among all the test suites. i can range from 0 to // total_test_suite_count() - 1. If i is not in that range, returns NULL. TestSuite* GetMutableTestSuite(int i); // Accessors for the implementation object. internal::UnitTestImpl* impl() { return impl_; } const internal::UnitTestImpl* impl() const { return impl_; } // These classes and functions are friends as they need to access private // members of UnitTest. friend class ScopedTrace; friend class Test; friend class internal::AssertHelper; friend class internal::StreamingListenerTest; friend class internal::UnitTestRecordPropertyTestHelper; friend Environment* AddGlobalTestEnvironment(Environment* env); friend std::set* internal::GetIgnoredParameterizedTestSuites(); friend internal::UnitTestImpl* internal::GetUnitTestImpl(); friend void internal::ReportFailureInUnknownLocation( TestPartResult::Type result_type, const std::string& message); // Creates an empty UnitTest. UnitTest(); // D'tor virtual ~UnitTest(); // Pushes a trace defined by SCOPED_TRACE() on to the per-thread // Google Test trace stack. void PushGTestTrace(const internal::TraceInfo& trace) GTEST_LOCK_EXCLUDED_(mutex_); // Pops a trace from the per-thread Google Test trace stack. void PopGTestTrace() GTEST_LOCK_EXCLUDED_(mutex_); // Protects mutable state in *impl_. This is mutable as some const // methods need to lock it too. mutable internal::Mutex mutex_; // Opaque implementation object. This field is never changed once // the object is constructed. We don't mark it as const here, as // doing so will cause a warning in the constructor of UnitTest. // Mutable state in *impl_ is protected by mutex_. internal::UnitTestImpl* impl_; // We disallow copying UnitTest. GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest); }; // A convenient wrapper for adding an environment for the test // program. // // You should call this before RUN_ALL_TESTS() is called, probably in // main(). If you use gtest_main, you need to call this before main() // starts for it to take effect. For example, you can define a global // variable like this: // // testing::Environment* const foo_env = // testing::AddGlobalTestEnvironment(new FooEnvironment); // // However, we strongly recommend you to write your own main() and // call AddGlobalTestEnvironment() there, as relying on initialization // of global variables makes the code harder to read and may cause // problems when you register multiple environments from different // translation units and the environments have dependencies among them // (remember that the compiler doesn't guarantee the order in which // global variables from different translation units are initialized). inline Environment* AddGlobalTestEnvironment(Environment* env) { return UnitTest::GetInstance()->AddEnvironment(env); } // Initializes Google Test. This must be called before calling // RUN_ALL_TESTS(). In particular, it parses a command line for the // flags that Google Test recognizes. Whenever a Google Test flag is // seen, it is removed from argv, and *argc is decremented. // // No value is returned. Instead, the Google Test flag variables are // updated. // // Calling the function for the second time has no user-visible effect. GTEST_API_ void InitGoogleTest(int* argc, char** argv); // This overloaded version can be used in Windows programs compiled in // UNICODE mode. GTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv); // This overloaded version can be used on Arduino/embedded platforms where // there is no argc/argv. GTEST_API_ void InitGoogleTest(); namespace internal { // Separate the error generating code from the code path to reduce the stack // frame size of CmpHelperEQ. This helps reduce the overhead of some sanitizers // when calling EXPECT_* in a tight loop. template AssertionResult CmpHelperEQFailure(const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs) { return EqFailure(lhs_expression, rhs_expression, FormatForComparisonFailureMessage(lhs, rhs), FormatForComparisonFailureMessage(rhs, lhs), false); } // This block of code defines operator==/!= // to block lexical scope lookup. // It prevents using invalid operator==/!= defined at namespace scope. struct faketype {}; inline bool operator==(faketype, faketype) { return true; } inline bool operator!=(faketype, faketype) { return false; } // The helper function for {ASSERT|EXPECT}_EQ. template AssertionResult CmpHelperEQ(const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs) { if (lhs == rhs) { return AssertionSuccess(); } return CmpHelperEQFailure(lhs_expression, rhs_expression, lhs, rhs); } class EqHelper { public: // This templatized version is for the general case. template < typename T1, typename T2, // Disable this overload for cases where one argument is a pointer // and the other is the null pointer constant. typename std::enable_if::value || !std::is_pointer::value>::type* = nullptr> static AssertionResult Compare(const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs) { return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs); } // With this overloaded version, we allow anonymous enums to be used // in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous // enums can be implicitly cast to BiggestInt. // // Even though its body looks the same as the above version, we // cannot merge the two, as it will make anonymous enums unhappy. static AssertionResult Compare(const char* lhs_expression, const char* rhs_expression, BiggestInt lhs, BiggestInt rhs) { return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs); } template static AssertionResult Compare( const char* lhs_expression, const char* rhs_expression, // Handle cases where '0' is used as a null pointer literal. std::nullptr_t /* lhs */, T* rhs) { // We already know that 'lhs' is a null pointer. return CmpHelperEQ(lhs_expression, rhs_expression, static_cast(nullptr), rhs); } }; // Separate the error generating code from the code path to reduce the stack // frame size of CmpHelperOP. This helps reduce the overhead of some sanitizers // when calling EXPECT_OP in a tight loop. template AssertionResult CmpHelperOpFailure(const char* expr1, const char* expr2, const T1& val1, const T2& val2, const char* op) { return AssertionFailure() << "Expected: (" << expr1 << ") " << op << " (" << expr2 << "), actual: " << FormatForComparisonFailureMessage(val1, val2) << " vs " << FormatForComparisonFailureMessage(val2, val1); } // A macro for implementing the helper functions needed to implement // ASSERT_?? and EXPECT_??. It is here just to avoid copy-and-paste // of similar code. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. #define GTEST_IMPL_CMP_HELPER_(op_name, op)\ template \ AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \ const T1& val1, const T2& val2) {\ if (val1 op val2) {\ return AssertionSuccess();\ } else {\ return CmpHelperOpFailure(expr1, expr2, val1, val2, #op);\ }\ } // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. // Implements the helper function for {ASSERT|EXPECT}_NE GTEST_IMPL_CMP_HELPER_(NE, !=) // Implements the helper function for {ASSERT|EXPECT}_LE GTEST_IMPL_CMP_HELPER_(LE, <=) // Implements the helper function for {ASSERT|EXPECT}_LT GTEST_IMPL_CMP_HELPER_(LT, <) // Implements the helper function for {ASSERT|EXPECT}_GE GTEST_IMPL_CMP_HELPER_(GE, >=) // Implements the helper function for {ASSERT|EXPECT}_GT GTEST_IMPL_CMP_HELPER_(GT, >) #undef GTEST_IMPL_CMP_HELPER_ // The helper function for {ASSERT|EXPECT}_STREQ. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2); // The helper function for {ASSERT|EXPECT}_STRCASEEQ. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2); // The helper function for {ASSERT|EXPECT}_STRNE. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2); // The helper function for {ASSERT|EXPECT}_STRCASENE. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2); // Helper function for *_STREQ on wide strings. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression, const char* s2_expression, const wchar_t* s1, const wchar_t* s2); // Helper function for *_STRNE on wide strings. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression, const char* s2_expression, const wchar_t* s1, const wchar_t* s2); } // namespace internal // IsSubstring() and IsNotSubstring() are intended to be used as the // first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by // themselves. They check whether needle is a substring of haystack // (NULL is considered a substring of itself only), and return an // appropriate error message when they fail. // // The {needle,haystack}_expr arguments are the stringified // expressions that generated the two real arguments. GTEST_API_ AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack); GTEST_API_ AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack); GTEST_API_ AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack); GTEST_API_ AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack); GTEST_API_ AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack); GTEST_API_ AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack); #if GTEST_HAS_STD_WSTRING GTEST_API_ AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack); GTEST_API_ AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack); #endif // GTEST_HAS_STD_WSTRING namespace internal { // Helper template function for comparing floating-points. // // Template parameter: // // RawType: the raw floating-point type (either float or double) // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. template AssertionResult CmpHelperFloatingPointEQ(const char* lhs_expression, const char* rhs_expression, RawType lhs_value, RawType rhs_value) { const FloatingPoint lhs(lhs_value), rhs(rhs_value); if (lhs.AlmostEquals(rhs)) { return AssertionSuccess(); } ::std::stringstream lhs_ss; lhs_ss << std::setprecision(std::numeric_limits::digits10 + 2) << lhs_value; ::std::stringstream rhs_ss; rhs_ss << std::setprecision(std::numeric_limits::digits10 + 2) << rhs_value; return EqFailure(lhs_expression, rhs_expression, StringStreamToString(&lhs_ss), StringStreamToString(&rhs_ss), false); } // Helper function for implementing ASSERT_NEAR. // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM. GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1, const char* expr2, const char* abs_error_expr, double val1, double val2, double abs_error); // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // A class that enables one to stream messages to assertion macros class GTEST_API_ AssertHelper { public: // Constructor. AssertHelper(TestPartResult::Type type, const char* file, int line, const char* message); ~AssertHelper(); // Message assignment is a semantic trick to enable assertion // streaming; see the GTEST_MESSAGE_ macro below. void operator=(const Message& message) const; private: // We put our data in a struct so that the size of the AssertHelper class can // be as small as possible. This is important because gcc is incapable of // re-using stack space even for temporary variables, so every EXPECT_EQ // reserves stack space for another AssertHelper. struct AssertHelperData { AssertHelperData(TestPartResult::Type t, const char* srcfile, int line_num, const char* msg) : type(t), file(srcfile), line(line_num), message(msg) { } TestPartResult::Type const type; const char* const file; int const line; std::string const message; private: GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData); }; AssertHelperData* const data_; GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper); }; } // namespace internal // The pure interface class that all value-parameterized tests inherit from. // A value-parameterized class must inherit from both ::testing::Test and // ::testing::WithParamInterface. In most cases that just means inheriting // from ::testing::TestWithParam, but more complicated test hierarchies // may need to inherit from Test and WithParamInterface at different levels. // // This interface has support for accessing the test parameter value via // the GetParam() method. // // Use it with one of the parameter generator defining functions, like Range(), // Values(), ValuesIn(), Bool(), and Combine(). // // class FooTest : public ::testing::TestWithParam { // protected: // FooTest() { // // Can use GetParam() here. // } // ~FooTest() override { // // Can use GetParam() here. // } // void SetUp() override { // // Can use GetParam() here. // } // void TearDown override { // // Can use GetParam() here. // } // }; // TEST_P(FooTest, DoesBar) { // // Can use GetParam() method here. // Foo foo; // ASSERT_TRUE(foo.DoesBar(GetParam())); // } // INSTANTIATE_TEST_SUITE_P(OneToTenRange, FooTest, ::testing::Range(1, 10)); template class WithParamInterface { public: typedef T ParamType; virtual ~WithParamInterface() {} // The current parameter value. Is also available in the test fixture's // constructor. static const ParamType& GetParam() { GTEST_CHECK_(parameter_ != nullptr) << "GetParam() can only be called inside a value-parameterized test " << "-- did you intend to write TEST_P instead of TEST_F?"; return *parameter_; } private: // Sets parameter value. The caller is responsible for making sure the value // remains alive and unchanged throughout the current test. static void SetParam(const ParamType* parameter) { parameter_ = parameter; } // Static value used for accessing parameter during a test lifetime. static const ParamType* parameter_; // TestClass must be a subclass of WithParamInterface and Test. template friend class internal::ParameterizedTestFactory; }; template const T* WithParamInterface::parameter_ = nullptr; // Most value-parameterized classes can ignore the existence of // WithParamInterface, and can just inherit from ::testing::TestWithParam. template class TestWithParam : public Test, public WithParamInterface { }; // Macros for indicating success/failure in test code. // Skips test in runtime. // Skipping test aborts current function. // Skipped tests are neither successful nor failed. #define GTEST_SKIP() GTEST_SKIP_("") // ADD_FAILURE unconditionally adds a failure to the current test. // SUCCEED generates a success - it doesn't automatically make the // current test successful, as a test is only successful when it has // no failure. // // EXPECT_* verifies that a certain condition is satisfied. If not, // it behaves like ADD_FAILURE. In particular: // // EXPECT_TRUE verifies that a Boolean condition is true. // EXPECT_FALSE verifies that a Boolean condition is false. // // FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except // that they will also abort the current function on failure. People // usually want the fail-fast behavior of FAIL and ASSERT_*, but those // writing data-driven tests often find themselves using ADD_FAILURE // and EXPECT_* more. // Generates a nonfatal failure with a generic message. #define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed") // Generates a nonfatal failure at the given source file location with // a generic message. #define ADD_FAILURE_AT(file, line) \ GTEST_MESSAGE_AT_(file, line, "Failed", \ ::testing::TestPartResult::kNonFatalFailure) // Generates a fatal failure with a generic message. #define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed") // Like GTEST_FAIL(), but at the given source file location. #define GTEST_FAIL_AT(file, line) \ GTEST_MESSAGE_AT_(file, line, "Failed", \ ::testing::TestPartResult::kFatalFailure) // Define this macro to 1 to omit the definition of FAIL(), which is a // generic name and clashes with some other libraries. #if !GTEST_DONT_DEFINE_FAIL # define FAIL() GTEST_FAIL() #endif // Generates a success with a generic message. #define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded") // Define this macro to 1 to omit the definition of SUCCEED(), which // is a generic name and clashes with some other libraries. #if !GTEST_DONT_DEFINE_SUCCEED # define SUCCEED() GTEST_SUCCEED() #endif // Macros for testing exceptions. // // * {ASSERT|EXPECT}_THROW(statement, expected_exception): // Tests that the statement throws the expected exception. // * {ASSERT|EXPECT}_NO_THROW(statement): // Tests that the statement doesn't throw any exception. // * {ASSERT|EXPECT}_ANY_THROW(statement): // Tests that the statement throws an exception. #define EXPECT_THROW(statement, expected_exception) \ GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_) #define EXPECT_NO_THROW(statement) \ GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_) #define EXPECT_ANY_THROW(statement) \ GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_) #define ASSERT_THROW(statement, expected_exception) \ GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_) #define ASSERT_NO_THROW(statement) \ GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_) #define ASSERT_ANY_THROW(statement) \ GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_) // Boolean assertions. Condition can be either a Boolean expression or an // AssertionResult. For more information on how to use AssertionResult with // these macros see comments on that class. #define GTEST_EXPECT_TRUE(condition) \ GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ GTEST_NONFATAL_FAILURE_) #define GTEST_EXPECT_FALSE(condition) \ GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ GTEST_NONFATAL_FAILURE_) #define GTEST_ASSERT_TRUE(condition) \ GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \ GTEST_FATAL_FAILURE_) #define GTEST_ASSERT_FALSE(condition) \ GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \ GTEST_FATAL_FAILURE_) // Define these macros to 1 to omit the definition of the corresponding // EXPECT or ASSERT, which clashes with some users' own code. #if !GTEST_DONT_DEFINE_EXPECT_TRUE #define EXPECT_TRUE(condition) GTEST_EXPECT_TRUE(condition) #endif #if !GTEST_DONT_DEFINE_EXPECT_FALSE #define EXPECT_FALSE(condition) GTEST_EXPECT_FALSE(condition) #endif #if !GTEST_DONT_DEFINE_ASSERT_TRUE #define ASSERT_TRUE(condition) GTEST_ASSERT_TRUE(condition) #endif #if !GTEST_DONT_DEFINE_ASSERT_FALSE #define ASSERT_FALSE(condition) GTEST_ASSERT_FALSE(condition) #endif // Macros for testing equalities and inequalities. // // * {ASSERT|EXPECT}_EQ(v1, v2): Tests that v1 == v2 // * {ASSERT|EXPECT}_NE(v1, v2): Tests that v1 != v2 // * {ASSERT|EXPECT}_LT(v1, v2): Tests that v1 < v2 // * {ASSERT|EXPECT}_LE(v1, v2): Tests that v1 <= v2 // * {ASSERT|EXPECT}_GT(v1, v2): Tests that v1 > v2 // * {ASSERT|EXPECT}_GE(v1, v2): Tests that v1 >= v2 // // When they are not, Google Test prints both the tested expressions and // their actual values. The values must be compatible built-in types, // or you will get a compiler error. By "compatible" we mean that the // values can be compared by the respective operator. // // Note: // // 1. It is possible to make a user-defined type work with // {ASSERT|EXPECT}_??(), but that requires overloading the // comparison operators and is thus discouraged by the Google C++ // Usage Guide. Therefore, you are advised to use the // {ASSERT|EXPECT}_TRUE() macro to assert that two objects are // equal. // // 2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on // pointers (in particular, C strings). Therefore, if you use it // with two C strings, you are testing how their locations in memory // are related, not how their content is related. To compare two C // strings by content, use {ASSERT|EXPECT}_STR*(). // // 3. {ASSERT|EXPECT}_EQ(v1, v2) is preferred to // {ASSERT|EXPECT}_TRUE(v1 == v2), as the former tells you // what the actual value is when it fails, and similarly for the // other comparisons. // // 4. Do not depend on the order in which {ASSERT|EXPECT}_??() // evaluate their arguments, which is undefined. // // 5. These macros evaluate their arguments exactly once. // // Examples: // // EXPECT_NE(Foo(), 5); // EXPECT_EQ(a_pointer, NULL); // ASSERT_LT(i, array_size); // ASSERT_GT(records.size(), 0) << "There is no record left."; #define EXPECT_EQ(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2) #define EXPECT_NE(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2) #define EXPECT_LE(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) #define EXPECT_LT(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) #define EXPECT_GE(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) #define EXPECT_GT(val1, val2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) #define GTEST_ASSERT_EQ(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2) #define GTEST_ASSERT_NE(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2) #define GTEST_ASSERT_LE(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2) #define GTEST_ASSERT_LT(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2) #define GTEST_ASSERT_GE(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2) #define GTEST_ASSERT_GT(val1, val2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2) // Define macro GTEST_DONT_DEFINE_ASSERT_XY to 1 to omit the definition of // ASSERT_XY(), which clashes with some users' own code. #if !GTEST_DONT_DEFINE_ASSERT_EQ # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_NE # define ASSERT_NE(val1, val2) GTEST_ASSERT_NE(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_LE # define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_LT # define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_GE # define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2) #endif #if !GTEST_DONT_DEFINE_ASSERT_GT # define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2) #endif // C-string Comparisons. All tests treat NULL and any non-NULL string // as different. Two NULLs are equal. // // * {ASSERT|EXPECT}_STREQ(s1, s2): Tests that s1 == s2 // * {ASSERT|EXPECT}_STRNE(s1, s2): Tests that s1 != s2 // * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case // * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case // // For wide or narrow string objects, you can use the // {ASSERT|EXPECT}_??() macros. // // Don't depend on the order in which the arguments are evaluated, // which is undefined. // // These macros evaluate their arguments exactly once. #define EXPECT_STREQ(s1, s2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2) #define EXPECT_STRNE(s1, s2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) #define EXPECT_STRCASEEQ(s1, s2) \ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2) #define EXPECT_STRCASENE(s1, s2)\ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) #define ASSERT_STREQ(s1, s2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2) #define ASSERT_STRNE(s1, s2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2) #define ASSERT_STRCASEEQ(s1, s2) \ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2) #define ASSERT_STRCASENE(s1, s2)\ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2) // Macros for comparing floating-point numbers. // // * {ASSERT|EXPECT}_FLOAT_EQ(val1, val2): // Tests that two float values are almost equal. // * {ASSERT|EXPECT}_DOUBLE_EQ(val1, val2): // Tests that two double values are almost equal. // * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error): // Tests that v1 and v2 are within the given distance to each other. // // Google Test uses ULP-based comparison to automatically pick a default // error bound that is appropriate for the operands. See the // FloatingPoint template class in gtest-internal.h if you are // interested in the implementation details. #define EXPECT_FLOAT_EQ(val1, val2)\ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ val1, val2) #define EXPECT_DOUBLE_EQ(val1, val2)\ EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ val1, val2) #define ASSERT_FLOAT_EQ(val1, val2)\ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ val1, val2) #define ASSERT_DOUBLE_EQ(val1, val2)\ ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ, \ val1, val2) #define EXPECT_NEAR(val1, val2, abs_error)\ EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ val1, val2, abs_error) #define ASSERT_NEAR(val1, val2, abs_error)\ ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \ val1, val2, abs_error) // These predicate format functions work on floating-point values, and // can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g. // // EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0); // Asserts that val1 is less than, or almost equal to, val2. Fails // otherwise. In particular, it fails if either val1 or val2 is NaN. GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2, float val1, float val2); GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2, double val1, double val2); #if GTEST_OS_WINDOWS // Macros that test for HRESULT failure and success, these are only useful // on Windows, and rely on Windows SDK macros and APIs to compile. // // * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr) // // When expr unexpectedly fails or succeeds, Google Test prints the // expected result and the actual result with both a human-readable // string representation of the error, if available, as well as the // hex result code. # define EXPECT_HRESULT_SUCCEEDED(expr) \ EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) # define ASSERT_HRESULT_SUCCEEDED(expr) \ ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr)) # define EXPECT_HRESULT_FAILED(expr) \ EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) # define ASSERT_HRESULT_FAILED(expr) \ ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr)) #endif // GTEST_OS_WINDOWS // Macros that execute statement and check that it doesn't generate new fatal // failures in the current thread. // // * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement); // // Examples: // // EXPECT_NO_FATAL_FAILURE(Process()); // ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed"; // #define ASSERT_NO_FATAL_FAILURE(statement) \ GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_) #define EXPECT_NO_FATAL_FAILURE(statement) \ GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_) // Causes a trace (including the given source file path and line number, // and the given message) to be included in every test failure message generated // by code in the scope of the lifetime of an instance of this class. The effect // is undone with the destruction of the instance. // // The message argument can be anything streamable to std::ostream. // // Example: // testing::ScopedTrace trace("file.cc", 123, "message"); // class GTEST_API_ ScopedTrace { public: // The c'tor pushes the given source file location and message onto // a trace stack maintained by Google Test. // Template version. Uses Message() to convert the values into strings. // Slow, but flexible. template ScopedTrace(const char* file, int line, const T& message) { PushTrace(file, line, (Message() << message).GetString()); } // Optimize for some known types. ScopedTrace(const char* file, int line, const char* message) { PushTrace(file, line, message ? message : "(null)"); } ScopedTrace(const char* file, int line, const std::string& message) { PushTrace(file, line, message); } // The d'tor pops the info pushed by the c'tor. // // Note that the d'tor is not virtual in order to be efficient. // Don't inherit from ScopedTrace! ~ScopedTrace(); private: void PushTrace(const char* file, int line, std::string message); GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace); } GTEST_ATTRIBUTE_UNUSED_; // A ScopedTrace object does its job in its // c'tor and d'tor. Therefore it doesn't // need to be used otherwise. // Causes a trace (including the source file path, the current line // number, and the given message) to be included in every test failure // message generated by code in the current scope. The effect is // undone when the control leaves the current scope. // // The message argument can be anything streamable to std::ostream. // // In the implementation, we include the current line number as part // of the dummy variable name, thus allowing multiple SCOPED_TRACE()s // to appear in the same block - as long as they are on different // lines. // // Assuming that each thread maintains its own stack of traces. // Therefore, a SCOPED_TRACE() would (correctly) only affect the // assertions in its own thread. #define SCOPED_TRACE(message) \ ::testing::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\ __FILE__, __LINE__, (message)) // Compile-time assertion for type equality. // StaticAssertTypeEq() compiles if and only if type1 and type2 // are the same type. The value it returns is not interesting. // // Instead of making StaticAssertTypeEq a class template, we make it a // function template that invokes a helper class template. This // prevents a user from misusing StaticAssertTypeEq by // defining objects of that type. // // CAVEAT: // // When used inside a method of a class template, // StaticAssertTypeEq() is effective ONLY IF the method is // instantiated. For example, given: // // template class Foo { // public: // void Bar() { testing::StaticAssertTypeEq(); } // }; // // the code: // // void Test1() { Foo foo; } // // will NOT generate a compiler error, as Foo::Bar() is never // actually instantiated. Instead, you need: // // void Test2() { Foo foo; foo.Bar(); } // // to cause a compiler error. template constexpr bool StaticAssertTypeEq() noexcept { static_assert(std::is_same::value, "T1 and T2 are not the same type"); return true; } // Defines a test. // // The first parameter is the name of the test suite, and the second // parameter is the name of the test within the test suite. // // The convention is to end the test suite name with "Test". For // example, a test suite for the Foo class can be named FooTest. // // Test code should appear between braces after an invocation of // this macro. Example: // // TEST(FooTest, InitializesCorrectly) { // Foo foo; // EXPECT_TRUE(foo.StatusIsOK()); // } // Note that we call GetTestTypeId() instead of GetTypeId< // ::testing::Test>() here to get the type ID of testing::Test. This // is to work around a suspected linker bug when using Google Test as // a framework on Mac OS X. The bug causes GetTypeId< // ::testing::Test>() to return different values depending on whether // the call is from the Google Test framework itself or from user test // code. GetTestTypeId() is guaranteed to always return the same // value, as it always calls GetTypeId<>() from the Google Test // framework. #define GTEST_TEST(test_suite_name, test_name) \ GTEST_TEST_(test_suite_name, test_name, ::testing::Test, \ ::testing::internal::GetTestTypeId()) // Define this macro to 1 to omit the definition of TEST(), which // is a generic name and clashes with some other libraries. #if !GTEST_DONT_DEFINE_TEST #define TEST(test_suite_name, test_name) GTEST_TEST(test_suite_name, test_name) #endif // Defines a test that uses a test fixture. // // The first parameter is the name of the test fixture class, which // also doubles as the test suite name. The second parameter is the // name of the test within the test suite. // // A test fixture class must be declared earlier. The user should put // the test code between braces after using this macro. Example: // // class FooTest : public testing::Test { // protected: // void SetUp() override { b_.AddElement(3); } // // Foo a_; // Foo b_; // }; // // TEST_F(FooTest, InitializesCorrectly) { // EXPECT_TRUE(a_.StatusIsOK()); // } // // TEST_F(FooTest, ReturnsElementCountCorrectly) { // EXPECT_EQ(a_.size(), 0); // EXPECT_EQ(b_.size(), 1); // } // // GOOGLETEST_CM0011 DO NOT DELETE #if !GTEST_DONT_DEFINE_TEST #define TEST_F(test_fixture, test_name)\ GTEST_TEST_(test_fixture, test_name, test_fixture, \ ::testing::internal::GetTypeId()) #endif // !GTEST_DONT_DEFINE_TEST // Returns a path to temporary directory. // Tries to determine an appropriate directory for the platform. GTEST_API_ std::string TempDir(); #ifdef _MSC_VER # pragma warning(pop) #endif // Dynamically registers a test with the framework. // // This is an advanced API only to be used when the `TEST` macros are // insufficient. The macros should be preferred when possible, as they avoid // most of the complexity of calling this function. // // The `factory` argument is a factory callable (move-constructible) object or // function pointer that creates a new instance of the Test object. It // handles ownership to the caller. The signature of the callable is // `Fixture*()`, where `Fixture` is the test fixture class for the test. All // tests registered with the same `test_suite_name` must return the same // fixture type. This is checked at runtime. // // The framework will infer the fixture class from the factory and will call // the `SetUpTestSuite` and `TearDownTestSuite` for it. // // Must be called before `RUN_ALL_TESTS()` is invoked, otherwise behavior is // undefined. // // Use case example: // // class MyFixture : public ::testing::Test { // public: // // All of these optional, just like in regular macro usage. // static void SetUpTestSuite() { ... } // static void TearDownTestSuite() { ... } // void SetUp() override { ... } // void TearDown() override { ... } // }; // // class MyTest : public MyFixture { // public: // explicit MyTest(int data) : data_(data) {} // void TestBody() override { ... } // // private: // int data_; // }; // // void RegisterMyTests(const std::vector& values) { // for (int v : values) { // ::testing::RegisterTest( // "MyFixture", ("Test" + std::to_string(v)).c_str(), nullptr, // std::to_string(v).c_str(), // __FILE__, __LINE__, // // Important to use the fixture type as the return type here. // [=]() -> MyFixture* { return new MyTest(v); }); // } // } // ... // int main(int argc, char** argv) { // std::vector values_to_test = LoadValuesFromConfig(); // RegisterMyTests(values_to_test); // ... // return RUN_ALL_TESTS(); // } // template TestInfo* RegisterTest(const char* test_suite_name, const char* test_name, const char* type_param, const char* value_param, const char* file, int line, Factory factory) { using TestT = typename std::remove_pointer::type; class FactoryImpl : public internal::TestFactoryBase { public: explicit FactoryImpl(Factory f) : factory_(std::move(f)) {} Test* CreateTest() override { return factory_(); } private: Factory factory_; }; return internal::MakeAndRegisterTestInfo( test_suite_name, test_name, type_param, value_param, internal::CodeLocation(file, line), internal::GetTypeId(), internal::SuiteApiResolver::GetSetUpCaseOrSuite(file, line), internal::SuiteApiResolver::GetTearDownCaseOrSuite(file, line), new FactoryImpl{std::move(factory)}); } } // namespace testing // Use this function in main() to run all tests. It returns 0 if all // tests are successful, or 1 otherwise. // // RUN_ALL_TESTS() should be invoked after the command line has been // parsed by InitGoogleTest(). // // This function was formerly a macro; thus, it is in the global // namespace and has an all-caps name. int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_; inline int RUN_ALL_TESTS() { return ::testing::UnitTest::GetInstance()->Run(); } GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_H_ ================================================ FILE: test/gtest/include/gtest/gtest_pred_impl.h ================================================ // Copyright 2006, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // This file is AUTOMATICALLY GENERATED on 01/02/2019 by command // 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND! // // Implements a family of generic predicate assertion macros. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ #include "gtest/gtest.h" namespace testing { // This header implements a family of generic predicate assertion // macros: // // ASSERT_PRED_FORMAT1(pred_format, v1) // ASSERT_PRED_FORMAT2(pred_format, v1, v2) // ... // // where pred_format is a function or functor that takes n (in the // case of ASSERT_PRED_FORMATn) values and their source expression // text, and returns a testing::AssertionResult. See the definition // of ASSERT_EQ in gtest.h for an example. // // If you don't care about formatting, you can use the more // restrictive version: // // ASSERT_PRED1(pred, v1) // ASSERT_PRED2(pred, v1, v2) // ... // // where pred is an n-ary function or functor that returns bool, // and the values v1, v2, ..., must support the << operator for // streaming to std::ostream. // // We also define the EXPECT_* variations. // // For now we only support predicates whose arity is at most 5. // Please email googletestframework@googlegroups.com if you need // support for higher arities. // GTEST_ASSERT_ is the basic statement to which all of the assertions // in this file reduce. Don't use this in your code. #define GTEST_ASSERT_(expression, on_failure) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (const ::testing::AssertionResult gtest_ar = (expression)) \ ; \ else \ on_failure(gtest_ar.failure_message()) // Helper function for implementing {EXPECT|ASSERT}_PRED1. Don't use // this in your code. template AssertionResult AssertPred1Helper(const char* pred_text, const char* e1, Pred pred, const T1& v1) { if (pred(v1)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << ::testing::PrintToString(v1); } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1. // Don't use this in your code. #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\ GTEST_ASSERT_(pred_format(#v1, v1), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED1. Don't use // this in your code. #define GTEST_PRED1_(pred, v1, on_failure)\ GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \ #v1, \ pred, \ v1), on_failure) // Unary predicate assertion macros. #define EXPECT_PRED_FORMAT1(pred_format, v1) \ GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED1(pred, v1) \ GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT1(pred_format, v1) \ GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_) #define ASSERT_PRED1(pred, v1) \ GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_) // Helper function for implementing {EXPECT|ASSERT}_PRED2. Don't use // this in your code. template AssertionResult AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) { if (pred(v1, v2)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ", " << e2 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << ::testing::PrintToString(v1) << "\n" << e2 << " evaluates to " << ::testing::PrintToString(v2); } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2. // Don't use this in your code. #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\ GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED2. Don't use // this in your code. #define GTEST_PRED2_(pred, v1, v2, on_failure)\ GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \ #v1, \ #v2, \ pred, \ v1, \ v2), on_failure) // Binary predicate assertion macros. #define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \ GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED2(pred, v1, v2) \ GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \ GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_) #define ASSERT_PRED2(pred, v1, v2) \ GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_) // Helper function for implementing {EXPECT|ASSERT}_PRED3. Don't use // this in your code. template AssertionResult AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) { if (pred(v1, v2, v3)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << ::testing::PrintToString(v1) << "\n" << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" << e3 << " evaluates to " << ::testing::PrintToString(v3); } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3. // Don't use this in your code. #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\ GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED3. Don't use // this in your code. #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\ GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \ #v1, \ #v2, \ #v3, \ pred, \ v1, \ v2, \ v3), on_failure) // Ternary predicate assertion macros. #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \ GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED3(pred, v1, v2, v3) \ GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \ GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_) #define ASSERT_PRED3(pred, v1, v2, v3) \ GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_) // Helper function for implementing {EXPECT|ASSERT}_PRED4. Don't use // this in your code. template AssertionResult AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) { if (pred(v1, v2, v3, v4)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << ::testing::PrintToString(v1) << "\n" << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" << e3 << " evaluates to " << ::testing::PrintToString(v3) << "\n" << e4 << " evaluates to " << ::testing::PrintToString(v4); } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4. // Don't use this in your code. #define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\ GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED4. Don't use // this in your code. #define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\ GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \ #v1, \ #v2, \ #v3, \ #v4, \ pred, \ v1, \ v2, \ v3, \ v4), on_failure) // 4-ary predicate assertion macros. #define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED4(pred, v1, v2, v3, v4) \ GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) #define ASSERT_PRED4(pred, v1, v2, v3, v4) \ GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_) // Helper function for implementing {EXPECT|ASSERT}_PRED5. Don't use // this in your code. template AssertionResult AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) { if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess(); return AssertionFailure() << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 << ", " << e5 << ") evaluates to false, where" << "\n" << e1 << " evaluates to " << ::testing::PrintToString(v1) << "\n" << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" << e3 << " evaluates to " << ::testing::PrintToString(v3) << "\n" << e4 << " evaluates to " << ::testing::PrintToString(v4) << "\n" << e5 << " evaluates to " << ::testing::PrintToString(v5); } // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5. // Don't use this in your code. #define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\ GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5), \ on_failure) // Internal macro for implementing {EXPECT|ASSERT}_PRED5. Don't use // this in your code. #define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\ GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \ #v1, \ #v2, \ #v3, \ #v4, \ #v5, \ pred, \ v1, \ v2, \ v3, \ v4, \ v5), on_failure) // 5-ary predicate assertion macros. #define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) #define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \ GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_) #define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \ GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) #define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \ GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_) } // namespace testing #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_ ================================================ FILE: test/gtest/include/gtest/gtest_prod.h ================================================ // Copyright 2006, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Google C++ Testing and Mocking Framework definitions useful in production code. // GOOGLETEST_CM0003 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_PROD_H_ #define GOOGLETEST_INCLUDE_GTEST_GTEST_PROD_H_ // When you need to test the private or protected members of a class, // use the FRIEND_TEST macro to declare your tests as friends of the // class. For example: // // class MyClass { // private: // void PrivateMethod(); // FRIEND_TEST(MyClassTest, PrivateMethodWorks); // }; // // class MyClassTest : public testing::Test { // // ... // }; // // TEST_F(MyClassTest, PrivateMethodWorks) { // // Can call MyClass::PrivateMethod() here. // } // // Note: The test class must be in the same namespace as the class being tested. // For example, putting MyClassTest in an anonymous namespace will not work. #define FRIEND_TEST(test_case_name, test_name)\ friend class test_case_name##_##test_name##_Test #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_PROD_H_ ================================================ FILE: test/gtest/include/gtest/internal/custom/README.md ================================================ # Customization Points The custom directory is an injection point for custom user configurations. ## Header `gtest.h` ### The following macros can be defined: * `GTEST_OS_STACK_TRACE_GETTER_` - The name of an implementation of `OsStackTraceGetterInterface`. * `GTEST_CUSTOM_TEMPDIR_FUNCTION_` - An override for `testing::TempDir()`. See `testing::TempDir` for semantics and signature. ## Header `gtest-port.h` The following macros can be defined: ### Flag related macros: * `GTEST_FLAG(flag_name)` * `GTEST_USE_OWN_FLAGFILE_FLAG_` - Define to 0 when the system provides its own flagfile flag parsing. * `GTEST_DECLARE_bool_(name)` * `GTEST_DECLARE_int32_(name)` * `GTEST_DECLARE_string_(name)` * `GTEST_DEFINE_bool_(name, default_val, doc)` * `GTEST_DEFINE_int32_(name, default_val, doc)` * `GTEST_DEFINE_string_(name, default_val, doc)` ### Logging: * `GTEST_LOG_(severity)` * `GTEST_CHECK_(condition)` * Functions `LogToStderr()` and `FlushInfoLog()` have to be provided too. ### Threading: * `GTEST_HAS_NOTIFICATION_` - Enabled if Notification is already provided. * `GTEST_HAS_MUTEX_AND_THREAD_LOCAL_` - Enabled if `Mutex` and `ThreadLocal` are already provided. Must also provide `GTEST_DECLARE_STATIC_MUTEX_(mutex)` and `GTEST_DEFINE_STATIC_MUTEX_(mutex)` * `GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks)` * `GTEST_LOCK_EXCLUDED_(locks)` ### Underlying library support features * `GTEST_HAS_CXXABI_H_` ### Exporting API symbols: * `GTEST_API_` - Specifier for exported symbols. ## Header `gtest-printers.h` * See documentation at `gtest/gtest-printers.h` for details on how to define a custom printer. ================================================ FILE: test/gtest/include/gtest/internal/custom/gtest-port.h ================================================ // Copyright 2015, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Injection point for custom user configurations. See README for details // // ** Custom implementation starts here ** #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PORT_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PORT_H_ #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PORT_H_ ================================================ FILE: test/gtest/include/gtest/internal/custom/gtest-printers.h ================================================ // Copyright 2015, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // This file provides an injection point for custom printers in a local // installation of gTest. // It will be included from gtest-printers.h and the overrides in this file // will be visible to everyone. // // Injection point for custom user configurations. See README for details // // ** Custom implementation starts here ** #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PRINTERS_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PRINTERS_H_ #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_PRINTERS_H_ ================================================ FILE: test/gtest/include/gtest/internal/custom/gtest.h ================================================ // Copyright 2015, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Injection point for custom user configurations. See README for details // // ** Custom implementation starts here ** #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_H_ #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_CUSTOM_GTEST_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-death-test-internal.h ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines internal utilities needed for implementing // death tests. They are subject to change without notice. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ #include "gtest/gtest-matchers.h" #include "gtest/internal/gtest-internal.h" #include #include namespace testing { namespace internal { GTEST_DECLARE_string_(internal_run_death_test); // Names of the flags (needed for parsing Google Test flags). const char kDeathTestStyleFlag[] = "death_test_style"; const char kDeathTestUseFork[] = "death_test_use_fork"; const char kInternalRunDeathTestFlag[] = "internal_run_death_test"; #if GTEST_HAS_DEATH_TEST GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) // DeathTest is a class that hides much of the complexity of the // GTEST_DEATH_TEST_ macro. It is abstract; its static Create method // returns a concrete class that depends on the prevailing death test // style, as defined by the --gtest_death_test_style and/or // --gtest_internal_run_death_test flags. // In describing the results of death tests, these terms are used with // the corresponding definitions: // // exit status: The integer exit information in the format specified // by wait(2) // exit code: The integer code passed to exit(3), _exit(2), or // returned from main() class GTEST_API_ DeathTest { public: // Create returns false if there was an error determining the // appropriate action to take for the current death test; for example, // if the gtest_death_test_style flag is set to an invalid value. // The LastMessage method will return a more detailed message in that // case. Otherwise, the DeathTest pointer pointed to by the "test" // argument is set. If the death test should be skipped, the pointer // is set to NULL; otherwise, it is set to the address of a new concrete // DeathTest object that controls the execution of the current test. static bool Create(const char* statement, Matcher matcher, const char* file, int line, DeathTest** test); DeathTest(); virtual ~DeathTest() { } // A helper class that aborts a death test when it's deleted. class ReturnSentinel { public: explicit ReturnSentinel(DeathTest* test) : test_(test) { } ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); } private: DeathTest* const test_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ReturnSentinel); } GTEST_ATTRIBUTE_UNUSED_; // An enumeration of possible roles that may be taken when a death // test is encountered. EXECUTE means that the death test logic should // be executed immediately. OVERSEE means that the program should prepare // the appropriate environment for a child process to execute the death // test, then wait for it to complete. enum TestRole { OVERSEE_TEST, EXECUTE_TEST }; // An enumeration of the three reasons that a test might be aborted. enum AbortReason { TEST_ENCOUNTERED_RETURN_STATEMENT, TEST_THREW_EXCEPTION, TEST_DID_NOT_DIE }; // Assumes one of the above roles. virtual TestRole AssumeRole() = 0; // Waits for the death test to finish and returns its status. virtual int Wait() = 0; // Returns true if the death test passed; that is, the test process // exited during the test, its exit status matches a user-supplied // predicate, and its stderr output matches a user-supplied regular // expression. // The user-supplied predicate may be a macro expression rather // than a function pointer or functor, or else Wait and Passed could // be combined. virtual bool Passed(bool exit_status_ok) = 0; // Signals that the death test did not die as expected. virtual void Abort(AbortReason reason) = 0; // Returns a human-readable outcome message regarding the outcome of // the last death test. static const char* LastMessage(); static void set_last_death_test_message(const std::string& message); private: // A string containing a description of the outcome of the last death test. static std::string last_death_test_message_; GTEST_DISALLOW_COPY_AND_ASSIGN_(DeathTest); }; GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 // Factory interface for death tests. May be mocked out for testing. class DeathTestFactory { public: virtual ~DeathTestFactory() { } virtual bool Create(const char* statement, Matcher matcher, const char* file, int line, DeathTest** test) = 0; }; // A concrete DeathTestFactory implementation for normal use. class DefaultDeathTestFactory : public DeathTestFactory { public: bool Create(const char* statement, Matcher matcher, const char* file, int line, DeathTest** test) override; }; // Returns true if exit_status describes a process that was terminated // by a signal, or exited normally with a nonzero exit code. GTEST_API_ bool ExitedUnsuccessfully(int exit_status); // A string passed to EXPECT_DEATH (etc.) is caught by one of these overloads // and interpreted as a regex (rather than an Eq matcher) for legacy // compatibility. inline Matcher MakeDeathTestMatcher( ::testing::internal::RE regex) { return ContainsRegex(regex.pattern()); } inline Matcher MakeDeathTestMatcher(const char* regex) { return ContainsRegex(regex); } inline Matcher MakeDeathTestMatcher( const ::std::string& regex) { return ContainsRegex(regex); } // If a Matcher is passed to EXPECT_DEATH (etc.), it's // used directly. inline Matcher MakeDeathTestMatcher( Matcher matcher) { return matcher; } // Traps C++ exceptions escaping statement and reports them as test // failures. Note that trapping SEH exceptions is not implemented here. # if GTEST_HAS_EXCEPTIONS # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ try { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } catch (const ::std::exception& gtest_exception) { \ fprintf(\ stderr, \ "\n%s: Caught std::exception-derived exception escaping the " \ "death test statement. Exception message: %s\n", \ ::testing::internal::FormatFileLocation(__FILE__, __LINE__).c_str(), \ gtest_exception.what()); \ fflush(stderr); \ death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \ } catch (...) { \ death_test->Abort(::testing::internal::DeathTest::TEST_THREW_EXCEPTION); \ } # else # define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) # endif // This macro is for implementing ASSERT_DEATH*, EXPECT_DEATH*, // ASSERT_EXIT*, and EXPECT_EXIT*. #define GTEST_DEATH_TEST_(statement, predicate, regex_or_matcher, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ ::testing::internal::DeathTest* gtest_dt; \ if (!::testing::internal::DeathTest::Create( \ #statement, \ ::testing::internal::MakeDeathTestMatcher(regex_or_matcher), \ __FILE__, __LINE__, >est_dt)) { \ goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ } \ if (gtest_dt != nullptr) { \ std::unique_ptr< ::testing::internal::DeathTest> gtest_dt_ptr(gtest_dt); \ switch (gtest_dt->AssumeRole()) { \ case ::testing::internal::DeathTest::OVERSEE_TEST: \ if (!gtest_dt->Passed(predicate(gtest_dt->Wait()))) { \ goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \ } \ break; \ case ::testing::internal::DeathTest::EXECUTE_TEST: { \ ::testing::internal::DeathTest::ReturnSentinel gtest_sentinel( \ gtest_dt); \ GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, gtest_dt); \ gtest_dt->Abort(::testing::internal::DeathTest::TEST_DID_NOT_DIE); \ break; \ } \ default: \ break; \ } \ } \ } else \ GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__) \ : fail(::testing::internal::DeathTest::LastMessage()) // The symbol "fail" here expands to something into which a message // can be streamed. // This macro is for implementing ASSERT/EXPECT_DEBUG_DEATH when compiled in // NDEBUG mode. In this case we need the statements to be executed and the macro // must accept a streamed message even though the message is never printed. // The regex object is not evaluated, but it is used to prevent "unused" // warnings and to avoid an expression that doesn't compile in debug mode. #define GTEST_EXECUTE_STATEMENT_(statement, regex_or_matcher) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } else if (!::testing::internal::AlwaysTrue()) { \ ::testing::internal::MakeDeathTestMatcher(regex_or_matcher); \ } else \ ::testing::Message() // A class representing the parsed contents of the // --gtest_internal_run_death_test flag, as it existed when // RUN_ALL_TESTS was called. class InternalRunDeathTestFlag { public: InternalRunDeathTestFlag(const std::string& a_file, int a_line, int an_index, int a_write_fd) : file_(a_file), line_(a_line), index_(an_index), write_fd_(a_write_fd) {} ~InternalRunDeathTestFlag() { if (write_fd_ >= 0) posix::Close(write_fd_); } const std::string& file() const { return file_; } int line() const { return line_; } int index() const { return index_; } int write_fd() const { return write_fd_; } private: std::string file_; int line_; int index_; int write_fd_; GTEST_DISALLOW_COPY_AND_ASSIGN_(InternalRunDeathTestFlag); }; // Returns a newly created InternalRunDeathTestFlag object with fields // initialized from the GTEST_FLAG(internal_run_death_test) flag if // the flag is specified; otherwise returns NULL. InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag(); #endif // GTEST_HAS_DEATH_TEST } // namespace internal } // namespace testing #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-filepath.h ================================================ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Google Test filepath utilities // // This header file declares classes and functions used internally by // Google Test. They are subject to change without notice. // // This file is #included in gtest/internal/gtest-internal.h. // Do not include this header file separately! // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ #include "gtest/internal/gtest-string.h" GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) namespace testing { namespace internal { // FilePath - a class for file and directory pathname manipulation which // handles platform-specific conventions (like the pathname separator). // Used for helper functions for naming files in a directory for xml output. // Except for Set methods, all methods are const or static, which provides an // "immutable value object" -- useful for peace of mind. // A FilePath with a value ending in a path separator ("like/this/") represents // a directory, otherwise it is assumed to represent a file. In either case, // it may or may not represent an actual file or directory in the file system. // Names are NOT checked for syntax correctness -- no checking for illegal // characters, malformed paths, etc. class GTEST_API_ FilePath { public: FilePath() : pathname_("") { } FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } explicit FilePath(const std::string& pathname) : pathname_(pathname) { Normalize(); } FilePath& operator=(const FilePath& rhs) { Set(rhs); return *this; } void Set(const FilePath& rhs) { pathname_ = rhs.pathname_; } const std::string& string() const { return pathname_; } const char* c_str() const { return pathname_.c_str(); } // Returns the current working directory, or "" if unsuccessful. static FilePath GetCurrentDir(); // Given directory = "dir", base_name = "test", number = 0, // extension = "xml", returns "dir/test.xml". If number is greater // than zero (e.g., 12), returns "dir/test_12.xml". // On Windows platform, uses \ as the separator rather than /. static FilePath MakeFileName(const FilePath& directory, const FilePath& base_name, int number, const char* extension); // Given directory = "dir", relative_path = "test.xml", // returns "dir/test.xml". // On Windows, uses \ as the separator rather than /. static FilePath ConcatPaths(const FilePath& directory, const FilePath& relative_path); // Returns a pathname for a file that does not currently exist. The pathname // will be directory/base_name.extension or // directory/base_name_.extension if directory/base_name.extension // already exists. The number will be incremented until a pathname is found // that does not already exist. // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. // There could be a race condition if two or more processes are calling this // function at the same time -- they could both pick the same filename. static FilePath GenerateUniqueFileName(const FilePath& directory, const FilePath& base_name, const char* extension); // Returns true if and only if the path is "". bool IsEmpty() const { return pathname_.empty(); } // If input name has a trailing separator character, removes it and returns // the name, otherwise return the name string unmodified. // On Windows platform, uses \ as the separator, other platforms use /. FilePath RemoveTrailingPathSeparator() const; // Returns a copy of the FilePath with the directory part removed. // Example: FilePath("path/to/file").RemoveDirectoryName() returns // FilePath("file"). If there is no directory part ("just_a_file"), it returns // the FilePath unmodified. If there is no file part ("just_a_dir/") it // returns an empty FilePath (""). // On Windows platform, '\' is the path separator, otherwise it is '/'. FilePath RemoveDirectoryName() const; // RemoveFileName returns the directory path with the filename removed. // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". // If the FilePath is "a_file" or "/a_file", RemoveFileName returns // FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does // not have a file, like "just/a/dir/", it returns the FilePath unmodified. // On Windows platform, '\' is the path separator, otherwise it is '/'. FilePath RemoveFileName() const; // Returns a copy of the FilePath with the case-insensitive extension removed. // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns // FilePath("dir/file"). If a case-insensitive extension is not // found, returns a copy of the original FilePath. FilePath RemoveExtension(const char* extension) const; // Creates directories so that path exists. Returns true if successful or if // the directories already exist; returns false if unable to create // directories for any reason. Will also return false if the FilePath does // not represent a directory (that is, it doesn't end with a path separator). bool CreateDirectoriesRecursively() const; // Create the directory so that path exists. Returns true if successful or // if the directory already exists; returns false if unable to create the // directory for any reason, including if the parent directory does not // exist. Not named "CreateDirectory" because that's a macro on Windows. bool CreateFolder() const; // Returns true if FilePath describes something in the file-system, // either a file, directory, or whatever, and that something exists. bool FileOrDirectoryExists() const; // Returns true if pathname describes a directory in the file-system // that exists. bool DirectoryExists() const; // Returns true if FilePath ends with a path separator, which indicates that // it is intended to represent a directory. Returns false otherwise. // This does NOT check that a directory (or file) actually exists. bool IsDirectory() const; // Returns true if pathname describes a root directory. (Windows has one // root directory per disk drive.) bool IsRootDirectory() const; // Returns true if pathname describes an absolute path. bool IsAbsolutePath() const; private: // Replaces multiple consecutive separators with a single separator. // For example, "bar///foo" becomes "bar/foo". Does not eliminate other // redundancies that might be in a pathname involving "." or "..". // // A pathname with multiple consecutive separators may occur either through // user error or as a result of some scripts or APIs that generate a pathname // with a trailing separator. On other platforms the same API or script // may NOT generate a pathname with a trailing "/". Then elsewhere that // pathname may have another "/" and pathname components added to it, // without checking for the separator already being there. // The script language and operating system may allow paths like "foo//bar" // but some of the functions in FilePath will not handle that correctly. In // particular, RemoveTrailingPathSeparator() only removes one separator, and // it is called in CreateDirectoriesRecursively() assuming that it will change // a pathname from directory syntax (trailing separator) to filename syntax. // // On Windows this method also replaces the alternate path separator '/' with // the primary path separator '\\', so that for example "bar\\/\\foo" becomes // "bar\\foo". void Normalize(); // Returns a pointer to the last occurrence of a valid path separator in // the FilePath. On Windows, for example, both '/' and '\' are valid path // separators. Returns NULL if no path separator was found. const char* FindLastPathSeparator() const; std::string pathname_; }; // class FilePath } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_FILEPATH_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-internal.h ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file declares functions and macros used internally by // Google Test. They are subject to change without notice. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ #include "gtest/internal/gtest-port.h" #if GTEST_OS_LINUX # include # include # include # include #endif // GTEST_OS_LINUX #if GTEST_HAS_EXCEPTIONS # include #endif #include #include #include #include #include #include #include #include #include #include #include #include "gtest/gtest-message.h" #include "gtest/internal/gtest-filepath.h" #include "gtest/internal/gtest-string.h" #include "gtest/internal/gtest-type-util.h" // Due to C++ preprocessor weirdness, we need double indirection to // concatenate two tokens when one of them is __LINE__. Writing // // foo ## __LINE__ // // will result in the token foo__LINE__, instead of foo followed by // the current line number. For more details, see // http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6 #define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar) #define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar // Stringifies its argument. // Work around a bug in visual studio which doesn't accept code like this: // // #define GTEST_STRINGIFY_(name) #name // #define MACRO(a, b, c) ... GTEST_STRINGIFY_(a) ... // MACRO(, x, y) // // Complaining about the argument to GTEST_STRINGIFY_ being empty. // This is allowed by the spec. #define GTEST_STRINGIFY_HELPER_(name, ...) #name #define GTEST_STRINGIFY_(...) GTEST_STRINGIFY_HELPER_(__VA_ARGS__, ) namespace proto2 { class MessageLite; } namespace testing { // Forward declarations. class AssertionResult; // Result of an assertion. class Message; // Represents a failure message. class Test; // Represents a test. class TestInfo; // Information about a test. class TestPartResult; // Result of a test part. class UnitTest; // A collection of test suites. template ::std::string PrintToString(const T& value); namespace internal { struct TraceInfo; // Information about a trace point. class TestInfoImpl; // Opaque implementation of TestInfo class UnitTestImpl; // Opaque implementation of UnitTest // The text used in failure messages to indicate the start of the // stack trace. GTEST_API_ extern const char kStackTraceMarker[]; // An IgnoredValue object can be implicitly constructed from ANY value. class IgnoredValue { struct Sink {}; public: // This constructor template allows any value to be implicitly // converted to IgnoredValue. The object has no data member and // doesn't try to remember anything about the argument. We // deliberately omit the 'explicit' keyword in order to allow the // conversion to be implicit. // Disable the conversion if T already has a magical conversion operator. // Otherwise we get ambiguity. template ::value, int>::type = 0> IgnoredValue(const T& /* ignored */) {} // NOLINT(runtime/explicit) }; // Appends the user-supplied message to the Google-Test-generated message. GTEST_API_ std::string AppendUserMessage( const std::string& gtest_msg, const Message& user_msg); #if GTEST_HAS_EXCEPTIONS GTEST_DISABLE_MSC_WARNINGS_PUSH_(4275 \ /* an exported class was derived from a class that was not exported */) // This exception is thrown by (and only by) a failed Google Test // assertion when GTEST_FLAG(throw_on_failure) is true (if exceptions // are enabled). We derive it from std::runtime_error, which is for // errors presumably detectable only at run time. Since // std::runtime_error inherits from std::exception, many testing // frameworks know how to extract and print the message inside it. class GTEST_API_ GoogleTestFailureException : public ::std::runtime_error { public: explicit GoogleTestFailureException(const TestPartResult& failure); }; GTEST_DISABLE_MSC_WARNINGS_POP_() // 4275 #endif // GTEST_HAS_EXCEPTIONS namespace edit_distance { // Returns the optimal edits to go from 'left' to 'right'. // All edits cost the same, with replace having lower priority than // add/remove. // Simple implementation of the Wagner-Fischer algorithm. // See http://en.wikipedia.org/wiki/Wagner-Fischer_algorithm enum EditType { kMatch, kAdd, kRemove, kReplace }; GTEST_API_ std::vector CalculateOptimalEdits( const std::vector& left, const std::vector& right); // Same as above, but the input is represented as strings. GTEST_API_ std::vector CalculateOptimalEdits( const std::vector& left, const std::vector& right); // Create a diff of the input strings in Unified diff format. GTEST_API_ std::string CreateUnifiedDiff(const std::vector& left, const std::vector& right, size_t context = 2); } // namespace edit_distance // Calculate the diff between 'left' and 'right' and return it in unified diff // format. // If not null, stores in 'total_line_count' the total number of lines found // in left + right. GTEST_API_ std::string DiffStrings(const std::string& left, const std::string& right, size_t* total_line_count); // Constructs and returns the message for an equality assertion // (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. // // The first four parameters are the expressions used in the assertion // and their values, as strings. For example, for ASSERT_EQ(foo, bar) // where foo is 5 and bar is 6, we have: // // expected_expression: "foo" // actual_expression: "bar" // expected_value: "5" // actual_value: "6" // // The ignoring_case parameter is true if and only if the assertion is a // *_STRCASEEQ*. When it's true, the string " (ignoring case)" will // be inserted into the message. GTEST_API_ AssertionResult EqFailure(const char* expected_expression, const char* actual_expression, const std::string& expected_value, const std::string& actual_value, bool ignoring_case); // Constructs a failure message for Boolean assertions such as EXPECT_TRUE. GTEST_API_ std::string GetBoolAssertionFailureMessage( const AssertionResult& assertion_result, const char* expression_text, const char* actual_predicate_value, const char* expected_predicate_value); // This template class represents an IEEE floating-point number // (either single-precision or double-precision, depending on the // template parameters). // // The purpose of this class is to do more sophisticated number // comparison. (Due to round-off error, etc, it's very unlikely that // two floating-points will be equal exactly. Hence a naive // comparison by the == operation often doesn't work.) // // Format of IEEE floating-point: // // The most-significant bit being the leftmost, an IEEE // floating-point looks like // // sign_bit exponent_bits fraction_bits // // Here, sign_bit is a single bit that designates the sign of the // number. // // For float, there are 8 exponent bits and 23 fraction bits. // // For double, there are 11 exponent bits and 52 fraction bits. // // More details can be found at // http://en.wikipedia.org/wiki/IEEE_floating-point_standard. // // Template parameter: // // RawType: the raw floating-point type (either float or double) template class FloatingPoint { public: // Defines the unsigned integer type that has the same size as the // floating point number. typedef typename TypeWithSize::UInt Bits; // Constants. // # of bits in a number. static const size_t kBitCount = 8*sizeof(RawType); // # of fraction bits in a number. static const size_t kFractionBitCount = std::numeric_limits::digits - 1; // # of exponent bits in a number. static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount; // The mask for the sign bit. static const Bits kSignBitMask = static_cast(1) << (kBitCount - 1); // The mask for the fraction bits. static const Bits kFractionBitMask = ~static_cast(0) >> (kExponentBitCount + 1); // The mask for the exponent bits. static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask); // How many ULP's (Units in the Last Place) we want to tolerate when // comparing two numbers. The larger the value, the more error we // allow. A 0 value means that two numbers must be exactly the same // to be considered equal. // // The maximum error of a single floating-point operation is 0.5 // units in the last place. On Intel CPU's, all floating-point // calculations are done with 80-bit precision, while double has 64 // bits. Therefore, 4 should be enough for ordinary use. // // See the following article for more details on ULP: // http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/ static const uint32_t kMaxUlps = 4; // Constructs a FloatingPoint from a raw floating-point number. // // On an Intel CPU, passing a non-normalized NAN (Not a Number) // around may change its bits, although the new value is guaranteed // to be also a NAN. Therefore, don't expect this constructor to // preserve the bits in x when x is a NAN. explicit FloatingPoint(const RawType& x) { u_.value_ = x; } // Static methods // Reinterprets a bit pattern as a floating-point number. // // This function is needed to test the AlmostEquals() method. static RawType ReinterpretBits(const Bits bits) { FloatingPoint fp(0); fp.u_.bits_ = bits; return fp.u_.value_; } // Returns the floating-point number that represent positive infinity. static RawType Infinity() { return ReinterpretBits(kExponentBitMask); } // Returns the maximum representable finite floating-point number. static RawType Max(); // Non-static methods // Returns the bits that represents this number. const Bits &bits() const { return u_.bits_; } // Returns the exponent bits of this number. Bits exponent_bits() const { return kExponentBitMask & u_.bits_; } // Returns the fraction bits of this number. Bits fraction_bits() const { return kFractionBitMask & u_.bits_; } // Returns the sign bit of this number. Bits sign_bit() const { return kSignBitMask & u_.bits_; } // Returns true if and only if this is NAN (not a number). bool is_nan() const { // It's a NAN if the exponent bits are all ones and the fraction // bits are not entirely zeros. return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0); } // Returns true if and only if this number is at most kMaxUlps ULP's away // from rhs. In particular, this function: // // - returns false if either number is (or both are) NAN. // - treats really large numbers as almost equal to infinity. // - thinks +0.0 and -0.0 are 0 DLP's apart. bool AlmostEquals(const FloatingPoint& rhs) const { // The IEEE standard says that any comparison operation involving // a NAN must return false. if (is_nan() || rhs.is_nan()) return false; return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_) <= kMaxUlps; } private: // The data type used to store the actual floating-point number. union FloatingPointUnion { RawType value_; // The raw floating-point number. Bits bits_; // The bits that represent the number. }; // Converts an integer from the sign-and-magnitude representation to // the biased representation. More precisely, let N be 2 to the // power of (kBitCount - 1), an integer x is represented by the // unsigned number x + N. // // For instance, // // -N + 1 (the most negative number representable using // sign-and-magnitude) is represented by 1; // 0 is represented by N; and // N - 1 (the biggest number representable using // sign-and-magnitude) is represented by 2N - 1. // // Read http://en.wikipedia.org/wiki/Signed_number_representations // for more details on signed number representations. static Bits SignAndMagnitudeToBiased(const Bits &sam) { if (kSignBitMask & sam) { // sam represents a negative number. return ~sam + 1; } else { // sam represents a positive number. return kSignBitMask | sam; } } // Given two numbers in the sign-and-magnitude representation, // returns the distance between them as an unsigned number. static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1, const Bits &sam2) { const Bits biased1 = SignAndMagnitudeToBiased(sam1); const Bits biased2 = SignAndMagnitudeToBiased(sam2); return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1); } FloatingPointUnion u_; }; // We cannot use std::numeric_limits::max() as it clashes with the max() // macro defined by . template <> inline float FloatingPoint::Max() { return FLT_MAX; } template <> inline double FloatingPoint::Max() { return DBL_MAX; } // Typedefs the instances of the FloatingPoint template class that we // care to use. typedef FloatingPoint Float; typedef FloatingPoint Double; // In order to catch the mistake of putting tests that use different // test fixture classes in the same test suite, we need to assign // unique IDs to fixture classes and compare them. The TypeId type is // used to hold such IDs. The user should treat TypeId as an opaque // type: the only operation allowed on TypeId values is to compare // them for equality using the == operator. typedef const void* TypeId; template class TypeIdHelper { public: // dummy_ must not have a const type. Otherwise an overly eager // compiler (e.g. MSVC 7.1 & 8.0) may try to merge // TypeIdHelper::dummy_ for different Ts as an "optimization". static bool dummy_; }; template bool TypeIdHelper::dummy_ = false; // GetTypeId() returns the ID of type T. Different values will be // returned for different types. Calling the function twice with the // same type argument is guaranteed to return the same ID. template TypeId GetTypeId() { // The compiler is required to allocate a different // TypeIdHelper::dummy_ variable for each T used to instantiate // the template. Therefore, the address of dummy_ is guaranteed to // be unique. return &(TypeIdHelper::dummy_); } // Returns the type ID of ::testing::Test. Always call this instead // of GetTypeId< ::testing::Test>() to get the type ID of // ::testing::Test, as the latter may give the wrong result due to a // suspected linker bug when compiling Google Test as a Mac OS X // framework. GTEST_API_ TypeId GetTestTypeId(); // Defines the abstract factory interface that creates instances // of a Test object. class TestFactoryBase { public: virtual ~TestFactoryBase() {} // Creates a test instance to run. The instance is both created and destroyed // within TestInfoImpl::Run() virtual Test* CreateTest() = 0; protected: TestFactoryBase() {} private: GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase); }; // This class provides implementation of TeastFactoryBase interface. // It is used in TEST and TEST_F macros. template class TestFactoryImpl : public TestFactoryBase { public: Test* CreateTest() override { return new TestClass; } }; #if GTEST_OS_WINDOWS // Predicate-formatters for implementing the HRESULT checking macros // {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED} // We pass a long instead of HRESULT to avoid causing an // include dependency for the HRESULT type. GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr, long hr); // NOLINT GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr, long hr); // NOLINT #endif // GTEST_OS_WINDOWS // Types of SetUpTestSuite() and TearDownTestSuite() functions. using SetUpTestSuiteFunc = void (*)(); using TearDownTestSuiteFunc = void (*)(); struct CodeLocation { CodeLocation(const std::string& a_file, int a_line) : file(a_file), line(a_line) {} std::string file; int line; }; // Helper to identify which setup function for TestCase / TestSuite to call. // Only one function is allowed, either TestCase or TestSute but not both. // Utility functions to help SuiteApiResolver using SetUpTearDownSuiteFuncType = void (*)(); inline SetUpTearDownSuiteFuncType GetNotDefaultOrNull( SetUpTearDownSuiteFuncType a, SetUpTearDownSuiteFuncType def) { return a == def ? nullptr : a; } template // Note that SuiteApiResolver inherits from T because // SetUpTestSuite()/TearDownTestSuite() could be protected. Ths way // SuiteApiResolver can access them. struct SuiteApiResolver : T { // testing::Test is only forward declared at this point. So we make it a // dependend class for the compiler to be OK with it. using Test = typename std::conditional::type; static SetUpTearDownSuiteFuncType GetSetUpCaseOrSuite(const char* filename, int line_num) { #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ SetUpTearDownSuiteFuncType test_case_fp = GetNotDefaultOrNull(&T::SetUpTestCase, &Test::SetUpTestCase); SetUpTearDownSuiteFuncType test_suite_fp = GetNotDefaultOrNull(&T::SetUpTestSuite, &Test::SetUpTestSuite); GTEST_CHECK_(!test_case_fp || !test_suite_fp) << "Test can not provide both SetUpTestSuite and SetUpTestCase, please " "make sure there is only one present at " << filename << ":" << line_num; return test_case_fp != nullptr ? test_case_fp : test_suite_fp; #else (void)(filename); (void)(line_num); return &T::SetUpTestSuite; #endif } static SetUpTearDownSuiteFuncType GetTearDownCaseOrSuite(const char* filename, int line_num) { #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ SetUpTearDownSuiteFuncType test_case_fp = GetNotDefaultOrNull(&T::TearDownTestCase, &Test::TearDownTestCase); SetUpTearDownSuiteFuncType test_suite_fp = GetNotDefaultOrNull(&T::TearDownTestSuite, &Test::TearDownTestSuite); GTEST_CHECK_(!test_case_fp || !test_suite_fp) << "Test can not provide both TearDownTestSuite and TearDownTestCase," " please make sure there is only one present at" << filename << ":" << line_num; return test_case_fp != nullptr ? test_case_fp : test_suite_fp; #else (void)(filename); (void)(line_num); return &T::TearDownTestSuite; #endif } }; // Creates a new TestInfo object and registers it with Google Test; // returns the created object. // // Arguments: // // test_suite_name: name of the test suite // name: name of the test // type_param: the name of the test's type parameter, or NULL if // this is not a typed or a type-parameterized test. // value_param: text representation of the test's value parameter, // or NULL if this is not a type-parameterized test. // code_location: code location where the test is defined // fixture_class_id: ID of the test fixture class // set_up_tc: pointer to the function that sets up the test suite // tear_down_tc: pointer to the function that tears down the test suite // factory: pointer to the factory that creates a test object. // The newly created TestInfo instance will assume // ownership of the factory object. GTEST_API_ TestInfo* MakeAndRegisterTestInfo( const char* test_suite_name, const char* name, const char* type_param, const char* value_param, CodeLocation code_location, TypeId fixture_class_id, SetUpTestSuiteFunc set_up_tc, TearDownTestSuiteFunc tear_down_tc, TestFactoryBase* factory); // If *pstr starts with the given prefix, modifies *pstr to be right // past the prefix and returns true; otherwise leaves *pstr unchanged // and returns false. None of pstr, *pstr, and prefix can be NULL. GTEST_API_ bool SkipPrefix(const char* prefix, const char** pstr); GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) // State of the definition of a type-parameterized test suite. class GTEST_API_ TypedTestSuitePState { public: TypedTestSuitePState() : registered_(false) {} // Adds the given test name to defined_test_names_ and return true // if the test suite hasn't been registered; otherwise aborts the // program. bool AddTestName(const char* file, int line, const char* case_name, const char* test_name) { if (registered_) { fprintf(stderr, "%s Test %s must be defined before " "REGISTER_TYPED_TEST_SUITE_P(%s, ...).\n", FormatFileLocation(file, line).c_str(), test_name, case_name); fflush(stderr); posix::Abort(); } registered_tests_.insert( ::std::make_pair(test_name, CodeLocation(file, line))); return true; } bool TestExists(const std::string& test_name) const { return registered_tests_.count(test_name) > 0; } const CodeLocation& GetCodeLocation(const std::string& test_name) const { RegisteredTestsMap::const_iterator it = registered_tests_.find(test_name); GTEST_CHECK_(it != registered_tests_.end()); return it->second; } // Verifies that registered_tests match the test names in // defined_test_names_; returns registered_tests if successful, or // aborts the program otherwise. const char* VerifyRegisteredTestNames(const char* test_suite_name, const char* file, int line, const char* registered_tests); private: typedef ::std::map RegisteredTestsMap; bool registered_; RegisteredTestsMap registered_tests_; }; // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ using TypedTestCasePState = TypedTestSuitePState; #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 // Skips to the first non-space char after the first comma in 'str'; // returns NULL if no comma is found in 'str'. inline const char* SkipComma(const char* str) { const char* comma = strchr(str, ','); if (comma == nullptr) { return nullptr; } while (IsSpace(*(++comma))) {} return comma; } // Returns the prefix of 'str' before the first comma in it; returns // the entire string if it contains no comma. inline std::string GetPrefixUntilComma(const char* str) { const char* comma = strchr(str, ','); return comma == nullptr ? str : std::string(str, comma); } // Splits a given string on a given delimiter, populating a given // vector with the fields. void SplitString(const ::std::string& str, char delimiter, ::std::vector< ::std::string>* dest); // The default argument to the template below for the case when the user does // not provide a name generator. struct DefaultNameGenerator { template static std::string GetName(int i) { return StreamableToString(i); } }; template struct NameGeneratorSelector { typedef Provided type; }; template void GenerateNamesRecursively(internal::None, std::vector*, int) {} template void GenerateNamesRecursively(Types, std::vector* result, int i) { result->push_back(NameGenerator::template GetName(i)); GenerateNamesRecursively(typename Types::Tail(), result, i + 1); } template std::vector GenerateNames() { std::vector result; GenerateNamesRecursively(Types(), &result, 0); return result; } // TypeParameterizedTest::Register() // registers a list of type-parameterized tests with Google Test. The // return value is insignificant - we just need to return something // such that we can call this function in a namespace scope. // // Implementation note: The GTEST_TEMPLATE_ macro declares a template // template parameter. It's defined in gtest-type-util.h. template class TypeParameterizedTest { public: // 'index' is the index of the test in the type list 'Types' // specified in INSTANTIATE_TYPED_TEST_SUITE_P(Prefix, TestSuite, // Types). Valid values for 'index' are [0, N - 1] where N is the // length of Types. static bool Register(const char* prefix, const CodeLocation& code_location, const char* case_name, const char* test_names, int index, const std::vector& type_names = GenerateNames()) { typedef typename Types::Head Type; typedef Fixture FixtureClass; typedef typename GTEST_BIND_(TestSel, Type) TestClass; // First, registers the first type-parameterized test in the type // list. MakeAndRegisterTestInfo( (std::string(prefix) + (prefix[0] == '\0' ? "" : "/") + case_name + "/" + type_names[static_cast(index)]) .c_str(), StripTrailingSpaces(GetPrefixUntilComma(test_names)).c_str(), GetTypeName().c_str(), nullptr, // No value parameter. code_location, GetTypeId(), SuiteApiResolver::GetSetUpCaseOrSuite( code_location.file.c_str(), code_location.line), SuiteApiResolver::GetTearDownCaseOrSuite( code_location.file.c_str(), code_location.line), new TestFactoryImpl); // Next, recurses (at compile time) with the tail of the type list. return TypeParameterizedTest::Register(prefix, code_location, case_name, test_names, index + 1, type_names); } }; // The base case for the compile time recursion. template class TypeParameterizedTest { public: static bool Register(const char* /*prefix*/, const CodeLocation&, const char* /*case_name*/, const char* /*test_names*/, int /*index*/, const std::vector& = std::vector() /*type_names*/) { return true; } }; GTEST_API_ void RegisterTypeParameterizedTestSuite(const char* test_suite_name, CodeLocation code_location); GTEST_API_ void RegisterTypeParameterizedTestSuiteInstantiation( const char* case_name); // TypeParameterizedTestSuite::Register() // registers *all combinations* of 'Tests' and 'Types' with Google // Test. The return value is insignificant - we just need to return // something such that we can call this function in a namespace scope. template class TypeParameterizedTestSuite { public: static bool Register(const char* prefix, CodeLocation code_location, const TypedTestSuitePState* state, const char* case_name, const char* test_names, const std::vector& type_names = GenerateNames()) { RegisterTypeParameterizedTestSuiteInstantiation(case_name); std::string test_name = StripTrailingSpaces( GetPrefixUntilComma(test_names)); if (!state->TestExists(test_name)) { fprintf(stderr, "Failed to get code location for test %s.%s at %s.", case_name, test_name.c_str(), FormatFileLocation(code_location.file.c_str(), code_location.line).c_str()); fflush(stderr); posix::Abort(); } const CodeLocation& test_location = state->GetCodeLocation(test_name); typedef typename Tests::Head Head; // First, register the first test in 'Test' for each type in 'Types'. TypeParameterizedTest::Register( prefix, test_location, case_name, test_names, 0, type_names); // Next, recurses (at compile time) with the tail of the test list. return TypeParameterizedTestSuite::Register(prefix, code_location, state, case_name, SkipComma(test_names), type_names); } }; // The base case for the compile time recursion. template class TypeParameterizedTestSuite { public: static bool Register(const char* /*prefix*/, const CodeLocation&, const TypedTestSuitePState* /*state*/, const char* /*case_name*/, const char* /*test_names*/, const std::vector& = std::vector() /*type_names*/) { return true; } }; // Returns the current OS stack trace as an std::string. // // The maximum number of stack frames to be included is specified by // the gtest_stack_trace_depth flag. The skip_count parameter // specifies the number of top frames to be skipped, which doesn't // count against the number of frames to be included. // // For example, if Foo() calls Bar(), which in turn calls // GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. GTEST_API_ std::string GetCurrentOsStackTraceExceptTop( UnitTest* unit_test, int skip_count); // Helpers for suppressing warnings on unreachable code or constant // condition. // Always returns true. GTEST_API_ bool AlwaysTrue(); // Always returns false. inline bool AlwaysFalse() { return !AlwaysTrue(); } // Helper for suppressing false warning from Clang on a const char* // variable declared in a conditional expression always being NULL in // the else branch. struct GTEST_API_ ConstCharPtr { ConstCharPtr(const char* str) : value(str) {} operator bool() const { return true; } const char* value; }; // Helper for declaring std::string within 'if' statement // in pre C++17 build environment. struct TrueWithString { TrueWithString() = default; explicit TrueWithString(const char* str) : value(str) {} explicit TrueWithString(const std::string& str) : value(str) {} explicit operator bool() const { return true; } std::string value; }; // A simple Linear Congruential Generator for generating random // numbers with a uniform distribution. Unlike rand() and srand(), it // doesn't use global state (and therefore can't interfere with user // code). Unlike rand_r(), it's portable. An LCG isn't very random, // but it's good enough for our purposes. class GTEST_API_ Random { public: static const uint32_t kMaxRange = 1u << 31; explicit Random(uint32_t seed) : state_(seed) {} void Reseed(uint32_t seed) { state_ = seed; } // Generates a random number from [0, range). Crashes if 'range' is // 0 or greater than kMaxRange. uint32_t Generate(uint32_t range); private: uint32_t state_; GTEST_DISALLOW_COPY_AND_ASSIGN_(Random); }; // Turns const U&, U&, const U, and U all into U. #define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \ typename std::remove_const::type>::type // HasDebugStringAndShortDebugString::value is a compile-time bool constant // that's true if and only if T has methods DebugString() and ShortDebugString() // that return std::string. template class HasDebugStringAndShortDebugString { private: template static auto CheckDebugString(C*) -> typename std::is_same< std::string, decltype(std::declval().DebugString())>::type; template static std::false_type CheckDebugString(...); template static auto CheckShortDebugString(C*) -> typename std::is_same< std::string, decltype(std::declval().ShortDebugString())>::type; template static std::false_type CheckShortDebugString(...); using HasDebugStringType = decltype(CheckDebugString(nullptr)); using HasShortDebugStringType = decltype(CheckShortDebugString(nullptr)); public: static constexpr bool value = HasDebugStringType::value && HasShortDebugStringType::value; }; template constexpr bool HasDebugStringAndShortDebugString::value; // When the compiler sees expression IsContainerTest(0), if C is an // STL-style container class, the first overload of IsContainerTest // will be viable (since both C::iterator* and C::const_iterator* are // valid types and NULL can be implicitly converted to them). It will // be picked over the second overload as 'int' is a perfect match for // the type of argument 0. If C::iterator or C::const_iterator is not // a valid type, the first overload is not viable, and the second // overload will be picked. Therefore, we can determine whether C is // a container class by checking the type of IsContainerTest(0). // The value of the expression is insignificant. // // In C++11 mode we check the existence of a const_iterator and that an // iterator is properly implemented for the container. // // For pre-C++11 that we look for both C::iterator and C::const_iterator. // The reason is that C++ injects the name of a class as a member of the // class itself (e.g. you can refer to class iterator as either // 'iterator' or 'iterator::iterator'). If we look for C::iterator // only, for example, we would mistakenly think that a class named // iterator is an STL container. // // Also note that the simpler approach of overloading // IsContainerTest(typename C::const_iterator*) and // IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++. typedef int IsContainer; template ().begin()), class = decltype(::std::declval().end()), class = decltype(++::std::declval()), class = decltype(*::std::declval()), class = typename C::const_iterator> IsContainer IsContainerTest(int /* dummy */) { return 0; } typedef char IsNotContainer; template IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; } // Trait to detect whether a type T is a hash table. // The heuristic used is that the type contains an inner type `hasher` and does // not contain an inner type `reverse_iterator`. // If the container is iterable in reverse, then order might actually matter. template struct IsHashTable { private: template static char test(typename U::hasher*, typename U::reverse_iterator*); template static int test(typename U::hasher*, ...); template static char test(...); public: static const bool value = sizeof(test(nullptr, nullptr)) == sizeof(int); }; template const bool IsHashTable::value; template (0)) == sizeof(IsContainer)> struct IsRecursiveContainerImpl; template struct IsRecursiveContainerImpl : public std::false_type {}; // Since the IsRecursiveContainerImpl depends on the IsContainerTest we need to // obey the same inconsistencies as the IsContainerTest, namely check if // something is a container is relying on only const_iterator in C++11 and // is relying on both const_iterator and iterator otherwise template struct IsRecursiveContainerImpl { using value_type = decltype(*std::declval()); using type = std::is_same::type>::type, C>; }; // IsRecursiveContainer is a unary compile-time predicate that // evaluates whether C is a recursive container type. A recursive container // type is a container type whose value_type is equal to the container type // itself. An example for a recursive container type is // boost::filesystem::path, whose iterator has a value_type that is equal to // boost::filesystem::path. template struct IsRecursiveContainer : public IsRecursiveContainerImpl::type {}; // Utilities for native arrays. // ArrayEq() compares two k-dimensional native arrays using the // elements' operator==, where k can be any integer >= 0. When k is // 0, ArrayEq() degenerates into comparing a single pair of values. template bool ArrayEq(const T* lhs, size_t size, const U* rhs); // This generic version is used when k is 0. template inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } // This overload is used when k >= 1. template inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) { return internal::ArrayEq(lhs, N, rhs); } // This helper reduces code bloat. If we instead put its logic inside // the previous ArrayEq() function, arrays with different sizes would // lead to different copies of the template code. template bool ArrayEq(const T* lhs, size_t size, const U* rhs) { for (size_t i = 0; i != size; i++) { if (!internal::ArrayEq(lhs[i], rhs[i])) return false; } return true; } // Finds the first element in the iterator range [begin, end) that // equals elem. Element may be a native array type itself. template Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) { for (Iter it = begin; it != end; ++it) { if (internal::ArrayEq(*it, elem)) return it; } return end; } // CopyArray() copies a k-dimensional native array using the elements' // operator=, where k can be any integer >= 0. When k is 0, // CopyArray() degenerates into copying a single value. template void CopyArray(const T* from, size_t size, U* to); // This generic version is used when k is 0. template inline void CopyArray(const T& from, U* to) { *to = from; } // This overload is used when k >= 1. template inline void CopyArray(const T(&from)[N], U(*to)[N]) { internal::CopyArray(from, N, *to); } // This helper reduces code bloat. If we instead put its logic inside // the previous CopyArray() function, arrays with different sizes // would lead to different copies of the template code. template void CopyArray(const T* from, size_t size, U* to) { for (size_t i = 0; i != size; i++) { internal::CopyArray(from[i], to + i); } } // The relation between an NativeArray object (see below) and the // native array it represents. // We use 2 different structs to allow non-copyable types to be used, as long // as RelationToSourceReference() is passed. struct RelationToSourceReference {}; struct RelationToSourceCopy {}; // Adapts a native array to a read-only STL-style container. Instead // of the complete STL container concept, this adaptor only implements // members useful for Google Mock's container matchers. New members // should be added as needed. To simplify the implementation, we only // support Element being a raw type (i.e. having no top-level const or // reference modifier). It's the client's responsibility to satisfy // this requirement. Element can be an array type itself (hence // multi-dimensional arrays are supported). template class NativeArray { public: // STL-style container typedefs. typedef Element value_type; typedef Element* iterator; typedef const Element* const_iterator; // Constructs from a native array. References the source. NativeArray(const Element* array, size_t count, RelationToSourceReference) { InitRef(array, count); } // Constructs from a native array. Copies the source. NativeArray(const Element* array, size_t count, RelationToSourceCopy) { InitCopy(array, count); } // Copy constructor. NativeArray(const NativeArray& rhs) { (this->*rhs.clone_)(rhs.array_, rhs.size_); } ~NativeArray() { if (clone_ != &NativeArray::InitRef) delete[] array_; } // STL-style container methods. size_t size() const { return size_; } const_iterator begin() const { return array_; } const_iterator end() const { return array_ + size_; } bool operator==(const NativeArray& rhs) const { return size() == rhs.size() && ArrayEq(begin(), size(), rhs.begin()); } private: static_assert(!std::is_const::value, "Type must not be const"); static_assert(!std::is_reference::value, "Type must not be a reference"); // Initializes this object with a copy of the input. void InitCopy(const Element* array, size_t a_size) { Element* const copy = new Element[a_size]; CopyArray(array, a_size, copy); array_ = copy; size_ = a_size; clone_ = &NativeArray::InitCopy; } // Initializes this object with a reference of the input. void InitRef(const Element* array, size_t a_size) { array_ = array; size_ = a_size; clone_ = &NativeArray::InitRef; } const Element* array_; size_t size_; void (NativeArray::*clone_)(const Element*, size_t); }; // Backport of std::index_sequence. template struct IndexSequence { using type = IndexSequence; }; // Double the IndexSequence, and one if plus_one is true. template struct DoubleSequence; template struct DoubleSequence, sizeofT> { using type = IndexSequence; }; template struct DoubleSequence, sizeofT> { using type = IndexSequence; }; // Backport of std::make_index_sequence. // It uses O(ln(N)) instantiation depth. template struct MakeIndexSequenceImpl : DoubleSequence::type, N / 2>::type {}; template <> struct MakeIndexSequenceImpl<0> : IndexSequence<> {}; template using MakeIndexSequence = typename MakeIndexSequenceImpl::type; template using IndexSequenceFor = typename MakeIndexSequence::type; template struct Ignore { Ignore(...); // NOLINT }; template struct ElemFromListImpl; template struct ElemFromListImpl> { // We make Ignore a template to solve a problem with MSVC. // A non-template Ignore would work fine with `decltype(Ignore(I))...`, but // MSVC doesn't understand how to deal with that pack expansion. // Use `0 * I` to have a single instantiation of Ignore. template static R Apply(Ignore<0 * I>..., R (*)(), ...); }; template struct ElemFromList { using type = decltype(ElemFromListImpl::type>::Apply( static_cast(nullptr)...)); }; struct FlatTupleConstructTag {}; template class FlatTuple; template struct FlatTupleElemBase; template struct FlatTupleElemBase, I> { using value_type = typename ElemFromList::type; FlatTupleElemBase() = default; template explicit FlatTupleElemBase(FlatTupleConstructTag, Arg&& t) : value(std::forward(t)) {} value_type value; }; template struct FlatTupleBase; template struct FlatTupleBase, IndexSequence> : FlatTupleElemBase, Idx>... { using Indices = IndexSequence; FlatTupleBase() = default; template explicit FlatTupleBase(FlatTupleConstructTag, Args&&... args) : FlatTupleElemBase, Idx>(FlatTupleConstructTag{}, std::forward(args))... {} template const typename ElemFromList::type& Get() const { return FlatTupleElemBase, I>::value; } template typename ElemFromList::type& Get() { return FlatTupleElemBase, I>::value; } template auto Apply(F&& f) -> decltype(std::forward(f)(this->Get()...)) { return std::forward(f)(Get()...); } template auto Apply(F&& f) const -> decltype(std::forward(f)(this->Get()...)) { return std::forward(f)(Get()...); } }; // Analog to std::tuple but with different tradeoffs. // This class minimizes the template instantiation depth, thus allowing more // elements than std::tuple would. std::tuple has been seen to require an // instantiation depth of more than 10x the number of elements in some // implementations. // FlatTuple and ElemFromList are not recursive and have a fixed depth // regardless of T... // MakeIndexSequence, on the other hand, it is recursive but with an // instantiation depth of O(ln(N)). template class FlatTuple : private FlatTupleBase, typename MakeIndexSequence::type> { using Indices = typename FlatTupleBase< FlatTuple, typename MakeIndexSequence::type>::Indices; public: FlatTuple() = default; template explicit FlatTuple(FlatTupleConstructTag tag, Args&&... args) : FlatTuple::FlatTupleBase(tag, std::forward(args)...) {} using FlatTuple::FlatTupleBase::Apply; using FlatTuple::FlatTupleBase::Get; }; // Utility functions to be called with static_assert to induce deprecation // warnings. GTEST_INTERNAL_DEPRECATED( "INSTANTIATE_TEST_CASE_P is deprecated, please use " "INSTANTIATE_TEST_SUITE_P") constexpr bool InstantiateTestCase_P_IsDeprecated() { return true; } GTEST_INTERNAL_DEPRECATED( "TYPED_TEST_CASE_P is deprecated, please use " "TYPED_TEST_SUITE_P") constexpr bool TypedTestCase_P_IsDeprecated() { return true; } GTEST_INTERNAL_DEPRECATED( "TYPED_TEST_CASE is deprecated, please use " "TYPED_TEST_SUITE") constexpr bool TypedTestCaseIsDeprecated() { return true; } GTEST_INTERNAL_DEPRECATED( "REGISTER_TYPED_TEST_CASE_P is deprecated, please use " "REGISTER_TYPED_TEST_SUITE_P") constexpr bool RegisterTypedTestCase_P_IsDeprecated() { return true; } GTEST_INTERNAL_DEPRECATED( "INSTANTIATE_TYPED_TEST_CASE_P is deprecated, please use " "INSTANTIATE_TYPED_TEST_SUITE_P") constexpr bool InstantiateTypedTestCase_P_IsDeprecated() { return true; } } // namespace internal } // namespace testing namespace std { // Some standard library implementations use `struct tuple_size` and some use // `class tuple_size`. Clang warns about the mismatch. // https://reviews.llvm.org/D55466 #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wmismatched-tags" #endif template struct tuple_size> : std::integral_constant {}; #ifdef __clang__ #pragma clang diagnostic pop #endif } // namespace std #define GTEST_MESSAGE_AT_(file, line, message, result_type) \ ::testing::internal::AssertHelper(result_type, file, line, message) \ = ::testing::Message() #define GTEST_MESSAGE_(message, result_type) \ GTEST_MESSAGE_AT_(__FILE__, __LINE__, message, result_type) #define GTEST_FATAL_FAILURE_(message) \ return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure) #define GTEST_NONFATAL_FAILURE_(message) \ GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure) #define GTEST_SUCCESS_(message) \ GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess) #define GTEST_SKIP_(message) \ return GTEST_MESSAGE_(message, ::testing::TestPartResult::kSkip) // Suppress MSVC warning 4072 (unreachable code) for the code following // statement if it returns or throws (or doesn't return or throw in some // situations). // NOTE: The "else" is important to keep this expansion to prevent a top-level // "else" from attaching to our "if". #define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \ if (::testing::internal::AlwaysTrue()) { \ statement; \ } else /* NOLINT */ \ static_assert(true, "") // User must have a semicolon after expansion. #if GTEST_HAS_EXCEPTIONS namespace testing { namespace internal { class NeverThrown { public: const char* what() const noexcept { return "this exception should never be thrown"; } }; } // namespace internal } // namespace testing #if GTEST_HAS_RTTI #define GTEST_EXCEPTION_TYPE_(e) ::testing::internal::GetTypeName(typeid(e)) #else // GTEST_HAS_RTTI #define GTEST_EXCEPTION_TYPE_(e) \ std::string { "an std::exception-derived error" } #endif // GTEST_HAS_RTTI #define GTEST_TEST_THROW_CATCH_STD_EXCEPTION_(statement, expected_exception) \ catch (typename std::conditional< \ std::is_same::type>::type, \ std::exception>::value, \ const ::testing::internal::NeverThrown&, const std::exception&>::type \ e) { \ gtest_msg.value = "Expected: " #statement \ " throws an exception of type " #expected_exception \ ".\n Actual: it throws "; \ gtest_msg.value += GTEST_EXCEPTION_TYPE_(e); \ gtest_msg.value += " with description \""; \ gtest_msg.value += e.what(); \ gtest_msg.value += "\"."; \ goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ } #else // GTEST_HAS_EXCEPTIONS #define GTEST_TEST_THROW_CATCH_STD_EXCEPTION_(statement, expected_exception) #endif // GTEST_HAS_EXCEPTIONS #define GTEST_TEST_THROW_(statement, expected_exception, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::TrueWithString gtest_msg{}) { \ bool gtest_caught_expected = false; \ try { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } catch (expected_exception const&) { \ gtest_caught_expected = true; \ } \ GTEST_TEST_THROW_CATCH_STD_EXCEPTION_(statement, expected_exception) \ catch (...) { \ gtest_msg.value = "Expected: " #statement \ " throws an exception of type " #expected_exception \ ".\n Actual: it throws a different type."; \ goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ } \ if (!gtest_caught_expected) { \ gtest_msg.value = "Expected: " #statement \ " throws an exception of type " #expected_exception \ ".\n Actual: it throws nothing."; \ goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \ } \ } else /*NOLINT*/ \ GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__) \ : fail(gtest_msg.value.c_str()) #if GTEST_HAS_EXCEPTIONS #define GTEST_TEST_NO_THROW_CATCH_STD_EXCEPTION_() \ catch (std::exception const& e) { \ gtest_msg.value = "it throws "; \ gtest_msg.value += GTEST_EXCEPTION_TYPE_(e); \ gtest_msg.value += " with description \""; \ gtest_msg.value += e.what(); \ gtest_msg.value += "\"."; \ goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \ } #else // GTEST_HAS_EXCEPTIONS #define GTEST_TEST_NO_THROW_CATCH_STD_EXCEPTION_() #endif // GTEST_HAS_EXCEPTIONS #define GTEST_TEST_NO_THROW_(statement, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::TrueWithString gtest_msg{}) { \ try { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } \ GTEST_TEST_NO_THROW_CATCH_STD_EXCEPTION_() \ catch (...) { \ gtest_msg.value = "it throws."; \ goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \ } \ } else \ GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \ fail(("Expected: " #statement " doesn't throw an exception.\n" \ " Actual: " + gtest_msg.value).c_str()) #define GTEST_TEST_ANY_THROW_(statement, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ bool gtest_caught_any = false; \ try { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ } \ catch (...) { \ gtest_caught_any = true; \ } \ if (!gtest_caught_any) { \ goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \ } \ } else \ GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \ fail("Expected: " #statement " throws an exception.\n" \ " Actual: it doesn't.") // Implements Boolean test assertions such as EXPECT_TRUE. expression can be // either a boolean expression or an AssertionResult. text is a textual // representation of expression as it was passed into the EXPECT_TRUE. #define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (const ::testing::AssertionResult gtest_ar_ = \ ::testing::AssertionResult(expression)) \ ; \ else \ fail(::testing::internal::GetBoolAssertionFailureMessage(\ gtest_ar_, text, #actual, #expected).c_str()) #define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \ goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \ } \ } else \ GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \ fail("Expected: " #statement " doesn't generate new fatal " \ "failures in the current thread.\n" \ " Actual: it does.") // Expands to the name of the class that implements the given test. #define GTEST_TEST_CLASS_NAME_(test_suite_name, test_name) \ test_suite_name##_##test_name##_Test // Helper macro for defining tests. #define GTEST_TEST_(test_suite_name, test_name, parent_class, parent_id) \ static_assert(sizeof(GTEST_STRINGIFY_(test_suite_name)) > 1, \ "test_suite_name must not be empty"); \ static_assert(sizeof(GTEST_STRINGIFY_(test_name)) > 1, \ "test_name must not be empty"); \ class GTEST_TEST_CLASS_NAME_(test_suite_name, test_name) \ : public parent_class { \ public: \ GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)() = default; \ ~GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)() override = default; \ GTEST_DISALLOW_COPY_AND_ASSIGN_(GTEST_TEST_CLASS_NAME_(test_suite_name, \ test_name)); \ GTEST_DISALLOW_MOVE_AND_ASSIGN_(GTEST_TEST_CLASS_NAME_(test_suite_name, \ test_name)); \ \ private: \ void TestBody() override; \ static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_; \ }; \ \ ::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_suite_name, \ test_name)::test_info_ = \ ::testing::internal::MakeAndRegisterTestInfo( \ #test_suite_name, #test_name, nullptr, nullptr, \ ::testing::internal::CodeLocation(__FILE__, __LINE__), (parent_id), \ ::testing::internal::SuiteApiResolver< \ parent_class>::GetSetUpCaseOrSuite(__FILE__, __LINE__), \ ::testing::internal::SuiteApiResolver< \ parent_class>::GetTearDownCaseOrSuite(__FILE__, __LINE__), \ new ::testing::internal::TestFactoryImpl); \ void GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)::TestBody() #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-linked_ptr.h ================================================ // Copyright 2003 Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Authors: Dan Egnor (egnor@google.com) // // A "smart" pointer type with reference tracking. Every pointer to a // particular object is kept on a circular linked list. When the last pointer // to an object is destroyed or reassigned, the object is deleted. // // Used properly, this deletes the object when the last reference goes away. // There are several caveats: // - Like all reference counting schemes, cycles lead to leaks. // - Each smart pointer is actually two pointers (8 bytes instead of 4). // - Every time a pointer is assigned, the entire list of pointers to that // object is traversed. This class is therefore NOT SUITABLE when there // will often be more than two or three pointers to a particular object. // - References are only tracked as long as linked_ptr<> objects are copied. // If a linked_ptr<> is converted to a raw pointer and back, BAD THINGS // will happen (double deletion). // // A good use of this class is storing object references in STL containers. // You can safely put linked_ptr<> in a vector<>. // Other uses may not be as good. // // Note: If you use an incomplete type with linked_ptr<>, the class // *containing* linked_ptr<> must have a constructor and destructor (even // if they do nothing!). // // Bill Gibbons suggested we use something like this. // // Thread Safety: // Unlike other linked_ptr implementations, in this implementation // a linked_ptr object is thread-safe in the sense that: // - it's safe to copy linked_ptr objects concurrently, // - it's safe to copy *from* a linked_ptr and read its underlying // raw pointer (e.g. via get()) concurrently, and // - it's safe to write to two linked_ptrs that point to the same // shared object concurrently. // TODO(wan@google.com): rename this to safe_linked_ptr to avoid // confusion with normal linked_ptr. #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ #include #include #include "gtest/internal/gtest-port.h" namespace testing { namespace internal { // Protects copying of all linked_ptr objects. GTEST_API_ GTEST_DECLARE_STATIC_MUTEX_(g_linked_ptr_mutex); // This is used internally by all instances of linked_ptr<>. It needs to be // a non-template class because different types of linked_ptr<> can refer to // the same object (linked_ptr(obj) vs linked_ptr(obj)). // So, it needs to be possible for different types of linked_ptr to participate // in the same circular linked list, so we need a single class type here. // // DO NOT USE THIS CLASS DIRECTLY YOURSELF. Use linked_ptr. class linked_ptr_internal { public: // Create a new circle that includes only this instance. void join_new() { next_ = this; } // Many linked_ptr operations may change p.link_ for some linked_ptr // variable p in the same circle as this object. Therefore we need // to prevent two such operations from occurring concurrently. // // Note that different types of linked_ptr objects can coexist in a // circle (e.g. linked_ptr, linked_ptr, and // linked_ptr). Therefore we must use a single mutex to // protect all linked_ptr objects. This can create serious // contention in production code, but is acceptable in a testing // framework. // Join an existing circle. void join(linked_ptr_internal const* ptr) GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) { MutexLock lock(&g_linked_ptr_mutex); linked_ptr_internal const* p = ptr; while (p->next_ != ptr) { assert(p->next_ != this && "Trying to join() a linked ring we are already in. " "Is GMock thread safety enabled?"); p = p->next_; } p->next_ = this; next_ = ptr; } // Leave whatever circle we're part of. Returns true if we were the // last member of the circle. Once this is done, you can join() another. bool depart() GTEST_LOCK_EXCLUDED_(g_linked_ptr_mutex) { MutexLock lock(&g_linked_ptr_mutex); if (next_ == this) return true; linked_ptr_internal const* p = next_; while (p->next_ != this) { assert(p->next_ != next_ && "Trying to depart() a linked ring we are not in. " "Is GMock thread safety enabled?"); p = p->next_; } p->next_ = next_; return false; } private: mutable linked_ptr_internal const* next_; }; template class linked_ptr { public: typedef T element_type; // Take over ownership of a raw pointer. This should happen as soon as // possible after the object is created. explicit linked_ptr(T* ptr = NULL) { capture(ptr); } ~linked_ptr() { depart(); } // Copy an existing linked_ptr<>, adding ourselves to the list of references. template linked_ptr(linked_ptr const& ptr) { copy(&ptr); } linked_ptr(linked_ptr const& ptr) { // NOLINT assert(&ptr != this); copy(&ptr); } // Assignment releases the old value and acquires the new. template linked_ptr& operator=(linked_ptr const& ptr) { depart(); copy(&ptr); return *this; } linked_ptr& operator=(linked_ptr const& ptr) { if (&ptr != this) { depart(); copy(&ptr); } return *this; } // Smart pointer members. void reset(T* ptr = NULL) { depart(); capture(ptr); } T* get() const { return value_; } T* operator->() const { return value_; } T& operator*() const { return *value_; } bool operator==(T* p) const { return value_ == p; } bool operator!=(T* p) const { return value_ != p; } template bool operator==(linked_ptr const& ptr) const { return value_ == ptr.get(); } template bool operator!=(linked_ptr const& ptr) const { return value_ != ptr.get(); } private: template friend class linked_ptr; T* value_; linked_ptr_internal link_; void depart() { if (link_.depart()) delete value_; } void capture(T* ptr) { value_ = ptr; link_.join_new(); } template void copy(linked_ptr const* ptr) { value_ = ptr->get(); if (value_) link_.join(&ptr->link_); else link_.join_new(); } }; template inline bool operator==(T* ptr, const linked_ptr& x) { return ptr == x.get(); } template inline bool operator!=(T* ptr, const linked_ptr& x) { return ptr != x.get(); } // A function to convert T* into linked_ptr // Doing e.g. make_linked_ptr(new FooBarBaz(arg)) is a shorter notation // for linked_ptr >(new FooBarBaz(arg)) template linked_ptr make_linked_ptr(T* ptr) { return linked_ptr(ptr); } } // namespace internal } // namespace testing #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_LINKED_PTR_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-param-util-generated.h ================================================ // This file was GENERATED by command: // pump.py gtest-param-util-generated.h.pump // DO NOT EDIT BY HAND!!! // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Author: vladl@google.com (Vlad Losev) // Type and function utilities for implementing parameterized tests. // This file is generated by a SCRIPT. DO NOT EDIT BY HAND! // // Currently Google Test supports at most 50 arguments in Values, // and at most 10 arguments in Combine. Please contact // googletestframework@googlegroups.com if you need more. // Please note that the number of arguments to Combine is limited // by the maximum arity of the implementation of tuple which is // currently set at 10. #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ // scripts/fuse_gtest.py depends on gtest's own header being #included // *unconditionally*. Therefore these #includes cannot be moved // inside #if GTEST_HAS_PARAM_TEST. #include "gtest/internal/gtest-param-util.h" #include "gtest/internal/gtest-port.h" #if GTEST_HAS_PARAM_TEST namespace testing { // Forward declarations of ValuesIn(), which is implemented in // include/gtest/gtest-param-test.h. template internal::ParamGenerator< typename ::testing::internal::IteratorTraits::value_type> ValuesIn(ForwardIterator begin, ForwardIterator end); template internal::ParamGenerator ValuesIn(const T (&array)[N]); template internal::ParamGenerator ValuesIn( const Container& container); namespace internal { // Used in the Values() function to provide polymorphic capabilities. template class ValueArray1 { public: explicit ValueArray1(T1 v1) : v1_(v1) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray1& other); const T1 v1_; }; template class ValueArray2 { public: ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray2& other); const T1 v1_; const T2 v2_; }; template class ValueArray3 { public: ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray3& other); const T1 v1_; const T2 v2_; const T3 v3_; }; template class ValueArray4 { public: ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3), v4_(v4) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray4& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; }; template class ValueArray5 { public: ValueArray5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray5& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; }; template class ValueArray6 { public: ValueArray6(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray6& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; }; template class ValueArray7 { public: ValueArray7(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray7& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; }; template class ValueArray8 { public: ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray8& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; }; template class ValueArray9 { public: ValueArray9(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray9& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; }; template class ValueArray10 { public: ValueArray10(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray10& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; }; template class ValueArray11 { public: ValueArray11(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray11& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; }; template class ValueArray12 { public: ValueArray12(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray12& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; }; template class ValueArray13 { public: ValueArray13(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray13& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; }; template class ValueArray14 { public: ValueArray14(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray14& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; }; template class ValueArray15 { public: ValueArray15(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray15& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; }; template class ValueArray16 { public: ValueArray16(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray16& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; }; template class ValueArray17 { public: ValueArray17(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray17& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; }; template class ValueArray18 { public: ValueArray18(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray18& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; }; template class ValueArray19 { public: ValueArray19(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray19& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; }; template class ValueArray20 { public: ValueArray20(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray20& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; }; template class ValueArray21 { public: ValueArray21(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray21& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; }; template class ValueArray22 { public: ValueArray22(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray22& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; }; template class ValueArray23 { public: ValueArray23(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray23& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; }; template class ValueArray24 { public: ValueArray24(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray24& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; }; template class ValueArray25 { public: ValueArray25(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray25& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; }; template class ValueArray26 { public: ValueArray26(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray26& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; }; template class ValueArray27 { public: ValueArray27(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray27& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; }; template class ValueArray28 { public: ValueArray28(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray28& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; }; template class ValueArray29 { public: ValueArray29(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray29& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; }; template class ValueArray30 { public: ValueArray30(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray30& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; }; template class ValueArray31 { public: ValueArray31(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray31& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; }; template class ValueArray32 { public: ValueArray32(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray32& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; }; template class ValueArray33 { public: ValueArray33(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray33& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; }; template class ValueArray34 { public: ValueArray34(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray34& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; }; template class ValueArray35 { public: ValueArray35(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray35& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; }; template class ValueArray36 { public: ValueArray36(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray36& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; }; template class ValueArray37 { public: ValueArray37(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray37& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; }; template class ValueArray38 { public: ValueArray38(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray38& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; }; template class ValueArray39 { public: ValueArray39(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray39& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; }; template class ValueArray40 { public: ValueArray40(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray40& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; }; template class ValueArray41 { public: ValueArray41(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray41& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; }; template class ValueArray42 { public: ValueArray42(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray42& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; }; template class ValueArray43 { public: ValueArray43(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray43& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; }; template class ValueArray44 { public: ValueArray44(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray44& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; }; template class ValueArray45 { public: ValueArray45(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray45& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; }; template class ValueArray46 { public: ValueArray46(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray46& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; }; template class ValueArray47 { public: ValueArray47(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), v47_(v47) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_), static_cast(v47_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray47& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; const T47 v47_; }; template class ValueArray48 { public: ValueArray48(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), v47_(v47), v48_(v48) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_), static_cast(v47_), static_cast(v48_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray48& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; const T47 v47_; const T48 v48_; }; template class ValueArray49 { public: ValueArray49(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_), static_cast(v47_), static_cast(v48_), static_cast(v49_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray49& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; const T47 v47_; const T48 v48_; const T49 v49_; }; template class ValueArray50 { public: ValueArray50(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11, T12 v12, T13 v13, T14 v14, T15 v15, T16 v16, T17 v17, T18 v18, T19 v19, T20 v20, T21 v21, T22 v22, T23 v23, T24 v24, T25 v25, T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31, T32 v32, T33 v33, T34 v34, T35 v35, T36 v36, T37 v37, T38 v38, T39 v39, T40 v40, T41 v41, T42 v42, T43 v43, T44 v44, T45 v45, T46 v46, T47 v47, T48 v48, T49 v49, T50 v50) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10), v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16), v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22), v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28), v29_(v29), v30_(v30), v31_(v31), v32_(v32), v33_(v33), v34_(v34), v35_(v35), v36_(v36), v37_(v37), v38_(v38), v39_(v39), v40_(v40), v41_(v41), v42_(v42), v43_(v43), v44_(v44), v45_(v45), v46_(v46), v47_(v47), v48_(v48), v49_(v49), v50_(v50) {} template operator ParamGenerator() const { const T array[] = {static_cast(v1_), static_cast(v2_), static_cast(v3_), static_cast(v4_), static_cast(v5_), static_cast(v6_), static_cast(v7_), static_cast(v8_), static_cast(v9_), static_cast(v10_), static_cast(v11_), static_cast(v12_), static_cast(v13_), static_cast(v14_), static_cast(v15_), static_cast(v16_), static_cast(v17_), static_cast(v18_), static_cast(v19_), static_cast(v20_), static_cast(v21_), static_cast(v22_), static_cast(v23_), static_cast(v24_), static_cast(v25_), static_cast(v26_), static_cast(v27_), static_cast(v28_), static_cast(v29_), static_cast(v30_), static_cast(v31_), static_cast(v32_), static_cast(v33_), static_cast(v34_), static_cast(v35_), static_cast(v36_), static_cast(v37_), static_cast(v38_), static_cast(v39_), static_cast(v40_), static_cast(v41_), static_cast(v42_), static_cast(v43_), static_cast(v44_), static_cast(v45_), static_cast(v46_), static_cast(v47_), static_cast(v48_), static_cast(v49_), static_cast(v50_)}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray50& other); const T1 v1_; const T2 v2_; const T3 v3_; const T4 v4_; const T5 v5_; const T6 v6_; const T7 v7_; const T8 v8_; const T9 v9_; const T10 v10_; const T11 v11_; const T12 v12_; const T13 v13_; const T14 v14_; const T15 v15_; const T16 v16_; const T17 v17_; const T18 v18_; const T19 v19_; const T20 v20_; const T21 v21_; const T22 v22_; const T23 v23_; const T24 v24_; const T25 v25_; const T26 v26_; const T27 v27_; const T28 v28_; const T29 v29_; const T30 v30_; const T31 v31_; const T32 v32_; const T33 v33_; const T34 v34_; const T35 v35_; const T36 v36_; const T37 v37_; const T38 v38_; const T39 v39_; const T40 v40_; const T41 v41_; const T42 v42_; const T43 v43_; const T44 v44_; const T45 v45_; const T46 v46_; const T47 v47_; const T48 v48_; const T49 v49_; const T50 v50_; }; # if GTEST_HAS_COMBINE // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Generates values from the Cartesian product of values produced // by the argument generators. // template class CartesianProductGenerator2 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator2(const ParamGenerator& g1, const ParamGenerator& g2) : g1_(g1), g2_(g2) {} virtual ~CartesianProductGenerator2() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current2_; if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType(*current1_, *current2_); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; ParamType current_value_; }; // class CartesianProductGenerator2::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator2& other); const ParamGenerator g1_; const ParamGenerator g2_; }; // class CartesianProductGenerator2 template class CartesianProductGenerator3 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator3(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3) : g1_(g1), g2_(g2), g3_(g3) {} virtual ~CartesianProductGenerator3() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current3_; if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType(*current1_, *current2_, *current3_); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; ParamType current_value_; }; // class CartesianProductGenerator3::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator3& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; }; // class CartesianProductGenerator3 template class CartesianProductGenerator4 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator4(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4) : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} virtual ~CartesianProductGenerator4() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current4_; if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType(*current1_, *current2_, *current3_, *current4_); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; ParamType current_value_; }; // class CartesianProductGenerator4::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator4& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; }; // class CartesianProductGenerator4 template class CartesianProductGenerator5 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator5(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} virtual ~CartesianProductGenerator5() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current5_; if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType(*current1_, *current2_, *current3_, *current4_, *current5_); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; ParamType current_value_; }; // class CartesianProductGenerator5::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator5& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; }; // class CartesianProductGenerator5 template class CartesianProductGenerator6 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator6(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} virtual ~CartesianProductGenerator6() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current6_; if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; ParamType current_value_; }; // class CartesianProductGenerator6::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator6& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; }; // class CartesianProductGenerator6 template class CartesianProductGenerator7 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator7(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6, const ParamGenerator& g7) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} virtual ~CartesianProductGenerator7() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, g7_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6, const ParamGenerator& g7, const typename ParamGenerator::iterator& current7) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6), begin7_(g7.begin()), end7_(g7.end()), current7_(current7) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current7_; if (current7_ == end7_) { current7_ = begin7_; ++current6_; } if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_ && current7_ == typed_other->current7_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_), begin7_(other.begin7_), end7_(other.end7_), current7_(other.current7_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_, *current7_); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_ || current7_ == end7_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; const typename ParamGenerator::iterator begin7_; const typename ParamGenerator::iterator end7_; typename ParamGenerator::iterator current7_; ParamType current_value_; }; // class CartesianProductGenerator7::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator7& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; const ParamGenerator g7_; }; // class CartesianProductGenerator7 template class CartesianProductGenerator8 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator8(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6, const ParamGenerator& g7, const ParamGenerator& g8) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8) {} virtual ~CartesianProductGenerator8() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, g7_.begin(), g8_, g8_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, g8_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6, const ParamGenerator& g7, const typename ParamGenerator::iterator& current7, const ParamGenerator& g8, const typename ParamGenerator::iterator& current8) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6), begin7_(g7.begin()), end7_(g7.end()), current7_(current7), begin8_(g8.begin()), end8_(g8.end()), current8_(current8) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current8_; if (current8_ == end8_) { current8_ = begin8_; ++current7_; } if (current7_ == end7_) { current7_ = begin7_; ++current6_; } if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_ && current7_ == typed_other->current7_ && current8_ == typed_other->current8_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_), begin7_(other.begin7_), end7_(other.end7_), current7_(other.current7_), begin8_(other.begin8_), end8_(other.end8_), current8_(other.current8_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_, *current7_, *current8_); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_ || current7_ == end7_ || current8_ == end8_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; const typename ParamGenerator::iterator begin7_; const typename ParamGenerator::iterator end7_; typename ParamGenerator::iterator current7_; const typename ParamGenerator::iterator begin8_; const typename ParamGenerator::iterator end8_; typename ParamGenerator::iterator current8_; ParamType current_value_; }; // class CartesianProductGenerator8::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator8& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; const ParamGenerator g7_; const ParamGenerator g8_; }; // class CartesianProductGenerator8 template class CartesianProductGenerator9 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator9(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6, const ParamGenerator& g7, const ParamGenerator& g8, const ParamGenerator& g9) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), g9_(g9) {} virtual ~CartesianProductGenerator9() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, g8_.end(), g9_, g9_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6, const ParamGenerator& g7, const typename ParamGenerator::iterator& current7, const ParamGenerator& g8, const typename ParamGenerator::iterator& current8, const ParamGenerator& g9, const typename ParamGenerator::iterator& current9) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6), begin7_(g7.begin()), end7_(g7.end()), current7_(current7), begin8_(g8.begin()), end8_(g8.end()), current8_(current8), begin9_(g9.begin()), end9_(g9.end()), current9_(current9) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current9_; if (current9_ == end9_) { current9_ = begin9_; ++current8_; } if (current8_ == end8_) { current8_ = begin8_; ++current7_; } if (current7_ == end7_) { current7_ = begin7_; ++current6_; } if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_ && current7_ == typed_other->current7_ && current8_ == typed_other->current8_ && current9_ == typed_other->current9_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_), begin7_(other.begin7_), end7_(other.end7_), current7_(other.current7_), begin8_(other.begin8_), end8_(other.end8_), current8_(other.current8_), begin9_(other.begin9_), end9_(other.end9_), current9_(other.current9_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_, *current7_, *current8_, *current9_); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_ || current7_ == end7_ || current8_ == end8_ || current9_ == end9_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; const typename ParamGenerator::iterator begin7_; const typename ParamGenerator::iterator end7_; typename ParamGenerator::iterator current7_; const typename ParamGenerator::iterator begin8_; const typename ParamGenerator::iterator end8_; typename ParamGenerator::iterator current8_; const typename ParamGenerator::iterator begin9_; const typename ParamGenerator::iterator end9_; typename ParamGenerator::iterator current9_; ParamType current_value_; }; // class CartesianProductGenerator9::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator9& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; const ParamGenerator g7_; const ParamGenerator g8_; const ParamGenerator g9_; }; // class CartesianProductGenerator9 template class CartesianProductGenerator10 : public ParamGeneratorInterface< ::testing::tuple > { public: typedef ::testing::tuple ParamType; CartesianProductGenerator10(const ParamGenerator& g1, const ParamGenerator& g2, const ParamGenerator& g3, const ParamGenerator& g4, const ParamGenerator& g5, const ParamGenerator& g6, const ParamGenerator& g7, const ParamGenerator& g8, const ParamGenerator& g9, const ParamGenerator& g10) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), g9_(g9), g10_(g10) {} virtual ~CartesianProductGenerator10() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, g1_, g1_.begin(), g2_, g2_.begin(), g3_, g3_.begin(), g4_, g4_.begin(), g5_, g5_.begin(), g6_, g6_.begin(), g7_, g7_.begin(), g8_, g8_.begin(), g9_, g9_.begin(), g10_, g10_.begin()); } virtual ParamIteratorInterface* End() const { return new Iterator(this, g1_, g1_.end(), g2_, g2_.end(), g3_, g3_.end(), g4_, g4_.end(), g5_, g5_.end(), g6_, g6_.end(), g7_, g7_.end(), g8_, g8_.end(), g9_, g9_.end(), g10_, g10_.end()); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, const ParamGenerator& g1, const typename ParamGenerator::iterator& current1, const ParamGenerator& g2, const typename ParamGenerator::iterator& current2, const ParamGenerator& g3, const typename ParamGenerator::iterator& current3, const ParamGenerator& g4, const typename ParamGenerator::iterator& current4, const ParamGenerator& g5, const typename ParamGenerator::iterator& current5, const ParamGenerator& g6, const typename ParamGenerator::iterator& current6, const ParamGenerator& g7, const typename ParamGenerator::iterator& current7, const ParamGenerator& g8, const typename ParamGenerator::iterator& current8, const ParamGenerator& g9, const typename ParamGenerator::iterator& current9, const ParamGenerator& g10, const typename ParamGenerator::iterator& current10) : base_(base), begin1_(g1.begin()), end1_(g1.end()), current1_(current1), begin2_(g2.begin()), end2_(g2.end()), current2_(current2), begin3_(g3.begin()), end3_(g3.end()), current3_(current3), begin4_(g4.begin()), end4_(g4.end()), current4_(current4), begin5_(g5.begin()), end5_(g5.end()), current5_(current5), begin6_(g6.begin()), end6_(g6.end()), current6_(current6), begin7_(g7.begin()), end7_(g7.end()), current7_(current7), begin8_(g8.begin()), end8_(g8.end()), current8_(current8), begin9_(g9.begin()), end9_(g9.end()), current9_(current9), begin10_(g10.begin()), end10_(g10.end()), current10_(current10) { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current10_; if (current10_ == end10_) { current10_ = begin10_; ++current9_; } if (current9_ == end9_) { current9_ = begin9_; ++current8_; } if (current8_ == end8_) { current8_ = begin8_; ++current7_; } if (current7_ == end7_) { current7_ = begin7_; ++current6_; } if (current6_ == end6_) { current6_ = begin6_; ++current5_; } if (current5_ == end5_) { current5_ = begin5_; ++current4_; } if (current4_ == end4_) { current4_ = begin4_; ++current3_; } if (current3_ == end3_) { current3_ = begin3_; ++current2_; } if (current2_ == end2_) { current2_ = begin2_; ++current1_; } ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ( current1_ == typed_other->current1_ && current2_ == typed_other->current2_ && current3_ == typed_other->current3_ && current4_ == typed_other->current4_ && current5_ == typed_other->current5_ && current6_ == typed_other->current6_ && current7_ == typed_other->current7_ && current8_ == typed_other->current8_ && current9_ == typed_other->current9_ && current10_ == typed_other->current10_); } private: Iterator(const Iterator& other) : base_(other.base_), begin1_(other.begin1_), end1_(other.end1_), current1_(other.current1_), begin2_(other.begin2_), end2_(other.end2_), current2_(other.current2_), begin3_(other.begin3_), end3_(other.end3_), current3_(other.current3_), begin4_(other.begin4_), end4_(other.end4_), current4_(other.current4_), begin5_(other.begin5_), end5_(other.end5_), current5_(other.current5_), begin6_(other.begin6_), end6_(other.end6_), current6_(other.current6_), begin7_(other.begin7_), end7_(other.end7_), current7_(other.current7_), begin8_(other.begin8_), end8_(other.end8_), current8_(other.current8_), begin9_(other.begin9_), end9_(other.end9_), current9_(other.current9_), begin10_(other.begin10_), end10_(other.end10_), current10_(other.current10_) { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType(*current1_, *current2_, *current3_, *current4_, *current5_, *current6_, *current7_, *current8_, *current9_, *current10_); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return current1_ == end1_ || current2_ == end2_ || current3_ == end3_ || current4_ == end4_ || current5_ == end5_ || current6_ == end6_ || current7_ == end7_ || current8_ == end8_ || current9_ == end9_ || current10_ == end10_; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. const typename ParamGenerator::iterator begin1_; const typename ParamGenerator::iterator end1_; typename ParamGenerator::iterator current1_; const typename ParamGenerator::iterator begin2_; const typename ParamGenerator::iterator end2_; typename ParamGenerator::iterator current2_; const typename ParamGenerator::iterator begin3_; const typename ParamGenerator::iterator end3_; typename ParamGenerator::iterator current3_; const typename ParamGenerator::iterator begin4_; const typename ParamGenerator::iterator end4_; typename ParamGenerator::iterator current4_; const typename ParamGenerator::iterator begin5_; const typename ParamGenerator::iterator end5_; typename ParamGenerator::iterator current5_; const typename ParamGenerator::iterator begin6_; const typename ParamGenerator::iterator end6_; typename ParamGenerator::iterator current6_; const typename ParamGenerator::iterator begin7_; const typename ParamGenerator::iterator end7_; typename ParamGenerator::iterator current7_; const typename ParamGenerator::iterator begin8_; const typename ParamGenerator::iterator end8_; typename ParamGenerator::iterator current8_; const typename ParamGenerator::iterator begin9_; const typename ParamGenerator::iterator end9_; typename ParamGenerator::iterator current9_; const typename ParamGenerator::iterator begin10_; const typename ParamGenerator::iterator end10_; typename ParamGenerator::iterator current10_; ParamType current_value_; }; // class CartesianProductGenerator10::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator10& other); const ParamGenerator g1_; const ParamGenerator g2_; const ParamGenerator g3_; const ParamGenerator g4_; const ParamGenerator g5_; const ParamGenerator g6_; const ParamGenerator g7_; const ParamGenerator g8_; const ParamGenerator g9_; const ParamGenerator g10_; }; // class CartesianProductGenerator10 // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Helper classes providing Combine() with polymorphic features. They allow // casting CartesianProductGeneratorN to ParamGenerator if T is // convertible to U. // template class CartesianProductHolder2 { public: CartesianProductHolder2(const Generator1& g1, const Generator2& g2) : g1_(g1), g2_(g2) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator2( static_cast >(g1_), static_cast >(g2_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder2& other); const Generator1 g1_; const Generator2 g2_; }; // class CartesianProductHolder2 template class CartesianProductHolder3 { public: CartesianProductHolder3(const Generator1& g1, const Generator2& g2, const Generator3& g3) : g1_(g1), g2_(g2), g3_(g3) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator3( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder3& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; }; // class CartesianProductHolder3 template class CartesianProductHolder4 { public: CartesianProductHolder4(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4) : g1_(g1), g2_(g2), g3_(g3), g4_(g4) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator4( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder4& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; }; // class CartesianProductHolder4 template class CartesianProductHolder5 { public: CartesianProductHolder5(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator5( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder5& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; }; // class CartesianProductHolder5 template class CartesianProductHolder6 { public: CartesianProductHolder6(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator6( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder6& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; }; // class CartesianProductHolder6 template class CartesianProductHolder7 { public: CartesianProductHolder7(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator7( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_), static_cast >(g7_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder7& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; const Generator7 g7_; }; // class CartesianProductHolder7 template class CartesianProductHolder8 { public: CartesianProductHolder8(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7, const Generator8& g8) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator8( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_), static_cast >(g7_), static_cast >(g8_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder8& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; const Generator7 g7_; const Generator8 g8_; }; // class CartesianProductHolder8 template class CartesianProductHolder9 { public: CartesianProductHolder9(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7, const Generator8& g8, const Generator9& g9) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), g9_(g9) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator9( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_), static_cast >(g7_), static_cast >(g8_), static_cast >(g9_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder9& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; const Generator7 g7_; const Generator8 g8_; const Generator9 g9_; }; // class CartesianProductHolder9 template class CartesianProductHolder10 { public: CartesianProductHolder10(const Generator1& g1, const Generator2& g2, const Generator3& g3, const Generator4& g4, const Generator5& g5, const Generator6& g6, const Generator7& g7, const Generator8& g8, const Generator9& g9, const Generator10& g10) : g1_(g1), g2_(g2), g3_(g3), g4_(g4), g5_(g5), g6_(g6), g7_(g7), g8_(g8), g9_(g9), g10_(g10) {} template operator ParamGenerator< ::testing::tuple >() const { return ParamGenerator< ::testing::tuple >( new CartesianProductGenerator10( static_cast >(g1_), static_cast >(g2_), static_cast >(g3_), static_cast >(g4_), static_cast >(g5_), static_cast >(g6_), static_cast >(g7_), static_cast >(g8_), static_cast >(g9_), static_cast >(g10_))); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder10& other); const Generator1 g1_; const Generator2 g2_; const Generator3 g3_; const Generator4 g4_; const Generator5 g5_; const Generator6 g6_; const Generator7 g7_; const Generator8 g8_; const Generator9 g9_; const Generator10 g10_; }; // class CartesianProductHolder10 # endif // GTEST_HAS_COMBINE } // namespace internal } // namespace testing #endif // GTEST_HAS_PARAM_TEST #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-param-util-generated.h.pump ================================================ $$ -*- mode: c++; -*- $var n = 50 $$ Maximum length of Values arguments we want to support. $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Author: vladl@google.com (Vlad Losev) // Type and function utilities for implementing parameterized tests. // This file is generated by a SCRIPT. DO NOT EDIT BY HAND! // // Currently Google Test supports at most $n arguments in Values, // and at most $maxtuple arguments in Combine. Please contact // googletestframework@googlegroups.com if you need more. // Please note that the number of arguments to Combine is limited // by the maximum arity of the implementation of tuple which is // currently set at $maxtuple. #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ // scripts/fuse_gtest.py depends on gtest's own header being #included // *unconditionally*. Therefore these #includes cannot be moved // inside #if GTEST_HAS_PARAM_TEST. #include "gtest/internal/gtest-param-util.h" #include "gtest/internal/gtest-port.h" #if GTEST_HAS_PARAM_TEST namespace testing { // Forward declarations of ValuesIn(), which is implemented in // include/gtest/gtest-param-test.h. template internal::ParamGenerator< typename ::testing::internal::IteratorTraits::value_type> ValuesIn(ForwardIterator begin, ForwardIterator end); template internal::ParamGenerator ValuesIn(const T (&array)[N]); template internal::ParamGenerator ValuesIn( const Container& container); namespace internal { // Used in the Values() function to provide polymorphic capabilities. $range i 1..n $for i [[ $range j 1..i template <$for j, [[typename T$j]]> class ValueArray$i { public: $if i==1 [[explicit ]]ValueArray$i($for j, [[T$j v$j]]) : $for j, [[v$(j)_(v$j)]] {} template operator ParamGenerator() const { const T array[] = {$for j, [[static_cast(v$(j)_)]]}; return ValuesIn(array); } private: // No implementation - assignment is unsupported. void operator=(const ValueArray$i& other); $for j [[ const T$j v$(j)_; ]] }; ]] # if GTEST_HAS_COMBINE // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Generates values from the Cartesian product of values produced // by the argument generators. // $range i 2..maxtuple $for i [[ $range j 1..i $range k 2..i template <$for j, [[typename T$j]]> class CartesianProductGenerator$i : public ParamGeneratorInterface< ::testing::tuple<$for j, [[T$j]]> > { public: typedef ::testing::tuple<$for j, [[T$j]]> ParamType; CartesianProductGenerator$i($for j, [[const ParamGenerator& g$j]]) : $for j, [[g$(j)_(g$j)]] {} virtual ~CartesianProductGenerator$i() {} virtual ParamIteratorInterface* Begin() const { return new Iterator(this, $for j, [[g$(j)_, g$(j)_.begin()]]); } virtual ParamIteratorInterface* End() const { return new Iterator(this, $for j, [[g$(j)_, g$(j)_.end()]]); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, $for j, [[ const ParamGenerator& g$j, const typename ParamGenerator::iterator& current$(j)]]) : base_(base), $for j, [[ begin$(j)_(g$j.begin()), end$(j)_(g$j.end()), current$(j)_(current$j) ]] { ComputeCurrentValue(); } virtual ~Iterator() {} virtual const ParamGeneratorInterface* BaseGenerator() const { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. virtual void Advance() { assert(!AtEnd()); ++current$(i)_; $for k [[ if (current$(i+2-k)_ == end$(i+2-k)_) { current$(i+2-k)_ = begin$(i+2-k)_; ++current$(i+2-k-1)_; } ]] ComputeCurrentValue(); } virtual ParamIteratorInterface* Clone() const { return new Iterator(*this); } virtual const ParamType* Current() const { return ¤t_value_; } virtual bool Equals(const ParamIteratorInterface& other) const { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const Iterator* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). return (AtEnd() && typed_other->AtEnd()) || ($for j && [[ current$(j)_ == typed_other->current$(j)_ ]]); } private: Iterator(const Iterator& other) : base_(other.base_), $for j, [[ begin$(j)_(other.begin$(j)_), end$(j)_(other.end$(j)_), current$(j)_(other.current$(j)_) ]] { ComputeCurrentValue(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = ParamType($for j, [[*current$(j)_]]); } bool AtEnd() const { // We must report iterator past the end of the range when either of the // component iterators has reached the end of its range. return $for j || [[ current$(j)_ == end$(j)_ ]]; } // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; // begin[i]_ and end[i]_ define the i-th range that Iterator traverses. // current[i]_ is the actual traversing iterator. $for j [[ const typename ParamGenerator::iterator begin$(j)_; const typename ParamGenerator::iterator end$(j)_; typename ParamGenerator::iterator current$(j)_; ]] ParamType current_value_; }; // class CartesianProductGenerator$i::Iterator // No implementation - assignment is unsupported. void operator=(const CartesianProductGenerator$i& other); $for j [[ const ParamGenerator g$(j)_; ]] }; // class CartesianProductGenerator$i ]] // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Helper classes providing Combine() with polymorphic features. They allow // casting CartesianProductGeneratorN to ParamGenerator if T is // convertible to U. // $range i 2..maxtuple $for i [[ $range j 1..i template <$for j, [[class Generator$j]]> class CartesianProductHolder$i { public: CartesianProductHolder$i($for j, [[const Generator$j& g$j]]) : $for j, [[g$(j)_(g$j)]] {} template <$for j, [[typename T$j]]> operator ParamGenerator< ::testing::tuple<$for j, [[T$j]]> >() const { return ParamGenerator< ::testing::tuple<$for j, [[T$j]]> >( new CartesianProductGenerator$i<$for j, [[T$j]]>( $for j,[[ static_cast >(g$(j)_) ]])); } private: // No implementation - assignment is unsupported. void operator=(const CartesianProductHolder$i& other); $for j [[ const Generator$j g$(j)_; ]] }; // class CartesianProductHolder$i ]] # endif // GTEST_HAS_COMBINE } // namespace internal } // namespace testing #endif // GTEST_HAS_PARAM_TEST #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-param-util.h ================================================ // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Type and function utilities for implementing parameterized tests. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ #include #include #include #include #include #include #include #include #include #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-port.h" #include "gtest/gtest-printers.h" #include "gtest/gtest-test-part.h" namespace testing { // Input to a parameterized test name generator, describing a test parameter. // Consists of the parameter value and the integer parameter index. template struct TestParamInfo { TestParamInfo(const ParamType& a_param, size_t an_index) : param(a_param), index(an_index) {} ParamType param; size_t index; }; // A builtin parameterized test name generator which returns the result of // testing::PrintToString. struct PrintToStringParamName { template std::string operator()(const TestParamInfo& info) const { return PrintToString(info.param); } }; namespace internal { // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // Utility Functions // Outputs a message explaining invalid registration of different // fixture class for the same test suite. This may happen when // TEST_P macro is used to define two tests with the same name // but in different namespaces. GTEST_API_ void ReportInvalidTestSuiteType(const char* test_suite_name, CodeLocation code_location); template class ParamGeneratorInterface; template class ParamGenerator; // Interface for iterating over elements provided by an implementation // of ParamGeneratorInterface. template class ParamIteratorInterface { public: virtual ~ParamIteratorInterface() {} // A pointer to the base generator instance. // Used only for the purposes of iterator comparison // to make sure that two iterators belong to the same generator. virtual const ParamGeneratorInterface* BaseGenerator() const = 0; // Advances iterator to point to the next element // provided by the generator. The caller is responsible // for not calling Advance() on an iterator equal to // BaseGenerator()->End(). virtual void Advance() = 0; // Clones the iterator object. Used for implementing copy semantics // of ParamIterator. virtual ParamIteratorInterface* Clone() const = 0; // Dereferences the current iterator and provides (read-only) access // to the pointed value. It is the caller's responsibility not to call // Current() on an iterator equal to BaseGenerator()->End(). // Used for implementing ParamGenerator::operator*(). virtual const T* Current() const = 0; // Determines whether the given iterator and other point to the same // element in the sequence generated by the generator. // Used for implementing ParamGenerator::operator==(). virtual bool Equals(const ParamIteratorInterface& other) const = 0; }; // Class iterating over elements provided by an implementation of // ParamGeneratorInterface. It wraps ParamIteratorInterface // and implements the const forward iterator concept. template class ParamIterator { public: typedef T value_type; typedef const T& reference; typedef ptrdiff_t difference_type; // ParamIterator assumes ownership of the impl_ pointer. ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} ParamIterator& operator=(const ParamIterator& other) { if (this != &other) impl_.reset(other.impl_->Clone()); return *this; } const T& operator*() const { return *impl_->Current(); } const T* operator->() const { return impl_->Current(); } // Prefix version of operator++. ParamIterator& operator++() { impl_->Advance(); return *this; } // Postfix version of operator++. ParamIterator operator++(int /*unused*/) { ParamIteratorInterface* clone = impl_->Clone(); impl_->Advance(); return ParamIterator(clone); } bool operator==(const ParamIterator& other) const { return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); } bool operator!=(const ParamIterator& other) const { return !(*this == other); } private: friend class ParamGenerator; explicit ParamIterator(ParamIteratorInterface* impl) : impl_(impl) {} std::unique_ptr > impl_; }; // ParamGeneratorInterface is the binary interface to access generators // defined in other translation units. template class ParamGeneratorInterface { public: typedef T ParamType; virtual ~ParamGeneratorInterface() {} // Generator interface definition virtual ParamIteratorInterface* Begin() const = 0; virtual ParamIteratorInterface* End() const = 0; }; // Wraps ParamGeneratorInterface and provides general generator syntax // compatible with the STL Container concept. // This class implements copy initialization semantics and the contained // ParamGeneratorInterface instance is shared among all copies // of the original object. This is possible because that instance is immutable. template class ParamGenerator { public: typedef ParamIterator iterator; explicit ParamGenerator(ParamGeneratorInterface* impl) : impl_(impl) {} ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} ParamGenerator& operator=(const ParamGenerator& other) { impl_ = other.impl_; return *this; } iterator begin() const { return iterator(impl_->Begin()); } iterator end() const { return iterator(impl_->End()); } private: std::shared_ptr > impl_; }; // Generates values from a range of two comparable values. Can be used to // generate sequences of user-defined types that implement operator+() and // operator<(). // This class is used in the Range() function. template class RangeGenerator : public ParamGeneratorInterface { public: RangeGenerator(T begin, T end, IncrementT step) : begin_(begin), end_(end), step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} ~RangeGenerator() override {} ParamIteratorInterface* Begin() const override { return new Iterator(this, begin_, 0, step_); } ParamIteratorInterface* End() const override { return new Iterator(this, end_, end_index_, step_); } private: class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, T value, int index, IncrementT step) : base_(base), value_(value), index_(index), step_(step) {} ~Iterator() override {} const ParamGeneratorInterface* BaseGenerator() const override { return base_; } void Advance() override { value_ = static_cast(value_ + step_); index_++; } ParamIteratorInterface* Clone() const override { return new Iterator(*this); } const T* Current() const override { return &value_; } bool Equals(const ParamIteratorInterface& other) const override { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const int other_index = CheckedDowncastToActualType(&other)->index_; return index_ == other_index; } private: Iterator(const Iterator& other) : ParamIteratorInterface(), base_(other.base_), value_(other.value_), index_(other.index_), step_(other.step_) {} // No implementation - assignment is unsupported. void operator=(const Iterator& other); const ParamGeneratorInterface* const base_; T value_; int index_; const IncrementT step_; }; // class RangeGenerator::Iterator static int CalculateEndIndex(const T& begin, const T& end, const IncrementT& step) { int end_index = 0; for (T i = begin; i < end; i = static_cast(i + step)) end_index++; return end_index; } // No implementation - assignment is unsupported. void operator=(const RangeGenerator& other); const T begin_; const T end_; const IncrementT step_; // The index for the end() iterator. All the elements in the generated // sequence are indexed (0-based) to aid iterator comparison. const int end_index_; }; // class RangeGenerator // Generates values from a pair of STL-style iterators. Used in the // ValuesIn() function. The elements are copied from the source range // since the source can be located on the stack, and the generator // is likely to persist beyond that stack frame. template class ValuesInIteratorRangeGenerator : public ParamGeneratorInterface { public: template ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end) : container_(begin, end) {} ~ValuesInIteratorRangeGenerator() override {} ParamIteratorInterface* Begin() const override { return new Iterator(this, container_.begin()); } ParamIteratorInterface* End() const override { return new Iterator(this, container_.end()); } private: typedef typename ::std::vector ContainerType; class Iterator : public ParamIteratorInterface { public: Iterator(const ParamGeneratorInterface* base, typename ContainerType::const_iterator iterator) : base_(base), iterator_(iterator) {} ~Iterator() override {} const ParamGeneratorInterface* BaseGenerator() const override { return base_; } void Advance() override { ++iterator_; value_.reset(); } ParamIteratorInterface* Clone() const override { return new Iterator(*this); } // We need to use cached value referenced by iterator_ because *iterator_ // can return a temporary object (and of type other then T), so just // having "return &*iterator_;" doesn't work. // value_ is updated here and not in Advance() because Advance() // can advance iterator_ beyond the end of the range, and we cannot // detect that fact. The client code, on the other hand, is // responsible for not calling Current() on an out-of-range iterator. const T* Current() const override { if (value_.get() == nullptr) value_.reset(new T(*iterator_)); return value_.get(); } bool Equals(const ParamIteratorInterface& other) const override { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; return iterator_ == CheckedDowncastToActualType(&other)->iterator_; } private: Iterator(const Iterator& other) // The explicit constructor call suppresses a false warning // emitted by gcc when supplied with the -Wextra option. : ParamIteratorInterface(), base_(other.base_), iterator_(other.iterator_) {} const ParamGeneratorInterface* const base_; typename ContainerType::const_iterator iterator_; // A cached value of *iterator_. We keep it here to allow access by // pointer in the wrapping iterator's operator->(). // value_ needs to be mutable to be accessed in Current(). // Use of std::unique_ptr helps manage cached value's lifetime, // which is bound by the lifespan of the iterator itself. mutable std::unique_ptr value_; }; // class ValuesInIteratorRangeGenerator::Iterator // No implementation - assignment is unsupported. void operator=(const ValuesInIteratorRangeGenerator& other); const ContainerType container_; }; // class ValuesInIteratorRangeGenerator // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Default parameterized test name generator, returns a string containing the // integer test parameter index. template std::string DefaultParamName(const TestParamInfo& info) { Message name_stream; name_stream << info.index; return name_stream.GetString(); } template void TestNotEmpty() { static_assert(sizeof(T) == 0, "Empty arguments are not allowed."); } template void TestNotEmpty(const T&) {} // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Stores a parameter value and later creates tests parameterized with that // value. template class ParameterizedTestFactory : public TestFactoryBase { public: typedef typename TestClass::ParamType ParamType; explicit ParameterizedTestFactory(ParamType parameter) : parameter_(parameter) {} Test* CreateTest() override { TestClass::SetParam(¶meter_); return new TestClass(); } private: const ParamType parameter_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory); }; // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // TestMetaFactoryBase is a base class for meta-factories that create // test factories for passing into MakeAndRegisterTestInfo function. template class TestMetaFactoryBase { public: virtual ~TestMetaFactoryBase() {} virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0; }; // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // TestMetaFactory creates test factories for passing into // MakeAndRegisterTestInfo function. Since MakeAndRegisterTestInfo receives // ownership of test factory pointer, same factory object cannot be passed // into that method twice. But ParameterizedTestSuiteInfo is going to call // it for each Test/Parameter value combination. Thus it needs meta factory // creator class. template class TestMetaFactory : public TestMetaFactoryBase { public: using ParamType = typename TestSuite::ParamType; TestMetaFactory() {} TestFactoryBase* CreateTestFactory(ParamType parameter) override { return new ParameterizedTestFactory(parameter); } private: GTEST_DISALLOW_COPY_AND_ASSIGN_(TestMetaFactory); }; // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // ParameterizedTestSuiteInfoBase is a generic interface // to ParameterizedTestSuiteInfo classes. ParameterizedTestSuiteInfoBase // accumulates test information provided by TEST_P macro invocations // and generators provided by INSTANTIATE_TEST_SUITE_P macro invocations // and uses that information to register all resulting test instances // in RegisterTests method. The ParameterizeTestSuiteRegistry class holds // a collection of pointers to the ParameterizedTestSuiteInfo objects // and calls RegisterTests() on each of them when asked. class ParameterizedTestSuiteInfoBase { public: virtual ~ParameterizedTestSuiteInfoBase() {} // Base part of test suite name for display purposes. virtual const std::string& GetTestSuiteName() const = 0; // Test suite id to verify identity. virtual TypeId GetTestSuiteTypeId() const = 0; // UnitTest class invokes this method to register tests in this // test suite right before running them in RUN_ALL_TESTS macro. // This method should not be called more than once on any single // instance of a ParameterizedTestSuiteInfoBase derived class. virtual void RegisterTests() = 0; protected: ParameterizedTestSuiteInfoBase() {} private: GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestSuiteInfoBase); }; // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Report a the name of a test_suit as safe to ignore // as the side effect of construction of this type. struct GTEST_API_ MarkAsIgnored { explicit MarkAsIgnored(const char* test_suite); }; GTEST_API_ void InsertSyntheticTestCase(const std::string& name, CodeLocation location, bool has_test_p); // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // ParameterizedTestSuiteInfo accumulates tests obtained from TEST_P // macro invocations for a particular test suite and generators // obtained from INSTANTIATE_TEST_SUITE_P macro invocations for that // test suite. It registers tests with all values generated by all // generators when asked. template class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase { public: // ParamType and GeneratorCreationFunc are private types but are required // for declarations of public methods AddTestPattern() and // AddTestSuiteInstantiation(). using ParamType = typename TestSuite::ParamType; // A function that returns an instance of appropriate generator type. typedef ParamGenerator(GeneratorCreationFunc)(); using ParamNameGeneratorFunc = std::string(const TestParamInfo&); explicit ParameterizedTestSuiteInfo(const char* name, CodeLocation code_location) : test_suite_name_(name), code_location_(code_location) {} // Test suite base name for display purposes. const std::string& GetTestSuiteName() const override { return test_suite_name_; } // Test suite id to verify identity. TypeId GetTestSuiteTypeId() const override { return GetTypeId(); } // TEST_P macro uses AddTestPattern() to record information // about a single test in a LocalTestInfo structure. // test_suite_name is the base name of the test suite (without invocation // prefix). test_base_name is the name of an individual test without // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is // test suite base name and DoBar is test base name. void AddTestPattern(const char* test_suite_name, const char* test_base_name, TestMetaFactoryBase* meta_factory, CodeLocation code_location) { tests_.push_back(std::shared_ptr(new TestInfo( test_suite_name, test_base_name, meta_factory, code_location))); } // INSTANTIATE_TEST_SUITE_P macro uses AddGenerator() to record information // about a generator. int AddTestSuiteInstantiation(const std::string& instantiation_name, GeneratorCreationFunc* func, ParamNameGeneratorFunc* name_func, const char* file, int line) { instantiations_.push_back( InstantiationInfo(instantiation_name, func, name_func, file, line)); return 0; // Return value used only to run this method in namespace scope. } // UnitTest class invokes this method to register tests in this test suite // right before running tests in RUN_ALL_TESTS macro. // This method should not be called more than once on any single // instance of a ParameterizedTestSuiteInfoBase derived class. // UnitTest has a guard to prevent from calling this method more than once. void RegisterTests() override { bool generated_instantiations = false; for (typename TestInfoContainer::iterator test_it = tests_.begin(); test_it != tests_.end(); ++test_it) { std::shared_ptr test_info = *test_it; for (typename InstantiationContainer::iterator gen_it = instantiations_.begin(); gen_it != instantiations_.end(); ++gen_it) { const std::string& instantiation_name = gen_it->name; ParamGenerator generator((*gen_it->generator)()); ParamNameGeneratorFunc* name_func = gen_it->name_func; const char* file = gen_it->file; int line = gen_it->line; std::string test_suite_name; if ( !instantiation_name.empty() ) test_suite_name = instantiation_name + "/"; test_suite_name += test_info->test_suite_base_name; size_t i = 0; std::set test_param_names; for (typename ParamGenerator::iterator param_it = generator.begin(); param_it != generator.end(); ++param_it, ++i) { generated_instantiations = true; Message test_name_stream; std::string param_name = name_func( TestParamInfo(*param_it, i)); GTEST_CHECK_(IsValidParamName(param_name)) << "Parameterized test name '" << param_name << "' is invalid, in " << file << " line " << line << std::endl; GTEST_CHECK_(test_param_names.count(param_name) == 0) << "Duplicate parameterized test name '" << param_name << "', in " << file << " line " << line << std::endl; test_param_names.insert(param_name); if (!test_info->test_base_name.empty()) { test_name_stream << test_info->test_base_name << "/"; } test_name_stream << param_name; MakeAndRegisterTestInfo( test_suite_name.c_str(), test_name_stream.GetString().c_str(), nullptr, // No type parameter. PrintToString(*param_it).c_str(), test_info->code_location, GetTestSuiteTypeId(), SuiteApiResolver::GetSetUpCaseOrSuite(file, line), SuiteApiResolver::GetTearDownCaseOrSuite(file, line), test_info->test_meta_factory->CreateTestFactory(*param_it)); } // for param_it } // for gen_it } // for test_it if (!generated_instantiations) { // There are no generaotrs, or they all generate nothing ... InsertSyntheticTestCase(GetTestSuiteName(), code_location_, !tests_.empty()); } } // RegisterTests private: // LocalTestInfo structure keeps information about a single test registered // with TEST_P macro. struct TestInfo { TestInfo(const char* a_test_suite_base_name, const char* a_test_base_name, TestMetaFactoryBase* a_test_meta_factory, CodeLocation a_code_location) : test_suite_base_name(a_test_suite_base_name), test_base_name(a_test_base_name), test_meta_factory(a_test_meta_factory), code_location(a_code_location) {} const std::string test_suite_base_name; const std::string test_base_name; const std::unique_ptr > test_meta_factory; const CodeLocation code_location; }; using TestInfoContainer = ::std::vector >; // Records data received from INSTANTIATE_TEST_SUITE_P macros: // struct InstantiationInfo { InstantiationInfo(const std::string &name_in, GeneratorCreationFunc* generator_in, ParamNameGeneratorFunc* name_func_in, const char* file_in, int line_in) : name(name_in), generator(generator_in), name_func(name_func_in), file(file_in), line(line_in) {} std::string name; GeneratorCreationFunc* generator; ParamNameGeneratorFunc* name_func; const char* file; int line; }; typedef ::std::vector InstantiationContainer; static bool IsValidParamName(const std::string& name) { // Check for empty string if (name.empty()) return false; // Check for invalid characters for (std::string::size_type index = 0; index < name.size(); ++index) { if (!IsAlNum(name[index]) && name[index] != '_') return false; } return true; } const std::string test_suite_name_; CodeLocation code_location_; TestInfoContainer tests_; InstantiationContainer instantiations_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestSuiteInfo); }; // class ParameterizedTestSuiteInfo // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ template using ParameterizedTestCaseInfo = ParameterizedTestSuiteInfo; #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // ParameterizedTestSuiteRegistry contains a map of // ParameterizedTestSuiteInfoBase classes accessed by test suite names. TEST_P // and INSTANTIATE_TEST_SUITE_P macros use it to locate their corresponding // ParameterizedTestSuiteInfo descriptors. class ParameterizedTestSuiteRegistry { public: ParameterizedTestSuiteRegistry() {} ~ParameterizedTestSuiteRegistry() { for (auto& test_suite_info : test_suite_infos_) { delete test_suite_info; } } // Looks up or creates and returns a structure containing information about // tests and instantiations of a particular test suite. template ParameterizedTestSuiteInfo* GetTestSuitePatternHolder( const char* test_suite_name, CodeLocation code_location) { ParameterizedTestSuiteInfo* typed_test_info = nullptr; for (auto& test_suite_info : test_suite_infos_) { if (test_suite_info->GetTestSuiteName() == test_suite_name) { if (test_suite_info->GetTestSuiteTypeId() != GetTypeId()) { // Complain about incorrect usage of Google Test facilities // and terminate the program since we cannot guaranty correct // test suite setup and tear-down in this case. ReportInvalidTestSuiteType(test_suite_name, code_location); posix::Abort(); } else { // At this point we are sure that the object we found is of the same // type we are looking for, so we downcast it to that type // without further checks. typed_test_info = CheckedDowncastToActualType< ParameterizedTestSuiteInfo >(test_suite_info); } break; } } if (typed_test_info == nullptr) { typed_test_info = new ParameterizedTestSuiteInfo( test_suite_name, code_location); test_suite_infos_.push_back(typed_test_info); } return typed_test_info; } void RegisterTests() { for (auto& test_suite_info : test_suite_infos_) { test_suite_info->RegisterTests(); } } // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ template ParameterizedTestCaseInfo* GetTestCasePatternHolder( const char* test_case_name, CodeLocation code_location) { return GetTestSuitePatternHolder(test_case_name, code_location); } #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ private: using TestSuiteInfoContainer = ::std::vector; TestSuiteInfoContainer test_suite_infos_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestSuiteRegistry); }; // Keep track of what type-parameterized test suite are defined and // where as well as which are intatiated. This allows susequently // identifying suits that are defined but never used. class TypeParameterizedTestSuiteRegistry { public: // Add a suite definition void RegisterTestSuite(const char* test_suite_name, CodeLocation code_location); // Add an instantiation of a suit. void RegisterInstantiation(const char* test_suite_name); // For each suit repored as defined but not reported as instantiation, // emit a test that reports that fact (configurably, as an error). void CheckForInstantiations(); private: struct TypeParameterizedTestSuiteInfo { explicit TypeParameterizedTestSuiteInfo(CodeLocation c) : code_location(c), instantiated(false) {} CodeLocation code_location; bool instantiated; }; std::map suites_; }; } // namespace internal // Forward declarations of ValuesIn(), which is implemented in // include/gtest/gtest-param-test.h. template internal::ParamGenerator ValuesIn( const Container& container); namespace internal { // Used in the Values() function to provide polymorphic capabilities. #ifdef _MSC_VER #pragma warning(push) #pragma warning(disable : 4100) #endif template class ValueArray { public: explicit ValueArray(Ts... v) : v_(FlatTupleConstructTag{}, std::move(v)...) {} template operator ParamGenerator() const { // NOLINT return ValuesIn(MakeVector(MakeIndexSequence())); } private: template std::vector MakeVector(IndexSequence) const { return std::vector{static_cast(v_.template Get())...}; } FlatTuple v_; }; #ifdef _MSC_VER #pragma warning(pop) #endif template class CartesianProductGenerator : public ParamGeneratorInterface<::std::tuple> { public: typedef ::std::tuple ParamType; CartesianProductGenerator(const std::tuple...>& g) : generators_(g) {} ~CartesianProductGenerator() override {} ParamIteratorInterface* Begin() const override { return new Iterator(this, generators_, false); } ParamIteratorInterface* End() const override { return new Iterator(this, generators_, true); } private: template class IteratorImpl; template class IteratorImpl> : public ParamIteratorInterface { public: IteratorImpl(const ParamGeneratorInterface* base, const std::tuple...>& generators, bool is_end) : base_(base), begin_(std::get(generators).begin()...), end_(std::get(generators).end()...), current_(is_end ? end_ : begin_) { ComputeCurrentValue(); } ~IteratorImpl() override {} const ParamGeneratorInterface* BaseGenerator() const override { return base_; } // Advance should not be called on beyond-of-range iterators // so no component iterators must be beyond end of range, either. void Advance() override { assert(!AtEnd()); // Advance the last iterator. ++std::get(current_); // if that reaches end, propagate that up. AdvanceIfEnd(); ComputeCurrentValue(); } ParamIteratorInterface* Clone() const override { return new IteratorImpl(*this); } const ParamType* Current() const override { return current_value_.get(); } bool Equals(const ParamIteratorInterface& other) const override { // Having the same base generator guarantees that the other // iterator is of the same type and we can downcast. GTEST_CHECK_(BaseGenerator() == other.BaseGenerator()) << "The program attempted to compare iterators " << "from different generators." << std::endl; const IteratorImpl* typed_other = CheckedDowncastToActualType(&other); // We must report iterators equal if they both point beyond their // respective ranges. That can happen in a variety of fashions, // so we have to consult AtEnd(). if (AtEnd() && typed_other->AtEnd()) return true; bool same = true; bool dummy[] = { (same = same && std::get(current_) == std::get(typed_other->current_))...}; (void)dummy; return same; } private: template void AdvanceIfEnd() { if (std::get(current_) != std::get(end_)) return; bool last = ThisI == 0; if (last) { // We are done. Nothing else to propagate. return; } constexpr size_t NextI = ThisI - (ThisI != 0); std::get(current_) = std::get(begin_); ++std::get(current_); AdvanceIfEnd(); } void ComputeCurrentValue() { if (!AtEnd()) current_value_ = std::make_shared(*std::get(current_)...); } bool AtEnd() const { bool at_end = false; bool dummy[] = { (at_end = at_end || std::get(current_) == std::get(end_))...}; (void)dummy; return at_end; } const ParamGeneratorInterface* const base_; std::tuple::iterator...> begin_; std::tuple::iterator...> end_; std::tuple::iterator...> current_; std::shared_ptr current_value_; }; using Iterator = IteratorImpl::type>; std::tuple...> generators_; }; template class CartesianProductHolder { public: CartesianProductHolder(const Gen&... g) : generators_(g...) {} template operator ParamGenerator<::std::tuple>() const { return ParamGenerator<::std::tuple>( new CartesianProductGenerator(generators_)); } private: std::tuple generators_; }; } // namespace internal } // namespace testing #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-port-arch.h ================================================ // Copyright 2015, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file defines the GTEST_OS_* macro. // It is separate from gtest-port.h so that custom/gtest-port.h can include it. #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_ // Determines the platform on which Google Test is compiled. #ifdef __CYGWIN__ # define GTEST_OS_CYGWIN 1 # elif defined(__MINGW__) || defined(__MINGW32__) || defined(__MINGW64__) # define GTEST_OS_WINDOWS_MINGW 1 # define GTEST_OS_WINDOWS 1 #elif defined _WIN32 # define GTEST_OS_WINDOWS 1 # ifdef _WIN32_WCE # define GTEST_OS_WINDOWS_MOBILE 1 # elif defined(WINAPI_FAMILY) # include # if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) # define GTEST_OS_WINDOWS_DESKTOP 1 # elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_PHONE_APP) # define GTEST_OS_WINDOWS_PHONE 1 # elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) # define GTEST_OS_WINDOWS_RT 1 # elif WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_TV_TITLE) # define GTEST_OS_WINDOWS_PHONE 1 # define GTEST_OS_WINDOWS_TV_TITLE 1 # else // WINAPI_FAMILY defined but no known partition matched. // Default to desktop. # define GTEST_OS_WINDOWS_DESKTOP 1 # endif # else # define GTEST_OS_WINDOWS_DESKTOP 1 # endif // _WIN32_WCE #elif defined __OS2__ # define GTEST_OS_OS2 1 #elif defined __APPLE__ # define GTEST_OS_MAC 1 # include # if TARGET_OS_IPHONE # define GTEST_OS_IOS 1 # endif #elif defined __DragonFly__ # define GTEST_OS_DRAGONFLY 1 #elif defined __FreeBSD__ # define GTEST_OS_FREEBSD 1 #elif defined __Fuchsia__ # define GTEST_OS_FUCHSIA 1 #elif defined(__GLIBC__) && defined(__FreeBSD_kernel__) # define GTEST_OS_GNU_KFREEBSD 1 #elif defined __linux__ # define GTEST_OS_LINUX 1 # if defined __ANDROID__ # define GTEST_OS_LINUX_ANDROID 1 # endif #elif defined __MVS__ # define GTEST_OS_ZOS 1 #elif defined(__sun) && defined(__SVR4) # define GTEST_OS_SOLARIS 1 #elif defined(_AIX) # define GTEST_OS_AIX 1 #elif defined(__hpux) # define GTEST_OS_HPUX 1 #elif defined __native_client__ # define GTEST_OS_NACL 1 #elif defined __NetBSD__ # define GTEST_OS_NETBSD 1 #elif defined __OpenBSD__ # define GTEST_OS_OPENBSD 1 #elif defined __QNX__ # define GTEST_OS_QNX 1 #elif defined(__HAIKU__) #define GTEST_OS_HAIKU 1 #elif defined ESP8266 #define GTEST_OS_ESP8266 1 #elif defined ESP32 #define GTEST_OS_ESP32 1 #elif defined(__XTENSA__) #define GTEST_OS_XTENSA 1 #endif // __CYGWIN__ #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_ARCH_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-port.h ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Low-level types and utilities for porting Google Test to various // platforms. All macros ending with _ and symbols defined in an // internal namespace are subject to change without notice. Code // outside Google Test MUST NOT USE THEM DIRECTLY. Macros that don't // end with _ are part of Google Test's public API and can be used by // code outside Google Test. // // This file is fundamental to Google Test. All other Google Test source // files are expected to #include this. Therefore, it cannot #include // any other Google Test header. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ // Environment-describing macros // ----------------------------- // // Google Test can be used in many different environments. Macros in // this section tell Google Test what kind of environment it is being // used in, such that Google Test can provide environment-specific // features and implementations. // // Google Test tries to automatically detect the properties of its // environment, so users usually don't need to worry about these // macros. However, the automatic detection is not perfect. // Sometimes it's necessary for a user to define some of the following // macros in the build script to override Google Test's decisions. // // If the user doesn't define a macro in the list, Google Test will // provide a default definition. After this header is #included, all // macros in this list will be defined to either 1 or 0. // // Notes to maintainers: // - Each macro here is a user-tweakable knob; do not grow the list // lightly. // - Use #if to key off these macros. Don't use #ifdef or "#if // defined(...)", which will not work as these macros are ALWAYS // defined. // // GTEST_HAS_CLONE - Define it to 1/0 to indicate that clone(2) // is/isn't available. // GTEST_HAS_EXCEPTIONS - Define it to 1/0 to indicate that exceptions // are enabled. // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular // expressions are/aren't available. // GTEST_HAS_PTHREAD - Define it to 1/0 to indicate that // is/isn't available. // GTEST_HAS_RTTI - Define it to 1/0 to indicate that RTTI is/isn't // enabled. // GTEST_HAS_STD_WSTRING - Define it to 1/0 to indicate that // std::wstring does/doesn't work (Google Test can // be used where std::wstring is unavailable). // GTEST_HAS_SEH - Define it to 1/0 to indicate whether the // compiler supports Microsoft's "Structured // Exception Handling". // GTEST_HAS_STREAM_REDIRECTION // - Define it to 1/0 to indicate whether the // platform supports I/O stream redirection using // dup() and dup2(). // GTEST_LINKED_AS_SHARED_LIBRARY // - Define to 1 when compiling tests that use // Google Test as a shared library (known as // DLL on Windows). // GTEST_CREATE_SHARED_LIBRARY // - Define to 1 when compiling Google Test itself // as a shared library. // GTEST_DEFAULT_DEATH_TEST_STYLE // - The default value of --gtest_death_test_style. // The legacy default has been "fast" in the open // source version since 2008. The recommended value // is "threadsafe", and can be set in // custom/gtest-port.h. // Platform-indicating macros // -------------------------- // // Macros indicating the platform on which Google Test is being used // (a macro is defined to 1 if compiled on the given platform; // otherwise UNDEFINED -- it's never defined to 0.). Google Test // defines these macros automatically. Code outside Google Test MUST // NOT define them. // // GTEST_OS_AIX - IBM AIX // GTEST_OS_CYGWIN - Cygwin // GTEST_OS_DRAGONFLY - DragonFlyBSD // GTEST_OS_FREEBSD - FreeBSD // GTEST_OS_FUCHSIA - Fuchsia // GTEST_OS_GNU_KFREEBSD - GNU/kFreeBSD // GTEST_OS_HAIKU - Haiku // GTEST_OS_HPUX - HP-UX // GTEST_OS_LINUX - Linux // GTEST_OS_LINUX_ANDROID - Google Android // GTEST_OS_MAC - Mac OS X // GTEST_OS_IOS - iOS // GTEST_OS_NACL - Google Native Client (NaCl) // GTEST_OS_NETBSD - NetBSD // GTEST_OS_OPENBSD - OpenBSD // GTEST_OS_OS2 - OS/2 // GTEST_OS_QNX - QNX // GTEST_OS_SOLARIS - Sun Solaris // GTEST_OS_WINDOWS - Windows (Desktop, MinGW, or Mobile) // GTEST_OS_WINDOWS_DESKTOP - Windows Desktop // GTEST_OS_WINDOWS_MINGW - MinGW // GTEST_OS_WINDOWS_MOBILE - Windows Mobile // GTEST_OS_WINDOWS_PHONE - Windows Phone // GTEST_OS_WINDOWS_RT - Windows Store App/WinRT // GTEST_OS_ZOS - z/OS // // Among the platforms, Cygwin, Linux, Mac OS X, and Windows have the // most stable support. Since core members of the Google Test project // don't have access to other platforms, support for them may be less // stable. If you notice any problems on your platform, please notify // googletestframework@googlegroups.com (patches for fixing them are // even more welcome!). // // It is possible that none of the GTEST_OS_* macros are defined. // Feature-indicating macros // ------------------------- // // Macros indicating which Google Test features are available (a macro // is defined to 1 if the corresponding feature is supported; // otherwise UNDEFINED -- it's never defined to 0.). Google Test // defines these macros automatically. Code outside Google Test MUST // NOT define them. // // These macros are public so that portable tests can be written. // Such tests typically surround code using a feature with an #if // which controls that code. For example: // // #if GTEST_HAS_DEATH_TEST // EXPECT_DEATH(DoSomethingDeadly()); // #endif // // GTEST_HAS_DEATH_TEST - death tests // GTEST_HAS_TYPED_TEST - typed tests // GTEST_HAS_TYPED_TEST_P - type-parameterized tests // GTEST_IS_THREADSAFE - Google Test is thread-safe. // GOOGLETEST_CM0007 DO NOT DELETE // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with // GTEST_HAS_POSIX_RE (see above) which users can // define themselves. // GTEST_USES_SIMPLE_RE - our own simple regex is used; // the above RE\b(s) are mutually exclusive. // Misc public macros // ------------------ // // GTEST_FLAG(flag_name) - references the variable corresponding to // the given Google Test flag. // Internal utilities // ------------------ // // The following macros and utilities are for Google Test's INTERNAL // use only. Code outside Google Test MUST NOT USE THEM DIRECTLY. // // Macros for basic C++ coding: // GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning. // GTEST_ATTRIBUTE_UNUSED_ - declares that a class' instances or a // variable don't have to be used. // GTEST_DISALLOW_ASSIGN_ - disables copy operator=. // GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=. // GTEST_DISALLOW_MOVE_ASSIGN_ - disables move operator=. // GTEST_DISALLOW_MOVE_AND_ASSIGN_ - disables move ctor and operator=. // GTEST_MUST_USE_RESULT_ - declares that a function's result must be used. // GTEST_INTENTIONAL_CONST_COND_PUSH_ - start code section where MSVC C4127 is // suppressed (constant conditional). // GTEST_INTENTIONAL_CONST_COND_POP_ - finish code section where MSVC C4127 // is suppressed. // GTEST_INTERNAL_HAS_ANY - for enabling UniversalPrinter or // UniversalPrinter specializations. // GTEST_INTERNAL_HAS_OPTIONAL - for enabling UniversalPrinter // or // UniversalPrinter // specializations. // GTEST_INTERNAL_HAS_STRING_VIEW - for enabling Matcher or // Matcher // specializations. // GTEST_INTERNAL_HAS_VARIANT - for enabling UniversalPrinter or // UniversalPrinter // specializations. // // Synchronization: // Mutex, MutexLock, ThreadLocal, GetThreadCount() // - synchronization primitives. // // Regular expressions: // RE - a simple regular expression class using the POSIX // Extended Regular Expression syntax on UNIX-like platforms // GOOGLETEST_CM0008 DO NOT DELETE // or a reduced regular exception syntax on other // platforms, including Windows. // Logging: // GTEST_LOG_() - logs messages at the specified severity level. // LogToStderr() - directs all log messages to stderr. // FlushInfoLog() - flushes informational log messages. // // Stdout and stderr capturing: // CaptureStdout() - starts capturing stdout. // GetCapturedStdout() - stops capturing stdout and returns the captured // string. // CaptureStderr() - starts capturing stderr. // GetCapturedStderr() - stops capturing stderr and returns the captured // string. // // Integer types: // TypeWithSize - maps an integer to a int type. // TimeInMillis - integers of known sizes. // BiggestInt - the biggest signed integer type. // // Command-line utilities: // GTEST_DECLARE_*() - declares a flag. // GTEST_DEFINE_*() - defines a flag. // GetInjectableArgvs() - returns the command line as a vector of strings. // // Environment variable utilities: // GetEnv() - gets the value of an environment variable. // BoolFromGTestEnv() - parses a bool environment variable. // Int32FromGTestEnv() - parses an int32_t environment variable. // StringFromGTestEnv() - parses a string environment variable. // // Deprecation warnings: // GTEST_INTERNAL_DEPRECATED(message) - attribute marking a function as // deprecated; calling a marked function // should generate a compiler warning #include // for isspace, etc #include // for ptrdiff_t #include #include #include #include #include #include #include #ifndef _WIN32_WCE # include # include #endif // !_WIN32_WCE #if defined __APPLE__ # include # include #endif #include // NOLINT #include #include #include // NOLINT #include #include // NOLINT #include "gtest/internal/custom/gtest-port.h" #include "gtest/internal/gtest-port-arch.h" #if !defined(GTEST_DEV_EMAIL_) # define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com" # define GTEST_FLAG_PREFIX_ "gtest_" # define GTEST_FLAG_PREFIX_DASH_ "gtest-" # define GTEST_FLAG_PREFIX_UPPER_ "GTEST_" # define GTEST_NAME_ "Google Test" # define GTEST_PROJECT_URL_ "https://github.com/google/googletest/" #endif // !defined(GTEST_DEV_EMAIL_) #if !defined(GTEST_INIT_GOOGLE_TEST_NAME_) # define GTEST_INIT_GOOGLE_TEST_NAME_ "testing::InitGoogleTest" #endif // !defined(GTEST_INIT_GOOGLE_TEST_NAME_) // Determines the version of gcc that is used to compile this. #ifdef __GNUC__ // 40302 means version 4.3.2. # define GTEST_GCC_VER_ \ (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__) #endif // __GNUC__ // Macros for disabling Microsoft Visual C++ warnings. // // GTEST_DISABLE_MSC_WARNINGS_PUSH_(4800 4385) // /* code that triggers warnings C4800 and C4385 */ // GTEST_DISABLE_MSC_WARNINGS_POP_() #if defined(_MSC_VER) # define GTEST_DISABLE_MSC_WARNINGS_PUSH_(warnings) \ __pragma(warning(push)) \ __pragma(warning(disable: warnings)) # define GTEST_DISABLE_MSC_WARNINGS_POP_() \ __pragma(warning(pop)) #else // Not all compilers are MSVC # define GTEST_DISABLE_MSC_WARNINGS_PUSH_(warnings) # define GTEST_DISABLE_MSC_WARNINGS_POP_() #endif // Clang on Windows does not understand MSVC's pragma warning. // We need clang-specific way to disable function deprecation warning. #ifdef __clang__ # define GTEST_DISABLE_MSC_DEPRECATED_PUSH_() \ _Pragma("clang diagnostic push") \ _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") \ _Pragma("clang diagnostic ignored \"-Wdeprecated-implementations\"") #define GTEST_DISABLE_MSC_DEPRECATED_POP_() \ _Pragma("clang diagnostic pop") #else # define GTEST_DISABLE_MSC_DEPRECATED_PUSH_() \ GTEST_DISABLE_MSC_WARNINGS_PUSH_(4996) # define GTEST_DISABLE_MSC_DEPRECATED_POP_() \ GTEST_DISABLE_MSC_WARNINGS_POP_() #endif // Brings in definitions for functions used in the testing::internal::posix // namespace (read, write, close, chdir, isatty, stat). We do not currently // use them on Windows Mobile. #if GTEST_OS_WINDOWS # if !GTEST_OS_WINDOWS_MOBILE # include # include # endif // In order to avoid having to include , use forward declaration #if GTEST_OS_WINDOWS_MINGW && !defined(__MINGW64_VERSION_MAJOR) // MinGW defined _CRITICAL_SECTION and _RTL_CRITICAL_SECTION as two // separate (equivalent) structs, instead of using typedef typedef struct _CRITICAL_SECTION GTEST_CRITICAL_SECTION; #else // Assume CRITICAL_SECTION is a typedef of _RTL_CRITICAL_SECTION. // This assumption is verified by // WindowsTypesTest.CRITICAL_SECTIONIs_RTL_CRITICAL_SECTION. typedef struct _RTL_CRITICAL_SECTION GTEST_CRITICAL_SECTION; #endif #elif GTEST_OS_XTENSA #include // Xtensa toolchains define strcasecmp in the string.h header instead of // strings.h. string.h is already included. #else // This assumes that non-Windows OSes provide unistd.h. For OSes where this // is not the case, we need to include headers that provide the functions // mentioned above. # include # include #endif // GTEST_OS_WINDOWS #if GTEST_OS_LINUX_ANDROID // Used to define __ANDROID_API__ matching the target NDK API level. # include // NOLINT #endif // Defines this to true if and only if Google Test can use POSIX regular // expressions. #ifndef GTEST_HAS_POSIX_RE # if GTEST_OS_LINUX_ANDROID // On Android, is only available starting with Gingerbread. # define GTEST_HAS_POSIX_RE (__ANDROID_API__ >= 9) # else #define GTEST_HAS_POSIX_RE (!GTEST_OS_WINDOWS && !GTEST_OS_XTENSA) # endif #endif #if GTEST_USES_PCRE // The appropriate headers have already been included. #elif GTEST_HAS_POSIX_RE // On some platforms, needs someone to define size_t, and // won't compile otherwise. We can #include it here as we already // included , which is guaranteed to define size_t through // . # include // NOLINT # define GTEST_USES_POSIX_RE 1 #elif GTEST_OS_WINDOWS // is not available on Windows. Use our own simple regex // implementation instead. # define GTEST_USES_SIMPLE_RE 1 #else // may not be available on this platform. Use our own // simple regex implementation instead. # define GTEST_USES_SIMPLE_RE 1 #endif // GTEST_USES_PCRE #ifndef GTEST_HAS_EXCEPTIONS // The user didn't tell us whether exceptions are enabled, so we need // to figure it out. # if defined(_MSC_VER) && defined(_CPPUNWIND) // MSVC defines _CPPUNWIND to 1 if and only if exceptions are enabled. # define GTEST_HAS_EXCEPTIONS 1 # elif defined(__BORLANDC__) // C++Builder's implementation of the STL uses the _HAS_EXCEPTIONS // macro to enable exceptions, so we'll do the same. // Assumes that exceptions are enabled by default. # ifndef _HAS_EXCEPTIONS # define _HAS_EXCEPTIONS 1 # endif // _HAS_EXCEPTIONS # define GTEST_HAS_EXCEPTIONS _HAS_EXCEPTIONS # elif defined(__clang__) // clang defines __EXCEPTIONS if and only if exceptions are enabled before clang // 220714, but if and only if cleanups are enabled after that. In Obj-C++ files, // there can be cleanups for ObjC exceptions which also need cleanups, even if // C++ exceptions are disabled. clang has __has_feature(cxx_exceptions) which // checks for C++ exceptions starting at clang r206352, but which checked for // cleanups prior to that. To reliably check for C++ exception availability with // clang, check for // __EXCEPTIONS && __has_feature(cxx_exceptions). # define GTEST_HAS_EXCEPTIONS (__EXCEPTIONS && __has_feature(cxx_exceptions)) # elif defined(__GNUC__) && __EXCEPTIONS // gcc defines __EXCEPTIONS to 1 if and only if exceptions are enabled. # define GTEST_HAS_EXCEPTIONS 1 # elif defined(__SUNPRO_CC) // Sun Pro CC supports exceptions. However, there is no compile-time way of // detecting whether they are enabled or not. Therefore, we assume that // they are enabled unless the user tells us otherwise. # define GTEST_HAS_EXCEPTIONS 1 # elif defined(__IBMCPP__) && __EXCEPTIONS // xlC defines __EXCEPTIONS to 1 if and only if exceptions are enabled. # define GTEST_HAS_EXCEPTIONS 1 # elif defined(__HP_aCC) // Exception handling is in effect by default in HP aCC compiler. It has to // be turned of by +noeh compiler option if desired. # define GTEST_HAS_EXCEPTIONS 1 # else // For other compilers, we assume exceptions are disabled to be // conservative. # define GTEST_HAS_EXCEPTIONS 0 # endif // defined(_MSC_VER) || defined(__BORLANDC__) #endif // GTEST_HAS_EXCEPTIONS #ifndef GTEST_HAS_STD_WSTRING // The user didn't tell us whether ::std::wstring is available, so we need // to figure it out. // Cygwin 1.7 and below doesn't support ::std::wstring. // Solaris' libc++ doesn't support it either. Android has // no support for it at least as recent as Froyo (2.2). #define GTEST_HAS_STD_WSTRING \ (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \ GTEST_OS_HAIKU || GTEST_OS_ESP32 || GTEST_OS_ESP8266 || GTEST_OS_XTENSA)) #endif // GTEST_HAS_STD_WSTRING // Determines whether RTTI is available. #ifndef GTEST_HAS_RTTI // The user didn't tell us whether RTTI is enabled, so we need to // figure it out. # ifdef _MSC_VER #ifdef _CPPRTTI // MSVC defines this macro if and only if RTTI is enabled. # define GTEST_HAS_RTTI 1 # else # define GTEST_HAS_RTTI 0 # endif // Starting with version 4.3.2, gcc defines __GXX_RTTI if and only if RTTI is // enabled. # elif defined(__GNUC__) # ifdef __GXX_RTTI // When building against STLport with the Android NDK and with // -frtti -fno-exceptions, the build fails at link time with undefined // references to __cxa_bad_typeid. Note sure if STL or toolchain bug, // so disable RTTI when detected. # if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR) && \ !defined(__EXCEPTIONS) # define GTEST_HAS_RTTI 0 # else # define GTEST_HAS_RTTI 1 # endif // GTEST_OS_LINUX_ANDROID && __STLPORT_MAJOR && !__EXCEPTIONS # else # define GTEST_HAS_RTTI 0 # endif // __GXX_RTTI // Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends // using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the // first version with C++ support. # elif defined(__clang__) # define GTEST_HAS_RTTI __has_feature(cxx_rtti) // Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if // both the typeid and dynamic_cast features are present. # elif defined(__IBMCPP__) && (__IBMCPP__ >= 900) # ifdef __RTTI_ALL__ # define GTEST_HAS_RTTI 1 # else # define GTEST_HAS_RTTI 0 # endif # else // For all other compilers, we assume RTTI is enabled. # define GTEST_HAS_RTTI 1 # endif // _MSC_VER #endif // GTEST_HAS_RTTI // It's this header's responsibility to #include when RTTI // is enabled. #if GTEST_HAS_RTTI # include #endif // Determines whether Google Test can use the pthreads library. #ifndef GTEST_HAS_PTHREAD // The user didn't tell us explicitly, so we make reasonable assumptions about // which platforms have pthreads support. // // To disable threading support in Google Test, add -DGTEST_HAS_PTHREAD=0 // to your compiler flags. #define GTEST_HAS_PTHREAD \ (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_HPUX || GTEST_OS_QNX || \ GTEST_OS_FREEBSD || GTEST_OS_NACL || GTEST_OS_NETBSD || GTEST_OS_FUCHSIA || \ GTEST_OS_DRAGONFLY || GTEST_OS_GNU_KFREEBSD || GTEST_OS_OPENBSD || \ GTEST_OS_HAIKU) #endif // GTEST_HAS_PTHREAD #if GTEST_HAS_PTHREAD // gtest-port.h guarantees to #include when GTEST_HAS_PTHREAD is // true. # include // NOLINT // For timespec and nanosleep, used below. # include // NOLINT #endif // Determines whether clone(2) is supported. // Usually it will only be available on Linux, excluding // Linux on the Itanium architecture. // Also see http://linux.die.net/man/2/clone. #ifndef GTEST_HAS_CLONE // The user didn't tell us, so we need to figure it out. # if GTEST_OS_LINUX && !defined(__ia64__) # if GTEST_OS_LINUX_ANDROID // On Android, clone() became available at different API levels for each 32-bit // architecture. # if defined(__LP64__) || \ (defined(__arm__) && __ANDROID_API__ >= 9) || \ (defined(__mips__) && __ANDROID_API__ >= 12) || \ (defined(__i386__) && __ANDROID_API__ >= 17) # define GTEST_HAS_CLONE 1 # else # define GTEST_HAS_CLONE 0 # endif # else # define GTEST_HAS_CLONE 1 # endif # else # define GTEST_HAS_CLONE 0 # endif // GTEST_OS_LINUX && !defined(__ia64__) #endif // GTEST_HAS_CLONE // Determines whether to support stream redirection. This is used to test // output correctness and to implement death tests. #ifndef GTEST_HAS_STREAM_REDIRECTION // By default, we assume that stream redirection is supported on all // platforms except known mobile ones. #if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || \ GTEST_OS_WINDOWS_RT || GTEST_OS_ESP8266 || GTEST_OS_XTENSA # define GTEST_HAS_STREAM_REDIRECTION 0 # else # define GTEST_HAS_STREAM_REDIRECTION 1 # endif // !GTEST_OS_WINDOWS_MOBILE #endif // GTEST_HAS_STREAM_REDIRECTION // Determines whether to support death tests. // pops up a dialog window that cannot be suppressed programmatically. #if (GTEST_OS_LINUX || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \ (GTEST_OS_MAC && !GTEST_OS_IOS) || \ (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER) || GTEST_OS_WINDOWS_MINGW || \ GTEST_OS_AIX || GTEST_OS_HPUX || GTEST_OS_OPENBSD || GTEST_OS_QNX || \ GTEST_OS_FREEBSD || GTEST_OS_NETBSD || GTEST_OS_FUCHSIA || \ GTEST_OS_DRAGONFLY || GTEST_OS_GNU_KFREEBSD || GTEST_OS_HAIKU) # define GTEST_HAS_DEATH_TEST 1 #endif // Determines whether to support type-driven tests. // Typed tests need and variadic macros, which GCC, VC++ 8.0, // Sun Pro CC, IBM Visual Age, and HP aCC support. #if defined(__GNUC__) || defined(_MSC_VER) || defined(__SUNPRO_CC) || \ defined(__IBMCPP__) || defined(__HP_aCC) # define GTEST_HAS_TYPED_TEST 1 # define GTEST_HAS_TYPED_TEST_P 1 #endif // Determines whether the system compiler uses UTF-16 for encoding wide strings. #define GTEST_WIDE_STRING_USES_UTF16_ \ (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_AIX || GTEST_OS_OS2) // Determines whether test results can be streamed to a socket. #if GTEST_OS_LINUX || GTEST_OS_GNU_KFREEBSD || GTEST_OS_DRAGONFLY || \ GTEST_OS_FREEBSD || GTEST_OS_NETBSD || GTEST_OS_OPENBSD # define GTEST_CAN_STREAM_RESULTS_ 1 #endif // Defines some utility macros. // The GNU compiler emits a warning if nested "if" statements are followed by // an "else" statement and braces are not used to explicitly disambiguate the // "else" binding. This leads to problems with code like: // // if (gate) // ASSERT_*(condition) << "Some message"; // // The "switch (0) case 0:" idiom is used to suppress this. #ifdef __INTEL_COMPILER # define GTEST_AMBIGUOUS_ELSE_BLOCKER_ #else # define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: default: // NOLINT #endif // Use this annotation at the end of a struct/class definition to // prevent the compiler from optimizing away instances that are never // used. This is useful when all interesting logic happens inside the // c'tor and / or d'tor. Example: // // struct Foo { // Foo() { ... } // } GTEST_ATTRIBUTE_UNUSED_; // // Also use it after a variable or parameter declaration to tell the // compiler the variable/parameter does not have to be used. #if defined(__GNUC__) && !defined(COMPILER_ICC) # define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused)) #elif defined(__clang__) # if __has_attribute(unused) # define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused)) # endif #endif #ifndef GTEST_ATTRIBUTE_UNUSED_ # define GTEST_ATTRIBUTE_UNUSED_ #endif // Use this annotation before a function that takes a printf format string. #if (defined(__GNUC__) || defined(__clang__)) && !defined(COMPILER_ICC) # if defined(__MINGW_PRINTF_FORMAT) // MinGW has two different printf implementations. Ensure the format macro // matches the selected implementation. See // https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/. # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \ __attribute__((__format__(__MINGW_PRINTF_FORMAT, string_index, \ first_to_check))) # else # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) \ __attribute__((__format__(__printf__, string_index, first_to_check))) # endif #else # define GTEST_ATTRIBUTE_PRINTF_(string_index, first_to_check) #endif // A macro to disallow copy operator= // This should be used in the private: declarations for a class. #define GTEST_DISALLOW_ASSIGN_(type) \ type& operator=(type const &) = delete // A macro to disallow copy constructor and operator= // This should be used in the private: declarations for a class. #define GTEST_DISALLOW_COPY_AND_ASSIGN_(type) \ type(type const&) = delete; \ type& operator=(type const&) = delete // A macro to disallow move operator= // This should be used in the private: declarations for a class. #define GTEST_DISALLOW_MOVE_ASSIGN_(type) \ type& operator=(type &&) noexcept = delete // A macro to disallow move constructor and operator= // This should be used in the private: declarations for a class. #define GTEST_DISALLOW_MOVE_AND_ASSIGN_(type) \ type(type&&) noexcept = delete; \ type& operator=(type&&) noexcept = delete // Tell the compiler to warn about unused return values for functions declared // with this macro. The macro should be used on function declarations // following the argument list: // // Sprocket* AllocateSprocket() GTEST_MUST_USE_RESULT_; #if defined(__GNUC__) && !defined(COMPILER_ICC) # define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result)) #else # define GTEST_MUST_USE_RESULT_ #endif // __GNUC__ && !COMPILER_ICC // MS C++ compiler emits warning when a conditional expression is compile time // constant. In some contexts this warning is false positive and needs to be // suppressed. Use the following two macros in such cases: // // GTEST_INTENTIONAL_CONST_COND_PUSH_() // while (true) { // GTEST_INTENTIONAL_CONST_COND_POP_() // } # define GTEST_INTENTIONAL_CONST_COND_PUSH_() \ GTEST_DISABLE_MSC_WARNINGS_PUSH_(4127) # define GTEST_INTENTIONAL_CONST_COND_POP_() \ GTEST_DISABLE_MSC_WARNINGS_POP_() // Determine whether the compiler supports Microsoft's Structured Exception // Handling. This is supported by several Windows compilers but generally // does not exist on any other system. #ifndef GTEST_HAS_SEH // The user didn't tell us, so we need to figure it out. # if defined(_MSC_VER) || defined(__BORLANDC__) // These two compilers are known to support SEH. # define GTEST_HAS_SEH 1 # else // Assume no SEH. # define GTEST_HAS_SEH 0 # endif #endif // GTEST_HAS_SEH #ifndef GTEST_IS_THREADSAFE #define GTEST_IS_THREADSAFE \ (GTEST_HAS_MUTEX_AND_THREAD_LOCAL_ || \ (GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT) || \ GTEST_HAS_PTHREAD) #endif // GTEST_IS_THREADSAFE // GTEST_API_ qualifies all symbols that must be exported. The definitions below // are guarded by #ifndef to give embedders a chance to define GTEST_API_ in // gtest/internal/custom/gtest-port.h #ifndef GTEST_API_ #ifdef _MSC_VER # if GTEST_LINKED_AS_SHARED_LIBRARY # define GTEST_API_ __declspec(dllimport) # elif GTEST_CREATE_SHARED_LIBRARY # define GTEST_API_ __declspec(dllexport) # endif #elif __GNUC__ >= 4 || defined(__clang__) # define GTEST_API_ __attribute__((visibility ("default"))) #endif // _MSC_VER #endif // GTEST_API_ #ifndef GTEST_API_ # define GTEST_API_ #endif // GTEST_API_ #ifndef GTEST_DEFAULT_DEATH_TEST_STYLE # define GTEST_DEFAULT_DEATH_TEST_STYLE "fast" #endif // GTEST_DEFAULT_DEATH_TEST_STYLE #ifdef __GNUC__ // Ask the compiler to never inline a given function. # define GTEST_NO_INLINE_ __attribute__((noinline)) #else # define GTEST_NO_INLINE_ #endif // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project. #if !defined(GTEST_HAS_CXXABI_H_) # if defined(__GLIBCXX__) || (defined(_LIBCPP_VERSION) && !defined(_MSC_VER)) # define GTEST_HAS_CXXABI_H_ 1 # else # define GTEST_HAS_CXXABI_H_ 0 # endif #endif // A function level attribute to disable checking for use of uninitialized // memory when built with MemorySanitizer. #if defined(__clang__) # if __has_feature(memory_sanitizer) # define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ \ __attribute__((no_sanitize_memory)) # else # define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ # endif // __has_feature(memory_sanitizer) #else # define GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ #endif // __clang__ // A function level attribute to disable AddressSanitizer instrumentation. #if defined(__clang__) # if __has_feature(address_sanitizer) # define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ \ __attribute__((no_sanitize_address)) # else # define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ # endif // __has_feature(address_sanitizer) #else # define GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ #endif // __clang__ // A function level attribute to disable HWAddressSanitizer instrumentation. #if defined(__clang__) # if __has_feature(hwaddress_sanitizer) # define GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ \ __attribute__((no_sanitize("hwaddress"))) # else # define GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ # endif // __has_feature(hwaddress_sanitizer) #else # define GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ #endif // __clang__ // A function level attribute to disable ThreadSanitizer instrumentation. #if defined(__clang__) # if __has_feature(thread_sanitizer) # define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ \ __attribute__((no_sanitize_thread)) # else # define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ # endif // __has_feature(thread_sanitizer) #else # define GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ #endif // __clang__ namespace testing { class Message; // Legacy imports for backwards compatibility. // New code should use std:: names directly. using std::get; using std::make_tuple; using std::tuple; using std::tuple_element; using std::tuple_size; namespace internal { // A secret type that Google Test users don't know about. It has no // definition on purpose. Therefore it's impossible to create a // Secret object, which is what we want. class Secret; // The GTEST_COMPILE_ASSERT_ is a legacy macro used to verify that a compile // time expression is true (in new code, use static_assert instead). For // example, you could use it to verify the size of a static array: // // GTEST_COMPILE_ASSERT_(GTEST_ARRAY_SIZE_(names) == NUM_NAMES, // names_incorrect_size); // // The second argument to the macro must be a valid C++ identifier. If the // expression is false, compiler will issue an error containing this identifier. #define GTEST_COMPILE_ASSERT_(expr, msg) static_assert(expr, #msg) // A helper for suppressing warnings on constant condition. It just // returns 'condition'. GTEST_API_ bool IsTrue(bool condition); // Defines RE. #if GTEST_USES_PCRE // if used, PCRE is injected by custom/gtest-port.h #elif GTEST_USES_POSIX_RE || GTEST_USES_SIMPLE_RE // A simple C++ wrapper for . It uses the POSIX Extended // Regular Expression syntax. class GTEST_API_ RE { public: // A copy constructor is required by the Standard to initialize object // references from r-values. RE(const RE& other) { Init(other.pattern()); } // Constructs an RE from a string. RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT RE(const char* regex) { Init(regex); } // NOLINT ~RE(); // Returns the string representation of the regex. const char* pattern() const { return pattern_; } // FullMatch(str, re) returns true if and only if regular expression re // matches the entire str. // PartialMatch(str, re) returns true if and only if regular expression re // matches a substring of str (including str itself). static bool FullMatch(const ::std::string& str, const RE& re) { return FullMatch(str.c_str(), re); } static bool PartialMatch(const ::std::string& str, const RE& re) { return PartialMatch(str.c_str(), re); } static bool FullMatch(const char* str, const RE& re); static bool PartialMatch(const char* str, const RE& re); private: void Init(const char* regex); const char* pattern_; bool is_valid_; # if GTEST_USES_POSIX_RE regex_t full_regex_; // For FullMatch(). regex_t partial_regex_; // For PartialMatch(). # else // GTEST_USES_SIMPLE_RE const char* full_pattern_; // For FullMatch(); # endif }; #endif // GTEST_USES_PCRE // Formats a source file path and a line number as they would appear // in an error message from the compiler used to compile this code. GTEST_API_ ::std::string FormatFileLocation(const char* file, int line); // Formats a file location for compiler-independent XML output. // Although this function is not platform dependent, we put it next to // FormatFileLocation in order to contrast the two functions. GTEST_API_ ::std::string FormatCompilerIndependentFileLocation(const char* file, int line); // Defines logging utilities: // GTEST_LOG_(severity) - logs messages at the specified severity level. The // message itself is streamed into the macro. // LogToStderr() - directs all log messages to stderr. // FlushInfoLog() - flushes informational log messages. enum GTestLogSeverity { GTEST_INFO, GTEST_WARNING, GTEST_ERROR, GTEST_FATAL }; // Formats log entry severity, provides a stream object for streaming the // log message, and terminates the message with a newline when going out of // scope. class GTEST_API_ GTestLog { public: GTestLog(GTestLogSeverity severity, const char* file, int line); // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. ~GTestLog(); ::std::ostream& GetStream() { return ::std::cerr; } private: const GTestLogSeverity severity_; GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestLog); }; #if !defined(GTEST_LOG_) # define GTEST_LOG_(severity) \ ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \ __FILE__, __LINE__).GetStream() inline void LogToStderr() {} inline void FlushInfoLog() { fflush(nullptr); } #endif // !defined(GTEST_LOG_) #if !defined(GTEST_CHECK_) // INTERNAL IMPLEMENTATION - DO NOT USE. // // GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition // is not satisfied. // Synopsys: // GTEST_CHECK_(boolean_condition); // or // GTEST_CHECK_(boolean_condition) << "Additional message"; // // This checks the condition and if the condition is not satisfied // it prints message about the condition violation, including the // condition itself, plus additional message streamed into it, if any, // and then it aborts the program. It aborts the program irrespective of // whether it is built in the debug mode or not. # define GTEST_CHECK_(condition) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::IsTrue(condition)) \ ; \ else \ GTEST_LOG_(FATAL) << "Condition " #condition " failed. " #endif // !defined(GTEST_CHECK_) // An all-mode assert to verify that the given POSIX-style function // call returns 0 (indicating success). Known limitation: this // doesn't expand to a balanced 'if' statement, so enclose the macro // in {} if you need to use it as the only statement in an 'if' // branch. #define GTEST_CHECK_POSIX_SUCCESS_(posix_call) \ if (const int gtest_error = (posix_call)) \ GTEST_LOG_(FATAL) << #posix_call << "failed with error " \ << gtest_error // Transforms "T" into "const T&" according to standard reference collapsing // rules (this is only needed as a backport for C++98 compilers that do not // support reference collapsing). Specifically, it transforms: // // char ==> const char& // const char ==> const char& // char& ==> char& // const char& ==> const char& // // Note that the non-const reference will not have "const" added. This is // standard, and necessary so that "T" can always bind to "const T&". template struct ConstRef { typedef const T& type; }; template struct ConstRef { typedef T& type; }; // The argument T must depend on some template parameters. #define GTEST_REFERENCE_TO_CONST_(T) \ typename ::testing::internal::ConstRef::type // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE. // // Use ImplicitCast_ as a safe version of static_cast for upcasting in // the type hierarchy (e.g. casting a Foo* to a SuperclassOfFoo* or a // const Foo*). When you use ImplicitCast_, the compiler checks that // the cast is safe. Such explicit ImplicitCast_s are necessary in // surprisingly many situations where C++ demands an exact type match // instead of an argument type convertable to a target type. // // The syntax for using ImplicitCast_ is the same as for static_cast: // // ImplicitCast_(expr) // // ImplicitCast_ would have been part of the C++ standard library, // but the proposal was submitted too late. It will probably make // its way into the language in the future. // // This relatively ugly name is intentional. It prevents clashes with // similar functions users may have (e.g., implicit_cast). The internal // namespace alone is not enough because the function can be found by ADL. template inline To ImplicitCast_(To x) { return x; } // When you upcast (that is, cast a pointer from type Foo to type // SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts // always succeed. When you downcast (that is, cast a pointer from // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because // how do you know the pointer is really of type SubclassOfFoo? It // could be a bare Foo, or of type DifferentSubclassOfFoo. Thus, // when you downcast, you should use this macro. In debug mode, we // use dynamic_cast<> to double-check the downcast is legal (we die // if it's not). In normal mode, we do the efficient static_cast<> // instead. Thus, it's important to test in debug mode to make sure // the cast is legal! // This is the only place in the code we should use dynamic_cast<>. // In particular, you SHOULDN'T be using dynamic_cast<> in order to // do RTTI (eg code like this: // if (dynamic_cast(foo)) HandleASubclass1Object(foo); // if (dynamic_cast(foo)) HandleASubclass2Object(foo); // You should design the code some other way not to need this. // // This relatively ugly name is intentional. It prevents clashes with // similar functions users may have (e.g., down_cast). The internal // namespace alone is not enough because the function can be found by ADL. template // use like this: DownCast_(foo); inline To DownCast_(From* f) { // so we only accept pointers // Ensures that To is a sub-type of From *. This test is here only // for compile-time type checking, and has no overhead in an // optimized build at run-time, as it will be optimized away // completely. GTEST_INTENTIONAL_CONST_COND_PUSH_() if (false) { GTEST_INTENTIONAL_CONST_COND_POP_() const To to = nullptr; ::testing::internal::ImplicitCast_(to); } #if GTEST_HAS_RTTI // RTTI: debug mode only! GTEST_CHECK_(f == nullptr || dynamic_cast(f) != nullptr); #endif return static_cast(f); } // Downcasts the pointer of type Base to Derived. // Derived must be a subclass of Base. The parameter MUST // point to a class of type Derived, not any subclass of it. // When RTTI is available, the function performs a runtime // check to enforce this. template Derived* CheckedDowncastToActualType(Base* base) { #if GTEST_HAS_RTTI GTEST_CHECK_(typeid(*base) == typeid(Derived)); #endif #if GTEST_HAS_DOWNCAST_ return ::down_cast(base); #elif GTEST_HAS_RTTI return dynamic_cast(base); // NOLINT #else return static_cast(base); // Poor man's downcast. #endif } #if GTEST_HAS_STREAM_REDIRECTION // Defines the stderr capturer: // CaptureStdout - starts capturing stdout. // GetCapturedStdout - stops capturing stdout and returns the captured string. // CaptureStderr - starts capturing stderr. // GetCapturedStderr - stops capturing stderr and returns the captured string. // GTEST_API_ void CaptureStdout(); GTEST_API_ std::string GetCapturedStdout(); GTEST_API_ void CaptureStderr(); GTEST_API_ std::string GetCapturedStderr(); #endif // GTEST_HAS_STREAM_REDIRECTION // Returns the size (in bytes) of a file. GTEST_API_ size_t GetFileSize(FILE* file); // Reads the entire content of a file as a string. GTEST_API_ std::string ReadEntireFile(FILE* file); // All command line arguments. GTEST_API_ std::vector GetArgvs(); #if GTEST_HAS_DEATH_TEST std::vector GetInjectableArgvs(); // Deprecated: pass the args vector by value instead. void SetInjectableArgvs(const std::vector* new_argvs); void SetInjectableArgvs(const std::vector& new_argvs); void ClearInjectableArgvs(); #endif // GTEST_HAS_DEATH_TEST // Defines synchronization primitives. #if GTEST_IS_THREADSAFE # if GTEST_HAS_PTHREAD // Sleeps for (roughly) n milliseconds. This function is only for testing // Google Test's own constructs. Don't use it in user tests, either // directly or indirectly. inline void SleepMilliseconds(int n) { const timespec time = { 0, // 0 seconds. n * 1000L * 1000L, // And n ms. }; nanosleep(&time, nullptr); } # endif // GTEST_HAS_PTHREAD # if GTEST_HAS_NOTIFICATION_ // Notification has already been imported into the namespace. // Nothing to do here. # elif GTEST_HAS_PTHREAD // Allows a controller thread to pause execution of newly created // threads until notified. Instances of this class must be created // and destroyed in the controller thread. // // This class is only for testing Google Test's own constructs. Do not // use it in user tests, either directly or indirectly. class Notification { public: Notification() : notified_(false) { GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, nullptr)); } ~Notification() { pthread_mutex_destroy(&mutex_); } // Notifies all threads created with this notification to start. Must // be called from the controller thread. void Notify() { pthread_mutex_lock(&mutex_); notified_ = true; pthread_mutex_unlock(&mutex_); } // Blocks until the controller thread notifies. Must be called from a test // thread. void WaitForNotification() { for (;;) { pthread_mutex_lock(&mutex_); const bool notified = notified_; pthread_mutex_unlock(&mutex_); if (notified) break; SleepMilliseconds(10); } } private: pthread_mutex_t mutex_; bool notified_; GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); }; # elif GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT GTEST_API_ void SleepMilliseconds(int n); // Provides leak-safe Windows kernel handle ownership. // Used in death tests and in threading support. class GTEST_API_ AutoHandle { public: // Assume that Win32 HANDLE type is equivalent to void*. Doing so allows us to // avoid including in this header file. Including is // undesirable because it defines a lot of symbols and macros that tend to // conflict with client code. This assumption is verified by // WindowsTypesTest.HANDLEIsVoidStar. typedef void* Handle; AutoHandle(); explicit AutoHandle(Handle handle); ~AutoHandle(); Handle Get() const; void Reset(); void Reset(Handle handle); private: // Returns true if and only if the handle is a valid handle object that can be // closed. bool IsCloseable() const; Handle handle_; GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle); }; // Allows a controller thread to pause execution of newly created // threads until notified. Instances of this class must be created // and destroyed in the controller thread. // // This class is only for testing Google Test's own constructs. Do not // use it in user tests, either directly or indirectly. class GTEST_API_ Notification { public: Notification(); void Notify(); void WaitForNotification(); private: AutoHandle event_; GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification); }; # endif // GTEST_HAS_NOTIFICATION_ // On MinGW, we can have both GTEST_OS_WINDOWS and GTEST_HAS_PTHREAD // defined, but we don't want to use MinGW's pthreads implementation, which // has conformance problems with some versions of the POSIX standard. # if GTEST_HAS_PTHREAD && !GTEST_OS_WINDOWS_MINGW // As a C-function, ThreadFuncWithCLinkage cannot be templated itself. // Consequently, it cannot select a correct instantiation of ThreadWithParam // in order to call its Run(). Introducing ThreadWithParamBase as a // non-templated base class for ThreadWithParam allows us to bypass this // problem. class ThreadWithParamBase { public: virtual ~ThreadWithParamBase() {} virtual void Run() = 0; }; // pthread_create() accepts a pointer to a function type with the C linkage. // According to the Standard (7.5/1), function types with different linkages // are different even if they are otherwise identical. Some compilers (for // example, SunStudio) treat them as different types. Since class methods // cannot be defined with C-linkage we need to define a free C-function to // pass into pthread_create(). extern "C" inline void* ThreadFuncWithCLinkage(void* thread) { static_cast(thread)->Run(); return nullptr; } // Helper class for testing Google Test's multi-threading constructs. // To use it, write: // // void ThreadFunc(int param) { /* Do things with param */ } // Notification thread_can_start; // ... // // The thread_can_start parameter is optional; you can supply NULL. // ThreadWithParam thread(&ThreadFunc, 5, &thread_can_start); // thread_can_start.Notify(); // // These classes are only for testing Google Test's own constructs. Do // not use them in user tests, either directly or indirectly. template class ThreadWithParam : public ThreadWithParamBase { public: typedef void UserThreadFunc(T); ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) : func_(func), param_(param), thread_can_start_(thread_can_start), finished_(false) { ThreadWithParamBase* const base = this; // The thread can be created only after all fields except thread_ // have been initialized. GTEST_CHECK_POSIX_SUCCESS_( pthread_create(&thread_, nullptr, &ThreadFuncWithCLinkage, base)); } ~ThreadWithParam() override { Join(); } void Join() { if (!finished_) { GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, nullptr)); finished_ = true; } } void Run() override { if (thread_can_start_ != nullptr) thread_can_start_->WaitForNotification(); func_(param_); } private: UserThreadFunc* const func_; // User-supplied thread function. const T param_; // User-supplied parameter to the thread function. // When non-NULL, used to block execution until the controller thread // notifies. Notification* const thread_can_start_; bool finished_; // true if and only if we know that the thread function has // finished. pthread_t thread_; // The native thread object. GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam); }; # endif // !GTEST_OS_WINDOWS && GTEST_HAS_PTHREAD || // GTEST_HAS_MUTEX_AND_THREAD_LOCAL_ # if GTEST_HAS_MUTEX_AND_THREAD_LOCAL_ // Mutex and ThreadLocal have already been imported into the namespace. // Nothing to do here. # elif GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT // Mutex implements mutex on Windows platforms. It is used in conjunction // with class MutexLock: // // Mutex mutex; // ... // MutexLock lock(&mutex); // Acquires the mutex and releases it at the // // end of the current scope. // // A static Mutex *must* be defined or declared using one of the following // macros: // GTEST_DEFINE_STATIC_MUTEX_(g_some_mutex); // GTEST_DECLARE_STATIC_MUTEX_(g_some_mutex); // // (A non-static Mutex is defined/declared in the usual way). class GTEST_API_ Mutex { public: enum MutexType { kStatic = 0, kDynamic = 1 }; // We rely on kStaticMutex being 0 as it is to what the linker initializes // type_ in static mutexes. critical_section_ will be initialized lazily // in ThreadSafeLazyInit(). enum StaticConstructorSelector { kStaticMutex = 0 }; // This constructor intentionally does nothing. It relies on type_ being // statically initialized to 0 (effectively setting it to kStatic) and on // ThreadSafeLazyInit() to lazily initialize the rest of the members. explicit Mutex(StaticConstructorSelector /*dummy*/) {} Mutex(); ~Mutex(); void Lock(); void Unlock(); // Does nothing if the current thread holds the mutex. Otherwise, crashes // with high probability. void AssertHeld(); private: // Initializes owner_thread_id_ and critical_section_ in static mutexes. void ThreadSafeLazyInit(); // Per https://blogs.msdn.microsoft.com/oldnewthing/20040223-00/?p=40503, // we assume that 0 is an invalid value for thread IDs. unsigned int owner_thread_id_; // For static mutexes, we rely on these members being initialized to zeros // by the linker. MutexType type_; long critical_section_init_phase_; // NOLINT GTEST_CRITICAL_SECTION* critical_section_; GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex); }; # define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ extern ::testing::internal::Mutex mutex # define GTEST_DEFINE_STATIC_MUTEX_(mutex) \ ::testing::internal::Mutex mutex(::testing::internal::Mutex::kStaticMutex) // We cannot name this class MutexLock because the ctor declaration would // conflict with a macro named MutexLock, which is defined on some // platforms. That macro is used as a defensive measure to prevent against // inadvertent misuses of MutexLock like "MutexLock(&mu)" rather than // "MutexLock l(&mu)". Hence the typedef trick below. class GTestMutexLock { public: explicit GTestMutexLock(Mutex* mutex) : mutex_(mutex) { mutex_->Lock(); } ~GTestMutexLock() { mutex_->Unlock(); } private: Mutex* const mutex_; GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock); }; typedef GTestMutexLock MutexLock; // Base class for ValueHolder. Allows a caller to hold and delete a value // without knowing its type. class ThreadLocalValueHolderBase { public: virtual ~ThreadLocalValueHolderBase() {} }; // Provides a way for a thread to send notifications to a ThreadLocal // regardless of its parameter type. class ThreadLocalBase { public: // Creates a new ValueHolder object holding a default value passed to // this ThreadLocal's constructor and returns it. It is the caller's // responsibility not to call this when the ThreadLocal instance already // has a value on the current thread. virtual ThreadLocalValueHolderBase* NewValueForCurrentThread() const = 0; protected: ThreadLocalBase() {} virtual ~ThreadLocalBase() {} private: GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocalBase); }; // Maps a thread to a set of ThreadLocals that have values instantiated on that // thread and notifies them when the thread exits. A ThreadLocal instance is // expected to persist until all threads it has values on have terminated. class GTEST_API_ ThreadLocalRegistry { public: // Registers thread_local_instance as having value on the current thread. // Returns a value that can be used to identify the thread from other threads. static ThreadLocalValueHolderBase* GetValueOnCurrentThread( const ThreadLocalBase* thread_local_instance); // Invoked when a ThreadLocal instance is destroyed. static void OnThreadLocalDestroyed( const ThreadLocalBase* thread_local_instance); }; class GTEST_API_ ThreadWithParamBase { public: void Join(); protected: class Runnable { public: virtual ~Runnable() {} virtual void Run() = 0; }; ThreadWithParamBase(Runnable *runnable, Notification* thread_can_start); virtual ~ThreadWithParamBase(); private: AutoHandle thread_; }; // Helper class for testing Google Test's multi-threading constructs. template class ThreadWithParam : public ThreadWithParamBase { public: typedef void UserThreadFunc(T); ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) : ThreadWithParamBase(new RunnableImpl(func, param), thread_can_start) { } virtual ~ThreadWithParam() {} private: class RunnableImpl : public Runnable { public: RunnableImpl(UserThreadFunc* func, T param) : func_(func), param_(param) { } virtual ~RunnableImpl() {} virtual void Run() { func_(param_); } private: UserThreadFunc* const func_; const T param_; GTEST_DISALLOW_COPY_AND_ASSIGN_(RunnableImpl); }; GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam); }; // Implements thread-local storage on Windows systems. // // // Thread 1 // ThreadLocal tl(100); // 100 is the default value for each thread. // // // Thread 2 // tl.set(150); // Changes the value for thread 2 only. // EXPECT_EQ(150, tl.get()); // // // Thread 1 // EXPECT_EQ(100, tl.get()); // In thread 1, tl has the original value. // tl.set(200); // EXPECT_EQ(200, tl.get()); // // The template type argument T must have a public copy constructor. // In addition, the default ThreadLocal constructor requires T to have // a public default constructor. // // The users of a TheadLocal instance have to make sure that all but one // threads (including the main one) using that instance have exited before // destroying it. Otherwise, the per-thread objects managed for them by the // ThreadLocal instance are not guaranteed to be destroyed on all platforms. // // Google Test only uses global ThreadLocal objects. That means they // will die after main() has returned. Therefore, no per-thread // object managed by Google Test will be leaked as long as all threads // using Google Test have exited when main() returns. template class ThreadLocal : public ThreadLocalBase { public: ThreadLocal() : default_factory_(new DefaultValueHolderFactory()) {} explicit ThreadLocal(const T& value) : default_factory_(new InstanceValueHolderFactory(value)) {} ~ThreadLocal() { ThreadLocalRegistry::OnThreadLocalDestroyed(this); } T* pointer() { return GetOrCreateValue(); } const T* pointer() const { return GetOrCreateValue(); } const T& get() const { return *pointer(); } void set(const T& value) { *pointer() = value; } private: // Holds a value of T. Can be deleted via its base class without the caller // knowing the type of T. class ValueHolder : public ThreadLocalValueHolderBase { public: ValueHolder() : value_() {} explicit ValueHolder(const T& value) : value_(value) {} T* pointer() { return &value_; } private: T value_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder); }; T* GetOrCreateValue() const { return static_cast( ThreadLocalRegistry::GetValueOnCurrentThread(this))->pointer(); } virtual ThreadLocalValueHolderBase* NewValueForCurrentThread() const { return default_factory_->MakeNewHolder(); } class ValueHolderFactory { public: ValueHolderFactory() {} virtual ~ValueHolderFactory() {} virtual ValueHolder* MakeNewHolder() const = 0; private: GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolderFactory); }; class DefaultValueHolderFactory : public ValueHolderFactory { public: DefaultValueHolderFactory() {} ValueHolder* MakeNewHolder() const override { return new ValueHolder(); } private: GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultValueHolderFactory); }; class InstanceValueHolderFactory : public ValueHolderFactory { public: explicit InstanceValueHolderFactory(const T& value) : value_(value) {} ValueHolder* MakeNewHolder() const override { return new ValueHolder(value_); } private: const T value_; // The value for each thread. GTEST_DISALLOW_COPY_AND_ASSIGN_(InstanceValueHolderFactory); }; std::unique_ptr default_factory_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal); }; # elif GTEST_HAS_PTHREAD // MutexBase and Mutex implement mutex on pthreads-based platforms. class MutexBase { public: // Acquires this mutex. void Lock() { GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_)); owner_ = pthread_self(); has_owner_ = true; } // Releases this mutex. void Unlock() { // Since the lock is being released the owner_ field should no longer be // considered valid. We don't protect writing to has_owner_ here, as it's // the caller's responsibility to ensure that the current thread holds the // mutex when this is called. has_owner_ = false; GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_)); } // Does nothing if the current thread holds the mutex. Otherwise, crashes // with high probability. void AssertHeld() const { GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self())) << "The current thread is not holding the mutex @" << this; } // A static mutex may be used before main() is entered. It may even // be used before the dynamic initialization stage. Therefore we // must be able to initialize a static mutex object at link time. // This means MutexBase has to be a POD and its member variables // have to be public. public: pthread_mutex_t mutex_; // The underlying pthread mutex. // has_owner_ indicates whether the owner_ field below contains a valid thread // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All // accesses to the owner_ field should be protected by a check of this field. // An alternative might be to memset() owner_ to all zeros, but there's no // guarantee that a zero'd pthread_t is necessarily invalid or even different // from pthread_self(). bool has_owner_; pthread_t owner_; // The thread holding the mutex. }; // Forward-declares a static mutex. # define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ extern ::testing::internal::MutexBase mutex // Defines and statically (i.e. at link time) initializes a static mutex. // The initialization list here does not explicitly initialize each field, // instead relying on default initialization for the unspecified fields. In // particular, the owner_ field (a pthread_t) is not explicitly initialized. // This allows initialization to work whether pthread_t is a scalar or struct. // The flag -Wmissing-field-initializers must not be specified for this to work. #define GTEST_DEFINE_STATIC_MUTEX_(mutex) \ ::testing::internal::MutexBase mutex = {PTHREAD_MUTEX_INITIALIZER, false, 0} // The Mutex class can only be used for mutexes created at runtime. It // shares its API with MutexBase otherwise. class Mutex : public MutexBase { public: Mutex() { GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, nullptr)); has_owner_ = false; } ~Mutex() { GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&mutex_)); } private: GTEST_DISALLOW_COPY_AND_ASSIGN_(Mutex); }; // We cannot name this class MutexLock because the ctor declaration would // conflict with a macro named MutexLock, which is defined on some // platforms. That macro is used as a defensive measure to prevent against // inadvertent misuses of MutexLock like "MutexLock(&mu)" rather than // "MutexLock l(&mu)". Hence the typedef trick below. class GTestMutexLock { public: explicit GTestMutexLock(MutexBase* mutex) : mutex_(mutex) { mutex_->Lock(); } ~GTestMutexLock() { mutex_->Unlock(); } private: MutexBase* const mutex_; GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock); }; typedef GTestMutexLock MutexLock; // Helpers for ThreadLocal. // pthread_key_create() requires DeleteThreadLocalValue() to have // C-linkage. Therefore it cannot be templatized to access // ThreadLocal. Hence the need for class // ThreadLocalValueHolderBase. class ThreadLocalValueHolderBase { public: virtual ~ThreadLocalValueHolderBase() {} }; // Called by pthread to delete thread-local data stored by // pthread_setspecific(). extern "C" inline void DeleteThreadLocalValue(void* value_holder) { delete static_cast(value_holder); } // Implements thread-local storage on pthreads-based systems. template class GTEST_API_ ThreadLocal { public: ThreadLocal() : key_(CreateKey()), default_factory_(new DefaultValueHolderFactory()) {} explicit ThreadLocal(const T& value) : key_(CreateKey()), default_factory_(new InstanceValueHolderFactory(value)) {} ~ThreadLocal() { // Destroys the managed object for the current thread, if any. DeleteThreadLocalValue(pthread_getspecific(key_)); // Releases resources associated with the key. This will *not* // delete managed objects for other threads. GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_)); } T* pointer() { return GetOrCreateValue(); } const T* pointer() const { return GetOrCreateValue(); } const T& get() const { return *pointer(); } void set(const T& value) { *pointer() = value; } private: // Holds a value of type T. class ValueHolder : public ThreadLocalValueHolderBase { public: ValueHolder() : value_() {} explicit ValueHolder(const T& value) : value_(value) {} T* pointer() { return &value_; } private: T value_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder); }; static pthread_key_t CreateKey() { pthread_key_t key; // When a thread exits, DeleteThreadLocalValue() will be called on // the object managed for that thread. GTEST_CHECK_POSIX_SUCCESS_( pthread_key_create(&key, &DeleteThreadLocalValue)); return key; } T* GetOrCreateValue() const { ThreadLocalValueHolderBase* const holder = static_cast(pthread_getspecific(key_)); if (holder != nullptr) { return CheckedDowncastToActualType(holder)->pointer(); } ValueHolder* const new_holder = default_factory_->MakeNewHolder(); ThreadLocalValueHolderBase* const holder_base = new_holder; GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base)); return new_holder->pointer(); } class ValueHolderFactory { public: ValueHolderFactory() {} virtual ~ValueHolderFactory() {} virtual ValueHolder* MakeNewHolder() const = 0; private: GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolderFactory); }; class DefaultValueHolderFactory : public ValueHolderFactory { public: DefaultValueHolderFactory() {} ValueHolder* MakeNewHolder() const override { return new ValueHolder(); } private: GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultValueHolderFactory); }; class InstanceValueHolderFactory : public ValueHolderFactory { public: explicit InstanceValueHolderFactory(const T& value) : value_(value) {} ValueHolder* MakeNewHolder() const override { return new ValueHolder(value_); } private: const T value_; // The value for each thread. GTEST_DISALLOW_COPY_AND_ASSIGN_(InstanceValueHolderFactory); }; // A key pthreads uses for looking up per-thread values. const pthread_key_t key_; std::unique_ptr default_factory_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal); }; # endif // GTEST_HAS_MUTEX_AND_THREAD_LOCAL_ #else // GTEST_IS_THREADSAFE // A dummy implementation of synchronization primitives (mutex, lock, // and thread-local variable). Necessary for compiling Google Test where // mutex is not supported - using Google Test in multiple threads is not // supported on such platforms. class Mutex { public: Mutex() {} void Lock() {} void Unlock() {} void AssertHeld() const {} }; # define GTEST_DECLARE_STATIC_MUTEX_(mutex) \ extern ::testing::internal::Mutex mutex # define GTEST_DEFINE_STATIC_MUTEX_(mutex) ::testing::internal::Mutex mutex // We cannot name this class MutexLock because the ctor declaration would // conflict with a macro named MutexLock, which is defined on some // platforms. That macro is used as a defensive measure to prevent against // inadvertent misuses of MutexLock like "MutexLock(&mu)" rather than // "MutexLock l(&mu)". Hence the typedef trick below. class GTestMutexLock { public: explicit GTestMutexLock(Mutex*) {} // NOLINT }; typedef GTestMutexLock MutexLock; template class GTEST_API_ ThreadLocal { public: ThreadLocal() : value_() {} explicit ThreadLocal(const T& value) : value_(value) {} T* pointer() { return &value_; } const T* pointer() const { return &value_; } const T& get() const { return value_; } void set(const T& value) { value_ = value; } private: T value_; }; #endif // GTEST_IS_THREADSAFE // Returns the number of threads running in the process, or 0 to indicate that // we cannot detect it. GTEST_API_ size_t GetThreadCount(); #if GTEST_OS_WINDOWS # define GTEST_PATH_SEP_ "\\" # define GTEST_HAS_ALT_PATH_SEP_ 1 #else # define GTEST_PATH_SEP_ "/" # define GTEST_HAS_ALT_PATH_SEP_ 0 #endif // GTEST_OS_WINDOWS // Utilities for char. // isspace(int ch) and friends accept an unsigned char or EOF. char // may be signed, depending on the compiler (or compiler flags). // Therefore we need to cast a char to unsigned char before calling // isspace(), etc. inline bool IsAlpha(char ch) { return isalpha(static_cast(ch)) != 0; } inline bool IsAlNum(char ch) { return isalnum(static_cast(ch)) != 0; } inline bool IsDigit(char ch) { return isdigit(static_cast(ch)) != 0; } inline bool IsLower(char ch) { return islower(static_cast(ch)) != 0; } inline bool IsSpace(char ch) { return isspace(static_cast(ch)) != 0; } inline bool IsUpper(char ch) { return isupper(static_cast(ch)) != 0; } inline bool IsXDigit(char ch) { return isxdigit(static_cast(ch)) != 0; } #ifdef __cpp_char8_t inline bool IsXDigit(char8_t ch) { return isxdigit(static_cast(ch)) != 0; } #endif inline bool IsXDigit(char16_t ch) { const unsigned char low_byte = static_cast(ch); return ch == low_byte && isxdigit(low_byte) != 0; } inline bool IsXDigit(char32_t ch) { const unsigned char low_byte = static_cast(ch); return ch == low_byte && isxdigit(low_byte) != 0; } inline bool IsXDigit(wchar_t ch) { const unsigned char low_byte = static_cast(ch); return ch == low_byte && isxdigit(low_byte) != 0; } inline char ToLower(char ch) { return static_cast(tolower(static_cast(ch))); } inline char ToUpper(char ch) { return static_cast(toupper(static_cast(ch))); } inline std::string StripTrailingSpaces(std::string str) { std::string::iterator it = str.end(); while (it != str.begin() && IsSpace(*--it)) it = str.erase(it); return str; } // The testing::internal::posix namespace holds wrappers for common // POSIX functions. These wrappers hide the differences between // Windows/MSVC and POSIX systems. Since some compilers define these // standard functions as macros, the wrapper cannot have the same name // as the wrapped function. namespace posix { // Functions with a different name on Windows. #if GTEST_OS_WINDOWS typedef struct _stat StatStruct; # ifdef __BORLANDC__ inline int DoIsATTY(int fd) { return isatty(fd); } inline int StrCaseCmp(const char* s1, const char* s2) { return stricmp(s1, s2); } inline char* StrDup(const char* src) { return strdup(src); } # else // !__BORLANDC__ # if GTEST_OS_WINDOWS_MOBILE inline int DoIsATTY(int /* fd */) { return 0; } # else inline int DoIsATTY(int fd) { return _isatty(fd); } # endif // GTEST_OS_WINDOWS_MOBILE inline int StrCaseCmp(const char* s1, const char* s2) { return _stricmp(s1, s2); } inline char* StrDup(const char* src) { return _strdup(src); } # endif // __BORLANDC__ # if GTEST_OS_WINDOWS_MOBILE inline int FileNo(FILE* file) { return reinterpret_cast(_fileno(file)); } // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this // time and thus not defined there. # else inline int FileNo(FILE* file) { return _fileno(file); } inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); } inline int RmDir(const char* dir) { return _rmdir(dir); } inline bool IsDir(const StatStruct& st) { return (_S_IFDIR & st.st_mode) != 0; } # endif // GTEST_OS_WINDOWS_MOBILE #elif GTEST_OS_ESP8266 typedef struct stat StatStruct; inline int FileNo(FILE* file) { return fileno(file); } inline int DoIsATTY(int fd) { return isatty(fd); } inline int Stat(const char* path, StatStruct* buf) { // stat function not implemented on ESP8266 return 0; } inline int StrCaseCmp(const char* s1, const char* s2) { return strcasecmp(s1, s2); } inline char* StrDup(const char* src) { return strdup(src); } inline int RmDir(const char* dir) { return rmdir(dir); } inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); } #else typedef struct stat StatStruct; inline int FileNo(FILE* file) { return fileno(file); } inline int DoIsATTY(int fd) { return isatty(fd); } inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); } inline int StrCaseCmp(const char* s1, const char* s2) { return strcasecmp(s1, s2); } inline char* StrDup(const char* src) { return strdup(src); } inline int RmDir(const char* dir) { return rmdir(dir); } inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); } #endif // GTEST_OS_WINDOWS inline int IsATTY(int fd) { // DoIsATTY might change errno (for example ENOTTY in case you redirect stdout // to a file on Linux), which is unexpected, so save the previous value, and // restore it after the call. int savedErrno = errno; int isAttyValue = DoIsATTY(fd); errno = savedErrno; return isAttyValue; } // Functions deprecated by MSVC 8.0. GTEST_DISABLE_MSC_DEPRECATED_PUSH_() // ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and // StrError() aren't needed on Windows CE at this time and thus not // defined there. #if !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_WINDOWS_PHONE && \ !GTEST_OS_WINDOWS_RT && !GTEST_OS_ESP8266 && !GTEST_OS_XTENSA inline int ChDir(const char* dir) { return chdir(dir); } #endif inline FILE* FOpen(const char* path, const char* mode) { #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW struct wchar_codecvt : public std::codecvt {}; std::wstring_convert converter; std::wstring wide_path = converter.from_bytes(path); std::wstring wide_mode = converter.from_bytes(mode); return _wfopen(wide_path.c_str(), wide_mode.c_str()); #else // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW return fopen(path, mode); #endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW } #if !GTEST_OS_WINDOWS_MOBILE inline FILE *FReopen(const char* path, const char* mode, FILE* stream) { return freopen(path, mode, stream); } inline FILE* FDOpen(int fd, const char* mode) { return fdopen(fd, mode); } #endif inline int FClose(FILE* fp) { return fclose(fp); } #if !GTEST_OS_WINDOWS_MOBILE inline int Read(int fd, void* buf, unsigned int count) { return static_cast(read(fd, buf, count)); } inline int Write(int fd, const void* buf, unsigned int count) { return static_cast(write(fd, buf, count)); } inline int Close(int fd) { return close(fd); } inline const char* StrError(int errnum) { return strerror(errnum); } #endif inline const char* GetEnv(const char* name) { #if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || \ GTEST_OS_WINDOWS_RT || GTEST_OS_ESP8266 || GTEST_OS_XTENSA // We are on an embedded platform, which has no environment variables. static_cast(name); // To prevent 'unused argument' warning. return nullptr; #elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9) // Environment variables which we programmatically clear will be set to the // empty string rather than unset (NULL). Handle that case. const char* const env = getenv(name); return (env != nullptr && env[0] != '\0') ? env : nullptr; #else return getenv(name); #endif } GTEST_DISABLE_MSC_DEPRECATED_POP_() #if GTEST_OS_WINDOWS_MOBILE // Windows CE has no C library. The abort() function is used in // several places in Google Test. This implementation provides a reasonable // imitation of standard behaviour. [[noreturn]] void Abort(); #else [[noreturn]] inline void Abort() { abort(); } #endif // GTEST_OS_WINDOWS_MOBILE } // namespace posix // MSVC "deprecates" snprintf and issues warnings wherever it is used. In // order to avoid these warnings, we need to use _snprintf or _snprintf_s on // MSVC-based platforms. We map the GTEST_SNPRINTF_ macro to the appropriate // function in order to achieve that. We use macro definition here because // snprintf is a variadic function. #if _MSC_VER && !GTEST_OS_WINDOWS_MOBILE // MSVC 2005 and above support variadic macros. # define GTEST_SNPRINTF_(buffer, size, format, ...) \ _snprintf_s(buffer, size, size, format, __VA_ARGS__) #elif defined(_MSC_VER) // Windows CE does not define _snprintf_s # define GTEST_SNPRINTF_ _snprintf #else # define GTEST_SNPRINTF_ snprintf #endif // The biggest signed integer type the compiler supports. // // long long is guaranteed to be at least 64-bits in C++11. using BiggestInt = long long; // NOLINT // The maximum number a BiggestInt can represent. constexpr BiggestInt kMaxBiggestInt = (std::numeric_limits::max)(); // This template class serves as a compile-time function from size to // type. It maps a size in bytes to a primitive type with that // size. e.g. // // TypeWithSize<4>::UInt // // is typedef-ed to be unsigned int (unsigned integer made up of 4 // bytes). // // Such functionality should belong to STL, but I cannot find it // there. // // Google Test uses this class in the implementation of floating-point // comparison. // // For now it only handles UInt (unsigned int) as that's all Google Test // needs. Other types can be easily added in the future if need // arises. template class TypeWithSize { public: // This prevents the user from using TypeWithSize with incorrect // values of N. using UInt = void; }; // The specialization for size 4. template <> class TypeWithSize<4> { public: using Int = std::int32_t; using UInt = std::uint32_t; }; // The specialization for size 8. template <> class TypeWithSize<8> { public: using Int = std::int64_t; using UInt = std::uint64_t; }; // Integer types of known sizes. using TimeInMillis = int64_t; // Represents time in milliseconds. // Utilities for command line flags and environment variables. // Macro for referencing flags. #if !defined(GTEST_FLAG) # define GTEST_FLAG(name) FLAGS_gtest_##name #endif // !defined(GTEST_FLAG) #if !defined(GTEST_USE_OWN_FLAGFILE_FLAG_) # define GTEST_USE_OWN_FLAGFILE_FLAG_ 1 #endif // !defined(GTEST_USE_OWN_FLAGFILE_FLAG_) #if !defined(GTEST_DECLARE_bool_) # define GTEST_FLAG_SAVER_ ::testing::internal::GTestFlagSaver // Macros for declaring flags. # define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name) # define GTEST_DECLARE_int32_(name) \ GTEST_API_ extern std::int32_t GTEST_FLAG(name) # define GTEST_DECLARE_string_(name) \ GTEST_API_ extern ::std::string GTEST_FLAG(name) // Macros for defining flags. # define GTEST_DEFINE_bool_(name, default_val, doc) \ GTEST_API_ bool GTEST_FLAG(name) = (default_val) # define GTEST_DEFINE_int32_(name, default_val, doc) \ GTEST_API_ std::int32_t GTEST_FLAG(name) = (default_val) # define GTEST_DEFINE_string_(name, default_val, doc) \ GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val) #endif // !defined(GTEST_DECLARE_bool_) // Thread annotations #if !defined(GTEST_EXCLUSIVE_LOCK_REQUIRED_) # define GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks) # define GTEST_LOCK_EXCLUDED_(locks) #endif // !defined(GTEST_EXCLUSIVE_LOCK_REQUIRED_) // Parses 'str' for a 32-bit signed integer. If successful, writes the result // to *value and returns true; otherwise leaves *value unchanged and returns // false. GTEST_API_ bool ParseInt32(const Message& src_text, const char* str, int32_t* value); // Parses a bool/int32_t/string from the environment variable // corresponding to the given Google Test flag. bool BoolFromGTestEnv(const char* flag, bool default_val); GTEST_API_ int32_t Int32FromGTestEnv(const char* flag, int32_t default_val); std::string OutputFlagAlsoCheckEnvVar(); const char* StringFromGTestEnv(const char* flag, const char* default_val); } // namespace internal } // namespace testing #if !defined(GTEST_INTERNAL_DEPRECATED) // Internal Macro to mark an API deprecated, for googletest usage only // Usage: class GTEST_INTERNAL_DEPRECATED(message) MyClass or // GTEST_INTERNAL_DEPRECATED(message) myFunction(); Every usage of // a deprecated entity will trigger a warning when compiled with // `-Wdeprecated-declarations` option (clang, gcc, any __GNUC__ compiler). // For msvc /W3 option will need to be used // Note that for 'other' compilers this macro evaluates to nothing to prevent // compilations errors. #if defined(_MSC_VER) #define GTEST_INTERNAL_DEPRECATED(message) __declspec(deprecated(message)) #elif defined(__GNUC__) #define GTEST_INTERNAL_DEPRECATED(message) __attribute__((deprecated(message))) #else #define GTEST_INTERNAL_DEPRECATED(message) #endif #endif // !defined(GTEST_INTERNAL_DEPRECATED) #if GTEST_HAS_ABSL // Always use absl::any for UniversalPrinter<> specializations if googletest // is built with absl support. #define GTEST_INTERNAL_HAS_ANY 1 #include "absl/types/any.h" namespace testing { namespace internal { using Any = ::absl::any; } // namespace internal } // namespace testing #else #ifdef __has_include #if __has_include() && __cplusplus >= 201703L // Otherwise for C++17 and higher use std::any for UniversalPrinter<> // specializations. #define GTEST_INTERNAL_HAS_ANY 1 #include namespace testing { namespace internal { using Any = ::std::any; } // namespace internal } // namespace testing // The case where absl is configured NOT to alias std::any is not // supported. #endif // __has_include() && __cplusplus >= 201703L #endif // __has_include #endif // GTEST_HAS_ABSL #if GTEST_HAS_ABSL // Always use absl::optional for UniversalPrinter<> specializations if // googletest is built with absl support. #define GTEST_INTERNAL_HAS_OPTIONAL 1 #include "absl/types/optional.h" namespace testing { namespace internal { template using Optional = ::absl::optional; } // namespace internal } // namespace testing #else #ifdef __has_include #if __has_include() && __cplusplus >= 201703L // Otherwise for C++17 and higher use std::optional for UniversalPrinter<> // specializations. #define GTEST_INTERNAL_HAS_OPTIONAL 1 #include namespace testing { namespace internal { template using Optional = ::std::optional; } // namespace internal } // namespace testing // The case where absl is configured NOT to alias std::optional is not // supported. #endif // __has_include() && __cplusplus >= 201703L #endif // __has_include #endif // GTEST_HAS_ABSL #if GTEST_HAS_ABSL // Always use absl::string_view for Matcher<> specializations if googletest // is built with absl support. # define GTEST_INTERNAL_HAS_STRING_VIEW 1 #include "absl/strings/string_view.h" namespace testing { namespace internal { using StringView = ::absl::string_view; } // namespace internal } // namespace testing #else # ifdef __has_include # if __has_include() && __cplusplus >= 201703L // Otherwise for C++17 and higher use std::string_view for Matcher<> // specializations. # define GTEST_INTERNAL_HAS_STRING_VIEW 1 #include namespace testing { namespace internal { using StringView = ::std::string_view; } // namespace internal } // namespace testing // The case where absl is configured NOT to alias std::string_view is not // supported. # endif // __has_include() && __cplusplus >= 201703L # endif // __has_include #endif // GTEST_HAS_ABSL #if GTEST_HAS_ABSL // Always use absl::variant for UniversalPrinter<> specializations if googletest // is built with absl support. #define GTEST_INTERNAL_HAS_VARIANT 1 #include "absl/types/variant.h" namespace testing { namespace internal { template using Variant = ::absl::variant; } // namespace internal } // namespace testing #else #ifdef __has_include #if __has_include() && __cplusplus >= 201703L // Otherwise for C++17 and higher use std::variant for UniversalPrinter<> // specializations. #define GTEST_INTERNAL_HAS_VARIANT 1 #include namespace testing { namespace internal { template using Variant = ::std::variant; } // namespace internal } // namespace testing // The case where absl is configured NOT to alias std::variant is not supported. #endif // __has_include() && __cplusplus >= 201703L #endif // __has_include #endif // GTEST_HAS_ABSL #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-string.h ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) // // This header file declares the String class and functions used internally by // Google Test. They are subject to change without notice. They should not used // by code external to Google Test. // // This header file is #included by gtest-internal.h. // It should not be #included by other files. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ #ifdef __BORLANDC__ // string.h is not guaranteed to provide strcpy on C++ Builder. # include #endif #include #include #include #include "gtest/internal/gtest-port.h" namespace testing { namespace internal { // String - an abstract class holding static string utilities. class GTEST_API_ String { public: // Static utility methods // Clones a 0-terminated C string, allocating memory using new. The // caller is responsible for deleting the return value using // delete[]. Returns the cloned string, or NULL if the input is // NULL. // // This is different from strdup() in string.h, which allocates // memory using malloc(). static const char* CloneCString(const char* c_str); #if GTEST_OS_WINDOWS_MOBILE // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be // able to pass strings to Win32 APIs on CE we need to convert them // to 'Unicode', UTF-16. // Creates a UTF-16 wide string from the given ANSI string, allocating // memory using new. The caller is responsible for deleting the return // value using delete[]. Returns the wide string, or NULL if the // input is NULL. // // The wide string is created using the ANSI codepage (CP_ACP) to // match the behaviour of the ANSI versions of Win32 calls and the // C runtime. static LPCWSTR AnsiToUtf16(const char* c_str); // Creates an ANSI string from the given wide string, allocating // memory using new. The caller is responsible for deleting the return // value using delete[]. Returns the ANSI string, or NULL if the // input is NULL. // // The returned string is created using the ANSI codepage (CP_ACP) to // match the behaviour of the ANSI versions of Win32 calls and the // C runtime. static const char* Utf16ToAnsi(LPCWSTR utf16_str); #endif // Compares two C strings. Returns true if and only if they have the same // content. // // Unlike strcmp(), this function can handle NULL argument(s). A // NULL C string is considered different to any non-NULL C string, // including the empty string. static bool CStringEquals(const char* lhs, const char* rhs); // Converts a wide C string to a String using the UTF-8 encoding. // NULL will be converted to "(null)". If an error occurred during // the conversion, "(failed to convert from wide string)" is // returned. static std::string ShowWideCString(const wchar_t* wide_c_str); // Compares two wide C strings. Returns true if and only if they have the // same content. // // Unlike wcscmp(), this function can handle NULL argument(s). A // NULL C string is considered different to any non-NULL C string, // including the empty string. static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); // Compares two C strings, ignoring case. Returns true if and only if // they have the same content. // // Unlike strcasecmp(), this function can handle NULL argument(s). // A NULL C string is considered different to any non-NULL C string, // including the empty string. static bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs); // Compares two wide C strings, ignoring case. Returns true if and only if // they have the same content. // // Unlike wcscasecmp(), this function can handle NULL argument(s). // A NULL C string is considered different to any non-NULL wide C string, // including the empty string. // NB: The implementations on different platforms slightly differ. // On windows, this method uses _wcsicmp which compares according to LC_CTYPE // environment variable. On GNU platform this method uses wcscasecmp // which compares according to LC_CTYPE category of the current locale. // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the // current locale. static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs, const wchar_t* rhs); // Returns true if and only if the given string ends with the given suffix, // ignoring case. Any string is considered to end with an empty suffix. static bool EndsWithCaseInsensitive( const std::string& str, const std::string& suffix); // Formats an int value as "%02d". static std::string FormatIntWidth2(int value); // "%02d" for width == 2 // Formats an int value to given width with leading zeros. static std::string FormatIntWidthN(int value, int width); // Formats an int value as "%X". static std::string FormatHexInt(int value); // Formats an int value as "%X". static std::string FormatHexUInt32(uint32_t value); // Formats a byte as "%02X". static std::string FormatByte(unsigned char value); private: String(); // Not meant to be instantiated. }; // class String // Gets the content of the stringstream's buffer as an std::string. Each '\0' // character in the buffer is replaced with "\\0". GTEST_API_ std::string StringStreamToString(::std::stringstream* stream); } // namespace internal } // namespace testing #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-tuple.h ================================================ // This file was GENERATED by command: // pump.py gtest-tuple.h.pump // DO NOT EDIT BY HAND!!! // Copyright 2009 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Author: wan@google.com (Zhanyong Wan) // Implements a subset of TR1 tuple needed by Google Test and Google Mock. #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ #include // For ::std::pair. // The compiler used in Symbian has a bug that prevents us from declaring the // tuple template as a friend (it complains that tuple is redefined). This // hack bypasses the bug by declaring the members that should otherwise be // private as public. // Sun Studio versions < 12 also have the above bug. #if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) # define GTEST_DECLARE_TUPLE_AS_FRIEND_ public: #else # define GTEST_DECLARE_TUPLE_AS_FRIEND_ \ template friend class tuple; \ private: #endif // Visual Studio 2010, 2012, and 2013 define symbols in std::tr1 that conflict // with our own definitions. Therefore using our own tuple does not work on // those compilers. #if defined(_MSC_VER) && _MSC_VER >= 1600 /* 1600 is Visual Studio 2010 */ # error "gtest's tuple doesn't compile on Visual Studio 2010 or later. \ GTEST_USE_OWN_TR1_TUPLE must be set to 0 on those compilers." #endif // GTEST_n_TUPLE_(T) is the type of an n-tuple. #define GTEST_0_TUPLE_(T) tuple<> #define GTEST_1_TUPLE_(T) tuple #define GTEST_2_TUPLE_(T) tuple #define GTEST_3_TUPLE_(T) tuple #define GTEST_4_TUPLE_(T) tuple #define GTEST_5_TUPLE_(T) tuple #define GTEST_6_TUPLE_(T) tuple #define GTEST_7_TUPLE_(T) tuple #define GTEST_8_TUPLE_(T) tuple #define GTEST_9_TUPLE_(T) tuple #define GTEST_10_TUPLE_(T) tuple // GTEST_n_TYPENAMES_(T) declares a list of n typenames. #define GTEST_0_TYPENAMES_(T) #define GTEST_1_TYPENAMES_(T) typename T##0 #define GTEST_2_TYPENAMES_(T) typename T##0, typename T##1 #define GTEST_3_TYPENAMES_(T) typename T##0, typename T##1, typename T##2 #define GTEST_4_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3 #define GTEST_5_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4 #define GTEST_6_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5 #define GTEST_7_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5, typename T##6 #define GTEST_8_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5, typename T##6, typename T##7 #define GTEST_9_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5, typename T##6, \ typename T##7, typename T##8 #define GTEST_10_TYPENAMES_(T) typename T##0, typename T##1, typename T##2, \ typename T##3, typename T##4, typename T##5, typename T##6, \ typename T##7, typename T##8, typename T##9 // In theory, defining stuff in the ::std namespace is undefined // behavior. We can do this as we are playing the role of a standard // library vendor. namespace std { namespace tr1 { template class tuple; // Anything in namespace gtest_internal is Google Test's INTERNAL // IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code. namespace gtest_internal { // ByRef::type is T if T is a reference; otherwise it's const T&. template struct ByRef { typedef const T& type; }; // NOLINT template struct ByRef { typedef T& type; }; // NOLINT // A handy wrapper for ByRef. #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef::type // AddRef::type is T if T is a reference; otherwise it's T&. This // is the same as tr1::add_reference::type. template struct AddRef { typedef T& type; }; // NOLINT template struct AddRef { typedef T& type; }; // NOLINT // A handy wrapper for AddRef. #define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef::type // A helper for implementing get(). template class Get; // A helper for implementing tuple_element. kIndexValid is true // iff k < the number of fields in tuple type T. template struct TupleElement; template struct TupleElement { typedef T0 type; }; template struct TupleElement { typedef T1 type; }; template struct TupleElement { typedef T2 type; }; template struct TupleElement { typedef T3 type; }; template struct TupleElement { typedef T4 type; }; template struct TupleElement { typedef T5 type; }; template struct TupleElement { typedef T6 type; }; template struct TupleElement { typedef T7 type; }; template struct TupleElement { typedef T8 type; }; template struct TupleElement { typedef T9 type; }; } // namespace gtest_internal template <> class tuple<> { public: tuple() {} tuple(const tuple& /* t */) {} tuple& operator=(const tuple& /* t */) { return *this; } }; template class GTEST_1_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_() {} explicit tuple(GTEST_BY_REF_(T0) f0) : f0_(f0) {} tuple(const tuple& t) : f0_(t.f0_) {} template tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_1_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { f0_ = t.f0_; return *this; } T0 f0_; }; template class GTEST_2_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1) : f0_(f0), f1_(f1) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} template tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} template tuple(const ::std::pair& p) : f0_(p.first), f1_(p.second) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_2_TUPLE_(U)& t) { return CopyFrom(t); } template tuple& operator=(const ::std::pair& p) { f0_ = p.first; f1_ = p.second; return *this; } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_2_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; return *this; } T0 f0_; T1 f1_; }; template class GTEST_3_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2) : f0_(f0), f1_(f1), f2_(f2) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} template tuple(const GTEST_3_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_3_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_3_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; return *this; } T0 f0_; T1 f1_; T2 f2_; }; template class GTEST_4_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3) : f0_(f0), f1_(f1), f2_(f2), f3_(f3) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} template tuple(const GTEST_4_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_4_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_4_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; }; template class GTEST_5_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_) {} template tuple(const GTEST_5_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_5_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_5_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; }; template class GTEST_6_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {} template tuple(const GTEST_6_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_6_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_6_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; }; template class GTEST_7_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5), f6_(f6) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} template tuple(const GTEST_7_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_7_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_7_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; f6_ = t.f6_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; T6 f6_; }; template class GTEST_8_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} template tuple(const GTEST_8_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_8_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_8_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; f6_ = t.f6_; f7_ = t.f7_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; T6 f6_; T7 f7_; }; template class GTEST_9_TUPLE_(T) { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, GTEST_BY_REF_(T8) f8) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} template tuple(const GTEST_9_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_9_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_9_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; f6_ = t.f6_; f7_ = t.f7_; f8_ = t.f8_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; T6 f6_; T7 f7_; T8 f8_; }; template class tuple { public: template friend class gtest_internal::Get; tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_(), f6_(), f7_(), f8_(), f9_() {} explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1, GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4, GTEST_BY_REF_(T5) f5, GTEST_BY_REF_(T6) f6, GTEST_BY_REF_(T7) f7, GTEST_BY_REF_(T8) f8, GTEST_BY_REF_(T9) f9) : f0_(f0), f1_(f1), f2_(f2), f3_(f3), f4_(f4), f5_(f5), f6_(f6), f7_(f7), f8_(f8), f9_(f9) {} tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {} template tuple(const GTEST_10_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_), f2_(t.f2_), f3_(t.f3_), f4_(t.f4_), f5_(t.f5_), f6_(t.f6_), f7_(t.f7_), f8_(t.f8_), f9_(t.f9_) {} tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_10_TUPLE_(U)& t) { return CopyFrom(t); } GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_10_TUPLE_(U)& t) { f0_ = t.f0_; f1_ = t.f1_; f2_ = t.f2_; f3_ = t.f3_; f4_ = t.f4_; f5_ = t.f5_; f6_ = t.f6_; f7_ = t.f7_; f8_ = t.f8_; f9_ = t.f9_; return *this; } T0 f0_; T1 f1_; T2 f2_; T3 f3_; T4 f4_; T5 f5_; T6 f6_; T7 f7_; T8 f8_; T9 f9_; }; // 6.1.3.2 Tuple creation functions. // Known limitations: we don't support passing an // std::tr1::reference_wrapper to make_tuple(). And we don't // implement tie(). inline tuple<> make_tuple() { return tuple<>(); } template inline GTEST_1_TUPLE_(T) make_tuple(const T0& f0) { return GTEST_1_TUPLE_(T)(f0); } template inline GTEST_2_TUPLE_(T) make_tuple(const T0& f0, const T1& f1) { return GTEST_2_TUPLE_(T)(f0, f1); } template inline GTEST_3_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2) { return GTEST_3_TUPLE_(T)(f0, f1, f2); } template inline GTEST_4_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3) { return GTEST_4_TUPLE_(T)(f0, f1, f2, f3); } template inline GTEST_5_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4) { return GTEST_5_TUPLE_(T)(f0, f1, f2, f3, f4); } template inline GTEST_6_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5) { return GTEST_6_TUPLE_(T)(f0, f1, f2, f3, f4, f5); } template inline GTEST_7_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6) { return GTEST_7_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6); } template inline GTEST_8_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7) { return GTEST_8_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7); } template inline GTEST_9_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8) { return GTEST_9_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8); } template inline GTEST_10_TUPLE_(T) make_tuple(const T0& f0, const T1& f1, const T2& f2, const T3& f3, const T4& f4, const T5& f5, const T6& f6, const T7& f7, const T8& f8, const T9& f9) { return GTEST_10_TUPLE_(T)(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9); } // 6.1.3.3 Tuple helper classes. template struct tuple_size; template struct tuple_size { static const int value = 0; }; template struct tuple_size { static const int value = 1; }; template struct tuple_size { static const int value = 2; }; template struct tuple_size { static const int value = 3; }; template struct tuple_size { static const int value = 4; }; template struct tuple_size { static const int value = 5; }; template struct tuple_size { static const int value = 6; }; template struct tuple_size { static const int value = 7; }; template struct tuple_size { static const int value = 8; }; template struct tuple_size { static const int value = 9; }; template struct tuple_size { static const int value = 10; }; template struct tuple_element { typedef typename gtest_internal::TupleElement< k < (tuple_size::value), k, Tuple>::type type; }; #define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element::type // 6.1.3.4 Element access. namespace gtest_internal { template <> class Get<0> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) Field(Tuple& t) { return t.f0_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(0, Tuple)) ConstField(const Tuple& t) { return t.f0_; } }; template <> class Get<1> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) Field(Tuple& t) { return t.f1_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(1, Tuple)) ConstField(const Tuple& t) { return t.f1_; } }; template <> class Get<2> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) Field(Tuple& t) { return t.f2_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(2, Tuple)) ConstField(const Tuple& t) { return t.f2_; } }; template <> class Get<3> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) Field(Tuple& t) { return t.f3_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(3, Tuple)) ConstField(const Tuple& t) { return t.f3_; } }; template <> class Get<4> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) Field(Tuple& t) { return t.f4_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(4, Tuple)) ConstField(const Tuple& t) { return t.f4_; } }; template <> class Get<5> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) Field(Tuple& t) { return t.f5_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(5, Tuple)) ConstField(const Tuple& t) { return t.f5_; } }; template <> class Get<6> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) Field(Tuple& t) { return t.f6_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(6, Tuple)) ConstField(const Tuple& t) { return t.f6_; } }; template <> class Get<7> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) Field(Tuple& t) { return t.f7_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(7, Tuple)) ConstField(const Tuple& t) { return t.f7_; } }; template <> class Get<8> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) Field(Tuple& t) { return t.f8_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(8, Tuple)) ConstField(const Tuple& t) { return t.f8_; } }; template <> class Get<9> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) Field(Tuple& t) { return t.f9_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(9, Tuple)) ConstField(const Tuple& t) { return t.f9_; } }; } // namespace gtest_internal template GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) get(GTEST_10_TUPLE_(T)& t) { return gtest_internal::Get::Field(t); } template GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_10_TUPLE_(T))) get(const GTEST_10_TUPLE_(T)& t) { return gtest_internal::Get::ConstField(t); } // 6.1.3.5 Relational operators // We only implement == and !=, as we don't have a need for the rest yet. namespace gtest_internal { // SameSizeTuplePrefixComparator::Eq(t1, t2) returns true if the // first k fields of t1 equals the first k fields of t2. // SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if // k1 != k2. template struct SameSizeTuplePrefixComparator; template <> struct SameSizeTuplePrefixComparator<0, 0> { template static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) { return true; } }; template struct SameSizeTuplePrefixComparator { template static bool Eq(const Tuple1& t1, const Tuple2& t2) { return SameSizeTuplePrefixComparator::Eq(t1, t2) && ::std::tr1::get(t1) == ::std::tr1::get(t2); } }; } // namespace gtest_internal template inline bool operator==(const GTEST_10_TUPLE_(T)& t, const GTEST_10_TUPLE_(U)& u) { return gtest_internal::SameSizeTuplePrefixComparator< tuple_size::value, tuple_size::value>::Eq(t, u); } template inline bool operator!=(const GTEST_10_TUPLE_(T)& t, const GTEST_10_TUPLE_(U)& u) { return !(t == u); } // 6.1.4 Pairs. // Unimplemented. } // namespace tr1 } // namespace std #undef GTEST_0_TUPLE_ #undef GTEST_1_TUPLE_ #undef GTEST_2_TUPLE_ #undef GTEST_3_TUPLE_ #undef GTEST_4_TUPLE_ #undef GTEST_5_TUPLE_ #undef GTEST_6_TUPLE_ #undef GTEST_7_TUPLE_ #undef GTEST_8_TUPLE_ #undef GTEST_9_TUPLE_ #undef GTEST_10_TUPLE_ #undef GTEST_0_TYPENAMES_ #undef GTEST_1_TYPENAMES_ #undef GTEST_2_TYPENAMES_ #undef GTEST_3_TYPENAMES_ #undef GTEST_4_TYPENAMES_ #undef GTEST_5_TYPENAMES_ #undef GTEST_6_TYPENAMES_ #undef GTEST_7_TYPENAMES_ #undef GTEST_8_TYPENAMES_ #undef GTEST_9_TYPENAMES_ #undef GTEST_10_TYPENAMES_ #undef GTEST_DECLARE_TUPLE_AS_FRIEND_ #undef GTEST_BY_REF_ #undef GTEST_ADD_REF_ #undef GTEST_TUPLE_ELEMENT_ #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-tuple.h.pump ================================================ $$ -*- mode: c++; -*- $var n = 10 $$ Maximum number of tuple fields we want to support. $$ This meta comment fixes auto-indentation in Emacs. }} // Copyright 2009 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Author: wan@google.com (Zhanyong Wan) // Implements a subset of TR1 tuple needed by Google Test and Google Mock. #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ #include // For ::std::pair. // The compiler used in Symbian has a bug that prevents us from declaring the // tuple template as a friend (it complains that tuple is redefined). This // hack bypasses the bug by declaring the members that should otherwise be // private as public. // Sun Studio versions < 12 also have the above bug. #if defined(__SYMBIAN32__) || (defined(__SUNPRO_CC) && __SUNPRO_CC < 0x590) # define GTEST_DECLARE_TUPLE_AS_FRIEND_ public: #else # define GTEST_DECLARE_TUPLE_AS_FRIEND_ \ template friend class tuple; \ private: #endif // Visual Studio 2010, 2012, and 2013 define symbols in std::tr1 that conflict // with our own definitions. Therefore using our own tuple does not work on // those compilers. #if defined(_MSC_VER) && _MSC_VER >= 1600 /* 1600 is Visual Studio 2010 */ # error "gtest's tuple doesn't compile on Visual Studio 2010 or later. \ GTEST_USE_OWN_TR1_TUPLE must be set to 0 on those compilers." #endif $range i 0..n-1 $range j 0..n $range k 1..n // GTEST_n_TUPLE_(T) is the type of an n-tuple. #define GTEST_0_TUPLE_(T) tuple<> $for k [[ $range m 0..k-1 $range m2 k..n-1 #define GTEST_$(k)_TUPLE_(T) tuple<$for m, [[T##$m]]$for m2 [[, void]]> ]] // GTEST_n_TYPENAMES_(T) declares a list of n typenames. $for j [[ $range m 0..j-1 #define GTEST_$(j)_TYPENAMES_(T) $for m, [[typename T##$m]] ]] // In theory, defining stuff in the ::std namespace is undefined // behavior. We can do this as we are playing the role of a standard // library vendor. namespace std { namespace tr1 { template <$for i, [[typename T$i = void]]> class tuple; // Anything in namespace gtest_internal is Google Test's INTERNAL // IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code. namespace gtest_internal { // ByRef::type is T if T is a reference; otherwise it's const T&. template struct ByRef { typedef const T& type; }; // NOLINT template struct ByRef { typedef T& type; }; // NOLINT // A handy wrapper for ByRef. #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef::type // AddRef::type is T if T is a reference; otherwise it's T&. This // is the same as tr1::add_reference::type. template struct AddRef { typedef T& type; }; // NOLINT template struct AddRef { typedef T& type; }; // NOLINT // A handy wrapper for AddRef. #define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef::type // A helper for implementing get(). template class Get; // A helper for implementing tuple_element. kIndexValid is true // iff k < the number of fields in tuple type T. template struct TupleElement; $for i [[ template struct TupleElement { typedef T$i type; }; ]] } // namespace gtest_internal template <> class tuple<> { public: tuple() {} tuple(const tuple& /* t */) {} tuple& operator=(const tuple& /* t */) { return *this; } }; $for k [[ $range m 0..k-1 template class $if k < n [[GTEST_$(k)_TUPLE_(T)]] $else [[tuple]] { public: template friend class gtest_internal::Get; tuple() : $for m, [[f$(m)_()]] {} explicit tuple($for m, [[GTEST_BY_REF_(T$m) f$m]]) : [[]] $for m, [[f$(m)_(f$m)]] {} tuple(const tuple& t) : $for m, [[f$(m)_(t.f$(m)_)]] {} template tuple(const GTEST_$(k)_TUPLE_(U)& t) : $for m, [[f$(m)_(t.f$(m)_)]] {} $if k == 2 [[ template tuple(const ::std::pair& p) : f0_(p.first), f1_(p.second) {} ]] tuple& operator=(const tuple& t) { return CopyFrom(t); } template tuple& operator=(const GTEST_$(k)_TUPLE_(U)& t) { return CopyFrom(t); } $if k == 2 [[ template tuple& operator=(const ::std::pair& p) { f0_ = p.first; f1_ = p.second; return *this; } ]] GTEST_DECLARE_TUPLE_AS_FRIEND_ template tuple& CopyFrom(const GTEST_$(k)_TUPLE_(U)& t) { $for m [[ f$(m)_ = t.f$(m)_; ]] return *this; } $for m [[ T$m f$(m)_; ]] }; ]] // 6.1.3.2 Tuple creation functions. // Known limitations: we don't support passing an // std::tr1::reference_wrapper to make_tuple(). And we don't // implement tie(). inline tuple<> make_tuple() { return tuple<>(); } $for k [[ $range m 0..k-1 template inline GTEST_$(k)_TUPLE_(T) make_tuple($for m, [[const T$m& f$m]]) { return GTEST_$(k)_TUPLE_(T)($for m, [[f$m]]); } ]] // 6.1.3.3 Tuple helper classes. template struct tuple_size; $for j [[ template struct tuple_size { static const int value = $j; }; ]] template struct tuple_element { typedef typename gtest_internal::TupleElement< k < (tuple_size::value), k, Tuple>::type type; }; #define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element::type // 6.1.3.4 Element access. namespace gtest_internal { $for i [[ template <> class Get<$i> { public: template static GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_($i, Tuple)) Field(Tuple& t) { return t.f$(i)_; } // NOLINT template static GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_($i, Tuple)) ConstField(const Tuple& t) { return t.f$(i)_; } }; ]] } // namespace gtest_internal template GTEST_ADD_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_$(n)_TUPLE_(T))) get(GTEST_$(n)_TUPLE_(T)& t) { return gtest_internal::Get::Field(t); } template GTEST_BY_REF_(GTEST_TUPLE_ELEMENT_(k, GTEST_$(n)_TUPLE_(T))) get(const GTEST_$(n)_TUPLE_(T)& t) { return gtest_internal::Get::ConstField(t); } // 6.1.3.5 Relational operators // We only implement == and !=, as we don't have a need for the rest yet. namespace gtest_internal { // SameSizeTuplePrefixComparator::Eq(t1, t2) returns true if the // first k fields of t1 equals the first k fields of t2. // SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if // k1 != k2. template struct SameSizeTuplePrefixComparator; template <> struct SameSizeTuplePrefixComparator<0, 0> { template static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) { return true; } }; template struct SameSizeTuplePrefixComparator { template static bool Eq(const Tuple1& t1, const Tuple2& t2) { return SameSizeTuplePrefixComparator::Eq(t1, t2) && ::std::tr1::get(t1) == ::std::tr1::get(t2); } }; } // namespace gtest_internal template inline bool operator==(const GTEST_$(n)_TUPLE_(T)& t, const GTEST_$(n)_TUPLE_(U)& u) { return gtest_internal::SameSizeTuplePrefixComparator< tuple_size::value, tuple_size::value>::Eq(t, u); } template inline bool operator!=(const GTEST_$(n)_TUPLE_(T)& t, const GTEST_$(n)_TUPLE_(U)& u) { return !(t == u); } // 6.1.4 Pairs. // Unimplemented. } // namespace tr1 } // namespace std $for j [[ #undef GTEST_$(j)_TUPLE_ ]] $for j [[ #undef GTEST_$(j)_TYPENAMES_ ]] #undef GTEST_DECLARE_TUPLE_AS_FRIEND_ #undef GTEST_BY_REF_ #undef GTEST_ADD_REF_ #undef GTEST_TUPLE_ELEMENT_ #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-type-util.h ================================================ // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Type utilities needed for implementing typed and type-parameterized // tests. // GOOGLETEST_CM0001 DO NOT DELETE #ifndef GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ #define GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ #include "gtest/internal/gtest-port.h" // #ifdef __GNUC__ is too general here. It is possible to use gcc without using // libstdc++ (which is where cxxabi.h comes from). # if GTEST_HAS_CXXABI_H_ # include # elif defined(__HP_aCC) # include # endif // GTEST_HASH_CXXABI_H_ namespace testing { namespace internal { // Canonicalizes a given name with respect to the Standard C++ Library. // This handles removing the inline namespace within `std` that is // used by various standard libraries (e.g., `std::__1`). Names outside // of namespace std are returned unmodified. inline std::string CanonicalizeForStdLibVersioning(std::string s) { static const char prefix[] = "std::__"; if (s.compare(0, strlen(prefix), prefix) == 0) { std::string::size_type end = s.find("::", strlen(prefix)); if (end != s.npos) { // Erase everything between the initial `std` and the second `::`. s.erase(strlen("std"), end - strlen("std")); } } return s; } #if GTEST_HAS_RTTI // GetTypeName(const std::type_info&) returns a human-readable name of type T. inline std::string GetTypeName(const std::type_info& type) { const char* const name = type.name(); #if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC) int status = 0; // gcc's implementation of typeid(T).name() mangles the type name, // so we have to demangle it. #if GTEST_HAS_CXXABI_H_ using abi::__cxa_demangle; #endif // GTEST_HAS_CXXABI_H_ char* const readable_name = __cxa_demangle(name, nullptr, nullptr, &status); const std::string name_str(status == 0 ? readable_name : name); free(readable_name); return CanonicalizeForStdLibVersioning(name_str); #else return name; #endif // GTEST_HAS_CXXABI_H_ || __HP_aCC } #endif // GTEST_HAS_RTTI // GetTypeName() returns a human-readable name of type T if and only if // RTTI is enabled, otherwise it returns a dummy type name. // NB: This function is also used in Google Mock, so don't move it inside of // the typed-test-only section below. template std::string GetTypeName() { #if GTEST_HAS_RTTI return GetTypeName(typeid(T)); #else return ""; #endif // GTEST_HAS_RTTI } // A unique type indicating an empty node struct None {}; # define GTEST_TEMPLATE_ template class // The template "selector" struct TemplateSel is used to // represent Tmpl, which must be a class template with one type // parameter, as a type. TemplateSel::Bind::type is defined // as the type Tmpl. This allows us to actually instantiate the // template "selected" by TemplateSel. // // This trick is necessary for simulating typedef for class templates, // which C++ doesn't support directly. template struct TemplateSel { template struct Bind { typedef Tmpl type; }; }; # define GTEST_BIND_(TmplSel, T) \ TmplSel::template Bind::type template struct Templates { using Head = TemplateSel; using Tail = Templates; }; template struct Templates { using Head = TemplateSel; using Tail = None; }; // Tuple-like type lists template struct Types { using Head = Head_; using Tail = Types; }; template struct Types { using Head = Head_; using Tail = None; }; // Helper metafunctions to tell apart a single type from types // generated by ::testing::Types template struct ProxyTypeList { using type = Types; }; template struct is_proxy_type_list : std::false_type {}; template struct is_proxy_type_list> : std::true_type {}; // Generator which conditionally creates type lists. // It recognizes if a requested type list should be created // and prevents creating a new type list nested within another one. template struct GenerateTypeList { private: using proxy = typename std::conditional::value, T, ProxyTypeList>::type; public: using type = typename proxy::type; }; } // namespace internal template using Types = internal::ProxyTypeList; } // namespace testing #endif // GOOGLETEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ ================================================ FILE: test/gtest/include/gtest/internal/gtest-type-util.h.pump ================================================ $$ -*- mode: c++; -*- $var n = 50 $$ Maximum length of type lists we want to support. // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Author: wan@google.com (Zhanyong Wan) // Type utilities needed for implementing typed and type-parameterized // tests. This file is generated by a SCRIPT. DO NOT EDIT BY HAND! // // Currently we support at most $n types in a list, and at most $n // type-parameterized tests in one type-parameterized test case. // Please contact googletestframework@googlegroups.com if you need // more. #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ #include "gtest/internal/gtest-port.h" // #ifdef __GNUC__ is too general here. It is possible to use gcc without using // libstdc++ (which is where cxxabi.h comes from). # if GTEST_HAS_CXXABI_H_ # include # elif defined(__HP_aCC) # include # endif // GTEST_HASH_CXXABI_H_ namespace testing { namespace internal { // GetTypeName() returns a human-readable name of type T. // NB: This function is also used in Google Mock, so don't move it inside of // the typed-test-only section below. template std::string GetTypeName() { # if GTEST_HAS_RTTI const char* const name = typeid(T).name(); # if GTEST_HAS_CXXABI_H_ || defined(__HP_aCC) int status = 0; // gcc's implementation of typeid(T).name() mangles the type name, // so we have to demangle it. # if GTEST_HAS_CXXABI_H_ using abi::__cxa_demangle; # endif // GTEST_HAS_CXXABI_H_ char* const readable_name = __cxa_demangle(name, 0, 0, &status); const std::string name_str(status == 0 ? readable_name : name); free(readable_name); return name_str; # else return name; # endif // GTEST_HAS_CXXABI_H_ || __HP_aCC # else return ""; # endif // GTEST_HAS_RTTI } #if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P // AssertyTypeEq::type is defined iff T1 and T2 are the same // type. This can be used as a compile-time assertion to ensure that // two types are equal. template struct AssertTypeEq; template struct AssertTypeEq { typedef bool type; }; // A unique type used as the default value for the arguments of class // template Types. This allows us to simulate variadic templates // (e.g. Types, Type, and etc), which C++ doesn't // support directly. struct None {}; // The following family of struct and struct templates are used to // represent type lists. In particular, TypesN // represents a type list with N types (T1, T2, ..., and TN) in it. // Except for Types0, every struct in the family has two member types: // Head for the first type in the list, and Tail for the rest of the // list. // The empty type list. struct Types0 {}; // Type lists of length 1, 2, 3, and so on. template struct Types1 { typedef T1 Head; typedef Types0 Tail; }; $range i 2..n $for i [[ $range j 1..i $range k 2..i template <$for j, [[typename T$j]]> struct Types$i { typedef T1 Head; typedef Types$(i-1)<$for k, [[T$k]]> Tail; }; ]] } // namespace internal // We don't want to require the users to write TypesN<...> directly, // as that would require them to count the length. Types<...> is much // easier to write, but generates horrible messages when there is a // compiler error, as gcc insists on printing out each template // argument, even if it has the default value (this means Types // will appear as Types in the compiler // errors). // // Our solution is to combine the best part of the two approaches: a // user would write Types, and Google Test will translate // that to TypesN internally to make error messages // readable. The translation is done by the 'type' member of the // Types template. $range i 1..n template <$for i, [[typename T$i = internal::None]]> struct Types { typedef internal::Types$n<$for i, [[T$i]]> type; }; template <> struct Types<$for i, [[internal::None]]> { typedef internal::Types0 type; }; $range i 1..n-1 $for i [[ $range j 1..i $range k i+1..n template <$for j, [[typename T$j]]> struct Types<$for j, [[T$j]]$for k[[, internal::None]]> { typedef internal::Types$i<$for j, [[T$j]]> type; }; ]] namespace internal { # define GTEST_TEMPLATE_ template class // The template "selector" struct TemplateSel is used to // represent Tmpl, which must be a class template with one type // parameter, as a type. TemplateSel::Bind::type is defined // as the type Tmpl. This allows us to actually instantiate the // template "selected" by TemplateSel. // // This trick is necessary for simulating typedef for class templates, // which C++ doesn't support directly. template struct TemplateSel { template struct Bind { typedef Tmpl type; }; }; # define GTEST_BIND_(TmplSel, T) \ TmplSel::template Bind::type // A unique struct template used as the default value for the // arguments of class template Templates. This allows us to simulate // variadic templates (e.g. Templates, Templates, // and etc), which C++ doesn't support directly. template struct NoneT {}; // The following family of struct and struct templates are used to // represent template lists. In particular, TemplatesN represents a list of N templates (T1, T2, ..., and TN). Except // for Templates0, every struct in the family has two member types: // Head for the selector of the first template in the list, and Tail // for the rest of the list. // The empty template list. struct Templates0 {}; // Template lists of length 1, 2, 3, and so on. template struct Templates1 { typedef TemplateSel Head; typedef Templates0 Tail; }; $range i 2..n $for i [[ $range j 1..i $range k 2..i template <$for j, [[GTEST_TEMPLATE_ T$j]]> struct Templates$i { typedef TemplateSel Head; typedef Templates$(i-1)<$for k, [[T$k]]> Tail; }; ]] // We don't want to require the users to write TemplatesN<...> directly, // as that would require them to count the length. Templates<...> is much // easier to write, but generates horrible messages when there is a // compiler error, as gcc insists on printing out each template // argument, even if it has the default value (this means Templates // will appear as Templates in the compiler // errors). // // Our solution is to combine the best part of the two approaches: a // user would write Templates, and Google Test will translate // that to TemplatesN internally to make error messages // readable. The translation is done by the 'type' member of the // Templates template. $range i 1..n template <$for i, [[GTEST_TEMPLATE_ T$i = NoneT]]> struct Templates { typedef Templates$n<$for i, [[T$i]]> type; }; template <> struct Templates<$for i, [[NoneT]]> { typedef Templates0 type; }; $range i 1..n-1 $for i [[ $range j 1..i $range k i+1..n template <$for j, [[GTEST_TEMPLATE_ T$j]]> struct Templates<$for j, [[T$j]]$for k[[, NoneT]]> { typedef Templates$i<$for j, [[T$j]]> type; }; ]] // The TypeList template makes it possible to use either a single type // or a Types<...> list in TYPED_TEST_CASE() and // INSTANTIATE_TYPED_TEST_CASE_P(). template struct TypeList { typedef Types1 type; }; $range i 1..n template <$for i, [[typename T$i]]> struct TypeList > { typedef typename Types<$for i, [[T$i]]>::type type; }; #endif // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P } // namespace internal } // namespace testing #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TYPE_UTIL_H_ ================================================ FILE: test/gtest/src/gtest-all.cc ================================================ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Google C++ Testing and Mocking Framework (Google Test) // // Sometimes it's desirable to build Google Test by compiling a single file. // This file serves this purpose. // This line ensures that gtest.h can be compiled on its own, even // when it's fused. #include "gtest/gtest.h" // The following lines pull in the real gtest *.cc files. #include "src/gtest.cc" #include "src/gtest-death-test.cc" #include "src/gtest-filepath.cc" #include "src/gtest-matchers.cc" #include "src/gtest-port.cc" #include "src/gtest-printers.cc" #include "src/gtest-test-part.cc" #include "src/gtest-typed-test.cc" ================================================ FILE: test/gtest/src/gtest-death-test.cc ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // This file implements death tests. #include "gtest/gtest-death-test.h" #include #include #include "gtest/internal/gtest-port.h" #include "gtest/internal/custom/gtest.h" #if GTEST_HAS_DEATH_TEST # if GTEST_OS_MAC # include # endif // GTEST_OS_MAC # include # include # include # if GTEST_OS_LINUX # include # endif // GTEST_OS_LINUX # include # if GTEST_OS_WINDOWS # include # else # include # include # endif // GTEST_OS_WINDOWS # if GTEST_OS_QNX # include # endif // GTEST_OS_QNX # if GTEST_OS_FUCHSIA # include # include # include # include # include # include # include # include # include # include # include # endif // GTEST_OS_FUCHSIA #endif // GTEST_HAS_DEATH_TEST #include "gtest/gtest-message.h" #include "gtest/internal/gtest-string.h" #include "src/gtest-internal-inl.h" namespace testing { // Constants. // The default death test style. // // This is defined in internal/gtest-port.h as "fast", but can be overridden by // a definition in internal/custom/gtest-port.h. The recommended value, which is // used internally at Google, is "threadsafe". static const char kDefaultDeathTestStyle[] = GTEST_DEFAULT_DEATH_TEST_STYLE; GTEST_DEFINE_string_( death_test_style, internal::StringFromGTestEnv("death_test_style", kDefaultDeathTestStyle), "Indicates how to run a death test in a forked child process: " "\"threadsafe\" (child process re-executes the test binary " "from the beginning, running only the specific death test) or " "\"fast\" (child process runs the death test immediately " "after forking)."); GTEST_DEFINE_bool_( death_test_use_fork, internal::BoolFromGTestEnv("death_test_use_fork", false), "Instructs to use fork()/_exit() instead of clone() in death tests. " "Ignored and always uses fork() on POSIX systems where clone() is not " "implemented. Useful when running under valgrind or similar tools if " "those do not support clone(). Valgrind 3.3.1 will just fail if " "it sees an unsupported combination of clone() flags. " "It is not recommended to use this flag w/o valgrind though it will " "work in 99% of the cases. Once valgrind is fixed, this flag will " "most likely be removed."); namespace internal { GTEST_DEFINE_string_( internal_run_death_test, "", "Indicates the file, line number, temporal index of " "the single death test to run, and a file descriptor to " "which a success code may be sent, all separated by " "the '|' characters. This flag is specified if and only if the " "current process is a sub-process launched for running a thread-safe " "death test. FOR INTERNAL USE ONLY."); } // namespace internal #if GTEST_HAS_DEATH_TEST namespace internal { // Valid only for fast death tests. Indicates the code is running in the // child process of a fast style death test. # if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA static bool g_in_fast_death_test_child = false; # endif // Returns a Boolean value indicating whether the caller is currently // executing in the context of the death test child process. Tools such as // Valgrind heap checkers may need this to modify their behavior in death // tests. IMPORTANT: This is an internal utility. Using it may break the // implementation of death tests. User code MUST NOT use it. bool InDeathTestChild() { # if GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA // On Windows and Fuchsia, death tests are thread-safe regardless of the value // of the death_test_style flag. return !GTEST_FLAG(internal_run_death_test).empty(); # else if (GTEST_FLAG(death_test_style) == "threadsafe") return !GTEST_FLAG(internal_run_death_test).empty(); else return g_in_fast_death_test_child; #endif } } // namespace internal // ExitedWithCode constructor. ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) { } // ExitedWithCode function-call operator. bool ExitedWithCode::operator()(int exit_status) const { # if GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA return exit_status == exit_code_; # else return WIFEXITED(exit_status) && WEXITSTATUS(exit_status) == exit_code_; # endif // GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA } # if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA // KilledBySignal constructor. KilledBySignal::KilledBySignal(int signum) : signum_(signum) { } // KilledBySignal function-call operator. bool KilledBySignal::operator()(int exit_status) const { # if defined(GTEST_KILLED_BY_SIGNAL_OVERRIDE_) { bool result; if (GTEST_KILLED_BY_SIGNAL_OVERRIDE_(signum_, exit_status, &result)) { return result; } } # endif // defined(GTEST_KILLED_BY_SIGNAL_OVERRIDE_) return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_; } # endif // !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA namespace internal { // Utilities needed for death tests. // Generates a textual description of a given exit code, in the format // specified by wait(2). static std::string ExitSummary(int exit_code) { Message m; # if GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA m << "Exited with exit status " << exit_code; # else if (WIFEXITED(exit_code)) { m << "Exited with exit status " << WEXITSTATUS(exit_code); } else if (WIFSIGNALED(exit_code)) { m << "Terminated by signal " << WTERMSIG(exit_code); } # ifdef WCOREDUMP if (WCOREDUMP(exit_code)) { m << " (core dumped)"; } # endif # endif // GTEST_OS_WINDOWS || GTEST_OS_FUCHSIA return m.GetString(); } // Returns true if exit_status describes a process that was terminated // by a signal, or exited normally with a nonzero exit code. bool ExitedUnsuccessfully(int exit_status) { return !ExitedWithCode(0)(exit_status); } # if !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA // Generates a textual failure message when a death test finds more than // one thread running, or cannot determine the number of threads, prior // to executing the given statement. It is the responsibility of the // caller not to pass a thread_count of 1. static std::string DeathTestThreadWarning(size_t thread_count) { Message msg; msg << "Death tests use fork(), which is unsafe particularly" << " in a threaded context. For this test, " << GTEST_NAME_ << " "; if (thread_count == 0) { msg << "couldn't detect the number of threads."; } else { msg << "detected " << thread_count << " threads."; } msg << " See " "https://github.com/google/googletest/blob/master/docs/" "advanced.md#death-tests-and-threads" << " for more explanation and suggested solutions, especially if" << " this is the last message you see before your test times out."; return msg.GetString(); } # endif // !GTEST_OS_WINDOWS && !GTEST_OS_FUCHSIA // Flag characters for reporting a death test that did not die. static const char kDeathTestLived = 'L'; static const char kDeathTestReturned = 'R'; static const char kDeathTestThrew = 'T'; static const char kDeathTestInternalError = 'I'; #if GTEST_OS_FUCHSIA // File descriptor used for the pipe in the child process. static const int kFuchsiaReadPipeFd = 3; #endif // An enumeration describing all of the possible ways that a death test can // conclude. DIED means that the process died while executing the test // code; LIVED means that process lived beyond the end of the test code; // RETURNED means that the test statement attempted to execute a return // statement, which is not allowed; THREW means that the test statement // returned control by throwing an exception. IN_PROGRESS means the test // has not yet concluded. enum DeathTestOutcome { IN_PROGRESS, DIED, LIVED, RETURNED, THREW }; // Routine for aborting the program which is safe to call from an // exec-style death test child process, in which case the error // message is propagated back to the parent process. Otherwise, the // message is simply printed to stderr. In either case, the program // then exits with status 1. static void DeathTestAbort(const std::string& message) { // On a POSIX system, this function may be called from a threadsafe-style // death test child process, which operates on a very small stack. Use // the heap for any additional non-minuscule memory requirements. const InternalRunDeathTestFlag* const flag = GetUnitTestImpl()->internal_run_death_test_flag(); if (flag != nullptr) { FILE* parent = posix::FDOpen(flag->write_fd(), "w"); fputc(kDeathTestInternalError, parent); fprintf(parent, "%s", message.c_str()); fflush(parent); _exit(1); } else { fprintf(stderr, "%s", message.c_str()); fflush(stderr); posix::Abort(); } } // A replacement for CHECK that calls DeathTestAbort if the assertion // fails. # define GTEST_DEATH_TEST_CHECK_(expression) \ do { \ if (!::testing::internal::IsTrue(expression)) { \ DeathTestAbort( \ ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + ::testing::internal::StreamableToString(__LINE__) + ": " \ + #expression); \ } \ } while (::testing::internal::AlwaysFalse()) // This macro is similar to GTEST_DEATH_TEST_CHECK_, but it is meant for // evaluating any system call that fulfills two conditions: it must return // -1 on failure, and set errno to EINTR when it is interrupted and // should be tried again. The macro expands to a loop that repeatedly // evaluates the expression as long as it evaluates to -1 and sets // errno to EINTR. If the expression evaluates to -1 but errno is // something other than EINTR, DeathTestAbort is called. # define GTEST_DEATH_TEST_CHECK_SYSCALL_(expression) \ do { \ int gtest_retval; \ do { \ gtest_retval = (expression); \ } while (gtest_retval == -1 && errno == EINTR); \ if (gtest_retval == -1) { \ DeathTestAbort( \ ::std::string("CHECK failed: File ") + __FILE__ + ", line " \ + ::testing::internal::StreamableToString(__LINE__) + ": " \ + #expression + " != -1"); \ } \ } while (::testing::internal::AlwaysFalse()) // Returns the message describing the last system error in errno. std::string GetLastErrnoDescription() { return errno == 0 ? "" : posix::StrError(errno); } // This is called from a death test parent process to read a failure // message from the death test child process and log it with the FATAL // severity. On Windows, the message is read from a pipe handle. On other // platforms, it is read from a file descriptor. static void FailFromInternalError(int fd) { Message error; char buffer[256]; int num_read; do { while ((num_read = posix::Read(fd, buffer, 255)) > 0) { buffer[num_read] = '\0'; error << buffer; } } while (num_read == -1 && errno == EINTR); if (num_read == 0) { GTEST_LOG_(FATAL) << error.GetString(); } else { const int last_error = errno; GTEST_LOG_(FATAL) << "Error while reading death test internal: " << GetLastErrnoDescription() << " [" << last_error << "]"; } } // Death test constructor. Increments the running death test count // for the current test. DeathTest::DeathTest() { TestInfo* const info = GetUnitTestImpl()->current_test_info(); if (info == nullptr) { DeathTestAbort("Cannot run a death test outside of a TEST or " "TEST_F construct"); } } // Creates and returns a death test by dispatching to the current // death test factory. bool DeathTest::Create(const char* statement, Matcher matcher, const char* file, int line, DeathTest** test) { return GetUnitTestImpl()->death_test_factory()->Create( statement, std::move(matcher), file, line, test); } const char* DeathTest::LastMessage() { return last_death_test_message_.c_str(); } void DeathTest::set_last_death_test_message(const std::string& message) { last_death_test_message_ = message; } std::string DeathTest::last_death_test_message_; // Provides cross platform implementation for some death functionality. class DeathTestImpl : public DeathTest { protected: DeathTestImpl(const char* a_statement, Matcher matcher) : statement_(a_statement), matcher_(std::move(matcher)), spawned_(false), status_(-1), outcome_(IN_PROGRESS), read_fd_(-1), write_fd_(-1) {} // read_fd_ is expected to be closed and cleared by a derived class. ~DeathTestImpl() override { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); } void Abort(AbortReason reason) override; bool Passed(bool status_ok) override; const char* statement() const { return statement_; } bool spawned() const { return spawned_; } void set_spawned(bool is_spawned) { spawned_ = is_spawned; } int status() const { return status_; } void set_status(int a_status) { status_ = a_status; } DeathTestOutcome outcome() const { return outcome_; } void set_outcome(DeathTestOutcome an_outcome) { outcome_ = an_outcome; } int read_fd() const { return read_fd_; } void set_read_fd(int fd) { read_fd_ = fd; } int write_fd() const { return write_fd_; } void set_write_fd(int fd) { write_fd_ = fd; } // Called in the parent process only. Reads the result code of the death // test child process via a pipe, interprets it to set the outcome_ // member, and closes read_fd_. Outputs diagnostics and terminates in // case of unexpected codes. void ReadAndInterpretStatusByte(); // Returns stderr output from the child process. virtual std::string GetErrorLogs(); private: // The textual content of the code this object is testing. This class // doesn't own this string and should not attempt to delete it. const char* const statement_; // A matcher that's expected to match the stderr output by the child process. Matcher matcher_; // True if the death test child process has been successfully spawned. bool spawned_; // The exit status of the child process. int status_; // How the death test concluded. DeathTestOutcome outcome_; // Descriptor to the read end of the pipe to the child process. It is // always -1 in the child process. The child keeps its write end of the // pipe in write_fd_. int read_fd_; // Descriptor to the child's write end of the pipe to the parent process. // It is always -1 in the parent process. The parent keeps its end of the // pipe in read_fd_. int write_fd_; }; // Called in the parent process only. Reads the result code of the death // test child process via a pipe, interprets it to set the outcome_ // member, and closes read_fd_. Outputs diagnostics and terminates in // case of unexpected codes. void DeathTestImpl::ReadAndInterpretStatusByte() { char flag; int bytes_read; // The read() here blocks until data is available (signifying the // failure of the death test) or until the pipe is closed (signifying // its success), so it's okay to call this in the parent before // the child process has exited. do { bytes_read = posix::Read(read_fd(), &flag, 1); } while (bytes_read == -1 && errno == EINTR); if (bytes_read == 0) { set_outcome(DIED); } else if (bytes_read == 1) { switch (flag) { case kDeathTestReturned: set_outcome(RETURNED); break; case kDeathTestThrew: set_outcome(THREW); break; case kDeathTestLived: set_outcome(LIVED); break; case kDeathTestInternalError: FailFromInternalError(read_fd()); // Does not return. break; default: GTEST_LOG_(FATAL) << "Death test child process reported " << "unexpected status byte (" << static_cast(flag) << ")"; } } else { GTEST_LOG_(FATAL) << "Read from death test child process failed: " << GetLastErrnoDescription(); } GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd())); set_read_fd(-1); } std::string DeathTestImpl::GetErrorLogs() { return GetCapturedStderr(); } // Signals that the death test code which should have exited, didn't. // Should be called only in a death test child process. // Writes a status byte to the child's status file descriptor, then // calls _exit(1). void DeathTestImpl::Abort(AbortReason reason) { // The parent process considers the death test to be a failure if // it finds any data in our pipe. So, here we write a single flag byte // to the pipe, then exit. const char status_ch = reason == TEST_DID_NOT_DIE ? kDeathTestLived : reason == TEST_THREW_EXCEPTION ? kDeathTestThrew : kDeathTestReturned; GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1)); // We are leaking the descriptor here because on some platforms (i.e., // when built as Windows DLL), destructors of global objects will still // run after calling _exit(). On such systems, write_fd_ will be // indirectly closed from the destructor of UnitTestImpl, causing double // close if it is also closed here. On debug configurations, double close // may assert. As there are no in-process buffers to flush here, we are // relying on the OS to close the descriptor after the process terminates // when the destructors are not run. _exit(1); // Exits w/o any normal exit hooks (we were supposed to crash) } // Returns an indented copy of stderr output for a death test. // This makes distinguishing death test output lines from regular log lines // much easier. static ::std::string FormatDeathTestOutput(const ::std::string& output) { ::std::string ret; for (size_t at = 0; ; ) { const size_t line_end = output.find('\n', at); ret += "[ DEATH ] "; if (line_end == ::std::string::npos) { ret += output.substr(at); break; } ret += output.substr(at, line_end + 1 - at); at = line_end + 1; } return ret; } // Assesses the success or failure of a death test, using both private // members which have previously been set, and one argument: // // Private data members: // outcome: An enumeration describing how the death test // concluded: DIED, LIVED, THREW, or RETURNED. The death test // fails in the latter three cases. // status: The exit status of the child process. On *nix, it is in the // in the format specified by wait(2). On Windows, this is the // value supplied to the ExitProcess() API or a numeric code // of the exception that terminated the program. // matcher_: A matcher that's expected to match the stderr output by the child // process. // // Argument: // status_ok: true if exit_status is acceptable in the context of // this particular death test, which fails if it is false // // Returns true if and only if all of the above conditions are met. Otherwise, // the first failing condition, in the order given above, is the one that is // reported. Also sets the last death test message string. bool DeathTestImpl::Passed(bool status_ok) { if (!spawned()) return false; const std::string error_message = GetErrorLogs(); bool success = false; Message buffer; buffer << "Death test: " << statement() << "\n"; switch (outcome()) { case LIVED: buffer << " Result: failed to die.\n" << " Error msg:\n" << FormatDeathTestOutput(error_message); break; case THREW: buffer << " Result: threw an exception.\n" << " Error msg:\n" << FormatDeathTestOutput(error_message); break; case RETURNED: buffer << " Result: illegal return in test statement.\n" << " Error msg:\n" << FormatDeathTestOutput(error_message); break; case DIED: if (status_ok) { if (matcher_.Matches(error_message)) { success = true; } else { std::ostringstream stream; matcher_.DescribeTo(&stream); buffer << " Result: died but not with expected error.\n" << " Expected: " << stream.str() << "\n" << "Actual msg:\n" << FormatDeathTestOutput(error_message); } } else { buffer << " Result: died but not with expected exit code:\n" << " " << ExitSummary(status()) << "\n" << "Actual msg:\n" << FormatDeathTestOutput(error_message); } break; case IN_PROGRESS: default: GTEST_LOG_(FATAL) << "DeathTest::Passed somehow called before conclusion of test"; } DeathTest::set_last_death_test_message(buffer.GetString()); return success; } # if GTEST_OS_WINDOWS // WindowsDeathTest implements death tests on Windows. Due to the // specifics of starting new processes on Windows, death tests there are // always threadsafe, and Google Test considers the // --gtest_death_test_style=fast setting to be equivalent to // --gtest_death_test_style=threadsafe there. // // A few implementation notes: Like the Linux version, the Windows // implementation uses pipes for child-to-parent communication. But due to // the specifics of pipes on Windows, some extra steps are required: // // 1. The parent creates a communication pipe and stores handles to both // ends of it. // 2. The parent starts the child and provides it with the information // necessary to acquire the handle to the write end of the pipe. // 3. The child acquires the write end of the pipe and signals the parent // using a Windows event. // 4. Now the parent can release the write end of the pipe on its side. If // this is done before step 3, the object's reference count goes down to // 0 and it is destroyed, preventing the child from acquiring it. The // parent now has to release it, or read operations on the read end of // the pipe will not return when the child terminates. // 5. The parent reads child's output through the pipe (outcome code and // any possible error messages) from the pipe, and its stderr and then // determines whether to fail the test. // // Note: to distinguish Win32 API calls from the local method and function // calls, the former are explicitly resolved in the global namespace. // class WindowsDeathTest : public DeathTestImpl { public: WindowsDeathTest(const char* a_statement, Matcher matcher, const char* file, int line) : DeathTestImpl(a_statement, std::move(matcher)), file_(file), line_(line) {} // All of these virtual functions are inherited from DeathTest. virtual int Wait(); virtual TestRole AssumeRole(); private: // The name of the file in which the death test is located. const char* const file_; // The line number on which the death test is located. const int line_; // Handle to the write end of the pipe to the child process. AutoHandle write_handle_; // Child process handle. AutoHandle child_handle_; // Event the child process uses to signal the parent that it has // acquired the handle to the write end of the pipe. After seeing this // event the parent can release its own handles to make sure its // ReadFile() calls return when the child terminates. AutoHandle event_handle_; }; // Waits for the child in a death test to exit, returning its exit // status, or 0 if no child process exists. As a side effect, sets the // outcome data member. int WindowsDeathTest::Wait() { if (!spawned()) return 0; // Wait until the child either signals that it has acquired the write end // of the pipe or it dies. const HANDLE wait_handles[2] = { child_handle_.Get(), event_handle_.Get() }; switch (::WaitForMultipleObjects(2, wait_handles, FALSE, // Waits for any of the handles. INFINITE)) { case WAIT_OBJECT_0: case WAIT_OBJECT_0 + 1: break; default: GTEST_DEATH_TEST_CHECK_(false); // Should not get here. } // The child has acquired the write end of the pipe or exited. // We release the handle on our side and continue. write_handle_.Reset(); event_handle_.Reset(); ReadAndInterpretStatusByte(); // Waits for the child process to exit if it haven't already. This // returns immediately if the child has already exited, regardless of // whether previous calls to WaitForMultipleObjects synchronized on this // handle or not. GTEST_DEATH_TEST_CHECK_( WAIT_OBJECT_0 == ::WaitForSingleObject(child_handle_.Get(), INFINITE)); DWORD status_code; GTEST_DEATH_TEST_CHECK_( ::GetExitCodeProcess(child_handle_.Get(), &status_code) != FALSE); child_handle_.Reset(); set_status(static_cast(status_code)); return status(); } // The AssumeRole process for a Windows death test. It creates a child // process with the same executable as the current process to run the // death test. The child process is given the --gtest_filter and // --gtest_internal_run_death_test flags such that it knows to run the // current death test only. DeathTest::TestRole WindowsDeathTest::AssumeRole() { const UnitTestImpl* const impl = GetUnitTestImpl(); const InternalRunDeathTestFlag* const flag = impl->internal_run_death_test_flag(); const TestInfo* const info = impl->current_test_info(); const int death_test_index = info->result()->death_test_count(); if (flag != nullptr) { // ParseInternalRunDeathTestFlag() has performed all the necessary // processing. set_write_fd(flag->write_fd()); return EXECUTE_TEST; } // WindowsDeathTest uses an anonymous pipe to communicate results of // a death test. SECURITY_ATTRIBUTES handles_are_inheritable = {sizeof(SECURITY_ATTRIBUTES), nullptr, TRUE}; HANDLE read_handle, write_handle; GTEST_DEATH_TEST_CHECK_( ::CreatePipe(&read_handle, &write_handle, &handles_are_inheritable, 0) // Default buffer size. != FALSE); set_read_fd(::_open_osfhandle(reinterpret_cast(read_handle), O_RDONLY)); write_handle_.Reset(write_handle); event_handle_.Reset(::CreateEvent( &handles_are_inheritable, TRUE, // The event will automatically reset to non-signaled state. FALSE, // The initial state is non-signalled. nullptr)); // The even is unnamed. GTEST_DEATH_TEST_CHECK_(event_handle_.Get() != nullptr); const std::string filter_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + info->test_suite_name() + "." + info->name(); const std::string internal_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + "=" + file_ + "|" + StreamableToString(line_) + "|" + StreamableToString(death_test_index) + "|" + StreamableToString(static_cast(::GetCurrentProcessId())) + // size_t has the same width as pointers on both 32-bit and 64-bit // Windows platforms. // See http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx. "|" + StreamableToString(reinterpret_cast(write_handle)) + "|" + StreamableToString(reinterpret_cast(event_handle_.Get())); char executable_path[_MAX_PATH + 1]; // NOLINT GTEST_DEATH_TEST_CHECK_(_MAX_PATH + 1 != ::GetModuleFileNameA(nullptr, executable_path, _MAX_PATH)); std::string command_line = std::string(::GetCommandLineA()) + " " + filter_flag + " \"" + internal_flag + "\""; DeathTest::set_last_death_test_message(""); CaptureStderr(); // Flush the log buffers since the log streams are shared with the child. FlushInfoLog(); // The child process will share the standard handles with the parent. STARTUPINFOA startup_info; memset(&startup_info, 0, sizeof(STARTUPINFO)); startup_info.dwFlags = STARTF_USESTDHANDLES; startup_info.hStdInput = ::GetStdHandle(STD_INPUT_HANDLE); startup_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); startup_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE); PROCESS_INFORMATION process_info; GTEST_DEATH_TEST_CHECK_( ::CreateProcessA( executable_path, const_cast(command_line.c_str()), nullptr, // Retuned process handle is not inheritable. nullptr, // Retuned thread handle is not inheritable. TRUE, // Child inherits all inheritable handles (for write_handle_). 0x0, // Default creation flags. nullptr, // Inherit the parent's environment. UnitTest::GetInstance()->original_working_dir(), &startup_info, &process_info) != FALSE); child_handle_.Reset(process_info.hProcess); ::CloseHandle(process_info.hThread); set_spawned(true); return OVERSEE_TEST; } # elif GTEST_OS_FUCHSIA class FuchsiaDeathTest : public DeathTestImpl { public: FuchsiaDeathTest(const char* a_statement, Matcher matcher, const char* file, int line) : DeathTestImpl(a_statement, std::move(matcher)), file_(file), line_(line) {} // All of these virtual functions are inherited from DeathTest. int Wait() override; TestRole AssumeRole() override; std::string GetErrorLogs() override; private: // The name of the file in which the death test is located. const char* const file_; // The line number on which the death test is located. const int line_; // The stderr data captured by the child process. std::string captured_stderr_; zx::process child_process_; zx::channel exception_channel_; zx::socket stderr_socket_; }; // Utility class for accumulating command-line arguments. class Arguments { public: Arguments() { args_.push_back(nullptr); } ~Arguments() { for (std::vector::iterator i = args_.begin(); i != args_.end(); ++i) { free(*i); } } void AddArgument(const char* argument) { args_.insert(args_.end() - 1, posix::StrDup(argument)); } template void AddArguments(const ::std::vector& arguments) { for (typename ::std::vector::const_iterator i = arguments.begin(); i != arguments.end(); ++i) { args_.insert(args_.end() - 1, posix::StrDup(i->c_str())); } } char* const* Argv() { return &args_[0]; } int size() { return static_cast(args_.size()) - 1; } private: std::vector args_; }; // Waits for the child in a death test to exit, returning its exit // status, or 0 if no child process exists. As a side effect, sets the // outcome data member. int FuchsiaDeathTest::Wait() { const int kProcessKey = 0; const int kSocketKey = 1; const int kExceptionKey = 2; if (!spawned()) return 0; // Create a port to wait for socket/task/exception events. zx_status_t status_zx; zx::port port; status_zx = zx::port::create(0, &port); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); // Register to wait for the child process to terminate. status_zx = child_process_.wait_async( port, kProcessKey, ZX_PROCESS_TERMINATED, 0); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); // Register to wait for the socket to be readable or closed. status_zx = stderr_socket_.wait_async( port, kSocketKey, ZX_SOCKET_READABLE | ZX_SOCKET_PEER_CLOSED, 0); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); // Register to wait for an exception. status_zx = exception_channel_.wait_async( port, kExceptionKey, ZX_CHANNEL_READABLE, 0); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); bool process_terminated = false; bool socket_closed = false; do { zx_port_packet_t packet = {}; status_zx = port.wait(zx::time::infinite(), &packet); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); if (packet.key == kExceptionKey) { // Process encountered an exception. Kill it directly rather than // letting other handlers process the event. We will get a kProcessKey // event when the process actually terminates. status_zx = child_process_.kill(); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); } else if (packet.key == kProcessKey) { // Process terminated. GTEST_DEATH_TEST_CHECK_(ZX_PKT_IS_SIGNAL_ONE(packet.type)); GTEST_DEATH_TEST_CHECK_(packet.signal.observed & ZX_PROCESS_TERMINATED); process_terminated = true; } else if (packet.key == kSocketKey) { GTEST_DEATH_TEST_CHECK_(ZX_PKT_IS_SIGNAL_ONE(packet.type)); if (packet.signal.observed & ZX_SOCKET_READABLE) { // Read data from the socket. constexpr size_t kBufferSize = 1024; do { size_t old_length = captured_stderr_.length(); size_t bytes_read = 0; captured_stderr_.resize(old_length + kBufferSize); status_zx = stderr_socket_.read( 0, &captured_stderr_.front() + old_length, kBufferSize, &bytes_read); captured_stderr_.resize(old_length + bytes_read); } while (status_zx == ZX_OK); if (status_zx == ZX_ERR_PEER_CLOSED) { socket_closed = true; } else { GTEST_DEATH_TEST_CHECK_(status_zx == ZX_ERR_SHOULD_WAIT); status_zx = stderr_socket_.wait_async( port, kSocketKey, ZX_SOCKET_READABLE | ZX_SOCKET_PEER_CLOSED, 0); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); } } else { GTEST_DEATH_TEST_CHECK_(packet.signal.observed & ZX_SOCKET_PEER_CLOSED); socket_closed = true; } } } while (!process_terminated && !socket_closed); ReadAndInterpretStatusByte(); zx_info_process_t buffer; status_zx = child_process_.get_info(ZX_INFO_PROCESS, &buffer, sizeof(buffer), nullptr, nullptr); GTEST_DEATH_TEST_CHECK_(status_zx == ZX_OK); GTEST_DEATH_TEST_CHECK_(buffer.flags & ZX_INFO_PROCESS_FLAG_EXITED); set_status(static_cast(buffer.return_code)); return status(); } // The AssumeRole process for a Fuchsia death test. It creates a child // process with the same executable as the current process to run the // death test. The child process is given the --gtest_filter and // --gtest_internal_run_death_test flags such that it knows to run the // current death test only. DeathTest::TestRole FuchsiaDeathTest::AssumeRole() { const UnitTestImpl* const impl = GetUnitTestImpl(); const InternalRunDeathTestFlag* const flag = impl->internal_run_death_test_flag(); const TestInfo* const info = impl->current_test_info(); const int death_test_index = info->result()->death_test_count(); if (flag != nullptr) { // ParseInternalRunDeathTestFlag() has performed all the necessary // processing. set_write_fd(kFuchsiaReadPipeFd); return EXECUTE_TEST; } // Flush the log buffers since the log streams are shared with the child. FlushInfoLog(); // Build the child process command line. const std::string filter_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + info->test_suite_name() + "." + info->name(); const std::string internal_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + "=" + file_ + "|" + StreamableToString(line_) + "|" + StreamableToString(death_test_index); Arguments args; args.AddArguments(GetInjectableArgvs()); args.AddArgument(filter_flag.c_str()); args.AddArgument(internal_flag.c_str()); // Build the pipe for communication with the child. zx_status_t status; zx_handle_t child_pipe_handle; int child_pipe_fd; status = fdio_pipe_half(&child_pipe_fd, &child_pipe_handle); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); set_read_fd(child_pipe_fd); // Set the pipe handle for the child. fdio_spawn_action_t spawn_actions[2] = {}; fdio_spawn_action_t* add_handle_action = &spawn_actions[0]; add_handle_action->action = FDIO_SPAWN_ACTION_ADD_HANDLE; add_handle_action->h.id = PA_HND(PA_FD, kFuchsiaReadPipeFd); add_handle_action->h.handle = child_pipe_handle; // Create a socket pair will be used to receive the child process' stderr. zx::socket stderr_producer_socket; status = zx::socket::create(0, &stderr_producer_socket, &stderr_socket_); GTEST_DEATH_TEST_CHECK_(status >= 0); int stderr_producer_fd = -1; status = fdio_fd_create(stderr_producer_socket.release(), &stderr_producer_fd); GTEST_DEATH_TEST_CHECK_(status >= 0); // Make the stderr socket nonblocking. GTEST_DEATH_TEST_CHECK_(fcntl(stderr_producer_fd, F_SETFL, 0) == 0); fdio_spawn_action_t* add_stderr_action = &spawn_actions[1]; add_stderr_action->action = FDIO_SPAWN_ACTION_CLONE_FD; add_stderr_action->fd.local_fd = stderr_producer_fd; add_stderr_action->fd.target_fd = STDERR_FILENO; // Create a child job. zx_handle_t child_job = ZX_HANDLE_INVALID; status = zx_job_create(zx_job_default(), 0, & child_job); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); zx_policy_basic_t policy; policy.condition = ZX_POL_NEW_ANY; policy.policy = ZX_POL_ACTION_ALLOW; status = zx_job_set_policy( child_job, ZX_JOB_POL_RELATIVE, ZX_JOB_POL_BASIC, &policy, 1); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); // Create an exception channel attached to the |child_job|, to allow // us to suppress the system default exception handler from firing. status = zx_task_create_exception_channel( child_job, 0, exception_channel_.reset_and_get_address()); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); // Spawn the child process. status = fdio_spawn_etc( child_job, FDIO_SPAWN_CLONE_ALL, args.Argv()[0], args.Argv(), nullptr, 2, spawn_actions, child_process_.reset_and_get_address(), nullptr); GTEST_DEATH_TEST_CHECK_(status == ZX_OK); set_spawned(true); return OVERSEE_TEST; } std::string FuchsiaDeathTest::GetErrorLogs() { return captured_stderr_; } #else // We are neither on Windows, nor on Fuchsia. // ForkingDeathTest provides implementations for most of the abstract // methods of the DeathTest interface. Only the AssumeRole method is // left undefined. class ForkingDeathTest : public DeathTestImpl { public: ForkingDeathTest(const char* statement, Matcher matcher); // All of these virtual functions are inherited from DeathTest. int Wait() override; protected: void set_child_pid(pid_t child_pid) { child_pid_ = child_pid; } private: // PID of child process during death test; 0 in the child process itself. pid_t child_pid_; }; // Constructs a ForkingDeathTest. ForkingDeathTest::ForkingDeathTest(const char* a_statement, Matcher matcher) : DeathTestImpl(a_statement, std::move(matcher)), child_pid_(-1) {} // Waits for the child in a death test to exit, returning its exit // status, or 0 if no child process exists. As a side effect, sets the // outcome data member. int ForkingDeathTest::Wait() { if (!spawned()) return 0; ReadAndInterpretStatusByte(); int status_value; GTEST_DEATH_TEST_CHECK_SYSCALL_(waitpid(child_pid_, &status_value, 0)); set_status(status_value); return status_value; } // A concrete death test class that forks, then immediately runs the test // in the child process. class NoExecDeathTest : public ForkingDeathTest { public: NoExecDeathTest(const char* a_statement, Matcher matcher) : ForkingDeathTest(a_statement, std::move(matcher)) {} TestRole AssumeRole() override; }; // The AssumeRole process for a fork-and-run death test. It implements a // straightforward fork, with a simple pipe to transmit the status byte. DeathTest::TestRole NoExecDeathTest::AssumeRole() { const size_t thread_count = GetThreadCount(); if (thread_count != 1) { GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count); } int pipe_fd[2]; GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); DeathTest::set_last_death_test_message(""); CaptureStderr(); // When we fork the process below, the log file buffers are copied, but the // file descriptors are shared. We flush all log files here so that closing // the file descriptors in the child process doesn't throw off the // synchronization between descriptors and buffers in the parent process. // This is as close to the fork as possible to avoid a race condition in case // there are multiple threads running before the death test, and another // thread writes to the log file. FlushInfoLog(); const pid_t child_pid = fork(); GTEST_DEATH_TEST_CHECK_(child_pid != -1); set_child_pid(child_pid); if (child_pid == 0) { GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[0])); set_write_fd(pipe_fd[1]); // Redirects all logging to stderr in the child process to prevent // concurrent writes to the log files. We capture stderr in the parent // process and append the child process' output to a log. LogToStderr(); // Event forwarding to the listeners of event listener API mush be shut // down in death test subprocesses. GetUnitTestImpl()->listeners()->SuppressEventForwarding(); g_in_fast_death_test_child = true; return EXECUTE_TEST; } else { GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); set_read_fd(pipe_fd[0]); set_spawned(true); return OVERSEE_TEST; } } // A concrete death test class that forks and re-executes the main // program from the beginning, with command-line flags set that cause // only this specific death test to be run. class ExecDeathTest : public ForkingDeathTest { public: ExecDeathTest(const char* a_statement, Matcher matcher, const char* file, int line) : ForkingDeathTest(a_statement, std::move(matcher)), file_(file), line_(line) {} TestRole AssumeRole() override; private: static ::std::vector GetArgvsForDeathTestChildProcess() { ::std::vector args = GetInjectableArgvs(); # if defined(GTEST_EXTRA_DEATH_TEST_COMMAND_LINE_ARGS_) ::std::vector extra_args = GTEST_EXTRA_DEATH_TEST_COMMAND_LINE_ARGS_(); args.insert(args.end(), extra_args.begin(), extra_args.end()); # endif // defined(GTEST_EXTRA_DEATH_TEST_COMMAND_LINE_ARGS_) return args; } // The name of the file in which the death test is located. const char* const file_; // The line number on which the death test is located. const int line_; }; // Utility class for accumulating command-line arguments. class Arguments { public: Arguments() { args_.push_back(nullptr); } ~Arguments() { for (std::vector::iterator i = args_.begin(); i != args_.end(); ++i) { free(*i); } } void AddArgument(const char* argument) { args_.insert(args_.end() - 1, posix::StrDup(argument)); } template void AddArguments(const ::std::vector& arguments) { for (typename ::std::vector::const_iterator i = arguments.begin(); i != arguments.end(); ++i) { args_.insert(args_.end() - 1, posix::StrDup(i->c_str())); } } char* const* Argv() { return &args_[0]; } private: std::vector args_; }; // A struct that encompasses the arguments to the child process of a // threadsafe-style death test process. struct ExecDeathTestArgs { char* const* argv; // Command-line arguments for the child's call to exec int close_fd; // File descriptor to close; the read end of a pipe }; # if GTEST_OS_QNX extern "C" char** environ; # else // GTEST_OS_QNX // The main function for a threadsafe-style death test child process. // This function is called in a clone()-ed process and thus must avoid // any potentially unsafe operations like malloc or libc functions. static int ExecDeathTestChildMain(void* child_arg) { ExecDeathTestArgs* const args = static_cast(child_arg); GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd)); // We need to execute the test program in the same environment where // it was originally invoked. Therefore we change to the original // working directory first. const char* const original_dir = UnitTest::GetInstance()->original_working_dir(); // We can safely call chdir() as it's a direct system call. if (chdir(original_dir) != 0) { DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + GetLastErrnoDescription()); return EXIT_FAILURE; } // We can safely call execv() as it's almost a direct system call. We // cannot use execvp() as it's a libc function and thus potentially // unsafe. Since execv() doesn't search the PATH, the user must // invoke the test program via a valid path that contains at least // one path separator. execv(args->argv[0], args->argv); DeathTestAbort(std::string("execv(") + args->argv[0] + ", ...) in " + original_dir + " failed: " + GetLastErrnoDescription()); return EXIT_FAILURE; } # endif // GTEST_OS_QNX # if GTEST_HAS_CLONE // Two utility routines that together determine the direction the stack // grows. // This could be accomplished more elegantly by a single recursive // function, but we want to guard against the unlikely possibility of // a smart compiler optimizing the recursion away. // // GTEST_NO_INLINE_ is required to prevent GCC 4.6 from inlining // StackLowerThanAddress into StackGrowsDown, which then doesn't give // correct answer. static void StackLowerThanAddress(const void* ptr, bool* result) GTEST_NO_INLINE_; // Make sure sanitizers do not tamper with the stack here. // Ideally, we want to use `__builtin_frame_address` instead of a local variable // address with sanitizer disabled, but it does not work when the // compiler optimizes the stack frame out, which happens on PowerPC targets. // HWAddressSanitizer add a random tag to the MSB of the local variable address, // making comparison result unpredictable. GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ static void StackLowerThanAddress(const void* ptr, bool* result) { int dummy = 0; *result = std::less()(&dummy, ptr); } // Make sure AddressSanitizer does not tamper with the stack here. GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ static bool StackGrowsDown() { int dummy = 0; bool result; StackLowerThanAddress(&dummy, &result); return result; } # endif // GTEST_HAS_CLONE // Spawns a child process with the same executable as the current process in // a thread-safe manner and instructs it to run the death test. The // implementation uses fork(2) + exec. On systems where clone(2) is // available, it is used instead, being slightly more thread-safe. On QNX, // fork supports only single-threaded environments, so this function uses // spawn(2) there instead. The function dies with an error message if // anything goes wrong. static pid_t ExecDeathTestSpawnChild(char* const* argv, int close_fd) { ExecDeathTestArgs args = { argv, close_fd }; pid_t child_pid = -1; # if GTEST_OS_QNX // Obtains the current directory and sets it to be closed in the child // process. const int cwd_fd = open(".", O_RDONLY); GTEST_DEATH_TEST_CHECK_(cwd_fd != -1); GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(cwd_fd, F_SETFD, FD_CLOEXEC)); // We need to execute the test program in the same environment where // it was originally invoked. Therefore we change to the original // working directory first. const char* const original_dir = UnitTest::GetInstance()->original_working_dir(); // We can safely call chdir() as it's a direct system call. if (chdir(original_dir) != 0) { DeathTestAbort(std::string("chdir(\"") + original_dir + "\") failed: " + GetLastErrnoDescription()); return EXIT_FAILURE; } int fd_flags; // Set close_fd to be closed after spawn. GTEST_DEATH_TEST_CHECK_SYSCALL_(fd_flags = fcntl(close_fd, F_GETFD)); GTEST_DEATH_TEST_CHECK_SYSCALL_(fcntl(close_fd, F_SETFD, fd_flags | FD_CLOEXEC)); struct inheritance inherit = {0}; // spawn is a system call. child_pid = spawn(args.argv[0], 0, nullptr, &inherit, args.argv, environ); // Restores the current working directory. GTEST_DEATH_TEST_CHECK_(fchdir(cwd_fd) != -1); GTEST_DEATH_TEST_CHECK_SYSCALL_(close(cwd_fd)); # else // GTEST_OS_QNX # if GTEST_OS_LINUX // When a SIGPROF signal is received while fork() or clone() are executing, // the process may hang. To avoid this, we ignore SIGPROF here and re-enable // it after the call to fork()/clone() is complete. struct sigaction saved_sigprof_action; struct sigaction ignore_sigprof_action; memset(&ignore_sigprof_action, 0, sizeof(ignore_sigprof_action)); sigemptyset(&ignore_sigprof_action.sa_mask); ignore_sigprof_action.sa_handler = SIG_IGN; GTEST_DEATH_TEST_CHECK_SYSCALL_(sigaction( SIGPROF, &ignore_sigprof_action, &saved_sigprof_action)); # endif // GTEST_OS_LINUX # if GTEST_HAS_CLONE const bool use_fork = GTEST_FLAG(death_test_use_fork); if (!use_fork) { static const bool stack_grows_down = StackGrowsDown(); const auto stack_size = static_cast(getpagesize() * 2); // MMAP_ANONYMOUS is not defined on Mac, so we use MAP_ANON instead. void* const stack = mmap(nullptr, stack_size, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0); GTEST_DEATH_TEST_CHECK_(stack != MAP_FAILED); // Maximum stack alignment in bytes: For a downward-growing stack, this // amount is subtracted from size of the stack space to get an address // that is within the stack space and is aligned on all systems we care // about. As far as I know there is no ABI with stack alignment greater // than 64. We assume stack and stack_size already have alignment of // kMaxStackAlignment. const size_t kMaxStackAlignment = 64; void* const stack_top = static_cast(stack) + (stack_grows_down ? stack_size - kMaxStackAlignment : 0); GTEST_DEATH_TEST_CHECK_( static_cast(stack_size) > kMaxStackAlignment && reinterpret_cast(stack_top) % kMaxStackAlignment == 0); child_pid = clone(&ExecDeathTestChildMain, stack_top, SIGCHLD, &args); GTEST_DEATH_TEST_CHECK_(munmap(stack, stack_size) != -1); } # else const bool use_fork = true; # endif // GTEST_HAS_CLONE if (use_fork && (child_pid = fork()) == 0) { ExecDeathTestChildMain(&args); _exit(0); } # endif // GTEST_OS_QNX # if GTEST_OS_LINUX GTEST_DEATH_TEST_CHECK_SYSCALL_( sigaction(SIGPROF, &saved_sigprof_action, nullptr)); # endif // GTEST_OS_LINUX GTEST_DEATH_TEST_CHECK_(child_pid != -1); return child_pid; } // The AssumeRole process for a fork-and-exec death test. It re-executes the // main program from the beginning, setting the --gtest_filter // and --gtest_internal_run_death_test flags to cause only the current // death test to be re-run. DeathTest::TestRole ExecDeathTest::AssumeRole() { const UnitTestImpl* const impl = GetUnitTestImpl(); const InternalRunDeathTestFlag* const flag = impl->internal_run_death_test_flag(); const TestInfo* const info = impl->current_test_info(); const int death_test_index = info->result()->death_test_count(); if (flag != nullptr) { set_write_fd(flag->write_fd()); return EXECUTE_TEST; } int pipe_fd[2]; GTEST_DEATH_TEST_CHECK_(pipe(pipe_fd) != -1); // Clear the close-on-exec flag on the write end of the pipe, lest // it be closed when the child process does an exec: GTEST_DEATH_TEST_CHECK_(fcntl(pipe_fd[1], F_SETFD, 0) != -1); const std::string filter_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kFilterFlag + "=" + info->test_suite_name() + "." + info->name(); const std::string internal_flag = std::string("--") + GTEST_FLAG_PREFIX_ + kInternalRunDeathTestFlag + "=" + file_ + "|" + StreamableToString(line_) + "|" + StreamableToString(death_test_index) + "|" + StreamableToString(pipe_fd[1]); Arguments args; args.AddArguments(GetArgvsForDeathTestChildProcess()); args.AddArgument(filter_flag.c_str()); args.AddArgument(internal_flag.c_str()); DeathTest::set_last_death_test_message(""); CaptureStderr(); // See the comment in NoExecDeathTest::AssumeRole for why the next line // is necessary. FlushInfoLog(); const pid_t child_pid = ExecDeathTestSpawnChild(args.Argv(), pipe_fd[0]); GTEST_DEATH_TEST_CHECK_SYSCALL_(close(pipe_fd[1])); set_child_pid(child_pid); set_read_fd(pipe_fd[0]); set_spawned(true); return OVERSEE_TEST; } # endif // !GTEST_OS_WINDOWS // Creates a concrete DeathTest-derived class that depends on the // --gtest_death_test_style flag, and sets the pointer pointed to // by the "test" argument to its address. If the test should be // skipped, sets that pointer to NULL. Returns true, unless the // flag is set to an invalid value. bool DefaultDeathTestFactory::Create(const char* statement, Matcher matcher, const char* file, int line, DeathTest** test) { UnitTestImpl* const impl = GetUnitTestImpl(); const InternalRunDeathTestFlag* const flag = impl->internal_run_death_test_flag(); const int death_test_index = impl->current_test_info() ->increment_death_test_count(); if (flag != nullptr) { if (death_test_index > flag->index()) { DeathTest::set_last_death_test_message( "Death test count (" + StreamableToString(death_test_index) + ") somehow exceeded expected maximum (" + StreamableToString(flag->index()) + ")"); return false; } if (!(flag->file() == file && flag->line() == line && flag->index() == death_test_index)) { *test = nullptr; return true; } } # if GTEST_OS_WINDOWS if (GTEST_FLAG(death_test_style) == "threadsafe" || GTEST_FLAG(death_test_style) == "fast") { *test = new WindowsDeathTest(statement, std::move(matcher), file, line); } # elif GTEST_OS_FUCHSIA if (GTEST_FLAG(death_test_style) == "threadsafe" || GTEST_FLAG(death_test_style) == "fast") { *test = new FuchsiaDeathTest(statement, std::move(matcher), file, line); } # else if (GTEST_FLAG(death_test_style) == "threadsafe") { *test = new ExecDeathTest(statement, std::move(matcher), file, line); } else if (GTEST_FLAG(death_test_style) == "fast") { *test = new NoExecDeathTest(statement, std::move(matcher)); } # endif // GTEST_OS_WINDOWS else { // NOLINT - this is more readable than unbalanced brackets inside #if. DeathTest::set_last_death_test_message( "Unknown death test style \"" + GTEST_FLAG(death_test_style) + "\" encountered"); return false; } return true; } # if GTEST_OS_WINDOWS // Recreates the pipe and event handles from the provided parameters, // signals the event, and returns a file descriptor wrapped around the pipe // handle. This function is called in the child process only. static int GetStatusFileDescriptor(unsigned int parent_process_id, size_t write_handle_as_size_t, size_t event_handle_as_size_t) { AutoHandle parent_process_handle(::OpenProcess(PROCESS_DUP_HANDLE, FALSE, // Non-inheritable. parent_process_id)); if (parent_process_handle.Get() == INVALID_HANDLE_VALUE) { DeathTestAbort("Unable to open parent process " + StreamableToString(parent_process_id)); } GTEST_CHECK_(sizeof(HANDLE) <= sizeof(size_t)); const HANDLE write_handle = reinterpret_cast(write_handle_as_size_t); HANDLE dup_write_handle; // The newly initialized handle is accessible only in the parent // process. To obtain one accessible within the child, we need to use // DuplicateHandle. if (!::DuplicateHandle(parent_process_handle.Get(), write_handle, ::GetCurrentProcess(), &dup_write_handle, 0x0, // Requested privileges ignored since // DUPLICATE_SAME_ACCESS is used. FALSE, // Request non-inheritable handler. DUPLICATE_SAME_ACCESS)) { DeathTestAbort("Unable to duplicate the pipe handle " + StreamableToString(write_handle_as_size_t) + " from the parent process " + StreamableToString(parent_process_id)); } const HANDLE event_handle = reinterpret_cast(event_handle_as_size_t); HANDLE dup_event_handle; if (!::DuplicateHandle(parent_process_handle.Get(), event_handle, ::GetCurrentProcess(), &dup_event_handle, 0x0, FALSE, DUPLICATE_SAME_ACCESS)) { DeathTestAbort("Unable to duplicate the event handle " + StreamableToString(event_handle_as_size_t) + " from the parent process " + StreamableToString(parent_process_id)); } const int write_fd = ::_open_osfhandle(reinterpret_cast(dup_write_handle), O_APPEND); if (write_fd == -1) { DeathTestAbort("Unable to convert pipe handle " + StreamableToString(write_handle_as_size_t) + " to a file descriptor"); } // Signals the parent that the write end of the pipe has been acquired // so the parent can release its own write end. ::SetEvent(dup_event_handle); return write_fd; } # endif // GTEST_OS_WINDOWS // Returns a newly created InternalRunDeathTestFlag object with fields // initialized from the GTEST_FLAG(internal_run_death_test) flag if // the flag is specified; otherwise returns NULL. InternalRunDeathTestFlag* ParseInternalRunDeathTestFlag() { if (GTEST_FLAG(internal_run_death_test) == "") return nullptr; // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we // can use it here. int line = -1; int index = -1; ::std::vector< ::std::string> fields; SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields); int write_fd = -1; # if GTEST_OS_WINDOWS unsigned int parent_process_id = 0; size_t write_handle_as_size_t = 0; size_t event_handle_as_size_t = 0; if (fields.size() != 6 || !ParseNaturalNumber(fields[1], &line) || !ParseNaturalNumber(fields[2], &index) || !ParseNaturalNumber(fields[3], &parent_process_id) || !ParseNaturalNumber(fields[4], &write_handle_as_size_t) || !ParseNaturalNumber(fields[5], &event_handle_as_size_t)) { DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + GTEST_FLAG(internal_run_death_test)); } write_fd = GetStatusFileDescriptor(parent_process_id, write_handle_as_size_t, event_handle_as_size_t); # elif GTEST_OS_FUCHSIA if (fields.size() != 3 || !ParseNaturalNumber(fields[1], &line) || !ParseNaturalNumber(fields[2], &index)) { DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + GTEST_FLAG(internal_run_death_test)); } # else if (fields.size() != 4 || !ParseNaturalNumber(fields[1], &line) || !ParseNaturalNumber(fields[2], &index) || !ParseNaturalNumber(fields[3], &write_fd)) { DeathTestAbort("Bad --gtest_internal_run_death_test flag: " + GTEST_FLAG(internal_run_death_test)); } # endif // GTEST_OS_WINDOWS return new InternalRunDeathTestFlag(fields[0], line, index, write_fd); } } // namespace internal #endif // GTEST_HAS_DEATH_TEST } // namespace testing ================================================ FILE: test/gtest/src/gtest-filepath.cc ================================================ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "gtest/internal/gtest-filepath.h" #include #include "gtest/internal/gtest-port.h" #include "gtest/gtest-message.h" #if GTEST_OS_WINDOWS_MOBILE # include #elif GTEST_OS_WINDOWS # include # include #else # include # include // Some Linux distributions define PATH_MAX here. #endif // GTEST_OS_WINDOWS_MOBILE #include "gtest/internal/gtest-string.h" #if GTEST_OS_WINDOWS # define GTEST_PATH_MAX_ _MAX_PATH #elif defined(PATH_MAX) # define GTEST_PATH_MAX_ PATH_MAX #elif defined(_XOPEN_PATH_MAX) # define GTEST_PATH_MAX_ _XOPEN_PATH_MAX #else # define GTEST_PATH_MAX_ _POSIX_PATH_MAX #endif // GTEST_OS_WINDOWS namespace testing { namespace internal { #if GTEST_OS_WINDOWS // On Windows, '\\' is the standard path separator, but many tools and the // Windows API also accept '/' as an alternate path separator. Unless otherwise // noted, a file path can contain either kind of path separators, or a mixture // of them. const char kPathSeparator = '\\'; const char kAlternatePathSeparator = '/'; const char kAlternatePathSeparatorString[] = "/"; # if GTEST_OS_WINDOWS_MOBILE // Windows CE doesn't have a current directory. You should not use // the current directory in tests on Windows CE, but this at least // provides a reasonable fallback. const char kCurrentDirectoryString[] = "\\"; // Windows CE doesn't define INVALID_FILE_ATTRIBUTES const DWORD kInvalidFileAttributes = 0xffffffff; # else const char kCurrentDirectoryString[] = ".\\"; # endif // GTEST_OS_WINDOWS_MOBILE #else const char kPathSeparator = '/'; const char kCurrentDirectoryString[] = "./"; #endif // GTEST_OS_WINDOWS // Returns whether the given character is a valid path separator. static bool IsPathSeparator(char c) { #if GTEST_HAS_ALT_PATH_SEP_ return (c == kPathSeparator) || (c == kAlternatePathSeparator); #else return c == kPathSeparator; #endif } // Returns the current working directory, or "" if unsuccessful. FilePath FilePath::GetCurrentDir() { #if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || \ GTEST_OS_WINDOWS_RT || GTEST_OS_ESP8266 || GTEST_OS_ESP32 || \ GTEST_OS_XTENSA // These platforms do not have a current directory, so we just return // something reasonable. return FilePath(kCurrentDirectoryString); #elif GTEST_OS_WINDOWS char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; return FilePath(_getcwd(cwd, sizeof(cwd)) == nullptr ? "" : cwd); #else char cwd[GTEST_PATH_MAX_ + 1] = { '\0' }; char* result = getcwd(cwd, sizeof(cwd)); # if GTEST_OS_NACL // getcwd will likely fail in NaCl due to the sandbox, so return something // reasonable. The user may have provided a shim implementation for getcwd, // however, so fallback only when failure is detected. return FilePath(result == nullptr ? kCurrentDirectoryString : cwd); # endif // GTEST_OS_NACL return FilePath(result == nullptr ? "" : cwd); #endif // GTEST_OS_WINDOWS_MOBILE } // Returns a copy of the FilePath with the case-insensitive extension removed. // Example: FilePath("dir/file.exe").RemoveExtension("EXE") returns // FilePath("dir/file"). If a case-insensitive extension is not // found, returns a copy of the original FilePath. FilePath FilePath::RemoveExtension(const char* extension) const { const std::string dot_extension = std::string(".") + extension; if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) { return FilePath(pathname_.substr( 0, pathname_.length() - dot_extension.length())); } return *this; } // Returns a pointer to the last occurrence of a valid path separator in // the FilePath. On Windows, for example, both '/' and '\' are valid path // separators. Returns NULL if no path separator was found. const char* FilePath::FindLastPathSeparator() const { const char* const last_sep = strrchr(c_str(), kPathSeparator); #if GTEST_HAS_ALT_PATH_SEP_ const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator); // Comparing two pointers of which only one is NULL is undefined. if (last_alt_sep != nullptr && (last_sep == nullptr || last_alt_sep > last_sep)) { return last_alt_sep; } #endif return last_sep; } // Returns a copy of the FilePath with the directory part removed. // Example: FilePath("path/to/file").RemoveDirectoryName() returns // FilePath("file"). If there is no directory part ("just_a_file"), it returns // the FilePath unmodified. If there is no file part ("just_a_dir/") it // returns an empty FilePath (""). // On Windows platform, '\' is the path separator, otherwise it is '/'. FilePath FilePath::RemoveDirectoryName() const { const char* const last_sep = FindLastPathSeparator(); return last_sep ? FilePath(last_sep + 1) : *this; } // RemoveFileName returns the directory path with the filename removed. // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/". // If the FilePath is "a_file" or "/a_file", RemoveFileName returns // FilePath("./") or, on Windows, FilePath(".\\"). If the filepath does // not have a file, like "just/a/dir/", it returns the FilePath unmodified. // On Windows platform, '\' is the path separator, otherwise it is '/'. FilePath FilePath::RemoveFileName() const { const char* const last_sep = FindLastPathSeparator(); std::string dir; if (last_sep) { dir = std::string(c_str(), static_cast(last_sep + 1 - c_str())); } else { dir = kCurrentDirectoryString; } return FilePath(dir); } // Helper functions for naming files in a directory for xml output. // Given directory = "dir", base_name = "test", number = 0, // extension = "xml", returns "dir/test.xml". If number is greater // than zero (e.g., 12), returns "dir/test_12.xml". // On Windows platform, uses \ as the separator rather than /. FilePath FilePath::MakeFileName(const FilePath& directory, const FilePath& base_name, int number, const char* extension) { std::string file; if (number == 0) { file = base_name.string() + "." + extension; } else { file = base_name.string() + "_" + StreamableToString(number) + "." + extension; } return ConcatPaths(directory, FilePath(file)); } // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml". // On Windows, uses \ as the separator rather than /. FilePath FilePath::ConcatPaths(const FilePath& directory, const FilePath& relative_path) { if (directory.IsEmpty()) return relative_path; const FilePath dir(directory.RemoveTrailingPathSeparator()); return FilePath(dir.string() + kPathSeparator + relative_path.string()); } // Returns true if pathname describes something findable in the file-system, // either a file, directory, or whatever. bool FilePath::FileOrDirectoryExists() const { #if GTEST_OS_WINDOWS_MOBILE LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); const DWORD attributes = GetFileAttributes(unicode); delete [] unicode; return attributes != kInvalidFileAttributes; #else posix::StatStruct file_stat{}; return posix::Stat(pathname_.c_str(), &file_stat) == 0; #endif // GTEST_OS_WINDOWS_MOBILE } // Returns true if pathname describes a directory in the file-system // that exists. bool FilePath::DirectoryExists() const { bool result = false; #if GTEST_OS_WINDOWS // Don't strip off trailing separator if path is a root directory on // Windows (like "C:\\"). const FilePath& path(IsRootDirectory() ? *this : RemoveTrailingPathSeparator()); #else const FilePath& path(*this); #endif #if GTEST_OS_WINDOWS_MOBILE LPCWSTR unicode = String::AnsiToUtf16(path.c_str()); const DWORD attributes = GetFileAttributes(unicode); delete [] unicode; if ((attributes != kInvalidFileAttributes) && (attributes & FILE_ATTRIBUTE_DIRECTORY)) { result = true; } #else posix::StatStruct file_stat{}; result = posix::Stat(path.c_str(), &file_stat) == 0 && posix::IsDir(file_stat); #endif // GTEST_OS_WINDOWS_MOBILE return result; } // Returns true if pathname describes a root directory. (Windows has one // root directory per disk drive.) bool FilePath::IsRootDirectory() const { #if GTEST_OS_WINDOWS return pathname_.length() == 3 && IsAbsolutePath(); #else return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]); #endif } // Returns true if pathname describes an absolute path. bool FilePath::IsAbsolutePath() const { const char* const name = pathname_.c_str(); #if GTEST_OS_WINDOWS return pathname_.length() >= 3 && ((name[0] >= 'a' && name[0] <= 'z') || (name[0] >= 'A' && name[0] <= 'Z')) && name[1] == ':' && IsPathSeparator(name[2]); #else return IsPathSeparator(name[0]); #endif } // Returns a pathname for a file that does not currently exist. The pathname // will be directory/base_name.extension or // directory/base_name_.extension if directory/base_name.extension // already exists. The number will be incremented until a pathname is found // that does not already exist. // Examples: 'dir/foo_test.xml' or 'dir/foo_test_1.xml'. // There could be a race condition if two or more processes are calling this // function at the same time -- they could both pick the same filename. FilePath FilePath::GenerateUniqueFileName(const FilePath& directory, const FilePath& base_name, const char* extension) { FilePath full_pathname; int number = 0; do { full_pathname.Set(MakeFileName(directory, base_name, number++, extension)); } while (full_pathname.FileOrDirectoryExists()); return full_pathname; } // Returns true if FilePath ends with a path separator, which indicates that // it is intended to represent a directory. Returns false otherwise. // This does NOT check that a directory (or file) actually exists. bool FilePath::IsDirectory() const { return !pathname_.empty() && IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]); } // Create directories so that path exists. Returns true if successful or if // the directories already exist; returns false if unable to create directories // for any reason. bool FilePath::CreateDirectoriesRecursively() const { if (!this->IsDirectory()) { return false; } if (pathname_.length() == 0 || this->DirectoryExists()) { return true; } const FilePath parent(this->RemoveTrailingPathSeparator().RemoveFileName()); return parent.CreateDirectoriesRecursively() && this->CreateFolder(); } // Create the directory so that path exists. Returns true if successful or // if the directory already exists; returns false if unable to create the // directory for any reason, including if the parent directory does not // exist. Not named "CreateDirectory" because that's a macro on Windows. bool FilePath::CreateFolder() const { #if GTEST_OS_WINDOWS_MOBILE FilePath removed_sep(this->RemoveTrailingPathSeparator()); LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str()); int result = CreateDirectory(unicode, nullptr) ? 0 : -1; delete [] unicode; #elif GTEST_OS_WINDOWS int result = _mkdir(pathname_.c_str()); #elif GTEST_OS_ESP8266 || GTEST_OS_XTENSA // do nothing int result = 0; #else int result = mkdir(pathname_.c_str(), 0777); #endif // GTEST_OS_WINDOWS_MOBILE if (result == -1) { return this->DirectoryExists(); // An error is OK if the directory exists. } return true; // No error. } // If input name has a trailing separator character, remove it and return the // name, otherwise return the name string unmodified. // On Windows platform, uses \ as the separator, other platforms use /. FilePath FilePath::RemoveTrailingPathSeparator() const { return IsDirectory() ? FilePath(pathname_.substr(0, pathname_.length() - 1)) : *this; } // Removes any redundant separators that might be in the pathname. // For example, "bar///foo" becomes "bar/foo". Does not eliminate other // redundancies that might be in a pathname involving "." or "..". void FilePath::Normalize() { auto out = pathname_.begin(); for (const char character : pathname_) { if (!IsPathSeparator(character)) { *(out++) = character; } else if (out == pathname_.begin() || *std::prev(out) != kPathSeparator) { *(out++) = kPathSeparator; } else { continue; } } pathname_.erase(out, pathname_.end()); } } // namespace internal } // namespace testing ================================================ FILE: test/gtest/src/gtest-internal-inl.h ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Utility functions and classes used by the Google C++ testing framework.// // This file contains purely Google Test's internal implementation. Please // DO NOT #INCLUDE IT IN A USER PROGRAM. #ifndef GOOGLETEST_SRC_GTEST_INTERNAL_INL_H_ #define GOOGLETEST_SRC_GTEST_INTERNAL_INL_H_ #ifndef _WIN32_WCE # include #endif // !_WIN32_WCE #include #include // For strtoll/_strtoul64/malloc/free. #include // For memmove. #include #include #include #include #include #include "gtest/internal/gtest-port.h" #if GTEST_CAN_STREAM_RESULTS_ # include // NOLINT # include // NOLINT #endif #if GTEST_OS_WINDOWS # include // NOLINT #endif // GTEST_OS_WINDOWS #include "gtest/gtest.h" #include "gtest/gtest-spi.h" GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \ /* class A needs to have dll-interface to be used by clients of class B */) namespace testing { // Declares the flags. // // We don't want the users to modify this flag in the code, but want // Google Test's own unit tests to be able to access it. Therefore we // declare it here as opposed to in gtest.h. GTEST_DECLARE_bool_(death_test_use_fork); namespace internal { // The value of GetTestTypeId() as seen from within the Google Test // library. This is solely for testing GetTestTypeId(). GTEST_API_ extern const TypeId kTestTypeIdInGoogleTest; // Names of the flags (needed for parsing Google Test flags). const char kAlsoRunDisabledTestsFlag[] = "also_run_disabled_tests"; const char kBreakOnFailureFlag[] = "break_on_failure"; const char kCatchExceptionsFlag[] = "catch_exceptions"; const char kColorFlag[] = "color"; const char kFailFast[] = "fail_fast"; const char kFilterFlag[] = "filter"; const char kListTestsFlag[] = "list_tests"; const char kOutputFlag[] = "output"; const char kBriefFlag[] = "brief"; const char kPrintTimeFlag[] = "print_time"; const char kPrintUTF8Flag[] = "print_utf8"; const char kRandomSeedFlag[] = "random_seed"; const char kRepeatFlag[] = "repeat"; const char kShuffleFlag[] = "shuffle"; const char kStackTraceDepthFlag[] = "stack_trace_depth"; const char kStreamResultToFlag[] = "stream_result_to"; const char kThrowOnFailureFlag[] = "throw_on_failure"; const char kFlagfileFlag[] = "flagfile"; // A valid random seed must be in [1, kMaxRandomSeed]. const int kMaxRandomSeed = 99999; // g_help_flag is true if and only if the --help flag or an equivalent form // is specified on the command line. GTEST_API_ extern bool g_help_flag; // Returns the current time in milliseconds. GTEST_API_ TimeInMillis GetTimeInMillis(); // Returns true if and only if Google Test should use colors in the output. GTEST_API_ bool ShouldUseColor(bool stdout_is_tty); // Formats the given time in milliseconds as seconds. GTEST_API_ std::string FormatTimeInMillisAsSeconds(TimeInMillis ms); // Converts the given time in milliseconds to a date string in the ISO 8601 // format, without the timezone information. N.B.: due to the use the // non-reentrant localtime() function, this function is not thread safe. Do // not use it in any code that can be called from multiple threads. GTEST_API_ std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms); // Parses a string for an Int32 flag, in the form of "--flag=value". // // On success, stores the value of the flag in *value, and returns // true. On failure, returns false without changing *value. GTEST_API_ bool ParseInt32Flag( const char* str, const char* flag, int32_t* value); // Returns a random seed in range [1, kMaxRandomSeed] based on the // given --gtest_random_seed flag value. inline int GetRandomSeedFromFlag(int32_t random_seed_flag) { const unsigned int raw_seed = (random_seed_flag == 0) ? static_cast(GetTimeInMillis()) : static_cast(random_seed_flag); // Normalizes the actual seed to range [1, kMaxRandomSeed] such that // it's easy to type. const int normalized_seed = static_cast((raw_seed - 1U) % static_cast(kMaxRandomSeed)) + 1; return normalized_seed; } // Returns the first valid random seed after 'seed'. The behavior is // undefined if 'seed' is invalid. The seed after kMaxRandomSeed is // considered to be 1. inline int GetNextRandomSeed(int seed) { GTEST_CHECK_(1 <= seed && seed <= kMaxRandomSeed) << "Invalid random seed " << seed << " - must be in [1, " << kMaxRandomSeed << "]."; const int next_seed = seed + 1; return (next_seed > kMaxRandomSeed) ? 1 : next_seed; } // This class saves the values of all Google Test flags in its c'tor, and // restores them in its d'tor. class GTestFlagSaver { public: // The c'tor. GTestFlagSaver() { also_run_disabled_tests_ = GTEST_FLAG(also_run_disabled_tests); break_on_failure_ = GTEST_FLAG(break_on_failure); catch_exceptions_ = GTEST_FLAG(catch_exceptions); color_ = GTEST_FLAG(color); death_test_style_ = GTEST_FLAG(death_test_style); death_test_use_fork_ = GTEST_FLAG(death_test_use_fork); fail_fast_ = GTEST_FLAG(fail_fast); filter_ = GTEST_FLAG(filter); internal_run_death_test_ = GTEST_FLAG(internal_run_death_test); list_tests_ = GTEST_FLAG(list_tests); output_ = GTEST_FLAG(output); brief_ = GTEST_FLAG(brief); print_time_ = GTEST_FLAG(print_time); print_utf8_ = GTEST_FLAG(print_utf8); random_seed_ = GTEST_FLAG(random_seed); repeat_ = GTEST_FLAG(repeat); shuffle_ = GTEST_FLAG(shuffle); stack_trace_depth_ = GTEST_FLAG(stack_trace_depth); stream_result_to_ = GTEST_FLAG(stream_result_to); throw_on_failure_ = GTEST_FLAG(throw_on_failure); } // The d'tor is not virtual. DO NOT INHERIT FROM THIS CLASS. ~GTestFlagSaver() { GTEST_FLAG(also_run_disabled_tests) = also_run_disabled_tests_; GTEST_FLAG(break_on_failure) = break_on_failure_; GTEST_FLAG(catch_exceptions) = catch_exceptions_; GTEST_FLAG(color) = color_; GTEST_FLAG(death_test_style) = death_test_style_; GTEST_FLAG(death_test_use_fork) = death_test_use_fork_; GTEST_FLAG(filter) = filter_; GTEST_FLAG(fail_fast) = fail_fast_; GTEST_FLAG(internal_run_death_test) = internal_run_death_test_; GTEST_FLAG(list_tests) = list_tests_; GTEST_FLAG(output) = output_; GTEST_FLAG(brief) = brief_; GTEST_FLAG(print_time) = print_time_; GTEST_FLAG(print_utf8) = print_utf8_; GTEST_FLAG(random_seed) = random_seed_; GTEST_FLAG(repeat) = repeat_; GTEST_FLAG(shuffle) = shuffle_; GTEST_FLAG(stack_trace_depth) = stack_trace_depth_; GTEST_FLAG(stream_result_to) = stream_result_to_; GTEST_FLAG(throw_on_failure) = throw_on_failure_; } private: // Fields for saving the original values of flags. bool also_run_disabled_tests_; bool break_on_failure_; bool catch_exceptions_; std::string color_; std::string death_test_style_; bool death_test_use_fork_; bool fail_fast_; std::string filter_; std::string internal_run_death_test_; bool list_tests_; std::string output_; bool brief_; bool print_time_; bool print_utf8_; int32_t random_seed_; int32_t repeat_; bool shuffle_; int32_t stack_trace_depth_; std::string stream_result_to_; bool throw_on_failure_; } GTEST_ATTRIBUTE_UNUSED_; // Converts a Unicode code point to a narrow string in UTF-8 encoding. // code_point parameter is of type UInt32 because wchar_t may not be // wide enough to contain a code point. // If the code_point is not a valid Unicode code point // (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted // to "(Invalid Unicode 0xXXXXXXXX)". GTEST_API_ std::string CodePointToUtf8(uint32_t code_point); // Converts a wide string to a narrow string in UTF-8 encoding. // The wide string is assumed to have the following encoding: // UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin) // UTF-32 if sizeof(wchar_t) == 4 (on Linux) // Parameter str points to a null-terminated wide string. // Parameter num_chars may additionally limit the number // of wchar_t characters processed. -1 is used when the entire string // should be processed. // If the string contains code points that are not valid Unicode code points // (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output // as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding // and contains invalid UTF-16 surrogate pairs, values in those pairs // will be encoded as individual Unicode characters from Basic Normal Plane. GTEST_API_ std::string WideStringToUtf8(const wchar_t* str, int num_chars); // Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file // if the variable is present. If a file already exists at this location, this // function will write over it. If the variable is present, but the file cannot // be created, prints an error and exits. void WriteToShardStatusFileIfNeeded(); // Checks whether sharding is enabled by examining the relevant // environment variable values. If the variables are present, // but inconsistent (e.g., shard_index >= total_shards), prints // an error and exits. If in_subprocess_for_death_test, sharding is // disabled because it must only be applied to the original test // process. Otherwise, we could filter out death tests we intended to execute. GTEST_API_ bool ShouldShard(const char* total_shards_str, const char* shard_index_str, bool in_subprocess_for_death_test); // Parses the environment variable var as a 32-bit integer. If it is unset, // returns default_val. If it is not a 32-bit integer, prints an error and // and aborts. GTEST_API_ int32_t Int32FromEnvOrDie(const char* env_var, int32_t default_val); // Given the total number of shards, the shard index, and the test id, // returns true if and only if the test should be run on this shard. The test id // is some arbitrary but unique non-negative integer assigned to each test // method. Assumes that 0 <= shard_index < total_shards. GTEST_API_ bool ShouldRunTestOnShard( int total_shards, int shard_index, int test_id); // STL container utilities. // Returns the number of elements in the given container that satisfy // the given predicate. template inline int CountIf(const Container& c, Predicate predicate) { // Implemented as an explicit loop since std::count_if() in libCstd on // Solaris has a non-standard signature. int count = 0; for (typename Container::const_iterator it = c.begin(); it != c.end(); ++it) { if (predicate(*it)) ++count; } return count; } // Applies a function/functor to each element in the container. template void ForEach(const Container& c, Functor functor) { std::for_each(c.begin(), c.end(), functor); } // Returns the i-th element of the vector, or default_value if i is not // in range [0, v.size()). template inline E GetElementOr(const std::vector& v, int i, E default_value) { return (i < 0 || i >= static_cast(v.size())) ? default_value : v[static_cast(i)]; } // Performs an in-place shuffle of a range of the vector's elements. // 'begin' and 'end' are element indices as an STL-style range; // i.e. [begin, end) are shuffled, where 'end' == size() means to // shuffle to the end of the vector. template void ShuffleRange(internal::Random* random, int begin, int end, std::vector* v) { const int size = static_cast(v->size()); GTEST_CHECK_(0 <= begin && begin <= size) << "Invalid shuffle range start " << begin << ": must be in range [0, " << size << "]."; GTEST_CHECK_(begin <= end && end <= size) << "Invalid shuffle range finish " << end << ": must be in range [" << begin << ", " << size << "]."; // Fisher-Yates shuffle, from // http://en.wikipedia.org/wiki/Fisher-Yates_shuffle for (int range_width = end - begin; range_width >= 2; range_width--) { const int last_in_range = begin + range_width - 1; const int selected = begin + static_cast(random->Generate(static_cast(range_width))); std::swap((*v)[static_cast(selected)], (*v)[static_cast(last_in_range)]); } } // Performs an in-place shuffle of the vector's elements. template inline void Shuffle(internal::Random* random, std::vector* v) { ShuffleRange(random, 0, static_cast(v->size()), v); } // A function for deleting an object. Handy for being used as a // functor. template static void Delete(T* x) { delete x; } // A predicate that checks the key of a TestProperty against a known key. // // TestPropertyKeyIs is copyable. class TestPropertyKeyIs { public: // Constructor. // // TestPropertyKeyIs has NO default constructor. explicit TestPropertyKeyIs(const std::string& key) : key_(key) {} // Returns true if and only if the test name of test property matches on key_. bool operator()(const TestProperty& test_property) const { return test_property.key() == key_; } private: std::string key_; }; // Class UnitTestOptions. // // This class contains functions for processing options the user // specifies when running the tests. It has only static members. // // In most cases, the user can specify an option using either an // environment variable or a command line flag. E.g. you can set the // test filter using either GTEST_FILTER or --gtest_filter. If both // the variable and the flag are present, the latter overrides the // former. class GTEST_API_ UnitTestOptions { public: // Functions for processing the gtest_output flag. // Returns the output format, or "" for normal printed output. static std::string GetOutputFormat(); // Returns the absolute path of the requested output file, or the // default (test_detail.xml in the original working directory) if // none was explicitly specified. static std::string GetAbsolutePathToOutputFile(); // Functions for processing the gtest_filter flag. // Returns true if and only if the user-specified filter matches the test // suite name and the test name. static bool FilterMatchesTest(const std::string& test_suite_name, const std::string& test_name); #if GTEST_OS_WINDOWS // Function for supporting the gtest_catch_exception flag. // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. // This function is useful as an __except condition. static int GTestShouldProcessSEH(DWORD exception_code); #endif // GTEST_OS_WINDOWS // Returns true if "name" matches the ':' separated list of glob-style // filters in "filter". static bool MatchesFilter(const std::string& name, const char* filter); }; // Returns the current application's name, removing directory path if that // is present. Used by UnitTestOptions::GetOutputFile. GTEST_API_ FilePath GetCurrentExecutableName(); // The role interface for getting the OS stack trace as a string. class OsStackTraceGetterInterface { public: OsStackTraceGetterInterface() {} virtual ~OsStackTraceGetterInterface() {} // Returns the current OS stack trace as an std::string. Parameters: // // max_depth - the maximum number of stack frames to be included // in the trace. // skip_count - the number of top frames to be skipped; doesn't count // against max_depth. virtual std::string CurrentStackTrace(int max_depth, int skip_count) = 0; // UponLeavingGTest() should be called immediately before Google Test calls // user code. It saves some information about the current stack that // CurrentStackTrace() will use to find and hide Google Test stack frames. virtual void UponLeavingGTest() = 0; // This string is inserted in place of stack frames that are part of // Google Test's implementation. static const char* const kElidedFramesMarker; private: GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetterInterface); }; // A working implementation of the OsStackTraceGetterInterface interface. class OsStackTraceGetter : public OsStackTraceGetterInterface { public: OsStackTraceGetter() {} std::string CurrentStackTrace(int max_depth, int skip_count) override; void UponLeavingGTest() override; private: #if GTEST_HAS_ABSL Mutex mutex_; // Protects all internal state. // We save the stack frame below the frame that calls user code. // We do this because the address of the frame immediately below // the user code changes between the call to UponLeavingGTest() // and any calls to the stack trace code from within the user code. void* caller_frame_ = nullptr; #endif // GTEST_HAS_ABSL GTEST_DISALLOW_COPY_AND_ASSIGN_(OsStackTraceGetter); }; // Information about a Google Test trace point. struct TraceInfo { const char* file; int line; std::string message; }; // This is the default global test part result reporter used in UnitTestImpl. // This class should only be used by UnitTestImpl. class DefaultGlobalTestPartResultReporter : public TestPartResultReporterInterface { public: explicit DefaultGlobalTestPartResultReporter(UnitTestImpl* unit_test); // Implements the TestPartResultReporterInterface. Reports the test part // result in the current test. void ReportTestPartResult(const TestPartResult& result) override; private: UnitTestImpl* const unit_test_; GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultGlobalTestPartResultReporter); }; // This is the default per thread test part result reporter used in // UnitTestImpl. This class should only be used by UnitTestImpl. class DefaultPerThreadTestPartResultReporter : public TestPartResultReporterInterface { public: explicit DefaultPerThreadTestPartResultReporter(UnitTestImpl* unit_test); // Implements the TestPartResultReporterInterface. The implementation just // delegates to the current global test part result reporter of *unit_test_. void ReportTestPartResult(const TestPartResult& result) override; private: UnitTestImpl* const unit_test_; GTEST_DISALLOW_COPY_AND_ASSIGN_(DefaultPerThreadTestPartResultReporter); }; // The private implementation of the UnitTest class. We don't protect // the methods under a mutex, as this class is not accessible by a // user and the UnitTest class that delegates work to this class does // proper locking. class GTEST_API_ UnitTestImpl { public: explicit UnitTestImpl(UnitTest* parent); virtual ~UnitTestImpl(); // There are two different ways to register your own TestPartResultReporter. // You can register your own repoter to listen either only for test results // from the current thread or for results from all threads. // By default, each per-thread test result repoter just passes a new // TestPartResult to the global test result reporter, which registers the // test part result for the currently running test. // Returns the global test part result reporter. TestPartResultReporterInterface* GetGlobalTestPartResultReporter(); // Sets the global test part result reporter. void SetGlobalTestPartResultReporter( TestPartResultReporterInterface* reporter); // Returns the test part result reporter for the current thread. TestPartResultReporterInterface* GetTestPartResultReporterForCurrentThread(); // Sets the test part result reporter for the current thread. void SetTestPartResultReporterForCurrentThread( TestPartResultReporterInterface* reporter); // Gets the number of successful test suites. int successful_test_suite_count() const; // Gets the number of failed test suites. int failed_test_suite_count() const; // Gets the number of all test suites. int total_test_suite_count() const; // Gets the number of all test suites that contain at least one test // that should run. int test_suite_to_run_count() const; // Gets the number of successful tests. int successful_test_count() const; // Gets the number of skipped tests. int skipped_test_count() const; // Gets the number of failed tests. int failed_test_count() const; // Gets the number of disabled tests that will be reported in the XML report. int reportable_disabled_test_count() const; // Gets the number of disabled tests. int disabled_test_count() const; // Gets the number of tests to be printed in the XML report. int reportable_test_count() const; // Gets the number of all tests. int total_test_count() const; // Gets the number of tests that should run. int test_to_run_count() const; // Gets the time of the test program start, in ms from the start of the // UNIX epoch. TimeInMillis start_timestamp() const { return start_timestamp_; } // Gets the elapsed time, in milliseconds. TimeInMillis elapsed_time() const { return elapsed_time_; } // Returns true if and only if the unit test passed (i.e. all test suites // passed). bool Passed() const { return !Failed(); } // Returns true if and only if the unit test failed (i.e. some test suite // failed or something outside of all tests failed). bool Failed() const { return failed_test_suite_count() > 0 || ad_hoc_test_result()->Failed(); } // Gets the i-th test suite among all the test suites. i can range from 0 to // total_test_suite_count() - 1. If i is not in that range, returns NULL. const TestSuite* GetTestSuite(int i) const { const int index = GetElementOr(test_suite_indices_, i, -1); return index < 0 ? nullptr : test_suites_[static_cast(i)]; } // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ const TestCase* GetTestCase(int i) const { return GetTestSuite(i); } #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Gets the i-th test suite among all the test suites. i can range from 0 to // total_test_suite_count() - 1. If i is not in that range, returns NULL. TestSuite* GetMutableSuiteCase(int i) { const int index = GetElementOr(test_suite_indices_, i, -1); return index < 0 ? nullptr : test_suites_[static_cast(index)]; } // Provides access to the event listener list. TestEventListeners* listeners() { return &listeners_; } // Returns the TestResult for the test that's currently running, or // the TestResult for the ad hoc test if no test is running. TestResult* current_test_result(); // Returns the TestResult for the ad hoc test. const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } // Sets the OS stack trace getter. // // Does nothing if the input and the current OS stack trace getter // are the same; otherwise, deletes the old getter and makes the // input the current getter. void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter); // Returns the current OS stack trace getter if it is not NULL; // otherwise, creates an OsStackTraceGetter, makes it the current // getter, and returns it. OsStackTraceGetterInterface* os_stack_trace_getter(); // Returns the current OS stack trace as an std::string. // // The maximum number of stack frames to be included is specified by // the gtest_stack_trace_depth flag. The skip_count parameter // specifies the number of top frames to be skipped, which doesn't // count against the number of frames to be included. // // For example, if Foo() calls Bar(), which in turn calls // CurrentOsStackTraceExceptTop(1), Foo() will be included in the // trace but Bar() and CurrentOsStackTraceExceptTop() won't. std::string CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_; // Finds and returns a TestSuite with the given name. If one doesn't // exist, creates one and returns it. // // Arguments: // // test_suite_name: name of the test suite // type_param: the name of the test's type parameter, or NULL if // this is not a typed or a type-parameterized test. // set_up_tc: pointer to the function that sets up the test suite // tear_down_tc: pointer to the function that tears down the test suite TestSuite* GetTestSuite(const char* test_suite_name, const char* type_param, internal::SetUpTestSuiteFunc set_up_tc, internal::TearDownTestSuiteFunc tear_down_tc); // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ TestCase* GetTestCase(const char* test_case_name, const char* type_param, internal::SetUpTestSuiteFunc set_up_tc, internal::TearDownTestSuiteFunc tear_down_tc) { return GetTestSuite(test_case_name, type_param, set_up_tc, tear_down_tc); } #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Adds a TestInfo to the unit test. // // Arguments: // // set_up_tc: pointer to the function that sets up the test suite // tear_down_tc: pointer to the function that tears down the test suite // test_info: the TestInfo object void AddTestInfo(internal::SetUpTestSuiteFunc set_up_tc, internal::TearDownTestSuiteFunc tear_down_tc, TestInfo* test_info) { #if GTEST_HAS_DEATH_TEST // In order to support thread-safe death tests, we need to // remember the original working directory when the test program // was first invoked. We cannot do this in RUN_ALL_TESTS(), as // the user may have changed the current directory before calling // RUN_ALL_TESTS(). Therefore we capture the current directory in // AddTestInfo(), which is called to register a TEST or TEST_F // before main() is reached. if (original_working_dir_.IsEmpty()) { original_working_dir_.Set(FilePath::GetCurrentDir()); GTEST_CHECK_(!original_working_dir_.IsEmpty()) << "Failed to get the current working directory."; } #endif // GTEST_HAS_DEATH_TEST GetTestSuite(test_info->test_suite_name(), test_info->type_param(), set_up_tc, tear_down_tc) ->AddTestInfo(test_info); } // Returns ParameterizedTestSuiteRegistry object used to keep track of // value-parameterized tests and instantiate and register them. internal::ParameterizedTestSuiteRegistry& parameterized_test_registry() { return parameterized_test_registry_; } std::set* ignored_parameterized_test_suites() { return &ignored_parameterized_test_suites_; } // Returns TypeParameterizedTestSuiteRegistry object used to keep track of // type-parameterized tests and instantiations of them. internal::TypeParameterizedTestSuiteRegistry& type_parameterized_test_registry() { return type_parameterized_test_registry_; } // Sets the TestSuite object for the test that's currently running. void set_current_test_suite(TestSuite* a_current_test_suite) { current_test_suite_ = a_current_test_suite; } // Sets the TestInfo object for the test that's currently running. If // current_test_info is NULL, the assertion results will be stored in // ad_hoc_test_result_. void set_current_test_info(TestInfo* a_current_test_info) { current_test_info_ = a_current_test_info; } // Registers all parameterized tests defined using TEST_P and // INSTANTIATE_TEST_SUITE_P, creating regular tests for each test/parameter // combination. This method can be called more then once; it has guards // protecting from registering the tests more then once. If // value-parameterized tests are disabled, RegisterParameterizedTests is // present but does nothing. void RegisterParameterizedTests(); // Runs all tests in this UnitTest object, prints the result, and // returns true if all tests are successful. If any exception is // thrown during a test, this test is considered to be failed, but // the rest of the tests will still be run. bool RunAllTests(); // Clears the results of all tests, except the ad hoc tests. void ClearNonAdHocTestResult() { ForEach(test_suites_, TestSuite::ClearTestSuiteResult); } // Clears the results of ad-hoc test assertions. void ClearAdHocTestResult() { ad_hoc_test_result_.Clear(); } // Adds a TestProperty to the current TestResult object when invoked in a // context of a test or a test suite, or to the global property set. If the // result already contains a property with the same key, the value will be // updated. void RecordProperty(const TestProperty& test_property); enum ReactionToSharding { HONOR_SHARDING_PROTOCOL, IGNORE_SHARDING_PROTOCOL }; // Matches the full name of each test against the user-specified // filter to decide whether the test should run, then records the // result in each TestSuite and TestInfo object. // If shard_tests == HONOR_SHARDING_PROTOCOL, further filters tests // based on sharding variables in the environment. // Returns the number of tests that should run. int FilterTests(ReactionToSharding shard_tests); // Prints the names of the tests matching the user-specified filter flag. void ListTestsMatchingFilter(); const TestSuite* current_test_suite() const { return current_test_suite_; } TestInfo* current_test_info() { return current_test_info_; } const TestInfo* current_test_info() const { return current_test_info_; } // Returns the vector of environments that need to be set-up/torn-down // before/after the tests are run. std::vector& environments() { return environments_; } // Getters for the per-thread Google Test trace stack. std::vector& gtest_trace_stack() { return *(gtest_trace_stack_.pointer()); } const std::vector& gtest_trace_stack() const { return gtest_trace_stack_.get(); } #if GTEST_HAS_DEATH_TEST void InitDeathTestSubprocessControlInfo() { internal_run_death_test_flag_.reset(ParseInternalRunDeathTestFlag()); } // Returns a pointer to the parsed --gtest_internal_run_death_test // flag, or NULL if that flag was not specified. // This information is useful only in a death test child process. // Must not be called before a call to InitGoogleTest. const InternalRunDeathTestFlag* internal_run_death_test_flag() const { return internal_run_death_test_flag_.get(); } // Returns a pointer to the current death test factory. internal::DeathTestFactory* death_test_factory() { return death_test_factory_.get(); } void SuppressTestEventsIfInSubprocess(); friend class ReplaceDeathTestFactory; #endif // GTEST_HAS_DEATH_TEST // Initializes the event listener performing XML output as specified by // UnitTestOptions. Must not be called before InitGoogleTest. void ConfigureXmlOutput(); #if GTEST_CAN_STREAM_RESULTS_ // Initializes the event listener for streaming test results to a socket. // Must not be called before InitGoogleTest. void ConfigureStreamingOutput(); #endif // Performs initialization dependent upon flag values obtained in // ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to // ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest // this function is also called from RunAllTests. Since this function can be // called more than once, it has to be idempotent. void PostFlagParsingInit(); // Gets the random seed used at the start of the current test iteration. int random_seed() const { return random_seed_; } // Gets the random number generator. internal::Random* random() { return &random_; } // Shuffles all test suites, and the tests within each test suite, // making sure that death tests are still run first. void ShuffleTests(); // Restores the test suites and tests to their order before the first shuffle. void UnshuffleTests(); // Returns the value of GTEST_FLAG(catch_exceptions) at the moment // UnitTest::Run() starts. bool catch_exceptions() const { return catch_exceptions_; } private: friend class ::testing::UnitTest; // Used by UnitTest::Run() to capture the state of // GTEST_FLAG(catch_exceptions) at the moment it starts. void set_catch_exceptions(bool value) { catch_exceptions_ = value; } // The UnitTest object that owns this implementation object. UnitTest* const parent_; // The working directory when the first TEST() or TEST_F() was // executed. internal::FilePath original_working_dir_; // The default test part result reporters. DefaultGlobalTestPartResultReporter default_global_test_part_result_reporter_; DefaultPerThreadTestPartResultReporter default_per_thread_test_part_result_reporter_; // Points to (but doesn't own) the global test part result reporter. TestPartResultReporterInterface* global_test_part_result_repoter_; // Protects read and write access to global_test_part_result_reporter_. internal::Mutex global_test_part_result_reporter_mutex_; // Points to (but doesn't own) the per-thread test part result reporter. internal::ThreadLocal per_thread_test_part_result_reporter_; // The vector of environments that need to be set-up/torn-down // before/after the tests are run. std::vector environments_; // The vector of TestSuites in their original order. It owns the // elements in the vector. std::vector test_suites_; // Provides a level of indirection for the test suite list to allow // easy shuffling and restoring the test suite order. The i-th // element of this vector is the index of the i-th test suite in the // shuffled order. std::vector test_suite_indices_; // ParameterizedTestRegistry object used to register value-parameterized // tests. internal::ParameterizedTestSuiteRegistry parameterized_test_registry_; internal::TypeParameterizedTestSuiteRegistry type_parameterized_test_registry_; // The set holding the name of parameterized // test suites that may go uninstantiated. std::set ignored_parameterized_test_suites_; // Indicates whether RegisterParameterizedTests() has been called already. bool parameterized_tests_registered_; // Index of the last death test suite registered. Initially -1. int last_death_test_suite_; // This points to the TestSuite for the currently running test. It // changes as Google Test goes through one test suite after another. // When no test is running, this is set to NULL and Google Test // stores assertion results in ad_hoc_test_result_. Initially NULL. TestSuite* current_test_suite_; // This points to the TestInfo for the currently running test. It // changes as Google Test goes through one test after another. When // no test is running, this is set to NULL and Google Test stores // assertion results in ad_hoc_test_result_. Initially NULL. TestInfo* current_test_info_; // Normally, a user only writes assertions inside a TEST or TEST_F, // or inside a function called by a TEST or TEST_F. Since Google // Test keeps track of which test is current running, it can // associate such an assertion with the test it belongs to. // // If an assertion is encountered when no TEST or TEST_F is running, // Google Test attributes the assertion result to an imaginary "ad hoc" // test, and records the result in ad_hoc_test_result_. TestResult ad_hoc_test_result_; // The list of event listeners that can be used to track events inside // Google Test. TestEventListeners listeners_; // The OS stack trace getter. Will be deleted when the UnitTest // object is destructed. By default, an OsStackTraceGetter is used, // but the user can set this field to use a custom getter if that is // desired. OsStackTraceGetterInterface* os_stack_trace_getter_; // True if and only if PostFlagParsingInit() has been called. bool post_flag_parse_init_performed_; // The random number seed used at the beginning of the test run. int random_seed_; // Our random number generator. internal::Random random_; // The time of the test program start, in ms from the start of the // UNIX epoch. TimeInMillis start_timestamp_; // How long the test took to run, in milliseconds. TimeInMillis elapsed_time_; #if GTEST_HAS_DEATH_TEST // The decomposed components of the gtest_internal_run_death_test flag, // parsed when RUN_ALL_TESTS is called. std::unique_ptr internal_run_death_test_flag_; std::unique_ptr death_test_factory_; #endif // GTEST_HAS_DEATH_TEST // A per-thread stack of traces created by the SCOPED_TRACE() macro. internal::ThreadLocal > gtest_trace_stack_; // The value of GTEST_FLAG(catch_exceptions) at the moment RunAllTests() // starts. bool catch_exceptions_; GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTestImpl); }; // class UnitTestImpl // Convenience function for accessing the global UnitTest // implementation object. inline UnitTestImpl* GetUnitTestImpl() { return UnitTest::GetInstance()->impl(); } #if GTEST_USES_SIMPLE_RE // Internal helper functions for implementing the simple regular // expression matcher. GTEST_API_ bool IsInSet(char ch, const char* str); GTEST_API_ bool IsAsciiDigit(char ch); GTEST_API_ bool IsAsciiPunct(char ch); GTEST_API_ bool IsRepeat(char ch); GTEST_API_ bool IsAsciiWhiteSpace(char ch); GTEST_API_ bool IsAsciiWordChar(char ch); GTEST_API_ bool IsValidEscape(char ch); GTEST_API_ bool AtomMatchesChar(bool escaped, char pattern, char ch); GTEST_API_ bool ValidateRegex(const char* regex); GTEST_API_ bool MatchRegexAtHead(const char* regex, const char* str); GTEST_API_ bool MatchRepetitionAndRegexAtHead( bool escaped, char ch, char repeat, const char* regex, const char* str); GTEST_API_ bool MatchRegexAnywhere(const char* regex, const char* str); #endif // GTEST_USES_SIMPLE_RE // Parses the command line for Google Test flags, without initializing // other parts of Google Test. GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, char** argv); GTEST_API_ void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv); #if GTEST_HAS_DEATH_TEST // Returns the message describing the last system error, regardless of the // platform. GTEST_API_ std::string GetLastErrnoDescription(); // Attempts to parse a string into a positive integer pointed to by the // number parameter. Returns true if that is possible. // GTEST_HAS_DEATH_TEST implies that we have ::std::string, so we can use // it here. template bool ParseNaturalNumber(const ::std::string& str, Integer* number) { // Fail fast if the given string does not begin with a digit; // this bypasses strtoXXX's "optional leading whitespace and plus // or minus sign" semantics, which are undesirable here. if (str.empty() || !IsDigit(str[0])) { return false; } errno = 0; char* end; // BiggestConvertible is the largest integer type that system-provided // string-to-number conversion routines can return. using BiggestConvertible = unsigned long long; // NOLINT const BiggestConvertible parsed = strtoull(str.c_str(), &end, 10); // NOLINT const bool parse_success = *end == '\0' && errno == 0; GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed)); const Integer result = static_cast(parsed); if (parse_success && static_cast(result) == parsed) { *number = result; return true; } return false; } #endif // GTEST_HAS_DEATH_TEST // TestResult contains some private methods that should be hidden from // Google Test user but are required for testing. This class allow our tests // to access them. // // This class is supplied only for the purpose of testing Google Test's own // constructs. Do not use it in user tests, either directly or indirectly. class TestResultAccessor { public: static void RecordProperty(TestResult* test_result, const std::string& xml_element, const TestProperty& property) { test_result->RecordProperty(xml_element, property); } static void ClearTestPartResults(TestResult* test_result) { test_result->ClearTestPartResults(); } static const std::vector& test_part_results( const TestResult& test_result) { return test_result.test_part_results(); } }; #if GTEST_CAN_STREAM_RESULTS_ // Streams test results to the given port on the given host machine. class StreamingListener : public EmptyTestEventListener { public: // Abstract base class for writing strings to a socket. class AbstractSocketWriter { public: virtual ~AbstractSocketWriter() {} // Sends a string to the socket. virtual void Send(const std::string& message) = 0; // Closes the socket. virtual void CloseConnection() {} // Sends a string and a newline to the socket. void SendLn(const std::string& message) { Send(message + "\n"); } }; // Concrete class for actually writing strings to a socket. class SocketWriter : public AbstractSocketWriter { public: SocketWriter(const std::string& host, const std::string& port) : sockfd_(-1), host_name_(host), port_num_(port) { MakeConnection(); } ~SocketWriter() override { if (sockfd_ != -1) CloseConnection(); } // Sends a string to the socket. void Send(const std::string& message) override { GTEST_CHECK_(sockfd_ != -1) << "Send() can be called only when there is a connection."; const auto len = static_cast(message.length()); if (write(sockfd_, message.c_str(), len) != static_cast(len)) { GTEST_LOG_(WARNING) << "stream_result_to: failed to stream to " << host_name_ << ":" << port_num_; } } private: // Creates a client socket and connects to the server. void MakeConnection(); // Closes the socket. void CloseConnection() override { GTEST_CHECK_(sockfd_ != -1) << "CloseConnection() can be called only when there is a connection."; close(sockfd_); sockfd_ = -1; } int sockfd_; // socket file descriptor const std::string host_name_; const std::string port_num_; GTEST_DISALLOW_COPY_AND_ASSIGN_(SocketWriter); }; // class SocketWriter // Escapes '=', '&', '%', and '\n' characters in str as "%xx". static std::string UrlEncode(const char* str); StreamingListener(const std::string& host, const std::string& port) : socket_writer_(new SocketWriter(host, port)) { Start(); } explicit StreamingListener(AbstractSocketWriter* socket_writer) : socket_writer_(socket_writer) { Start(); } void OnTestProgramStart(const UnitTest& /* unit_test */) override { SendLn("event=TestProgramStart"); } void OnTestProgramEnd(const UnitTest& unit_test) override { // Note that Google Test current only report elapsed time for each // test iteration, not for the entire test program. SendLn("event=TestProgramEnd&passed=" + FormatBool(unit_test.Passed())); // Notify the streaming server to stop. socket_writer_->CloseConnection(); } void OnTestIterationStart(const UnitTest& /* unit_test */, int iteration) override { SendLn("event=TestIterationStart&iteration=" + StreamableToString(iteration)); } void OnTestIterationEnd(const UnitTest& unit_test, int /* iteration */) override { SendLn("event=TestIterationEnd&passed=" + FormatBool(unit_test.Passed()) + "&elapsed_time=" + StreamableToString(unit_test.elapsed_time()) + "ms"); } // Note that "event=TestCaseStart" is a wire format and has to remain // "case" for compatibility void OnTestCaseStart(const TestCase& test_case) override { SendLn(std::string("event=TestCaseStart&name=") + test_case.name()); } // Note that "event=TestCaseEnd" is a wire format and has to remain // "case" for compatibility void OnTestCaseEnd(const TestCase& test_case) override { SendLn("event=TestCaseEnd&passed=" + FormatBool(test_case.Passed()) + "&elapsed_time=" + StreamableToString(test_case.elapsed_time()) + "ms"); } void OnTestStart(const TestInfo& test_info) override { SendLn(std::string("event=TestStart&name=") + test_info.name()); } void OnTestEnd(const TestInfo& test_info) override { SendLn("event=TestEnd&passed=" + FormatBool((test_info.result())->Passed()) + "&elapsed_time=" + StreamableToString((test_info.result())->elapsed_time()) + "ms"); } void OnTestPartResult(const TestPartResult& test_part_result) override { const char* file_name = test_part_result.file_name(); if (file_name == nullptr) file_name = ""; SendLn("event=TestPartResult&file=" + UrlEncode(file_name) + "&line=" + StreamableToString(test_part_result.line_number()) + "&message=" + UrlEncode(test_part_result.message())); } private: // Sends the given message and a newline to the socket. void SendLn(const std::string& message) { socket_writer_->SendLn(message); } // Called at the start of streaming to notify the receiver what // protocol we are using. void Start() { SendLn("gtest_streaming_protocol_version=1.0"); } std::string FormatBool(bool value) { return value ? "1" : "0"; } const std::unique_ptr socket_writer_; GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamingListener); }; // class StreamingListener #endif // GTEST_CAN_STREAM_RESULTS_ } // namespace internal } // namespace testing GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251 #endif // GOOGLETEST_SRC_GTEST_INTERNAL_INL_H_ ================================================ FILE: test/gtest/src/gtest-matchers.cc ================================================ // Copyright 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // The Google C++ Testing and Mocking Framework (Google Test) // // This file implements just enough of the matcher interface to allow // EXPECT_DEATH and friends to accept a matcher argument. #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-port.h" #include "gtest/gtest-matchers.h" #include namespace testing { // Constructs a matcher that matches a const std::string& whose value is // equal to s. Matcher::Matcher(const std::string& s) { *this = Eq(s); } // Constructs a matcher that matches a const std::string& whose value is // equal to s. Matcher::Matcher(const char* s) { *this = Eq(std::string(s)); } // Constructs a matcher that matches a std::string whose value is equal to // s. Matcher::Matcher(const std::string& s) { *this = Eq(s); } // Constructs a matcher that matches a std::string whose value is equal to // s. Matcher::Matcher(const char* s) { *this = Eq(std::string(s)); } #if GTEST_INTERNAL_HAS_STRING_VIEW // Constructs a matcher that matches a const StringView& whose value is // equal to s. Matcher::Matcher(const std::string& s) { *this = Eq(s); } // Constructs a matcher that matches a const StringView& whose value is // equal to s. Matcher::Matcher(const char* s) { *this = Eq(std::string(s)); } // Constructs a matcher that matches a const StringView& whose value is // equal to s. Matcher::Matcher(internal::StringView s) { *this = Eq(std::string(s)); } // Constructs a matcher that matches a StringView whose value is equal to // s. Matcher::Matcher(const std::string& s) { *this = Eq(s); } // Constructs a matcher that matches a StringView whose value is equal to // s. Matcher::Matcher(const char* s) { *this = Eq(std::string(s)); } // Constructs a matcher that matches a StringView whose value is equal to // s. Matcher::Matcher(internal::StringView s) { *this = Eq(std::string(s)); } #endif // GTEST_INTERNAL_HAS_STRING_VIEW } // namespace testing ================================================ FILE: test/gtest/src/gtest-port.cc ================================================ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "gtest/internal/gtest-port.h" #include #include #include #include #include #include #include #if GTEST_OS_WINDOWS # include # include # include # include // Used in ThreadLocal. # ifdef _MSC_VER # include # endif // _MSC_VER #else # include #endif // GTEST_OS_WINDOWS #if GTEST_OS_MAC # include # include # include #endif // GTEST_OS_MAC #if GTEST_OS_DRAGONFLY || GTEST_OS_FREEBSD || GTEST_OS_GNU_KFREEBSD || \ GTEST_OS_NETBSD || GTEST_OS_OPENBSD # include # if GTEST_OS_DRAGONFLY || GTEST_OS_FREEBSD || GTEST_OS_GNU_KFREEBSD # include # endif #endif #if GTEST_OS_QNX # include # include # include #endif // GTEST_OS_QNX #if GTEST_OS_AIX # include # include #endif // GTEST_OS_AIX #if GTEST_OS_FUCHSIA # include # include #endif // GTEST_OS_FUCHSIA #include "gtest/gtest-spi.h" #include "gtest/gtest-message.h" #include "gtest/internal/gtest-internal.h" #include "gtest/internal/gtest-string.h" #include "src/gtest-internal-inl.h" namespace testing { namespace internal { #if defined(_MSC_VER) || defined(__BORLANDC__) // MSVC and C++Builder do not provide a definition of STDERR_FILENO. const int kStdOutFileno = 1; const int kStdErrFileno = 2; #else const int kStdOutFileno = STDOUT_FILENO; const int kStdErrFileno = STDERR_FILENO; #endif // _MSC_VER #if GTEST_OS_LINUX namespace { template T ReadProcFileField(const std::string& filename, int field) { std::string dummy; std::ifstream file(filename.c_str()); while (field-- > 0) { file >> dummy; } T output = 0; file >> output; return output; } } // namespace // Returns the number of active threads, or 0 when there is an error. size_t GetThreadCount() { const std::string filename = (Message() << "/proc/" << getpid() << "/stat").GetString(); return ReadProcFileField(filename, 19); } #elif GTEST_OS_MAC size_t GetThreadCount() { const task_t task = mach_task_self(); mach_msg_type_number_t thread_count; thread_act_array_t thread_list; const kern_return_t status = task_threads(task, &thread_list, &thread_count); if (status == KERN_SUCCESS) { // task_threads allocates resources in thread_list and we need to free them // to avoid leaks. vm_deallocate(task, reinterpret_cast(thread_list), sizeof(thread_t) * thread_count); return static_cast(thread_count); } else { return 0; } } #elif GTEST_OS_DRAGONFLY || GTEST_OS_FREEBSD || GTEST_OS_GNU_KFREEBSD || \ GTEST_OS_NETBSD #if GTEST_OS_NETBSD #undef KERN_PROC #define KERN_PROC KERN_PROC2 #define kinfo_proc kinfo_proc2 #endif #if GTEST_OS_DRAGONFLY #define KP_NLWP(kp) (kp.kp_nthreads) #elif GTEST_OS_FREEBSD || GTEST_OS_GNU_KFREEBSD #define KP_NLWP(kp) (kp.ki_numthreads) #elif GTEST_OS_NETBSD #define KP_NLWP(kp) (kp.p_nlwps) #endif // Returns the number of threads running in the process, or 0 to indicate that // we cannot detect it. size_t GetThreadCount() { int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, getpid(), #if GTEST_OS_NETBSD sizeof(struct kinfo_proc), 1, #endif }; u_int miblen = sizeof(mib) / sizeof(mib[0]); struct kinfo_proc info; size_t size = sizeof(info); if (sysctl(mib, miblen, &info, &size, NULL, 0)) { return 0; } return static_cast(KP_NLWP(info)); } #elif GTEST_OS_OPENBSD // Returns the number of threads running in the process, or 0 to indicate that // we cannot detect it. size_t GetThreadCount() { int mib[] = { CTL_KERN, KERN_PROC, KERN_PROC_PID | KERN_PROC_SHOW_THREADS, getpid(), sizeof(struct kinfo_proc), 0, }; u_int miblen = sizeof(mib) / sizeof(mib[0]); // get number of structs size_t size; if (sysctl(mib, miblen, NULL, &size, NULL, 0)) { return 0; } mib[5] = static_cast(size / static_cast(mib[4])); // populate array of structs struct kinfo_proc info[mib[5]]; if (sysctl(mib, miblen, &info, &size, NULL, 0)) { return 0; } // exclude empty members size_t nthreads = 0; for (size_t i = 0; i < size / static_cast(mib[4]); i++) { if (info[i].p_tid != -1) nthreads++; } return nthreads; } #elif GTEST_OS_QNX // Returns the number of threads running in the process, or 0 to indicate that // we cannot detect it. size_t GetThreadCount() { const int fd = open("/proc/self/as", O_RDONLY); if (fd < 0) { return 0; } procfs_info process_info; const int status = devctl(fd, DCMD_PROC_INFO, &process_info, sizeof(process_info), nullptr); close(fd); if (status == EOK) { return static_cast(process_info.num_threads); } else { return 0; } } #elif GTEST_OS_AIX size_t GetThreadCount() { struct procentry64 entry; pid_t pid = getpid(); int status = getprocs64(&entry, sizeof(entry), nullptr, 0, &pid, 1); if (status == 1) { return entry.pi_thcount; } else { return 0; } } #elif GTEST_OS_FUCHSIA size_t GetThreadCount() { int dummy_buffer; size_t avail; zx_status_t status = zx_object_get_info( zx_process_self(), ZX_INFO_PROCESS_THREADS, &dummy_buffer, 0, nullptr, &avail); if (status == ZX_OK) { return avail; } else { return 0; } } #else size_t GetThreadCount() { // There's no portable way to detect the number of threads, so we just // return 0 to indicate that we cannot detect it. return 0; } #endif // GTEST_OS_LINUX #if GTEST_IS_THREADSAFE && GTEST_OS_WINDOWS void SleepMilliseconds(int n) { ::Sleep(static_cast(n)); } AutoHandle::AutoHandle() : handle_(INVALID_HANDLE_VALUE) {} AutoHandle::AutoHandle(Handle handle) : handle_(handle) {} AutoHandle::~AutoHandle() { Reset(); } AutoHandle::Handle AutoHandle::Get() const { return handle_; } void AutoHandle::Reset() { Reset(INVALID_HANDLE_VALUE); } void AutoHandle::Reset(HANDLE handle) { // Resetting with the same handle we already own is invalid. if (handle_ != handle) { if (IsCloseable()) { ::CloseHandle(handle_); } handle_ = handle; } else { GTEST_CHECK_(!IsCloseable()) << "Resetting a valid handle to itself is likely a programmer error " "and thus not allowed."; } } bool AutoHandle::IsCloseable() const { // Different Windows APIs may use either of these values to represent an // invalid handle. return handle_ != nullptr && handle_ != INVALID_HANDLE_VALUE; } Notification::Notification() : event_(::CreateEvent(nullptr, // Default security attributes. TRUE, // Do not reset automatically. FALSE, // Initially unset. nullptr)) { // Anonymous event. GTEST_CHECK_(event_.Get() != nullptr); } void Notification::Notify() { GTEST_CHECK_(::SetEvent(event_.Get()) != FALSE); } void Notification::WaitForNotification() { GTEST_CHECK_( ::WaitForSingleObject(event_.Get(), INFINITE) == WAIT_OBJECT_0); } Mutex::Mutex() : owner_thread_id_(0), type_(kDynamic), critical_section_init_phase_(0), critical_section_(new CRITICAL_SECTION) { ::InitializeCriticalSection(critical_section_); } Mutex::~Mutex() { // Static mutexes are leaked intentionally. It is not thread-safe to try // to clean them up. if (type_ == kDynamic) { ::DeleteCriticalSection(critical_section_); delete critical_section_; critical_section_ = nullptr; } } void Mutex::Lock() { ThreadSafeLazyInit(); ::EnterCriticalSection(critical_section_); owner_thread_id_ = ::GetCurrentThreadId(); } void Mutex::Unlock() { ThreadSafeLazyInit(); // We don't protect writing to owner_thread_id_ here, as it's the // caller's responsibility to ensure that the current thread holds the // mutex when this is called. owner_thread_id_ = 0; ::LeaveCriticalSection(critical_section_); } // Does nothing if the current thread holds the mutex. Otherwise, crashes // with high probability. void Mutex::AssertHeld() { ThreadSafeLazyInit(); GTEST_CHECK_(owner_thread_id_ == ::GetCurrentThreadId()) << "The current thread is not holding the mutex @" << this; } namespace { #ifdef _MSC_VER // Use the RAII idiom to flag mem allocs that are intentionally never // deallocated. The motivation is to silence the false positive mem leaks // that are reported by the debug version of MS's CRT which can only detect // if an alloc is missing a matching deallocation. // Example: // MemoryIsNotDeallocated memory_is_not_deallocated; // critical_section_ = new CRITICAL_SECTION; // class MemoryIsNotDeallocated { public: MemoryIsNotDeallocated() : old_crtdbg_flag_(0) { old_crtdbg_flag_ = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG); // Set heap allocation block type to _IGNORE_BLOCK so that MS debug CRT // doesn't report mem leak if there's no matching deallocation. _CrtSetDbgFlag(old_crtdbg_flag_ & ~_CRTDBG_ALLOC_MEM_DF); } ~MemoryIsNotDeallocated() { // Restore the original _CRTDBG_ALLOC_MEM_DF flag _CrtSetDbgFlag(old_crtdbg_flag_); } private: int old_crtdbg_flag_; GTEST_DISALLOW_COPY_AND_ASSIGN_(MemoryIsNotDeallocated); }; #endif // _MSC_VER } // namespace // Initializes owner_thread_id_ and critical_section_ in static mutexes. void Mutex::ThreadSafeLazyInit() { // Dynamic mutexes are initialized in the constructor. if (type_ == kStatic) { switch ( ::InterlockedCompareExchange(&critical_section_init_phase_, 1L, 0L)) { case 0: // If critical_section_init_phase_ was 0 before the exchange, we // are the first to test it and need to perform the initialization. owner_thread_id_ = 0; { // Use RAII to flag that following mem alloc is never deallocated. #ifdef _MSC_VER MemoryIsNotDeallocated memory_is_not_deallocated; #endif // _MSC_VER critical_section_ = new CRITICAL_SECTION; } ::InitializeCriticalSection(critical_section_); // Updates the critical_section_init_phase_ to 2 to signal // initialization complete. GTEST_CHECK_(::InterlockedCompareExchange( &critical_section_init_phase_, 2L, 1L) == 1L); break; case 1: // Somebody else is already initializing the mutex; spin until they // are done. while (::InterlockedCompareExchange(&critical_section_init_phase_, 2L, 2L) != 2L) { // Possibly yields the rest of the thread's time slice to other // threads. ::Sleep(0); } break; case 2: break; // The mutex is already initialized and ready for use. default: GTEST_CHECK_(false) << "Unexpected value of critical_section_init_phase_ " << "while initializing a static mutex."; } } } namespace { class ThreadWithParamSupport : public ThreadWithParamBase { public: static HANDLE CreateThread(Runnable* runnable, Notification* thread_can_start) { ThreadMainParam* param = new ThreadMainParam(runnable, thread_can_start); DWORD thread_id; HANDLE thread_handle = ::CreateThread( nullptr, // Default security. 0, // Default stack size. &ThreadWithParamSupport::ThreadMain, param, // Parameter to ThreadMainStatic 0x0, // Default creation flags. &thread_id); // Need a valid pointer for the call to work under Win98. GTEST_CHECK_(thread_handle != nullptr) << "CreateThread failed with error " << ::GetLastError() << "."; if (thread_handle == nullptr) { delete param; } return thread_handle; } private: struct ThreadMainParam { ThreadMainParam(Runnable* runnable, Notification* thread_can_start) : runnable_(runnable), thread_can_start_(thread_can_start) { } std::unique_ptr runnable_; // Does not own. Notification* thread_can_start_; }; static DWORD WINAPI ThreadMain(void* ptr) { // Transfers ownership. std::unique_ptr param(static_cast(ptr)); if (param->thread_can_start_ != nullptr) param->thread_can_start_->WaitForNotification(); param->runnable_->Run(); return 0; } // Prohibit instantiation. ThreadWithParamSupport(); GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParamSupport); }; } // namespace ThreadWithParamBase::ThreadWithParamBase(Runnable *runnable, Notification* thread_can_start) : thread_(ThreadWithParamSupport::CreateThread(runnable, thread_can_start)) { } ThreadWithParamBase::~ThreadWithParamBase() { Join(); } void ThreadWithParamBase::Join() { GTEST_CHECK_(::WaitForSingleObject(thread_.Get(), INFINITE) == WAIT_OBJECT_0) << "Failed to join the thread with error " << ::GetLastError() << "."; } // Maps a thread to a set of ThreadIdToThreadLocals that have values // instantiated on that thread and notifies them when the thread exits. A // ThreadLocal instance is expected to persist until all threads it has // values on have terminated. class ThreadLocalRegistryImpl { public: // Registers thread_local_instance as having value on the current thread. // Returns a value that can be used to identify the thread from other threads. static ThreadLocalValueHolderBase* GetValueOnCurrentThread( const ThreadLocalBase* thread_local_instance) { #ifdef _MSC_VER MemoryIsNotDeallocated memory_is_not_deallocated; #endif // _MSC_VER DWORD current_thread = ::GetCurrentThreadId(); MutexLock lock(&mutex_); ThreadIdToThreadLocals* const thread_to_thread_locals = GetThreadLocalsMapLocked(); ThreadIdToThreadLocals::iterator thread_local_pos = thread_to_thread_locals->find(current_thread); if (thread_local_pos == thread_to_thread_locals->end()) { thread_local_pos = thread_to_thread_locals->insert( std::make_pair(current_thread, ThreadLocalValues())).first; StartWatcherThreadFor(current_thread); } ThreadLocalValues& thread_local_values = thread_local_pos->second; ThreadLocalValues::iterator value_pos = thread_local_values.find(thread_local_instance); if (value_pos == thread_local_values.end()) { value_pos = thread_local_values .insert(std::make_pair( thread_local_instance, std::shared_ptr( thread_local_instance->NewValueForCurrentThread()))) .first; } return value_pos->second.get(); } static void OnThreadLocalDestroyed( const ThreadLocalBase* thread_local_instance) { std::vector > value_holders; // Clean up the ThreadLocalValues data structure while holding the lock, but // defer the destruction of the ThreadLocalValueHolderBases. { MutexLock lock(&mutex_); ThreadIdToThreadLocals* const thread_to_thread_locals = GetThreadLocalsMapLocked(); for (ThreadIdToThreadLocals::iterator it = thread_to_thread_locals->begin(); it != thread_to_thread_locals->end(); ++it) { ThreadLocalValues& thread_local_values = it->second; ThreadLocalValues::iterator value_pos = thread_local_values.find(thread_local_instance); if (value_pos != thread_local_values.end()) { value_holders.push_back(value_pos->second); thread_local_values.erase(value_pos); // This 'if' can only be successful at most once, so theoretically we // could break out of the loop here, but we don't bother doing so. } } } // Outside the lock, let the destructor for 'value_holders' deallocate the // ThreadLocalValueHolderBases. } static void OnThreadExit(DWORD thread_id) { GTEST_CHECK_(thread_id != 0) << ::GetLastError(); std::vector > value_holders; // Clean up the ThreadIdToThreadLocals data structure while holding the // lock, but defer the destruction of the ThreadLocalValueHolderBases. { MutexLock lock(&mutex_); ThreadIdToThreadLocals* const thread_to_thread_locals = GetThreadLocalsMapLocked(); ThreadIdToThreadLocals::iterator thread_local_pos = thread_to_thread_locals->find(thread_id); if (thread_local_pos != thread_to_thread_locals->end()) { ThreadLocalValues& thread_local_values = thread_local_pos->second; for (ThreadLocalValues::iterator value_pos = thread_local_values.begin(); value_pos != thread_local_values.end(); ++value_pos) { value_holders.push_back(value_pos->second); } thread_to_thread_locals->erase(thread_local_pos); } } // Outside the lock, let the destructor for 'value_holders' deallocate the // ThreadLocalValueHolderBases. } private: // In a particular thread, maps a ThreadLocal object to its value. typedef std::map > ThreadLocalValues; // Stores all ThreadIdToThreadLocals having values in a thread, indexed by // thread's ID. typedef std::map ThreadIdToThreadLocals; // Holds the thread id and thread handle that we pass from // StartWatcherThreadFor to WatcherThreadFunc. typedef std::pair ThreadIdAndHandle; static void StartWatcherThreadFor(DWORD thread_id) { // The returned handle will be kept in thread_map and closed by // watcher_thread in WatcherThreadFunc. HANDLE thread = ::OpenThread(SYNCHRONIZE | THREAD_QUERY_INFORMATION, FALSE, thread_id); GTEST_CHECK_(thread != nullptr); // We need to pass a valid thread ID pointer into CreateThread for it // to work correctly under Win98. DWORD watcher_thread_id; HANDLE watcher_thread = ::CreateThread( nullptr, // Default security. 0, // Default stack size &ThreadLocalRegistryImpl::WatcherThreadFunc, reinterpret_cast(new ThreadIdAndHandle(thread_id, thread)), CREATE_SUSPENDED, &watcher_thread_id); GTEST_CHECK_(watcher_thread != nullptr); // Give the watcher thread the same priority as ours to avoid being // blocked by it. ::SetThreadPriority(watcher_thread, ::GetThreadPriority(::GetCurrentThread())); ::ResumeThread(watcher_thread); ::CloseHandle(watcher_thread); } // Monitors exit from a given thread and notifies those // ThreadIdToThreadLocals about thread termination. static DWORD WINAPI WatcherThreadFunc(LPVOID param) { const ThreadIdAndHandle* tah = reinterpret_cast(param); GTEST_CHECK_( ::WaitForSingleObject(tah->second, INFINITE) == WAIT_OBJECT_0); OnThreadExit(tah->first); ::CloseHandle(tah->second); delete tah; return 0; } // Returns map of thread local instances. static ThreadIdToThreadLocals* GetThreadLocalsMapLocked() { mutex_.AssertHeld(); #ifdef _MSC_VER MemoryIsNotDeallocated memory_is_not_deallocated; #endif // _MSC_VER static ThreadIdToThreadLocals* map = new ThreadIdToThreadLocals(); return map; } // Protects access to GetThreadLocalsMapLocked() and its return value. static Mutex mutex_; // Protects access to GetThreadMapLocked() and its return value. static Mutex thread_map_mutex_; }; Mutex ThreadLocalRegistryImpl::mutex_(Mutex::kStaticMutex); // NOLINT Mutex ThreadLocalRegistryImpl::thread_map_mutex_(Mutex::kStaticMutex); // NOLINT ThreadLocalValueHolderBase* ThreadLocalRegistry::GetValueOnCurrentThread( const ThreadLocalBase* thread_local_instance) { return ThreadLocalRegistryImpl::GetValueOnCurrentThread( thread_local_instance); } void ThreadLocalRegistry::OnThreadLocalDestroyed( const ThreadLocalBase* thread_local_instance) { ThreadLocalRegistryImpl::OnThreadLocalDestroyed(thread_local_instance); } #endif // GTEST_IS_THREADSAFE && GTEST_OS_WINDOWS #if GTEST_USES_POSIX_RE // Implements RE. Currently only needed for death tests. RE::~RE() { if (is_valid_) { // regfree'ing an invalid regex might crash because the content // of the regex is undefined. Since the regex's are essentially // the same, one cannot be valid (or invalid) without the other // being so too. regfree(&partial_regex_); regfree(&full_regex_); } free(const_cast(pattern_)); } // Returns true if and only if regular expression re matches the entire str. bool RE::FullMatch(const char* str, const RE& re) { if (!re.is_valid_) return false; regmatch_t match; return regexec(&re.full_regex_, str, 1, &match, 0) == 0; } // Returns true if and only if regular expression re matches a substring of // str (including str itself). bool RE::PartialMatch(const char* str, const RE& re) { if (!re.is_valid_) return false; regmatch_t match; return regexec(&re.partial_regex_, str, 1, &match, 0) == 0; } // Initializes an RE from its string representation. void RE::Init(const char* regex) { pattern_ = posix::StrDup(regex); // Reserves enough bytes to hold the regular expression used for a // full match. const size_t full_regex_len = strlen(regex) + 10; char* const full_pattern = new char[full_regex_len]; snprintf(full_pattern, full_regex_len, "^(%s)$", regex); is_valid_ = regcomp(&full_regex_, full_pattern, REG_EXTENDED) == 0; // We want to call regcomp(&partial_regex_, ...) even if the // previous expression returns false. Otherwise partial_regex_ may // not be properly initialized can may cause trouble when it's // freed. // // Some implementation of POSIX regex (e.g. on at least some // versions of Cygwin) doesn't accept the empty string as a valid // regex. We change it to an equivalent form "()" to be safe. if (is_valid_) { const char* const partial_regex = (*regex == '\0') ? "()" : regex; is_valid_ = regcomp(&partial_regex_, partial_regex, REG_EXTENDED) == 0; } EXPECT_TRUE(is_valid_) << "Regular expression \"" << regex << "\" is not a valid POSIX Extended regular expression."; delete[] full_pattern; } #elif GTEST_USES_SIMPLE_RE // Returns true if and only if ch appears anywhere in str (excluding the // terminating '\0' character). bool IsInSet(char ch, const char* str) { return ch != '\0' && strchr(str, ch) != nullptr; } // Returns true if and only if ch belongs to the given classification. // Unlike similar functions in , these aren't affected by the // current locale. bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } bool IsAsciiPunct(char ch) { return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); } bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } bool IsAsciiWordChar(char ch) { return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') || ('0' <= ch && ch <= '9') || ch == '_'; } // Returns true if and only if "\\c" is a supported escape sequence. bool IsValidEscape(char c) { return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); } // Returns true if and only if the given atom (specified by escaped and // pattern) matches ch. The result is undefined if the atom is invalid. bool AtomMatchesChar(bool escaped, char pattern_char, char ch) { if (escaped) { // "\\p" where p is pattern_char. switch (pattern_char) { case 'd': return IsAsciiDigit(ch); case 'D': return !IsAsciiDigit(ch); case 'f': return ch == '\f'; case 'n': return ch == '\n'; case 'r': return ch == '\r'; case 's': return IsAsciiWhiteSpace(ch); case 'S': return !IsAsciiWhiteSpace(ch); case 't': return ch == '\t'; case 'v': return ch == '\v'; case 'w': return IsAsciiWordChar(ch); case 'W': return !IsAsciiWordChar(ch); } return IsAsciiPunct(pattern_char) && pattern_char == ch; } return (pattern_char == '.' && ch != '\n') || pattern_char == ch; } // Helper function used by ValidateRegex() to format error messages. static std::string FormatRegexSyntaxError(const char* regex, int index) { return (Message() << "Syntax error at index " << index << " in simple regular expression \"" << regex << "\": ").GetString(); } // Generates non-fatal failures and returns false if regex is invalid; // otherwise returns true. bool ValidateRegex(const char* regex) { if (regex == nullptr) { ADD_FAILURE() << "NULL is not a valid simple regular expression."; return false; } bool is_valid = true; // True if and only if ?, *, or + can follow the previous atom. bool prev_repeatable = false; for (int i = 0; regex[i]; i++) { if (regex[i] == '\\') { // An escape sequence i++; if (regex[i] == '\0') { ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) << "'\\' cannot appear at the end."; return false; } if (!IsValidEscape(regex[i])) { ADD_FAILURE() << FormatRegexSyntaxError(regex, i - 1) << "invalid escape sequence \"\\" << regex[i] << "\"."; is_valid = false; } prev_repeatable = true; } else { // Not an escape sequence. const char ch = regex[i]; if (ch == '^' && i > 0) { ADD_FAILURE() << FormatRegexSyntaxError(regex, i) << "'^' can only appear at the beginning."; is_valid = false; } else if (ch == '$' && regex[i + 1] != '\0') { ADD_FAILURE() << FormatRegexSyntaxError(regex, i) << "'$' can only appear at the end."; is_valid = false; } else if (IsInSet(ch, "()[]{}|")) { ADD_FAILURE() << FormatRegexSyntaxError(regex, i) << "'" << ch << "' is unsupported."; is_valid = false; } else if (IsRepeat(ch) && !prev_repeatable) { ADD_FAILURE() << FormatRegexSyntaxError(regex, i) << "'" << ch << "' can only follow a repeatable token."; is_valid = false; } prev_repeatable = !IsInSet(ch, "^$?*+"); } } return is_valid; } // Matches a repeated regex atom followed by a valid simple regular // expression. The regex atom is defined as c if escaped is false, // or \c otherwise. repeat is the repetition meta character (?, *, // or +). The behavior is undefined if str contains too many // characters to be indexable by size_t, in which case the test will // probably time out anyway. We are fine with this limitation as // std::string has it too. bool MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) { const size_t min_count = (repeat == '+') ? 1 : 0; const size_t max_count = (repeat == '?') ? 1 : static_cast(-1) - 1; // We cannot call numeric_limits::max() as it conflicts with the // max() macro on Windows. for (size_t i = 0; i <= max_count; ++i) { // We know that the atom matches each of the first i characters in str. if (i >= min_count && MatchRegexAtHead(regex, str + i)) { // We have enough matches at the head, and the tail matches too. // Since we only care about *whether* the pattern matches str // (as opposed to *how* it matches), there is no need to find a // greedy match. return true; } if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i])) return false; } return false; } // Returns true if and only if regex matches a prefix of str. regex must // be a valid simple regular expression and not start with "^", or the // result is undefined. bool MatchRegexAtHead(const char* regex, const char* str) { if (*regex == '\0') // An empty regex matches a prefix of anything. return true; // "$" only matches the end of a string. Note that regex being // valid guarantees that there's nothing after "$" in it. if (*regex == '$') return *str == '\0'; // Is the first thing in regex an escape sequence? const bool escaped = *regex == '\\'; if (escaped) ++regex; if (IsRepeat(regex[1])) { // MatchRepetitionAndRegexAtHead() calls MatchRegexAtHead(), so // here's an indirect recursion. It terminates as the regex gets // shorter in each recursion. return MatchRepetitionAndRegexAtHead( escaped, regex[0], regex[1], regex + 2, str); } else { // regex isn't empty, isn't "$", and doesn't start with a // repetition. We match the first atom of regex with the first // character of str and recurse. return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) && MatchRegexAtHead(regex + 1, str + 1); } } // Returns true if and only if regex matches any substring of str. regex must // be a valid simple regular expression, or the result is undefined. // // The algorithm is recursive, but the recursion depth doesn't exceed // the regex length, so we won't need to worry about running out of // stack space normally. In rare cases the time complexity can be // exponential with respect to the regex length + the string length, // but usually it's must faster (often close to linear). bool MatchRegexAnywhere(const char* regex, const char* str) { if (regex == nullptr || str == nullptr) return false; if (*regex == '^') return MatchRegexAtHead(regex + 1, str); // A successful match can be anywhere in str. do { if (MatchRegexAtHead(regex, str)) return true; } while (*str++ != '\0'); return false; } // Implements the RE class. RE::~RE() { free(const_cast(pattern_)); free(const_cast(full_pattern_)); } // Returns true if and only if regular expression re matches the entire str. bool RE::FullMatch(const char* str, const RE& re) { return re.is_valid_ && MatchRegexAnywhere(re.full_pattern_, str); } // Returns true if and only if regular expression re matches a substring of // str (including str itself). bool RE::PartialMatch(const char* str, const RE& re) { return re.is_valid_ && MatchRegexAnywhere(re.pattern_, str); } // Initializes an RE from its string representation. void RE::Init(const char* regex) { pattern_ = full_pattern_ = nullptr; if (regex != nullptr) { pattern_ = posix::StrDup(regex); } is_valid_ = ValidateRegex(regex); if (!is_valid_) { // No need to calculate the full pattern when the regex is invalid. return; } const size_t len = strlen(regex); // Reserves enough bytes to hold the regular expression used for a // full match: we need space to prepend a '^', append a '$', and // terminate the string with '\0'. char* buffer = static_cast(malloc(len + 3)); full_pattern_ = buffer; if (*regex != '^') *buffer++ = '^'; // Makes sure full_pattern_ starts with '^'. // We don't use snprintf or strncpy, as they trigger a warning when // compiled with VC++ 8.0. memcpy(buffer, regex, len); buffer += len; if (len == 0 || regex[len - 1] != '$') *buffer++ = '$'; // Makes sure full_pattern_ ends with '$'. *buffer = '\0'; } #endif // GTEST_USES_POSIX_RE const char kUnknownFile[] = "unknown file"; // Formats a source file path and a line number as they would appear // in an error message from the compiler used to compile this code. GTEST_API_ ::std::string FormatFileLocation(const char* file, int line) { const std::string file_name(file == nullptr ? kUnknownFile : file); if (line < 0) { return file_name + ":"; } #ifdef _MSC_VER return file_name + "(" + StreamableToString(line) + "):"; #else return file_name + ":" + StreamableToString(line) + ":"; #endif // _MSC_VER } // Formats a file location for compiler-independent XML output. // Although this function is not platform dependent, we put it next to // FormatFileLocation in order to contrast the two functions. // Note that FormatCompilerIndependentFileLocation() does NOT append colon // to the file location it produces, unlike FormatFileLocation(). GTEST_API_ ::std::string FormatCompilerIndependentFileLocation( const char* file, int line) { const std::string file_name(file == nullptr ? kUnknownFile : file); if (line < 0) return file_name; else return file_name + ":" + StreamableToString(line); } GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) : severity_(severity) { const char* const marker = severity == GTEST_INFO ? "[ INFO ]" : severity == GTEST_WARNING ? "[WARNING]" : severity == GTEST_ERROR ? "[ ERROR ]" : "[ FATAL ]"; GetStream() << ::std::endl << marker << " " << FormatFileLocation(file, line).c_str() << ": "; } // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program. GTestLog::~GTestLog() { GetStream() << ::std::endl; if (severity_ == GTEST_FATAL) { fflush(stderr); posix::Abort(); } } // Disable Microsoft deprecation warnings for POSIX functions called from // this class (creat, dup, dup2, and close) GTEST_DISABLE_MSC_DEPRECATED_PUSH_() #if GTEST_HAS_STREAM_REDIRECTION // Object that captures an output stream (stdout/stderr). class CapturedStream { public: // The ctor redirects the stream to a temporary file. explicit CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { # if GTEST_OS_WINDOWS char temp_dir_path[MAX_PATH + 1] = { '\0' }; // NOLINT char temp_file_path[MAX_PATH + 1] = { '\0' }; // NOLINT ::GetTempPathA(sizeof(temp_dir_path), temp_dir_path); const UINT success = ::GetTempFileNameA(temp_dir_path, "gtest_redir", 0, // Generate unique file name. temp_file_path); GTEST_CHECK_(success != 0) << "Unable to create a temporary file in " << temp_dir_path; const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE); GTEST_CHECK_(captured_fd != -1) << "Unable to open temporary file " << temp_file_path; filename_ = temp_file_path; # else // There's no guarantee that a test has write access to the current // directory, so we create the temporary file in a temporary directory. std::string name_template; # if GTEST_OS_LINUX_ANDROID // Note: Android applications are expected to call the framework's // Context.getExternalStorageDirectory() method through JNI to get // the location of the world-writable SD Card directory. However, // this requires a Context handle, which cannot be retrieved // globally from native code. Doing so also precludes running the // code as part of a regular standalone executable, which doesn't // run in a Dalvik process (e.g. when running it through 'adb shell'). // // The location /data/local/tmp is directly accessible from native code. // '/sdcard' and other variants cannot be relied on, as they are not // guaranteed to be mounted, or may have a delay in mounting. name_template = "/data/local/tmp/"; # elif GTEST_OS_IOS char user_temp_dir[PATH_MAX + 1]; // Documented alternative to NSTemporaryDirectory() (for obtaining creating // a temporary directory) at // https://developer.apple.com/library/archive/documentation/Security/Conceptual/SecureCodingGuide/Articles/RaceConditions.html#//apple_ref/doc/uid/TP40002585-SW10 // // _CS_DARWIN_USER_TEMP_DIR (as well as _CS_DARWIN_USER_CACHE_DIR) is not // documented in the confstr() man page at // https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man3/confstr.3.html#//apple_ref/doc/man/3/confstr // but are still available, according to the WebKit patches at // https://trac.webkit.org/changeset/262004/webkit // https://trac.webkit.org/changeset/263705/webkit // // The confstr() implementation falls back to getenv("TMPDIR"). See // https://opensource.apple.com/source/Libc/Libc-1439.100.3/gen/confstr.c.auto.html ::confstr(_CS_DARWIN_USER_TEMP_DIR, user_temp_dir, sizeof(user_temp_dir)); name_template = user_temp_dir; if (name_template.back() != GTEST_PATH_SEP_[0]) name_template.push_back(GTEST_PATH_SEP_[0]); # else name_template = "/tmp/"; # endif name_template.append("gtest_captured_stream.XXXXXX"); // mkstemp() modifies the string bytes in place, and does not go beyond the // string's length. This results in well-defined behavior in C++17. // // The const_cast is needed below C++17. The constraints on std::string // implementations in C++11 and above make assumption behind the const_cast // fairly safe. const int captured_fd = ::mkstemp(const_cast(name_template.data())); if (captured_fd == -1) { GTEST_LOG_(WARNING) << "Failed to create tmp file " << name_template << " for test; does the test have access to the /tmp directory?"; } filename_ = std::move(name_template); # endif // GTEST_OS_WINDOWS fflush(nullptr); dup2(captured_fd, fd_); close(captured_fd); } ~CapturedStream() { remove(filename_.c_str()); } std::string GetCapturedString() { if (uncaptured_fd_ != -1) { // Restores the original stream. fflush(nullptr); dup2(uncaptured_fd_, fd_); close(uncaptured_fd_); uncaptured_fd_ = -1; } FILE* const file = posix::FOpen(filename_.c_str(), "r"); if (file == nullptr) { GTEST_LOG_(FATAL) << "Failed to open tmp file " << filename_ << " for capturing stream."; } const std::string content = ReadEntireFile(file); posix::FClose(file); return content; } private: const int fd_; // A stream to capture. int uncaptured_fd_; // Name of the temporary file holding the stderr output. ::std::string filename_; GTEST_DISALLOW_COPY_AND_ASSIGN_(CapturedStream); }; GTEST_DISABLE_MSC_DEPRECATED_POP_() static CapturedStream* g_captured_stderr = nullptr; static CapturedStream* g_captured_stdout = nullptr; // Starts capturing an output stream (stdout/stderr). static void CaptureStream(int fd, const char* stream_name, CapturedStream** stream) { if (*stream != nullptr) { GTEST_LOG_(FATAL) << "Only one " << stream_name << " capturer can exist at a time."; } *stream = new CapturedStream(fd); } // Stops capturing the output stream and returns the captured string. static std::string GetCapturedStream(CapturedStream** captured_stream) { const std::string content = (*captured_stream)->GetCapturedString(); delete *captured_stream; *captured_stream = nullptr; return content; } // Starts capturing stdout. void CaptureStdout() { CaptureStream(kStdOutFileno, "stdout", &g_captured_stdout); } // Starts capturing stderr. void CaptureStderr() { CaptureStream(kStdErrFileno, "stderr", &g_captured_stderr); } // Stops capturing stdout and returns the captured string. std::string GetCapturedStdout() { return GetCapturedStream(&g_captured_stdout); } // Stops capturing stderr and returns the captured string. std::string GetCapturedStderr() { return GetCapturedStream(&g_captured_stderr); } #endif // GTEST_HAS_STREAM_REDIRECTION size_t GetFileSize(FILE* file) { fseek(file, 0, SEEK_END); return static_cast(ftell(file)); } std::string ReadEntireFile(FILE* file) { const size_t file_size = GetFileSize(file); char* const buffer = new char[file_size]; size_t bytes_last_read = 0; // # of bytes read in the last fread() size_t bytes_read = 0; // # of bytes read so far fseek(file, 0, SEEK_SET); // Keeps reading the file until we cannot read further or the // pre-determined file size is reached. do { bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file); bytes_read += bytes_last_read; } while (bytes_last_read > 0 && bytes_read < file_size); const std::string content(buffer, bytes_read); delete[] buffer; return content; } #if GTEST_HAS_DEATH_TEST static const std::vector* g_injected_test_argvs = nullptr; // Owned. std::vector GetInjectableArgvs() { if (g_injected_test_argvs != nullptr) { return *g_injected_test_argvs; } return GetArgvs(); } void SetInjectableArgvs(const std::vector* new_argvs) { if (g_injected_test_argvs != new_argvs) delete g_injected_test_argvs; g_injected_test_argvs = new_argvs; } void SetInjectableArgvs(const std::vector& new_argvs) { SetInjectableArgvs( new std::vector(new_argvs.begin(), new_argvs.end())); } void ClearInjectableArgvs() { delete g_injected_test_argvs; g_injected_test_argvs = nullptr; } #endif // GTEST_HAS_DEATH_TEST #if GTEST_OS_WINDOWS_MOBILE namespace posix { void Abort() { DebugBreak(); TerminateProcess(GetCurrentProcess(), 1); } } // namespace posix #endif // GTEST_OS_WINDOWS_MOBILE // Returns the name of the environment variable corresponding to the // given flag. For example, FlagToEnvVar("foo") will return // "GTEST_FOO" in the open-source version. static std::string FlagToEnvVar(const char* flag) { const std::string full_flag = (Message() << GTEST_FLAG_PREFIX_ << flag).GetString(); Message env_var; for (size_t i = 0; i != full_flag.length(); i++) { env_var << ToUpper(full_flag.c_str()[i]); } return env_var.GetString(); } // Parses 'str' for a 32-bit signed integer. If successful, writes // the result to *value and returns true; otherwise leaves *value // unchanged and returns false. bool ParseInt32(const Message& src_text, const char* str, int32_t* value) { // Parses the environment variable as a decimal integer. char* end = nullptr; const long long_value = strtol(str, &end, 10); // NOLINT // Has strtol() consumed all characters in the string? if (*end != '\0') { // No - an invalid character was encountered. Message msg; msg << "WARNING: " << src_text << " is expected to be a 32-bit integer, but actually" << " has value \"" << str << "\".\n"; printf("%s", msg.GetString().c_str()); fflush(stdout); return false; } // Is the parsed value in the range of an int32_t? const auto result = static_cast(long_value); if (long_value == LONG_MAX || long_value == LONG_MIN || // The parsed value overflows as a long. (strtol() returns // LONG_MAX or LONG_MIN when the input overflows.) result != long_value // The parsed value overflows as an int32_t. ) { Message msg; msg << "WARNING: " << src_text << " is expected to be a 32-bit integer, but actually" << " has value " << str << ", which overflows.\n"; printf("%s", msg.GetString().c_str()); fflush(stdout); return false; } *value = result; return true; } // Reads and returns the Boolean environment variable corresponding to // the given flag; if it's not set, returns default_value. // // The value is considered true if and only if it's not "0". bool BoolFromGTestEnv(const char* flag, bool default_value) { #if defined(GTEST_GET_BOOL_FROM_ENV_) return GTEST_GET_BOOL_FROM_ENV_(flag, default_value); #else const std::string env_var = FlagToEnvVar(flag); const char* const string_value = posix::GetEnv(env_var.c_str()); return string_value == nullptr ? default_value : strcmp(string_value, "0") != 0; #endif // defined(GTEST_GET_BOOL_FROM_ENV_) } // Reads and returns a 32-bit integer stored in the environment // variable corresponding to the given flag; if it isn't set or // doesn't represent a valid 32-bit integer, returns default_value. int32_t Int32FromGTestEnv(const char* flag, int32_t default_value) { #if defined(GTEST_GET_INT32_FROM_ENV_) return GTEST_GET_INT32_FROM_ENV_(flag, default_value); #else const std::string env_var = FlagToEnvVar(flag); const char* const string_value = posix::GetEnv(env_var.c_str()); if (string_value == nullptr) { // The environment variable is not set. return default_value; } int32_t result = default_value; if (!ParseInt32(Message() << "Environment variable " << env_var, string_value, &result)) { printf("The default value %s is used.\n", (Message() << default_value).GetString().c_str()); fflush(stdout); return default_value; } return result; #endif // defined(GTEST_GET_INT32_FROM_ENV_) } // As a special case for the 'output' flag, if GTEST_OUTPUT is not // set, we look for XML_OUTPUT_FILE, which is set by the Bazel build // system. The value of XML_OUTPUT_FILE is a filename without the // "xml:" prefix of GTEST_OUTPUT. // Note that this is meant to be called at the call site so it does // not check that the flag is 'output' // In essence this checks an env variable called XML_OUTPUT_FILE // and if it is set we prepend "xml:" to its value, if it not set we return "" std::string OutputFlagAlsoCheckEnvVar(){ std::string default_value_for_output_flag = ""; const char* xml_output_file_env = posix::GetEnv("XML_OUTPUT_FILE"); if (nullptr != xml_output_file_env) { default_value_for_output_flag = std::string("xml:") + xml_output_file_env; } return default_value_for_output_flag; } // Reads and returns the string environment variable corresponding to // the given flag; if it's not set, returns default_value. const char* StringFromGTestEnv(const char* flag, const char* default_value) { #if defined(GTEST_GET_STRING_FROM_ENV_) return GTEST_GET_STRING_FROM_ENV_(flag, default_value); #else const std::string env_var = FlagToEnvVar(flag); const char* const value = posix::GetEnv(env_var.c_str()); return value == nullptr ? default_value : value; #endif // defined(GTEST_GET_STRING_FROM_ENV_) } } // namespace internal } // namespace testing ================================================ FILE: test/gtest/src/gtest-printers.cc ================================================ // Copyright 2007, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // Google Test - The Google C++ Testing and Mocking Framework // // This file implements a universal value printer that can print a // value of any type T: // // void ::testing::internal::UniversalPrinter::Print(value, ostream_ptr); // // It uses the << operator when possible, and prints the bytes in the // object otherwise. A user can override its behavior for a class // type Foo by defining either operator<<(::std::ostream&, const Foo&) // or void PrintTo(const Foo&, ::std::ostream*) in the namespace that // defines Foo. #include "gtest/gtest-printers.h" #include #include #include #include #include // NOLINT #include #include #include "gtest/internal/gtest-port.h" #include "src/gtest-internal-inl.h" namespace testing { namespace { using ::std::ostream; // Prints a segment of bytes in the given object. GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, size_t count, ostream* os) { char text[5] = ""; for (size_t i = 0; i != count; i++) { const size_t j = start + i; if (i != 0) { // Organizes the bytes into groups of 2 for easy parsing by // human. if ((j % 2) == 0) *os << ' '; else *os << '-'; } GTEST_SNPRINTF_(text, sizeof(text), "%02X", obj_bytes[j]); *os << text; } } // Prints the bytes in the given value to the given ostream. void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, ostream* os) { // Tells the user how big the object is. *os << count << "-byte object <"; const size_t kThreshold = 132; const size_t kChunkSize = 64; // If the object size is bigger than kThreshold, we'll have to omit // some details by printing only the first and the last kChunkSize // bytes. if (count < kThreshold) { PrintByteSegmentInObjectTo(obj_bytes, 0, count, os); } else { PrintByteSegmentInObjectTo(obj_bytes, 0, kChunkSize, os); *os << " ... "; // Rounds up to 2-byte boundary. const size_t resume_pos = (count - kChunkSize + 1)/2*2; PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os); } *os << ">"; } // Helpers for widening a character to char32_t. Since the standard does not // specify if char / wchar_t is signed or unsigned, it is important to first // convert it to the unsigned type of the same width before widening it to // char32_t. template char32_t ToChar32(CharType in) { return static_cast( static_cast::type>(in)); } } // namespace namespace internal { // Delegates to PrintBytesInObjectToImpl() to print the bytes in the // given object. The delegation simplifies the implementation, which // uses the << operator and thus is easier done outside of the // ::testing::internal namespace, which contains a << operator that // sometimes conflicts with the one in STL. void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count, ostream* os) { PrintBytesInObjectToImpl(obj_bytes, count, os); } // Depending on the value of a char (or wchar_t), we print it in one // of three formats: // - as is if it's a printable ASCII (e.g. 'a', '2', ' '), // - as a hexadecimal escape sequence (e.g. '\x7F'), or // - as a special escape sequence (e.g. '\r', '\n'). enum CharFormat { kAsIs, kHexEscape, kSpecialEscape }; // Returns true if c is a printable ASCII character. We test the // value of c directly instead of calling isprint(), which is buggy on // Windows Mobile. inline bool IsPrintableAscii(char32_t c) { return 0x20 <= c && c <= 0x7E; } // Prints c (of type char, char8_t, char16_t, char32_t, or wchar_t) as a // character literal without the quotes, escaping it when necessary; returns how // c was formatted. template static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) { const char32_t u_c = ToChar32(c); switch (u_c) { case L'\0': *os << "\\0"; break; case L'\'': *os << "\\'"; break; case L'\\': *os << "\\\\"; break; case L'\a': *os << "\\a"; break; case L'\b': *os << "\\b"; break; case L'\f': *os << "\\f"; break; case L'\n': *os << "\\n"; break; case L'\r': *os << "\\r"; break; case L'\t': *os << "\\t"; break; case L'\v': *os << "\\v"; break; default: if (IsPrintableAscii(u_c)) { *os << static_cast(c); return kAsIs; } else { ostream::fmtflags flags = os->flags(); *os << "\\x" << std::hex << std::uppercase << static_cast(u_c); os->flags(flags); return kHexEscape; } } return kSpecialEscape; } // Prints a char32_t c as if it's part of a string literal, escaping it when // necessary; returns how c was formatted. static CharFormat PrintAsStringLiteralTo(char32_t c, ostream* os) { switch (c) { case L'\'': *os << "'"; return kAsIs; case L'"': *os << "\\\""; return kSpecialEscape; default: return PrintAsCharLiteralTo(c, os); } } static const char* GetCharWidthPrefix(char) { return ""; } static const char* GetCharWidthPrefix(signed char) { return ""; } static const char* GetCharWidthPrefix(unsigned char) { return ""; } #ifdef __cpp_char8_t static const char* GetCharWidthPrefix(char8_t) { return "u8"; } #endif static const char* GetCharWidthPrefix(char16_t) { return "u"; } static const char* GetCharWidthPrefix(char32_t) { return "U"; } static const char* GetCharWidthPrefix(wchar_t) { return "L"; } // Prints a char c as if it's part of a string literal, escaping it when // necessary; returns how c was formatted. static CharFormat PrintAsStringLiteralTo(char c, ostream* os) { return PrintAsStringLiteralTo(ToChar32(c), os); } #ifdef __cpp_char8_t static CharFormat PrintAsStringLiteralTo(char8_t c, ostream* os) { return PrintAsStringLiteralTo(ToChar32(c), os); } #endif static CharFormat PrintAsStringLiteralTo(char16_t c, ostream* os) { return PrintAsStringLiteralTo(ToChar32(c), os); } static CharFormat PrintAsStringLiteralTo(wchar_t c, ostream* os) { return PrintAsStringLiteralTo(ToChar32(c), os); } // Prints a character c (of type char, char8_t, char16_t, char32_t, or wchar_t) // and its code. '\0' is printed as "'\\0'", other unprintable characters are // also properly escaped using the standard C++ escape sequence. template void PrintCharAndCodeTo(Char c, ostream* os) { // First, print c as a literal in the most readable form we can find. *os << GetCharWidthPrefix(c) << "'"; const CharFormat format = PrintAsCharLiteralTo(c, os); *os << "'"; // To aid user debugging, we also print c's code in decimal, unless // it's 0 (in which case c was printed as '\\0', making the code // obvious). if (c == 0) return; *os << " (" << static_cast(c); // For more convenience, we print c's code again in hexadecimal, // unless c was already printed in the form '\x##' or the code is in // [1, 9]. if (format == kHexEscape || (1 <= c && c <= 9)) { // Do nothing. } else { *os << ", 0x" << String::FormatHexInt(static_cast(c)); } *os << ")"; } void PrintTo(unsigned char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); } void PrintTo(signed char c, ::std::ostream* os) { PrintCharAndCodeTo(c, os); } // Prints a wchar_t as a symbol if it is printable or as its internal // code otherwise and also as its code. L'\0' is printed as "L'\\0'". void PrintTo(wchar_t wc, ostream* os) { PrintCharAndCodeTo(wc, os); } // TODO(dcheng): Consider making this delegate to PrintCharAndCodeTo() as well. void PrintTo(char32_t c, ::std::ostream* os) { *os << std::hex << "U+" << std::uppercase << std::setfill('0') << std::setw(4) << static_cast(c); } // Prints the given array of characters to the ostream. CharType must be either // char, char8_t, char16_t, char32_t, or wchar_t. // The array starts at begin, the length is len, it may include '\0' characters // and may not be NUL-terminated. template GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ static CharFormat PrintCharsAsStringTo( const CharType* begin, size_t len, ostream* os) { const char* const quote_prefix = GetCharWidthPrefix(*begin); *os << quote_prefix << "\""; bool is_previous_hex = false; CharFormat print_format = kAsIs; for (size_t index = 0; index < len; ++index) { const CharType cur = begin[index]; if (is_previous_hex && IsXDigit(cur)) { // Previous character is of '\x..' form and this character can be // interpreted as another hexadecimal digit in its number. Break string to // disambiguate. *os << "\" " << quote_prefix << "\""; } is_previous_hex = PrintAsStringLiteralTo(cur, os) == kHexEscape; // Remember if any characters required hex escaping. if (is_previous_hex) { print_format = kHexEscape; } } *os << "\""; return print_format; } // Prints a (const) char/wchar_t array of 'len' elements, starting at address // 'begin'. CharType must be either char or wchar_t. template GTEST_ATTRIBUTE_NO_SANITIZE_MEMORY_ GTEST_ATTRIBUTE_NO_SANITIZE_ADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_HWADDRESS_ GTEST_ATTRIBUTE_NO_SANITIZE_THREAD_ static void UniversalPrintCharArray( const CharType* begin, size_t len, ostream* os) { // The code // const char kFoo[] = "foo"; // generates an array of 4, not 3, elements, with the last one being '\0'. // // Therefore when printing a char array, we don't print the last element if // it's '\0', such that the output matches the string literal as it's // written in the source code. if (len > 0 && begin[len - 1] == '\0') { PrintCharsAsStringTo(begin, len - 1, os); return; } // If, however, the last element in the array is not '\0', e.g. // const char kFoo[] = { 'f', 'o', 'o' }; // we must print the entire array. We also print a message to indicate // that the array is not NUL-terminated. PrintCharsAsStringTo(begin, len, os); *os << " (no terminating NUL)"; } // Prints a (const) char array of 'len' elements, starting at address 'begin'. void UniversalPrintArray(const char* begin, size_t len, ostream* os) { UniversalPrintCharArray(begin, len, os); } #ifdef __cpp_char8_t // Prints a (const) char8_t array of 'len' elements, starting at address // 'begin'. void UniversalPrintArray(const char8_t* begin, size_t len, ostream* os) { UniversalPrintCharArray(begin, len, os); } #endif // Prints a (const) char16_t array of 'len' elements, starting at address // 'begin'. void UniversalPrintArray(const char16_t* begin, size_t len, ostream* os) { UniversalPrintCharArray(begin, len, os); } // Prints a (const) char32_t array of 'len' elements, starting at address // 'begin'. void UniversalPrintArray(const char32_t* begin, size_t len, ostream* os) { UniversalPrintCharArray(begin, len, os); } // Prints a (const) wchar_t array of 'len' elements, starting at address // 'begin'. void UniversalPrintArray(const wchar_t* begin, size_t len, ostream* os) { UniversalPrintCharArray(begin, len, os); } namespace { // Prints a null-terminated C-style string to the ostream. template void PrintCStringTo(const Char* s, ostream* os) { if (s == nullptr) { *os << "NULL"; } else { *os << ImplicitCast_(s) << " pointing to "; PrintCharsAsStringTo(s, std::char_traits::length(s), os); } } } // anonymous namespace void PrintTo(const char* s, ostream* os) { PrintCStringTo(s, os); } #ifdef __cpp_char8_t void PrintTo(const char8_t* s, ostream* os) { PrintCStringTo(s, os); } #endif void PrintTo(const char16_t* s, ostream* os) { PrintCStringTo(s, os); } void PrintTo(const char32_t* s, ostream* os) { PrintCStringTo(s, os); } // MSVC compiler can be configured to define whar_t as a typedef // of unsigned short. Defining an overload for const wchar_t* in that case // would cause pointers to unsigned shorts be printed as wide strings, // possibly accessing more memory than intended and causing invalid // memory accesses. MSVC defines _NATIVE_WCHAR_T_DEFINED symbol when // wchar_t is implemented as a native type. #if !defined(_MSC_VER) || defined(_NATIVE_WCHAR_T_DEFINED) // Prints the given wide C string to the ostream. void PrintTo(const wchar_t* s, ostream* os) { PrintCStringTo(s, os); } #endif // wchar_t is native namespace { bool ContainsUnprintableControlCodes(const char* str, size_t length) { const unsigned char *s = reinterpret_cast(str); for (size_t i = 0; i < length; i++) { unsigned char ch = *s++; if (std::iscntrl(ch)) { switch (ch) { case '\t': case '\n': case '\r': break; default: return true; } } } return false; } bool IsUTF8TrailByte(unsigned char t) { return 0x80 <= t && t<= 0xbf; } bool IsValidUTF8(const char* str, size_t length) { const unsigned char *s = reinterpret_cast(str); for (size_t i = 0; i < length;) { unsigned char lead = s[i++]; if (lead <= 0x7f) { continue; // single-byte character (ASCII) 0..7F } if (lead < 0xc2) { return false; // trail byte or non-shortest form } else if (lead <= 0xdf && (i + 1) <= length && IsUTF8TrailByte(s[i])) { ++i; // 2-byte character } else if (0xe0 <= lead && lead <= 0xef && (i + 2) <= length && IsUTF8TrailByte(s[i]) && IsUTF8TrailByte(s[i + 1]) && // check for non-shortest form and surrogate (lead != 0xe0 || s[i] >= 0xa0) && (lead != 0xed || s[i] < 0xa0)) { i += 2; // 3-byte character } else if (0xf0 <= lead && lead <= 0xf4 && (i + 3) <= length && IsUTF8TrailByte(s[i]) && IsUTF8TrailByte(s[i + 1]) && IsUTF8TrailByte(s[i + 2]) && // check for non-shortest form (lead != 0xf0 || s[i] >= 0x90) && (lead != 0xf4 || s[i] < 0x90)) { i += 3; // 4-byte character } else { return false; } } return true; } void ConditionalPrintAsText(const char* str, size_t length, ostream* os) { if (!ContainsUnprintableControlCodes(str, length) && IsValidUTF8(str, length)) { *os << "\n As Text: \"" << str << "\""; } } } // anonymous namespace void PrintStringTo(const ::std::string& s, ostream* os) { if (PrintCharsAsStringTo(s.data(), s.size(), os) == kHexEscape) { if (GTEST_FLAG(print_utf8)) { ConditionalPrintAsText(s.data(), s.size(), os); } } } #ifdef __cpp_char8_t void PrintU8StringTo(const ::std::u8string& s, ostream* os) { PrintCharsAsStringTo(s.data(), s.size(), os); } #endif void PrintU16StringTo(const ::std::u16string& s, ostream* os) { PrintCharsAsStringTo(s.data(), s.size(), os); } void PrintU32StringTo(const ::std::u32string& s, ostream* os) { PrintCharsAsStringTo(s.data(), s.size(), os); } #if GTEST_HAS_STD_WSTRING void PrintWideStringTo(const ::std::wstring& s, ostream* os) { PrintCharsAsStringTo(s.data(), s.size(), os); } #endif // GTEST_HAS_STD_WSTRING } // namespace internal } // namespace testing ================================================ FILE: test/gtest/src/gtest-test-part.cc ================================================ // Copyright 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) #include "gtest/gtest-test-part.h" #include "gtest/internal/gtest-port.h" #include "src/gtest-internal-inl.h" namespace testing { using internal::GetUnitTestImpl; // Gets the summary of the failure message by omitting the stack trace // in it. std::string TestPartResult::ExtractSummary(const char* message) { const char* const stack_trace = strstr(message, internal::kStackTraceMarker); return stack_trace == nullptr ? message : std::string(message, stack_trace); } // Prints a TestPartResult object. std::ostream& operator<<(std::ostream& os, const TestPartResult& result) { return os << internal::FormatFileLocation(result.file_name(), result.line_number()) << " " << (result.type() == TestPartResult::kSuccess ? "Success" : result.type() == TestPartResult::kSkip ? "Skipped" : result.type() == TestPartResult::kFatalFailure ? "Fatal failure" : "Non-fatal failure") << ":\n" << result.message() << std::endl; } // Appends a TestPartResult to the array. void TestPartResultArray::Append(const TestPartResult& result) { array_.push_back(result); } // Returns the TestPartResult at the given index (0-based). const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const { if (index < 0 || index >= size()) { printf("\nInvalid index (%d) into TestPartResultArray.\n", index); internal::posix::Abort(); } return array_[static_cast(index)]; } // Returns the number of TestPartResult objects in the array. int TestPartResultArray::size() const { return static_cast(array_.size()); } namespace internal { HasNewFatalFailureHelper::HasNewFatalFailureHelper() : has_new_fatal_failure_(false), original_reporter_(GetUnitTestImpl()-> GetTestPartResultReporterForCurrentThread()) { GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread(this); } HasNewFatalFailureHelper::~HasNewFatalFailureHelper() { GetUnitTestImpl()->SetTestPartResultReporterForCurrentThread( original_reporter_); } void HasNewFatalFailureHelper::ReportTestPartResult( const TestPartResult& result) { if (result.fatally_failed()) has_new_fatal_failure_ = true; original_reporter_->ReportTestPartResult(result); } } // namespace internal } // namespace testing ================================================ FILE: test/gtest/src/gtest-typed-test.cc ================================================ // Copyright 2008 Google Inc. // All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "gtest/gtest-typed-test.h" #include "gtest/gtest.h" namespace testing { namespace internal { // Skips to the first non-space char in str. Returns an empty string if str // contains only whitespace characters. static const char* SkipSpaces(const char* str) { while (IsSpace(*str)) str++; return str; } static std::vector SplitIntoTestNames(const char* src) { std::vector name_vec; src = SkipSpaces(src); for (; src != nullptr; src = SkipComma(src)) { name_vec.push_back(StripTrailingSpaces(GetPrefixUntilComma(src))); } return name_vec; } // Verifies that registered_tests match the test names in // registered_tests_; returns registered_tests if successful, or // aborts the program otherwise. const char* TypedTestSuitePState::VerifyRegisteredTestNames( const char* test_suite_name, const char* file, int line, const char* registered_tests) { RegisterTypeParameterizedTestSuite(test_suite_name, CodeLocation(file, line)); typedef RegisteredTestsMap::const_iterator RegisteredTestIter; registered_ = true; std::vector name_vec = SplitIntoTestNames(registered_tests); Message errors; std::set tests; for (std::vector::const_iterator name_it = name_vec.begin(); name_it != name_vec.end(); ++name_it) { const std::string& name = *name_it; if (tests.count(name) != 0) { errors << "Test " << name << " is listed more than once.\n"; continue; } if (registered_tests_.count(name) != 0) { tests.insert(name); } else { errors << "No test named " << name << " can be found in this test suite.\n"; } } for (RegisteredTestIter it = registered_tests_.begin(); it != registered_tests_.end(); ++it) { if (tests.count(it->first) == 0) { errors << "You forgot to list test " << it->first << ".\n"; } } const std::string& errors_str = errors.GetString(); if (errors_str != "") { fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(), errors_str.c_str()); fflush(stderr); posix::Abort(); } return registered_tests; } } // namespace internal } // namespace testing ================================================ FILE: test/gtest/src/gtest.cc ================================================ // Copyright 2005, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // The Google C++ Testing and Mocking Framework (Google Test) #include "gtest/gtest.h" #include "gtest/internal/custom/gtest.h" #include "gtest/gtest-spi.h" #include #include #include #include #include #include #include #include #include // NOLINT #include #include #include #include #include #include #include // NOLINT #include #include #if GTEST_OS_LINUX # include // NOLINT # include // NOLINT # include // NOLINT // Declares vsnprintf(). This header is not available on Windows. # include // NOLINT # include // NOLINT # include // NOLINT # include // NOLINT # include #elif GTEST_OS_ZOS # include // NOLINT // On z/OS we additionally need strings.h for strcasecmp. # include // NOLINT #elif GTEST_OS_WINDOWS_MOBILE // We are on Windows CE. # include // NOLINT # undef min #elif GTEST_OS_WINDOWS // We are on Windows proper. # include // NOLINT # undef min #ifdef _MSC_VER # include // NOLINT #endif # include // NOLINT # include // NOLINT # include // NOLINT # include // NOLINT # if GTEST_OS_WINDOWS_MINGW # include // NOLINT # endif // GTEST_OS_WINDOWS_MINGW #else // cpplint thinks that the header is already included, so we want to // silence it. # include // NOLINT # include // NOLINT #endif // GTEST_OS_LINUX #if GTEST_HAS_EXCEPTIONS # include #endif #if GTEST_CAN_STREAM_RESULTS_ # include // NOLINT # include // NOLINT # include // NOLINT # include // NOLINT #endif #include "src/gtest-internal-inl.h" #if GTEST_OS_WINDOWS # define vsnprintf _vsnprintf #endif // GTEST_OS_WINDOWS #if GTEST_OS_MAC #ifndef GTEST_OS_IOS #include #endif #endif #if GTEST_HAS_ABSL #include "absl/debugging/failure_signal_handler.h" #include "absl/debugging/stacktrace.h" #include "absl/debugging/symbolize.h" #include "absl/strings/str_cat.h" #endif // GTEST_HAS_ABSL namespace testing { using internal::CountIf; using internal::ForEach; using internal::GetElementOr; using internal::Shuffle; // Constants. // A test whose test suite name or test name matches this filter is // disabled and not run. static const char kDisableTestFilter[] = "DISABLED_*:*/DISABLED_*"; // A test suite whose name matches this filter is considered a death // test suite and will be run before test suites whose name doesn't // match this filter. static const char kDeathTestSuiteFilter[] = "*DeathTest:*DeathTest/*"; // A test filter that matches everything. static const char kUniversalFilter[] = "*"; // The default output format. static const char kDefaultOutputFormat[] = "xml"; // The default output file. static const char kDefaultOutputFile[] = "test_detail"; // The environment variable name for the test shard index. static const char kTestShardIndex[] = "GTEST_SHARD_INDEX"; // The environment variable name for the total number of test shards. static const char kTestTotalShards[] = "GTEST_TOTAL_SHARDS"; // The environment variable name for the test shard status file. static const char kTestShardStatusFile[] = "GTEST_SHARD_STATUS_FILE"; namespace internal { // The text used in failure messages to indicate the start of the // stack trace. const char kStackTraceMarker[] = "\nStack trace:\n"; // g_help_flag is true if and only if the --help flag or an equivalent form // is specified on the command line. bool g_help_flag = false; // Utilty function to Open File for Writing static FILE* OpenFileForWriting(const std::string& output_file) { FILE* fileout = nullptr; FilePath output_file_path(output_file); FilePath output_dir(output_file_path.RemoveFileName()); if (output_dir.CreateDirectoriesRecursively()) { fileout = posix::FOpen(output_file.c_str(), "w"); } if (fileout == nullptr) { GTEST_LOG_(FATAL) << "Unable to open file \"" << output_file << "\""; } return fileout; } } // namespace internal // Bazel passes in the argument to '--test_filter' via the TESTBRIDGE_TEST_ONLY // environment variable. static const char* GetDefaultFilter() { const char* const testbridge_test_only = internal::posix::GetEnv("TESTBRIDGE_TEST_ONLY"); if (testbridge_test_only != nullptr) { return testbridge_test_only; } return kUniversalFilter; } // Bazel passes in the argument to '--test_runner_fail_fast' via the // TESTBRIDGE_TEST_RUNNER_FAIL_FAST environment variable. static bool GetDefaultFailFast() { const char* const testbridge_test_runner_fail_fast = internal::posix::GetEnv("TESTBRIDGE_TEST_RUNNER_FAIL_FAST"); if (testbridge_test_runner_fail_fast != nullptr) { return strcmp(testbridge_test_runner_fail_fast, "1") == 0; } return false; } GTEST_DEFINE_bool_( fail_fast, internal::BoolFromGTestEnv("fail_fast", GetDefaultFailFast()), "True if and only if a test failure should stop further test execution."); GTEST_DEFINE_bool_( also_run_disabled_tests, internal::BoolFromGTestEnv("also_run_disabled_tests", false), "Run disabled tests too, in addition to the tests normally being run."); GTEST_DEFINE_bool_( break_on_failure, internal::BoolFromGTestEnv("break_on_failure", false), "True if and only if a failed assertion should be a debugger " "break-point."); GTEST_DEFINE_bool_(catch_exceptions, internal::BoolFromGTestEnv("catch_exceptions", true), "True if and only if " GTEST_NAME_ " should catch exceptions and treat them as test failures."); GTEST_DEFINE_string_( color, internal::StringFromGTestEnv("color", "auto"), "Whether to use colors in the output. Valid values: yes, no, " "and auto. 'auto' means to use colors if the output is " "being sent to a terminal and the TERM environment variable " "is set to a terminal type that supports colors."); GTEST_DEFINE_string_( filter, internal::StringFromGTestEnv("filter", GetDefaultFilter()), "A colon-separated list of glob (not regex) patterns " "for filtering the tests to run, optionally followed by a " "'-' and a : separated list of negative patterns (tests to " "exclude). A test is run if it matches one of the positive " "patterns and does not match any of the negative patterns."); GTEST_DEFINE_bool_( install_failure_signal_handler, internal::BoolFromGTestEnv("install_failure_signal_handler", false), "If true and supported on the current platform, " GTEST_NAME_ " should " "install a signal handler that dumps debugging information when fatal " "signals are raised."); GTEST_DEFINE_bool_(list_tests, false, "List all tests without running them."); // The net priority order after flag processing is thus: // --gtest_output command line flag // GTEST_OUTPUT environment variable // XML_OUTPUT_FILE environment variable // '' GTEST_DEFINE_string_( output, internal::StringFromGTestEnv("output", internal::OutputFlagAlsoCheckEnvVar().c_str()), "A format (defaults to \"xml\" but can be specified to be \"json\"), " "optionally followed by a colon and an output file name or directory. " "A directory is indicated by a trailing pathname separator. " "Examples: \"xml:filename.xml\", \"xml::directoryname/\". " "If a directory is specified, output files will be created " "within that directory, with file-names based on the test " "executable's name and, if necessary, made unique by adding " "digits."); GTEST_DEFINE_bool_( brief, internal::BoolFromGTestEnv("brief", false), "True if only test failures should be displayed in text output."); GTEST_DEFINE_bool_(print_time, internal::BoolFromGTestEnv("print_time", true), "True if and only if " GTEST_NAME_ " should display elapsed time in text output."); GTEST_DEFINE_bool_(print_utf8, internal::BoolFromGTestEnv("print_utf8", true), "True if and only if " GTEST_NAME_ " prints UTF8 characters as text."); GTEST_DEFINE_int32_( random_seed, internal::Int32FromGTestEnv("random_seed", 0), "Random number seed to use when shuffling test orders. Must be in range " "[1, 99999], or 0 to use a seed based on the current time."); GTEST_DEFINE_int32_( repeat, internal::Int32FromGTestEnv("repeat", 1), "How many times to repeat each test. Specify a negative number " "for repeating forever. Useful for shaking out flaky tests."); GTEST_DEFINE_bool_(show_internal_stack_frames, false, "True if and only if " GTEST_NAME_ " should include internal stack frames when " "printing test failure stack traces."); GTEST_DEFINE_bool_(shuffle, internal::BoolFromGTestEnv("shuffle", false), "True if and only if " GTEST_NAME_ " should randomize tests' order on every run."); GTEST_DEFINE_int32_( stack_trace_depth, internal::Int32FromGTestEnv("stack_trace_depth", kMaxStackTraceDepth), "The maximum number of stack frames to print when an " "assertion fails. The valid range is 0 through 100, inclusive."); GTEST_DEFINE_string_( stream_result_to, internal::StringFromGTestEnv("stream_result_to", ""), "This flag specifies the host name and the port number on which to stream " "test results. Example: \"localhost:555\". The flag is effective only on " "Linux."); GTEST_DEFINE_bool_( throw_on_failure, internal::BoolFromGTestEnv("throw_on_failure", false), "When this flag is specified, a failed assertion will throw an exception " "if exceptions are enabled or exit the program with a non-zero code " "otherwise. For use with an external test framework."); #if GTEST_USE_OWN_FLAGFILE_FLAG_ GTEST_DEFINE_string_( flagfile, internal::StringFromGTestEnv("flagfile", ""), "This flag specifies the flagfile to read command-line flags from."); #endif // GTEST_USE_OWN_FLAGFILE_FLAG_ namespace internal { // Generates a random number from [0, range), using a Linear // Congruential Generator (LCG). Crashes if 'range' is 0 or greater // than kMaxRange. uint32_t Random::Generate(uint32_t range) { // These constants are the same as are used in glibc's rand(3). // Use wider types than necessary to prevent unsigned overflow diagnostics. state_ = static_cast(1103515245ULL*state_ + 12345U) % kMaxRange; GTEST_CHECK_(range > 0) << "Cannot generate a number in the range [0, 0)."; GTEST_CHECK_(range <= kMaxRange) << "Generation of a number in [0, " << range << ") was requested, " << "but this can only generate numbers in [0, " << kMaxRange << ")."; // Converting via modulus introduces a bit of downward bias, but // it's simple, and a linear congruential generator isn't too good // to begin with. return state_ % range; } // GTestIsInitialized() returns true if and only if the user has initialized // Google Test. Useful for catching the user mistake of not initializing // Google Test before calling RUN_ALL_TESTS(). static bool GTestIsInitialized() { return GetArgvs().size() > 0; } // Iterates over a vector of TestSuites, keeping a running sum of the // results of calling a given int-returning method on each. // Returns the sum. static int SumOverTestSuiteList(const std::vector& case_list, int (TestSuite::*method)() const) { int sum = 0; for (size_t i = 0; i < case_list.size(); i++) { sum += (case_list[i]->*method)(); } return sum; } // Returns true if and only if the test suite passed. static bool TestSuitePassed(const TestSuite* test_suite) { return test_suite->should_run() && test_suite->Passed(); } // Returns true if and only if the test suite failed. static bool TestSuiteFailed(const TestSuite* test_suite) { return test_suite->should_run() && test_suite->Failed(); } // Returns true if and only if test_suite contains at least one test that // should run. static bool ShouldRunTestSuite(const TestSuite* test_suite) { return test_suite->should_run(); } // AssertHelper constructor. AssertHelper::AssertHelper(TestPartResult::Type type, const char* file, int line, const char* message) : data_(new AssertHelperData(type, file, line, message)) { } AssertHelper::~AssertHelper() { delete data_; } // Message assignment, for assertion streaming support. void AssertHelper::operator=(const Message& message) const { UnitTest::GetInstance()-> AddTestPartResult(data_->type, data_->file, data_->line, AppendUserMessage(data_->message, message), UnitTest::GetInstance()->impl() ->CurrentOsStackTraceExceptTop(1) // Skips the stack frame for this function itself. ); // NOLINT } namespace { // When TEST_P is found without a matching INSTANTIATE_TEST_SUITE_P // to creates test cases for it, a syntetic test case is // inserted to report ether an error or a log message. // // This configuration bit will likely be removed at some point. constexpr bool kErrorOnUninstantiatedParameterizedTest = true; constexpr bool kErrorOnUninstantiatedTypeParameterizedTest = true; // A test that fails at a given file/line location with a given message. class FailureTest : public Test { public: explicit FailureTest(const CodeLocation& loc, std::string error_message, bool as_error) : loc_(loc), error_message_(std::move(error_message)), as_error_(as_error) {} void TestBody() override { if (as_error_) { AssertHelper(TestPartResult::kNonFatalFailure, loc_.file.c_str(), loc_.line, "") = Message() << error_message_; } else { std::cout << error_message_ << std::endl; } } private: const CodeLocation loc_; const std::string error_message_; const bool as_error_; }; } // namespace std::set* GetIgnoredParameterizedTestSuites() { return UnitTest::GetInstance()->impl()->ignored_parameterized_test_suites(); } // Add a given test_suit to the list of them allow to go un-instantiated. MarkAsIgnored::MarkAsIgnored(const char* test_suite) { GetIgnoredParameterizedTestSuites()->insert(test_suite); } // If this parameterized test suite has no instantiations (and that // has not been marked as okay), emit a test case reporting that. void InsertSyntheticTestCase(const std::string& name, CodeLocation location, bool has_test_p) { const auto& ignored = *GetIgnoredParameterizedTestSuites(); if (ignored.find(name) != ignored.end()) return; const char kMissingInstantiation[] = // " is defined via TEST_P, but never instantiated. None of the test cases " "will run. Either no INSTANTIATE_TEST_SUITE_P is provided or the only " "ones provided expand to nothing." "\n\n" "Ideally, TEST_P definitions should only ever be included as part of " "binaries that intend to use them. (As opposed to, for example, being " "placed in a library that may be linked in to get other utilities.)"; const char kMissingTestCase[] = // " is instantiated via INSTANTIATE_TEST_SUITE_P, but no tests are " "defined via TEST_P . No test cases will run." "\n\n" "Ideally, INSTANTIATE_TEST_SUITE_P should only ever be invoked from " "code that always depend on code that provides TEST_P. Failing to do " "so is often an indication of dead code, e.g. the last TEST_P was " "removed but the rest got left behind."; std::string message = "Parameterized test suite " + name + (has_test_p ? kMissingInstantiation : kMissingTestCase) + "\n\n" "To suppress this error for this test suite, insert the following line " "(in a non-header) in the namespace it is defined in:" "\n\n" "GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(" + name + ");"; std::string full_name = "UninstantiatedParameterizedTestSuite<" + name + ">"; RegisterTest( // "GoogleTestVerification", full_name.c_str(), nullptr, // No type parameter. nullptr, // No value parameter. location.file.c_str(), location.line, [message, location] { return new FailureTest(location, message, kErrorOnUninstantiatedParameterizedTest); }); } void RegisterTypeParameterizedTestSuite(const char* test_suite_name, CodeLocation code_location) { GetUnitTestImpl()->type_parameterized_test_registry().RegisterTestSuite( test_suite_name, code_location); } void RegisterTypeParameterizedTestSuiteInstantiation(const char* case_name) { GetUnitTestImpl() ->type_parameterized_test_registry() .RegisterInstantiation(case_name); } void TypeParameterizedTestSuiteRegistry::RegisterTestSuite( const char* test_suite_name, CodeLocation code_location) { suites_.emplace(std::string(test_suite_name), TypeParameterizedTestSuiteInfo(code_location)); } void TypeParameterizedTestSuiteRegistry::RegisterInstantiation( const char* test_suite_name) { auto it = suites_.find(std::string(test_suite_name)); if (it != suites_.end()) { it->second.instantiated = true; } else { GTEST_LOG_(ERROR) << "Unknown type parameterized test suit '" << test_suite_name << "'"; } } void TypeParameterizedTestSuiteRegistry::CheckForInstantiations() { const auto& ignored = *GetIgnoredParameterizedTestSuites(); for (const auto& testcase : suites_) { if (testcase.second.instantiated) continue; if (ignored.find(testcase.first) != ignored.end()) continue; std::string message = "Type parameterized test suite " + testcase.first + " is defined via REGISTER_TYPED_TEST_SUITE_P, but never instantiated " "via INSTANTIATE_TYPED_TEST_SUITE_P. None of the test cases will run." "\n\n" "Ideally, TYPED_TEST_P definitions should only ever be included as " "part of binaries that intend to use them. (As opposed to, for " "example, being placed in a library that may be linked in to get other " "utilities.)" "\n\n" "To suppress this error for this test suite, insert the following line " "(in a non-header) in the namespace it is defined in:" "\n\n" "GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(" + testcase.first + ");"; std::string full_name = "UninstantiatedTypeParameterizedTestSuite<" + testcase.first + ">"; RegisterTest( // "GoogleTestVerification", full_name.c_str(), nullptr, // No type parameter. nullptr, // No value parameter. testcase.second.code_location.file.c_str(), testcase.second.code_location.line, [message, testcase] { return new FailureTest(testcase.second.code_location, message, kErrorOnUninstantiatedTypeParameterizedTest); }); } } // A copy of all command line arguments. Set by InitGoogleTest(). static ::std::vector g_argvs; ::std::vector GetArgvs() { #if defined(GTEST_CUSTOM_GET_ARGVS_) // GTEST_CUSTOM_GET_ARGVS_() may return a container of std::string or // ::string. This code converts it to the appropriate type. const auto& custom = GTEST_CUSTOM_GET_ARGVS_(); return ::std::vector(custom.begin(), custom.end()); #else // defined(GTEST_CUSTOM_GET_ARGVS_) return g_argvs; #endif // defined(GTEST_CUSTOM_GET_ARGVS_) } // Returns the current application's name, removing directory path if that // is present. FilePath GetCurrentExecutableName() { FilePath result; #if GTEST_OS_WINDOWS || GTEST_OS_OS2 result.Set(FilePath(GetArgvs()[0]).RemoveExtension("exe")); #else result.Set(FilePath(GetArgvs()[0])); #endif // GTEST_OS_WINDOWS return result.RemoveDirectoryName(); } // Functions for processing the gtest_output flag. // Returns the output format, or "" for normal printed output. std::string UnitTestOptions::GetOutputFormat() { const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); const char* const colon = strchr(gtest_output_flag, ':'); return (colon == nullptr) ? std::string(gtest_output_flag) : std::string(gtest_output_flag, static_cast(colon - gtest_output_flag)); } // Returns the name of the requested output file, or the default if none // was explicitly specified. std::string UnitTestOptions::GetAbsolutePathToOutputFile() { const char* const gtest_output_flag = GTEST_FLAG(output).c_str(); std::string format = GetOutputFormat(); if (format.empty()) format = std::string(kDefaultOutputFormat); const char* const colon = strchr(gtest_output_flag, ':'); if (colon == nullptr) return internal::FilePath::MakeFileName( internal::FilePath( UnitTest::GetInstance()->original_working_dir()), internal::FilePath(kDefaultOutputFile), 0, format.c_str()).string(); internal::FilePath output_name(colon + 1); if (!output_name.IsAbsolutePath()) output_name = internal::FilePath::ConcatPaths( internal::FilePath(UnitTest::GetInstance()->original_working_dir()), internal::FilePath(colon + 1)); if (!output_name.IsDirectory()) return output_name.string(); internal::FilePath result(internal::FilePath::GenerateUniqueFileName( output_name, internal::GetCurrentExecutableName(), GetOutputFormat().c_str())); return result.string(); } // Returns true if and only if the wildcard pattern matches the string. Each // pattern consists of regular characters, single-character wildcards (?), and // multi-character wildcards (*). // // This function implements a linear-time string globbing algorithm based on // https://research.swtch.com/glob. static bool PatternMatchesString(const std::string& name_str, const char* pattern, const char* pattern_end) { const char* name = name_str.c_str(); const char* const name_begin = name; const char* const name_end = name + name_str.size(); const char* pattern_next = pattern; const char* name_next = name; while (pattern < pattern_end || name < name_end) { if (pattern < pattern_end) { switch (*pattern) { default: // Match an ordinary character. if (name < name_end && *name == *pattern) { ++pattern; ++name; continue; } break; case '?': // Match any single character. if (name < name_end) { ++pattern; ++name; continue; } break; case '*': // Match zero or more characters. Start by skipping over the wildcard // and matching zero characters from name. If that fails, restart and // match one more character than the last attempt. pattern_next = pattern; name_next = name + 1; ++pattern; continue; } } // Failed to match a character. Restart if possible. if (name_begin < name_next && name_next <= name_end) { pattern = pattern_next; name = name_next; continue; } return false; } return true; } bool UnitTestOptions::MatchesFilter(const std::string& name_str, const char* filter) { // The filter is a list of patterns separated by colons (:). const char* pattern = filter; while (true) { // Find the bounds of this pattern. const char* const next_sep = strchr(pattern, ':'); const char* const pattern_end = next_sep != nullptr ? next_sep : pattern + strlen(pattern); // Check if this pattern matches name_str. if (PatternMatchesString(name_str, pattern, pattern_end)) { return true; } // Give up on this pattern. However, if we found a pattern separator (:), // advance to the next pattern (skipping over the separator) and restart. if (next_sep == nullptr) { return false; } pattern = next_sep + 1; } return true; } // Returns true if and only if the user-specified filter matches the test // suite name and the test name. bool UnitTestOptions::FilterMatchesTest(const std::string& test_suite_name, const std::string& test_name) { const std::string& full_name = test_suite_name + "." + test_name.c_str(); // Split --gtest_filter at '-', if there is one, to separate into // positive filter and negative filter portions const char* const p = GTEST_FLAG(filter).c_str(); const char* const dash = strchr(p, '-'); std::string positive; std::string negative; if (dash == nullptr) { positive = GTEST_FLAG(filter).c_str(); // Whole string is a positive filter negative = ""; } else { positive = std::string(p, dash); // Everything up to the dash negative = std::string(dash + 1); // Everything after the dash if (positive.empty()) { // Treat '-test1' as the same as '*-test1' positive = kUniversalFilter; } } // A filter is a colon-separated list of patterns. It matches a // test if any pattern in it matches the test. return (MatchesFilter(full_name, positive.c_str()) && !MatchesFilter(full_name, negative.c_str())); } #if GTEST_HAS_SEH // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the // given SEH exception, or EXCEPTION_CONTINUE_SEARCH otherwise. // This function is useful as an __except condition. int UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) { // Google Test should handle a SEH exception if: // 1. the user wants it to, AND // 2. this is not a breakpoint exception, AND // 3. this is not a C++ exception (VC++ implements them via SEH, // apparently). // // SEH exception code for C++ exceptions. // (see http://support.microsoft.com/kb/185294 for more information). const DWORD kCxxExceptionCode = 0xe06d7363; bool should_handle = true; if (!GTEST_FLAG(catch_exceptions)) should_handle = false; else if (exception_code == EXCEPTION_BREAKPOINT) should_handle = false; else if (exception_code == kCxxExceptionCode) should_handle = false; return should_handle ? EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH; } #endif // GTEST_HAS_SEH } // namespace internal // The c'tor sets this object as the test part result reporter used by // Google Test. The 'result' parameter specifies where to report the // results. Intercepts only failures from the current thread. ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( TestPartResultArray* result) : intercept_mode_(INTERCEPT_ONLY_CURRENT_THREAD), result_(result) { Init(); } // The c'tor sets this object as the test part result reporter used by // Google Test. The 'result' parameter specifies where to report the // results. ScopedFakeTestPartResultReporter::ScopedFakeTestPartResultReporter( InterceptMode intercept_mode, TestPartResultArray* result) : intercept_mode_(intercept_mode), result_(result) { Init(); } void ScopedFakeTestPartResultReporter::Init() { internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); if (intercept_mode_ == INTERCEPT_ALL_THREADS) { old_reporter_ = impl->GetGlobalTestPartResultReporter(); impl->SetGlobalTestPartResultReporter(this); } else { old_reporter_ = impl->GetTestPartResultReporterForCurrentThread(); impl->SetTestPartResultReporterForCurrentThread(this); } } // The d'tor restores the test part result reporter used by Google Test // before. ScopedFakeTestPartResultReporter::~ScopedFakeTestPartResultReporter() { internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); if (intercept_mode_ == INTERCEPT_ALL_THREADS) { impl->SetGlobalTestPartResultReporter(old_reporter_); } else { impl->SetTestPartResultReporterForCurrentThread(old_reporter_); } } // Increments the test part result count and remembers the result. // This method is from the TestPartResultReporterInterface interface. void ScopedFakeTestPartResultReporter::ReportTestPartResult( const TestPartResult& result) { result_->Append(result); } namespace internal { // Returns the type ID of ::testing::Test. We should always call this // instead of GetTypeId< ::testing::Test>() to get the type ID of // testing::Test. This is to work around a suspected linker bug when // using Google Test as a framework on Mac OS X. The bug causes // GetTypeId< ::testing::Test>() to return different values depending // on whether the call is from the Google Test framework itself or // from user test code. GetTestTypeId() is guaranteed to always // return the same value, as it always calls GetTypeId<>() from the // gtest.cc, which is within the Google Test framework. TypeId GetTestTypeId() { return GetTypeId(); } // The value of GetTestTypeId() as seen from within the Google Test // library. This is solely for testing GetTestTypeId(). extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId(); // This predicate-formatter checks that 'results' contains a test part // failure of the given type and that the failure message contains the // given substring. static AssertionResult HasOneFailure(const char* /* results_expr */, const char* /* type_expr */, const char* /* substr_expr */, const TestPartResultArray& results, TestPartResult::Type type, const std::string& substr) { const std::string expected(type == TestPartResult::kFatalFailure ? "1 fatal failure" : "1 non-fatal failure"); Message msg; if (results.size() != 1) { msg << "Expected: " << expected << "\n" << " Actual: " << results.size() << " failures"; for (int i = 0; i < results.size(); i++) { msg << "\n" << results.GetTestPartResult(i); } return AssertionFailure() << msg; } const TestPartResult& r = results.GetTestPartResult(0); if (r.type() != type) { return AssertionFailure() << "Expected: " << expected << "\n" << " Actual:\n" << r; } if (strstr(r.message(), substr.c_str()) == nullptr) { return AssertionFailure() << "Expected: " << expected << " containing \"" << substr << "\"\n" << " Actual:\n" << r; } return AssertionSuccess(); } // The constructor of SingleFailureChecker remembers where to look up // test part results, what type of failure we expect, and what // substring the failure message should contain. SingleFailureChecker::SingleFailureChecker(const TestPartResultArray* results, TestPartResult::Type type, const std::string& substr) : results_(results), type_(type), substr_(substr) {} // The destructor of SingleFailureChecker verifies that the given // TestPartResultArray contains exactly one failure that has the given // type and contains the given substring. If that's not the case, a // non-fatal failure will be generated. SingleFailureChecker::~SingleFailureChecker() { EXPECT_PRED_FORMAT3(HasOneFailure, *results_, type_, substr_); } DefaultGlobalTestPartResultReporter::DefaultGlobalTestPartResultReporter( UnitTestImpl* unit_test) : unit_test_(unit_test) {} void DefaultGlobalTestPartResultReporter::ReportTestPartResult( const TestPartResult& result) { unit_test_->current_test_result()->AddTestPartResult(result); unit_test_->listeners()->repeater()->OnTestPartResult(result); } DefaultPerThreadTestPartResultReporter::DefaultPerThreadTestPartResultReporter( UnitTestImpl* unit_test) : unit_test_(unit_test) {} void DefaultPerThreadTestPartResultReporter::ReportTestPartResult( const TestPartResult& result) { unit_test_->GetGlobalTestPartResultReporter()->ReportTestPartResult(result); } // Returns the global test part result reporter. TestPartResultReporterInterface* UnitTestImpl::GetGlobalTestPartResultReporter() { internal::MutexLock lock(&global_test_part_result_reporter_mutex_); return global_test_part_result_repoter_; } // Sets the global test part result reporter. void UnitTestImpl::SetGlobalTestPartResultReporter( TestPartResultReporterInterface* reporter) { internal::MutexLock lock(&global_test_part_result_reporter_mutex_); global_test_part_result_repoter_ = reporter; } // Returns the test part result reporter for the current thread. TestPartResultReporterInterface* UnitTestImpl::GetTestPartResultReporterForCurrentThread() { return per_thread_test_part_result_reporter_.get(); } // Sets the test part result reporter for the current thread. void UnitTestImpl::SetTestPartResultReporterForCurrentThread( TestPartResultReporterInterface* reporter) { per_thread_test_part_result_reporter_.set(reporter); } // Gets the number of successful test suites. int UnitTestImpl::successful_test_suite_count() const { return CountIf(test_suites_, TestSuitePassed); } // Gets the number of failed test suites. int UnitTestImpl::failed_test_suite_count() const { return CountIf(test_suites_, TestSuiteFailed); } // Gets the number of all test suites. int UnitTestImpl::total_test_suite_count() const { return static_cast(test_suites_.size()); } // Gets the number of all test suites that contain at least one test // that should run. int UnitTestImpl::test_suite_to_run_count() const { return CountIf(test_suites_, ShouldRunTestSuite); } // Gets the number of successful tests. int UnitTestImpl::successful_test_count() const { return SumOverTestSuiteList(test_suites_, &TestSuite::successful_test_count); } // Gets the number of skipped tests. int UnitTestImpl::skipped_test_count() const { return SumOverTestSuiteList(test_suites_, &TestSuite::skipped_test_count); } // Gets the number of failed tests. int UnitTestImpl::failed_test_count() const { return SumOverTestSuiteList(test_suites_, &TestSuite::failed_test_count); } // Gets the number of disabled tests that will be reported in the XML report. int UnitTestImpl::reportable_disabled_test_count() const { return SumOverTestSuiteList(test_suites_, &TestSuite::reportable_disabled_test_count); } // Gets the number of disabled tests. int UnitTestImpl::disabled_test_count() const { return SumOverTestSuiteList(test_suites_, &TestSuite::disabled_test_count); } // Gets the number of tests to be printed in the XML report. int UnitTestImpl::reportable_test_count() const { return SumOverTestSuiteList(test_suites_, &TestSuite::reportable_test_count); } // Gets the number of all tests. int UnitTestImpl::total_test_count() const { return SumOverTestSuiteList(test_suites_, &TestSuite::total_test_count); } // Gets the number of tests that should run. int UnitTestImpl::test_to_run_count() const { return SumOverTestSuiteList(test_suites_, &TestSuite::test_to_run_count); } // Returns the current OS stack trace as an std::string. // // The maximum number of stack frames to be included is specified by // the gtest_stack_trace_depth flag. The skip_count parameter // specifies the number of top frames to be skipped, which doesn't // count against the number of frames to be included. // // For example, if Foo() calls Bar(), which in turn calls // CurrentOsStackTraceExceptTop(1), Foo() will be included in the // trace but Bar() and CurrentOsStackTraceExceptTop() won't. std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) { return os_stack_trace_getter()->CurrentStackTrace( static_cast(GTEST_FLAG(stack_trace_depth)), skip_count + 1 // Skips the user-specified number of frames plus this function // itself. ); // NOLINT } // A helper class for measuring elapsed times. class Timer { public: Timer() : start_(std::chrono::steady_clock::now()) {} // Return time elapsed in milliseconds since the timer was created. TimeInMillis Elapsed() { return std::chrono::duration_cast( std::chrono::steady_clock::now() - start_) .count(); } private: std::chrono::steady_clock::time_point start_; }; // Returns a timestamp as milliseconds since the epoch. Note this time may jump // around subject to adjustments by the system, to measure elapsed time use // Timer instead. TimeInMillis GetTimeInMillis() { return std::chrono::duration_cast( std::chrono::system_clock::now() - std::chrono::system_clock::from_time_t(0)) .count(); } // Utilities // class String. #if GTEST_OS_WINDOWS_MOBILE // Creates a UTF-16 wide string from the given ANSI string, allocating // memory using new. The caller is responsible for deleting the return // value using delete[]. Returns the wide string, or NULL if the // input is NULL. LPCWSTR String::AnsiToUtf16(const char* ansi) { if (!ansi) return nullptr; const int length = strlen(ansi); const int unicode_length = MultiByteToWideChar(CP_ACP, 0, ansi, length, nullptr, 0); WCHAR* unicode = new WCHAR[unicode_length + 1]; MultiByteToWideChar(CP_ACP, 0, ansi, length, unicode, unicode_length); unicode[unicode_length] = 0; return unicode; } // Creates an ANSI string from the given wide string, allocating // memory using new. The caller is responsible for deleting the return // value using delete[]. Returns the ANSI string, or NULL if the // input is NULL. const char* String::Utf16ToAnsi(LPCWSTR utf16_str) { if (!utf16_str) return nullptr; const int ansi_length = WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, nullptr, 0, nullptr, nullptr); char* ansi = new char[ansi_length + 1]; WideCharToMultiByte(CP_ACP, 0, utf16_str, -1, ansi, ansi_length, nullptr, nullptr); ansi[ansi_length] = 0; return ansi; } #endif // GTEST_OS_WINDOWS_MOBILE // Compares two C strings. Returns true if and only if they have the same // content. // // Unlike strcmp(), this function can handle NULL argument(s). A NULL // C string is considered different to any non-NULL C string, // including the empty string. bool String::CStringEquals(const char * lhs, const char * rhs) { if (lhs == nullptr) return rhs == nullptr; if (rhs == nullptr) return false; return strcmp(lhs, rhs) == 0; } #if GTEST_HAS_STD_WSTRING // Converts an array of wide chars to a narrow string using the UTF-8 // encoding, and streams the result to the given Message object. static void StreamWideCharsToMessage(const wchar_t* wstr, size_t length, Message* msg) { for (size_t i = 0; i != length; ) { // NOLINT if (wstr[i] != L'\0') { *msg << WideStringToUtf8(wstr + i, static_cast(length - i)); while (i != length && wstr[i] != L'\0') i++; } else { *msg << '\0'; i++; } } } #endif // GTEST_HAS_STD_WSTRING void SplitString(const ::std::string& str, char delimiter, ::std::vector< ::std::string>* dest) { ::std::vector< ::std::string> parsed; ::std::string::size_type pos = 0; while (::testing::internal::AlwaysTrue()) { const ::std::string::size_type colon = str.find(delimiter, pos); if (colon == ::std::string::npos) { parsed.push_back(str.substr(pos)); break; } else { parsed.push_back(str.substr(pos, colon - pos)); pos = colon + 1; } } dest->swap(parsed); } } // namespace internal // Constructs an empty Message. // We allocate the stringstream separately because otherwise each use of // ASSERT/EXPECT in a procedure adds over 200 bytes to the procedure's // stack frame leading to huge stack frames in some cases; gcc does not reuse // the stack space. Message::Message() : ss_(new ::std::stringstream) { // By default, we want there to be enough precision when printing // a double to a Message. *ss_ << std::setprecision(std::numeric_limits::digits10 + 2); } // These two overloads allow streaming a wide C string to a Message // using the UTF-8 encoding. Message& Message::operator <<(const wchar_t* wide_c_str) { return *this << internal::String::ShowWideCString(wide_c_str); } Message& Message::operator <<(wchar_t* wide_c_str) { return *this << internal::String::ShowWideCString(wide_c_str); } #if GTEST_HAS_STD_WSTRING // Converts the given wide string to a narrow string using the UTF-8 // encoding, and streams the result to this Message object. Message& Message::operator <<(const ::std::wstring& wstr) { internal::StreamWideCharsToMessage(wstr.c_str(), wstr.length(), this); return *this; } #endif // GTEST_HAS_STD_WSTRING // Gets the text streamed to this object so far as an std::string. // Each '\0' character in the buffer is replaced with "\\0". std::string Message::GetString() const { return internal::StringStreamToString(ss_.get()); } // AssertionResult constructors. // Used in EXPECT_TRUE/FALSE(assertion_result). AssertionResult::AssertionResult(const AssertionResult& other) : success_(other.success_), message_(other.message_.get() != nullptr ? new ::std::string(*other.message_) : static_cast< ::std::string*>(nullptr)) {} // Swaps two AssertionResults. void AssertionResult::swap(AssertionResult& other) { using std::swap; swap(success_, other.success_); swap(message_, other.message_); } // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE. AssertionResult AssertionResult::operator!() const { AssertionResult negation(!success_); if (message_.get() != nullptr) negation << *message_; return negation; } // Makes a successful assertion result. AssertionResult AssertionSuccess() { return AssertionResult(true); } // Makes a failed assertion result. AssertionResult AssertionFailure() { return AssertionResult(false); } // Makes a failed assertion result with the given failure message. // Deprecated; use AssertionFailure() << message. AssertionResult AssertionFailure(const Message& message) { return AssertionFailure() << message; } namespace internal { namespace edit_distance { std::vector CalculateOptimalEdits(const std::vector& left, const std::vector& right) { std::vector > costs( left.size() + 1, std::vector(right.size() + 1)); std::vector > best_move( left.size() + 1, std::vector(right.size() + 1)); // Populate for empty right. for (size_t l_i = 0; l_i < costs.size(); ++l_i) { costs[l_i][0] = static_cast(l_i); best_move[l_i][0] = kRemove; } // Populate for empty left. for (size_t r_i = 1; r_i < costs[0].size(); ++r_i) { costs[0][r_i] = static_cast(r_i); best_move[0][r_i] = kAdd; } for (size_t l_i = 0; l_i < left.size(); ++l_i) { for (size_t r_i = 0; r_i < right.size(); ++r_i) { if (left[l_i] == right[r_i]) { // Found a match. Consume it. costs[l_i + 1][r_i + 1] = costs[l_i][r_i]; best_move[l_i + 1][r_i + 1] = kMatch; continue; } const double add = costs[l_i + 1][r_i]; const double remove = costs[l_i][r_i + 1]; const double replace = costs[l_i][r_i]; if (add < remove && add < replace) { costs[l_i + 1][r_i + 1] = add + 1; best_move[l_i + 1][r_i + 1] = kAdd; } else if (remove < add && remove < replace) { costs[l_i + 1][r_i + 1] = remove + 1; best_move[l_i + 1][r_i + 1] = kRemove; } else { // We make replace a little more expensive than add/remove to lower // their priority. costs[l_i + 1][r_i + 1] = replace + 1.00001; best_move[l_i + 1][r_i + 1] = kReplace; } } } // Reconstruct the best path. We do it in reverse order. std::vector best_path; for (size_t l_i = left.size(), r_i = right.size(); l_i > 0 || r_i > 0;) { EditType move = best_move[l_i][r_i]; best_path.push_back(move); l_i -= move != kAdd; r_i -= move != kRemove; } std::reverse(best_path.begin(), best_path.end()); return best_path; } namespace { // Helper class to convert string into ids with deduplication. class InternalStrings { public: size_t GetId(const std::string& str) { IdMap::iterator it = ids_.find(str); if (it != ids_.end()) return it->second; size_t id = ids_.size(); return ids_[str] = id; } private: typedef std::map IdMap; IdMap ids_; }; } // namespace std::vector CalculateOptimalEdits( const std::vector& left, const std::vector& right) { std::vector left_ids, right_ids; { InternalStrings intern_table; for (size_t i = 0; i < left.size(); ++i) { left_ids.push_back(intern_table.GetId(left[i])); } for (size_t i = 0; i < right.size(); ++i) { right_ids.push_back(intern_table.GetId(right[i])); } } return CalculateOptimalEdits(left_ids, right_ids); } namespace { // Helper class that holds the state for one hunk and prints it out to the // stream. // It reorders adds/removes when possible to group all removes before all // adds. It also adds the hunk header before printint into the stream. class Hunk { public: Hunk(size_t left_start, size_t right_start) : left_start_(left_start), right_start_(right_start), adds_(), removes_(), common_() {} void PushLine(char edit, const char* line) { switch (edit) { case ' ': ++common_; FlushEdits(); hunk_.push_back(std::make_pair(' ', line)); break; case '-': ++removes_; hunk_removes_.push_back(std::make_pair('-', line)); break; case '+': ++adds_; hunk_adds_.push_back(std::make_pair('+', line)); break; } } void PrintTo(std::ostream* os) { PrintHeader(os); FlushEdits(); for (std::list >::const_iterator it = hunk_.begin(); it != hunk_.end(); ++it) { *os << it->first << it->second << "\n"; } } bool has_edits() const { return adds_ || removes_; } private: void FlushEdits() { hunk_.splice(hunk_.end(), hunk_removes_); hunk_.splice(hunk_.end(), hunk_adds_); } // Print a unified diff header for one hunk. // The format is // "@@ -, +, @@" // where the left/right parts are omitted if unnecessary. void PrintHeader(std::ostream* ss) const { *ss << "@@ "; if (removes_) { *ss << "-" << left_start_ << "," << (removes_ + common_); } if (removes_ && adds_) { *ss << " "; } if (adds_) { *ss << "+" << right_start_ << "," << (adds_ + common_); } *ss << " @@\n"; } size_t left_start_, right_start_; size_t adds_, removes_, common_; std::list > hunk_, hunk_adds_, hunk_removes_; }; } // namespace // Create a list of diff hunks in Unified diff format. // Each hunk has a header generated by PrintHeader above plus a body with // lines prefixed with ' ' for no change, '-' for deletion and '+' for // addition. // 'context' represents the desired unchanged prefix/suffix around the diff. // If two hunks are close enough that their contexts overlap, then they are // joined into one hunk. std::string CreateUnifiedDiff(const std::vector& left, const std::vector& right, size_t context) { const std::vector edits = CalculateOptimalEdits(left, right); size_t l_i = 0, r_i = 0, edit_i = 0; std::stringstream ss; while (edit_i < edits.size()) { // Find first edit. while (edit_i < edits.size() && edits[edit_i] == kMatch) { ++l_i; ++r_i; ++edit_i; } // Find the first line to include in the hunk. const size_t prefix_context = std::min(l_i, context); Hunk hunk(l_i - prefix_context + 1, r_i - prefix_context + 1); for (size_t i = prefix_context; i > 0; --i) { hunk.PushLine(' ', left[l_i - i].c_str()); } // Iterate the edits until we found enough suffix for the hunk or the input // is over. size_t n_suffix = 0; for (; edit_i < edits.size(); ++edit_i) { if (n_suffix >= context) { // Continue only if the next hunk is very close. auto it = edits.begin() + static_cast(edit_i); while (it != edits.end() && *it == kMatch) ++it; if (it == edits.end() || static_cast(it - edits.begin()) - edit_i >= context) { // There is no next edit or it is too far away. break; } } EditType edit = edits[edit_i]; // Reset count when a non match is found. n_suffix = edit == kMatch ? n_suffix + 1 : 0; if (edit == kMatch || edit == kRemove || edit == kReplace) { hunk.PushLine(edit == kMatch ? ' ' : '-', left[l_i].c_str()); } if (edit == kAdd || edit == kReplace) { hunk.PushLine('+', right[r_i].c_str()); } // Advance indices, depending on edit type. l_i += edit != kAdd; r_i += edit != kRemove; } if (!hunk.has_edits()) { // We are done. We don't want this hunk. break; } hunk.PrintTo(&ss); } return ss.str(); } } // namespace edit_distance namespace { // The string representation of the values received in EqFailure() are already // escaped. Split them on escaped '\n' boundaries. Leave all other escaped // characters the same. std::vector SplitEscapedString(const std::string& str) { std::vector lines; size_t start = 0, end = str.size(); if (end > 2 && str[0] == '"' && str[end - 1] == '"') { ++start; --end; } bool escaped = false; for (size_t i = start; i + 1 < end; ++i) { if (escaped) { escaped = false; if (str[i] == 'n') { lines.push_back(str.substr(start, i - start - 1)); start = i + 1; } } else { escaped = str[i] == '\\'; } } lines.push_back(str.substr(start, end - start)); return lines; } } // namespace // Constructs and returns the message for an equality assertion // (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure. // // The first four parameters are the expressions used in the assertion // and their values, as strings. For example, for ASSERT_EQ(foo, bar) // where foo is 5 and bar is 6, we have: // // lhs_expression: "foo" // rhs_expression: "bar" // lhs_value: "5" // rhs_value: "6" // // The ignoring_case parameter is true if and only if the assertion is a // *_STRCASEEQ*. When it's true, the string "Ignoring case" will // be inserted into the message. AssertionResult EqFailure(const char* lhs_expression, const char* rhs_expression, const std::string& lhs_value, const std::string& rhs_value, bool ignoring_case) { Message msg; msg << "Expected equality of these values:"; msg << "\n " << lhs_expression; if (lhs_value != lhs_expression) { msg << "\n Which is: " << lhs_value; } msg << "\n " << rhs_expression; if (rhs_value != rhs_expression) { msg << "\n Which is: " << rhs_value; } if (ignoring_case) { msg << "\nIgnoring case"; } if (!lhs_value.empty() && !rhs_value.empty()) { const std::vector lhs_lines = SplitEscapedString(lhs_value); const std::vector rhs_lines = SplitEscapedString(rhs_value); if (lhs_lines.size() > 1 || rhs_lines.size() > 1) { msg << "\nWith diff:\n" << edit_distance::CreateUnifiedDiff(lhs_lines, rhs_lines); } } return AssertionFailure() << msg; } // Constructs a failure message for Boolean assertions such as EXPECT_TRUE. std::string GetBoolAssertionFailureMessage( const AssertionResult& assertion_result, const char* expression_text, const char* actual_predicate_value, const char* expected_predicate_value) { const char* actual_message = assertion_result.message(); Message msg; msg << "Value of: " << expression_text << "\n Actual: " << actual_predicate_value; if (actual_message[0] != '\0') msg << " (" << actual_message << ")"; msg << "\nExpected: " << expected_predicate_value; return msg.GetString(); } // Helper function for implementing ASSERT_NEAR. AssertionResult DoubleNearPredFormat(const char* expr1, const char* expr2, const char* abs_error_expr, double val1, double val2, double abs_error) { const double diff = fabs(val1 - val2); if (diff <= abs_error) return AssertionSuccess(); // Find the value which is closest to zero. const double min_abs = std::min(fabs(val1), fabs(val2)); // Find the distance to the next double from that value. const double epsilon = nextafter(min_abs, std::numeric_limits::infinity()) - min_abs; // Detect the case where abs_error is so small that EXPECT_NEAR is // effectively the same as EXPECT_EQUAL, and give an informative error // message so that the situation can be more easily understood without // requiring exotic floating-point knowledge. // Don't do an epsilon check if abs_error is zero because that implies // that an equality check was actually intended. if (!(std::isnan)(val1) && !(std::isnan)(val2) && abs_error > 0 && abs_error < epsilon) { return AssertionFailure() << "The difference between " << expr1 << " and " << expr2 << " is " << diff << ", where\n" << expr1 << " evaluates to " << val1 << ",\n" << expr2 << " evaluates to " << val2 << ".\nThe abs_error parameter " << abs_error_expr << " evaluates to " << abs_error << " which is smaller than the minimum distance between doubles for " "numbers of this magnitude which is " << epsilon << ", thus making this EXPECT_NEAR check equivalent to " "EXPECT_EQUAL. Consider using EXPECT_DOUBLE_EQ instead."; } return AssertionFailure() << "The difference between " << expr1 << " and " << expr2 << " is " << diff << ", which exceeds " << abs_error_expr << ", where\n" << expr1 << " evaluates to " << val1 << ",\n" << expr2 << " evaluates to " << val2 << ", and\n" << abs_error_expr << " evaluates to " << abs_error << "."; } // Helper template for implementing FloatLE() and DoubleLE(). template AssertionResult FloatingPointLE(const char* expr1, const char* expr2, RawType val1, RawType val2) { // Returns success if val1 is less than val2, if (val1 < val2) { return AssertionSuccess(); } // or if val1 is almost equal to val2. const FloatingPoint lhs(val1), rhs(val2); if (lhs.AlmostEquals(rhs)) { return AssertionSuccess(); } // Note that the above two checks will both fail if either val1 or // val2 is NaN, as the IEEE floating-point standard requires that // any predicate involving a NaN must return false. ::std::stringstream val1_ss; val1_ss << std::setprecision(std::numeric_limits::digits10 + 2) << val1; ::std::stringstream val2_ss; val2_ss << std::setprecision(std::numeric_limits::digits10 + 2) << val2; return AssertionFailure() << "Expected: (" << expr1 << ") <= (" << expr2 << ")\n" << " Actual: " << StringStreamToString(&val1_ss) << " vs " << StringStreamToString(&val2_ss); } } // namespace internal // Asserts that val1 is less than, or almost equal to, val2. Fails // otherwise. In particular, it fails if either val1 or val2 is NaN. AssertionResult FloatLE(const char* expr1, const char* expr2, float val1, float val2) { return internal::FloatingPointLE(expr1, expr2, val1, val2); } // Asserts that val1 is less than, or almost equal to, val2. Fails // otherwise. In particular, it fails if either val1 or val2 is NaN. AssertionResult DoubleLE(const char* expr1, const char* expr2, double val1, double val2) { return internal::FloatingPointLE(expr1, expr2, val1, val2); } namespace internal { // The helper function for {ASSERT|EXPECT}_STREQ. AssertionResult CmpHelperSTREQ(const char* lhs_expression, const char* rhs_expression, const char* lhs, const char* rhs) { if (String::CStringEquals(lhs, rhs)) { return AssertionSuccess(); } return EqFailure(lhs_expression, rhs_expression, PrintToString(lhs), PrintToString(rhs), false); } // The helper function for {ASSERT|EXPECT}_STRCASEEQ. AssertionResult CmpHelperSTRCASEEQ(const char* lhs_expression, const char* rhs_expression, const char* lhs, const char* rhs) { if (String::CaseInsensitiveCStringEquals(lhs, rhs)) { return AssertionSuccess(); } return EqFailure(lhs_expression, rhs_expression, PrintToString(lhs), PrintToString(rhs), true); } // The helper function for {ASSERT|EXPECT}_STRNE. AssertionResult CmpHelperSTRNE(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2) { if (!String::CStringEquals(s1, s2)) { return AssertionSuccess(); } else { return AssertionFailure() << "Expected: (" << s1_expression << ") != (" << s2_expression << "), actual: \"" << s1 << "\" vs \"" << s2 << "\""; } } // The helper function for {ASSERT|EXPECT}_STRCASENE. AssertionResult CmpHelperSTRCASENE(const char* s1_expression, const char* s2_expression, const char* s1, const char* s2) { if (!String::CaseInsensitiveCStringEquals(s1, s2)) { return AssertionSuccess(); } else { return AssertionFailure() << "Expected: (" << s1_expression << ") != (" << s2_expression << ") (ignoring case), actual: \"" << s1 << "\" vs \"" << s2 << "\""; } } } // namespace internal namespace { // Helper functions for implementing IsSubString() and IsNotSubstring(). // This group of overloaded functions return true if and only if needle // is a substring of haystack. NULL is considered a substring of // itself only. bool IsSubstringPred(const char* needle, const char* haystack) { if (needle == nullptr || haystack == nullptr) return needle == haystack; return strstr(haystack, needle) != nullptr; } bool IsSubstringPred(const wchar_t* needle, const wchar_t* haystack) { if (needle == nullptr || haystack == nullptr) return needle == haystack; return wcsstr(haystack, needle) != nullptr; } // StringType here can be either ::std::string or ::std::wstring. template bool IsSubstringPred(const StringType& needle, const StringType& haystack) { return haystack.find(needle) != StringType::npos; } // This function implements either IsSubstring() or IsNotSubstring(), // depending on the value of the expected_to_be_substring parameter. // StringType here can be const char*, const wchar_t*, ::std::string, // or ::std::wstring. template AssertionResult IsSubstringImpl( bool expected_to_be_substring, const char* needle_expr, const char* haystack_expr, const StringType& needle, const StringType& haystack) { if (IsSubstringPred(needle, haystack) == expected_to_be_substring) return AssertionSuccess(); const bool is_wide_string = sizeof(needle[0]) > 1; const char* const begin_string_quote = is_wide_string ? "L\"" : "\""; return AssertionFailure() << "Value of: " << needle_expr << "\n" << " Actual: " << begin_string_quote << needle << "\"\n" << "Expected: " << (expected_to_be_substring ? "" : "not ") << "a substring of " << haystack_expr << "\n" << "Which is: " << begin_string_quote << haystack << "\""; } } // namespace // IsSubstring() and IsNotSubstring() check whether needle is a // substring of haystack (NULL is considered a substring of itself // only), and return an appropriate error message when they fail. AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack) { return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack) { return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const char* needle, const char* haystack) { return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const wchar_t* needle, const wchar_t* haystack) { return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack) { return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::string& needle, const ::std::string& haystack) { return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); } #if GTEST_HAS_STD_WSTRING AssertionResult IsSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack) { return IsSubstringImpl(true, needle_expr, haystack_expr, needle, haystack); } AssertionResult IsNotSubstring( const char* needle_expr, const char* haystack_expr, const ::std::wstring& needle, const ::std::wstring& haystack) { return IsSubstringImpl(false, needle_expr, haystack_expr, needle, haystack); } #endif // GTEST_HAS_STD_WSTRING namespace internal { #if GTEST_OS_WINDOWS namespace { // Helper function for IsHRESULT{SuccessFailure} predicates AssertionResult HRESULTFailureHelper(const char* expr, const char* expected, long hr) { // NOLINT # if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_TV_TITLE // Windows CE doesn't support FormatMessage. const char error_text[] = ""; # else // Looks up the human-readable system message for the HRESULT code // and since we're not passing any params to FormatMessage, we don't // want inserts expanded. const DWORD kFlags = FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS; const DWORD kBufSize = 4096; // Gets the system's human readable message string for this HRESULT. char error_text[kBufSize] = { '\0' }; DWORD message_length = ::FormatMessageA(kFlags, 0, // no source, we're asking system static_cast(hr), // the error 0, // no line width restrictions error_text, // output buffer kBufSize, // buf size nullptr); // no arguments for inserts // Trims tailing white space (FormatMessage leaves a trailing CR-LF) for (; message_length && IsSpace(error_text[message_length - 1]); --message_length) { error_text[message_length - 1] = '\0'; } # endif // GTEST_OS_WINDOWS_MOBILE const std::string error_hex("0x" + String::FormatHexInt(hr)); return ::testing::AssertionFailure() << "Expected: " << expr << " " << expected << ".\n" << " Actual: " << error_hex << " " << error_text << "\n"; } } // namespace AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT if (SUCCEEDED(hr)) { return AssertionSuccess(); } return HRESULTFailureHelper(expr, "succeeds", hr); } AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT if (FAILED(hr)) { return AssertionSuccess(); } return HRESULTFailureHelper(expr, "fails", hr); } #endif // GTEST_OS_WINDOWS // Utility functions for encoding Unicode text (wide strings) in // UTF-8. // A Unicode code-point can have up to 21 bits, and is encoded in UTF-8 // like this: // // Code-point length Encoding // 0 - 7 bits 0xxxxxxx // 8 - 11 bits 110xxxxx 10xxxxxx // 12 - 16 bits 1110xxxx 10xxxxxx 10xxxxxx // 17 - 21 bits 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx // The maximum code-point a one-byte UTF-8 sequence can represent. constexpr uint32_t kMaxCodePoint1 = (static_cast(1) << 7) - 1; // The maximum code-point a two-byte UTF-8 sequence can represent. constexpr uint32_t kMaxCodePoint2 = (static_cast(1) << (5 + 6)) - 1; // The maximum code-point a three-byte UTF-8 sequence can represent. constexpr uint32_t kMaxCodePoint3 = (static_cast(1) << (4 + 2*6)) - 1; // The maximum code-point a four-byte UTF-8 sequence can represent. constexpr uint32_t kMaxCodePoint4 = (static_cast(1) << (3 + 3*6)) - 1; // Chops off the n lowest bits from a bit pattern. Returns the n // lowest bits. As a side effect, the original bit pattern will be // shifted to the right by n bits. inline uint32_t ChopLowBits(uint32_t* bits, int n) { const uint32_t low_bits = *bits & ((static_cast(1) << n) - 1); *bits >>= n; return low_bits; } // Converts a Unicode code point to a narrow string in UTF-8 encoding. // code_point parameter is of type uint32_t because wchar_t may not be // wide enough to contain a code point. // If the code_point is not a valid Unicode code point // (i.e. outside of Unicode range U+0 to U+10FFFF) it will be converted // to "(Invalid Unicode 0xXXXXXXXX)". std::string CodePointToUtf8(uint32_t code_point) { if (code_point > kMaxCodePoint4) { return "(Invalid Unicode 0x" + String::FormatHexUInt32(code_point) + ")"; } char str[5]; // Big enough for the largest valid code point. if (code_point <= kMaxCodePoint1) { str[1] = '\0'; str[0] = static_cast(code_point); // 0xxxxxxx } else if (code_point <= kMaxCodePoint2) { str[2] = '\0'; str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[0] = static_cast(0xC0 | code_point); // 110xxxxx } else if (code_point <= kMaxCodePoint3) { str[3] = '\0'; str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[0] = static_cast(0xE0 | code_point); // 1110xxxx } else { // code_point <= kMaxCodePoint4 str[4] = '\0'; str[3] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[2] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[1] = static_cast(0x80 | ChopLowBits(&code_point, 6)); // 10xxxxxx str[0] = static_cast(0xF0 | code_point); // 11110xxx } return str; } // The following two functions only make sense if the system // uses UTF-16 for wide string encoding. All supported systems // with 16 bit wchar_t (Windows, Cygwin) do use UTF-16. // Determines if the arguments constitute UTF-16 surrogate pair // and thus should be combined into a single Unicode code point // using CreateCodePointFromUtf16SurrogatePair. inline bool IsUtf16SurrogatePair(wchar_t first, wchar_t second) { return sizeof(wchar_t) == 2 && (first & 0xFC00) == 0xD800 && (second & 0xFC00) == 0xDC00; } // Creates a Unicode code point from UTF16 surrogate pair. inline uint32_t CreateCodePointFromUtf16SurrogatePair(wchar_t first, wchar_t second) { const auto first_u = static_cast(first); const auto second_u = static_cast(second); const uint32_t mask = (1 << 10) - 1; return (sizeof(wchar_t) == 2) ? (((first_u & mask) << 10) | (second_u & mask)) + 0x10000 : // This function should not be called when the condition is // false, but we provide a sensible default in case it is. first_u; } // Converts a wide string to a narrow string in UTF-8 encoding. // The wide string is assumed to have the following encoding: // UTF-16 if sizeof(wchar_t) == 2 (on Windows, Cygwin) // UTF-32 if sizeof(wchar_t) == 4 (on Linux) // Parameter str points to a null-terminated wide string. // Parameter num_chars may additionally limit the number // of wchar_t characters processed. -1 is used when the entire string // should be processed. // If the string contains code points that are not valid Unicode code points // (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output // as '(Invalid Unicode 0xXXXXXXXX)'. If the string is in UTF16 encoding // and contains invalid UTF-16 surrogate pairs, values in those pairs // will be encoded as individual Unicode characters from Basic Normal Plane. std::string WideStringToUtf8(const wchar_t* str, int num_chars) { if (num_chars == -1) num_chars = static_cast(wcslen(str)); ::std::stringstream stream; for (int i = 0; i < num_chars; ++i) { uint32_t unicode_code_point; if (str[i] == L'\0') { break; } else if (i + 1 < num_chars && IsUtf16SurrogatePair(str[i], str[i + 1])) { unicode_code_point = CreateCodePointFromUtf16SurrogatePair(str[i], str[i + 1]); i++; } else { unicode_code_point = static_cast(str[i]); } stream << CodePointToUtf8(unicode_code_point); } return StringStreamToString(&stream); } // Converts a wide C string to an std::string using the UTF-8 encoding. // NULL will be converted to "(null)". std::string String::ShowWideCString(const wchar_t * wide_c_str) { if (wide_c_str == nullptr) return "(null)"; return internal::WideStringToUtf8(wide_c_str, -1); } // Compares two wide C strings. Returns true if and only if they have the // same content. // // Unlike wcscmp(), this function can handle NULL argument(s). A NULL // C string is considered different to any non-NULL C string, // including the empty string. bool String::WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) { if (lhs == nullptr) return rhs == nullptr; if (rhs == nullptr) return false; return wcscmp(lhs, rhs) == 0; } // Helper function for *_STREQ on wide strings. AssertionResult CmpHelperSTREQ(const char* lhs_expression, const char* rhs_expression, const wchar_t* lhs, const wchar_t* rhs) { if (String::WideCStringEquals(lhs, rhs)) { return AssertionSuccess(); } return EqFailure(lhs_expression, rhs_expression, PrintToString(lhs), PrintToString(rhs), false); } // Helper function for *_STRNE on wide strings. AssertionResult CmpHelperSTRNE(const char* s1_expression, const char* s2_expression, const wchar_t* s1, const wchar_t* s2) { if (!String::WideCStringEquals(s1, s2)) { return AssertionSuccess(); } return AssertionFailure() << "Expected: (" << s1_expression << ") != (" << s2_expression << "), actual: " << PrintToString(s1) << " vs " << PrintToString(s2); } // Compares two C strings, ignoring case. Returns true if and only if they have // the same content. // // Unlike strcasecmp(), this function can handle NULL argument(s). A // NULL C string is considered different to any non-NULL C string, // including the empty string. bool String::CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) { if (lhs == nullptr) return rhs == nullptr; if (rhs == nullptr) return false; return posix::StrCaseCmp(lhs, rhs) == 0; } // Compares two wide C strings, ignoring case. Returns true if and only if they // have the same content. // // Unlike wcscasecmp(), this function can handle NULL argument(s). // A NULL C string is considered different to any non-NULL wide C string, // including the empty string. // NB: The implementations on different platforms slightly differ. // On windows, this method uses _wcsicmp which compares according to LC_CTYPE // environment variable. On GNU platform this method uses wcscasecmp // which compares according to LC_CTYPE category of the current locale. // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the // current locale. bool String::CaseInsensitiveWideCStringEquals(const wchar_t* lhs, const wchar_t* rhs) { if (lhs == nullptr) return rhs == nullptr; if (rhs == nullptr) return false; #if GTEST_OS_WINDOWS return _wcsicmp(lhs, rhs) == 0; #elif GTEST_OS_LINUX && !GTEST_OS_LINUX_ANDROID return wcscasecmp(lhs, rhs) == 0; #else // Android, Mac OS X and Cygwin don't define wcscasecmp. // Other unknown OSes may not define it either. wint_t left, right; do { left = towlower(static_cast(*lhs++)); right = towlower(static_cast(*rhs++)); } while (left && left == right); return left == right; #endif // OS selector } // Returns true if and only if str ends with the given suffix, ignoring case. // Any string is considered to end with an empty suffix. bool String::EndsWithCaseInsensitive( const std::string& str, const std::string& suffix) { const size_t str_len = str.length(); const size_t suffix_len = suffix.length(); return (str_len >= suffix_len) && CaseInsensitiveCStringEquals(str.c_str() + str_len - suffix_len, suffix.c_str()); } // Formats an int value as "%02d". std::string String::FormatIntWidth2(int value) { return FormatIntWidthN(value, 2); } // Formats an int value to given width with leading zeros. std::string String::FormatIntWidthN(int value, int width) { std::stringstream ss; ss << std::setfill('0') << std::setw(width) << value; return ss.str(); } // Formats an int value as "%X". std::string String::FormatHexUInt32(uint32_t value) { std::stringstream ss; ss << std::hex << std::uppercase << value; return ss.str(); } // Formats an int value as "%X". std::string String::FormatHexInt(int value) { return FormatHexUInt32(static_cast(value)); } // Formats a byte as "%02X". std::string String::FormatByte(unsigned char value) { std::stringstream ss; ss << std::setfill('0') << std::setw(2) << std::hex << std::uppercase << static_cast(value); return ss.str(); } // Converts the buffer in a stringstream to an std::string, converting NUL // bytes to "\\0" along the way. std::string StringStreamToString(::std::stringstream* ss) { const ::std::string& str = ss->str(); const char* const start = str.c_str(); const char* const end = start + str.length(); std::string result; result.reserve(static_cast(2 * (end - start))); for (const char* ch = start; ch != end; ++ch) { if (*ch == '\0') { result += "\\0"; // Replaces NUL with "\\0"; } else { result += *ch; } } return result; } // Appends the user-supplied message to the Google-Test-generated message. std::string AppendUserMessage(const std::string& gtest_msg, const Message& user_msg) { // Appends the user message if it's non-empty. const std::string user_msg_string = user_msg.GetString(); if (user_msg_string.empty()) { return gtest_msg; } if (gtest_msg.empty()) { return user_msg_string; } return gtest_msg + "\n" + user_msg_string; } } // namespace internal // class TestResult // Creates an empty TestResult. TestResult::TestResult() : death_test_count_(0), start_timestamp_(0), elapsed_time_(0) {} // D'tor. TestResult::~TestResult() { } // Returns the i-th test part result among all the results. i can // range from 0 to total_part_count() - 1. If i is not in that range, // aborts the program. const TestPartResult& TestResult::GetTestPartResult(int i) const { if (i < 0 || i >= total_part_count()) internal::posix::Abort(); return test_part_results_.at(static_cast(i)); } // Returns the i-th test property. i can range from 0 to // test_property_count() - 1. If i is not in that range, aborts the // program. const TestProperty& TestResult::GetTestProperty(int i) const { if (i < 0 || i >= test_property_count()) internal::posix::Abort(); return test_properties_.at(static_cast(i)); } // Clears the test part results. void TestResult::ClearTestPartResults() { test_part_results_.clear(); } // Adds a test part result to the list. void TestResult::AddTestPartResult(const TestPartResult& test_part_result) { test_part_results_.push_back(test_part_result); } // Adds a test property to the list. If a property with the same key as the // supplied property is already represented, the value of this test_property // replaces the old value for that key. void TestResult::RecordProperty(const std::string& xml_element, const TestProperty& test_property) { if (!ValidateTestProperty(xml_element, test_property)) { return; } internal::MutexLock lock(&test_properties_mutex_); const std::vector::iterator property_with_matching_key = std::find_if(test_properties_.begin(), test_properties_.end(), internal::TestPropertyKeyIs(test_property.key())); if (property_with_matching_key == test_properties_.end()) { test_properties_.push_back(test_property); return; } property_with_matching_key->SetValue(test_property.value()); } // The list of reserved attributes used in the element of XML // output. static const char* const kReservedTestSuitesAttributes[] = { "disabled", "errors", "failures", "name", "random_seed", "tests", "time", "timestamp" }; // The list of reserved attributes used in the element of XML // output. static const char* const kReservedTestSuiteAttributes[] = { "disabled", "errors", "failures", "name", "tests", "time", "timestamp", "skipped"}; // The list of reserved attributes used in the element of XML output. static const char* const kReservedTestCaseAttributes[] = { "classname", "name", "status", "time", "type_param", "value_param", "file", "line"}; // Use a slightly different set for allowed output to ensure existing tests can // still RecordProperty("result") or "RecordProperty(timestamp") static const char* const kReservedOutputTestCaseAttributes[] = { "classname", "name", "status", "time", "type_param", "value_param", "file", "line", "result", "timestamp"}; template std::vector ArrayAsVector(const char* const (&array)[kSize]) { return std::vector(array, array + kSize); } static std::vector GetReservedAttributesForElement( const std::string& xml_element) { if (xml_element == "testsuites") { return ArrayAsVector(kReservedTestSuitesAttributes); } else if (xml_element == "testsuite") { return ArrayAsVector(kReservedTestSuiteAttributes); } else if (xml_element == "testcase") { return ArrayAsVector(kReservedTestCaseAttributes); } else { GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element; } // This code is unreachable but some compilers may not realizes that. return std::vector(); } // TODO(jdesprez): Merge the two getReserved attributes once skip is improved static std::vector GetReservedOutputAttributesForElement( const std::string& xml_element) { if (xml_element == "testsuites") { return ArrayAsVector(kReservedTestSuitesAttributes); } else if (xml_element == "testsuite") { return ArrayAsVector(kReservedTestSuiteAttributes); } else if (xml_element == "testcase") { return ArrayAsVector(kReservedOutputTestCaseAttributes); } else { GTEST_CHECK_(false) << "Unrecognized xml_element provided: " << xml_element; } // This code is unreachable but some compilers may not realizes that. return std::vector(); } static std::string FormatWordList(const std::vector& words) { Message word_list; for (size_t i = 0; i < words.size(); ++i) { if (i > 0 && words.size() > 2) { word_list << ", "; } if (i == words.size() - 1) { word_list << "and "; } word_list << "'" << words[i] << "'"; } return word_list.GetString(); } static bool ValidateTestPropertyName( const std::string& property_name, const std::vector& reserved_names) { if (std::find(reserved_names.begin(), reserved_names.end(), property_name) != reserved_names.end()) { ADD_FAILURE() << "Reserved key used in RecordProperty(): " << property_name << " (" << FormatWordList(reserved_names) << " are reserved by " << GTEST_NAME_ << ")"; return false; } return true; } // Adds a failure if the key is a reserved attribute of the element named // xml_element. Returns true if the property is valid. bool TestResult::ValidateTestProperty(const std::string& xml_element, const TestProperty& test_property) { return ValidateTestPropertyName(test_property.key(), GetReservedAttributesForElement(xml_element)); } // Clears the object. void TestResult::Clear() { test_part_results_.clear(); test_properties_.clear(); death_test_count_ = 0; elapsed_time_ = 0; } // Returns true off the test part was skipped. static bool TestPartSkipped(const TestPartResult& result) { return result.skipped(); } // Returns true if and only if the test was skipped. bool TestResult::Skipped() const { return !Failed() && CountIf(test_part_results_, TestPartSkipped) > 0; } // Returns true if and only if the test failed. bool TestResult::Failed() const { for (int i = 0; i < total_part_count(); ++i) { if (GetTestPartResult(i).failed()) return true; } return false; } // Returns true if and only if the test part fatally failed. static bool TestPartFatallyFailed(const TestPartResult& result) { return result.fatally_failed(); } // Returns true if and only if the test fatally failed. bool TestResult::HasFatalFailure() const { return CountIf(test_part_results_, TestPartFatallyFailed) > 0; } // Returns true if and only if the test part non-fatally failed. static bool TestPartNonfatallyFailed(const TestPartResult& result) { return result.nonfatally_failed(); } // Returns true if and only if the test has a non-fatal failure. bool TestResult::HasNonfatalFailure() const { return CountIf(test_part_results_, TestPartNonfatallyFailed) > 0; } // Gets the number of all test parts. This is the sum of the number // of successful test parts and the number of failed test parts. int TestResult::total_part_count() const { return static_cast(test_part_results_.size()); } // Returns the number of the test properties. int TestResult::test_property_count() const { return static_cast(test_properties_.size()); } // class Test // Creates a Test object. // The c'tor saves the states of all flags. Test::Test() : gtest_flag_saver_(new GTEST_FLAG_SAVER_) { } // The d'tor restores the states of all flags. The actual work is // done by the d'tor of the gtest_flag_saver_ field, and thus not // visible here. Test::~Test() { } // Sets up the test fixture. // // A sub-class may override this. void Test::SetUp() { } // Tears down the test fixture. // // A sub-class may override this. void Test::TearDown() { } // Allows user supplied key value pairs to be recorded for later output. void Test::RecordProperty(const std::string& key, const std::string& value) { UnitTest::GetInstance()->RecordProperty(key, value); } // Allows user supplied key value pairs to be recorded for later output. void Test::RecordProperty(const std::string& key, int value) { Message value_message; value_message << value; RecordProperty(key, value_message.GetString().c_str()); } namespace internal { void ReportFailureInUnknownLocation(TestPartResult::Type result_type, const std::string& message) { // This function is a friend of UnitTest and as such has access to // AddTestPartResult. UnitTest::GetInstance()->AddTestPartResult( result_type, nullptr, // No info about the source file where the exception occurred. -1, // We have no info on which line caused the exception. message, ""); // No stack trace, either. } } // namespace internal // Google Test requires all tests in the same test suite to use the same test // fixture class. This function checks if the current test has the // same fixture class as the first test in the current test suite. If // yes, it returns true; otherwise it generates a Google Test failure and // returns false. bool Test::HasSameFixtureClass() { internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); const TestSuite* const test_suite = impl->current_test_suite(); // Info about the first test in the current test suite. const TestInfo* const first_test_info = test_suite->test_info_list()[0]; const internal::TypeId first_fixture_id = first_test_info->fixture_class_id_; const char* const first_test_name = first_test_info->name(); // Info about the current test. const TestInfo* const this_test_info = impl->current_test_info(); const internal::TypeId this_fixture_id = this_test_info->fixture_class_id_; const char* const this_test_name = this_test_info->name(); if (this_fixture_id != first_fixture_id) { // Is the first test defined using TEST? const bool first_is_TEST = first_fixture_id == internal::GetTestTypeId(); // Is this test defined using TEST? const bool this_is_TEST = this_fixture_id == internal::GetTestTypeId(); if (first_is_TEST || this_is_TEST) { // Both TEST and TEST_F appear in same test suite, which is incorrect. // Tell the user how to fix this. // Gets the name of the TEST and the name of the TEST_F. Note // that first_is_TEST and this_is_TEST cannot both be true, as // the fixture IDs are different for the two tests. const char* const TEST_name = first_is_TEST ? first_test_name : this_test_name; const char* const TEST_F_name = first_is_TEST ? this_test_name : first_test_name; ADD_FAILURE() << "All tests in the same test suite must use the same test fixture\n" << "class, so mixing TEST_F and TEST in the same test suite is\n" << "illegal. In test suite " << this_test_info->test_suite_name() << ",\n" << "test " << TEST_F_name << " is defined using TEST_F but\n" << "test " << TEST_name << " is defined using TEST. You probably\n" << "want to change the TEST to TEST_F or move it to another test\n" << "case."; } else { // Two fixture classes with the same name appear in two different // namespaces, which is not allowed. Tell the user how to fix this. ADD_FAILURE() << "All tests in the same test suite must use the same test fixture\n" << "class. However, in test suite " << this_test_info->test_suite_name() << ",\n" << "you defined test " << first_test_name << " and test " << this_test_name << "\n" << "using two different test fixture classes. This can happen if\n" << "the two classes are from different namespaces or translation\n" << "units and have the same name. You should probably rename one\n" << "of the classes to put the tests into different test suites."; } return false; } return true; } #if GTEST_HAS_SEH // Adds an "exception thrown" fatal failure to the current test. This // function returns its result via an output parameter pointer because VC++ // prohibits creation of objects with destructors on stack in functions // using __try (see error C2712). static std::string* FormatSehExceptionMessage(DWORD exception_code, const char* location) { Message message; message << "SEH exception with code 0x" << std::setbase(16) << exception_code << std::setbase(10) << " thrown in " << location << "."; return new std::string(message.GetString()); } #endif // GTEST_HAS_SEH namespace internal { #if GTEST_HAS_EXCEPTIONS // Adds an "exception thrown" fatal failure to the current test. static std::string FormatCxxExceptionMessage(const char* description, const char* location) { Message message; if (description != nullptr) { message << "C++ exception with description \"" << description << "\""; } else { message << "Unknown C++ exception"; } message << " thrown in " << location << "."; return message.GetString(); } static std::string PrintTestPartResultToString( const TestPartResult& test_part_result); GoogleTestFailureException::GoogleTestFailureException( const TestPartResult& failure) : ::std::runtime_error(PrintTestPartResultToString(failure).c_str()) {} #endif // GTEST_HAS_EXCEPTIONS // We put these helper functions in the internal namespace as IBM's xlC // compiler rejects the code if they were declared static. // Runs the given method and handles SEH exceptions it throws, when // SEH is supported; returns the 0-value for type Result in case of an // SEH exception. (Microsoft compilers cannot handle SEH and C++ // exceptions in the same function. Therefore, we provide a separate // wrapper function for handling SEH exceptions.) template Result HandleSehExceptionsInMethodIfSupported( T* object, Result (T::*method)(), const char* location) { #if GTEST_HAS_SEH __try { return (object->*method)(); } __except (internal::UnitTestOptions::GTestShouldProcessSEH( // NOLINT GetExceptionCode())) { // We create the exception message on the heap because VC++ prohibits // creation of objects with destructors on stack in functions using __try // (see error C2712). std::string* exception_message = FormatSehExceptionMessage( GetExceptionCode(), location); internal::ReportFailureInUnknownLocation(TestPartResult::kFatalFailure, *exception_message); delete exception_message; return static_cast(0); } #else (void)location; return (object->*method)(); #endif // GTEST_HAS_SEH } // Runs the given method and catches and reports C++ and/or SEH-style // exceptions, if they are supported; returns the 0-value for type // Result in case of an SEH exception. template Result HandleExceptionsInMethodIfSupported( T* object, Result (T::*method)(), const char* location) { // NOTE: The user code can affect the way in which Google Test handles // exceptions by setting GTEST_FLAG(catch_exceptions), but only before // RUN_ALL_TESTS() starts. It is technically possible to check the flag // after the exception is caught and either report or re-throw the // exception based on the flag's value: // // try { // // Perform the test method. // } catch (...) { // if (GTEST_FLAG(catch_exceptions)) // // Report the exception as failure. // else // throw; // Re-throws the original exception. // } // // However, the purpose of this flag is to allow the program to drop into // the debugger when the exception is thrown. On most platforms, once the // control enters the catch block, the exception origin information is // lost and the debugger will stop the program at the point of the // re-throw in this function -- instead of at the point of the original // throw statement in the code under test. For this reason, we perform // the check early, sacrificing the ability to affect Google Test's // exception handling in the method where the exception is thrown. if (internal::GetUnitTestImpl()->catch_exceptions()) { #if GTEST_HAS_EXCEPTIONS try { return HandleSehExceptionsInMethodIfSupported(object, method, location); } catch (const AssertionException&) { // NOLINT // This failure was reported already. } catch (const internal::GoogleTestFailureException&) { // NOLINT // This exception type can only be thrown by a failed Google // Test assertion with the intention of letting another testing // framework catch it. Therefore we just re-throw it. throw; } catch (const std::exception& e) { // NOLINT internal::ReportFailureInUnknownLocation( TestPartResult::kFatalFailure, FormatCxxExceptionMessage(e.what(), location)); } catch (...) { // NOLINT internal::ReportFailureInUnknownLocation( TestPartResult::kFatalFailure, FormatCxxExceptionMessage(nullptr, location)); } return static_cast(0); #else return HandleSehExceptionsInMethodIfSupported(object, method, location); #endif // GTEST_HAS_EXCEPTIONS } else { return (object->*method)(); } } } // namespace internal // Runs the test and updates the test result. void Test::Run() { if (!HasSameFixtureClass()) return; internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported(this, &Test::SetUp, "SetUp()"); // We will run the test only if SetUp() was successful and didn't call // GTEST_SKIP(). if (!HasFatalFailure() && !IsSkipped()) { impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( this, &Test::TestBody, "the test body"); } // However, we want to clean up as much as possible. Hence we will // always call TearDown(), even if SetUp() or the test body has // failed. impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( this, &Test::TearDown, "TearDown()"); } // Returns true if and only if the current test has a fatal failure. bool Test::HasFatalFailure() { return internal::GetUnitTestImpl()->current_test_result()->HasFatalFailure(); } // Returns true if and only if the current test has a non-fatal failure. bool Test::HasNonfatalFailure() { return internal::GetUnitTestImpl()->current_test_result()-> HasNonfatalFailure(); } // Returns true if and only if the current test was skipped. bool Test::IsSkipped() { return internal::GetUnitTestImpl()->current_test_result()->Skipped(); } // class TestInfo // Constructs a TestInfo object. It assumes ownership of the test factory // object. TestInfo::TestInfo(const std::string& a_test_suite_name, const std::string& a_name, const char* a_type_param, const char* a_value_param, internal::CodeLocation a_code_location, internal::TypeId fixture_class_id, internal::TestFactoryBase* factory) : test_suite_name_(a_test_suite_name), name_(a_name), type_param_(a_type_param ? new std::string(a_type_param) : nullptr), value_param_(a_value_param ? new std::string(a_value_param) : nullptr), location_(a_code_location), fixture_class_id_(fixture_class_id), should_run_(false), is_disabled_(false), matches_filter_(false), is_in_another_shard_(false), factory_(factory), result_() {} // Destructs a TestInfo object. TestInfo::~TestInfo() { delete factory_; } namespace internal { // Creates a new TestInfo object and registers it with Google Test; // returns the created object. // // Arguments: // // test_suite_name: name of the test suite // name: name of the test // type_param: the name of the test's type parameter, or NULL if // this is not a typed or a type-parameterized test. // value_param: text representation of the test's value parameter, // or NULL if this is not a value-parameterized test. // code_location: code location where the test is defined // fixture_class_id: ID of the test fixture class // set_up_tc: pointer to the function that sets up the test suite // tear_down_tc: pointer to the function that tears down the test suite // factory: pointer to the factory that creates a test object. // The newly created TestInfo instance will assume // ownership of the factory object. TestInfo* MakeAndRegisterTestInfo( const char* test_suite_name, const char* name, const char* type_param, const char* value_param, CodeLocation code_location, TypeId fixture_class_id, SetUpTestSuiteFunc set_up_tc, TearDownTestSuiteFunc tear_down_tc, TestFactoryBase* factory) { TestInfo* const test_info = new TestInfo(test_suite_name, name, type_param, value_param, code_location, fixture_class_id, factory); GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info); return test_info; } void ReportInvalidTestSuiteType(const char* test_suite_name, CodeLocation code_location) { Message errors; errors << "Attempted redefinition of test suite " << test_suite_name << ".\n" << "All tests in the same test suite must use the same test fixture\n" << "class. However, in test suite " << test_suite_name << ", you tried\n" << "to define a test using a fixture class different from the one\n" << "used earlier. This can happen if the two fixture classes are\n" << "from different namespaces and have the same name. You should\n" << "probably rename one of the classes to put the tests into different\n" << "test suites."; GTEST_LOG_(ERROR) << FormatFileLocation(code_location.file.c_str(), code_location.line) << " " << errors.GetString(); } } // namespace internal namespace { // A predicate that checks the test name of a TestInfo against a known // value. // // This is used for implementation of the TestSuite class only. We put // it in the anonymous namespace to prevent polluting the outer // namespace. // // TestNameIs is copyable. class TestNameIs { public: // Constructor. // // TestNameIs has NO default constructor. explicit TestNameIs(const char* name) : name_(name) {} // Returns true if and only if the test name of test_info matches name_. bool operator()(const TestInfo * test_info) const { return test_info && test_info->name() == name_; } private: std::string name_; }; } // namespace namespace internal { // This method expands all parameterized tests registered with macros TEST_P // and INSTANTIATE_TEST_SUITE_P into regular tests and registers those. // This will be done just once during the program runtime. void UnitTestImpl::RegisterParameterizedTests() { if (!parameterized_tests_registered_) { parameterized_test_registry_.RegisterTests(); type_parameterized_test_registry_.CheckForInstantiations(); parameterized_tests_registered_ = true; } } } // namespace internal // Creates the test object, runs it, records its result, and then // deletes it. void TestInfo::Run() { if (!should_run_) return; // Tells UnitTest where to store test result. internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); impl->set_current_test_info(this); TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); // Notifies the unit test event listeners that a test is about to start. repeater->OnTestStart(*this); result_.set_start_timestamp(internal::GetTimeInMillis()); internal::Timer timer; impl->os_stack_trace_getter()->UponLeavingGTest(); // Creates the test object. Test* const test = internal::HandleExceptionsInMethodIfSupported( factory_, &internal::TestFactoryBase::CreateTest, "the test fixture's constructor"); // Runs the test if the constructor didn't generate a fatal failure or invoke // GTEST_SKIP(). // Note that the object will not be null if (!Test::HasFatalFailure() && !Test::IsSkipped()) { // This doesn't throw as all user code that can throw are wrapped into // exception handling code. test->Run(); } if (test != nullptr) { // Deletes the test object. impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( test, &Test::DeleteSelf_, "the test fixture's destructor"); } result_.set_elapsed_time(timer.Elapsed()); // Notifies the unit test event listener that a test has just finished. repeater->OnTestEnd(*this); // Tells UnitTest to stop associating assertion results to this // test. impl->set_current_test_info(nullptr); } // Skip and records a skipped test result for this object. void TestInfo::Skip() { if (!should_run_) return; internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); impl->set_current_test_info(this); TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); // Notifies the unit test event listeners that a test is about to start. repeater->OnTestStart(*this); const TestPartResult test_part_result = TestPartResult(TestPartResult::kSkip, this->file(), this->line(), ""); impl->GetTestPartResultReporterForCurrentThread()->ReportTestPartResult( test_part_result); // Notifies the unit test event listener that a test has just finished. repeater->OnTestEnd(*this); impl->set_current_test_info(nullptr); } // class TestSuite // Gets the number of successful tests in this test suite. int TestSuite::successful_test_count() const { return CountIf(test_info_list_, TestPassed); } // Gets the number of successful tests in this test suite. int TestSuite::skipped_test_count() const { return CountIf(test_info_list_, TestSkipped); } // Gets the number of failed tests in this test suite. int TestSuite::failed_test_count() const { return CountIf(test_info_list_, TestFailed); } // Gets the number of disabled tests that will be reported in the XML report. int TestSuite::reportable_disabled_test_count() const { return CountIf(test_info_list_, TestReportableDisabled); } // Gets the number of disabled tests in this test suite. int TestSuite::disabled_test_count() const { return CountIf(test_info_list_, TestDisabled); } // Gets the number of tests to be printed in the XML report. int TestSuite::reportable_test_count() const { return CountIf(test_info_list_, TestReportable); } // Get the number of tests in this test suite that should run. int TestSuite::test_to_run_count() const { return CountIf(test_info_list_, ShouldRunTest); } // Gets the number of all tests. int TestSuite::total_test_count() const { return static_cast(test_info_list_.size()); } // Creates a TestSuite with the given name. // // Arguments: // // a_name: name of the test suite // a_type_param: the name of the test suite's type parameter, or NULL if // this is not a typed or a type-parameterized test suite. // set_up_tc: pointer to the function that sets up the test suite // tear_down_tc: pointer to the function that tears down the test suite TestSuite::TestSuite(const char* a_name, const char* a_type_param, internal::SetUpTestSuiteFunc set_up_tc, internal::TearDownTestSuiteFunc tear_down_tc) : name_(a_name), type_param_(a_type_param ? new std::string(a_type_param) : nullptr), set_up_tc_(set_up_tc), tear_down_tc_(tear_down_tc), should_run_(false), start_timestamp_(0), elapsed_time_(0) {} // Destructor of TestSuite. TestSuite::~TestSuite() { // Deletes every Test in the collection. ForEach(test_info_list_, internal::Delete); } // Returns the i-th test among all the tests. i can range from 0 to // total_test_count() - 1. If i is not in that range, returns NULL. const TestInfo* TestSuite::GetTestInfo(int i) const { const int index = GetElementOr(test_indices_, i, -1); return index < 0 ? nullptr : test_info_list_[static_cast(index)]; } // Returns the i-th test among all the tests. i can range from 0 to // total_test_count() - 1. If i is not in that range, returns NULL. TestInfo* TestSuite::GetMutableTestInfo(int i) { const int index = GetElementOr(test_indices_, i, -1); return index < 0 ? nullptr : test_info_list_[static_cast(index)]; } // Adds a test to this test suite. Will delete the test upon // destruction of the TestSuite object. void TestSuite::AddTestInfo(TestInfo* test_info) { test_info_list_.push_back(test_info); test_indices_.push_back(static_cast(test_indices_.size())); } // Runs every test in this TestSuite. void TestSuite::Run() { if (!should_run_) return; internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); impl->set_current_test_suite(this); TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); // Call both legacy and the new API repeater->OnTestSuiteStart(*this); // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ repeater->OnTestCaseStart(*this); #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( this, &TestSuite::RunSetUpTestSuite, "SetUpTestSuite()"); start_timestamp_ = internal::GetTimeInMillis(); internal::Timer timer; for (int i = 0; i < total_test_count(); i++) { GetMutableTestInfo(i)->Run(); if (GTEST_FLAG(fail_fast) && GetMutableTestInfo(i)->result()->Failed()) { for (int j = i + 1; j < total_test_count(); j++) { GetMutableTestInfo(j)->Skip(); } break; } } elapsed_time_ = timer.Elapsed(); impl->os_stack_trace_getter()->UponLeavingGTest(); internal::HandleExceptionsInMethodIfSupported( this, &TestSuite::RunTearDownTestSuite, "TearDownTestSuite()"); // Call both legacy and the new API repeater->OnTestSuiteEnd(*this); // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ repeater->OnTestCaseEnd(*this); #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ impl->set_current_test_suite(nullptr); } // Skips all tests under this TestSuite. void TestSuite::Skip() { if (!should_run_) return; internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); impl->set_current_test_suite(this); TestEventListener* repeater = UnitTest::GetInstance()->listeners().repeater(); // Call both legacy and the new API repeater->OnTestSuiteStart(*this); // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ repeater->OnTestCaseStart(*this); #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ for (int i = 0; i < total_test_count(); i++) { GetMutableTestInfo(i)->Skip(); } // Call both legacy and the new API repeater->OnTestSuiteEnd(*this); // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ repeater->OnTestCaseEnd(*this); #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ impl->set_current_test_suite(nullptr); } // Clears the results of all tests in this test suite. void TestSuite::ClearResult() { ad_hoc_test_result_.Clear(); ForEach(test_info_list_, TestInfo::ClearTestResult); } // Shuffles the tests in this test suite. void TestSuite::ShuffleTests(internal::Random* random) { Shuffle(random, &test_indices_); } // Restores the test order to before the first shuffle. void TestSuite::UnshuffleTests() { for (size_t i = 0; i < test_indices_.size(); i++) { test_indices_[i] = static_cast(i); } } // Formats a countable noun. Depending on its quantity, either the // singular form or the plural form is used. e.g. // // FormatCountableNoun(1, "formula", "formuli") returns "1 formula". // FormatCountableNoun(5, "book", "books") returns "5 books". static std::string FormatCountableNoun(int count, const char * singular_form, const char * plural_form) { return internal::StreamableToString(count) + " " + (count == 1 ? singular_form : plural_form); } // Formats the count of tests. static std::string FormatTestCount(int test_count) { return FormatCountableNoun(test_count, "test", "tests"); } // Formats the count of test suites. static std::string FormatTestSuiteCount(int test_suite_count) { return FormatCountableNoun(test_suite_count, "test suite", "test suites"); } // Converts a TestPartResult::Type enum to human-friendly string // representation. Both kNonFatalFailure and kFatalFailure are translated // to "Failure", as the user usually doesn't care about the difference // between the two when viewing the test result. static const char * TestPartResultTypeToString(TestPartResult::Type type) { switch (type) { case TestPartResult::kSkip: return "Skipped\n"; case TestPartResult::kSuccess: return "Success"; case TestPartResult::kNonFatalFailure: case TestPartResult::kFatalFailure: #ifdef _MSC_VER return "error: "; #else return "Failure\n"; #endif default: return "Unknown result type"; } } namespace internal { namespace { enum class GTestColor { kDefault, kRed, kGreen, kYellow }; } // namespace // Prints a TestPartResult to an std::string. static std::string PrintTestPartResultToString( const TestPartResult& test_part_result) { return (Message() << internal::FormatFileLocation(test_part_result.file_name(), test_part_result.line_number()) << " " << TestPartResultTypeToString(test_part_result.type()) << test_part_result.message()).GetString(); } // Prints a TestPartResult. static void PrintTestPartResult(const TestPartResult& test_part_result) { const std::string& result = PrintTestPartResultToString(test_part_result); printf("%s\n", result.c_str()); fflush(stdout); // If the test program runs in Visual Studio or a debugger, the // following statements add the test part result message to the Output // window such that the user can double-click on it to jump to the // corresponding source code location; otherwise they do nothing. #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE // We don't call OutputDebugString*() on Windows Mobile, as printing // to stdout is done by OutputDebugString() there already - we don't // want the same message printed twice. ::OutputDebugStringA(result.c_str()); ::OutputDebugStringA("\n"); #endif } // class PrettyUnitTestResultPrinter #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE && \ !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT && !GTEST_OS_WINDOWS_MINGW // Returns the character attribute for the given color. static WORD GetColorAttribute(GTestColor color) { switch (color) { case GTestColor::kRed: return FOREGROUND_RED; case GTestColor::kGreen: return FOREGROUND_GREEN; case GTestColor::kYellow: return FOREGROUND_RED | FOREGROUND_GREEN; default: return 0; } } static int GetBitOffset(WORD color_mask) { if (color_mask == 0) return 0; int bitOffset = 0; while ((color_mask & 1) == 0) { color_mask >>= 1; ++bitOffset; } return bitOffset; } static WORD GetNewColor(GTestColor color, WORD old_color_attrs) { // Let's reuse the BG static const WORD background_mask = BACKGROUND_BLUE | BACKGROUND_GREEN | BACKGROUND_RED | BACKGROUND_INTENSITY; static const WORD foreground_mask = FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_INTENSITY; const WORD existing_bg = old_color_attrs & background_mask; WORD new_color = GetColorAttribute(color) | existing_bg | FOREGROUND_INTENSITY; static const int bg_bitOffset = GetBitOffset(background_mask); static const int fg_bitOffset = GetBitOffset(foreground_mask); if (((new_color & background_mask) >> bg_bitOffset) == ((new_color & foreground_mask) >> fg_bitOffset)) { new_color ^= FOREGROUND_INTENSITY; // invert intensity } return new_color; } #else // Returns the ANSI color code for the given color. GTestColor::kDefault is // an invalid input. static const char* GetAnsiColorCode(GTestColor color) { switch (color) { case GTestColor::kRed: return "1"; case GTestColor::kGreen: return "2"; case GTestColor::kYellow: return "3"; default: return nullptr; } } #endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE // Returns true if and only if Google Test should use colors in the output. bool ShouldUseColor(bool stdout_is_tty) { const char* const gtest_color = GTEST_FLAG(color).c_str(); if (String::CaseInsensitiveCStringEquals(gtest_color, "auto")) { #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MINGW // On Windows the TERM variable is usually not set, but the // console there does support colors. return stdout_is_tty; #else // On non-Windows platforms, we rely on the TERM variable. const char* const term = posix::GetEnv("TERM"); const bool term_supports_color = String::CStringEquals(term, "xterm") || String::CStringEquals(term, "xterm-color") || String::CStringEquals(term, "xterm-256color") || String::CStringEquals(term, "screen") || String::CStringEquals(term, "screen-256color") || String::CStringEquals(term, "tmux") || String::CStringEquals(term, "tmux-256color") || String::CStringEquals(term, "rxvt-unicode") || String::CStringEquals(term, "rxvt-unicode-256color") || String::CStringEquals(term, "linux") || String::CStringEquals(term, "cygwin"); return stdout_is_tty && term_supports_color; #endif // GTEST_OS_WINDOWS } return String::CaseInsensitiveCStringEquals(gtest_color, "yes") || String::CaseInsensitiveCStringEquals(gtest_color, "true") || String::CaseInsensitiveCStringEquals(gtest_color, "t") || String::CStringEquals(gtest_color, "1"); // We take "yes", "true", "t", and "1" as meaning "yes". If the // value is neither one of these nor "auto", we treat it as "no" to // be conservative. } // Helpers for printing colored strings to stdout. Note that on Windows, we // cannot simply emit special characters and have the terminal change colors. // This routine must actually emit the characters rather than return a string // that would be colored when printed, as can be done on Linux. GTEST_ATTRIBUTE_PRINTF_(2, 3) static void ColoredPrintf(GTestColor color, const char *fmt, ...) { va_list args; va_start(args, fmt); #if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_ZOS || GTEST_OS_IOS || \ GTEST_OS_WINDOWS_PHONE || GTEST_OS_WINDOWS_RT || defined(ESP_PLATFORM) const bool use_color = AlwaysFalse(); #else static const bool in_color_mode = ShouldUseColor(posix::IsATTY(posix::FileNo(stdout)) != 0); const bool use_color = in_color_mode && (color != GTestColor::kDefault); #endif // GTEST_OS_WINDOWS_MOBILE || GTEST_OS_ZOS if (!use_color) { vprintf(fmt, args); va_end(args); return; } #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE && \ !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT && !GTEST_OS_WINDOWS_MINGW const HANDLE stdout_handle = GetStdHandle(STD_OUTPUT_HANDLE); // Gets the current text color. CONSOLE_SCREEN_BUFFER_INFO buffer_info; GetConsoleScreenBufferInfo(stdout_handle, &buffer_info); const WORD old_color_attrs = buffer_info.wAttributes; const WORD new_color = GetNewColor(color, old_color_attrs); // We need to flush the stream buffers into the console before each // SetConsoleTextAttribute call lest it affect the text that is already // printed but has not yet reached the console. fflush(stdout); SetConsoleTextAttribute(stdout_handle, new_color); vprintf(fmt, args); fflush(stdout); // Restores the text color. SetConsoleTextAttribute(stdout_handle, old_color_attrs); #else printf("\033[0;3%sm", GetAnsiColorCode(color)); vprintf(fmt, args); printf("\033[m"); // Resets the terminal to default. #endif // GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_MOBILE va_end(args); } // Text printed in Google Test's text output and --gtest_list_tests // output to label the type parameter and value parameter for a test. static const char kTypeParamLabel[] = "TypeParam"; static const char kValueParamLabel[] = "GetParam()"; static void PrintFullTestCommentIfPresent(const TestInfo& test_info) { const char* const type_param = test_info.type_param(); const char* const value_param = test_info.value_param(); if (type_param != nullptr || value_param != nullptr) { printf(", where "); if (type_param != nullptr) { printf("%s = %s", kTypeParamLabel, type_param); if (value_param != nullptr) printf(" and "); } if (value_param != nullptr) { printf("%s = %s", kValueParamLabel, value_param); } } } // This class implements the TestEventListener interface. // // Class PrettyUnitTestResultPrinter is copyable. class PrettyUnitTestResultPrinter : public TestEventListener { public: PrettyUnitTestResultPrinter() {} static void PrintTestName(const char* test_suite, const char* test) { printf("%s.%s", test_suite, test); } // The following methods override what's in the TestEventListener class. void OnTestProgramStart(const UnitTest& /*unit_test*/) override {} void OnTestIterationStart(const UnitTest& unit_test, int iteration) override; void OnEnvironmentsSetUpStart(const UnitTest& unit_test) override; void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) override {} #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestCaseStart(const TestCase& test_case) override; #else void OnTestSuiteStart(const TestSuite& test_suite) override; #endif // OnTestCaseStart void OnTestStart(const TestInfo& test_info) override; void OnTestPartResult(const TestPartResult& result) override; void OnTestEnd(const TestInfo& test_info) override; #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestCaseEnd(const TestCase& test_case) override; #else void OnTestSuiteEnd(const TestSuite& test_suite) override; #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnEnvironmentsTearDownStart(const UnitTest& unit_test) override; void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) override {} void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override; void OnTestProgramEnd(const UnitTest& /*unit_test*/) override {} private: static void PrintFailedTests(const UnitTest& unit_test); static void PrintFailedTestSuites(const UnitTest& unit_test); static void PrintSkippedTests(const UnitTest& unit_test); }; // Fired before each iteration of tests starts. void PrettyUnitTestResultPrinter::OnTestIterationStart( const UnitTest& unit_test, int iteration) { if (GTEST_FLAG(repeat) != 1) printf("\nRepeating all tests (iteration %d) . . .\n\n", iteration + 1); const char* const filter = GTEST_FLAG(filter).c_str(); // Prints the filter if it's not *. This reminds the user that some // tests may be skipped. if (!String::CStringEquals(filter, kUniversalFilter)) { ColoredPrintf(GTestColor::kYellow, "Note: %s filter = %s\n", GTEST_NAME_, filter); } if (internal::ShouldShard(kTestTotalShards, kTestShardIndex, false)) { const int32_t shard_index = Int32FromEnvOrDie(kTestShardIndex, -1); ColoredPrintf(GTestColor::kYellow, "Note: This is test shard %d of %s.\n", static_cast(shard_index) + 1, internal::posix::GetEnv(kTestTotalShards)); } if (GTEST_FLAG(shuffle)) { ColoredPrintf(GTestColor::kYellow, "Note: Randomizing tests' orders with a seed of %d .\n", unit_test.random_seed()); } ColoredPrintf(GTestColor::kGreen, "[==========] "); printf("Running %s from %s.\n", FormatTestCount(unit_test.test_to_run_count()).c_str(), FormatTestSuiteCount(unit_test.test_suite_to_run_count()).c_str()); fflush(stdout); } void PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart( const UnitTest& /*unit_test*/) { ColoredPrintf(GTestColor::kGreen, "[----------] "); printf("Global test environment set-up.\n"); fflush(stdout); } #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { const std::string counts = FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); ColoredPrintf(GTestColor::kGreen, "[----------] "); printf("%s from %s", counts.c_str(), test_case.name()); if (test_case.type_param() == nullptr) { printf("\n"); } else { printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param()); } fflush(stdout); } #else void PrettyUnitTestResultPrinter::OnTestSuiteStart( const TestSuite& test_suite) { const std::string counts = FormatCountableNoun(test_suite.test_to_run_count(), "test", "tests"); ColoredPrintf(GTestColor::kGreen, "[----------] "); printf("%s from %s", counts.c_str(), test_suite.name()); if (test_suite.type_param() == nullptr) { printf("\n"); } else { printf(", where %s = %s\n", kTypeParamLabel, test_suite.type_param()); } fflush(stdout); } #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) { ColoredPrintf(GTestColor::kGreen, "[ RUN ] "); PrintTestName(test_info.test_suite_name(), test_info.name()); printf("\n"); fflush(stdout); } // Called after an assertion failure. void PrettyUnitTestResultPrinter::OnTestPartResult( const TestPartResult& result) { switch (result.type()) { // If the test part succeeded, we don't need to do anything. case TestPartResult::kSuccess: return; default: // Print failure message from the assertion // (e.g. expected this and got that). PrintTestPartResult(result); fflush(stdout); } } void PrettyUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) { if (test_info.result()->Passed()) { ColoredPrintf(GTestColor::kGreen, "[ OK ] "); } else if (test_info.result()->Skipped()) { ColoredPrintf(GTestColor::kGreen, "[ SKIPPED ] "); } else { ColoredPrintf(GTestColor::kRed, "[ FAILED ] "); } PrintTestName(test_info.test_suite_name(), test_info.name()); if (test_info.result()->Failed()) PrintFullTestCommentIfPresent(test_info); if (GTEST_FLAG(print_time)) { printf(" (%s ms)\n", internal::StreamableToString( test_info.result()->elapsed_time()).c_str()); } else { printf("\n"); } fflush(stdout); } #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) { if (!GTEST_FLAG(print_time)) return; const std::string counts = FormatCountableNoun(test_case.test_to_run_count(), "test", "tests"); ColoredPrintf(GTestColor::kGreen, "[----------] "); printf("%s from %s (%s ms total)\n\n", counts.c_str(), test_case.name(), internal::StreamableToString(test_case.elapsed_time()).c_str()); fflush(stdout); } #else void PrettyUnitTestResultPrinter::OnTestSuiteEnd(const TestSuite& test_suite) { if (!GTEST_FLAG(print_time)) return; const std::string counts = FormatCountableNoun(test_suite.test_to_run_count(), "test", "tests"); ColoredPrintf(GTestColor::kGreen, "[----------] "); printf("%s from %s (%s ms total)\n\n", counts.c_str(), test_suite.name(), internal::StreamableToString(test_suite.elapsed_time()).c_str()); fflush(stdout); } #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void PrettyUnitTestResultPrinter::OnEnvironmentsTearDownStart( const UnitTest& /*unit_test*/) { ColoredPrintf(GTestColor::kGreen, "[----------] "); printf("Global test environment tear-down\n"); fflush(stdout); } // Internal helper for printing the list of failed tests. void PrettyUnitTestResultPrinter::PrintFailedTests(const UnitTest& unit_test) { const int failed_test_count = unit_test.failed_test_count(); ColoredPrintf(GTestColor::kRed, "[ FAILED ] "); printf("%s, listed below:\n", FormatTestCount(failed_test_count).c_str()); for (int i = 0; i < unit_test.total_test_suite_count(); ++i) { const TestSuite& test_suite = *unit_test.GetTestSuite(i); if (!test_suite.should_run() || (test_suite.failed_test_count() == 0)) { continue; } for (int j = 0; j < test_suite.total_test_count(); ++j) { const TestInfo& test_info = *test_suite.GetTestInfo(j); if (!test_info.should_run() || !test_info.result()->Failed()) { continue; } ColoredPrintf(GTestColor::kRed, "[ FAILED ] "); printf("%s.%s", test_suite.name(), test_info.name()); PrintFullTestCommentIfPresent(test_info); printf("\n"); } } printf("\n%2d FAILED %s\n", failed_test_count, failed_test_count == 1 ? "TEST" : "TESTS"); } // Internal helper for printing the list of test suite failures not covered by // PrintFailedTests. void PrettyUnitTestResultPrinter::PrintFailedTestSuites( const UnitTest& unit_test) { int suite_failure_count = 0; for (int i = 0; i < unit_test.total_test_suite_count(); ++i) { const TestSuite& test_suite = *unit_test.GetTestSuite(i); if (!test_suite.should_run()) { continue; } if (test_suite.ad_hoc_test_result().Failed()) { ColoredPrintf(GTestColor::kRed, "[ FAILED ] "); printf("%s: SetUpTestSuite or TearDownTestSuite\n", test_suite.name()); ++suite_failure_count; } } if (suite_failure_count > 0) { printf("\n%2d FAILED TEST %s\n", suite_failure_count, suite_failure_count == 1 ? "SUITE" : "SUITES"); } } // Internal helper for printing the list of skipped tests. void PrettyUnitTestResultPrinter::PrintSkippedTests(const UnitTest& unit_test) { const int skipped_test_count = unit_test.skipped_test_count(); if (skipped_test_count == 0) { return; } for (int i = 0; i < unit_test.total_test_suite_count(); ++i) { const TestSuite& test_suite = *unit_test.GetTestSuite(i); if (!test_suite.should_run() || (test_suite.skipped_test_count() == 0)) { continue; } for (int j = 0; j < test_suite.total_test_count(); ++j) { const TestInfo& test_info = *test_suite.GetTestInfo(j); if (!test_info.should_run() || !test_info.result()->Skipped()) { continue; } ColoredPrintf(GTestColor::kGreen, "[ SKIPPED ] "); printf("%s.%s", test_suite.name(), test_info.name()); printf("\n"); } } } void PrettyUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, int /*iteration*/) { ColoredPrintf(GTestColor::kGreen, "[==========] "); printf("%s from %s ran.", FormatTestCount(unit_test.test_to_run_count()).c_str(), FormatTestSuiteCount(unit_test.test_suite_to_run_count()).c_str()); if (GTEST_FLAG(print_time)) { printf(" (%s ms total)", internal::StreamableToString(unit_test.elapsed_time()).c_str()); } printf("\n"); ColoredPrintf(GTestColor::kGreen, "[ PASSED ] "); printf("%s.\n", FormatTestCount(unit_test.successful_test_count()).c_str()); const int skipped_test_count = unit_test.skipped_test_count(); if (skipped_test_count > 0) { ColoredPrintf(GTestColor::kGreen, "[ SKIPPED ] "); printf("%s, listed below:\n", FormatTestCount(skipped_test_count).c_str()); PrintSkippedTests(unit_test); } if (!unit_test.Passed()) { PrintFailedTests(unit_test); PrintFailedTestSuites(unit_test); } int num_disabled = unit_test.reportable_disabled_test_count(); if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) { if (unit_test.Passed()) { printf("\n"); // Add a spacer if no FAILURE banner is displayed. } ColoredPrintf(GTestColor::kYellow, " YOU HAVE %d DISABLED %s\n\n", num_disabled, num_disabled == 1 ? "TEST" : "TESTS"); } // Ensure that Google Test output is printed before, e.g., heapchecker output. fflush(stdout); } // End PrettyUnitTestResultPrinter // This class implements the TestEventListener interface. // // Class BriefUnitTestResultPrinter is copyable. class BriefUnitTestResultPrinter : public TestEventListener { public: BriefUnitTestResultPrinter() {} static void PrintTestName(const char* test_suite, const char* test) { printf("%s.%s", test_suite, test); } // The following methods override what's in the TestEventListener class. void OnTestProgramStart(const UnitTest& /*unit_test*/) override {} void OnTestIterationStart(const UnitTest& /*unit_test*/, int /*iteration*/) override {} void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) override {} void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) override {} #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestCaseStart(const TestCase& /*test_case*/) override {} #else void OnTestSuiteStart(const TestSuite& /*test_suite*/) override {} #endif // OnTestCaseStart void OnTestStart(const TestInfo& /*test_info*/) override {} void OnTestPartResult(const TestPartResult& result) override; void OnTestEnd(const TestInfo& test_info) override; #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestCaseEnd(const TestCase& /*test_case*/) override {} #else void OnTestSuiteEnd(const TestSuite& /*test_suite*/) override {} #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) override {} void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) override {} void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override; void OnTestProgramEnd(const UnitTest& /*unit_test*/) override {} }; // Called after an assertion failure. void BriefUnitTestResultPrinter::OnTestPartResult( const TestPartResult& result) { switch (result.type()) { // If the test part succeeded, we don't need to do anything. case TestPartResult::kSuccess: return; default: // Print failure message from the assertion // (e.g. expected this and got that). PrintTestPartResult(result); fflush(stdout); } } void BriefUnitTestResultPrinter::OnTestEnd(const TestInfo& test_info) { if (test_info.result()->Failed()) { ColoredPrintf(GTestColor::kRed, "[ FAILED ] "); PrintTestName(test_info.test_suite_name(), test_info.name()); PrintFullTestCommentIfPresent(test_info); if (GTEST_FLAG(print_time)) { printf(" (%s ms)\n", internal::StreamableToString(test_info.result()->elapsed_time()) .c_str()); } else { printf("\n"); } fflush(stdout); } } void BriefUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, int /*iteration*/) { ColoredPrintf(GTestColor::kGreen, "[==========] "); printf("%s from %s ran.", FormatTestCount(unit_test.test_to_run_count()).c_str(), FormatTestSuiteCount(unit_test.test_suite_to_run_count()).c_str()); if (GTEST_FLAG(print_time)) { printf(" (%s ms total)", internal::StreamableToString(unit_test.elapsed_time()).c_str()); } printf("\n"); ColoredPrintf(GTestColor::kGreen, "[ PASSED ] "); printf("%s.\n", FormatTestCount(unit_test.successful_test_count()).c_str()); const int skipped_test_count = unit_test.skipped_test_count(); if (skipped_test_count > 0) { ColoredPrintf(GTestColor::kGreen, "[ SKIPPED ] "); printf("%s.\n", FormatTestCount(skipped_test_count).c_str()); } int num_disabled = unit_test.reportable_disabled_test_count(); if (num_disabled && !GTEST_FLAG(also_run_disabled_tests)) { if (unit_test.Passed()) { printf("\n"); // Add a spacer if no FAILURE banner is displayed. } ColoredPrintf(GTestColor::kYellow, " YOU HAVE %d DISABLED %s\n\n", num_disabled, num_disabled == 1 ? "TEST" : "TESTS"); } // Ensure that Google Test output is printed before, e.g., heapchecker output. fflush(stdout); } // End BriefUnitTestResultPrinter // class TestEventRepeater // // This class forwards events to other event listeners. class TestEventRepeater : public TestEventListener { public: TestEventRepeater() : forwarding_enabled_(true) {} ~TestEventRepeater() override; void Append(TestEventListener *listener); TestEventListener* Release(TestEventListener* listener); // Controls whether events will be forwarded to listeners_. Set to false // in death test child processes. bool forwarding_enabled() const { return forwarding_enabled_; } void set_forwarding_enabled(bool enable) { forwarding_enabled_ = enable; } void OnTestProgramStart(const UnitTest& unit_test) override; void OnTestIterationStart(const UnitTest& unit_test, int iteration) override; void OnEnvironmentsSetUpStart(const UnitTest& unit_test) override; void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) override; // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestCaseStart(const TestSuite& parameter) override; #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestSuiteStart(const TestSuite& parameter) override; void OnTestStart(const TestInfo& test_info) override; void OnTestPartResult(const TestPartResult& result) override; void OnTestEnd(const TestInfo& test_info) override; // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestCaseEnd(const TestCase& parameter) override; #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ void OnTestSuiteEnd(const TestSuite& parameter) override; void OnEnvironmentsTearDownStart(const UnitTest& unit_test) override; void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) override; void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override; void OnTestProgramEnd(const UnitTest& unit_test) override; private: // Controls whether events will be forwarded to listeners_. Set to false // in death test child processes. bool forwarding_enabled_; // The list of listeners that receive events. std::vector listeners_; GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventRepeater); }; TestEventRepeater::~TestEventRepeater() { ForEach(listeners_, Delete); } void TestEventRepeater::Append(TestEventListener *listener) { listeners_.push_back(listener); } TestEventListener* TestEventRepeater::Release(TestEventListener *listener) { for (size_t i = 0; i < listeners_.size(); ++i) { if (listeners_[i] == listener) { listeners_.erase(listeners_.begin() + static_cast(i)); return listener; } } return nullptr; } // Since most methods are very similar, use macros to reduce boilerplate. // This defines a member that forwards the call to all listeners. #define GTEST_REPEATER_METHOD_(Name, Type) \ void TestEventRepeater::Name(const Type& parameter) { \ if (forwarding_enabled_) { \ for (size_t i = 0; i < listeners_.size(); i++) { \ listeners_[i]->Name(parameter); \ } \ } \ } // This defines a member that forwards the call to all listeners in reverse // order. #define GTEST_REVERSE_REPEATER_METHOD_(Name, Type) \ void TestEventRepeater::Name(const Type& parameter) { \ if (forwarding_enabled_) { \ for (size_t i = listeners_.size(); i != 0; i--) { \ listeners_[i - 1]->Name(parameter); \ } \ } \ } GTEST_REPEATER_METHOD_(OnTestProgramStart, UnitTest) GTEST_REPEATER_METHOD_(OnEnvironmentsSetUpStart, UnitTest) // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ GTEST_REPEATER_METHOD_(OnTestCaseStart, TestSuite) #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ GTEST_REPEATER_METHOD_(OnTestSuiteStart, TestSuite) GTEST_REPEATER_METHOD_(OnTestStart, TestInfo) GTEST_REPEATER_METHOD_(OnTestPartResult, TestPartResult) GTEST_REPEATER_METHOD_(OnEnvironmentsTearDownStart, UnitTest) GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsSetUpEnd, UnitTest) GTEST_REVERSE_REPEATER_METHOD_(OnEnvironmentsTearDownEnd, UnitTest) GTEST_REVERSE_REPEATER_METHOD_(OnTestEnd, TestInfo) // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ GTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestSuite) #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ GTEST_REVERSE_REPEATER_METHOD_(OnTestSuiteEnd, TestSuite) GTEST_REVERSE_REPEATER_METHOD_(OnTestProgramEnd, UnitTest) #undef GTEST_REPEATER_METHOD_ #undef GTEST_REVERSE_REPEATER_METHOD_ void TestEventRepeater::OnTestIterationStart(const UnitTest& unit_test, int iteration) { if (forwarding_enabled_) { for (size_t i = 0; i < listeners_.size(); i++) { listeners_[i]->OnTestIterationStart(unit_test, iteration); } } } void TestEventRepeater::OnTestIterationEnd(const UnitTest& unit_test, int iteration) { if (forwarding_enabled_) { for (size_t i = listeners_.size(); i > 0; i--) { listeners_[i - 1]->OnTestIterationEnd(unit_test, iteration); } } } // End TestEventRepeater // This class generates an XML output file. class XmlUnitTestResultPrinter : public EmptyTestEventListener { public: explicit XmlUnitTestResultPrinter(const char* output_file); void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override; void ListTestsMatchingFilter(const std::vector& test_suites); // Prints an XML summary of all unit tests. static void PrintXmlTestsList(std::ostream* stream, const std::vector& test_suites); private: // Is c a whitespace character that is normalized to a space character // when it appears in an XML attribute value? static bool IsNormalizableWhitespace(char c) { return c == 0x9 || c == 0xA || c == 0xD; } // May c appear in a well-formed XML document? static bool IsValidXmlCharacter(char c) { return IsNormalizableWhitespace(c) || c >= 0x20; } // Returns an XML-escaped copy of the input string str. If // is_attribute is true, the text is meant to appear as an attribute // value, and normalizable whitespace is preserved by replacing it // with character references. static std::string EscapeXml(const std::string& str, bool is_attribute); // Returns the given string with all characters invalid in XML removed. static std::string RemoveInvalidXmlCharacters(const std::string& str); // Convenience wrapper around EscapeXml when str is an attribute value. static std::string EscapeXmlAttribute(const std::string& str) { return EscapeXml(str, true); } // Convenience wrapper around EscapeXml when str is not an attribute value. static std::string EscapeXmlText(const char* str) { return EscapeXml(str, false); } // Verifies that the given attribute belongs to the given element and // streams the attribute as XML. static void OutputXmlAttribute(std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value); // Streams an XML CDATA section, escaping invalid CDATA sequences as needed. static void OutputXmlCDataSection(::std::ostream* stream, const char* data); // Streams a test suite XML stanza containing the given test result. // // Requires: result.Failed() static void OutputXmlTestSuiteForTestResult(::std::ostream* stream, const TestResult& result); // Streams an XML representation of a TestResult object. static void OutputXmlTestResult(::std::ostream* stream, const TestResult& result); // Streams an XML representation of a TestInfo object. static void OutputXmlTestInfo(::std::ostream* stream, const char* test_suite_name, const TestInfo& test_info); // Prints an XML representation of a TestSuite object static void PrintXmlTestSuite(::std::ostream* stream, const TestSuite& test_suite); // Prints an XML summary of unit_test to output stream out. static void PrintXmlUnitTest(::std::ostream* stream, const UnitTest& unit_test); // Produces a string representing the test properties in a result as space // delimited XML attributes based on the property key="value" pairs. // When the std::string is not empty, it includes a space at the beginning, // to delimit this attribute from prior attributes. static std::string TestPropertiesAsXmlAttributes(const TestResult& result); // Streams an XML representation of the test properties of a TestResult // object. static void OutputXmlTestProperties(std::ostream* stream, const TestResult& result); // The output file. const std::string output_file_; GTEST_DISALLOW_COPY_AND_ASSIGN_(XmlUnitTestResultPrinter); }; // Creates a new XmlUnitTestResultPrinter. XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file) : output_file_(output_file) { if (output_file_.empty()) { GTEST_LOG_(FATAL) << "XML output file may not be null"; } } // Called after the unit test ends. void XmlUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, int /*iteration*/) { FILE* xmlout = OpenFileForWriting(output_file_); std::stringstream stream; PrintXmlUnitTest(&stream, unit_test); fprintf(xmlout, "%s", StringStreamToString(&stream).c_str()); fclose(xmlout); } void XmlUnitTestResultPrinter::ListTestsMatchingFilter( const std::vector& test_suites) { FILE* xmlout = OpenFileForWriting(output_file_); std::stringstream stream; PrintXmlTestsList(&stream, test_suites); fprintf(xmlout, "%s", StringStreamToString(&stream).c_str()); fclose(xmlout); } // Returns an XML-escaped copy of the input string str. If is_attribute // is true, the text is meant to appear as an attribute value, and // normalizable whitespace is preserved by replacing it with character // references. // // Invalid XML characters in str, if any, are stripped from the output. // It is expected that most, if not all, of the text processed by this // module will consist of ordinary English text. // If this module is ever modified to produce version 1.1 XML output, // most invalid characters can be retained using character references. std::string XmlUnitTestResultPrinter::EscapeXml( const std::string& str, bool is_attribute) { Message m; for (size_t i = 0; i < str.size(); ++i) { const char ch = str[i]; switch (ch) { case '<': m << "<"; break; case '>': m << ">"; break; case '&': m << "&"; break; case '\'': if (is_attribute) m << "'"; else m << '\''; break; case '"': if (is_attribute) m << """; else m << '"'; break; default: if (IsValidXmlCharacter(ch)) { if (is_attribute && IsNormalizableWhitespace(ch)) m << "&#x" << String::FormatByte(static_cast(ch)) << ";"; else m << ch; } break; } } return m.GetString(); } // Returns the given string with all characters invalid in XML removed. // Currently invalid characters are dropped from the string. An // alternative is to replace them with certain characters such as . or ?. std::string XmlUnitTestResultPrinter::RemoveInvalidXmlCharacters( const std::string& str) { std::string output; output.reserve(str.size()); for (std::string::const_iterator it = str.begin(); it != str.end(); ++it) if (IsValidXmlCharacter(*it)) output.push_back(*it); return output; } // The following routines generate an XML representation of a UnitTest // object. // GOOGLETEST_CM0009 DO NOT DELETE // // This is how Google Test concepts map to the DTD: // // <-- corresponds to a UnitTest object // <-- corresponds to a TestSuite object // <-- corresponds to a TestInfo object // ... // ... // ... // <-- individual assertion failures // // // // Formats the given time in milliseconds as seconds. std::string FormatTimeInMillisAsSeconds(TimeInMillis ms) { ::std::stringstream ss; ss << (static_cast(ms) * 1e-3); return ss.str(); } static bool PortableLocaltime(time_t seconds, struct tm* out) { #if defined(_MSC_VER) return localtime_s(out, &seconds) == 0; #elif defined(__MINGW32__) || defined(__MINGW64__) // MINGW provides neither localtime_r nor localtime_s, but uses // Windows' localtime(), which has a thread-local tm buffer. struct tm* tm_ptr = localtime(&seconds); // NOLINT if (tm_ptr == nullptr) return false; *out = *tm_ptr; return true; #elif defined(__STDC_LIB_EXT1__) // Uses localtime_s when available as localtime_r is only available from // C23 standard. return localtime_s(&seconds, out) != nullptr; #else return localtime_r(&seconds, out) != nullptr; #endif } // Converts the given epoch time in milliseconds to a date string in the ISO // 8601 format, without the timezone information. std::string FormatEpochTimeInMillisAsIso8601(TimeInMillis ms) { struct tm time_struct; if (!PortableLocaltime(static_cast(ms / 1000), &time_struct)) return ""; // YYYY-MM-DDThh:mm:ss.sss return StreamableToString(time_struct.tm_year + 1900) + "-" + String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" + String::FormatIntWidth2(time_struct.tm_mday) + "T" + String::FormatIntWidth2(time_struct.tm_hour) + ":" + String::FormatIntWidth2(time_struct.tm_min) + ":" + String::FormatIntWidth2(time_struct.tm_sec) + "." + String::FormatIntWidthN(static_cast(ms % 1000), 3); } // Streams an XML CDATA section, escaping invalid CDATA sequences as needed. void XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream, const char* data) { const char* segment = data; *stream << ""); if (next_segment != nullptr) { stream->write( segment, static_cast(next_segment - segment)); *stream << "]]>]]>"); } else { *stream << segment; break; } } *stream << "]]>"; } void XmlUnitTestResultPrinter::OutputXmlAttribute( std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value) { const std::vector& allowed_names = GetReservedOutputAttributesForElement(element_name); GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) != allowed_names.end()) << "Attribute " << name << " is not allowed for element <" << element_name << ">."; *stream << " " << name << "=\"" << EscapeXmlAttribute(value) << "\""; } // Streams a test suite XML stanza containing the given test result. void XmlUnitTestResultPrinter::OutputXmlTestSuiteForTestResult( ::std::ostream* stream, const TestResult& result) { // Output the boilerplate for a minimal test suite with one test. *stream << " "; // Output the boilerplate for a minimal test case with a single test. *stream << " \n"; } // Prints an XML representation of a TestInfo object. void XmlUnitTestResultPrinter::OutputXmlTestInfo(::std::ostream* stream, const char* test_suite_name, const TestInfo& test_info) { const TestResult& result = *test_info.result(); const std::string kTestsuite = "testcase"; if (test_info.is_in_another_shard()) { return; } *stream << " \n"; return; } OutputXmlAttribute(stream, kTestsuite, "status", test_info.should_run() ? "run" : "notrun"); OutputXmlAttribute(stream, kTestsuite, "result", test_info.should_run() ? (result.Skipped() ? "skipped" : "completed") : "suppressed"); OutputXmlAttribute(stream, kTestsuite, "time", FormatTimeInMillisAsSeconds(result.elapsed_time())); OutputXmlAttribute( stream, kTestsuite, "timestamp", FormatEpochTimeInMillisAsIso8601(result.start_timestamp())); OutputXmlAttribute(stream, kTestsuite, "classname", test_suite_name); OutputXmlTestResult(stream, result); } void XmlUnitTestResultPrinter::OutputXmlTestResult(::std::ostream* stream, const TestResult& result) { int failures = 0; int skips = 0; for (int i = 0; i < result.total_part_count(); ++i) { const TestPartResult& part = result.GetTestPartResult(i); if (part.failed()) { if (++failures == 1 && skips == 0) { *stream << ">\n"; } const std::string location = internal::FormatCompilerIndependentFileLocation(part.file_name(), part.line_number()); const std::string summary = location + "\n" + part.summary(); *stream << " "; const std::string detail = location + "\n" + part.message(); OutputXmlCDataSection(stream, RemoveInvalidXmlCharacters(detail).c_str()); *stream << "\n"; } else if (part.skipped()) { if (++skips == 1 && failures == 0) { *stream << ">\n"; } const std::string location = internal::FormatCompilerIndependentFileLocation(part.file_name(), part.line_number()); const std::string summary = location + "\n" + part.summary(); *stream << " "; const std::string detail = location + "\n" + part.message(); OutputXmlCDataSection(stream, RemoveInvalidXmlCharacters(detail).c_str()); *stream << "\n"; } } if (failures == 0 && skips == 0 && result.test_property_count() == 0) { *stream << " />\n"; } else { if (failures == 0 && skips == 0) { *stream << ">\n"; } OutputXmlTestProperties(stream, result); *stream << " \n"; } } // Prints an XML representation of a TestSuite object void XmlUnitTestResultPrinter::PrintXmlTestSuite(std::ostream* stream, const TestSuite& test_suite) { const std::string kTestsuite = "testsuite"; *stream << " <" << kTestsuite; OutputXmlAttribute(stream, kTestsuite, "name", test_suite.name()); OutputXmlAttribute(stream, kTestsuite, "tests", StreamableToString(test_suite.reportable_test_count())); if (!GTEST_FLAG(list_tests)) { OutputXmlAttribute(stream, kTestsuite, "failures", StreamableToString(test_suite.failed_test_count())); OutputXmlAttribute( stream, kTestsuite, "disabled", StreamableToString(test_suite.reportable_disabled_test_count())); OutputXmlAttribute(stream, kTestsuite, "skipped", StreamableToString(test_suite.skipped_test_count())); OutputXmlAttribute(stream, kTestsuite, "errors", "0"); OutputXmlAttribute(stream, kTestsuite, "time", FormatTimeInMillisAsSeconds(test_suite.elapsed_time())); OutputXmlAttribute( stream, kTestsuite, "timestamp", FormatEpochTimeInMillisAsIso8601(test_suite.start_timestamp())); *stream << TestPropertiesAsXmlAttributes(test_suite.ad_hoc_test_result()); } *stream << ">\n"; for (int i = 0; i < test_suite.total_test_count(); ++i) { if (test_suite.GetTestInfo(i)->is_reportable()) OutputXmlTestInfo(stream, test_suite.name(), *test_suite.GetTestInfo(i)); } *stream << " \n"; } // Prints an XML summary of unit_test to output stream out. void XmlUnitTestResultPrinter::PrintXmlUnitTest(std::ostream* stream, const UnitTest& unit_test) { const std::string kTestsuites = "testsuites"; *stream << "\n"; *stream << "<" << kTestsuites; OutputXmlAttribute(stream, kTestsuites, "tests", StreamableToString(unit_test.reportable_test_count())); OutputXmlAttribute(stream, kTestsuites, "failures", StreamableToString(unit_test.failed_test_count())); OutputXmlAttribute( stream, kTestsuites, "disabled", StreamableToString(unit_test.reportable_disabled_test_count())); OutputXmlAttribute(stream, kTestsuites, "errors", "0"); OutputXmlAttribute(stream, kTestsuites, "time", FormatTimeInMillisAsSeconds(unit_test.elapsed_time())); OutputXmlAttribute( stream, kTestsuites, "timestamp", FormatEpochTimeInMillisAsIso8601(unit_test.start_timestamp())); if (GTEST_FLAG(shuffle)) { OutputXmlAttribute(stream, kTestsuites, "random_seed", StreamableToString(unit_test.random_seed())); } *stream << TestPropertiesAsXmlAttributes(unit_test.ad_hoc_test_result()); OutputXmlAttribute(stream, kTestsuites, "name", "AllTests"); *stream << ">\n"; for (int i = 0; i < unit_test.total_test_suite_count(); ++i) { if (unit_test.GetTestSuite(i)->reportable_test_count() > 0) PrintXmlTestSuite(stream, *unit_test.GetTestSuite(i)); } // If there was a test failure outside of one of the test suites (like in a // test environment) include that in the output. if (unit_test.ad_hoc_test_result().Failed()) { OutputXmlTestSuiteForTestResult(stream, unit_test.ad_hoc_test_result()); } *stream << "\n"; } void XmlUnitTestResultPrinter::PrintXmlTestsList( std::ostream* stream, const std::vector& test_suites) { const std::string kTestsuites = "testsuites"; *stream << "\n"; *stream << "<" << kTestsuites; int total_tests = 0; for (auto test_suite : test_suites) { total_tests += test_suite->total_test_count(); } OutputXmlAttribute(stream, kTestsuites, "tests", StreamableToString(total_tests)); OutputXmlAttribute(stream, kTestsuites, "name", "AllTests"); *stream << ">\n"; for (auto test_suite : test_suites) { PrintXmlTestSuite(stream, *test_suite); } *stream << "\n"; } // Produces a string representing the test properties in a result as space // delimited XML attributes based on the property key="value" pairs. std::string XmlUnitTestResultPrinter::TestPropertiesAsXmlAttributes( const TestResult& result) { Message attributes; for (int i = 0; i < result.test_property_count(); ++i) { const TestProperty& property = result.GetTestProperty(i); attributes << " " << property.key() << "=" << "\"" << EscapeXmlAttribute(property.value()) << "\""; } return attributes.GetString(); } void XmlUnitTestResultPrinter::OutputXmlTestProperties( std::ostream* stream, const TestResult& result) { const std::string kProperties = "properties"; const std::string kProperty = "property"; if (result.test_property_count() <= 0) { return; } *stream << "<" << kProperties << ">\n"; for (int i = 0; i < result.test_property_count(); ++i) { const TestProperty& property = result.GetTestProperty(i); *stream << "<" << kProperty; *stream << " name=\"" << EscapeXmlAttribute(property.key()) << "\""; *stream << " value=\"" << EscapeXmlAttribute(property.value()) << "\""; *stream << "/>\n"; } *stream << "\n"; } // End XmlUnitTestResultPrinter // This class generates an JSON output file. class JsonUnitTestResultPrinter : public EmptyTestEventListener { public: explicit JsonUnitTestResultPrinter(const char* output_file); void OnTestIterationEnd(const UnitTest& unit_test, int iteration) override; // Prints an JSON summary of all unit tests. static void PrintJsonTestList(::std::ostream* stream, const std::vector& test_suites); private: // Returns an JSON-escaped copy of the input string str. static std::string EscapeJson(const std::string& str); //// Verifies that the given attribute belongs to the given element and //// streams the attribute as JSON. static void OutputJsonKey(std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value, const std::string& indent, bool comma = true); static void OutputJsonKey(std::ostream* stream, const std::string& element_name, const std::string& name, int value, const std::string& indent, bool comma = true); // Streams a test suite JSON stanza containing the given test result. // // Requires: result.Failed() static void OutputJsonTestSuiteForTestResult(::std::ostream* stream, const TestResult& result); // Streams a JSON representation of a TestResult object. static void OutputJsonTestResult(::std::ostream* stream, const TestResult& result); // Streams a JSON representation of a TestInfo object. static void OutputJsonTestInfo(::std::ostream* stream, const char* test_suite_name, const TestInfo& test_info); // Prints a JSON representation of a TestSuite object static void PrintJsonTestSuite(::std::ostream* stream, const TestSuite& test_suite); // Prints a JSON summary of unit_test to output stream out. static void PrintJsonUnitTest(::std::ostream* stream, const UnitTest& unit_test); // Produces a string representing the test properties in a result as // a JSON dictionary. static std::string TestPropertiesAsJson(const TestResult& result, const std::string& indent); // The output file. const std::string output_file_; GTEST_DISALLOW_COPY_AND_ASSIGN_(JsonUnitTestResultPrinter); }; // Creates a new JsonUnitTestResultPrinter. JsonUnitTestResultPrinter::JsonUnitTestResultPrinter(const char* output_file) : output_file_(output_file) { if (output_file_.empty()) { GTEST_LOG_(FATAL) << "JSON output file may not be null"; } } void JsonUnitTestResultPrinter::OnTestIterationEnd(const UnitTest& unit_test, int /*iteration*/) { FILE* jsonout = OpenFileForWriting(output_file_); std::stringstream stream; PrintJsonUnitTest(&stream, unit_test); fprintf(jsonout, "%s", StringStreamToString(&stream).c_str()); fclose(jsonout); } // Returns an JSON-escaped copy of the input string str. std::string JsonUnitTestResultPrinter::EscapeJson(const std::string& str) { Message m; for (size_t i = 0; i < str.size(); ++i) { const char ch = str[i]; switch (ch) { case '\\': case '"': case '/': m << '\\' << ch; break; case '\b': m << "\\b"; break; case '\t': m << "\\t"; break; case '\n': m << "\\n"; break; case '\f': m << "\\f"; break; case '\r': m << "\\r"; break; default: if (ch < ' ') { m << "\\u00" << String::FormatByte(static_cast(ch)); } else { m << ch; } break; } } return m.GetString(); } // The following routines generate an JSON representation of a UnitTest // object. // Formats the given time in milliseconds as seconds. static std::string FormatTimeInMillisAsDuration(TimeInMillis ms) { ::std::stringstream ss; ss << (static_cast(ms) * 1e-3) << "s"; return ss.str(); } // Converts the given epoch time in milliseconds to a date string in the // RFC3339 format, without the timezone information. static std::string FormatEpochTimeInMillisAsRFC3339(TimeInMillis ms) { struct tm time_struct; if (!PortableLocaltime(static_cast(ms / 1000), &time_struct)) return ""; // YYYY-MM-DDThh:mm:ss return StreamableToString(time_struct.tm_year + 1900) + "-" + String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" + String::FormatIntWidth2(time_struct.tm_mday) + "T" + String::FormatIntWidth2(time_struct.tm_hour) + ":" + String::FormatIntWidth2(time_struct.tm_min) + ":" + String::FormatIntWidth2(time_struct.tm_sec) + "Z"; } static inline std::string Indent(size_t width) { return std::string(width, ' '); } void JsonUnitTestResultPrinter::OutputJsonKey( std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value, const std::string& indent, bool comma) { const std::vector& allowed_names = GetReservedOutputAttributesForElement(element_name); GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) != allowed_names.end()) << "Key \"" << name << "\" is not allowed for value \"" << element_name << "\"."; *stream << indent << "\"" << name << "\": \"" << EscapeJson(value) << "\""; if (comma) *stream << ",\n"; } void JsonUnitTestResultPrinter::OutputJsonKey( std::ostream* stream, const std::string& element_name, const std::string& name, int value, const std::string& indent, bool comma) { const std::vector& allowed_names = GetReservedOutputAttributesForElement(element_name); GTEST_CHECK_(std::find(allowed_names.begin(), allowed_names.end(), name) != allowed_names.end()) << "Key \"" << name << "\" is not allowed for value \"" << element_name << "\"."; *stream << indent << "\"" << name << "\": " << StreamableToString(value); if (comma) *stream << ",\n"; } // Streams a test suite JSON stanza containing the given test result. void JsonUnitTestResultPrinter::OutputJsonTestSuiteForTestResult( ::std::ostream* stream, const TestResult& result) { // Output the boilerplate for a new test suite. *stream << Indent(4) << "{\n"; OutputJsonKey(stream, "testsuite", "name", "NonTestSuiteFailure", Indent(6)); OutputJsonKey(stream, "testsuite", "tests", 1, Indent(6)); if (!GTEST_FLAG(list_tests)) { OutputJsonKey(stream, "testsuite", "failures", 1, Indent(6)); OutputJsonKey(stream, "testsuite", "disabled", 0, Indent(6)); OutputJsonKey(stream, "testsuite", "skipped", 0, Indent(6)); OutputJsonKey(stream, "testsuite", "errors", 0, Indent(6)); OutputJsonKey(stream, "testsuite", "time", FormatTimeInMillisAsDuration(result.elapsed_time()), Indent(6)); OutputJsonKey(stream, "testsuite", "timestamp", FormatEpochTimeInMillisAsRFC3339(result.start_timestamp()), Indent(6)); } *stream << Indent(6) << "\"testsuite\": [\n"; // Output the boilerplate for a new test case. *stream << Indent(8) << "{\n"; OutputJsonKey(stream, "testcase", "name", "", Indent(10)); OutputJsonKey(stream, "testcase", "status", "RUN", Indent(10)); OutputJsonKey(stream, "testcase", "result", "COMPLETED", Indent(10)); OutputJsonKey(stream, "testcase", "timestamp", FormatEpochTimeInMillisAsRFC3339(result.start_timestamp()), Indent(10)); OutputJsonKey(stream, "testcase", "time", FormatTimeInMillisAsDuration(result.elapsed_time()), Indent(10)); OutputJsonKey(stream, "testcase", "classname", "", Indent(10), false); *stream << TestPropertiesAsJson(result, Indent(10)); // Output the actual test result. OutputJsonTestResult(stream, result); // Finish the test suite. *stream << "\n" << Indent(6) << "]\n" << Indent(4) << "}"; } // Prints a JSON representation of a TestInfo object. void JsonUnitTestResultPrinter::OutputJsonTestInfo(::std::ostream* stream, const char* test_suite_name, const TestInfo& test_info) { const TestResult& result = *test_info.result(); const std::string kTestsuite = "testcase"; const std::string kIndent = Indent(10); *stream << Indent(8) << "{\n"; OutputJsonKey(stream, kTestsuite, "name", test_info.name(), kIndent); if (test_info.value_param() != nullptr) { OutputJsonKey(stream, kTestsuite, "value_param", test_info.value_param(), kIndent); } if (test_info.type_param() != nullptr) { OutputJsonKey(stream, kTestsuite, "type_param", test_info.type_param(), kIndent); } if (GTEST_FLAG(list_tests)) { OutputJsonKey(stream, kTestsuite, "file", test_info.file(), kIndent); OutputJsonKey(stream, kTestsuite, "line", test_info.line(), kIndent, false); *stream << "\n" << Indent(8) << "}"; return; } OutputJsonKey(stream, kTestsuite, "status", test_info.should_run() ? "RUN" : "NOTRUN", kIndent); OutputJsonKey(stream, kTestsuite, "result", test_info.should_run() ? (result.Skipped() ? "SKIPPED" : "COMPLETED") : "SUPPRESSED", kIndent); OutputJsonKey(stream, kTestsuite, "timestamp", FormatEpochTimeInMillisAsRFC3339(result.start_timestamp()), kIndent); OutputJsonKey(stream, kTestsuite, "time", FormatTimeInMillisAsDuration(result.elapsed_time()), kIndent); OutputJsonKey(stream, kTestsuite, "classname", test_suite_name, kIndent, false); *stream << TestPropertiesAsJson(result, kIndent); OutputJsonTestResult(stream, result); } void JsonUnitTestResultPrinter::OutputJsonTestResult(::std::ostream* stream, const TestResult& result) { const std::string kIndent = Indent(10); int failures = 0; for (int i = 0; i < result.total_part_count(); ++i) { const TestPartResult& part = result.GetTestPartResult(i); if (part.failed()) { *stream << ",\n"; if (++failures == 1) { *stream << kIndent << "\"" << "failures" << "\": [\n"; } const std::string location = internal::FormatCompilerIndependentFileLocation(part.file_name(), part.line_number()); const std::string message = EscapeJson(location + "\n" + part.message()); *stream << kIndent << " {\n" << kIndent << " \"failure\": \"" << message << "\",\n" << kIndent << " \"type\": \"\"\n" << kIndent << " }"; } } if (failures > 0) *stream << "\n" << kIndent << "]"; *stream << "\n" << Indent(8) << "}"; } // Prints an JSON representation of a TestSuite object void JsonUnitTestResultPrinter::PrintJsonTestSuite( std::ostream* stream, const TestSuite& test_suite) { const std::string kTestsuite = "testsuite"; const std::string kIndent = Indent(6); *stream << Indent(4) << "{\n"; OutputJsonKey(stream, kTestsuite, "name", test_suite.name(), kIndent); OutputJsonKey(stream, kTestsuite, "tests", test_suite.reportable_test_count(), kIndent); if (!GTEST_FLAG(list_tests)) { OutputJsonKey(stream, kTestsuite, "failures", test_suite.failed_test_count(), kIndent); OutputJsonKey(stream, kTestsuite, "disabled", test_suite.reportable_disabled_test_count(), kIndent); OutputJsonKey(stream, kTestsuite, "errors", 0, kIndent); OutputJsonKey( stream, kTestsuite, "timestamp", FormatEpochTimeInMillisAsRFC3339(test_suite.start_timestamp()), kIndent); OutputJsonKey(stream, kTestsuite, "time", FormatTimeInMillisAsDuration(test_suite.elapsed_time()), kIndent, false); *stream << TestPropertiesAsJson(test_suite.ad_hoc_test_result(), kIndent) << ",\n"; } *stream << kIndent << "\"" << kTestsuite << "\": [\n"; bool comma = false; for (int i = 0; i < test_suite.total_test_count(); ++i) { if (test_suite.GetTestInfo(i)->is_reportable()) { if (comma) { *stream << ",\n"; } else { comma = true; } OutputJsonTestInfo(stream, test_suite.name(), *test_suite.GetTestInfo(i)); } } *stream << "\n" << kIndent << "]\n" << Indent(4) << "}"; } // Prints a JSON summary of unit_test to output stream out. void JsonUnitTestResultPrinter::PrintJsonUnitTest(std::ostream* stream, const UnitTest& unit_test) { const std::string kTestsuites = "testsuites"; const std::string kIndent = Indent(2); *stream << "{\n"; OutputJsonKey(stream, kTestsuites, "tests", unit_test.reportable_test_count(), kIndent); OutputJsonKey(stream, kTestsuites, "failures", unit_test.failed_test_count(), kIndent); OutputJsonKey(stream, kTestsuites, "disabled", unit_test.reportable_disabled_test_count(), kIndent); OutputJsonKey(stream, kTestsuites, "errors", 0, kIndent); if (GTEST_FLAG(shuffle)) { OutputJsonKey(stream, kTestsuites, "random_seed", unit_test.random_seed(), kIndent); } OutputJsonKey(stream, kTestsuites, "timestamp", FormatEpochTimeInMillisAsRFC3339(unit_test.start_timestamp()), kIndent); OutputJsonKey(stream, kTestsuites, "time", FormatTimeInMillisAsDuration(unit_test.elapsed_time()), kIndent, false); *stream << TestPropertiesAsJson(unit_test.ad_hoc_test_result(), kIndent) << ",\n"; OutputJsonKey(stream, kTestsuites, "name", "AllTests", kIndent); *stream << kIndent << "\"" << kTestsuites << "\": [\n"; bool comma = false; for (int i = 0; i < unit_test.total_test_suite_count(); ++i) { if (unit_test.GetTestSuite(i)->reportable_test_count() > 0) { if (comma) { *stream << ",\n"; } else { comma = true; } PrintJsonTestSuite(stream, *unit_test.GetTestSuite(i)); } } // If there was a test failure outside of one of the test suites (like in a // test environment) include that in the output. if (unit_test.ad_hoc_test_result().Failed()) { OutputJsonTestSuiteForTestResult(stream, unit_test.ad_hoc_test_result()); } *stream << "\n" << kIndent << "]\n" << "}\n"; } void JsonUnitTestResultPrinter::PrintJsonTestList( std::ostream* stream, const std::vector& test_suites) { const std::string kTestsuites = "testsuites"; const std::string kIndent = Indent(2); *stream << "{\n"; int total_tests = 0; for (auto test_suite : test_suites) { total_tests += test_suite->total_test_count(); } OutputJsonKey(stream, kTestsuites, "tests", total_tests, kIndent); OutputJsonKey(stream, kTestsuites, "name", "AllTests", kIndent); *stream << kIndent << "\"" << kTestsuites << "\": [\n"; for (size_t i = 0; i < test_suites.size(); ++i) { if (i != 0) { *stream << ",\n"; } PrintJsonTestSuite(stream, *test_suites[i]); } *stream << "\n" << kIndent << "]\n" << "}\n"; } // Produces a string representing the test properties in a result as // a JSON dictionary. std::string JsonUnitTestResultPrinter::TestPropertiesAsJson( const TestResult& result, const std::string& indent) { Message attributes; for (int i = 0; i < result.test_property_count(); ++i) { const TestProperty& property = result.GetTestProperty(i); attributes << ",\n" << indent << "\"" << property.key() << "\": " << "\"" << EscapeJson(property.value()) << "\""; } return attributes.GetString(); } // End JsonUnitTestResultPrinter #if GTEST_CAN_STREAM_RESULTS_ // Checks if str contains '=', '&', '%' or '\n' characters. If yes, // replaces them by "%xx" where xx is their hexadecimal value. For // example, replaces "=" with "%3D". This algorithm is O(strlen(str)) // in both time and space -- important as the input str may contain an // arbitrarily long test failure message and stack trace. std::string StreamingListener::UrlEncode(const char* str) { std::string result; result.reserve(strlen(str) + 1); for (char ch = *str; ch != '\0'; ch = *++str) { switch (ch) { case '%': case '=': case '&': case '\n': result.append("%" + String::FormatByte(static_cast(ch))); break; default: result.push_back(ch); break; } } return result; } void StreamingListener::SocketWriter::MakeConnection() { GTEST_CHECK_(sockfd_ == -1) << "MakeConnection() can't be called when there is already a connection."; addrinfo hints; memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_UNSPEC; // To allow both IPv4 and IPv6 addresses. hints.ai_socktype = SOCK_STREAM; addrinfo* servinfo = nullptr; // Use the getaddrinfo() to get a linked list of IP addresses for // the given host name. const int error_num = getaddrinfo( host_name_.c_str(), port_num_.c_str(), &hints, &servinfo); if (error_num != 0) { GTEST_LOG_(WARNING) << "stream_result_to: getaddrinfo() failed: " << gai_strerror(error_num); } // Loop through all the results and connect to the first we can. for (addrinfo* cur_addr = servinfo; sockfd_ == -1 && cur_addr != nullptr; cur_addr = cur_addr->ai_next) { sockfd_ = socket( cur_addr->ai_family, cur_addr->ai_socktype, cur_addr->ai_protocol); if (sockfd_ != -1) { // Connect the client socket to the server socket. if (connect(sockfd_, cur_addr->ai_addr, cur_addr->ai_addrlen) == -1) { close(sockfd_); sockfd_ = -1; } } } freeaddrinfo(servinfo); // all done with this structure if (sockfd_ == -1) { GTEST_LOG_(WARNING) << "stream_result_to: failed to connect to " << host_name_ << ":" << port_num_; } } // End of class Streaming Listener #endif // GTEST_CAN_STREAM_RESULTS__ // class OsStackTraceGetter const char* const OsStackTraceGetterInterface::kElidedFramesMarker = "... " GTEST_NAME_ " internal frames ..."; std::string OsStackTraceGetter::CurrentStackTrace(int max_depth, int skip_count) GTEST_LOCK_EXCLUDED_(mutex_) { #if GTEST_HAS_ABSL std::string result; if (max_depth <= 0) { return result; } max_depth = std::min(max_depth, kMaxStackTraceDepth); std::vector raw_stack(max_depth); // Skips the frames requested by the caller, plus this function. const int raw_stack_size = absl::GetStackTrace(&raw_stack[0], max_depth, skip_count + 1); void* caller_frame = nullptr; { MutexLock lock(&mutex_); caller_frame = caller_frame_; } for (int i = 0; i < raw_stack_size; ++i) { if (raw_stack[i] == caller_frame && !GTEST_FLAG(show_internal_stack_frames)) { // Add a marker to the trace and stop adding frames. absl::StrAppend(&result, kElidedFramesMarker, "\n"); break; } char tmp[1024]; const char* symbol = "(unknown)"; if (absl::Symbolize(raw_stack[i], tmp, sizeof(tmp))) { symbol = tmp; } char line[1024]; snprintf(line, sizeof(line), " %p: %s\n", raw_stack[i], symbol); result += line; } return result; #else // !GTEST_HAS_ABSL static_cast(max_depth); static_cast(skip_count); return ""; #endif // GTEST_HAS_ABSL } void OsStackTraceGetter::UponLeavingGTest() GTEST_LOCK_EXCLUDED_(mutex_) { #if GTEST_HAS_ABSL void* caller_frame = nullptr; if (absl::GetStackTrace(&caller_frame, 1, 3) <= 0) { caller_frame = nullptr; } MutexLock lock(&mutex_); caller_frame_ = caller_frame; #endif // GTEST_HAS_ABSL } // A helper class that creates the premature-exit file in its // constructor and deletes the file in its destructor. class ScopedPrematureExitFile { public: explicit ScopedPrematureExitFile(const char* premature_exit_filepath) : premature_exit_filepath_(premature_exit_filepath ? premature_exit_filepath : "") { // If a path to the premature-exit file is specified... if (!premature_exit_filepath_.empty()) { // create the file with a single "0" character in it. I/O // errors are ignored as there's nothing better we can do and we // don't want to fail the test because of this. FILE* pfile = posix::FOpen(premature_exit_filepath, "w"); fwrite("0", 1, 1, pfile); fclose(pfile); } } ~ScopedPrematureExitFile() { #if !defined GTEST_OS_ESP8266 if (!premature_exit_filepath_.empty()) { int retval = remove(premature_exit_filepath_.c_str()); if (retval) { GTEST_LOG_(ERROR) << "Failed to remove premature exit filepath \"" << premature_exit_filepath_ << "\" with error " << retval; } } #endif } private: const std::string premature_exit_filepath_; GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedPrematureExitFile); }; } // namespace internal // class TestEventListeners TestEventListeners::TestEventListeners() : repeater_(new internal::TestEventRepeater()), default_result_printer_(nullptr), default_xml_generator_(nullptr) {} TestEventListeners::~TestEventListeners() { delete repeater_; } // Returns the standard listener responsible for the default console // output. Can be removed from the listeners list to shut down default // console output. Note that removing this object from the listener list // with Release transfers its ownership to the user. void TestEventListeners::Append(TestEventListener* listener) { repeater_->Append(listener); } // Removes the given event listener from the list and returns it. It then // becomes the caller's responsibility to delete the listener. Returns // NULL if the listener is not found in the list. TestEventListener* TestEventListeners::Release(TestEventListener* listener) { if (listener == default_result_printer_) default_result_printer_ = nullptr; else if (listener == default_xml_generator_) default_xml_generator_ = nullptr; return repeater_->Release(listener); } // Returns repeater that broadcasts the TestEventListener events to all // subscribers. TestEventListener* TestEventListeners::repeater() { return repeater_; } // Sets the default_result_printer attribute to the provided listener. // The listener is also added to the listener list and previous // default_result_printer is removed from it and deleted. The listener can // also be NULL in which case it will not be added to the list. Does // nothing if the previous and the current listener objects are the same. void TestEventListeners::SetDefaultResultPrinter(TestEventListener* listener) { if (default_result_printer_ != listener) { // It is an error to pass this method a listener that is already in the // list. delete Release(default_result_printer_); default_result_printer_ = listener; if (listener != nullptr) Append(listener); } } // Sets the default_xml_generator attribute to the provided listener. The // listener is also added to the listener list and previous // default_xml_generator is removed from it and deleted. The listener can // also be NULL in which case it will not be added to the list. Does // nothing if the previous and the current listener objects are the same. void TestEventListeners::SetDefaultXmlGenerator(TestEventListener* listener) { if (default_xml_generator_ != listener) { // It is an error to pass this method a listener that is already in the // list. delete Release(default_xml_generator_); default_xml_generator_ = listener; if (listener != nullptr) Append(listener); } } // Controls whether events will be forwarded by the repeater to the // listeners in the list. bool TestEventListeners::EventForwardingEnabled() const { return repeater_->forwarding_enabled(); } void TestEventListeners::SuppressEventForwarding() { repeater_->set_forwarding_enabled(false); } // class UnitTest // Gets the singleton UnitTest object. The first time this method is // called, a UnitTest object is constructed and returned. Consecutive // calls will return the same object. // // We don't protect this under mutex_ as a user is not supposed to // call this before main() starts, from which point on the return // value will never change. UnitTest* UnitTest::GetInstance() { // CodeGear C++Builder insists on a public destructor for the // default implementation. Use this implementation to keep good OO // design with private destructor. #if defined(__BORLANDC__) static UnitTest* const instance = new UnitTest; return instance; #else static UnitTest instance; return &instance; #endif // defined(__BORLANDC__) } // Gets the number of successful test suites. int UnitTest::successful_test_suite_count() const { return impl()->successful_test_suite_count(); } // Gets the number of failed test suites. int UnitTest::failed_test_suite_count() const { return impl()->failed_test_suite_count(); } // Gets the number of all test suites. int UnitTest::total_test_suite_count() const { return impl()->total_test_suite_count(); } // Gets the number of all test suites that contain at least one test // that should run. int UnitTest::test_suite_to_run_count() const { return impl()->test_suite_to_run_count(); } // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ int UnitTest::successful_test_case_count() const { return impl()->successful_test_suite_count(); } int UnitTest::failed_test_case_count() const { return impl()->failed_test_suite_count(); } int UnitTest::total_test_case_count() const { return impl()->total_test_suite_count(); } int UnitTest::test_case_to_run_count() const { return impl()->test_suite_to_run_count(); } #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Gets the number of successful tests. int UnitTest::successful_test_count() const { return impl()->successful_test_count(); } // Gets the number of skipped tests. int UnitTest::skipped_test_count() const { return impl()->skipped_test_count(); } // Gets the number of failed tests. int UnitTest::failed_test_count() const { return impl()->failed_test_count(); } // Gets the number of disabled tests that will be reported in the XML report. int UnitTest::reportable_disabled_test_count() const { return impl()->reportable_disabled_test_count(); } // Gets the number of disabled tests. int UnitTest::disabled_test_count() const { return impl()->disabled_test_count(); } // Gets the number of tests to be printed in the XML report. int UnitTest::reportable_test_count() const { return impl()->reportable_test_count(); } // Gets the number of all tests. int UnitTest::total_test_count() const { return impl()->total_test_count(); } // Gets the number of tests that should run. int UnitTest::test_to_run_count() const { return impl()->test_to_run_count(); } // Gets the time of the test program start, in ms from the start of the // UNIX epoch. internal::TimeInMillis UnitTest::start_timestamp() const { return impl()->start_timestamp(); } // Gets the elapsed time, in milliseconds. internal::TimeInMillis UnitTest::elapsed_time() const { return impl()->elapsed_time(); } // Returns true if and only if the unit test passed (i.e. all test suites // passed). bool UnitTest::Passed() const { return impl()->Passed(); } // Returns true if and only if the unit test failed (i.e. some test suite // failed or something outside of all tests failed). bool UnitTest::Failed() const { return impl()->Failed(); } // Gets the i-th test suite among all the test suites. i can range from 0 to // total_test_suite_count() - 1. If i is not in that range, returns NULL. const TestSuite* UnitTest::GetTestSuite(int i) const { return impl()->GetTestSuite(i); } // Legacy API is deprecated but still available #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ const TestCase* UnitTest::GetTestCase(int i) const { return impl()->GetTestCase(i); } #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_ // Returns the TestResult containing information on test failures and // properties logged outside of individual test suites. const TestResult& UnitTest::ad_hoc_test_result() const { return *impl()->ad_hoc_test_result(); } // Gets the i-th test suite among all the test suites. i can range from 0 to // total_test_suite_count() - 1. If i is not in that range, returns NULL. TestSuite* UnitTest::GetMutableTestSuite(int i) { return impl()->GetMutableSuiteCase(i); } // Returns the list of event listeners that can be used to track events // inside Google Test. TestEventListeners& UnitTest::listeners() { return *impl()->listeners(); } // Registers and returns a global test environment. When a test // program is run, all global test environments will be set-up in the // order they were registered. After all tests in the program have // finished, all global test environments will be torn-down in the // *reverse* order they were registered. // // The UnitTest object takes ownership of the given environment. // // We don't protect this under mutex_, as we only support calling it // from the main thread. Environment* UnitTest::AddEnvironment(Environment* env) { if (env == nullptr) { return nullptr; } impl_->environments().push_back(env); return env; } // Adds a TestPartResult to the current TestResult object. All Google Test // assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc) eventually call // this to report their results. The user code should use the // assertion macros instead of calling this directly. void UnitTest::AddTestPartResult( TestPartResult::Type result_type, const char* file_name, int line_number, const std::string& message, const std::string& os_stack_trace) GTEST_LOCK_EXCLUDED_(mutex_) { Message msg; msg << message; internal::MutexLock lock(&mutex_); if (impl_->gtest_trace_stack().size() > 0) { msg << "\n" << GTEST_NAME_ << " trace:"; for (size_t i = impl_->gtest_trace_stack().size(); i > 0; --i) { const internal::TraceInfo& trace = impl_->gtest_trace_stack()[i - 1]; msg << "\n" << internal::FormatFileLocation(trace.file, trace.line) << " " << trace.message; } } if (os_stack_trace.c_str() != nullptr && !os_stack_trace.empty()) { msg << internal::kStackTraceMarker << os_stack_trace; } const TestPartResult result = TestPartResult( result_type, file_name, line_number, msg.GetString().c_str()); impl_->GetTestPartResultReporterForCurrentThread()-> ReportTestPartResult(result); if (result_type != TestPartResult::kSuccess && result_type != TestPartResult::kSkip) { // gtest_break_on_failure takes precedence over // gtest_throw_on_failure. This allows a user to set the latter // in the code (perhaps in order to use Google Test assertions // with another testing framework) and specify the former on the // command line for debugging. if (GTEST_FLAG(break_on_failure)) { #if GTEST_OS_WINDOWS && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT // Using DebugBreak on Windows allows gtest to still break into a debugger // when a failure happens and both the --gtest_break_on_failure and // the --gtest_catch_exceptions flags are specified. DebugBreak(); #elif (!defined(__native_client__)) && \ ((defined(__clang__) || defined(__GNUC__)) && \ (defined(__x86_64__) || defined(__i386__))) // with clang/gcc we can achieve the same effect on x86 by invoking int3 asm("int3"); #else // Dereference nullptr through a volatile pointer to prevent the compiler // from removing. We use this rather than abort() or __builtin_trap() for // portability: some debuggers don't correctly trap abort(). *static_cast(nullptr) = 1; #endif // GTEST_OS_WINDOWS } else if (GTEST_FLAG(throw_on_failure)) { #if GTEST_HAS_EXCEPTIONS throw internal::GoogleTestFailureException(result); #else // We cannot call abort() as it generates a pop-up in debug mode // that cannot be suppressed in VC 7.1 or below. exit(1); #endif } } } // Adds a TestProperty to the current TestResult object when invoked from // inside a test, to current TestSuite's ad_hoc_test_result_ when invoked // from SetUpTestSuite or TearDownTestSuite, or to the global property set // when invoked elsewhere. If the result already contains a property with // the same key, the value will be updated. void UnitTest::RecordProperty(const std::string& key, const std::string& value) { impl_->RecordProperty(TestProperty(key, value)); } // Runs all tests in this UnitTest object and prints the result. // Returns 0 if successful, or 1 otherwise. // // We don't protect this under mutex_, as we only support calling it // from the main thread. int UnitTest::Run() { const bool in_death_test_child_process = internal::GTEST_FLAG(internal_run_death_test).length() > 0; // Google Test implements this protocol for catching that a test // program exits before returning control to Google Test: // // 1. Upon start, Google Test creates a file whose absolute path // is specified by the environment variable // TEST_PREMATURE_EXIT_FILE. // 2. When Google Test has finished its work, it deletes the file. // // This allows a test runner to set TEST_PREMATURE_EXIT_FILE before // running a Google-Test-based test program and check the existence // of the file at the end of the test execution to see if it has // exited prematurely. // If we are in the child process of a death test, don't // create/delete the premature exit file, as doing so is unnecessary // and will confuse the parent process. Otherwise, create/delete // the file upon entering/leaving this function. If the program // somehow exits before this function has a chance to return, the // premature-exit file will be left undeleted, causing a test runner // that understands the premature-exit-file protocol to report the // test as having failed. const internal::ScopedPrematureExitFile premature_exit_file( in_death_test_child_process ? nullptr : internal::posix::GetEnv("TEST_PREMATURE_EXIT_FILE")); // Captures the value of GTEST_FLAG(catch_exceptions). This value will be // used for the duration of the program. impl()->set_catch_exceptions(GTEST_FLAG(catch_exceptions)); #if GTEST_OS_WINDOWS // Either the user wants Google Test to catch exceptions thrown by the // tests or this is executing in the context of death test child // process. In either case the user does not want to see pop-up dialogs // about crashes - they are expected. if (impl()->catch_exceptions() || in_death_test_child_process) { # if !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_WINDOWS_PHONE && !GTEST_OS_WINDOWS_RT // SetErrorMode doesn't exist on CE. SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT | SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX); # endif // !GTEST_OS_WINDOWS_MOBILE # if (defined(_MSC_VER) || GTEST_OS_WINDOWS_MINGW) && !GTEST_OS_WINDOWS_MOBILE // Death test children can be terminated with _abort(). On Windows, // _abort() can show a dialog with a warning message. This forces the // abort message to go to stderr instead. _set_error_mode(_OUT_TO_STDERR); # endif # if defined(_MSC_VER) && !GTEST_OS_WINDOWS_MOBILE // In the debug version, Visual Studio pops up a separate dialog // offering a choice to debug the aborted program. We need to suppress // this dialog or it will pop up for every EXPECT/ASSERT_DEATH statement // executed. Google Test will notify the user of any unexpected // failure via stderr. if (!GTEST_FLAG(break_on_failure)) _set_abort_behavior( 0x0, // Clear the following flags: _WRITE_ABORT_MSG | _CALL_REPORTFAULT); // pop-up window, core dump. // In debug mode, the Windows CRT can crash with an assertion over invalid // input (e.g. passing an invalid file descriptor). The default handling // for these assertions is to pop up a dialog and wait for user input. // Instead ask the CRT to dump such assertions to stderr non-interactively. if (!IsDebuggerPresent()) { (void)_CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG); (void)_CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR); } # endif } #endif // GTEST_OS_WINDOWS return internal::HandleExceptionsInMethodIfSupported( impl(), &internal::UnitTestImpl::RunAllTests, "auxiliary test code (environments or event listeners)") ? 0 : 1; } // Returns the working directory when the first TEST() or TEST_F() was // executed. const char* UnitTest::original_working_dir() const { return impl_->original_working_dir_.c_str(); } // Returns the TestSuite object for the test that's currently running, // or NULL if no test is running. const TestSuite* UnitTest::current_test_suite() const GTEST_LOCK_EXCLUDED_(mutex_) { internal::MutexLock lock(&mutex_); return impl_->current_test_suite(); } // Legacy API is still available but deprecated #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_ const TestCase* UnitTest::current_test_case() const GTEST_LOCK_EXCLUDED_(mutex_) { internal::MutexLock lock(&mutex_); return impl_->current_test_suite(); } #endif // Returns the TestInfo object for the test that's currently running, // or NULL if no test is running. const TestInfo* UnitTest::current_test_info() const GTEST_LOCK_EXCLUDED_(mutex_) { internal::MutexLock lock(&mutex_); return impl_->current_test_info(); } // Returns the random seed used at the start of the current test run. int UnitTest::random_seed() const { return impl_->random_seed(); } // Returns ParameterizedTestSuiteRegistry object used to keep track of // value-parameterized tests and instantiate and register them. internal::ParameterizedTestSuiteRegistry& UnitTest::parameterized_test_registry() GTEST_LOCK_EXCLUDED_(mutex_) { return impl_->parameterized_test_registry(); } // Creates an empty UnitTest. UnitTest::UnitTest() { impl_ = new internal::UnitTestImpl(this); } // Destructor of UnitTest. UnitTest::~UnitTest() { delete impl_; } // Pushes a trace defined by SCOPED_TRACE() on to the per-thread // Google Test trace stack. void UnitTest::PushGTestTrace(const internal::TraceInfo& trace) GTEST_LOCK_EXCLUDED_(mutex_) { internal::MutexLock lock(&mutex_); impl_->gtest_trace_stack().push_back(trace); } // Pops a trace from the per-thread Google Test trace stack. void UnitTest::PopGTestTrace() GTEST_LOCK_EXCLUDED_(mutex_) { internal::MutexLock lock(&mutex_); impl_->gtest_trace_stack().pop_back(); } namespace internal { UnitTestImpl::UnitTestImpl(UnitTest* parent) : parent_(parent), GTEST_DISABLE_MSC_WARNINGS_PUSH_(4355 /* using this in initializer */) default_global_test_part_result_reporter_(this), default_per_thread_test_part_result_reporter_(this), GTEST_DISABLE_MSC_WARNINGS_POP_() global_test_part_result_repoter_( &default_global_test_part_result_reporter_), per_thread_test_part_result_reporter_( &default_per_thread_test_part_result_reporter_), parameterized_test_registry_(), parameterized_tests_registered_(false), last_death_test_suite_(-1), current_test_suite_(nullptr), current_test_info_(nullptr), ad_hoc_test_result_(), os_stack_trace_getter_(nullptr), post_flag_parse_init_performed_(false), random_seed_(0), // Will be overridden by the flag before first use. random_(0), // Will be reseeded before first use. start_timestamp_(0), elapsed_time_(0), #if GTEST_HAS_DEATH_TEST death_test_factory_(new DefaultDeathTestFactory), #endif // Will be overridden by the flag before first use. catch_exceptions_(false) { listeners()->SetDefaultResultPrinter(new PrettyUnitTestResultPrinter); } UnitTestImpl::~UnitTestImpl() { // Deletes every TestSuite. ForEach(test_suites_, internal::Delete); // Deletes every Environment. ForEach(environments_, internal::Delete); delete os_stack_trace_getter_; } // Adds a TestProperty to the current TestResult object when invoked in a // context of a test, to current test suite's ad_hoc_test_result when invoke // from SetUpTestSuite/TearDownTestSuite, or to the global property set // otherwise. If the result already contains a property with the same key, // the value will be updated. void UnitTestImpl::RecordProperty(const TestProperty& test_property) { std::string xml_element; TestResult* test_result; // TestResult appropriate for property recording. if (current_test_info_ != nullptr) { xml_element = "testcase"; test_result = &(current_test_info_->result_); } else if (current_test_suite_ != nullptr) { xml_element = "testsuite"; test_result = &(current_test_suite_->ad_hoc_test_result_); } else { xml_element = "testsuites"; test_result = &ad_hoc_test_result_; } test_result->RecordProperty(xml_element, test_property); } #if GTEST_HAS_DEATH_TEST // Disables event forwarding if the control is currently in a death test // subprocess. Must not be called before InitGoogleTest. void UnitTestImpl::SuppressTestEventsIfInSubprocess() { if (internal_run_death_test_flag_.get() != nullptr) listeners()->SuppressEventForwarding(); } #endif // GTEST_HAS_DEATH_TEST // Initializes event listeners performing XML output as specified by // UnitTestOptions. Must not be called before InitGoogleTest. void UnitTestImpl::ConfigureXmlOutput() { const std::string& output_format = UnitTestOptions::GetOutputFormat(); if (output_format == "xml") { listeners()->SetDefaultXmlGenerator(new XmlUnitTestResultPrinter( UnitTestOptions::GetAbsolutePathToOutputFile().c_str())); } else if (output_format == "json") { listeners()->SetDefaultXmlGenerator(new JsonUnitTestResultPrinter( UnitTestOptions::GetAbsolutePathToOutputFile().c_str())); } else if (output_format != "") { GTEST_LOG_(WARNING) << "WARNING: unrecognized output format \"" << output_format << "\" ignored."; } } #if GTEST_CAN_STREAM_RESULTS_ // Initializes event listeners for streaming test results in string form. // Must not be called before InitGoogleTest. void UnitTestImpl::ConfigureStreamingOutput() { const std::string& target = GTEST_FLAG(stream_result_to); if (!target.empty()) { const size_t pos = target.find(':'); if (pos != std::string::npos) { listeners()->Append(new StreamingListener(target.substr(0, pos), target.substr(pos+1))); } else { GTEST_LOG_(WARNING) << "unrecognized streaming target \"" << target << "\" ignored."; } } } #endif // GTEST_CAN_STREAM_RESULTS_ // Performs initialization dependent upon flag values obtained in // ParseGoogleTestFlagsOnly. Is called from InitGoogleTest after the call to // ParseGoogleTestFlagsOnly. In case a user neglects to call InitGoogleTest // this function is also called from RunAllTests. Since this function can be // called more than once, it has to be idempotent. void UnitTestImpl::PostFlagParsingInit() { // Ensures that this function does not execute more than once. if (!post_flag_parse_init_performed_) { post_flag_parse_init_performed_ = true; #if defined(GTEST_CUSTOM_TEST_EVENT_LISTENER_) // Register to send notifications about key process state changes. listeners()->Append(new GTEST_CUSTOM_TEST_EVENT_LISTENER_()); #endif // defined(GTEST_CUSTOM_TEST_EVENT_LISTENER_) #if GTEST_HAS_DEATH_TEST InitDeathTestSubprocessControlInfo(); SuppressTestEventsIfInSubprocess(); #endif // GTEST_HAS_DEATH_TEST // Registers parameterized tests. This makes parameterized tests // available to the UnitTest reflection API without running // RUN_ALL_TESTS. RegisterParameterizedTests(); // Configures listeners for XML output. This makes it possible for users // to shut down the default XML output before invoking RUN_ALL_TESTS. ConfigureXmlOutput(); if (GTEST_FLAG(brief)) { listeners()->SetDefaultResultPrinter(new BriefUnitTestResultPrinter); } #if GTEST_CAN_STREAM_RESULTS_ // Configures listeners for streaming test results to the specified server. ConfigureStreamingOutput(); #endif // GTEST_CAN_STREAM_RESULTS_ #if GTEST_HAS_ABSL if (GTEST_FLAG(install_failure_signal_handler)) { absl::FailureSignalHandlerOptions options; absl::InstallFailureSignalHandler(options); } #endif // GTEST_HAS_ABSL } } // A predicate that checks the name of a TestSuite against a known // value. // // This is used for implementation of the UnitTest class only. We put // it in the anonymous namespace to prevent polluting the outer // namespace. // // TestSuiteNameIs is copyable. class TestSuiteNameIs { public: // Constructor. explicit TestSuiteNameIs(const std::string& name) : name_(name) {} // Returns true if and only if the name of test_suite matches name_. bool operator()(const TestSuite* test_suite) const { return test_suite != nullptr && strcmp(test_suite->name(), name_.c_str()) == 0; } private: std::string name_; }; // Finds and returns a TestSuite with the given name. If one doesn't // exist, creates one and returns it. It's the CALLER'S // RESPONSIBILITY to ensure that this function is only called WHEN THE // TESTS ARE NOT SHUFFLED. // // Arguments: // // test_suite_name: name of the test suite // type_param: the name of the test suite's type parameter, or NULL if // this is not a typed or a type-parameterized test suite. // set_up_tc: pointer to the function that sets up the test suite // tear_down_tc: pointer to the function that tears down the test suite TestSuite* UnitTestImpl::GetTestSuite( const char* test_suite_name, const char* type_param, internal::SetUpTestSuiteFunc set_up_tc, internal::TearDownTestSuiteFunc tear_down_tc) { // Can we find a TestSuite with the given name? const auto test_suite = std::find_if(test_suites_.rbegin(), test_suites_.rend(), TestSuiteNameIs(test_suite_name)); if (test_suite != test_suites_.rend()) return *test_suite; // No. Let's create one. auto* const new_test_suite = new TestSuite(test_suite_name, type_param, set_up_tc, tear_down_tc); // Is this a death test suite? if (internal::UnitTestOptions::MatchesFilter(test_suite_name, kDeathTestSuiteFilter)) { // Yes. Inserts the test suite after the last death test suite // defined so far. This only works when the test suites haven't // been shuffled. Otherwise we may end up running a death test // after a non-death test. ++last_death_test_suite_; test_suites_.insert(test_suites_.begin() + last_death_test_suite_, new_test_suite); } else { // No. Appends to the end of the list. test_suites_.push_back(new_test_suite); } test_suite_indices_.push_back(static_cast(test_suite_indices_.size())); return new_test_suite; } // Helpers for setting up / tearing down the given environment. They // are for use in the ForEach() function. static void SetUpEnvironment(Environment* env) { env->SetUp(); } static void TearDownEnvironment(Environment* env) { env->TearDown(); } // Runs all tests in this UnitTest object, prints the result, and // returns true if all tests are successful. If any exception is // thrown during a test, the test is considered to be failed, but the // rest of the tests will still be run. // // When parameterized tests are enabled, it expands and registers // parameterized tests first in RegisterParameterizedTests(). // All other functions called from RunAllTests() may safely assume that // parameterized tests are ready to be counted and run. bool UnitTestImpl::RunAllTests() { // True if and only if Google Test is initialized before RUN_ALL_TESTS() is // called. const bool gtest_is_initialized_before_run_all_tests = GTestIsInitialized(); // Do not run any test if the --help flag was specified. if (g_help_flag) return true; // Repeats the call to the post-flag parsing initialization in case the // user didn't call InitGoogleTest. PostFlagParsingInit(); // Even if sharding is not on, test runners may want to use the // GTEST_SHARD_STATUS_FILE to query whether the test supports the sharding // protocol. internal::WriteToShardStatusFileIfNeeded(); // True if and only if we are in a subprocess for running a thread-safe-style // death test. bool in_subprocess_for_death_test = false; #if GTEST_HAS_DEATH_TEST in_subprocess_for_death_test = (internal_run_death_test_flag_.get() != nullptr); # if defined(GTEST_EXTRA_DEATH_TEST_CHILD_SETUP_) if (in_subprocess_for_death_test) { GTEST_EXTRA_DEATH_TEST_CHILD_SETUP_(); } # endif // defined(GTEST_EXTRA_DEATH_TEST_CHILD_SETUP_) #endif // GTEST_HAS_DEATH_TEST const bool should_shard = ShouldShard(kTestTotalShards, kTestShardIndex, in_subprocess_for_death_test); // Compares the full test names with the filter to decide which // tests to run. const bool has_tests_to_run = FilterTests(should_shard ? HONOR_SHARDING_PROTOCOL : IGNORE_SHARDING_PROTOCOL) > 0; // Lists the tests and exits if the --gtest_list_tests flag was specified. if (GTEST_FLAG(list_tests)) { // This must be called *after* FilterTests() has been called. ListTestsMatchingFilter(); return true; } random_seed_ = GTEST_FLAG(shuffle) ? GetRandomSeedFromFlag(GTEST_FLAG(random_seed)) : 0; // True if and only if at least one test has failed. bool failed = false; TestEventListener* repeater = listeners()->repeater(); start_timestamp_ = GetTimeInMillis(); repeater->OnTestProgramStart(*parent_); // How many times to repeat the tests? We don't want to repeat them // when we are inside the subprocess of a death test. const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); // Repeats forever if the repeat count is negative. const bool gtest_repeat_forever = repeat < 0; for (int i = 0; gtest_repeat_forever || i != repeat; i++) { // We want to preserve failures generated by ad-hoc test // assertions executed before RUN_ALL_TESTS(). ClearNonAdHocTestResult(); Timer timer; // Shuffles test suites and tests if requested. if (has_tests_to_run && GTEST_FLAG(shuffle)) { random()->Reseed(static_cast(random_seed_)); // This should be done before calling OnTestIterationStart(), // such that a test event listener can see the actual test order // in the event. ShuffleTests(); } // Tells the unit test event listeners that the tests are about to start. repeater->OnTestIterationStart(*parent_, i); // Runs each test suite if there is at least one test to run. if (has_tests_to_run) { // Sets up all environments beforehand. repeater->OnEnvironmentsSetUpStart(*parent_); ForEach(environments_, SetUpEnvironment); repeater->OnEnvironmentsSetUpEnd(*parent_); // Runs the tests only if there was no fatal failure or skip triggered // during global set-up. if (Test::IsSkipped()) { // Emit diagnostics when global set-up calls skip, as it will not be // emitted by default. TestResult& test_result = *internal::GetUnitTestImpl()->current_test_result(); for (int j = 0; j < test_result.total_part_count(); ++j) { const TestPartResult& test_part_result = test_result.GetTestPartResult(j); if (test_part_result.type() == TestPartResult::kSkip) { const std::string& result = test_part_result.message(); printf("%s\n", result.c_str()); } } fflush(stdout); } else if (!Test::HasFatalFailure()) { for (int test_index = 0; test_index < total_test_suite_count(); test_index++) { GetMutableSuiteCase(test_index)->Run(); if (GTEST_FLAG(fail_fast) && GetMutableSuiteCase(test_index)->Failed()) { for (int j = test_index + 1; j < total_test_suite_count(); j++) { GetMutableSuiteCase(j)->Skip(); } break; } } } else if (Test::HasFatalFailure()) { // If there was a fatal failure during the global setup then we know we // aren't going to run any tests. Explicitly mark all of the tests as // skipped to make this obvious in the output. for (int test_index = 0; test_index < total_test_suite_count(); test_index++) { GetMutableSuiteCase(test_index)->Skip(); } } // Tears down all environments in reverse order afterwards. repeater->OnEnvironmentsTearDownStart(*parent_); std::for_each(environments_.rbegin(), environments_.rend(), TearDownEnvironment); repeater->OnEnvironmentsTearDownEnd(*parent_); } elapsed_time_ = timer.Elapsed(); // Tells the unit test event listener that the tests have just finished. repeater->OnTestIterationEnd(*parent_, i); // Gets the result and clears it. if (!Passed()) { failed = true; } // Restores the original test order after the iteration. This // allows the user to quickly repro a failure that happens in the // N-th iteration without repeating the first (N - 1) iterations. // This is not enclosed in "if (GTEST_FLAG(shuffle)) { ... }", in // case the user somehow changes the value of the flag somewhere // (it's always safe to unshuffle the tests). UnshuffleTests(); if (GTEST_FLAG(shuffle)) { // Picks a new random seed for each iteration. random_seed_ = GetNextRandomSeed(random_seed_); } } repeater->OnTestProgramEnd(*parent_); if (!gtest_is_initialized_before_run_all_tests) { ColoredPrintf( GTestColor::kRed, "\nIMPORTANT NOTICE - DO NOT IGNORE:\n" "This test program did NOT call " GTEST_INIT_GOOGLE_TEST_NAME_ "() before calling RUN_ALL_TESTS(). This is INVALID. Soon " GTEST_NAME_ " will start to enforce the valid usage. " "Please fix it ASAP, or IT WILL START TO FAIL.\n"); // NOLINT #if GTEST_FOR_GOOGLE_ ColoredPrintf(GTestColor::kRed, "For more details, see http://wiki/Main/ValidGUnitMain.\n"); #endif // GTEST_FOR_GOOGLE_ } return !failed; } // Reads the GTEST_SHARD_STATUS_FILE environment variable, and creates the file // if the variable is present. If a file already exists at this location, this // function will write over it. If the variable is present, but the file cannot // be created, prints an error and exits. void WriteToShardStatusFileIfNeeded() { const char* const test_shard_file = posix::GetEnv(kTestShardStatusFile); if (test_shard_file != nullptr) { FILE* const file = posix::FOpen(test_shard_file, "w"); if (file == nullptr) { ColoredPrintf(GTestColor::kRed, "Could not write to the test shard status file \"%s\" " "specified by the %s environment variable.\n", test_shard_file, kTestShardStatusFile); fflush(stdout); exit(EXIT_FAILURE); } fclose(file); } } // Checks whether sharding is enabled by examining the relevant // environment variable values. If the variables are present, // but inconsistent (i.e., shard_index >= total_shards), prints // an error and exits. If in_subprocess_for_death_test, sharding is // disabled because it must only be applied to the original test // process. Otherwise, we could filter out death tests we intended to execute. bool ShouldShard(const char* total_shards_env, const char* shard_index_env, bool in_subprocess_for_death_test) { if (in_subprocess_for_death_test) { return false; } const int32_t total_shards = Int32FromEnvOrDie(total_shards_env, -1); const int32_t shard_index = Int32FromEnvOrDie(shard_index_env, -1); if (total_shards == -1 && shard_index == -1) { return false; } else if (total_shards == -1 && shard_index != -1) { const Message msg = Message() << "Invalid environment variables: you have " << kTestShardIndex << " = " << shard_index << ", but have left " << kTestTotalShards << " unset.\n"; ColoredPrintf(GTestColor::kRed, "%s", msg.GetString().c_str()); fflush(stdout); exit(EXIT_FAILURE); } else if (total_shards != -1 && shard_index == -1) { const Message msg = Message() << "Invalid environment variables: you have " << kTestTotalShards << " = " << total_shards << ", but have left " << kTestShardIndex << " unset.\n"; ColoredPrintf(GTestColor::kRed, "%s", msg.GetString().c_str()); fflush(stdout); exit(EXIT_FAILURE); } else if (shard_index < 0 || shard_index >= total_shards) { const Message msg = Message() << "Invalid environment variables: we require 0 <= " << kTestShardIndex << " < " << kTestTotalShards << ", but you have " << kTestShardIndex << "=" << shard_index << ", " << kTestTotalShards << "=" << total_shards << ".\n"; ColoredPrintf(GTestColor::kRed, "%s", msg.GetString().c_str()); fflush(stdout); exit(EXIT_FAILURE); } return total_shards > 1; } // Parses the environment variable var as an Int32. If it is unset, // returns default_val. If it is not an Int32, prints an error // and aborts. int32_t Int32FromEnvOrDie(const char* var, int32_t default_val) { const char* str_val = posix::GetEnv(var); if (str_val == nullptr) { return default_val; } int32_t result; if (!ParseInt32(Message() << "The value of environment variable " << var, str_val, &result)) { exit(EXIT_FAILURE); } return result; } // Given the total number of shards, the shard index, and the test id, // returns true if and only if the test should be run on this shard. The test id // is some arbitrary but unique non-negative integer assigned to each test // method. Assumes that 0 <= shard_index < total_shards. bool ShouldRunTestOnShard(int total_shards, int shard_index, int test_id) { return (test_id % total_shards) == shard_index; } // Compares the name of each test with the user-specified filter to // decide whether the test should be run, then records the result in // each TestSuite and TestInfo object. // If shard_tests == true, further filters tests based on sharding // variables in the environment - see // https://github.com/google/googletest/blob/master/googletest/docs/advanced.md // . Returns the number of tests that should run. int UnitTestImpl::FilterTests(ReactionToSharding shard_tests) { const int32_t total_shards = shard_tests == HONOR_SHARDING_PROTOCOL ? Int32FromEnvOrDie(kTestTotalShards, -1) : -1; const int32_t shard_index = shard_tests == HONOR_SHARDING_PROTOCOL ? Int32FromEnvOrDie(kTestShardIndex, -1) : -1; // num_runnable_tests are the number of tests that will // run across all shards (i.e., match filter and are not disabled). // num_selected_tests are the number of tests to be run on // this shard. int num_runnable_tests = 0; int num_selected_tests = 0; for (auto* test_suite : test_suites_) { const std::string& test_suite_name = test_suite->name(); test_suite->set_should_run(false); for (size_t j = 0; j < test_suite->test_info_list().size(); j++) { TestInfo* const test_info = test_suite->test_info_list()[j]; const std::string test_name(test_info->name()); // A test is disabled if test suite name or test name matches // kDisableTestFilter. const bool is_disabled = internal::UnitTestOptions::MatchesFilter( test_suite_name, kDisableTestFilter) || internal::UnitTestOptions::MatchesFilter( test_name, kDisableTestFilter); test_info->is_disabled_ = is_disabled; const bool matches_filter = internal::UnitTestOptions::FilterMatchesTest( test_suite_name, test_name); test_info->matches_filter_ = matches_filter; const bool is_runnable = (GTEST_FLAG(also_run_disabled_tests) || !is_disabled) && matches_filter; const bool is_in_another_shard = shard_tests != IGNORE_SHARDING_PROTOCOL && !ShouldRunTestOnShard(total_shards, shard_index, num_runnable_tests); test_info->is_in_another_shard_ = is_in_another_shard; const bool is_selected = is_runnable && !is_in_another_shard; num_runnable_tests += is_runnable; num_selected_tests += is_selected; test_info->should_run_ = is_selected; test_suite->set_should_run(test_suite->should_run() || is_selected); } } return num_selected_tests; } // Prints the given C-string on a single line by replacing all '\n' // characters with string "\\n". If the output takes more than // max_length characters, only prints the first max_length characters // and "...". static void PrintOnOneLine(const char* str, int max_length) { if (str != nullptr) { for (int i = 0; *str != '\0'; ++str) { if (i >= max_length) { printf("..."); break; } if (*str == '\n') { printf("\\n"); i += 2; } else { printf("%c", *str); ++i; } } } } // Prints the names of the tests matching the user-specified filter flag. void UnitTestImpl::ListTestsMatchingFilter() { // Print at most this many characters for each type/value parameter. const int kMaxParamLength = 250; for (auto* test_suite : test_suites_) { bool printed_test_suite_name = false; for (size_t j = 0; j < test_suite->test_info_list().size(); j++) { const TestInfo* const test_info = test_suite->test_info_list()[j]; if (test_info->matches_filter_) { if (!printed_test_suite_name) { printed_test_suite_name = true; printf("%s.", test_suite->name()); if (test_suite->type_param() != nullptr) { printf(" # %s = ", kTypeParamLabel); // We print the type parameter on a single line to make // the output easy to parse by a program. PrintOnOneLine(test_suite->type_param(), kMaxParamLength); } printf("\n"); } printf(" %s", test_info->name()); if (test_info->value_param() != nullptr) { printf(" # %s = ", kValueParamLabel); // We print the value parameter on a single line to make the // output easy to parse by a program. PrintOnOneLine(test_info->value_param(), kMaxParamLength); } printf("\n"); } } } fflush(stdout); const std::string& output_format = UnitTestOptions::GetOutputFormat(); if (output_format == "xml" || output_format == "json") { FILE* fileout = OpenFileForWriting( UnitTestOptions::GetAbsolutePathToOutputFile().c_str()); std::stringstream stream; if (output_format == "xml") { XmlUnitTestResultPrinter( UnitTestOptions::GetAbsolutePathToOutputFile().c_str()) .PrintXmlTestsList(&stream, test_suites_); } else if (output_format == "json") { JsonUnitTestResultPrinter( UnitTestOptions::GetAbsolutePathToOutputFile().c_str()) .PrintJsonTestList(&stream, test_suites_); } fprintf(fileout, "%s", StringStreamToString(&stream).c_str()); fclose(fileout); } } // Sets the OS stack trace getter. // // Does nothing if the input and the current OS stack trace getter are // the same; otherwise, deletes the old getter and makes the input the // current getter. void UnitTestImpl::set_os_stack_trace_getter( OsStackTraceGetterInterface* getter) { if (os_stack_trace_getter_ != getter) { delete os_stack_trace_getter_; os_stack_trace_getter_ = getter; } } // Returns the current OS stack trace getter if it is not NULL; // otherwise, creates an OsStackTraceGetter, makes it the current // getter, and returns it. OsStackTraceGetterInterface* UnitTestImpl::os_stack_trace_getter() { if (os_stack_trace_getter_ == nullptr) { #ifdef GTEST_OS_STACK_TRACE_GETTER_ os_stack_trace_getter_ = new GTEST_OS_STACK_TRACE_GETTER_; #else os_stack_trace_getter_ = new OsStackTraceGetter; #endif // GTEST_OS_STACK_TRACE_GETTER_ } return os_stack_trace_getter_; } // Returns the most specific TestResult currently running. TestResult* UnitTestImpl::current_test_result() { if (current_test_info_ != nullptr) { return ¤t_test_info_->result_; } if (current_test_suite_ != nullptr) { return ¤t_test_suite_->ad_hoc_test_result_; } return &ad_hoc_test_result_; } // Shuffles all test suites, and the tests within each test suite, // making sure that death tests are still run first. void UnitTestImpl::ShuffleTests() { // Shuffles the death test suites. ShuffleRange(random(), 0, last_death_test_suite_ + 1, &test_suite_indices_); // Shuffles the non-death test suites. ShuffleRange(random(), last_death_test_suite_ + 1, static_cast(test_suites_.size()), &test_suite_indices_); // Shuffles the tests inside each test suite. for (auto& test_suite : test_suites_) { test_suite->ShuffleTests(random()); } } // Restores the test suites and tests to their order before the first shuffle. void UnitTestImpl::UnshuffleTests() { for (size_t i = 0; i < test_suites_.size(); i++) { // Unshuffles the tests in each test suite. test_suites_[i]->UnshuffleTests(); // Resets the index of each test suite. test_suite_indices_[i] = static_cast(i); } } // Returns the current OS stack trace as an std::string. // // The maximum number of stack frames to be included is specified by // the gtest_stack_trace_depth flag. The skip_count parameter // specifies the number of top frames to be skipped, which doesn't // count against the number of frames to be included. // // For example, if Foo() calls Bar(), which in turn calls // GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in // the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't. std::string GetCurrentOsStackTraceExceptTop(UnitTest* /*unit_test*/, int skip_count) { // We pass skip_count + 1 to skip this wrapper function in addition // to what the user really wants to skip. return GetUnitTestImpl()->CurrentOsStackTraceExceptTop(skip_count + 1); } // Used by the GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_ macro to // suppress unreachable code warnings. namespace { class ClassUniqueToAlwaysTrue {}; } bool IsTrue(bool condition) { return condition; } bool AlwaysTrue() { #if GTEST_HAS_EXCEPTIONS // This condition is always false so AlwaysTrue() never actually throws, // but it makes the compiler think that it may throw. if (IsTrue(false)) throw ClassUniqueToAlwaysTrue(); #endif // GTEST_HAS_EXCEPTIONS return true; } // If *pstr starts with the given prefix, modifies *pstr to be right // past the prefix and returns true; otherwise leaves *pstr unchanged // and returns false. None of pstr, *pstr, and prefix can be NULL. bool SkipPrefix(const char* prefix, const char** pstr) { const size_t prefix_len = strlen(prefix); if (strncmp(*pstr, prefix, prefix_len) == 0) { *pstr += prefix_len; return true; } return false; } // Parses a string as a command line flag. The string should have // the format "--flag=value". When def_optional is true, the "=value" // part can be omitted. // // Returns the value of the flag, or NULL if the parsing failed. static const char* ParseFlagValue(const char* str, const char* flag, bool def_optional) { // str and flag must not be NULL. if (str == nullptr || flag == nullptr) return nullptr; // The flag must start with "--" followed by GTEST_FLAG_PREFIX_. const std::string flag_str = std::string("--") + GTEST_FLAG_PREFIX_ + flag; const size_t flag_len = flag_str.length(); if (strncmp(str, flag_str.c_str(), flag_len) != 0) return nullptr; // Skips the flag name. const char* flag_end = str + flag_len; // When def_optional is true, it's OK to not have a "=value" part. if (def_optional && (flag_end[0] == '\0')) { return flag_end; } // If def_optional is true and there are more characters after the // flag name, or if def_optional is false, there must be a '=' after // the flag name. if (flag_end[0] != '=') return nullptr; // Returns the string after "=". return flag_end + 1; } // Parses a string for a bool flag, in the form of either // "--flag=value" or "--flag". // // In the former case, the value is taken as true as long as it does // not start with '0', 'f', or 'F'. // // In the latter case, the value is taken as true. // // On success, stores the value of the flag in *value, and returns // true. On failure, returns false without changing *value. static bool ParseBoolFlag(const char* str, const char* flag, bool* value) { // Gets the value of the flag as a string. const char* const value_str = ParseFlagValue(str, flag, true); // Aborts if the parsing failed. if (value_str == nullptr) return false; // Converts the string value to a bool. *value = !(*value_str == '0' || *value_str == 'f' || *value_str == 'F'); return true; } // Parses a string for an int32_t flag, in the form of "--flag=value". // // On success, stores the value of the flag in *value, and returns // true. On failure, returns false without changing *value. bool ParseInt32Flag(const char* str, const char* flag, int32_t* value) { // Gets the value of the flag as a string. const char* const value_str = ParseFlagValue(str, flag, false); // Aborts if the parsing failed. if (value_str == nullptr) return false; // Sets *value to the value of the flag. return ParseInt32(Message() << "The value of flag --" << flag, value_str, value); } // Parses a string for a string flag, in the form of "--flag=value". // // On success, stores the value of the flag in *value, and returns // true. On failure, returns false without changing *value. template static bool ParseStringFlag(const char* str, const char* flag, String* value) { // Gets the value of the flag as a string. const char* const value_str = ParseFlagValue(str, flag, false); // Aborts if the parsing failed. if (value_str == nullptr) return false; // Sets *value to the value of the flag. *value = value_str; return true; } // Determines whether a string has a prefix that Google Test uses for its // flags, i.e., starts with GTEST_FLAG_PREFIX_ or GTEST_FLAG_PREFIX_DASH_. // If Google Test detects that a command line flag has its prefix but is not // recognized, it will print its help message. Flags starting with // GTEST_INTERNAL_PREFIX_ followed by "internal_" are considered Google Test // internal flags and do not trigger the help message. static bool HasGoogleTestFlagPrefix(const char* str) { return (SkipPrefix("--", &str) || SkipPrefix("-", &str) || SkipPrefix("/", &str)) && !SkipPrefix(GTEST_FLAG_PREFIX_ "internal_", &str) && (SkipPrefix(GTEST_FLAG_PREFIX_, &str) || SkipPrefix(GTEST_FLAG_PREFIX_DASH_, &str)); } // Prints a string containing code-encoded text. The following escape // sequences can be used in the string to control the text color: // // @@ prints a single '@' character. // @R changes the color to red. // @G changes the color to green. // @Y changes the color to yellow. // @D changes to the default terminal text color. // static void PrintColorEncoded(const char* str) { GTestColor color = GTestColor::kDefault; // The current color. // Conceptually, we split the string into segments divided by escape // sequences. Then we print one segment at a time. At the end of // each iteration, the str pointer advances to the beginning of the // next segment. for (;;) { const char* p = strchr(str, '@'); if (p == nullptr) { ColoredPrintf(color, "%s", str); return; } ColoredPrintf(color, "%s", std::string(str, p).c_str()); const char ch = p[1]; str = p + 2; if (ch == '@') { ColoredPrintf(color, "@"); } else if (ch == 'D') { color = GTestColor::kDefault; } else if (ch == 'R') { color = GTestColor::kRed; } else if (ch == 'G') { color = GTestColor::kGreen; } else if (ch == 'Y') { color = GTestColor::kYellow; } else { --str; } } } static const char kColorEncodedHelpMessage[] = "This program contains tests written using " GTEST_NAME_ ". You can use the\n" "following command line flags to control its behavior:\n" "\n" "Test Selection:\n" " @G--" GTEST_FLAG_PREFIX_ "list_tests@D\n" " List the names of all tests instead of running them. The name of\n" " TEST(Foo, Bar) is \"Foo.Bar\".\n" " @G--" GTEST_FLAG_PREFIX_ "filter=@YPOSITIVE_PATTERNS" "[@G-@YNEGATIVE_PATTERNS]@D\n" " Run only the tests whose name matches one of the positive patterns " "but\n" " none of the negative patterns. '?' matches any single character; " "'*'\n" " matches any substring; ':' separates two patterns.\n" " @G--" GTEST_FLAG_PREFIX_ "also_run_disabled_tests@D\n" " Run all disabled tests too.\n" "\n" "Test Execution:\n" " @G--" GTEST_FLAG_PREFIX_ "repeat=@Y[COUNT]@D\n" " Run the tests repeatedly; use a negative count to repeat forever.\n" " @G--" GTEST_FLAG_PREFIX_ "shuffle@D\n" " Randomize tests' orders on every iteration.\n" " @G--" GTEST_FLAG_PREFIX_ "random_seed=@Y[NUMBER]@D\n" " Random number seed to use for shuffling test orders (between 1 and\n" " 99999, or 0 to use a seed based on the current time).\n" "\n" "Test Output:\n" " @G--" GTEST_FLAG_PREFIX_ "color=@Y(@Gyes@Y|@Gno@Y|@Gauto@Y)@D\n" " Enable/disable colored output. The default is @Gauto@D.\n" " @G--" GTEST_FLAG_PREFIX_ "brief=1@D\n" " Only print test failures.\n" " @G--" GTEST_FLAG_PREFIX_ "print_time=0@D\n" " Don't print the elapsed time of each test.\n" " @G--" GTEST_FLAG_PREFIX_ "output=@Y(@Gjson@Y|@Gxml@Y)[@G:@YDIRECTORY_PATH@G" GTEST_PATH_SEP_ "@Y|@G:@YFILE_PATH]@D\n" " Generate a JSON or XML report in the given directory or with the " "given\n" " file name. @YFILE_PATH@D defaults to @Gtest_detail.xml@D.\n" # if GTEST_CAN_STREAM_RESULTS_ " @G--" GTEST_FLAG_PREFIX_ "stream_result_to=@YHOST@G:@YPORT@D\n" " Stream test results to the given server.\n" # endif // GTEST_CAN_STREAM_RESULTS_ "\n" "Assertion Behavior:\n" # if GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS " @G--" GTEST_FLAG_PREFIX_ "death_test_style=@Y(@Gfast@Y|@Gthreadsafe@Y)@D\n" " Set the default death test style.\n" # endif // GTEST_HAS_DEATH_TEST && !GTEST_OS_WINDOWS " @G--" GTEST_FLAG_PREFIX_ "break_on_failure@D\n" " Turn assertion failures into debugger break-points.\n" " @G--" GTEST_FLAG_PREFIX_ "throw_on_failure@D\n" " Turn assertion failures into C++ exceptions for use by an external\n" " test framework.\n" " @G--" GTEST_FLAG_PREFIX_ "catch_exceptions=0@D\n" " Do not report exceptions as test failures. Instead, allow them\n" " to crash the program or throw a pop-up (on Windows).\n" "\n" "Except for @G--" GTEST_FLAG_PREFIX_ "list_tests@D, you can alternatively set " "the corresponding\n" "environment variable of a flag (all letters in upper-case). For example, " "to\n" "disable colored text output, you can either specify " "@G--" GTEST_FLAG_PREFIX_ "color=no@D or set\n" "the @G" GTEST_FLAG_PREFIX_UPPER_ "COLOR@D environment variable to @Gno@D.\n" "\n" "For more information, please read the " GTEST_NAME_ " documentation at\n" "@G" GTEST_PROJECT_URL_ "@D. If you find a bug in " GTEST_NAME_ "\n" "(not one in your own code or tests), please report it to\n" "@G<" GTEST_DEV_EMAIL_ ">@D.\n"; static bool ParseGoogleTestFlag(const char* const arg) { return ParseBoolFlag(arg, kAlsoRunDisabledTestsFlag, >EST_FLAG(also_run_disabled_tests)) || ParseBoolFlag(arg, kBreakOnFailureFlag, >EST_FLAG(break_on_failure)) || ParseBoolFlag(arg, kCatchExceptionsFlag, >EST_FLAG(catch_exceptions)) || ParseStringFlag(arg, kColorFlag, >EST_FLAG(color)) || ParseStringFlag(arg, kDeathTestStyleFlag, >EST_FLAG(death_test_style)) || ParseBoolFlag(arg, kDeathTestUseFork, >EST_FLAG(death_test_use_fork)) || ParseBoolFlag(arg, kFailFast, >EST_FLAG(fail_fast)) || ParseStringFlag(arg, kFilterFlag, >EST_FLAG(filter)) || ParseStringFlag(arg, kInternalRunDeathTestFlag, >EST_FLAG(internal_run_death_test)) || ParseBoolFlag(arg, kListTestsFlag, >EST_FLAG(list_tests)) || ParseStringFlag(arg, kOutputFlag, >EST_FLAG(output)) || ParseBoolFlag(arg, kBriefFlag, >EST_FLAG(brief)) || ParseBoolFlag(arg, kPrintTimeFlag, >EST_FLAG(print_time)) || ParseBoolFlag(arg, kPrintUTF8Flag, >EST_FLAG(print_utf8)) || ParseInt32Flag(arg, kRandomSeedFlag, >EST_FLAG(random_seed)) || ParseInt32Flag(arg, kRepeatFlag, >EST_FLAG(repeat)) || ParseBoolFlag(arg, kShuffleFlag, >EST_FLAG(shuffle)) || ParseInt32Flag(arg, kStackTraceDepthFlag, >EST_FLAG(stack_trace_depth)) || ParseStringFlag(arg, kStreamResultToFlag, >EST_FLAG(stream_result_to)) || ParseBoolFlag(arg, kThrowOnFailureFlag, >EST_FLAG(throw_on_failure)); } #if GTEST_USE_OWN_FLAGFILE_FLAG_ static void LoadFlagsFromFile(const std::string& path) { FILE* flagfile = posix::FOpen(path.c_str(), "r"); if (!flagfile) { GTEST_LOG_(FATAL) << "Unable to open file \"" << GTEST_FLAG(flagfile) << "\""; } std::string contents(ReadEntireFile(flagfile)); posix::FClose(flagfile); std::vector lines; SplitString(contents, '\n', &lines); for (size_t i = 0; i < lines.size(); ++i) { if (lines[i].empty()) continue; if (!ParseGoogleTestFlag(lines[i].c_str())) g_help_flag = true; } } #endif // GTEST_USE_OWN_FLAGFILE_FLAG_ // Parses the command line for Google Test flags, without initializing // other parts of Google Test. The type parameter CharType can be // instantiated to either char or wchar_t. template void ParseGoogleTestFlagsOnlyImpl(int* argc, CharType** argv) { for (int i = 1; i < *argc; i++) { const std::string arg_string = StreamableToString(argv[i]); const char* const arg = arg_string.c_str(); using internal::ParseBoolFlag; using internal::ParseInt32Flag; using internal::ParseStringFlag; bool remove_flag = false; if (ParseGoogleTestFlag(arg)) { remove_flag = true; #if GTEST_USE_OWN_FLAGFILE_FLAG_ } else if (ParseStringFlag(arg, kFlagfileFlag, >EST_FLAG(flagfile))) { LoadFlagsFromFile(GTEST_FLAG(flagfile)); remove_flag = true; #endif // GTEST_USE_OWN_FLAGFILE_FLAG_ } else if (arg_string == "--help" || arg_string == "-h" || arg_string == "-?" || arg_string == "/?" || HasGoogleTestFlagPrefix(arg)) { // Both help flag and unrecognized Google Test flags (excluding // internal ones) trigger help display. g_help_flag = true; } if (remove_flag) { // Shift the remainder of the argv list left by one. Note // that argv has (*argc + 1) elements, the last one always being // NULL. The following loop moves the trailing NULL element as // well. for (int j = i; j != *argc; j++) { argv[j] = argv[j + 1]; } // Decrements the argument count. (*argc)--; // We also need to decrement the iterator as we just removed // an element. i--; } } if (g_help_flag) { // We print the help here instead of in RUN_ALL_TESTS(), as the // latter may not be called at all if the user is using Google // Test with another testing framework. PrintColorEncoded(kColorEncodedHelpMessage); } } // Parses the command line for Google Test flags, without initializing // other parts of Google Test. void ParseGoogleTestFlagsOnly(int* argc, char** argv) { ParseGoogleTestFlagsOnlyImpl(argc, argv); // Fix the value of *_NSGetArgc() on macOS, but if and only if // *_NSGetArgv() == argv // Only applicable to char** version of argv #if GTEST_OS_MAC #ifndef GTEST_OS_IOS if (*_NSGetArgv() == argv) { *_NSGetArgc() = *argc; } #endif #endif } void ParseGoogleTestFlagsOnly(int* argc, wchar_t** argv) { ParseGoogleTestFlagsOnlyImpl(argc, argv); } // The internal implementation of InitGoogleTest(). // // The type parameter CharType can be instantiated to either char or // wchar_t. template void InitGoogleTestImpl(int* argc, CharType** argv) { // We don't want to run the initialization code twice. if (GTestIsInitialized()) return; if (*argc <= 0) return; g_argvs.clear(); for (int i = 0; i != *argc; i++) { g_argvs.push_back(StreamableToString(argv[i])); } #if GTEST_HAS_ABSL absl::InitializeSymbolizer(g_argvs[0].c_str()); #endif // GTEST_HAS_ABSL ParseGoogleTestFlagsOnly(argc, argv); GetUnitTestImpl()->PostFlagParsingInit(); } } // namespace internal // Initializes Google Test. This must be called before calling // RUN_ALL_TESTS(). In particular, it parses a command line for the // flags that Google Test recognizes. Whenever a Google Test flag is // seen, it is removed from argv, and *argc is decremented. // // No value is returned. Instead, the Google Test flag variables are // updated. // // Calling the function for the second time has no user-visible effect. void InitGoogleTest(int* argc, char** argv) { #if defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_(argc, argv); #else // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) internal::InitGoogleTestImpl(argc, argv); #endif // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) } // This overloaded version can be used in Windows programs compiled in // UNICODE mode. void InitGoogleTest(int* argc, wchar_t** argv) { #if defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_(argc, argv); #else // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) internal::InitGoogleTestImpl(argc, argv); #endif // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) } // This overloaded version can be used on Arduino/embedded platforms where // there is no argc/argv. void InitGoogleTest() { // Since Arduino doesn't have a command line, fake out the argc/argv arguments int argc = 1; const auto arg0 = "dummy"; char* argv0 = const_cast(arg0); char** argv = &argv0; #if defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_(&argc, argv); #else // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) internal::InitGoogleTestImpl(&argc, argv); #endif // defined(GTEST_CUSTOM_INIT_GOOGLE_TEST_FUNCTION_) } std::string TempDir() { #if defined(GTEST_CUSTOM_TEMPDIR_FUNCTION_) return GTEST_CUSTOM_TEMPDIR_FUNCTION_(); #elif GTEST_OS_WINDOWS_MOBILE return "\\temp\\"; #elif GTEST_OS_WINDOWS const char* temp_dir = internal::posix::GetEnv("TEMP"); if (temp_dir == nullptr || temp_dir[0] == '\0') { return "\\temp\\"; } else if (temp_dir[strlen(temp_dir) - 1] == '\\') { return temp_dir; } else { return std::string(temp_dir) + "\\"; } #elif GTEST_OS_LINUX_ANDROID const char* temp_dir = internal::posix::GetEnv("TEST_TMPDIR"); if (temp_dir == nullptr || temp_dir[0] == '\0') { return "/data/local/tmp/"; } else { return temp_dir; } #elif GTEST_OS_LINUX const char* temp_dir = internal::posix::GetEnv("TEST_TMPDIR"); if (temp_dir == nullptr || temp_dir[0] == '\0') { return "/tmp/"; } else { return temp_dir; } #else return "/tmp/"; #endif // GTEST_OS_WINDOWS_MOBILE } // Class ScopedTrace // Pushes the given source file location and message onto a per-thread // trace stack maintained by Google Test. void ScopedTrace::PushTrace(const char* file, int line, std::string message) { internal::TraceInfo trace; trace.file = file; trace.line = line; trace.message.swap(message); UnitTest::GetInstance()->PushGTestTrace(trace); } // Pops the info pushed by the c'tor. ScopedTrace::~ScopedTrace() GTEST_LOCK_EXCLUDED_(&UnitTest::mutex_) { UnitTest::GetInstance()->PopGTestTrace(); } } // namespace testing ================================================ FILE: test/gtest/src/gtest_main.cc ================================================ // Copyright 2006, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include "gtest/gtest.h" #if GTEST_OS_ESP8266 || GTEST_OS_ESP32 #if GTEST_OS_ESP8266 extern "C" { #endif void setup() { testing::InitGoogleTest(); } void loop() { RUN_ALL_TESTS(); } #if GTEST_OS_ESP8266 } #endif #else GTEST_API_ int main(int argc, char **argv) { printf("Running main() from %s\n", __FILE__); testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } #endif ================================================ FILE: test/meson.build ================================================ gtest_src = [ 'gtest/src/gtest-all.cc', 'gtest/src/gtest_main.cc', ] gtest_inc = include_directories('gtest', 'gtest/include') test_flags = [ '-DGTEST_USE_OWN_TR1_TUPLE=0', '-DGTEST_LANG_CXX11=1', '-DGTEST_HAS_TR1_TUPLE=1', '-std=c++11', ] if not use_win32 test_flags += [ '-DGTEST_HAS_PTHREAD=1', '-DPTHREADS', ] endif gtest = static_library('gtest', gtest_src, cpp_args: test_flags, include_directories: gtest_inc) gtest_dep = declare_dependency(link_with: gtest, include_directories: gtest_inc) test_src = [ 'test_main.cpp', 'test_internal.cpp', 'test_va_api_fixture.cpp', 'test_va_api_get_create_config.cpp', 'test_va_api_config_attribs.cpp', 'test_va_api_createsurfaces.cpp', 'test_va_api_createcontext.cpp', 'test_va_api_createbuffer.cpp', 'test_va_api_display_attribs.cpp', 'test_va_api_get_max_values.cpp', 'test_va_api_init_terminate.cpp', 'test_va_api_query_config.cpp', 'test_va_api_query_vendor.cpp', ] tests_deps = [gtest_dep, dependency('threads')] if use_win32 tests_deps += [ win32_deps ] else tests_deps += [ drm_deps ] endif tests = executable('test_va_api', test_src, cpp_args: test_flags, dependencies: tests_deps, install: true) test('test_va', tests) ================================================ FILE: test/test.h ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #ifndef TESTVAAPI_test_h #define TESTVAAPI_test_h #include #include #include #include #include #define EXPECT_STATUS(status) \ EXPECT_EQ(VaapiStatus(VA_STATUS_SUCCESS), VaapiStatus(status)) #define ASSERT_STATUS(status) \ ASSERT_EQ(VaapiStatus(VA_STATUS_SUCCESS), VaapiStatus(status)) #define EXPECT_STATUS_EQ(expect, status) \ EXPECT_EQ(VaapiStatus(expect), VaapiStatus(status)) #define ASSERT_STATUS_EQ(expect, status) \ ASSERT_EQ(VaapiStatus(expect), VaapiStatus(status)) #define EXPECT_ID(id) \ EXPECT_NE(VA_INVALID_ID, (id)) #define ASSERT_ID(id) \ ASSERT_NE(VA_INVALID_ID, (id)) #define EXPECT_INVALID_ID(id) \ EXPECT_EQ(VA_INVALID_ID, (id)) #define ASSERT_INVALID_ID(id) \ ASSERT_EQ(VA_INVALID_ID, (id)) #define EXPECT_PTR(ptr) \ EXPECT_FALSE(NULL == (ptr)) #define ASSERT_PTR(ptr) \ ASSERT_FALSE(NULL == (ptr)) #define EXPECT_PTR_NULL(ptr) \ EXPECT_TRUE(NULL == (ptr)) #define ASSERT_PTR_NULL(ptr) \ ASSERT_TRUE(NULL == (ptr)) class VaapiStatus { public: explicit VaapiStatus(VAStatus status) : m_status(status) { } bool operator ==(const VaapiStatus& other) const { return m_status == other.m_status; } friend std::ostream& operator <<(std::ostream& os, const VaapiStatus& t) { std::string status; switch (t.m_status) { case VA_STATUS_SUCCESS: status = "VA_STATUS_SUCCESS"; break; case VA_STATUS_ERROR_OPERATION_FAILED: status = "VA_STATUS_ERROR_OPERATION_FAILED"; break; case VA_STATUS_ERROR_ALLOCATION_FAILED: status = "VA_STATUS_ERROR_ALLOCATION_FAILED"; break; case VA_STATUS_ERROR_INVALID_DISPLAY: status = "VA_STATUS_ERROR_INVALID_DISPLAY"; break; case VA_STATUS_ERROR_INVALID_CONFIG: status = "VA_STATUS_ERROR_INVALID_CONFIG"; break; case VA_STATUS_ERROR_INVALID_CONTEXT: status = "VA_STATUS_ERROR_INVALID_CONTEXT"; break; case VA_STATUS_ERROR_INVALID_SURFACE: status = "VA_STATUS_ERROR_INVALID_SURFACE"; break; case VA_STATUS_ERROR_INVALID_BUFFER: status = "VA_STATUS_ERROR_INVALID_BUFFER"; break; case VA_STATUS_ERROR_INVALID_IMAGE: status = "VA_STATUS_ERROR_INVALID_IMAGE"; break; case VA_STATUS_ERROR_INVALID_SUBPICTURE: status = "VA_STATUS_ERROR_INVALID_SUBPICTURE"; break; case VA_STATUS_ERROR_ATTR_NOT_SUPPORTED: status = "VA_STATUS_ERROR_ATTR_NOT_SUPPORTED"; break; case VA_STATUS_ERROR_MAX_NUM_EXCEEDED: status = "VA_STATUS_ERROR_MAX_NUM_EXCEEDED"; break; case VA_STATUS_ERROR_UNSUPPORTED_PROFILE: status = "VA_STATUS_ERROR_UNSUPPORTED_PROFILE"; break; case VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT: status = "VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT"; break; case VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT: status = "VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT"; break; case VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE: status = "VA_STATUS_ERROR_UNSUPPORTED_BUFFERTYPE"; break; case VA_STATUS_ERROR_SURFACE_BUSY: status = "VA_STATUS_ERROR_SURFACE_BUSY"; break; case VA_STATUS_ERROR_FLAG_NOT_SUPPORTED: status = "VA_STATUS_ERROR_FLAG_NOT_SUPPORTED"; break; case VA_STATUS_ERROR_INVALID_PARAMETER: status = "VA_STATUS_ERROR_INVALID_PARAMETER"; break; case VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED: status = "VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED"; break; case VA_STATUS_ERROR_UNIMPLEMENTED: status = "VA_STATUS_ERROR_UNIMPLEMENTED"; break; case VA_STATUS_ERROR_SURFACE_IN_DISPLAYING: status = "VA_STATUS_ERROR_SURFACE_IN_DISPLAYING"; break; case VA_STATUS_ERROR_INVALID_IMAGE_FORMAT: status = "VA_STATUS_ERROR_INVALID_IMAGE_FORMAT"; break; case VA_STATUS_ERROR_DECODING_ERROR: status = "VA_STATUS_ERROR_DECODING_ERROR"; break; case VA_STATUS_ERROR_ENCODING_ERROR: status = "VA_STATUS_ERROR_ENCODING_ERROR"; break; case VA_STATUS_ERROR_INVALID_VALUE: status = "VA_STATUS_ERROR_INVALID_VALUE"; break; case VA_STATUS_ERROR_UNSUPPORTED_FILTER: status = "VA_STATUS_ERROR_UNSUPPORTED_FILTER"; break; case VA_STATUS_ERROR_INVALID_FILTER_CHAIN: status = "VA_STATUS_ERROR_INVALID_FILTER_CHAIN"; break; case VA_STATUS_ERROR_HW_BUSY: status = "VA_STATUS_ERROR_HW_BUSY"; break; case VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE: status = "VA_STATUS_ERROR_UNSUPPORTED_MEMORY_TYPE"; break; case VAStatus(VA_STATUS_ERROR_UNKNOWN): status = "VA_STATUS_ERROR_UNKNOWN"; break; default: status = "Unknown VAStatus"; } os << status; return os; } VAStatus m_status; }; #endif // TEST_H ================================================ FILE: test/test_data.h ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #ifndef TESTVAAPI_test_data_h #define TESTVAAPI_test_data_h #include "test_defs.h" #include "test_utils.h" #include #include #include namespace VAAPI { static const Profiles g_vaProfiles = { VAProfileNone, VAProfileMPEG2Simple, VAProfileMPEG2Main, VAProfileMPEG4Simple, VAProfileMPEG4AdvancedSimple, VAProfileMPEG4Main, VAProfileH264Main, VAProfileH264High, VAProfileVC1Simple, VAProfileVC1Main, VAProfileVC1Advanced, VAProfileH263Baseline, VAProfileJPEGBaseline, VAProfileH264ConstrainedBaseline, VAProfileVP8Version0_3, VAProfileH264MultiviewHigh, VAProfileH264StereoHigh, VAProfileHEVCMain, VAProfileHEVCMain10, VAProfileVP9Profile0, VAProfileVP9Profile1, VAProfileVP9Profile2, VAProfileVP9Profile3, #if VA_CHECK_VERSION(1,8,0) VAProfileAV1Profile0, VAProfileAV1Profile1, #endif #if VA_CHECK_VERSION(1,18,0) VAProfileH264High10, #endif }; static const Profiles g_vaNoneProfiles = { VAProfileNone, }; static const Profiles g_vaMPEG2Profiles = { VAProfileMPEG2Main, VAProfileMPEG2Simple, }; static const Profiles g_vaMPEG4Profiles = { VAProfileMPEG4Simple, VAProfileMPEG4Simple, VAProfileMPEG4AdvancedSimple, VAProfileMPEG4Main, }; static const Profiles g_vaH263Profiles = { VAProfileH263Baseline, }; static const Profiles g_vaH264Profiles = { VAProfileH264Main, VAProfileH264High, VAProfileH264ConstrainedBaseline, VAProfileH264MultiviewHigh, VAProfileH264StereoHigh, #if VA_CHECK_VERSION(1,18,0) VAProfileH264High10, #endif }; static const Profiles g_vaVC1Profiles = { VAProfileVC1Simple, VAProfileVC1Main, VAProfileVC1Advanced, }; static const Profiles g_vaJPEGProfiles = { VAProfileJPEGBaseline, }; static const Profiles g_vaVP8Profiles = { VAProfileVP8Version0_3, }; static const Profiles g_vaHEVCProfiles = { VAProfileHEVCMain, VAProfileHEVCMain10, }; static const Profiles g_vaVP9Profiles = { VAProfileVP9Profile0, VAProfileVP9Profile1, VAProfileVP9Profile2, VAProfileVP9Profile3, }; static const Profiles g_vaAV1Profiles = { #if VA_CHECK_VERSION(1,8,0) VAProfileAV1Profile0, VAProfileAV1Profile1, #endif }; static const Entrypoints g_vaEntrypoints = { VAEntrypointVLD, VAEntrypointIZZ, VAEntrypointIDCT, VAEntrypointMoComp, VAEntrypointDeblocking, VAEntrypointEncSlice, VAEntrypointEncPicture, VAEntrypointEncSliceLP, VAEntrypointVideoProc, VAEntrypointFEI, }; static const ConfigAttribTypes g_vaConfigAttribTypes = { VAConfigAttribRTFormat, VAConfigAttribSpatialResidual, VAConfigAttribSpatialClipping, VAConfigAttribIntraResidual, VAConfigAttribEncryption, VAConfigAttribRateControl, VAConfigAttribDecSliceMode, VAConfigAttribEncPackedHeaders, VAConfigAttribEncInterlaced, VAConfigAttribEncMaxRefFrames, VAConfigAttribEncMaxSlices, VAConfigAttribEncSliceStructure, VAConfigAttribEncMacroblockInfo, VAConfigAttribEncJPEG, VAConfigAttribEncQualityRange, VAConfigAttribEncSkipFrame, VAConfigAttribEncROI, VAConfigAttribEncRateControlExt, VAConfigAttribFEIFunctionType, VAConfigAttribFEIMVPredictors, }; static const SurfaceAttribTypes g_vaSurfaceAttribTypes = { VASurfaceAttribNone, VASurfaceAttribPixelFormat, VASurfaceAttribMinWidth, VASurfaceAttribMaxWidth, VASurfaceAttribMinHeight, VASurfaceAttribMaxHeight, VASurfaceAttribMemoryType, VASurfaceAttribExternalBufferDescriptor, VASurfaceAttribUsageHint, VASurfaceAttribCount, }; static const Resolutions g_vaResolutions = { { 16, 16 }, { 32, 32 }, { 176, 120 }, { 352, 240 }, { 352, 288 }, { 480, 320 }, { 720, 480 }, { 720, 576 }, { 768, 576 }, { 800, 480 }, { 854, 480 }, { 1280, 720 }, { 1920, 1080 }, { 2048, 1080 }, { 4096, 2160 }, { 8192, 8192 }, { 10240, 10240 } }; static const BitMasks g_vaRTFormats = { VA_RT_FORMAT_YUV420, VA_RT_FORMAT_YUV422, VA_RT_FORMAT_YUV444, VA_RT_FORMAT_YUV411, VA_RT_FORMAT_YUV400, VA_RT_FORMAT_YUV420_10BPP, VA_RT_FORMAT_YUV422_10, VA_RT_FORMAT_YUV444_10, VA_RT_FORMAT_YUV420_12, VA_RT_FORMAT_YUV422_12, VA_RT_FORMAT_YUV444_12, VA_RT_FORMAT_RGB16, VA_RT_FORMAT_RGB32, VA_RT_FORMAT_RGBP, VA_RT_FORMAT_RGB32_10BPP, VA_RT_FORMAT_PROTECTED, }; static const BufferTypes g_vaBufferTypes = { VAPictureParameterBufferType, VAIQMatrixBufferType, VABitPlaneBufferType, VASliceGroupMapBufferType, VASliceParameterBufferType, VASliceDataBufferType, VAMacroblockParameterBufferType, VAResidualDataBufferType, VADeblockingParameterBufferType, VAImageBufferType, VAProtectedSliceDataBufferType, VAQMatrixBufferType, VAHuffmanTableBufferType, VAProbabilityBufferType, VAEncCodedBufferType, VAEncSequenceParameterBufferType, VAEncPictureParameterBufferType, VAEncSliceParameterBufferType, VAEncPackedHeaderParameterBufferType, VAEncPackedHeaderDataBufferType, VAEncMiscParameterBufferType, VAEncMacroblockParameterBufferType, VAEncMacroblockMapBufferType, VAProcPipelineParameterBufferType, VAProcFilterParameterBufferType, VAEncFEIMVBufferType, VAEncFEIMBCodeBufferType, VAEncFEIDistortionBufferType, VAEncFEIMBControlBufferType, VAEncFEIMVPredictorBufferType, }; static const BitMasks g_vaRateControls = { VA_RC_NONE, VA_RC_CBR, VA_RC_VBR, VA_RC_VCM, VA_RC_CQP, VA_RC_VBR_CONSTRAINED, VA_RC_ICQ, VA_RC_MB, VA_RC_CFS, VA_RC_PARALLEL, VA_RC_QVBR, VA_RC_AVBR, #if VA_CHECK_VERSION(1, 10, 0) VA_RC_TCBRC, #endif }; static const BitMasks g_vaDecSliceModes = { VA_DEC_SLICE_MODE_NORMAL, VA_DEC_SLICE_MODE_BASE, }; static const BitMasks g_vaEncPackedHeaders = { VA_ENC_PACKED_HEADER_SEQUENCE, VA_ENC_PACKED_HEADER_PICTURE, VA_ENC_PACKED_HEADER_SLICE, VA_ENC_PACKED_HEADER_MISC, VA_ENC_PACKED_HEADER_RAW_DATA, }; static const BitMasks g_vaEncInterlaced = { VA_ENC_INTERLACED_FRAME, VA_ENC_INTERLACED_FIELD, VA_ENC_INTERLACED_MBAFF, VA_ENC_INTERLACED_PAFF, }; static const BitMasks g_vaFEIFunctionTypes = { VA_FEI_FUNCTION_ENC, VA_FEI_FUNCTION_PAK, VA_FEI_FUNCTION_ENC_PAK, }; #if VA_CHECK_VERSION(1, 11, 0) static const BitMasks g_vaEncryptionTypes = { VA_ENCRYPTION_TYPE_FULLSAMPLE_CTR, VA_ENCRYPTION_TYPE_FULLSAMPLE_CBC, VA_ENCRYPTION_TYPE_SUBSAMPLE_CTR, VA_ENCRYPTION_TYPE_SUBSAMPLE_CBC, }; #endif static const std::map g_vaConfigAttribBitMasks = { {VAConfigAttribRTFormat, g_vaRTFormats}, {VAConfigAttribRateControl, g_vaRateControls}, {VAConfigAttribDecSliceMode, g_vaDecSliceModes}, {VAConfigAttribEncPackedHeaders, g_vaEncPackedHeaders}, {VAConfigAttribEncInterlaced, g_vaEncInterlaced}, {VAConfigAttribFEIFunctionType, g_vaFEIFunctionTypes}, #if VA_CHECK_VERSION(1, 11, 0) {VAConfigAttribEncryption, g_vaEncryptionTypes}, #endif }; static const BitMasks g_vaSurfaceMemTypes = { VA_SURFACE_ATTRIB_MEM_TYPE_VA, VA_SURFACE_ATTRIB_MEM_TYPE_V4L2, VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR, VA_SURFACE_ATTRIB_MEM_TYPE_KERNEL_DRM, VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME, VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_2, #if VA_CHECK_VERSION(1, 21, 0) VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_3, #endif }; static const std::map g_vaSurfaceAttribBitMasks = { {VASurfaceAttribMemoryType, g_vaSurfaceMemTypes}, }; } // namespace VAAPI #endif ================================================ FILE: test/test_defs.h ================================================ /* * Copyright (C) 2018 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #ifndef TESTVAAPI_test_defs_h #define TESTVAAPI_test_defs_h #include "test_utils.h" #include #include namespace VAAPI { typedef std::vector Profiles; typedef std::vector Entrypoints; typedef std::vector ConfigAttribTypes; typedef std::vector ConfigAttributes; typedef std::vector SurfaceAttribTypes; typedef std::vector SurfaceAttributes; typedef std::vector Surfaces; typedef std::vector BufferTypes; typedef std::vector Buffers; typedef std::vector DisplayAttribTypes; typedef std::vector DisplayAttributes; typedef std::vector Resolutions; typedef std::vector BitMasks; } // namespace VAAPI #endif ================================================ FILE: test/test_internal.cpp ================================================ /* * Copyright (C) 2017 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test.h" #include "test_utils.h" #include TEST(Internal, Resolution) { using VAAPI::Resolution; Resolution res(2, 7); ASSERT_EQ(res.width, Resolution::DataType(2)); ASSERT_EQ(res.height, Resolution::DataType(7)); EXPECT_LE(res, res); EXPECT_LE(res, Resolution(res.width + 1, res.height)); EXPECT_LE(res, Resolution(res.width, res.height + 1)); EXPECT_FALSE(res <= Resolution(res.width - 1, res.height)); EXPECT_FALSE(res <= Resolution(res.width, res.height - 1)); EXPECT_GE(res, res); EXPECT_GE(res, Resolution(res.width - 1, res.height)); EXPECT_GE(res, Resolution(res.width, res.height - 1)); EXPECT_FALSE(res >= Resolution(res.width + 1, res.height)); EXPECT_FALSE(res >= Resolution(res.width, res.height + 1)); EXPECT_TRUE(res.isWithin(res, res)); EXPECT_TRUE(res.isWithin(Resolution(res.width - 1, res.height), res)); EXPECT_TRUE(res.isWithin(Resolution(res.width, res.height - 1), res)); EXPECT_TRUE(res.isWithin(res, Resolution(res.width + 1, res.height))); EXPECT_TRUE(res.isWithin(res, Resolution(res.width, res.height + 1))); EXPECT_FALSE(res.isWithin( Resolution(res.width + 1, res.height), Resolution(res.width + 1, res.height + 1))); EXPECT_FALSE(res.isWithin( Resolution(res.width, res.height + 1), Resolution(res.width + 1, res.height + 1))); EXPECT_FALSE(res.isWithin( Resolution(res.width - 1, res.height - 1), Resolution(res.width - 1, res.height))); EXPECT_FALSE(res.isWithin( Resolution(res.width - 1, res.height - 1), Resolution(res.width, res.height - 1))); // Verify different initializers { Resolution resolution{10, 100}; EXPECT_EQ(resolution.width, Resolution::DataType(10)); EXPECT_EQ(resolution.height, Resolution::DataType(100)); } { Resolution resolution = {10, 100}; EXPECT_EQ(resolution.width, Resolution::DataType(10)); EXPECT_EQ(resolution.height, Resolution::DataType(100)); } { std::vector resolutions{{10, 100}, {12, 15}}; ASSERT_EQ(resolutions.size(), 2u); EXPECT_EQ(resolutions[0].width, Resolution::DataType(10)); EXPECT_EQ(resolutions[0].height, Resolution::DataType(100)); EXPECT_EQ(resolutions[1].width, Resolution::DataType(12)); EXPECT_EQ(resolutions[1].height, Resolution::DataType(15)); } { std::vector resolutions = {{10, 100}, {12, 15}}; ASSERT_EQ(resolutions.size(), 2u); EXPECT_EQ(resolutions[0].width, Resolution::DataType(10)); EXPECT_EQ(resolutions[0].height, Resolution::DataType(100)); EXPECT_EQ(resolutions[1].width, Resolution::DataType(12)); EXPECT_EQ(resolutions[1].height, Resolution::DataType(15)); } } ================================================ FILE: test/test_main.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test.h" int main(int argc, char **argv) { ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } ================================================ FILE: test/test_streamable.h ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #ifndef TESTVAAPI_test_streamable_h #define TESTVAAPI_test_streamable_h #include #include #include #define CASE_ENUM_TO_STREAM(caseEnum) case caseEnum: os << #caseEnum; break; inline std::ostream& operator<<(std::ostream& os, const VAProfile& profile) { return os << static_cast(profile) << ":" << vaProfileStr(profile); } inline std::ostream& operator<<(std::ostream& os, const VAEntrypoint& entrypoint) { return os << static_cast(entrypoint) << ":" << vaEntrypointStr(entrypoint); } inline std::ostream& operator<<(std::ostream& os, const VABufferType& type) { return os << static_cast(type) << ":" << vaBufferTypeStr(type); } inline std::ostream& operator<<(std::ostream& os, const VAGenericValueType& type) { switch (type) { CASE_ENUM_TO_STREAM(VAGenericValueTypeInteger) CASE_ENUM_TO_STREAM(VAGenericValueTypeFloat) CASE_ENUM_TO_STREAM(VAGenericValueTypePointer) CASE_ENUM_TO_STREAM(VAGenericValueTypeFunc) default: break; } return os << "(" << static_cast(type) << ")"; } inline std::ostream& operator<<(std::ostream& os, const VAGenericValue& value) { #define TOSTR(enumCase, field) case enumCase: return os << value.value.field; break os << value.type << ":"; switch (value.type) { TOSTR(VAGenericValueTypeInteger, i); TOSTR(VAGenericValueTypeFloat, f); TOSTR(VAGenericValueTypePointer, p); TOSTR(VAGenericValueTypeFunc, fn); default: return os << "?"; } #undef TOSTR } inline std::ostream& operator <<(std::ostream& os, const VASurfaceAttribType& type) { switch (type) { CASE_ENUM_TO_STREAM(VASurfaceAttribNone) CASE_ENUM_TO_STREAM(VASurfaceAttribPixelFormat) CASE_ENUM_TO_STREAM(VASurfaceAttribMinWidth) CASE_ENUM_TO_STREAM(VASurfaceAttribMaxWidth) CASE_ENUM_TO_STREAM(VASurfaceAttribMinHeight) CASE_ENUM_TO_STREAM(VASurfaceAttribMaxHeight) CASE_ENUM_TO_STREAM(VASurfaceAttribMemoryType) CASE_ENUM_TO_STREAM(VASurfaceAttribExternalBufferDescriptor) CASE_ENUM_TO_STREAM(VASurfaceAttribUsageHint) CASE_ENUM_TO_STREAM(VASurfaceAttribCount) default: break; } return os << "(" << static_cast(type) << ")"; } inline std::ostream& operator<<(std::ostream& os, const VASurfaceAttrib& attrib) { return os << "VASurfaceAttrib(" << "type = " << attrib.type << ", " << "flags = " << attrib.flags << ", " << "value = " << attrib.value << ")" ; } inline std::ostream& operator <<(std::ostream& os, const VAConfigAttribType& type) { switch (type) { CASE_ENUM_TO_STREAM(VAConfigAttribRTFormat) CASE_ENUM_TO_STREAM(VAConfigAttribSpatialResidual) CASE_ENUM_TO_STREAM(VAConfigAttribSpatialClipping) CASE_ENUM_TO_STREAM(VAConfigAttribIntraResidual) CASE_ENUM_TO_STREAM(VAConfigAttribEncryption) CASE_ENUM_TO_STREAM(VAConfigAttribRateControl) CASE_ENUM_TO_STREAM(VAConfigAttribDecSliceMode) CASE_ENUM_TO_STREAM(VAConfigAttribDecJPEG) CASE_ENUM_TO_STREAM(VAConfigAttribDecProcessing) CASE_ENUM_TO_STREAM(VAConfigAttribEncPackedHeaders) CASE_ENUM_TO_STREAM(VAConfigAttribEncInterlaced) CASE_ENUM_TO_STREAM(VAConfigAttribEncMaxRefFrames) CASE_ENUM_TO_STREAM(VAConfigAttribEncMaxSlices) CASE_ENUM_TO_STREAM(VAConfigAttribEncSliceStructure) CASE_ENUM_TO_STREAM(VAConfigAttribEncMacroblockInfo) CASE_ENUM_TO_STREAM(VAConfigAttribMaxPictureWidth) CASE_ENUM_TO_STREAM(VAConfigAttribMaxPictureHeight) CASE_ENUM_TO_STREAM(VAConfigAttribEncJPEG) CASE_ENUM_TO_STREAM(VAConfigAttribEncQualityRange) CASE_ENUM_TO_STREAM(VAConfigAttribEncQuantization) CASE_ENUM_TO_STREAM(VAConfigAttribEncIntraRefresh) CASE_ENUM_TO_STREAM(VAConfigAttribEncSkipFrame) CASE_ENUM_TO_STREAM(VAConfigAttribEncROI) CASE_ENUM_TO_STREAM(VAConfigAttribEncRateControlExt) CASE_ENUM_TO_STREAM(VAConfigAttribProcessingRate) CASE_ENUM_TO_STREAM(VAConfigAttribEncDirtyRect) CASE_ENUM_TO_STREAM(VAConfigAttribEncParallelRateControl) CASE_ENUM_TO_STREAM(VAConfigAttribEncDynamicScaling) CASE_ENUM_TO_STREAM(VAConfigAttribFrameSizeToleranceSupport) CASE_ENUM_TO_STREAM(VAConfigAttribFEIFunctionType) CASE_ENUM_TO_STREAM(VAConfigAttribFEIMVPredictors) CASE_ENUM_TO_STREAM(VAConfigAttribStats) CASE_ENUM_TO_STREAM(VAConfigAttribEncTileSupport) CASE_ENUM_TO_STREAM(VAConfigAttribCustomRoundingControl) CASE_ENUM_TO_STREAM(VAConfigAttribQPBlockSize) CASE_ENUM_TO_STREAM(VAConfigAttribMaxFrameSize) CASE_ENUM_TO_STREAM(VAConfigAttribPredictionDirection) CASE_ENUM_TO_STREAM(VAConfigAttribTypeMax) default: break; } return os << "(" << static_cast(type) << ")"; } inline std::ostream& operator <<(std::ostream& os, const VAConfigAttrib& attrib) { return os << "VAConfigAttrib(" << "type = " << attrib.type << ", " << "value = 0x" << std::hex << attrib.value << std::dec << ")" ; } #undef CASE_ENUM_TO_STREAM #endif ================================================ FILE: test/test_utils.h ================================================ /* * Copyright (C) 2017 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #ifndef TESTVAAPI_test_utils_h #define TESTVAAPI_test_utils_h #include namespace VAAPI { struct Resolution { typedef uint32_t DataType; Resolution(const DataType w = 1, const DataType h = 1) : width(w), height(h) { } inline bool operator <=(const Resolution& other) const { return (width <= other.width) && (height <= other.height); } inline bool operator >=(const Resolution& other) const { return (width >= other.width) && (height >= other.height); } inline bool isWithin( const Resolution& minRes, const Resolution& maxRes) const { return (*this >= minRes) && (*this <= maxRes); } friend std::ostream& operator <<(std::ostream& os, const Resolution& res) { return os << res.width << "x" << res.height; } DataType width; DataType height; }; } // namespace VAAPI #endif ================================================ FILE: test/test_va_api_config_attribs.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" namespace VAAPI { class VAAPIConfigAttribs : public VAAPIFixtureSharedDisplay , public ::testing::WithParamInterface > { public: VAAPIConfigAttribs() : profile(::testing::get<0>(GetParam())) , entrypoint(::testing::get<1>(GetParam())) { } protected: const VAProfile& profile; const VAEntrypoint& entrypoint; void validateConfigAttributes(const ConfigAttributes& actual, const ConfigAttributes& supported) const { const size_t size(actual.size()); ASSERT_EQ(size, supported.size()); // Require that actual and supported are in the same order, by type for (size_t i(0); i < size; ++i) { const VAConfigAttrib& aAttrib = actual[i]; const VAConfigAttrib& sAttrib = supported[i]; ASSERT_EQ(aAttrib.type, sAttrib.type); // NOTE: If an attribute was not explicitly set by user/app during // createConfig (as is the case for GetConfigAttribs test), then // all known drivers currently return the same value from // vaQueryConfigAttributes as returned from vaGetConfigAttributes. // However, there are several bitfield-type attributes that can // only take on "one" choice from the supported value relayed in the // bitfield from vaGetConfigAttributes. It still remains to be // clarified whether drivers should actually return the "default" // chosen value from vaQueryConfigAttributes when it is not // specified by user/app during createConfig. Hence, for now, for // bitfield-type attributes we only require that the actual value // is equal-to or a "subset" of the supported value. switch (aAttrib.type) { // Read/write bitfield attribute can be a subset of supported values case VAConfigAttribRTFormat: case VAConfigAttribRateControl: case VAConfigAttribDecSliceMode: case VAConfigAttribEncPackedHeaders: case VAConfigAttribEncInterlaced: case VAConfigAttribFEIFunctionType: EXPECT_EQ(sAttrib.value & aAttrib.value, aAttrib.value); break; // read-only and/or non-bitfield attributes default: EXPECT_EQ(sAttrib.value, aAttrib.value); } } } }; TEST_P(VAAPIConfigAttribs, GetConfigAttribs) { // The driver must support creating a config without any user specified // attributes, in which case the driver will use it's own defaults. The // app should be able to query those default attributes for such created // config via vaQueryConfigAttributes. Those default attribute values // should be consistent with supported attribute values returned by // vaGetConfigAttributes. if (!isSupported(profile, entrypoint)) { skipTest(profile, entrypoint); return; } // create config without attributes (i.e. use driver defaults) createConfig(profile, entrypoint); // query default attributes from the config we just created ConfigAttributes actual; queryConfigAttributes(profile, entrypoint, actual); // we're done with the config destroyConfig(); // copy the actual attributes and reset their values so we // can get the supported values for them. ConfigAttributes supported = actual; std::for_each(supported.begin(), supported.end(), [](VAConfigAttrib & s) { s.value = 0; }); // get supported config attribute values getConfigAttributes(profile, entrypoint, supported); // verify actual config attribute values are supported values validateConfigAttributes(actual, supported); } INSTANTIATE_TEST_SUITE_P( Attributes, VAAPIConfigAttribs, ::testing::Combine(::testing::ValuesIn(g_vaProfiles), ::testing::ValuesIn(g_vaEntrypoints))); } // namespace VAAPI ================================================ FILE: test/test_va_api_createbuffer.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" namespace VAAPI { // Testing VABufferType in groups that will be associated with VAProfile and // VAEntrypoint. vaCreateBuffer doesn't require these itself but its input // parameter do care about them. typedef ::testing::WithParamInterface> CreateBufferParamInterface; class VAAPICreateBuffer : public VAAPIFixture , public CreateBufferParamInterface { public: VAAPICreateBuffer() : profile(::testing::get<0>(GetParam())) , entrypoint(::testing::get<1>(GetParam())) , bufferType(::testing::get<2>(GetParam())) , bufferSize(::testing::get<3>(GetParam())) { } protected: const VAProfile& profile; const VAEntrypoint& entrypoint; const VABufferType& bufferType; const size_t bufferSize; virtual void SetUp() { VAAPIFixture::SetUp(); doInitialize(); ASSERT_FALSE(HasFailure()); } virtual void TearDown() { doTerminate(); VAAPIFixture::TearDown(); } }; typedef std::tuple BufferSpec; typedef std::vector BufferSpecs; typedef std::map BufferSpecsMap; using std::make_tuple; static const BufferSpecsMap decodeBufferSpecs = { { VAPictureParameterBufferType, { make_tuple(g_vaMPEG2Profiles, sizeof(VAPictureParameterBufferMPEG2)), make_tuple(g_vaMPEG4Profiles, sizeof(VAPictureParameterBufferMPEG4)), make_tuple(g_vaH264Profiles, sizeof(VAPictureParameterBufferH264)), make_tuple(g_vaVC1Profiles, sizeof(VAPictureParameterBufferVC1)), make_tuple(g_vaJPEGProfiles, sizeof(VAPictureParameterBufferJPEGBaseline)), make_tuple(g_vaVP8Profiles, sizeof(VAPictureParameterBufferVP8)), make_tuple(g_vaHEVCProfiles, sizeof(VAPictureParameterBufferHEVC)), make_tuple(g_vaVP9Profiles, sizeof(VADecPictureParameterBufferVP9)), } }, { VAIQMatrixBufferType, { make_tuple(g_vaMPEG2Profiles, sizeof(VAIQMatrixBufferMPEG2)), make_tuple(g_vaMPEG4Profiles, sizeof(VAIQMatrixBufferMPEG4)), make_tuple(g_vaH264Profiles, sizeof(VAIQMatrixBufferH264)), make_tuple(g_vaJPEGProfiles, sizeof(VAIQMatrixBufferJPEGBaseline)), make_tuple(g_vaVP8Profiles, sizeof(VAIQMatrixBufferVP8)), make_tuple(g_vaHEVCProfiles, sizeof(VAIQMatrixBufferHEVC)), } }, { VASliceParameterBufferType, { make_tuple(g_vaMPEG2Profiles, sizeof(VASliceParameterBufferMPEG2)), make_tuple(g_vaMPEG4Profiles, sizeof(VASliceParameterBufferMPEG4)), make_tuple(g_vaH264Profiles, sizeof(VASliceParameterBufferH264)), make_tuple(g_vaVC1Profiles, sizeof(VASliceParameterBufferVC1)), make_tuple(g_vaJPEGProfiles, sizeof(VASliceParameterBufferJPEGBaseline)), make_tuple(g_vaVP8Profiles, sizeof(VASliceParameterBufferVP8)), make_tuple(g_vaHEVCProfiles, sizeof(VASliceParameterBufferHEVC)), make_tuple(g_vaVP9Profiles, sizeof(VASliceParameterBufferVP9)), } }, { VAMacroblockParameterBufferType, { make_tuple(g_vaMPEG2Profiles, sizeof(VAMacroblockParameterBufferMPEG2)), } }, { VAQMatrixBufferType, { make_tuple(g_vaJPEGProfiles, sizeof(VAQMatrixBufferJPEG)), make_tuple(g_vaVP8Profiles, sizeof(VAQMatrixBufferVP8)), make_tuple(g_vaHEVCProfiles, sizeof(VAQMatrixBufferHEVC)), } }, { VAHuffmanTableBufferType, { make_tuple(g_vaJPEGProfiles, sizeof(VAHuffmanTableBufferJPEGBaseline)), } }, { VAProbabilityBufferType, { make_tuple(g_vaVP8Profiles, sizeof(VAProbabilityDataBufferVP8)), } }, }; static const BufferSpecsMap encodeBufferSpecs = { { VAEncSequenceParameterBufferType, { make_tuple(g_vaMPEG2Profiles, sizeof(VAEncSequenceParameterBufferMPEG2)), make_tuple(g_vaMPEG4Profiles, sizeof(VAEncSequenceParameterBufferMPEG4)), make_tuple(g_vaH263Profiles, sizeof(VAEncSequenceParameterBufferH263)), make_tuple(g_vaH264Profiles, sizeof(VAEncSequenceParameterBufferH264)), make_tuple(g_vaVP8Profiles, sizeof(VAEncSequenceParameterBufferVP8)), make_tuple(g_vaHEVCProfiles, sizeof(VAEncSequenceParameterBufferHEVC)), make_tuple(g_vaVP9Profiles, sizeof(VAEncSequenceParameterBufferVP9)), make_tuple(g_vaAV1Profiles, sizeof(VAEncSequenceParameterBufferAV1)), } }, { VAEncPictureParameterBufferType, { make_tuple(g_vaMPEG2Profiles, sizeof(VAEncPictureParameterBufferMPEG2)), make_tuple(g_vaMPEG4Profiles, sizeof(VAEncPictureParameterBufferMPEG4)), make_tuple(g_vaH263Profiles, sizeof(VAEncPictureParameterBufferH263)), make_tuple(g_vaH264Profiles, sizeof(VAEncPictureParameterBufferH264)), make_tuple(g_vaJPEGProfiles, sizeof(VAEncPictureParameterBufferJPEG)), make_tuple(g_vaVP8Profiles, sizeof(VAEncPictureParameterBufferVP8)), make_tuple(g_vaHEVCProfiles, sizeof(VAEncPictureParameterBufferHEVC)), make_tuple(g_vaVP9Profiles, sizeof(VAEncPictureParameterBufferVP9)), make_tuple(g_vaAV1Profiles, sizeof(VAEncPictureParameterBufferAV1)), } }, { VAEncSliceParameterBufferType, { make_tuple(g_vaMPEG2Profiles, sizeof(VAEncSliceParameterBufferMPEG2)), make_tuple(g_vaH264Profiles, sizeof(VAEncSliceParameterBufferH264)), make_tuple(g_vaJPEGProfiles, sizeof(VAEncSliceParameterBufferJPEG)), make_tuple(g_vaHEVCProfiles, sizeof(VAEncSliceParameterBufferHEVC)), make_tuple(g_vaAV1Profiles, sizeof(VAEncPictureParameterBufferAV1)), } }, { VAEncPackedHeaderParameterBufferType, { make_tuple(g_vaProfiles, sizeof(VAEncPackedHeaderParameterBuffer)), make_tuple(g_vaAV1Profiles, sizeof(VAEncPictureParameterBufferAV1)), } }, { VAEncMiscParameterBufferType, { make_tuple(g_vaProfiles, sizeof(VAEncMiscParameterBuffer)), make_tuple(g_vaAV1Profiles, sizeof(VAEncPictureParameterBufferAV1)), } }, }; static const BufferSpecsMap vppBufferSpecs = { { VAProcPipelineParameterBufferType, { make_tuple(g_vaNoneProfiles, sizeof(VAProcPipelineParameterBuffer)), } }, { VAProcFilterParameterBufferType, { make_tuple(g_vaNoneProfiles, sizeof(VAProcFilterParameterBuffer)), make_tuple(g_vaNoneProfiles, sizeof(VAProcFilterParameterBufferDeinterlacing)), make_tuple(g_vaNoneProfiles, sizeof(VAProcFilterParameterBufferColorBalance)), make_tuple(g_vaNoneProfiles, sizeof(VAProcFilterParameterBufferTotalColorCorrection)), } }, }; TEST_P(VAAPICreateBuffer, CreateBufferWithOutData) { // vaCreateBuffer uses a VAContextID as an input. This VAContextID requires // a VAConfigID to be created. VAConfigID requires VAProfile and // VAEntrypoint to be given. As such, to test vaCreateBuffer these are // the minimum requirements. There's no need to create surfaces or attach // them to a VAConfigID. if (!isSupported(profile, entrypoint)) { skipTest(profile, entrypoint); return; } // profile and entrypoint are supported createConfig(profile, entrypoint); // vaCreateContext input requires resolution, since this test // doesn't create surfaces, passing min resolution should provide // the desired result. Resolution minRes, maxRes; getMinMaxSurfaceResolution(minRes, maxRes); doCreateContext(minRes); createBuffer(bufferType, bufferSize); destroyBuffer(); doDestroyContext(); destroyConfig(); } std::vector generateInput() { std::vector inputs; const auto addBufferSpecs = [&]( const BufferSpecsMap & bsm, const Entrypoints & entrypoints) { for (const auto& specs : bsm) { const auto& bufferType = std::get<0>(specs); for (const auto& spec : std::get<1>(specs)) { const auto& bufferSize = std::get<1>(spec); for (const auto& profile : std::get<0>(spec)) { for (const auto& entrypoint : entrypoints) { inputs.push_back( make_tuple( profile, entrypoint, bufferType, bufferSize)); } } } } }; addBufferSpecs(decodeBufferSpecs, {VAEntrypointVLD,}); addBufferSpecs(encodeBufferSpecs, {VAEntrypointEncSlice, VAEntrypointEncSliceLP, VAEntrypointEncPicture, }); addBufferSpecs(vppBufferSpecs, {VAEntrypointVideoProc,}); return inputs; } INSTANTIATE_TEST_SUITE_P( CreateBuffer, VAAPICreateBuffer, ::testing::ValuesIn(generateInput())); } // namespace VAAPI ================================================ FILE: test/test_va_api_createcontext.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" #include namespace VAAPI { typedef VAAPIFixture VAAPICreateContextToFail; TEST_F(VAAPICreateContextToFail, CreateContextWithNoConfig) { // There's no need to test all inputs for this to be a good test // as long as there's no config the expected error should be // returned doInitialize(); ASSERT_FALSE(HasFailure()); doCreateContext({1920, 1080}, VA_STATUS_ERROR_INVALID_CONFIG); doTerminate(); } class VAAPICreateContext : public VAAPIFixture , public ::testing::WithParamInterface < std::tuple > { public: VAAPICreateContext() : profile(::testing::get<0>(GetParam())) , entrypoint(::testing::get<1>(GetParam())) , resolution(::testing::get<2>(GetParam())) { } protected: const VAProfile& profile; const VAEntrypoint& entrypoint; const Resolution& resolution; virtual void SetUp() { VAAPIFixture::SetUp(); doInitialize(); ASSERT_FALSE(HasFailure()); } virtual void TearDown() { doTerminate(); VAAPIFixture::TearDown(); } }; TEST_P(VAAPICreateContext, CreateContext) { // vaCreateContext requires a valid VAConfigID, vaCreateConfig requires a // supported profile and entrypoint if (!isSupported(profile, entrypoint)) { skipTest(profile, entrypoint); return; } // profile and entrypoint are supported createConfig(profile, entrypoint); Resolution minRes, maxRes; getMinMaxSurfaceResolution(minRes, maxRes); std::ostringstream oss; oss << "resolution: min=" << minRes << "; max=" << maxRes << "; current=" << resolution; SCOPED_TRACE(oss.str()); if (!resolution.isWithin(minRes, maxRes)) { doCreateContext(resolution, VA_STATUS_ERROR_RESOLUTION_NOT_SUPPORTED); doDestroyContext(VA_STATUS_ERROR_INVALID_CONTEXT); } else { doCreateContext(resolution); doDestroyContext(); } destroyConfig(); } INSTANTIATE_TEST_SUITE_P( CreateContext, VAAPICreateContext, ::testing::Combine(::testing::ValuesIn(g_vaProfiles), ::testing::ValuesIn(g_vaEntrypoints), ::testing::ValuesIn(g_vaResolutions))); } // namespace VAAPI ================================================ FILE: test/test_va_api_createsurfaces.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" #include #include namespace VAAPI { // The following tests will operate on supported profile/entrypoint // combinations that the driver does support. class VAAPISurfaceFixture : public VAAPIFixtureSharedDisplay { public: VAAPISurfaceFixture(const VAProfile& p, const VAEntrypoint& e) : VAAPIFixtureSharedDisplay() , profile(p) , entrypoint(e) { } protected: const VAProfile& profile; const VAEntrypoint& entrypoint; void testWithSupportedConfigAttributes( const std::function& test) { ConfigAttributes supported; getConfigAttributes(profile, entrypoint, supported); // create config with each individual supported attribute for (const auto& attrib : supported) { const auto match = g_vaConfigAttribBitMasks.find(attrib.type); if (match != g_vaConfigAttribBitMasks.end()) { // it's a bitfield attribute const BitMasks& masks = match->second; for (const auto mask : masks) { // for all bitmasks if ((attrib.value & mask) == mask) { // supported value const ConfigAttributes attribs( 1, {/*type :*/ attrib.type, /*value :*/ mask }); SCOPED_TRACE(attribs.front()); createConfig(profile, entrypoint, attribs); test(attribs); destroyConfig(); } } } else { // it's a standard attribute const ConfigAttributes attribs(1, attrib); SCOPED_TRACE(attribs.front()); createConfig(profile, entrypoint, attribs); test(attribs); destroyConfig(); } } } void testWithSupportedSurfaceAttributes( const std::function& test) { SurfaceAttributes supported; querySurfaceAttributes(supported); const uint32_t drmMemMask = VA_SURFACE_ATTRIB_MEM_TYPE_KERNEL_DRM | VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME #if VA_CHECK_VERSION(1, 21, 0) | VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_3 #endif | VA_SURFACE_ATTRIB_MEM_TYPE_DRM_PRIME_2; // create surfaces for each supported attribute for (const auto& attrib : supported) { const auto match = g_vaSurfaceAttribBitMasks.find(attrib.type); if (match != g_vaSurfaceAttribBitMasks.end()) { // it's a bitfield attribute ASSERT_EQ(attrib.value.type, VAGenericValueTypeInteger); uint32_t bitfield(0); const BitMasks& masks = match->second; for (const auto mask : masks) { // for all bitmasks if ((attrib.value.value.i & mask) == mask) { // supported value bitfield |= mask; if ((attrib.type == VASurfaceAttribMemoryType) && (drmMemMask & mask) == mask) { // skip drm memory types for now as it requires much // more setup continue; } else { VASurfaceAttrib maskAttrib = attrib; maskAttrib.value.value.i = mask; const SurfaceAttributes attribs = {maskAttrib,}; SCOPED_TRACE(attribs.front()); test(attribs); } } } // ensure we processed all supported values EXPECT_EQ(bitfield, (uint32_t)attrib.value.value.i); } else { // it's a standard attribute const SurfaceAttributes attribs = {attrib,}; SCOPED_TRACE(attribs.front()); test(attribs); } } } }; typedef ::testing::WithParamInterface < std::tuple > QuerySurfacesParamInterface; class VAAPIQuerySurfaces : public QuerySurfacesParamInterface , public VAAPISurfaceFixture { public: VAAPIQuerySurfaces() : QuerySurfacesParamInterface() , VAAPISurfaceFixture( ::testing::get<0>(GetParam()), ::testing::get<1>(GetParam())) { } }; TEST_P(VAAPIQuerySurfaces, QuerySurfacesWithConfigAttribs) { if (!isSupported(profile, entrypoint)) { skipTest(profile, entrypoint); return; } const auto test = [&](const ConfigAttributes & ca) { SurfaceAttributes attribs; querySurfaceAttributes(attribs); }; testWithSupportedConfigAttributes(test); } TEST_P(VAAPIQuerySurfaces, QuerySurfacesNoConfigAttribs) { if (!isSupported(profile, entrypoint)) { skipTest(profile, entrypoint); return; } createConfig(profile, entrypoint); SurfaceAttributes attribs; querySurfaceAttributes(attribs); destroyConfig(); } INSTANTIATE_TEST_SUITE_P( QuerySurfaces, VAAPIQuerySurfaces, ::testing::Combine(::testing::ValuesIn(g_vaProfiles), ::testing::ValuesIn(g_vaEntrypoints))); typedef typename ::testing::WithParamInterface> CreateSurfacesParamInterface; class VAAPICreateSurfaces : public CreateSurfacesParamInterface , public VAAPISurfaceFixture { public: VAAPICreateSurfaces() : CreateSurfacesParamInterface() , VAAPISurfaceFixture( ::testing::get<0>(GetParam()), ::testing::get<1>(GetParam())) , resolution(::testing::get<2>(GetParam())) { } protected: const Resolution& resolution; }; TEST_P(VAAPICreateSurfaces, CreateSurfacesWithConfigAttribs) { if (!isSupported(profile, entrypoint)) { skipTest(profile, entrypoint); return; } // VA_RT_FORMAT_YUV420 is considered the universal supported format by // drivers unsigned format = VA_RT_FORMAT_YUV420; const auto testSurfaces = [&](const SurfaceAttributes & attribs) { Surfaces surfaces(10, VA_INVALID_SURFACE); createSurfaces(surfaces, format, resolution, attribs); destroySurfaces(surfaces); }; const auto test = [&](const ConfigAttributes & attribs) { const auto match = std::find_if(attribs.begin(), attribs.end(), [](const VAConfigAttrib & a) { return a.type == VAConfigAttribRTFormat; }); if (match != attribs.end()) { format = match->value; } testWithSupportedSurfaceAttributes(testSurfaces); // reset format to default format = VA_RT_FORMAT_YUV420; }; testWithSupportedConfigAttributes(test); } TEST_P(VAAPICreateSurfaces, CreateSurfacesNoConfigAttrib) { if (!isSupported(profile, entrypoint)) { skipTest(profile, entrypoint); return; } const auto test = [&](const SurfaceAttributes & attribs) { Surfaces surfaces(10, VA_INVALID_SURFACE); createSurfaces(surfaces, VA_RT_FORMAT_YUV420, resolution, attribs); destroySurfaces(surfaces); }; createConfig(profile, entrypoint); testWithSupportedSurfaceAttributes(test); destroyConfig(); } TEST_P(VAAPICreateSurfaces, CreateSurfacesNoAttrib) { if (!isSupported(profile, entrypoint)) { skipTest(profile, entrypoint); return; } createConfig(profile, entrypoint); Surfaces surfaces(10, VA_INVALID_SURFACE); createSurfaces(surfaces, VA_RT_FORMAT_YUV420, resolution); destroySurfaces(surfaces); destroyConfig(); } INSTANTIATE_TEST_SUITE_P( CreateSurfaces, VAAPICreateSurfaces, ::testing::Combine(::testing::ValuesIn(g_vaProfiles), ::testing::ValuesIn(g_vaEntrypoints), ::testing::ValuesIn(g_vaResolutions))); } // namespace VAAPI ================================================ FILE: test/test_va_api_display_attribs.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" #include namespace VAAPI { class VAAPIDisplayAttribs : public VAAPIFixture { protected: void SetUp() { VAAPIFixture::SetUp(); doInitialize(); ASSERT_FALSE(HasFailure()); } void TearDown() { doTerminate(); VAAPIFixture::TearDown(); } bool findDisplayAttribInQueryList(const VADisplayAttribType& type) { const DisplayAttributes::const_iterator begin = m_attribs.begin(); const DisplayAttributes::const_iterator end = m_attribs.end(); auto predicate = [&](const VADisplayAttribute & a) { return a.type == type; }; return std::find_if(begin, end, predicate) != end; } protected: DisplayAttributes m_attribs; }; static const DisplayAttribTypes types = { VADisplayAttribBrightness, VADisplayAttribContrast, VADisplayAttribHue, VADisplayAttribSaturation, VADisplayAttribBackgroundColor, VADisplayAttribDirectSurface, VADisplayAttribRotation, VADisplayAttribOutofLoopDeblock, VADisplayAttribBLEBlackMode, VADisplayAttribBLEWhiteMode, VADisplayAttribBlueStretch, VADisplayAttribSkinColorCorrection, VADisplayAttribCSCMatrix, VADisplayAttribBlendColor, VADisplayAttribOverlayAutoPaintColorKey, VADisplayAttribOverlayColorKey, VADisplayAttribRenderMode, VADisplayAttribRenderDevice, VADisplayAttribRenderRect }; TEST_F(VAAPIDisplayAttribs, MaxNumDisplayAttribs) { EXPECT_GE(vaMaxNumDisplayAttributes(m_vaDisplay), 0); } TEST_F(VAAPIDisplayAttribs, QueryDisplayAttribs) { const int maxAttribs(vaMaxNumDisplayAttributes(m_vaDisplay)); int numAttribs(0); if (maxAttribs <= 0) { numAttribs = 256; const VaapiStatus status( vaQueryDisplayAttributes(m_vaDisplay, NULL, &numAttribs)); EXPECT_TRUE( status == VaapiStatus(VA_STATUS_SUCCESS) || status == VaapiStatus(VA_STATUS_ERROR_UNIMPLEMENTED)); if (status == VaapiStatus(VA_STATUS_SUCCESS)) { EXPECT_EQ(numAttribs, 0); } } else { m_attribs.resize(maxAttribs); EXPECT_STATUS(vaQueryDisplayAttributes(m_vaDisplay, m_attribs.data(), &numAttribs)); EXPECT_GT(numAttribs, 0); EXPECT_LE(numAttribs, maxAttribs); } } TEST_F(VAAPIDisplayAttribs, GetDisplayAttribs) { const int maxAttribs(vaMaxNumDisplayAttributes(m_vaDisplay)); if (maxAttribs <= 0) { EXPECT_STATUS_EQ(VA_STATUS_ERROR_UNIMPLEMENTED, vaGetDisplayAttributes(m_vaDisplay, NULL, 0)); return; } m_attribs.resize(maxAttribs); int numAttribs(0); ASSERT_STATUS(vaQueryDisplayAttributes(m_vaDisplay, m_attribs.data(), &numAttribs)); ASSERT_GT(numAttribs, 0); ASSERT_LE(numAttribs, maxAttribs); m_attribs.resize(numAttribs); for (const auto& type : types) { VADisplayAttribute attrib{/*type:*/ type}; ASSERT_STATUS(vaGetDisplayAttributes(m_vaDisplay, &attrib, 1)); if (findDisplayAttribInQueryList(attrib.type)) { EXPECT_TRUE((attrib.flags & VA_DISPLAY_ATTRIB_GETTABLE) || (attrib.flags & VA_DISPLAY_ATTRIB_SETTABLE)); } else { EXPECT_FALSE(attrib.flags & VA_DISPLAY_ATTRIB_NOT_SUPPORTED); } } } TEST_F(VAAPIDisplayAttribs, SetDisplayAttribs) { const int maxAttribs(vaMaxNumDisplayAttributes(m_vaDisplay)); if (maxAttribs <= 0) { EXPECT_STATUS_EQ(VA_STATUS_ERROR_UNIMPLEMENTED, vaSetDisplayAttributes(m_vaDisplay, NULL, 0)); return; } m_attribs.resize(maxAttribs); int numAttribs(0); ASSERT_STATUS(vaQueryDisplayAttributes(m_vaDisplay, m_attribs.data(), &numAttribs)); ASSERT_GT(numAttribs, 0); ASSERT_LE(numAttribs, maxAttribs); m_attribs.resize(numAttribs); ASSERT_STATUS(vaGetDisplayAttributes(m_vaDisplay, m_attribs.data(), m_attribs.size())); for (auto attrib : m_attribs) { if (attrib.flags & VA_DISPLAY_ATTRIB_SETTABLE) { ASSERT_LE(attrib.min_value, attrib.max_value); attrib.value = (attrib.min_value + attrib.max_value) / 2; EXPECT_STATUS(vaSetDisplayAttributes(m_vaDisplay, &attrib, 1)); attrib.value = attrib.min_value - 1; EXPECT_STATUS_EQ(VA_STATUS_ERROR_INVALID_PARAMETER, vaSetDisplayAttributes(m_vaDisplay, &attrib, 1)); attrib.value = attrib.max_value + 1; EXPECT_STATUS_EQ(VA_STATUS_ERROR_INVALID_PARAMETER, vaSetDisplayAttributes(m_vaDisplay, &attrib, 1)); } } } } // namespace VAAPI ================================================ FILE: test/test_va_api_fixture.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" #include #include #include // for O_RDWR #include #include #if defined(_WIN32) #include #include #else #include // for close() #include #include #endif namespace VAAPI { int VAAPIFixtureSharedDisplay::s_drmHandle = -1; VADisplay VAAPIFixtureSharedDisplay::s_vaDisplay = nullptr; VAStatus VAAPIFixtureSharedDisplay::s_initStatus = VA_STATUS_SUCCESS; VAAPIFixture::VAAPIFixture() : ::testing::Test::Test() , m_vaDisplay(NULL) , m_drmHandle(-1) , m_configID(VA_INVALID_ID) , m_contextID(VA_INVALID_ID) , m_bufferID(VA_INVALID_ID) , m_skip("") { // If we do not copy the value and use the same pointer returned by getenv to restore the value // in ~VAAPIFixture with setenv, we see garbage memory being set on Windows platforms. char* libva_driver = getenv("LIBVA_DRIVER_NAME"); if (libva_driver) m_restoreDriverName = libva_driver; } VAAPIFixture::~VAAPIFixture() { m_vaDisplay = NULL; if (m_drmHandle >= 0) close(m_drmHandle); m_drmHandle = -1; // Ensure LIBVA_DRIVER_NAME environment is restored to its original // setting so successive tests use the expected driver. unsetenv("LIBVA_DRIVER_NAME"); if (!m_restoreDriverName.empty()) setenv("LIBVA_DRIVER_NAME", m_restoreDriverName.c_str(), 1); if (!m_skip.empty()) { EXPECT_FALSE(HasFailure()) << "skip message is set, but something failed"; if (!HasFailure()) { RecordProperty("skipped", true); std::cout << "[ SKIPPED ] " << m_skip << std::endl; } } } #if defined(_WIN32) static VADisplay getWin32Display(LUID* adapter) { return vaGetDisplayWin32(adapter); } #else static VADisplay getDrmDisplay(int &fd) { drmDevicePtr devices[32]; int ret, max_devices = sizeof(devices) / sizeof(devices[0]); ret = drmGetDevices2(0, devices, max_devices); EXPECT_TRUE(ret >= 0); if (ret < 0) return NULL; max_devices = ret; for (int i = 0; i < max_devices; i++) { for (int j = DRM_NODE_MAX - 1; j >= 0; j--) { drmVersionPtr version; if (!(devices[i]->available_nodes & 1 << j)) continue; fd = open(devices[i]->nodes[j], O_RDWR); if (fd < 0) continue; version = drmGetVersion(fd); if (!version) { close(fd); continue; } if (!strncmp(version->name, "vgem", 4)) { drmFreeVersion(version); close(fd); continue; } drmFreeVersion(version); VADisplay disp = vaGetDisplayDRM(fd); if (disp) return disp; close(fd); } } return NULL; } #endif VADisplay VAAPIFixture::getDisplay() { #if defined(_WIN32) m_vaDisplay = getWin32Display(NULL); #else m_vaDisplay = getDrmDisplay(m_drmHandle); #endif return m_vaDisplay; } VADisplay VAAPIFixture::doInitialize() { VADisplay vaDisplay; VAStatus status; int majorVersion, minorVersion; vaDisplay = getDisplay(); EXPECT_TRUE(vaDisplay); if (!vaDisplay) { return NULL; } status = vaInitialize(vaDisplay, &majorVersion, &minorVersion); EXPECT_STATUS(status) << "failed to initialize vaapi"; if (status != VA_STATUS_SUCCESS) { return NULL; } return vaDisplay; } void VAAPIFixture::queryConfigProfiles(Profiles& profiles) const { const int maxProfiles = vaMaxNumProfiles(m_vaDisplay); ASSERT_GT(maxProfiles, 0); profiles.resize(maxProfiles); int numProfiles(0); EXPECT_STATUS( vaQueryConfigProfiles(m_vaDisplay, profiles.data(), &numProfiles)); if (!HasFailure()) { ASSERT_LE(numProfiles, maxProfiles); ASSERT_GT(numProfiles, 0); profiles.resize(numProfiles); } else { profiles.clear(); } } void VAAPIFixture::queryConfigEntrypoints(const VAProfile& profile, Entrypoints& entrypoints, const VAStatus& expectation) const { const int maxEntrypoints = vaMaxNumEntrypoints(m_vaDisplay); ASSERT_GT(maxEntrypoints, 0); entrypoints.resize(maxEntrypoints); int numEntrypoints(0); EXPECT_STATUS_EQ( expectation, vaQueryConfigEntrypoints(m_vaDisplay, profile, entrypoints.data(), &numEntrypoints)); if ((VA_STATUS_SUCCESS == expectation) && !HasFailure()) { ASSERT_LE(numEntrypoints, maxEntrypoints); ASSERT_GT(numEntrypoints, 0); entrypoints.resize(numEntrypoints); } else { entrypoints.clear(); } } VAStatus VAAPIFixture::getSupportStatus(const VAProfile& profile, const VAEntrypoint& entrypoint) const { Profiles profiles; queryConfigProfiles(profiles); const auto pBegin(profiles.begin()); const auto pEnd(profiles.end()); if (std::find(pBegin, pEnd, profile) != pEnd) { Entrypoints entrypoints; queryConfigEntrypoints(profile, entrypoints); const auto eBegin(entrypoints.begin()); const auto eEnd(entrypoints.end()); return (std::find(eBegin, eEnd, entrypoint) != eEnd) ? VA_STATUS_SUCCESS : VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT; } return VA_STATUS_ERROR_UNSUPPORTED_PROFILE; } bool VAAPIFixture::isSupported(const VAProfile& profile, const VAEntrypoint& entrypoint) const { return VA_STATUS_SUCCESS == getSupportStatus(profile, entrypoint); } void VAAPIFixture::getConfigAttributes(const VAProfile& profile, const VAEntrypoint& entrypoint, ConfigAttributes& attribs, const VAStatus& expectation) const { const bool defaults(attribs.empty()); if (defaults) { // fill config attributes with default config attributes const auto op = [](const VAConfigAttribType & t) { return VAConfigAttrib{/*type:*/ t, /*value:*/ VA_ATTRIB_NOT_SUPPORTED}; }; std::transform(g_vaConfigAttribTypes.begin(), g_vaConfigAttribTypes.end(), std::back_inserter(attribs), op); } ASSERT_FALSE(attribs.empty()); EXPECT_STATUS_EQ( expectation, vaGetConfigAttributes( m_vaDisplay, profile, entrypoint, attribs.data(), attribs.size())); if (defaults) { // remove unsupported config attributes const auto begin(attribs.begin()); const auto end(attribs.end()); const auto predicate = [](const VAConfigAttrib & a) { return a.value == VA_ATTRIB_NOT_SUPPORTED; }; attribs.erase(std::remove_if(begin, end, predicate), end); } } void VAAPIFixture::createConfig(const VAProfile& profile, const VAEntrypoint& entrypoint, const ConfigAttributes& attribs, const VAStatus& expectation) { ASSERT_INVALID_ID(m_configID) << "test logic error: did you forget to call destroyConfig?"; EXPECT_STATUS_EQ( expectation, vaCreateConfig(m_vaDisplay, profile, entrypoint, (attribs.size() != 0 ? const_cast(attribs.data()) : NULL), attribs.size(), &m_configID)) << "profile = " << profile << std::endl << "entrypoint = " << entrypoint << std::endl << "numAttribs = " << attribs.size(); if (expectation == VA_STATUS_SUCCESS) { EXPECT_ID(m_configID); } else { EXPECT_INVALID_ID(m_configID); } } void VAAPIFixture::queryConfigAttributes( const VAProfile& expectedProfile, const VAEntrypoint& expectedEntrypoint, ConfigAttributes& attributes, const VAStatus& expectedStatus) const { VAProfile actualProfile; VAEntrypoint actualEntrypoint; int numAttributes(0); ASSERT_TRUE(attributes.empty()) << "test logic error: attributes must be empty"; const int maxAttributes = vaMaxNumConfigAttributes(m_vaDisplay); ASSERT_GT(maxAttributes, 0); attributes.resize(maxAttributes); EXPECT_STATUS_EQ( expectedStatus, vaQueryConfigAttributes(m_vaDisplay, m_configID, &actualProfile, &actualEntrypoint, attributes.data(), &numAttributes)); if (expectedStatus == VA_STATUS_SUCCESS) { EXPECT_EQ(expectedProfile, actualProfile); EXPECT_EQ(expectedEntrypoint, actualEntrypoint); ASSERT_LE(numAttributes, maxAttributes); ASSERT_GT(numAttributes, 0); attributes.resize(numAttributes); // reported config attributes should be supported for (const auto& attribute : attributes) { EXPECT_NE(VA_ATTRIB_NOT_SUPPORTED, attribute.value); } } else { attributes.clear(); } } void VAAPIFixture::destroyConfig(const VAStatus& expectation) { EXPECT_STATUS_EQ(expectation, vaDestroyConfig(m_vaDisplay, m_configID)); m_configID = VA_INVALID_ID; } void VAAPIFixture::querySurfaceAttributes(SurfaceAttributes& attribs) const { ASSERT_TRUE(attribs.empty()) << "test logic error: surface attributes must be empty"; unsigned numAttribs(0); ASSERT_STATUS(vaQuerySurfaceAttributes(m_vaDisplay, m_configID, NULL, &numAttribs)); ASSERT_GT(numAttribs, 0u); attribs.resize(numAttribs); ASSERT_STATUS(vaQuerySurfaceAttributes(m_vaDisplay, m_configID, attribs.data(), &numAttribs)); ASSERT_GT(numAttribs, 0u); EXPECT_GE(attribs.size(), numAttribs); attribs.resize(numAttribs); const uint32_t flags = 0x0 | VA_SURFACE_ATTRIB_GETTABLE | VA_SURFACE_ATTRIB_SETTABLE; for (const auto& attrib : attribs) { EXPECT_NE(attrib.flags & flags, (uint32_t)VA_SURFACE_ATTRIB_NOT_SUPPORTED); EXPECT_GE(attrib.value.type, VAGenericValueTypeInteger); EXPECT_LE(attrib.value.type, VAGenericValueTypeFunc); } } void VAAPIFixture::getMinMaxSurfaceResolution( Resolution& minRes, Resolution& maxRes) const { const Resolution::DataType maxVal = std::numeric_limits::max(); // set default resolutions minRes.width = 1; minRes.height = 1; maxRes.width = maxVal; maxRes.height = maxVal; SurfaceAttributes attribs; querySurfaceAttributes(attribs); SurfaceAttributes::const_iterator match; const SurfaceAttributes::const_iterator begin(attribs.begin()); const SurfaceAttributes::const_iterator end(attribs.end()); // minimum surface width match = std::find_if(begin, end, [](const VASurfaceAttrib & a) { return a.type == VASurfaceAttribMinWidth; }); if (match != end) { EXPECT_EQ(VAGenericValueTypeInteger, match->value.type); ASSERT_GE(match->value.value.i, 1); ASSERT_LE((Resolution::DataType)match->value.value.i, maxVal); minRes.width = match->value.value.i; } // minimum surface height match = std::find_if(begin, end, [](const VASurfaceAttrib & a) { return a.type == VASurfaceAttribMinHeight; }); if (match != end) { EXPECT_EQ(VAGenericValueTypeInteger, match->value.type); ASSERT_GE(match->value.value.i, 1); ASSERT_LE((Resolution::DataType)match->value.value.i, maxVal); minRes.height = match->value.value.i; } // maximum surface width match = std::find_if(begin, end, [](const VASurfaceAttrib & a) { return a.type == VASurfaceAttribMaxWidth; }); if (match != end) { EXPECT_EQ(VAGenericValueTypeInteger, match->value.type); ASSERT_GE(match->value.value.i, 1); ASSERT_LE((Resolution::DataType)match->value.value.i, maxVal); maxRes.width = match->value.value.i; } // maximum surface height match = std::find_if(begin, end, [](const VASurfaceAttrib & a) { return a.type == VASurfaceAttribMaxHeight; }); if (match != end) { EXPECT_EQ(VAGenericValueTypeInteger, match->value.type); ASSERT_GE(match->value.value.i, 1); ASSERT_LE((Resolution::DataType)match->value.value.i, maxVal); maxRes.height = match->value.value.i; } EXPECT_LE(minRes, maxRes); } void VAAPIFixture::createSurfaces(Surfaces& surfaces, const unsigned format, const Resolution& resolution, const SurfaceAttributes& attribs, const VAStatus& expectation) const { ASSERT_GT(surfaces.size(), 0u) << "test logic error: surfaces must not be emtpy"; for (const auto& surface : surfaces) { ASSERT_INVALID_ID(surface) << "test logic error: surfaces must all be VA_INVALID_SURFACE"; } ASSERT_STATUS_EQ( expectation, vaCreateSurfaces(m_vaDisplay, format, resolution.width, resolution.height, surfaces.data(), surfaces.size(), (attribs.size() != 0 ? const_cast(attribs.data()) : NULL), attribs.size())); if (expectation == VA_STATUS_SUCCESS) { for (const auto& surface : surfaces) { ASSERT_ID(surface); } } } void VAAPIFixture::destroySurfaces(Surfaces& surfaces) const { if (surfaces.size() != 0) { EXPECT_STATUS(vaDestroySurfaces(m_vaDisplay, surfaces.data(), surfaces.size())); } } void VAAPIFixture::createBuffer(const VABufferType& bufferType, const size_t bufferSize, const VAStatus& expectation) { ASSERT_INVALID_ID(m_bufferID) << "test logic error: did you forget to call destroyBuffer?"; EXPECT_STATUS_EQ( expectation, vaCreateBuffer(m_vaDisplay, m_contextID, bufferType, bufferSize, 1, NULL, &m_bufferID)); } void VAAPIFixture::destroyBuffer(const VAStatus& expectation) { EXPECT_STATUS_EQ(expectation, vaDestroyBuffer(m_vaDisplay, m_bufferID)); m_bufferID = VA_INVALID_ID; } void VAAPIFixture::doCreateContext(const Resolution& resolution, const VAStatus& expectation) { m_contextID = 0; ASSERT_STATUS_EQ(expectation, vaCreateContext(m_vaDisplay, m_configID, resolution.width, resolution.height, VA_PROGRESSIVE, NULL, 0, &m_contextID)); } void VAAPIFixture::doDestroyContext(const VAStatus& expectation) { ASSERT_STATUS_EQ(expectation, vaDestroyContext(m_vaDisplay, m_contextID)); } void VAAPIFixture::doTerminate() { EXPECT_STATUS(vaTerminate(m_vaDisplay)); } void VAAPIFixture::skipTest(const std::string& message) { ASSERT_FALSE(message.empty()) << "test logic error: skip message cannot be empty"; ASSERT_TRUE(m_skip.empty()) << "test logic error: test already marked as skipped"; m_skip = message; } void VAAPIFixture::skipTest(const VAProfile& profile, const VAEntrypoint& entrypoint) { std::ostringstream oss; oss << profile << " / " << entrypoint << " not supported on this hardware"; skipTest(oss.str()); } TEST_F(VAAPIFixture, getDisplay) { VADisplay vaDisplay; vaDisplay = getDisplay(); ASSERT_TRUE(vaDisplay); EXPECT_STATUS(vaTerminate(vaDisplay)); } VAAPIFixtureSharedDisplay::VAAPIFixtureSharedDisplay() : VAAPIFixture() { } void VAAPIFixtureSharedDisplay::SetUpTestSuite() { if (s_drmHandle < 0) { #if defined(_WIN32) s_vaDisplay = getWin32Display(NULL); #else s_vaDisplay = getDrmDisplay(s_drmHandle); #endif int majorVersion, minorVersion; s_initStatus = vaInitialize(s_vaDisplay, &majorVersion, &minorVersion); } } void VAAPIFixtureSharedDisplay::TearDownTestSuite() { if (s_vaDisplay) { if (s_initStatus == VA_STATUS_SUCCESS) { vaTerminate(s_vaDisplay); s_vaDisplay = nullptr; } else { s_initStatus = VA_STATUS_SUCCESS; } } if (s_drmHandle >= 0) { close(s_drmHandle); s_drmHandle = -1; } } void VAAPIFixtureSharedDisplay::SetUp() { EXPECT_STATUS(s_initStatus) << "failed to initialize vaapi"; m_vaDisplay = s_vaDisplay; } } // namespace VAAPI ================================================ FILE: test/test_va_api_fixture.h ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #ifndef TESTVAAPI_test_va_api_fixture_h #define TESTVAAPI_test_va_api_fixture_h #include "test.h" #include "test_data.h" #include "test_defs.h" #include "test_streamable.h" namespace VAAPI { // The fixture for testing class Foo. class VAAPIFixture : public ::testing::Test { public: VAAPIFixture(); virtual ~VAAPIFixture(); VADisplay getDisplay(); VADisplay doInitialize(); void doTerminate(); void doCreateContext(const Resolution&, const VAStatus& expectation = VA_STATUS_SUCCESS); void doDestroyContext(const VAStatus& expectation = VA_STATUS_SUCCESS); void queryConfigProfiles(Profiles&) const; void queryConfigEntrypoints(const VAProfile&, Entrypoints&, const VAStatus& = VA_STATUS_SUCCESS) const; VAStatus getSupportStatus(const VAProfile&, const VAEntrypoint&) const; bool isSupported(const VAProfile&, const VAEntrypoint&) const; void getConfigAttributes(const VAProfile&, const VAEntrypoint&, ConfigAttributes&, const VAStatus& = VA_STATUS_SUCCESS) const; void createConfig(const VAProfile&, const VAEntrypoint&, const ConfigAttributes& = ConfigAttributes(), const VAStatus& = VA_STATUS_SUCCESS); void queryConfigAttributes(const VAProfile&, const VAEntrypoint&, ConfigAttributes&, const VAStatus& = VA_STATUS_SUCCESS) const; void destroyConfig(const VAStatus& = VA_STATUS_SUCCESS); void querySurfaceAttributes(SurfaceAttributes&) const; void getMinMaxSurfaceResolution(Resolution&, Resolution&) const; void createSurfaces(Surfaces&, const unsigned format, const Resolution&, const SurfaceAttributes& = SurfaceAttributes(), const VAStatus& = VA_STATUS_SUCCESS) const; void destroySurfaces(Surfaces&) const; void createBuffer(const VABufferType&, const size_t, const VAStatus& = VA_STATUS_SUCCESS); void destroyBuffer(const VAStatus& = VA_STATUS_SUCCESS); void skipTest(const std::string& message); void skipTest(const VAProfile&, const VAEntrypoint&); protected: // You can remove any or all of the following functions if its body // is empty. // If the constructor and destructor are not enough for setting up // and cleaning up each test, you can define the following methods: virtual void SetUp() { // Code here will be called immediately after the constructor (right // before each test). } virtual void TearDown() { // Code here will be called immediately after each test (right // before the destructor). } // Objects declared here can be used by all tests in the test case for // VAAPIFixture. VADisplay m_vaDisplay; private: std::string m_restoreDriverName; int m_drmHandle; VAConfigID m_configID; VAContextID m_contextID; VABufferID m_bufferID; std::string m_skip; }; /* Test fixture that initializes a shared display once per test suite, and * provides it to you in m_vaDisplay from its SetUp() routine. */ class VAAPIFixtureSharedDisplay : public VAAPIFixture { public: VAAPIFixtureSharedDisplay(); virtual void SetUp(); static void SetUpTestSuite(); static void TearDownTestSuite(); private: static int s_drmHandle; static VADisplay s_vaDisplay; static VAStatus s_initStatus; }; } // namespace VAAPI #endif ================================================ FILE: test/test_va_api_get_create_config.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" #include namespace VAAPI { class VAAPIGetCreateConfig : public VAAPIFixture , public ::testing::WithParamInterface > { public: VAAPIGetCreateConfig() : profile(::testing::get<0>(GetParam())) , entrypoint(::testing::get<1>(GetParam())) { } protected: const VAProfile& profile; const VAEntrypoint& entrypoint; virtual void SetUp() { VAAPIFixture::SetUp(); doInitialize(); ASSERT_FALSE(HasFailure()); } virtual void TearDown() { doTerminate(); VAAPIFixture::TearDown(); } }; TEST_P(VAAPIGetCreateConfig, CreateConfigWithAttributes) { const VAStatus expectedStatus = getSupportStatus(profile, entrypoint); if (VA_STATUS_SUCCESS != expectedStatus) { createConfig(profile, entrypoint, ConfigAttributes(), expectedStatus); destroyConfig(VA_STATUS_ERROR_INVALID_CONFIG); return; } // profile and entrypoint are supported ConfigAttributes attribs; getConfigAttributes(profile, entrypoint, attribs); // create config with each individual supported attribute for (const auto& attrib : attribs) { const auto match = g_vaConfigAttribBitMasks.find(attrib.type); if (match != g_vaConfigAttribBitMasks.end()) { // it's a bitfield attribute uint32_t bitfield(0); const BitMasks& masks = match->second; for (const auto mask : masks) { // for all bitmasks const bool isSet((attrib.value & mask) == mask); std::ostringstream oss; oss << std::hex << "0x" << attrib.type << ":0x" << attrib.value << ":0x" << mask << ":" << isSet; SCOPED_TRACE(oss.str()); if (isSet) { // supported value bitfield |= mask; createConfig(profile, entrypoint, ConfigAttributes( 1, {/*type :*/ attrib.type, /*value :*/ mask })); destroyConfig(); } else { // unsupported value const VAStatus expectation( (attrib.type == VAConfigAttribRTFormat) ? VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT : VA_STATUS_ERROR_INVALID_VALUE); createConfig(profile, entrypoint, ConfigAttributes( 1, {/*type :*/ attrib.type, /*value :*/ mask}), expectation); destroyConfig(VA_STATUS_ERROR_INVALID_CONFIG); } } // ensure we processed all supported values EXPECT_EQ(bitfield, attrib.value); } else { // it's a standard attribute std::ostringstream oss; oss << std::hex << "0x" << attrib.type << ":0x" << attrib.value; SCOPED_TRACE(oss.str()); createConfig(profile, entrypoint, ConfigAttributes(1, attrib)); destroyConfig(); } } } TEST_P(VAAPIGetCreateConfig, CreateConfigNoAttributes) { const VAStatus expectedStatus = getSupportStatus(profile, entrypoint); if (VA_STATUS_SUCCESS != expectedStatus) { createConfig(profile, entrypoint, ConfigAttributes(), expectedStatus); destroyConfig(VA_STATUS_ERROR_INVALID_CONFIG); return; } // profile and entrypoint are supported createConfig(profile, entrypoint); destroyConfig(); } TEST_P(VAAPIGetCreateConfig, CreateConfigPackedHeaders) { if (!isSupported(profile, entrypoint)) { skipTest(profile, entrypoint); return; } ConfigAttributes packedHeaders{{/*.type = */VAConfigAttribEncPackedHeaders}}; getConfigAttributes(profile, entrypoint, packedHeaders); for (uint32_t v(0x00); v < 0xff; ++v) { ConfigAttributes attribs = {{ /*.type = */VAConfigAttribEncPackedHeaders, /*.value = */v } }; if ((VA_ATTRIB_NOT_SUPPORTED == packedHeaders.front().value) || (v & ~packedHeaders.front().value)) { // Creating a config should fail if attribute is not supported // or for values that are not in the set of supported values. createConfig( profile, entrypoint, attribs, VA_STATUS_ERROR_INVALID_VALUE); destroyConfig(VA_STATUS_ERROR_INVALID_CONFIG); } else { // Creating a config should succeed for any value within the set of // supported values, including 0x0 (i.e. VA_ENC_PACKED_HEADER_NONE). createConfig(profile, entrypoint, attribs, VA_STATUS_SUCCESS); destroyConfig(VA_STATUS_SUCCESS); } } } INSTANTIATE_TEST_SUITE_P( GetCreateConfig, VAAPIGetCreateConfig, ::testing::Combine(::testing::ValuesIn(g_vaProfiles), ::testing::ValuesIn(g_vaEntrypoints))); } // namespace VAAPI ================================================ FILE: test/test_va_api_get_max_values.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" namespace VAAPI { class VAAPIGetMaxValues : public VAAPIFixtureSharedDisplay { }; TEST_F(VAAPIGetMaxValues, CheckMaxProfile) { EXPECT_GT(vaMaxNumProfiles(m_vaDisplay), 0); } TEST_F(VAAPIGetMaxValues, CheckMaxEntrypoints) { EXPECT_GT(vaMaxNumEntrypoints(m_vaDisplay), 0); } TEST_F(VAAPIGetMaxValues, CheckMaxConfigAttributes) { EXPECT_GT(vaMaxNumConfigAttributes(m_vaDisplay), 0); } } // namespace VAAPI ================================================ FILE: test/test_va_api_init_terminate.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" #include #include #if defined(_WIN32) #include #endif namespace VAAPI { class VAAPIInitTerminate : public VAAPIFixture { protected: // call vaInitialize and vaTerminate expecting success void doInitTerminate() { int major, minor; VADisplay display = getDisplay(); ASSERT_TRUE(display); ASSERT_STATUS(vaInitialize(display, &major, &minor)); EXPECT_EQ(VA_MAJOR_VERSION, major) << "Check installed driver version"; EXPECT_LE(VA_MINOR_VERSION, minor) << "Check installed driver version"; ASSERT_STATUS(vaTerminate(display)); } }; TEST_F(VAAPIInitTerminate, vaInitialize_vaTerminate) { doInitTerminate(); } TEST_F(VAAPIInitTerminate, vaInitialize_vaTerminate_Bad_Environment) { int major, minor; VADisplay display = getDisplay(); ASSERT_TRUE(display); ASSERT_EQ(0, setenv("LIBVA_DRIVER_NAME", "bad", 1)); EXPECT_STATUS_EQ( VA_STATUS_ERROR_UNKNOWN, vaInitialize(display, &major, &minor)); EXPECT_EQ(0, unsetenv("LIBVA_DRIVER_NAME")); EXPECT_STATUS(vaTerminate(display)); } TEST_F(VAAPIInitTerminate, vaInitialize_vaTerminate_Bad_vaSetDriverName) { int major, minor; VADisplay display = getDisplay(); ASSERT_TRUE(display); { // driver name length == 0 invalid char driver[1] = ""; EXPECT_STATUS_EQ( VA_STATUS_ERROR_INVALID_PARAMETER, vaSetDriverName(display, driver)); } { // driver name length >= 256 invalid char driver[257]; driver[256] = '\0'; std::string(256, 'x').copy(driver, 256); EXPECT_STATUS_EQ( VA_STATUS_ERROR_INVALID_PARAMETER, vaSetDriverName(display, driver)); } { // acceptable driver name, but does not exist char driver[4] = "bad"; EXPECT_STATUS(vaSetDriverName(display, driver)); EXPECT_STATUS_EQ( VA_STATUS_ERROR_UNKNOWN, vaInitialize(display, &major, &minor)); } EXPECT_STATUS(vaTerminate(display)); } TEST_F(VAAPIInitTerminate, InitTermWithoutDisplay) { VADisplay display = 0; // no display int major, minor; EXPECT_STATUS_EQ( VA_STATUS_ERROR_INVALID_DISPLAY, vaInitialize(display, &major, &minor)); EXPECT_STATUS_EQ(VA_STATUS_ERROR_INVALID_DISPLAY, vaTerminate(display)); } } // namespace VAAPI ================================================ FILE: test/test_va_api_query_config.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" namespace VAAPI { class VAAPIQueryConfig : public VAAPIFixtureSharedDisplay , public ::testing::WithParamInterface { }; TEST_P(VAAPIQueryConfig, CheckEntrypointsForProfile) { int numEntrypoints = 0, numProfiles = 0; const VAProfile& profile = GetParam(); const int maxProfiles = vaMaxNumProfiles(m_vaDisplay); EXPECT_TRUE(maxProfiles > 0) << maxProfiles << " profiles are reported"; Profiles profiles(maxProfiles, VAProfileNone); EXPECT_STATUS( vaQueryConfigProfiles(m_vaDisplay, profiles.data(), &numProfiles)); EXPECT_TRUE(numProfiles > 0) << numProfiles << " profiles are supported by driver"; profiles.resize(numProfiles); const int maxEntrypoints = vaMaxNumEntrypoints(m_vaDisplay); EXPECT_TRUE(maxEntrypoints > 0) << maxEntrypoints << " entrypoints are reported"; Entrypoints entrypoints(maxEntrypoints); const Profiles::const_iterator begin = profiles.begin(); const Profiles::const_iterator end = profiles.end(); if (std::find(begin, end, profile) != end) { EXPECT_STATUS(vaQueryConfigEntrypoints(m_vaDisplay, profile, entrypoints.data(), &numEntrypoints)) << " profile used is " << profile; EXPECT_TRUE(numEntrypoints > 0) << profile << " is supported but no entrypoints are reported"; } else { EXPECT_STATUS_EQ( VA_STATUS_ERROR_UNSUPPORTED_PROFILE, vaQueryConfigEntrypoints( m_vaDisplay, profile, entrypoints.data(), &numEntrypoints)) << " profile used is " << profile; EXPECT_FALSE(numEntrypoints > 0) << profile << " profile is not supported but \ valid entrypoints are reported "; } } INSTANTIATE_TEST_SUITE_P( QueryConfig, VAAPIQueryConfig, ::testing::ValuesIn(g_vaProfiles)); } // namespace VAAPI ================================================ FILE: test/test_va_api_query_vendor.cpp ================================================ /* * Copyright (C) 2016 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include "test_va_api_fixture.h" namespace VAAPI { // Inheriting from VAAPIFixture is not necessary as this test is not // overriding or extending any functionality defined in fixture. // Thus, a typedef is sufficient for getting a unique test name for gtest. typedef VAAPIFixture VAAPIQueryVendor; TEST_F(VAAPIQueryVendor, NotEmpty) { int major, minor; VADisplay display = getDisplay(); ASSERT_TRUE(display); ASSERT_STATUS(vaInitialize(display, &major, &minor)); const std::string vendor(vaQueryVendorString(display)); EXPECT_GT(vendor.size(), 0u); ASSERT_STATUS(vaTerminate(display)); } } // namespace VAAPI ================================================ FILE: vainfo/Makefile.am ================================================ # Copyright (c) 2007 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. bin_PROGRAMS = vainfo vainfo_cflags = \ -I$(top_srcdir)/common \ $(LIBVA_CFLAGS) \ -DLIBVA_VERSION_S="\"$(LIBVA_VERSION)\"" \ -Wall \ $(NULL) if USE_SSP vainfo_cflags += -fstack-protector endif vainfo_libs = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ $(NULL) vainfo_SOURCES = vainfo.c noinst_HEADERS = $(source_h) vainfo_CFLAGS = $(vainfo_cflags) vainfo_LDADD = $(vainfo_libs) valgrind: vainfo valgrind --leak-check=full --show-reachable=yes .libs/vainfo; ================================================ FILE: vainfo/meson.build ================================================ executable('vainfo', [ 'vainfo.c' ], c_args: [ '-DLIBVA_VERSION_S="' + meson.project_version() + '"' ], dependencies: [ libva_display_dep, dependency('threads'), ], install: true) ================================================ FILE: vainfo/vainfo.c ================================================ /* * Copyright (c) 2007 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ #include #include #include #include #if !defined(_WIN32) #include #endif #include #include #include "va_display.h" #define CHECK_VASTATUS(va_status,func, ret) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s failed with error code %d (%s),exit\n",func, va_status, vaErrorStr(va_status)); \ ret_val = ret; \ goto error; \ } static int show_all_opt = 0; static void usage_exit(const char *program) { fprintf(stdout, "Show information from VA-API driver\n"); fprintf(stdout, "Usage: %s --help\n", program); fprintf(stdout, "\t--help print this message\n\n"); fprintf(stdout, "Usage: %s [options]\n", program); fprintf(stdout, " -a, --all Show all supported attributes\n"); va_print_display_options(stdout); exit(0); } static void parse_args(const char *name, int argc, char **argv) { int c; int option_index = 0; static struct option long_options[] = { {"help", no_argument, 0, 'h'}, {"all", no_argument, 0, 'a'}, { NULL, 0, NULL, 0 } }; va_init_display_args(&argc, argv); while ((c = getopt_long(argc, argv, "a", long_options, &option_index)) != -1) { switch (c) { case 'a': show_all_opt = 1; break; case 'h': default: usage_exit(name); break; } } } static int show_config_attributes(VADisplay va_dpy, VAProfile profile, VAEntrypoint entrypoint) { struct str_format { int format; char *name; }; VAStatus va_status; int i, n; VAConfigAttrib attrib_list[VAConfigAttribTypeMax]; int max_num_attributes = VAConfigAttribTypeMax; for (i = 0; i < max_num_attributes; i++) { attrib_list[i].type = i; } va_status = vaGetConfigAttributes(va_dpy, profile, entrypoint, attrib_list, max_num_attributes); if (VA_STATUS_ERROR_UNSUPPORTED_PROFILE == va_status || VA_STATUS_ERROR_UNSUPPORTED_ENTRYPOINT == va_status) return 0; printf("%s/%s\n", vaProfileStr(profile), vaEntrypointStr(entrypoint)); if (attrib_list[VAConfigAttribRTFormat].value != VA_ATTRIB_NOT_SUPPORTED) { static struct str_format list[] = { {VA_RT_FORMAT_YUV420, "VA_RT_FORMAT_YUV420"}, {VA_RT_FORMAT_YUV422, "VA_RT_FORMAT_YUV422"}, {VA_RT_FORMAT_YUV444, "VA_RT_FORMAT_YUV444"}, {VA_RT_FORMAT_YUV411, "VA_RT_FORMAT_YUV411"}, {VA_RT_FORMAT_YUV400, "VA_RT_FORMAT_YUV400"}, {VA_RT_FORMAT_YUV420_10, "VA_RT_FORMAT_YUV420_10"}, {VA_RT_FORMAT_YUV422_10, "VA_RT_FORMAT_YUV422_10"}, {VA_RT_FORMAT_YUV444_10, "VA_RT_FORMAT_YUV444_10"}, {VA_RT_FORMAT_YUV420_12, "VA_RT_FORMAT_YUV420_12"}, {VA_RT_FORMAT_YUV422_12, "VA_RT_FORMAT_YUV422_12"}, {VA_RT_FORMAT_YUV444_12, "VA_RT_FORMAT_YUV444_12"}, {VA_RT_FORMAT_RGB16, "VA_RT_FORMAT_RGB16"}, {VA_RT_FORMAT_RGB32, "VA_RT_FORMAT_RGB32"}, {VA_RT_FORMAT_RGBP, "VA_RT_FORMAT_RGBP"}, {VA_RT_FORMAT_RGB32_10, "VA_RT_FORMAT_RGB32_10"}, {VA_RT_FORMAT_RGB32_10BPP, "VA_RT_FORMAT_RGB32_10BPP"}, {VA_RT_FORMAT_YUV420_10BPP, "VA_RT_FORMAT_YUV420_10BPP"}, {VA_RT_FORMAT_PROTECTED, "VA_RT_FORMAT_PROTECTED"}, }; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribRTFormat].type)); for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribRTFormat].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } if (attrib_list[VAConfigAttribSpatialResidual].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: %x\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribSpatialResidual].type), attrib_list[VAConfigAttribSpatialResidual].value); } if (attrib_list[VAConfigAttribSpatialClipping].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: %x\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribSpatialClipping].type), attrib_list[VAConfigAttribSpatialClipping].value); } if (attrib_list[VAConfigAttribIntraResidual].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: %x\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribIntraResidual].type), attrib_list[VAConfigAttribIntraResidual].value); } if (attrib_list[VAConfigAttribEncryption].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: %x\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncryption].type), attrib_list[VAConfigAttribEncryption].value); } if (attrib_list[VAConfigAttribRateControl].value != VA_ATTRIB_NOT_SUPPORTED) { static struct str_format list[] = { {VA_RC_NONE, "VA_RC_NONE"}, {VA_RC_CBR, "VA_RC_CBR"}, {VA_RC_VBR, "VA_RC_VBR"}, {VA_RC_VCM, "VA_RC_VCM"}, {VA_RC_CQP, "VA_RC_CQP"}, {VA_RC_VBR_CONSTRAINED, "VA_RC_VBR_CONSTRAINED"}, {VA_RC_ICQ, "VA_RC_ICQ"}, {VA_RC_MB, "VA_RC_MB"}, {VA_RC_CFS, "VA_RC_CFS"}, {VA_RC_PARALLEL, "VA_RC_PARALLEL"}, {VA_RC_QVBR, "VA_RC_QVBR"}, {VA_RC_AVBR, "VA_RC_AVBR"}, {VA_RC_TCBRC, "VA_RC_TCBRC"}, }; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribRateControl].type)); for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribRateControl].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } if (attrib_list[VAConfigAttribDecSliceMode].value != VA_ATTRIB_NOT_SUPPORTED) { static struct str_format list[] = { {VA_DEC_SLICE_MODE_NORMAL, "VA_DEC_SLICE_MODE_NORMAL"}, {VA_DEC_SLICE_MODE_BASE, "VA_DEC_SLICE_MODE_BASE"}, }; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribDecSliceMode].type)); for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribDecSliceMode].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } if (attrib_list[VAConfigAttribDecJPEG].value & (~VA_ATTRIB_NOT_SUPPORTED)) { static struct str_format list[] = { {1 << VA_ROTATION_NONE, "VA_ROTATION_NONE"}, {1 << VA_ROTATION_90, "VA_ROTATION_90"}, {1 << VA_ROTATION_180, "VA_ROTATION_180"}, {1 << VA_ROTATION_270, "VA_ROTATION_270"}, }; VAConfigAttribValDecJPEG *config = (VAConfigAttribValDecJPEG*)&attrib_list[VAConfigAttribDecJPEG].value; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribDecJPEG].type)); for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (config->bits.rotation & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } if (attrib_list[VAConfigAttribDecProcessing].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s:", vaConfigAttribTypeStr(attrib_list[VAConfigAttribDecProcessing].type)); if (VA_DEC_PROCESSING_NONE == attrib_list[VAConfigAttribDecProcessing].value) printf(" VA_DEC_PROCESSING_NONE\n"); else if (VA_DEC_PROCESSING == attrib_list[VAConfigAttribDecProcessing].value) printf(" VA_DEC_PROCESSING\n"); } if (attrib_list[VAConfigAttribEncPackedHeaders].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncPackedHeaders].type)); if (VA_ENC_PACKED_HEADER_NONE == attrib_list[VAConfigAttribEncPackedHeaders].value) printf("VA_ENC_PACKED_HEADER_NONE\n"); else { static struct str_format list[] = { {VA_ENC_PACKED_HEADER_SEQUENCE, "VA_ENC_PACKED_HEADER_SEQUENCE"}, {VA_ENC_PACKED_HEADER_PICTURE, "VA_ENC_PACKED_HEADER_PICTURE"}, {VA_ENC_PACKED_HEADER_SLICE, "VA_ENC_PACKED_HEADER_SLICE"}, {VA_ENC_PACKED_HEADER_MISC, "VA_ENC_PACKED_HEADER_MISC"}, {VA_ENC_PACKED_HEADER_RAW_DATA, "VA_ENC_PACKED_HEADER_RAW_DATA"}, }; for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribEncPackedHeaders].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } } if (attrib_list[VAConfigAttribEncInterlaced].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncInterlaced].type)); if (VA_ENC_INTERLACED_NONE == attrib_list[VAConfigAttribEncInterlaced].value) printf("VA_ENC_INTERLACED_NONE\n"); else { static struct str_format list[] = { {VA_ENC_INTERLACED_FRAME, "VA_ENC_INTERLACED_FRAME"}, {VA_ENC_INTERLACED_FIELD, "VA_ENC_INTERLACED_FIELD"}, {VA_ENC_INTERLACED_MBAFF, "VA_ENC_INTERLACED_MBAFF"}, {VA_ENC_INTERLACED_PAFF, "VA_ENC_INTERLACED_PAFF"}, {VA_ENC_PACKED_HEADER_RAW_DATA, "VA_ENC_PACKED_HEADER_RAW_DATA"}, }; for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribEncInterlaced].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } } if (attrib_list[VAConfigAttribEncMaxRefFrames].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMaxRefFrames].type)); printf("l0=%d\n", attrib_list[VAConfigAttribEncMaxRefFrames].value & 0xffff); printf("%-*sl1=%d\n", 45, "", (attrib_list[VAConfigAttribEncMaxRefFrames].value >> 16) & 0xffff); } #if VA_CHECK_VERSION(1, 21, 0) if (attrib_list[VAConfigAttribEncMaxTileRows].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMaxTileRows].type), attrib_list[VAConfigAttribEncMaxTileRows].value); } if (attrib_list[VAConfigAttribEncMaxTileCols].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMaxTileCols].type), attrib_list[VAConfigAttribEncMaxTileCols].value); } #endif if (attrib_list[VAConfigAttribEncMaxSlices].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMaxSlices].type), attrib_list[VAConfigAttribEncMaxSlices].value); } if (attrib_list[VAConfigAttribEncSliceStructure].value != VA_ATTRIB_NOT_SUPPORTED) { static struct str_format list[] = { {VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS, "VA_ENC_SLICE_STRUCTURE_POWER_OF_TWO_ROWS"}, {VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS, "VA_ENC_SLICE_STRUCTURE_ARBITRARY_MACROBLOCKS"}, {VA_ENC_SLICE_STRUCTURE_EQUAL_ROWS, "VA_ENC_SLICE_STRUCTURE_EQUAL_ROWS"}, {VA_ENC_SLICE_STRUCTURE_MAX_SLICE_SIZE, "VA_ENC_SLICE_STRUCTURE_MAX_SLICE_SIZE"}, {VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS, "VA_ENC_SLICE_STRUCTURE_ARBITRARY_ROWS"}, }; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncSliceStructure].type)); for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribEncSliceStructure].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } if (attrib_list[VAConfigAttribEncMacroblockInfo].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: supported\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncMacroblockInfo].type)); } if (attrib_list[VAConfigAttribMaxPictureWidth].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribMaxPictureWidth].type), attrib_list[VAConfigAttribMaxPictureWidth].value); } if (attrib_list[VAConfigAttribMaxPictureHeight].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribMaxPictureHeight].type), attrib_list[VAConfigAttribMaxPictureHeight].value); } if (attrib_list[VAConfigAttribEncJPEG].value & (~VA_ATTRIB_NOT_SUPPORTED)) { VAConfigAttribValEncJPEG *config = (VAConfigAttribValEncJPEG*)&attrib_list[VAConfigAttribEncJPEG].value; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncJPEG].type)); printf("arithmatic_coding_mode=%d\n", config->bits.arithmatic_coding_mode); printf("%-*sprogressive_dct_mode=%d\n", 45, "", config->bits.progressive_dct_mode); printf("%-*snon_interleaved_mode=%d\n", 45, "", config->bits.non_interleaved_mode); printf("%-*sdifferential_mode=%d\n", 45, "", config->bits.differential_mode); printf("%-*sdifferential_mode=%d\n", 45, "", config->bits.differential_mode); printf("%-*smax_num_components=%d\n", 45, "", config->bits.max_num_components); printf("%-*smax_num_scans=%d\n", 45, "", config->bits.max_num_scans); printf("%-*smax_num_huffman_tables=%d\n", 45, "", config->bits.max_num_huffman_tables); printf("%-*smax_num_quantization_tables=%d\n", 45, "", config->bits.max_num_quantization_tables); } if (attrib_list[VAConfigAttribEncQualityRange].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: number of supported quality levels is %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncQualityRange].type), attrib_list[VAConfigAttribEncQualityRange].value <= 1 ? 1 : attrib_list[VAConfigAttribEncQualityRange].value); } if (attrib_list[VAConfigAttribEncQuantization].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s:", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncQuantization].type)); if (VA_ENC_QUANTIZATION_NONE == attrib_list[VAConfigAttribEncQuantization].value) printf(" VA_ENC_QUANTIZATION_NONE\n"); else if (VA_ENC_QUANTIZATION_TRELLIS_SUPPORTED == attrib_list[VAConfigAttribEncQuantization].value) printf(" VA_ENC_QUANTIZATION_TRELLIS_SUPPORTED\n"); } if (attrib_list[VAConfigAttribEncIntraRefresh].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncIntraRefresh].type)); if (VA_ENC_INTRA_REFRESH_NONE == attrib_list[VAConfigAttribEncIntraRefresh].value) printf("VA_ENC_INTRA_REFRESH_NONE\n"); else { static struct str_format list[] = { {VA_ENC_INTRA_REFRESH_ROLLING_COLUMN, "VA_ENC_INTRA_REFRESH_ROLLING_COLUMN"}, {VA_ENC_INTRA_REFRESH_ROLLING_ROW, "VA_ENC_INTRA_REFRESH_ROLLING_ROW"}, {VA_ENC_INTRA_REFRESH_ADAPTIVE, "VA_ENC_INTRA_REFRESH_ADAPTIVE"}, {VA_ENC_INTRA_REFRESH_CYCLIC, "VA_ENC_INTRA_REFRESH_CYCLIC"}, {VA_ENC_INTRA_REFRESH_P_FRAME, "VA_ENC_INTRA_REFRESH_P_FRAME"}, {VA_ENC_INTRA_REFRESH_B_FRAME, "VA_ENC_INTRA_REFRESH_B_FRAME"}, {VA_ENC_INTRA_REFRESH_MULTI_REF, "VA_ENC_INTRA_REFRESH_MULTI_REF"}, }; for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribEncIntraRefresh].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } } if (attrib_list[VAConfigAttribEncSkipFrame].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: supported\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncSkipFrame].type)); } if (attrib_list[VAConfigAttribEncROI].value & (~VA_ATTRIB_NOT_SUPPORTED)) { VAConfigAttribValEncROI *config = (VAConfigAttribValEncROI*)&attrib_list[VAConfigAttribEncROI].value; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncROI].type)); printf("num_roi_regions=%d\n", config->bits.num_roi_regions); printf("%-*sroi_rc_priority_support=%d\n", 45, "", config->bits.roi_rc_priority_support); printf("%-*sroi_rc_qp_delta_support=%d\n", 45, "", config->bits.roi_rc_qp_delta_support); } if (attrib_list[VAConfigAttribEncRateControlExt].value & (~VA_ATTRIB_NOT_SUPPORTED)) { VAConfigAttribValEncRateControlExt *config = (VAConfigAttribValEncRateControlExt*)&attrib_list[VAConfigAttribEncRateControlExt].value; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncRateControlExt].type)); printf("max_num_temporal_layers_minus1=%d ", config->bits.max_num_temporal_layers_minus1); printf("temporal_layer_bitrate_control_flag=%d\n", config->bits.temporal_layer_bitrate_control_flag); } if (attrib_list[VAConfigAttribProcessingRate].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribProcessingRate].type)); static struct str_format list[] = { {VA_PROCESSING_RATE_ENCODE, "VA_PROCESSING_RATE_ENCODE"}, {VA_PROCESSING_RATE_DECODE, "VA_PROCESSING_RATE_DECODE"}, }; for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribProcessingRate].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } if (attrib_list[VAConfigAttribEncDirtyRect].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: number of supported regions is %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncDirtyRect].type), attrib_list[VAConfigAttribEncDirtyRect].value); } if (attrib_list[VAConfigAttribEncParallelRateControl].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: number of supported layers is %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncParallelRateControl].type), attrib_list[VAConfigAttribEncParallelRateControl].value); } if (attrib_list[VAConfigAttribEncDynamicScaling].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: supported\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncDynamicScaling].type)); } if (attrib_list[VAConfigAttribFrameSizeToleranceSupport].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribFrameSizeToleranceSupport].type), attrib_list[VAConfigAttribFrameSizeToleranceSupport].value); } if (attrib_list[VAConfigAttribFEIFunctionType].value != VA_ATTRIB_NOT_SUPPORTED) { printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribFEIFunctionType].type)); static struct str_format list[] = { {VA_FEI_FUNCTION_ENC, "VA_FEI_FUNCTION_ENC"}, {VA_FEI_FUNCTION_PAK, "VA_FEI_FUNCTION_PAK"}, {VA_FEI_FUNCTION_ENC_PAK, "VA_FEI_FUNCTION_ENC_PAK"}, }; for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribFEIFunctionType].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } if (attrib_list[VAConfigAttribFEIMVPredictors].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: number of supported MV predictors is %d\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribFEIMVPredictors].type), attrib_list[VAConfigAttribFEIMVPredictors].value); } if (attrib_list[VAConfigAttribStats].value & (~VA_ATTRIB_NOT_SUPPORTED)) { VAConfigAttribValStats *config = (VAConfigAttribValStats*)&attrib_list[VAConfigAttribStats].value; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribStats].type)); printf("max_num_past_references=%d\n", config->bits.max_num_past_references); printf("%-*smax_num_future_references=%d\n", 45, "", config->bits.max_num_future_references); printf("%-*snum_outputs=%d\n", 45, "", config->bits.num_outputs); printf("%-*sinterlaced=%d\n", 45, "", config->bits.interlaced); } if (attrib_list[VAConfigAttribEncTileSupport].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: supported\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribEncTileSupport].type)); } if (attrib_list[VAConfigAttribQPBlockSize].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: supported\n", vaConfigAttribTypeStr(attrib_list[VAConfigAttribQPBlockSize].type)); } if (attrib_list[VAConfigAttribMaxFrameSize].value & (~VA_ATTRIB_NOT_SUPPORTED)) { VAConfigAttribValMaxFrameSize *config = (VAConfigAttribValMaxFrameSize*)&attrib_list[VAConfigAttribMaxFrameSize].value; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribMaxFrameSize].type)); printf("max_frame_size=%d\n", config->bits.max_frame_size); printf("%-*smultiple_pass=%d\n", 45, "", config->bits.multiple_pass); } if (attrib_list[VAConfigAttribPredictionDirection].value & (~VA_ATTRIB_NOT_SUPPORTED)) { printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribPredictionDirection].type)); static struct str_format list[] = { {VA_PREDICTION_DIRECTION_PREVIOUS, "VA_PREDICTION_DIRECTION_PREVIOUS"}, {VA_PREDICTION_DIRECTION_FUTURE, "VA_PREDICTION_DIRECTION_FUTURE"}, }; for (i = 0, n = 0; i < sizeof(list) / sizeof(list[0]); i++) { if (attrib_list[VAConfigAttribPredictionDirection].value & list[i].format) { printf("%-*s%s\n", 0 == n ? 0 : 45, "", list[i].name); n++; } } } if (attrib_list[VAConfigAttribMultipleFrame].value & (~VA_ATTRIB_NOT_SUPPORTED)) { VAConfigAttribValMultipleFrame *config = (VAConfigAttribValMultipleFrame*)&attrib_list[VAConfigAttribMultipleFrame].value; printf(" %-39s: ", vaConfigAttribTypeStr(attrib_list[VAConfigAttribMultipleFrame].type)); printf("max_num_concurrent_frames=%d\n", config->bits.max_num_concurrent_frames); printf("%-*smixed_quality_level=%d\n", 45, "", config->bits.mixed_quality_level); } printf("\n"); return 0; } int main(int argc, const char* argv[]) { VADisplay va_dpy; VAStatus va_status; int major_version, minor_version; const char *driver; const char *name = strrchr(argv[0], '/'); VAProfile profile, *profile_list = NULL; int num_profiles, max_num_profiles, i; VAEntrypoint entrypoint, *entrypoints = NULL; int num_entrypoint = 0; int ret_val = 0; if (name) name++; else name = argv[0]; parse_args(name, argc, (char **)argv); va_dpy = va_open_display(); if (NULL == va_dpy) { fprintf(stderr, "%s: vaGetDisplay() failed\n", name); return 2; } va_status = vaInitialize(va_dpy, &major_version, &minor_version); CHECK_VASTATUS(va_status, "vaInitialize", 3); printf("%s: VA-API version: %d.%d", name, major_version, minor_version); #ifdef ANDROID printf("\n"); #else printf(" (libva %s)\n", LIBVA_VERSION_S); #endif // ANDROID driver = vaQueryVendorString(va_dpy); printf("%s: Driver version: %s\n", name, driver ? driver : ""); num_entrypoint = vaMaxNumEntrypoints(va_dpy); entrypoints = malloc(num_entrypoint * sizeof(VAEntrypoint)); if (!entrypoints) { printf("Failed to allocate memory for entrypoint list\n"); ret_val = -1; goto error; } max_num_profiles = vaMaxNumProfiles(va_dpy); profile_list = malloc(max_num_profiles * sizeof(VAProfile)); if (!profile_list) { printf("Failed to allocate memory for profile list\n"); ret_val = 5; goto error; } va_status = vaQueryConfigProfiles(va_dpy, profile_list, &num_profiles); CHECK_VASTATUS(va_status, "vaQueryConfigProfiles", 6); if (show_all_opt) { printf("%s: Supported config attributes per profile/entrypoint pair\n", name); for (i = 0; i < num_profiles; i++) { profile = profile_list[i]; va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints, &num_entrypoint); if (va_status == VA_STATUS_ERROR_UNSUPPORTED_PROFILE) continue; CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints", 4); for (entrypoint = 0; entrypoint < num_entrypoint; entrypoint++) { ret_val = show_config_attributes(va_dpy, profile_list[i], entrypoints[entrypoint]); if (ret_val) { printf("Failed to get config attributes\n"); goto error; } } } } else { printf("%s: Supported profile and entrypoints\n", name); for (i = 0; i < num_profiles; i++) { profile = profile_list[i]; va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints, &num_entrypoint); if (va_status == VA_STATUS_ERROR_UNSUPPORTED_PROFILE) continue; CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints", 4); for (entrypoint = 0; entrypoint < num_entrypoint; entrypoint++) { printf(" %-32s: %s\n", vaProfileStr(profile), vaEntrypointStr(entrypoints[entrypoint])); } } } error: free(entrypoints); free(profile_list); vaTerminate(va_dpy); va_close_display(va_dpy); return ret_val; } ================================================ FILE: vendor/intel/Makefile.am ================================================ # Copyright (c) 2018 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. bin_PROGRAMS = avcstreamoutdemo AM_CPPFLAGS = \ -Wall \ -fstack-protector \ $(LIBVA_CFLAGS) \ -I$(top_srcdir)/common \ -I$(top_srcdir)/vendor/intel \ $(NULL) TEST_LIBS = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ $(NULL) avcstreamoutdemo_LDADD = $(TEST_LIBS) avcstreamoutdemo_SOURCES = avcstreamoutdemo.c valgrind: $(bin_PROGRAMS) for a in $(bin_PROGRAMS); do \ valgrind --leak-check=full --show-reachable=yes .libs/$$a; \ done EXTRA_DIST = \ avcstreamoutdemo.h \ $(NULL) ================================================ FILE: vendor/intel/avcstreamoutdemo.c ================================================ /* * Copyright (c) 2018 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. */ /* * it is a real program to show how VAAPI decode work, * It does VLD decode for a simple AVC clip. * The bitstream and VA parameters are hardcoded into avcstreamoutdemo.cpp, * * ./avcstreamoutdemo : only do decode * ./avcstreamoutdemo : do decode and dump mv info * */ #include #include #include #include #include #include #include #include #include #include #include "va_display.h" #include "avcstreamoutdemo.h" #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } /* Data dump of a 176x144 AVC video clip,it has one I frame and one P frame */ static unsigned int avc_clip[] = { 0xce20b865, 0xe2201c0f, 0x9a80c737, 0xd10130c0, 0x73f8f26f, 0xfe2e0af8, 0x04bd8666, 0x333fbfb3, 0x901da37e, 0x870d050c, 0x5f46568d, 0x2fe68e2c, 0xbf626f46, 0x7c4802a3, 0x67b0548c, 0x22681c1e, 0x463bc0f9, 0x815f2161, 0xd6c26c9b, 0xb2c4947a, 0xf3f7a999, 0x96d4baca, 0x25cd0004, 0x8fbf7436, 0xfecb7777, 0xecf7effb, 0x0d601808, 0xc86f92ad, 0x6f696b03, 0x2c7dfec0, 0xd2e474bf, 0x0712e10f, 0xfd73d1bb, 0xe8ac0192, 0x5402e397, 0xefb811a8, 0x2fdc9380, 0xed7889f5, 0xffef7fa7, 0x5845ebdd, 0x6d4a203b, 0xd20170f2, 0xebfb6c61, 0x34a81afd, 0x67d9621f, 0xf2479fb8, 0x9fb91701, 0x336d9ca9, 0xc0f33b12, 0x30f5b60d, 0x7d46b674, 0xdc37fa2a, 0x77f74f31, 0xf9777272, 0xba7f8417, 0xc65e0a90, 0xdee83735, 0x037fb352, 0x5e8ac257, 0xf09bae14, 0x23045f14, 0x98f017ef, 0xe89c3716, 0xab6ed611, 0xe1bd7afe, 0xcb981698, 0x4d2a8484, 0xbbffa532, 0x01fcf2ef, 0xc7c61893, 0x24fcd3af, 0xc44d6102, 0xe331fac2, 0x90c48fe4, 0x2afe651f, 0x687883b8, 0xc1081535, 0x6dd11ffd, 0x34d17afe, 0x4bfb259d, 0x9d668b08, 0x1ee539b1, 0x702e67e7, 0x3ec8165f, 0xffc7ffdf, 0xdca08c1b, 0x814dcc2a, 0x558175a4, 0xce4d0478, 0x4b7edf3c, 0xdc6754ae, 0xb6ee10f9, 0xe7ccebff, 0x1180fde7, 0x029bcc24, 0x969de939, 0xc82154b4, 0x8956a0b3, 0x23b417c8, 0x33ad0fc4, 0xf600c2fa, 0xebc01f2c, 0x75329274, 0x746784bf, 0x82b7f83f, 0x7bbc6334, 0x9ee79fbf, 0x04803e75, 0xf768ca7d, 0x2f31e193, 0x863f9705, 0x403723bc, 0x8f7de430, 0xd952d29f, 0xcb5664b7, 0x2f0b837d, 0xd1dbf1b1, 0x8aa719e1, 0xaf0f3b6e, 0x33ef4fab, 0x427dbece, 0x6a411576, 0xb52ab370, 0x117076b1, 0xc6cd9fb2, 0xdf0d735a, 0xd62dc750, 0x867f7d77, 0xc0ddd65c, 0x88add368, 0x2f69188b, 0xc3042484, 0xf51de774, 0xe7f4bccc, 0x09c03d33, 0x3a4892e1, 0x56e7ed85, 0x10812358, 0xc8c93b1e, 0x4081bd67, 0x53041322, 0xa768c215, 0xdf387cbb, 0xfcf85fe3, 0x33c8e4ed, 0xcc6affa6, 0x0e901eef, 0xf23b9d0d, 0xfdfc7ce6, 0x72c45266, 0xd81f810e, 0xda1ad42d, 0xc34e8cac, 0xf7d16413, 0x993d01d0, 0x0dc2404a, 0x0ad3ae3a, 0xff632898, 0x4c99ac02, 0x3cc161e8, 0x744a1c0a, 0x26af3299, 0x40aeda72, 0xb90b7b6c, 0x0ee97185, 0x30d4f777, 0xf73fd6dd, 0xe1160a36, 0x6a97bb07, 0x9e8601ec, 0x6f2db153, 0x8e8f0fb2, 0xfa296973, 0xfd2fd1f6, 0xab289081, 0x0460f415, 0x1019999e, 0xe709e77e, 0x09985e94, 0x0eeeb71f, 0x1716b05f, 0xaf9102e9, 0x10dea4e4, 0xe897ea85, 0x3964c91b, 0xeef1ff19, 0xff1777ef, 0x6d004ae4, 0x1d2460b6, 0x097c827f, 0x74486026, 0xb4da67d8, 0xf10993fe, 0x76becf26, 0xad78198a, 0xeb661d02, 0xe61d8d6f, 0x4dc6706f, 0xdd0e4844, 0xfae17f21, 0xd2b13a4a, 0x77ff7ed2, 0x1bfff2c9, 0x40fbd645, 0xf3d667f9, 0x92bc91ee, 0x0cdfac03, 0xaa7ffa3b, 0x20568aad, 0x76dcaa3e, 0x5fe050f3, 0x414722f7, 0x7eff8356, 0xc81a7e3b, 0x04e007d3, 0x2e5df61f, 0xe06e17ac, 0xe8596902, 0xf16f4262, 0x031c78b9, 0x019e293c, 0xfffffbeb, 0xc74d76f4, 0xf94cafe0, 0xfefcbf2f, 0xacf17f7a, 0xffef675f, 0xd69e3925, 0x81f8d945, 0x7fe0ffed, 0x475b91a5, 0xe06d6ae2, 0x9e78df7b, 0xdfba91f9, 0xb1afc0cf, 0x35a2a66a, 0xd73fffff, 0xdd3a2dec, 0x36ae9de1, 0x7fa517ec, 0x810e9a72, 0x19c4d939, 0x38db0ddc, 0x780af7c0, 0x867dee5a, 0xba02b876, 0xbb3beb56, 0x5cc67f9a, 0xd24fd0dd, 0x2744f71c, 0xc300cac5, 0xf8dbbaef, 0xab12c7c0, 0xdbedecca, 0x9c5fee7f, 0x57c5e472, 0xcf76bdbc, 0x0ac3988d, 0x7f78bb65, 0xbdc8edfe, 0x3fbd0b18, 0xff4fc78f, 0x99bb40fd, 0xe13b3e1f, 0x78694f71, 0x708f2607, 0x871cbf1f, 0xbdaf871b, 0xfe9aab6f, 0x18dc1966, 0x34c5e7fb, 0xf5e0e074, 0x33b039d5, 0x233335d8, 0xc3d0b980, 0xb80b65e0, 0x3822dc23, 0x003ade43, 0x01d8ac36, 0xdf5b05c8, 0x8398b04d, 0x64f897ca, 0x7326c561, 0x78693f52, 0x6a3c9944, 0x2ab7b794, 0x46d9da00, 0x657f14fc, 0x4081f3a7, 0xe24f6f25, 0x70178f38, 0x93bfd777, 0xfadb0c20, 0x2680fb3e, 0x4d6732c6, 0x4da23e83, 0xd1918b7f, 0xc0a9c69a, 0xa179e658, 0xbf06b5d5, 0x447cdb01, 0x8f444fd9, 0xefdf22e8, 0xbd8bd81d, 0xf58b2bdf, 0xfcc281cf, 0x0afa47c1, 0xfd49d1da, 0x31a31d70, 0xa81c7e67, 0xe7c8a72f, 0xab47e77f, 0x8474712b, 0x1d227828, 0x1fc5fb57, 0x2e3d71ff, 0x1462a01b, 0xfccb751f, 0x3fffbe5d, 0x9311d216, 0x3f8cb07c, 0xf0b2d2ce, 0xb0a47e0e, 0xf0678201, 0x7d0864a5, 0x35667c52, 0xdeef637b, 0x5efc1ac0, 0x80ffff85, 0x0274ca62, 0xfffbe743, 0x11e0bbff, 0xd570faf5, 0xa94be585, 0x3a48fb01, 0xc0395410, 0x3d719e39, 0x15db1d12, 0x0003fc7f, 0xa6b16687, 0xa3ca61aa, 0x2535153a, 0x51c37db5, 0xc232f1e9, 0x5e3659c6, 0x2f64ca2a, 0x163d0780, 0xfd2a286d, 0xc540fdf7, 0x25463f4b, 0x1265a928, 0x2ab51d96, 0xb5728bf2, 0xd8eee02c, 0xd491feab, 0x68f8ee63, 0x2c8f1500, 0x6a34f537, 0x6c36c895, 0x5c26c2f1, 0xfe87e52e, 0xe787f91b, 0xb29f838a, 0xfc6fabb8, 0x126cfdf5, 0x0175743c, 0x06707ac0, 0x853476fc, 0xef97c00e, 0xf040a1a8, 0x0000c78b, 0x9fed36c4, 0xc8873faf, 0xc142e469, 0xcca3c8e7, 0xebaf33f3, 0x2393b97a, 0x8a1f0200, 0x5e338d95, 0x186cbc1f, 0xf87d5e1a, 0xa8e13f6b, 0xd7ba4939, 0x9256cd3f, 0xf7e82b1b, 0x31c0e7c2, 0xab29c0bb, 0x7dfd2dd7, 0x55bc0597, 0xbb76a3a4, 0xe9aebd0f, 0x67de1caa, 0x81fad799, 0x78ec09df, 0x0080b663, 0x775e930d, 0x609fa261, 0x6085fc7e, 0x4e85f507, 0xfe63dc41, 0xaf0cb8b3, 0xbbfe6196, 0xa05f50b9, 0x8773e430, 0xd9cae9c5, 0xf89410d0, 0x60c7bd0f, 0x00ef20e0, 0x42c0c60f, 0x5c0b6386, 0x0bf94687, 0x47d9caf3, 0x08e4a0b0, 0xe2bd962d, 0xbe396c0d, 0x192d9d1e, 0x762b0f6d, 0x54fac4bf, 0xd0217f05, 0x707815e1, 0x8d019a22, 0x1bb568fc, 0xff8fff6b, 0x0b4131ab, 0xc634f068, 0xfb10ab38, 0x7e594aed, 0x076809c1, 0x60463d03, 0x9ecbdd35, 0x831f29a3, 0x19c9ab6f, 0xccfef7ba, 0x70f39baa, 0x820468cf, 0xfdb7cba4, 0x102ede81, 0x5b08f7b8, 0x07e52b6d, 0x01117874, 0x224f60d3, 0x131afe40, 0xcff0170a, 0x990b8a4f, 0x84301f81, 0x73f0f96e, 0xc0e47ac0, 0x327aa40b, 0x58e0c4f9, 0x40f06018, 0x4118a1dd, 0x6e20b440, 0x245599e2, 0x9f5a302b, 0xff1dffbf, 0xbe2bc7bb, 0xd4e45524, 0x828a07c5, 0xad4acee9, 0x99464a3c, 0xdbd7c8f2, 0xa278f036, 0xbe5d8e0f, 0x216281d7, 0xa7e34032, 0xfe7ff547, 0x2ecfea3f, 0x0cfa8e9c, 0x351707b5, 0xeb6e8bd8, 0xfa65f513, 0xfa450a54, 0x9cbac6f0, 0xd42d43f0, 0xcb789f9f, 0xafa0065a, 0x88f28df2, 0xc987941f, 0xb04fad8f, 0x56b14071, 0xe045a7aa, 0x3b21fcd7, 0x965ba86b, 0x69b0d76c, 0xd470cba5, 0x8cf09d70, 0x57b940f1, 0xcbd47c99, 0x199e0eca, 0x8c33706b, 0x0567c5b7, 0xae6f25c4, 0xf9e47feb, 0xd63307dd, 0xb83a9f40, 0x1399d904, 0xa44dab8f, 0xddfd1d0e, 0x1156dcbf, 0xfbc5ce3d, 0xc0b7cdf4, 0xff9c274c, 0x3fff5bad, 0x1b47900d, 0x6b6580b9, 0x0b360507, 0x8a163f9a, 0x64f4de35, 0xf33c5f31, 0x6dfbb9fc, 0xe06a1a87, 0x45a38eff, 0xf0e81958, 0x43ab8b18, 0x0ff3eee1, 0xee0e449a, 0x3c4fdf0a, 0xd11ea5fe, 0x9a7ee9ac, 0xfa3a357d, 0x277a5a1a, 0x77c33953, 0x39670426, 0xebf40750, 0x6aebf480, 0x7ebec755, 0x21b0ba22, 0xbedd8cee, 0xa331dfc7, 0x20c85bf5, 0x800f6178, 0xdfbf8300, 0x24e0452e, 0x1ff84d1d, 0xfc8e85fd, 0x82403363, 0x257b44d1, 0x808be3b9, 0x4e2053bc, 0xaf03ef8a, 0xf3cf13a0, 0x462a2382, 0x15fbff83, 0xbbff562b, 0xba9ee3ee, 0x63da06e0, 0x35751d32, 0xa0d865b9, 0xfca61624, 0x93644586, 0x91391564, 0xd740e40b, 0xb63413fc, 0x58fecab5, 0x614b4355, 0x425f5fd8, 0xff21d271, 0x3ee7cf1c, 0x0565b01d, 0xb8f708ee, 0x00ea1f8f, 0x811ac6bb, 0xe8dd030e, 0x82477eb2, 0xe3057f87, 0x73198c0c, 0x8b8c25b8, 0xaebe5b07, 0x62c37b70, 0x310038e6, 0xf387abfe, 0x2f56d0f0, 0x62973951, 0xf5d7e120, 0x9ef0ad03, 0x0300ae73, 0x1200d8a1, 0xb9de1fa5, 0xec6e1b49, 0xaf6a474d, 0x8f6e73a9, 0x2f3c1ea4, 0xf17b338d, 0x7c84fdbe, 0x304b3dd4, 0xb18c353d, 0xf480c296, 0x021dd212, 0xcba1311e, 0xe6704130, 0x2a746867, 0xceb1837b, 0xf7a6083a, 0x31b7ea0b, 0x16e85c87, 0x2a3b6f8b, 0xd32ceafc, 0x6c65b50c, 0x0fbbbc9f, 0xb8989bf9, 0x5d8ff430, 0x8d2fe056, 0x1db5dc41, 0xe889e100, 0x0b213b54, 0xa5df3135, 0x0a1ea40e, 0xc2d2e58c, 0xfd0f97a3, 0x0ff398a5, 0x2ad4a9c3, 0x21a09658, 0x589b651e, 0x00bb23bc, 0xedaa0001, 0x66d4d424, 0xfe3c2d7d, 0xe9984611, 0x1695af96, 0xd42e03c9, 0x9d53f081, 0x3fe78443, 0x66ebb469, 0x118f10b1, 0x90d5ffc7, 0x6ca5c66e, 0x4863b900, 0xbe78d881, 0x6cc0ead5, 0x04ce834b, 0xf54a17ca, 0xa7f3cceb, 0x3e57ef99, 0xfadb00bb, 0x90c9a3f4, 0x7fa12804, 0x26ba3ee8, 0xd927fd8d, 0x01c0fffb, 0x22291ead, 0xf3df78fd, 0x4b9b4740, 0xc03f69a8, 0x6e99757a, 0x19d687a1, 0xb4e3f46b, 0x173f7e59, 0xc69f67fe, 0x6f200840, 0xe7b983d0, 0x2ff4d5ee, 0xff834946, 0xbabb60c7, 0x77feded7, 0x8084a0d3, 0xe1c3fd97, 0x0c80ba0c, 0xca03a602, 0x05e403e0, 0x79047705, 0x787bf9f0, 0xb75155d5, 0x0123773e, 0x83fed0bf, 0x6d38c0ab, 0x2f42e2c4, 0x1bd8ecec, 0x860198aa, 0x009f070d, 0x8172f029, 0xedbb259d, 0x2e34fda6, 0xc99aaa5e, 0xd5ddb1f2, 0xb552aa7a, 0xef9a83d4, 0x4f68c803, 0x55abf304, 0x3a5cacdc, 0x623a76dc, 0xe81a81be, 0xfd16f994, 0x38225b1c, 0x2a23f299, 0x17ff0056, 0x18440add, 0xd63ab951, 0xc84961b5, 0x2c9e145a, 0xe63c49f0, 0xff5f470b, 0xb79ddaf5, 0x43489f15, 0x2dcb65cb, 0x3fc16188, 0xbf60c2ed, 0x403db2b4, 0x55e162c1, 0x03d1f128, 0x53438d80, 0x9377cbf9, 0x6b25eced, 0xa9e782e3, 0xfaf31770, 0x17f34571, 0x71757eb9, 0xb0684b05, 0x4c05217c, 0xc0610f4f, 0x3d241f61, 0x2a1d22b4, 0x6e2dcd9a, 0x5cdaa1c2, 0x944fd6c7, 0x8dffaf33, 0xaba5f39d, 0xbbec1176, 0x5b2d30fd, 0xc548d759, 0x8de1706e, 0x2f944eff, 0x2d7a9d21, 0x5ccfb55e, 0x98bae6eb, 0xce30644f, 0xbba7ecea, 0x1795612b, 0x79f8a0bb, 0x47590d1e, 0xdddb1fbd, 0x2285fa64, 0xa887d19c, 0xa366d6db, 0xa7f5115d, 0xf3eb77f1, 0x87e975fd, 0x1b37e3be, 0xf1b28fd7, 0x0cca3c84, 0x3b585b77, 0xffed0f84, 0xcffafb4d, 0x55eef939, 0x1913d09c, 0x3cbb015d, 0x3c711405, 0xb7d1eb83, 0x351b2977, 0x3c29ffc6, 0xcfe17f08, 0x9933e8c9, 0xe1e977af, 0x7cd0abde, 0x217c089d, 0x3d984aff, 0x8e0d84b1, 0x14b65cbf, 0x5fc78204, 0xf887301b, 0x29fc5a95, 0xca461180, 0xc95e57cc, 0xf3a8ae43, 0x7fa419ee, 0xd23f4dfb, 0x9613aa9a, 0x2a4832bb, 0x45c673cf, 0xf98c0964, 0xf12b2536, 0xae5f23b6, 0xade10f3a, 0xbf83df4d, 0xeb624887, 0x3ca49513, 0xa42c323e, 0xcc947d79, 0xa6995591, 0x3acba047, 0x5e18a52a, 0x7ffff7af, 0xf51af0f8, 0xcd4cf1ad, 0x57aa1e87, 0xe5a4e2b6, 0x6293f3a8, 0x8e55277b, 0x00867b3a, 0x7091fff8, 0xe6a1b028, 0x6242f52e, 0x743134aa, 0xa2dea374, 0xfe6a50b2, 0x4fcc01d1, 0x5b1747c2, 0x123a6b54, 0x0a0ef5ff, 0x657521b2, 0x1573ba20, 0xf95f20e2, 0xdffe0d52, 0xa13efd9d, 0x850c7355, 0x97a7a984, 0xaab1ef1c, 0x7cffc97b, 0xf07d161a, 0xfea255e9, 0x7063ae85, 0x638b1bd6, 0xe42de373, 0xe768dfed, 0xcc3f36fc, 0x2f49c9a1, 0x0c3f835a, 0xf0c2d154, 0x09fe486b, 0xa671fc31, 0x2cc6e185, 0x58ebcf87, 0xddfd014f, 0xd34f5b9c, 0x38b03e4d, 0xe30f4aa9, 0x3d8d2b95, 0xc653e7a9, 0x8d1bb0be, 0x39b48e3b, 0x75db048a, 0xfd271719, 0xc6aee30b, 0x764f3b5f, 0x49af5dc6, 0x5b0ad27e, 0xdf5c4f48, 0xa37a5960, 0x6b0265fb, 0xeb1f3e82, 0x0080a29e, 0xc9ddb580, 0x03e0f58e, 0x015b824b, 0xd7ef3c1a, 0xcac0ba6a, 0x5fd637c0, 0x5e788dcc, 0xb1f357f7, 0x7c8c00c0, 0x00358029, 0x01b00001, 0x04c04362, 0x0034300c, 0x720f8009, 0x0018a0c3, 0xa7ed30b7, 0xcf4656e1, 0xc0001d4a, 0x4087b907, 0x7fee0130, 0x30850e18, 0x581f04f7, 0xf7ff4fe2, 0xa7eafffc, 0x1a1abe05, 0x05c28450, 0xb55b9d5d, 0x5f68e3be, 0x0efd89fb, 0x1d1ede9f, 0xc279a19a, 0xad84a7a3, 0x286e25db, 0xa4355b05, 0x87d8929d, 0xe55a7c2c, 0xdc6df083, 0x88660cfd, 0x7fc07f80, 0xe8d62196, 0x826e2e98, 0x3f2bfb39, 0xb8a9f3ef, 0x2260845d, 0x3423e62e, 0x66e4fe31, 0x7f906912, 0x8bd7457d, 0xb7cdf7d3, 0xfcdaf6a6, 0x9ee86b3d, 0x1f5ffff7, 0x780b18cc, 0x65a00148, 0x3bbf9458, 0x0aefa58a, 0xae667dab, 0x67c55f4f, 0x8179beae, 0xe6540dd2, 0x1ccf7242, 0xea6ecb03, 0xc28c9c31, 0xbb9c572e, 0xc01f2e2f, 0x9a25437b, 0x558cb675, 0xc63b4ed3, 0xe06e27df, 0x4e2e9860, 0x17acea7d, 0x06b3ba66, 0xebd649d3, 0xe4e1e154, 0xd8136b0d, 0x03271324, 0x9312523a, 0x156fb44c, 0xc373a266, 0x160e75fd, 0x78901c88, 0x4886060d, 0x5eb9cc39, 0xa9638e64, 0xcff5459c, 0x19e27288, 0xe1ff3086, 0x7e3c8237, 0x05360904, 0xf85bfdc5, 0xfc8e5a87, 0x00308555, 0x7769e6db, 0x20ecf60f, 0x1b86a7ab, 0xed75ab8d, 0xeb7f9dfa, 0x08e2a968, 0x4bb34bc7, 0xf8d9196d, 0x31d38fed, 0x46eae5cc, 0x66e1307f, 0xfd06d5c1, 0x850cb4bd, 0x241b2ca1, 0x8f165563, 0xf54153f6, 0x70859632, 0x253fd04a, 0x1d92ff52, 0x7cfff1ff, 0xdbc68964, 0x0f529b8f, 0xeb87f565, 0x8d0e4fc1, 0x8a6794c8, 0xa009a7bf, 0x1d7fcab8, 0x75366b1c, 0x262d12a6, 0xd6bb8ea6, 0xc0d04d04, 0xcae9372f, 0x4bfd620f, 0x784fcd03, 0x5fc381e7, 0x5407a7cb, 0xf53ef71a, 0x3ea5444f, 0x63ebab0a, 0x9a0a235c, 0x87d06a9d, 0x80083f84, 0x7f78b799, 0x6dbcd25d, 0x2931eca4, 0xb8207992, 0x9b977ef8, 0xceb13371, 0x5eea7b95, 0x98a645d1, 0x3c95803a, 0x4214b96b, 0x3579f578, 0x359face1, 0xafa271ff, 0x3711867d, 0xdaa6fe67, 0x47c9327a, 0x4dd2f2c7, 0x064ecee6, 0xf3ef46c9, 0xfb68220e, 0x2fac397e, 0x1ee4833b, 0x0fb095d4, 0x99783a34, 0xbaea518d, 0x7e3ca108, 0xac7f78ed, 0xb01d3047, 0xf604f3f0, 0x4a94c55a, 0xfd79eeee, 0xc67ca16e, 0xe6f5135f, 0x16e9b79f, 0x1adcdf96, 0xfaac3832, 0x0002d8e6, 0xebe827dc, 0x1c9a05fd, 0x7b9a31b0, 0x21b0ab43, 0x655a804d, 0x4009c0de, 0x00a78220, 0x2b0b1e82, 0xdca9f261, 0x2bd0600d, 0xff108c07, 0x255f71fa, 0xb4c6ebaa, 0xb6369990, 0xbe3f6734, 0xe18825e2, 0x68d703fa, 0xf375a581, 0x59958df1, 0x0bf5d392, 0xad198111, 0x721ec4a1, 0x3eebdeab, 0x05c70fd8, 0x065c4714, 0x02a0700f, 0x1e921f28, 0xf8ff9482, 0x00cdff8e, 0x081faaaa, 0x4b975aed, 0x2b6614b8, 0xdd153273, 0x317c31fd, 0x53db04ef, 0x619dfd21, 0x726bbca3, 0x644edce2, 0x80427a3a, 0x82678020, 0x30ed6e49, 0xf19f7347, 0x777d8c71, 0x8dc3798e, 0x3ddaa2ce, 0x5a8e0701, 0xf3fd63ce, 0xc5ebcc81, 0xc58fecd1, 0x2e0e8159, 0xe51825ed, 0xeb90026f, 0xb60a23c4, 0x2c4bf31d, 0xa01a8ecf, 0x5190fdcc, 0x252a333a, 0xc0f788b6, 0x89389863, 0x923d4460, 0xfce7d02e, 0xe2fb27c1, 0xe26b6c4e, 0x80e70ea1, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 }; static unsigned int avc_clip1[] = { 0xbbd2e141, 0xe764a8bc, 0x0c0880d5, 0x38bb0a6e, 0x0a6b07f7, 0x77ac6065, 0x040c94ff, 0xce15704a, 0xc989f061, 0xfaf82117, 0xcbad5945, 0x6d9daaa6, 0xdd878959, 0x1a5f2e3b, 0x1e5ec361, 0x8b007c0f, 0xbf471eed, 0x90b139ae, 0xc600f07a, 0x85ee5242, 0xed995482, 0xff6f5b9d, 0x010bc02d, 0x40256504, 0xd810fd3f, 0x30bef589, 0xadf21133, 0x0f66f6fa, 0x51c215c2, 0x872e3481, 0x000bf079, 0xa6e50c33, 0xb81cdddc, 0x95404536, 0xd7e8c5f7, 0x84186434, 0xa9cf3bac, 0xdc387cd1, 0x53823ab3, 0xa005736c, 0x290c7fac, 0x5864641d, 0xebcc3506, 0xedbb5d60, 0xc75c5efc, 0xa5b71787, 0xee7b5ebd, 0xf734ef39, 0xa67e78da, 0x82fa42de, 0x3810868d, 0x2c7a38c8, 0xc65f96ff, 0x72673187, 0x07d7a30a, 0x16ff9818, 0x507ce850, 0x1b24d0be, 0xc3e3509e, 0x09f625ec, 0xfee00bc5, 0xfee0208d, 0x256524c4, 0x830b1383, 0x7c3f40c7, 0x5ca61d8d, 0x7134c076, 0x957b0e0c, 0xc6c758cf, 0x610b8f5f, 0x47814301, 0xf8c6c05b, 0x5a6c2fa6, 0x4f78c2ca, 0xeec6d9c0, 0x23b7843b, 0x72f1eff5, 0x80760900, 0x3f1df421, 0xf12fc10f, 0x3a38121e, 0xeeb89aed, 0x1f1913eb, 0xcbb31871, 0xd4d5fd78, 0xce3f5aa3, 0x5334bea8, 0x7094c330, 0xff019653, 0x61e02683, 0x3f855c97, 0x1e7e1e7e, 0xc7189434, 0xf0f221da, 0xd408b533, 0x84edd41e, 0x3b840ec4, 0x216f3ff7, 0xc43ea988, 0x732310c5, 0x774d0ed2, 0xc7da7677, 0xbb99751c, 0xdef758ea, 0xa08030c5, 0x194fb88c, 0x5d2cdf01, 0x31883f9e, 0xd88040da, 0xca5193f2, 0xe14b4d4a, 0x121a8a03, 0xa6fe32ce, 0xc76f64e6, 0xf72b760b, 0x32b1ca76, 0xde807e6c, 0x0bc27b7f, 0xd14d0204, 0xe4d7f39d, 0xb2d40890, 0x2c7b0080, 0x01640a31, 0x7828377f, 0xd0b57923, 0x7a8e81ee, 0x1ea59e1d, 0xd32905e5, 0x51103cf9, 0x0822a87d, 0x9fc886b9, 0x27aaa526, 0xc4c25a0c, 0x39eff6d1, 0x42be2114, 0xb1e0be80, 0x71551a96, 0x65ec526e, 0x5254683a, 0x2f53a761, 0x817c79c5, 0x22605079, 0x7b32b62b, 0xf94d4576, 0xf83c836d, 0xf35ca5ae, 0x48385aa1, 0x03ec899f, 0xbf3cb34a, 0x28292c12, 0x2b322a70, 0x3a8920e1, 0x0d04313b, 0x92b96796, 0x2264d217, 0xa175f3dd, 0x477af378, 0xf3d7cc31, 0x742867ff, 0xe04c2a32, 0xbfbdf54c, 0x78c04b0c, 0x8887a4f1, 0x77b63003, 0x7d45a0df, 0x41ec95db, 0xa6508183, 0x58343aaa, 0xca8380c1, 0x8bda0563, 0x853a1b72, 0x0525d346, 0x9790cbe7, 0x30881bb6, 0xaa6fc729, 0xd36cfbd4, 0x8d76b7fa, 0x29a871d5, 0xdae527bd, 0x3030e020, 0x8bcf8ab7, 0x61cb2f97, 0x13846041, 0x4ecde00c, 0xdef0ff00, 0xb71fa71b, 0xec2f31be, 0xe9520c24, 0x80459473, 0x30300658, 0xa3805ad8, 0xb47eafd2, 0x04375a5f, 0x06092cf1, 0x6894ac58, 0xfdfec525, 0x0d0889b2, 0x1b804608, 0x1f1f142c, 0xf87ba8c9, 0x26800347, 0xf26f3d19, 0xe558e220, 0x145dfa14, 0xba317016, 0x3bb06f65, 0x07cf7309, 0xa429c442, 0xcce3604d, 0x727f694c, 0x28371b89, 0xd86d80a6, 0x2c77943e, 0x60cc8df9, 0x84e9e09c, 0xf31b7067, 0xd0158393, 0x29bc8cd8, 0xd88bc6a1, 0xa33f98a8, 0xf2340773, 0xab695f5f, 0x28c4f872, 0xcd486133, 0x167f7cdf, 0x531faf43, 0xa0847374, 0xd5004438, 0xbf6e3c3c, 0x2e720484, 0xb75eee52, 0x10fef2a7, 0x63e38812, 0xba96765b, 0x8a244e41, 0xa6120d37, 0x15154a10, 0x117869f5, 0x199f5d1c, 0xd6a89007, 0x08182d25, 0x48151314, 0xbef97a60, 0xa9f8c8e8, 0xf5b1d037, 0x913062cd, 0x8b1d5f46, 0x81eee004, 0x12f85444, 0xafb969ab, 0xde74a38f, 0x1287118d, 0x8c654586, 0xd0c0a92c, 0x42c7e3b6, 0x6c59f1de, 0xc7c22556, 0x1aca992f, 0x0583a104, 0x424053a5, 0x53232a5d, 0x2e9907f8, 0x9031a20b, 0x146267d7, 0x8af06791, 0x4abffacd, 0x688f40e6, 0x80e8d8f4, 0x976b02b3, 0x33de017b, 0x479c8943, 0xd8a744cb, 0x412c7311, 0x2b1dee02, 0x649429ba, 0x191d3111, 0x041743de, 0x0c67c2a4, 0x4140e20f, 0x350b9685, 0xc7c2eea9, 0x16847488, 0xb3027037, 0x38c81979, 0x166164a7, 0x7198e5a1, 0x0414241b, 0xb92b29bf, 0xe50dbeb4, 0xb711c032, 0xbf398b73, 0x0abed4a6, 0x9a048545, 0x94cdafe3, 0x54659149, 0x20ec4cdf, 0x6d0a8b14, 0x271b812f, 0xdbee2ab6, 0x811a8a74, 0xc5449582, 0x855cdd1e, 0x12b06e17, 0x345a572b, 0xbad98795, 0xcdc7038c, 0x1b8d0e61, 0x000000a5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, }; /* hardcoded here without a bitstream parser helper */ static VAPictureParameterBufferH264 pic_param[2] = { { CurrPic: { 0, 0, 8, 0, 0 }, ReferenceFrames: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, picture_width_in_mbs_minus1: 10, picture_height_in_mbs_minus1: 8, bit_depth_luma_minus8: 0, bit_depth_chroma_minus8: 0, num_ref_frames: 7, { { chroma_format_idc: 1, residual_colour_transform_flag: 0, gaps_in_frame_num_value_allowed_flag: 0, frame_mbs_only_flag: 1, mb_adaptive_frame_field_flag: 0, direct_8x8_inference_flag: 1, MinLumaBiPredSize8x8: 0, log2_max_frame_num_minus4: 1, pic_order_cnt_type: 1, log2_max_pic_order_cnt_lsb_minus4: 0, delta_pic_order_always_zero_flag: 1, } }, num_slice_groups_minus1: 0, slice_group_map_type: 0, slice_group_change_rate_minus1: 0, pic_init_qp_minus26: 0, pic_init_qs_minus26: 0, chroma_qp_index_offset: 0, second_chroma_qp_index_offset: 0, { { entropy_coding_mode_flag: 0, weighted_pred_flag: 0, weighted_bipred_idc: 0, transform_8x8_mode_flag: 0, field_pic_flag: 0, constrained_intra_pred_flag: 0, pic_order_present_flag: 0, deblocking_filter_control_present_flag: 0, redundant_pic_cnt_present_flag: 0, reference_pic_flag: 1, } }, frame_num: 0 }, { CurrPic: { 1, 1, 8, 1, 1 }, ReferenceFrames: { {0, 0, 8, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, picture_width_in_mbs_minus1: 10, picture_height_in_mbs_minus1: 8, bit_depth_luma_minus8: 0, bit_depth_chroma_minus8: 0, num_ref_frames: 7, { { chroma_format_idc: 1, residual_colour_transform_flag: 0, gaps_in_frame_num_value_allowed_flag: 0, frame_mbs_only_flag: 1, mb_adaptive_frame_field_flag: 0, direct_8x8_inference_flag: 1, MinLumaBiPredSize8x8: 0, log2_max_frame_num_minus4: 1, pic_order_cnt_type: 1, log2_max_pic_order_cnt_lsb_minus4: 0, delta_pic_order_always_zero_flag: 1, } }, num_slice_groups_minus1: 0, slice_group_map_type: 0, slice_group_change_rate_minus1: 0, pic_init_qp_minus26: 0, pic_init_qs_minus26: 0, chroma_qp_index_offset: 0, second_chroma_qp_index_offset: 0, { { entropy_coding_mode_flag: 0, weighted_pred_flag: 0, weighted_bipred_idc: 0, transform_8x8_mode_flag: 0, field_pic_flag: 0, constrained_intra_pred_flag: 0, pic_order_present_flag: 0, deblocking_filter_control_present_flag: 0, redundant_pic_cnt_present_flag: 0, reference_pic_flag: 1, } }, frame_num: 1 } }; static VAIQMatrixBufferH264 iq_matrix[2] = { { ScalingList4x4: { {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10} }, ScalingList8x8: {{0}} }, { ScalingList4x4: { {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10}, {0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10} }, ScalingList8x8: {{0}} } }; static VASliceParameterBufferH264 slice_param_surface0[4] = { { slice_data_size: 1101, slice_data_offset: 0, slice_data_flag: 0, slice_data_bit_offset: 28, first_mb_in_slice: 0, slice_type: 2, direct_spatial_mv_pred_flag: 0, num_ref_idx_l0_active_minus1: 0, num_ref_idx_l1_active_minus1: 0, cabac_init_idc: 0, slice_qp_delta: 6, disable_deblocking_filter_idc: 0, slice_alpha_c0_offset_div2: 0, slice_beta_offset_div2: 0, RefPicList0: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, RefPicList1: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, luma_log2_weight_denom: 0, chroma_log2_weight_denom: 0, luma_weight_l0_flag: 0, luma_weight_l0: {0}, luma_offset_l0: {0}, chroma_weight_l0_flag: 0, chroma_weight_l0: {{0, 0}}, chroma_offset_l0: {{0, 0}}, luma_weight_l1_flag: 0, luma_weight_l1: {0}, luma_offset_l1: {0}, chroma_weight_l1_flag: 0, chroma_weight_l1: {{0, 0}}, chroma_offset_l1: {{0, 0}} }, { slice_data_size: 1133, slice_data_offset: 1101, slice_data_flag: 0, slice_data_bit_offset: 32, first_mb_in_slice: 22, slice_type: 2, direct_spatial_mv_pred_flag: 0, num_ref_idx_l0_active_minus1: 0, num_ref_idx_l1_active_minus1: 0, cabac_init_idc: 0, slice_qp_delta: -1, disable_deblocking_filter_idc: 0, slice_alpha_c0_offset_div2: 0, slice_beta_offset_div2: 0, RefPicList0: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, RefPicList1: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, luma_log2_weight_denom: 0, chroma_log2_weight_denom: 0, luma_weight_l0_flag: 0, luma_weight_l0: {0}, luma_offset_l0: {0}, chroma_weight_l0_flag: 0, chroma_weight_l0: {{0, 0}}, chroma_offset_l0: {{0, 0}}, luma_weight_l1_flag: 0, luma_weight_l1: {0}, luma_offset_l1: {0}, chroma_weight_l1_flag: 0, chroma_weight_l1: {{0, 0}}, chroma_offset_l1: {{0, 0}} }, { slice_data_size: 1115, slice_data_offset: 2234, slice_data_flag: 0, slice_data_bit_offset: 34, first_mb_in_slice: 46, slice_type: 2, direct_spatial_mv_pred_flag: 0, num_ref_idx_l0_active_minus1: 0, num_ref_idx_l1_active_minus1: 0, cabac_init_idc: 0, slice_qp_delta: -1, disable_deblocking_filter_idc: 0, slice_alpha_c0_offset_div2: 0, slice_beta_offset_div2: 0, RefPicList0: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, RefPicList1: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, luma_log2_weight_denom: 0, chroma_log2_weight_denom: 0, luma_weight_l0_flag: 0, luma_weight_l0: {0}, luma_offset_l0: {0}, chroma_weight_l0_flag: 0, chroma_weight_l0: {{0, 0}}, chroma_offset_l0: {{0, 0}}, luma_weight_l1_flag: 0, luma_weight_l1: {0}, luma_offset_l1: {0}, chroma_weight_l1_flag: 0, chroma_weight_l1: {{0, 0}}, chroma_offset_l1: {{0, 0}} }, { slice_data_size: 951, slice_data_offset: 3349, slice_data_flag: 0, slice_data_bit_offset: 36, first_mb_in_slice: 76, slice_type: 2, direct_spatial_mv_pred_flag: 0, num_ref_idx_l0_active_minus1: 0, num_ref_idx_l1_active_minus1: 0, cabac_init_idc: 0, slice_qp_delta: -1, disable_deblocking_filter_idc: 0, slice_alpha_c0_offset_div2: 0, slice_beta_offset_div2: 0, RefPicList0: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, RefPicList1: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, luma_log2_weight_denom: 0, chroma_log2_weight_denom: 0, luma_weight_l0_flag: 0, luma_weight_l0: {0}, luma_offset_l0: {0}, chroma_weight_l0_flag: 0, chroma_weight_l0: {{0, 0}}, chroma_offset_l0: {{0, 0}}, luma_weight_l1_flag: 0, luma_weight_l1: {0}, luma_offset_l1: {0}, chroma_weight_l1_flag: 0, chroma_weight_l1: {{0, 0}}, chroma_offset_l1: {{0, 0}} } }; static VASliceParameterBufferH264 slice_param_surface1[2] = { { slice_data_size: 1091, slice_data_offset: 0, slice_data_flag: 0, slice_data_bit_offset: 32, first_mb_in_slice: 0, slice_type: 0, direct_spatial_mv_pred_flag: 0, num_ref_idx_l0_active_minus1: 0, num_ref_idx_l1_active_minus1: 0, cabac_init_idc: 0, slice_qp_delta: -1, disable_deblocking_filter_idc: 0, slice_alpha_c0_offset_div2: 0, slice_beta_offset_div2: 0, RefPicList0: { {0, 0, 8, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, RefPicList1: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, luma_log2_weight_denom: 0, chroma_log2_weight_denom: 0, luma_weight_l0_flag: 0, luma_weight_l0: {0}, luma_offset_l0: {0}, chroma_weight_l0_flag: 0, chroma_weight_l0: {{0, 0}}, chroma_offset_l0: {{0, 0}}, luma_weight_l1_flag: 0, luma_weight_l1: {0}, luma_offset_l1: {0}, chroma_weight_l1_flag: 0, chroma_weight_l1: {{0, 0}}, chroma_offset_l1: {{0, 0}} }, { slice_data_size: 138, slice_data_offset: 1091, slice_data_flag: 0, slice_data_bit_offset: 44, first_mb_in_slice: 92, slice_type: 0, direct_spatial_mv_pred_flag: 0, num_ref_idx_l0_active_minus1: 0, num_ref_idx_l1_active_minus1: 0, cabac_init_idc: 0, slice_qp_delta: -1, disable_deblocking_filter_idc: 0, slice_alpha_c0_offset_div2: 0, slice_beta_offset_div2: 0, RefPicList0: { {0, 0, 8, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, RefPicList1: { {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0}, {VA_INVALID_SURFACE, 0, 1, 0, 0} }, luma_log2_weight_denom: 0, chroma_log2_weight_denom: 0, luma_weight_l0_flag: 0, luma_weight_l0: {0}, luma_offset_l0: {0}, chroma_weight_l0_flag: 0, chroma_weight_l0: {{0, 0}}, chroma_offset_l0: {{0, 0}}, luma_weight_l1_flag: 0, luma_weight_l1: {0}, luma_offset_l1: {0}, chroma_weight_l1_flag: 0, chroma_weight_l1: {{0, 0}}, chroma_offset_l1: {{0, 0}} } }; #define CLIP_WIDTH 176 #define CLIP_HEIGHT 144 #define AVC_SURFACE_NUM 2 #define IF_EQUAL(a, b) (a == b) #define IF_EQUAL_M(a, b, c, d) (a == b && a == c && a == d && b == c && b == d && c == d) void dumpMvs(VADecStreamOutData *streamout, int mbIndex) { if (IF_EQUAL_M(streamout->QW8[0].MvFwd_x, streamout->QW8[1].MvFwd_x, streamout->QW8[2].MvFwd_x, streamout->QW8[2].MvFwd_x) && IF_EQUAL_M(streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_y, streamout->QW8[2].MvFwd_y, streamout->QW8[2].MvFwd_y)) { printf("*************MB:%2d*********\n", mbIndex); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("* %3s *\n", streamout->DW0.MbSkipFlag != 0 ? "Skip" : " "); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("*%3d,%3d->0 *\n", streamout->QW8[0].MvFwd_x, streamout->QW8[0].MvFwd_y); printf("* *\n"); printf("****************************\n\n"); } else if ((IF_EQUAL(streamout->QW8[1].MvFwd_x, streamout->QW8[3].MvFwd_x) && IF_EQUAL(streamout->QW8[1].MvFwd_y, streamout->QW8[3].MvFwd_y)) && (IF_EQUAL(streamout->QW8[0].MvFwd_x, streamout->QW8[2].MvFwd_x) && IF_EQUAL(streamout->QW8[0].MvFwd_y, streamout->QW8[2].MvFwd_y)) && !(IF_EQUAL(streamout->QW8[0].MvFwd_x, streamout->QW8[1].MvFwd_x) && IF_EQUAL(streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_y))) { printf("*************MB:%2d*********\n", mbIndex); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("*%3d,%3d->0 * %3d,%3d->0 *\n", streamout->QW8[0].MvFwd_x, streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_x, streamout->QW8[1].MvFwd_y); printf("* * *\n"); printf("****************************\n\n"); } else if ((IF_EQUAL(streamout->QW8[0].MvFwd_x, streamout->QW8[1].MvFwd_x) && IF_EQUAL(streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_y)) && (IF_EQUAL(streamout->QW8[2].MvFwd_x, streamout->QW8[3].MvFwd_x) && IF_EQUAL(streamout->QW8[2].MvFwd_y, streamout->QW8[3].MvFwd_y)) && !(IF_EQUAL(streamout->QW8[0].MvFwd_x, streamout->QW8[2].MvFwd_x) && IF_EQUAL(streamout->QW8[0].MvFwd_y, streamout->QW8[2].MvFwd_y))) { printf("*************MB:%2d*********\n", mbIndex); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("*%3d,%3d->0 *\n", streamout->QW8[0].MvFwd_x, streamout->QW8[0].MvFwd_y); printf("* *\n"); printf("****************************\n"); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("* *\n"); printf("*%3d,%3d->0 *\n", streamout->QW8[2].MvFwd_x, streamout->QW8[2].MvFwd_y); printf("* *\n"); printf("****************************\n\n"); } else { printf("*************MB:%2d*********\n", mbIndex); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("*%3d,%3d->0 * %3d,%3d->0 *\n", streamout->QW8[0].MvFwd_x, streamout->QW8[0].MvFwd_y, streamout->QW8[1].MvFwd_x, streamout->QW8[1].MvFwd_y); printf("* * *\n"); printf("***************************\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("* * *\n"); printf("*%3d,%3d->0 * %3d,%3d->0 *\n", streamout->QW8[2].MvFwd_x, streamout->QW8[2].MvFwd_y, streamout->QW8[3].MvFwd_x, streamout->QW8[3].MvFwd_y); printf("* * *\n"); printf("****************************\n\n"); } } int main(int argc, char **argv) { VAEntrypoint entrypoints[5]; int num_entrypoints, vld_entrypoint; VAConfigAttrib attrib; VAConfigID config_id; VASurfaceID surface_ids[AVC_SURFACE_NUM]; VAContextID context_id; VABufferID pic_param_buf, iqmatrix_buf, slice_param_buf, slice_data_buf, streamout_buf; VABufferID tmp_buff_ids[5]; int major_ver, minor_ver; VADisplay va_dpy; VAStatus va_status; int is_dump_streamout = 0; int surface_index; VASurfaceStatus surface_status; unsigned char *pbuf; unsigned int mb_counts = ((CLIP_WIDTH + 15) / 16) * ((CLIP_HEIGHT + 15) / 16); unsigned int streamout_buffsize = mb_counts * sizeof(VADecStreamOutData); va_init_display_args(&argc, argv); if (argc > 1) is_dump_streamout = 1; va_dpy = va_open_display(); va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileH264Main, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (vld_entrypoint = 0; vld_entrypoint < num_entrypoints; vld_entrypoint++) { if (entrypoints[vld_entrypoint] == VAEntrypointVLD) break; } if (vld_entrypoint == num_entrypoints) { /* not find VLD entry point */ assert(0); } /* Assuming finding VLD, find out the format for the render target */ attrib.type = VAConfigAttribRTFormat; vaGetConfigAttributes(va_dpy, VAProfileH264Main, VAEntrypointVLD, &attrib, 1); if ((attrib.value & VA_RT_FORMAT_YUV420) == 0) { /* not find desired YUV420 RT format */ assert(0); } va_status = vaCreateConfig(va_dpy, VAProfileH264Main, VAEntrypointVLD, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); va_status = vaCreateSurfaces( va_dpy, VA_RT_FORMAT_YUV420, CLIP_WIDTH, CLIP_HEIGHT, &surface_ids[0], 2, NULL, 0 ); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); /* Create a context for this decode pipe */ va_status = vaCreateContext(va_dpy, config_id, CLIP_WIDTH, ((CLIP_HEIGHT + 15) / 16) * 16, VA_PROGRESSIVE, &surface_ids[0], 2, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); for (surface_index = 0 ; surface_index < AVC_SURFACE_NUM; surface_index++) { va_status = vaCreateBuffer(va_dpy, context_id, VAPictureParameterBufferType, sizeof(VAPictureParameterBufferH264), 1, &pic_param[surface_index], &pic_param_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VAIQMatrixBufferType, sizeof(VAIQMatrixBufferH264), 1, &iq_matrix[surface_index], &iqmatrix_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); if (surface_index == 0) { va_status = vaCreateBuffer(va_dpy, context_id, VASliceParameterBufferType, sizeof(VASliceParameterBufferH264), 4, &slice_param_surface0[0], &slice_param_buf); } else { va_status = vaCreateBuffer(va_dpy, context_id, VASliceParameterBufferType, sizeof(VASliceParameterBufferH264), 2, &slice_param_surface1[0], &slice_param_buf); } CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaCreateBuffer(va_dpy, context_id, VASliceDataBufferType, surface_index == 0 ? sizeof(avc_clip) : sizeof(avc_clip1), 1, surface_index == 0 ? avc_clip : avc_clip1, &slice_data_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); /* Create StreamOut va buffer */ va_status = vaCreateBuffer(va_dpy, context_id, VADecodeStreamoutBufferType, streamout_buffsize, 1, NULL, &streamout_buf); CHECK_VASTATUS(va_status, "vaCreateBuffer"); tmp_buff_ids[0] = pic_param_buf; tmp_buff_ids[1] = iqmatrix_buf; tmp_buff_ids[2] = slice_param_buf; tmp_buff_ids[3] = slice_data_buf; tmp_buff_ids[4] = streamout_buf; va_status = vaBeginPicture(va_dpy, context_id, surface_ids[surface_index]); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, tmp_buff_ids, 5); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); va_status = vaSyncSurface(va_dpy, surface_ids[surface_index]); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaQuerySurfaceStatus(va_dpy, surface_ids[surface_index], &surface_status);//to check surface_status if needed CHECK_VASTATUS(va_status, "vaQuerySurfaceStatus"); /*map streamout buffer to dump*/ VADecStreamOutData *dec_streamout_buf = (VADecStreamOutData *)malloc(streamout_buffsize); if (NULL == dec_streamout_buf) { printf("Failed to malloc for dec streamout buf.\n"); assert(0); } va_status = vaMapBuffer(va_dpy, streamout_buf, (void **)(&pbuf)); CHECK_VASTATUS(va_status, "vaMapBuffer"); memcpy(dec_streamout_buf, pbuf, streamout_buffsize);// to check streamout data for usage va_status = vaUnmapBuffer(va_dpy, streamout_buf); CHECK_VASTATUS(va_status, "vaUnmapBuffer"); if (is_dump_streamout && surface_index != 0) { //dump streamout buffer to local file VADecStreamOutData *temp_dec_streamout_buf = dec_streamout_buf; unsigned int i; for (i = 0; i < mb_counts && temp_dec_streamout_buf != NULL; i++) { dumpMvs(temp_dec_streamout_buf++, i); } } if (dec_streamout_buf) { free(dec_streamout_buf); } } printf("press any key to exit\n"); getchar(); vaDestroySurfaces(va_dpy, surface_ids, 2); vaDestroyConfig(va_dpy, config_id); vaDestroyContext(va_dpy, context_id); vaTerminate(va_dpy); va_close_display(va_dpy); return 0; } ================================================ FILE: vendor/intel/avcstreamoutdemo.h ================================================ /* * Copyright (c) 2018 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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 avcstreamoutdemo.h * * This file contains the decode streamout layout. */ #ifndef _AVC_STREAMOUT_DEMO_H_ #define _AVC_STREAMOUT_DEMO_H_ typedef signed dw; /* * avc streamout layout */ typedef struct { // dw 0 union { struct { dw InterMbMode : 2; // Valid only if IntraMbFlag is inter. dw MbSkipFlag : 1; // Cuurently always set to 0 dw : 1; // MBZ dw IntraMbMode : 2; // Valid for Inter MB, Used in conjunction with MbType dw : 1; // MBZ dw MbPolarity : 1; // FieldMB polarity dw MbType5Bits : 5; // Matches best MB mode. In H.264 spec: Table 7-11 for Intra; Table 7-14 for Inter. dw IntraMbFlag : 1; // Set if MB is intra, unset if MB is inter dw MbFieldFlag : 1; // Set if field MB, unset if frame MB dw Transform8x8Flag : 1; // Set if current MB uses 8x8 transforms dw : 1; // MBZ dw CodedPatternDC : 3; // AVC Only. Indicates whether DC coeffs are sent. Y is most significant bit. dw EdgeFilterFlag : 3; // AVC. dw : 1; // MBZ dw PackedMvNum : 8; // Debug only. Specifies number of MVs in packed motion vector form }; struct { dw Value; }; } DW0; // dw 1 union { struct { dw MbXCnt : 16; // Horizontal Origin of MB in dest piture in units of MBs dw MbYCnt : 16; // Vertical Origin of MB in dest piture in units of MBs }; struct { dw Value; }; } DW1; // dw 2 union { struct { dw CbpAcY : 16; // Coded block pattern for Y. dw CbpAcU : 4; // Coded block pattern for U dw CbpAcV : 4; // Coded block pattern for V dw : 6; // Reserved dw LastMBOfSliceFlag : 1; // Indicates current MB is last in slice. Data not right dw ConcealMBFlag : 1; // Specifies in MB is a conceal MB. }; struct { dw Value; }; } DW2; // dw 3 union { struct { dw QpPrimeY : 7; // AVC: Per-MB QP for luma. dw QScaleType : 1; // MPEG2 only dw MbClock16 : 8; // MB compute clocks in 16-clock units dw NzCoefCountMB : 9; // All coded coefficients in MB dw : 3; // Reserved dw Skip8x8Pattern : 4; // AVC Only. Indicates which of the 8x8 sub-blocks uses predicted MVs }; struct { dw Value; }; } DW3; // dw 4 union { struct { dw LumaIntraPredModes0 : 16; // AVC only dw LumaIntraPredModes1 : 16; // AVC only } Intra; struct { dw SubMbShape : 8; // Indicates sub-block partitioning for each 8x8 sub-block dw SubMbPredModes : 8; // Indicates prediction mode for each 8x8 sub-block dw : 16; // Reserved } Inter; struct { dw Value; }; } DW4; // dw 5 union { struct { dw LumaIntraPredModes2 : 16; // AVC only dw LumaIntraPredModes3 : 16; // AVC only } Intra; struct { dw FrameStorIDL0_0 : 8; dw FrameStorIDL0_1 : 8; dw FrameStorIDL0_2 : 8; dw FrameStorIDL0_3 : 8; } Inter; struct { dw Value; }; } DW5; // dw 6 union { struct { dw MbIntraStruct : 8; // Indicates which neighbours can be used for intra-prediction dw : 24; // Reserved } Intra; struct { dw FrameStorIDL1_0 : 8; dw FrameStorIDL1_1 : 8; dw FrameStorIDL1_2 : 8; dw FrameStorIDL1_3 : 8; } Inter; struct { dw Value; }; } DW6; // dw 7 union { struct { dw SubBlockCodeTypeY0 : 2; // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4 dw SubBlockCodeTypeY1 : 2; // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4 dw SubBlockCodeTypeY2 : 2; // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4 dw SubBlockCodeTypeY3 : 2; // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4 dw SubBlockCodeTypeU : 2; // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4 dw SubBlockCodeTypeV : 2; // VC-1. Specifies if 8x8, 8x4, 4x8, 4x4 dw : 8; dw MvFieldSelect : 4; // Field polatity for VC-1 and MPEG2 dw : 8; }; struct { dw Value; }; } DW7; // dw 8-15 for inter MBs only union { struct { dw MvFwd_x : 16; // x-component of fwd MV for 8x8 or 4x4 sub-block dw MvFwd_y : 16; // y-component of fwd MV for 8x8 or 4x4 sub-block dw MvBwd_x : 16; // x-component of bwd MV for 8x8 or 4x4 sub-block dw MvBwd_y : 16; // y-component of bwd MV for 8x8 or 4x4 sub-block }; struct { dw Value[2]; }; } QW8[4]; } VADecStreamOutData; #endif /*_AVC_STREAMOUT_DEMO_H_*/ ================================================ FILE: vendor/intel/meson.build ================================================ executable('avcstreamoutdemo', [ 'avcstreamoutdemo.c' ], dependencies: libva_display_dep, install: true) ================================================ FILE: vendor/intel/sfcsample/DecodeParamBuffer.h ================================================ /* * * Copyright (C) 2018 Intel Corporation. All Rights Reserved. * * ** 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, sub license, 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 (including the * * next paragraph) 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 NON-INFRINGEMENT. * * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. * */ #pragma once typedef unsigned int VA_RT_Format; // AVC Picture Parameters const uint8_t g_PicParams_AVC[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x11, 0x00, 0x00, 0x00, 0x05, 0x00, 0x11, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; // AVC slice Parameters const uint8_t g_SlcParams_AVC[] = { 0xD8, 0x87, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; // AVC Qmatrix Parameters const uint8_t g_Qmatrix_AVC[] = { 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; // AVC Bitstream Parameters const uint8_t g_Bitstream_AVC[] = { 0x25, 0x88, 0x84, 0x0B, 0xC0, 0xB5, 0x80, 0xC4, 0x6A, 0xBC, 0x32, 0x00, 0x02, 0x00, 0x7C, 0xBA, 0xD4, 0xBA, 0x03, 0x76, 0x65, 0x9B, 0xE8, 0x48, 0x2A, 0x6F, 0xF4, 0xC5, 0x58, 0x01, 0xC4, 0x81, 0xBA, 0x0D, 0xFA, 0x9F, 0xCF, 0x31, 0x18, 0x0C, 0xC2, 0x29, 0xA9, 0x1B, 0xF3, 0x70, 0xC7, 0x00, 0x03, 0x70, 0xA5, 0x00, 0x00, 0x81, 0xD7, 0x81, 0xD9, 0x6B, 0x81, 0x23, 0xFA, 0x80, 0x74, 0x3B, 0xB8, 0x70, 0x3A, 0x32, 0xDA, 0xEB, 0x7A, 0x63, 0x33, 0x09, 0x28, 0x9C, 0xF6, 0xF9, 0xFC, 0x67, 0xA0, 0x02, 0x18, 0xC1, 0x2B, 0x86, 0x72, 0x5A, 0x25, 0x6B, 0x80, 0x2D, 0x29, 0x9A, 0x77, 0x2F, 0xAA, 0x69, 0x5D, 0xA9, 0x8E, 0x3F, 0xCB, 0xA7, 0x86, 0x59, 0x19, 0xD0, 0xC1, 0x0C, 0x91, 0xD0, 0xC5, 0x08, 0x91, 0xC1, 0x7A, 0x62, 0x06, 0xA7, 0x17, 0x01, 0x48, 0x5F, 0x5D, 0xF5, 0xF7, 0xF8, 0x6D, 0x04, 0x94, 0x0F, 0x09, 0x7C, 0x36, 0x06, 0xED, 0x77, 0x60, 0x0C, 0x0B, 0x9D, 0xA3, 0x7E, 0x11, 0xCC, 0xE6, 0x18, 0x6F, 0xF4, 0x25, 0x68, 0xAA, 0xAA, 0xC6, 0x27, 0x21, 0x68, 0x8D, 0x53, 0xEC, 0x53, 0xC0, 0x3A, 0x15, 0x3A, 0x76, 0x65, 0x53, 0xEF, 0x9C, 0x01, 0xED, 0x2C, 0xCD, 0x60, 0xD2, 0xA0, 0x05, 0xEC, 0x22, 0xAF, 0xC8, 0xCF, 0x72, 0x49, 0xEC, 0x64, 0x7A, 0x15, 0x01, 0xD9, 0x53, 0xFF, 0x74, 0xC0, 0x35, 0xBE, 0x98, 0xCC, 0x80, 0x1B, 0xEC, 0x2A, 0x00, 0x46, 0x8C, 0xDD, 0xCF, 0xA7, 0x9A, 0x64, 0x02, 0x51, 0x0A, 0x33, 0xC3, 0x89, 0x03, 0x00, 0x1E, 0x5D, 0x0B, 0x53, 0x1A, 0xEB, 0xDC, 0xF2, 0x0A, 0x6C, 0x06, 0xCA, 0x08, 0xA1, 0x7F, 0x98, 0x61, 0xB1, 0x75, 0xD7, 0x8F, 0xB0, 0xF4, 0xBB, 0xBA, 0x95, 0xFF, 0x2C, 0xAD, 0x38, 0x01, 0x92, 0xC7, 0x92, 0x5A, 0xEF, 0x6F, 0x04, 0x8C, 0x1F, 0xCD, 0x15, 0x26, 0x74, 0x61, 0xDF, 0x78, 0x04, 0x42, 0x01, 0x11, 0x1F, 0xE1, 0xE3, 0xEF, 0x00, 0x1B, 0x57, 0xC6, 0x0E, 0x8C, 0x50, 0xE8, 0xDA, 0x37, 0x32, 0xFF, 0x1B, 0x09, 0xFF, 0x2B, 0xE6, 0x62, 0xD7, 0x41, 0xEB, 0x92, 0xA3, 0x30, 0x6A, 0x0C, 0x91, 0x9C, 0xAC, 0x27, 0x6D, 0x4F, 0x72, 0xD0, 0xAA, 0x08, 0xEC, 0xFD, 0x9C, 0x15, 0x48, 0x7C, 0x03, 0x40, 0x70, 0xE3, 0x2C, 0x14, 0xA1, 0x45, 0x43, 0xAC, 0x56, 0xED, 0x6C, 0x98, 0xAF, 0x77, 0x80, 0xDF, 0xB2, 0x01, 0xEE, 0x36, 0x3F, 0xC7, 0xFA, 0xDF, 0xFA, 0x18, 0x3C, 0x1C, 0x8D, 0x04, 0x00, 0x10, 0xA4, 0x00, 0x12, 0x11, 0x02, 0x28, 0x5A, 0x70, 0xC8, 0x17, 0x14, 0xDF, 0x80, 0x18, 0x04, 0x7A, 0x2D, 0x06, 0x20, 0x8D, 0xC0, 0x50, 0x04, 0x57, 0x11, 0x8D, 0x55, 0xEC, 0x1E, 0xE6, 0xB9, 0xCD, 0x4E, 0xA8, 0xAB, 0xDD, 0x80, 0x27, 0xB1, 0x0A, 0x00, 0x02, 0x04, 0x42, 0xCE, 0xC5, 0xCD, 0x03, 0x16, 0x6A, 0x16, 0xFF, 0xD5, 0x76, 0xBE, 0x30, 0x09, 0x75, 0x09, 0xB6, 0x0E, 0x94, 0xC2, 0x73, 0x81, 0x85, 0xDB, 0x25, 0x5F, 0x9F, 0xC8, 0x8E, 0x80, 0x00, 0x40, 0x00, 0xF0, 0x1D, 0x39, 0x72, 0xC9, 0x77, 0x5E, 0xE8, 0x60, 0x1C, 0x71, 0x61, 0xC5, 0x4C, 0x06, 0xA4, 0xD4, 0xA0, 0x3D, 0x3D, 0x02, 0x25, 0xF3, 0x43, 0x8B, 0x9F, 0x29, 0xF5, 0x7D, 0x28, 0x6D, 0xA9, 0xF4, 0x08, 0xF5, 0xC6, 0x8C, 0x4E, 0xC5, 0x7B, 0xE3, 0x00, 0x00, 0xCF, 0x8A, 0xF7, 0x73, 0xB1, 0x51, 0xA3, 0x9C, 0x4C, 0xD3, 0xFF, 0xF5, 0x82, 0x09, 0x5C, 0x02, 0x04, 0x41, 0x9C, 0x09, 0x45, 0xB9, 0x9D, 0x30, 0x04, 0x8E, 0xE0, 0x4A, 0x36, 0x82, 0x16, 0x2E, 0xEC, 0x41, 0x49, 0xEF, 0x04, 0x98, 0x88, 0x4D, 0xB0, 0x3A, 0x82, 0x51, 0xA1, 0xC1, 0x2C, 0x9D, 0xC1, 0xC4, 0xAC, 0xCE, 0xF9, 0x0F, 0x03, 0x6B, 0x60, 0x49, 0x2E, 0x0A, 0x4E, 0x7E, 0xB1, 0x43, 0x0F, 0x2F, 0x5A, 0x82, 0x2B, 0x98, 0xBE, 0xDD, 0xA2, 0x41, 0x97, 0xE6, 0xE1, 0xF5, 0xFD, 0x2E, 0xDE, 0x09, 0x57, 0x6A, 0x67, 0xF4, 0xCE, 0x00, 0x3D, 0xE5, 0x62, 0x98, 0x82, 0xF9, 0x76, 0x72, 0x00, 0xE7, 0x2C, 0x46, 0xD8, 0x33, 0xFE, 0xC7, 0xA9, 0x8C, 0xD0, 0xAF, 0xC8, 0xDD, 0x18, 0x15, 0x73, 0x36, 0xB2, 0x78, 0x96, 0x3A, 0x82, 0x17, 0x0A, 0xFF, 0x66, 0x50, 0x29, 0x84, 0x8E, 0xD1, 0x34, 0x9B, 0x77, 0xFD, 0x21, 0xC8, 0x37, 0x98, 0x06, 0x41, 0x2D, 0xB2, 0x31, 0xB7, 0xFF, 0x53, 0xFC, 0x38, 0x29, 0xCD, 0xBA, 0xCC, 0x72, 0x52, 0xC1, 0xE1, 0x0C, 0x08, 0xA1, 0x01, 0x01, 0xDE, 0x10, 0x05, 0xD9, 0x83, 0x8F, 0xE5, 0x2F, 0xB9, 0xD9, 0x94, 0x7A, 0x02, 0x6A, 0xB8, 0xE3, 0xD2, 0x86, 0xA5, 0x57, 0x4F, 0x53, 0x3E, 0x28, 0x0D, 0x47, 0xC6, 0xF5, 0xED, 0x8E, 0xE8, 0x97, 0x07, 0xB8, 0xC8, 0x95, 0x7E, 0xB2, 0xA4, 0x92, 0xB0, 0x51, 0x51, 0x5B, 0xE2, 0x4F, 0xF1, 0xF6, 0x91, 0xCF, 0x22, 0x0E, 0x40, 0xA5, 0x5F, 0x3C, 0x8A, 0xFF, 0xFD, 0x14, 0x28, 0xBC, 0xE3, 0xF5, 0xD8, 0x58, 0xD8, 0x00, 0x08, 0x04, 0x34, 0x32, 0x80, 0x16, 0x14, 0x90, 0x96, 0x21, 0x03, 0x8F, 0xA7, 0x77, 0x35, 0xE9, 0x60, 0xB0, 0x5F, 0x22, 0x13, 0xDF, 0xD1, 0xA6, 0x13, 0xFF, 0x5E, 0x45, 0xFD, 0xF2, 0x4D, 0xF7, 0xDF, 0x03, 0x10, 0xE2, 0xA9, 0x37, 0xBB, 0xDC, 0x60, 0xEE, 0xC1, 0xAB, 0x3A, 0x34, 0x9F, 0x03, 0x9D, 0x6E, 0xCA, 0xD9, 0x2F, 0x6C, 0x90, 0x31, 0x70, 0x80, 0x00, 0x88, 0x21, 0xC1, 0x78, 0x92, 0xC2, 0xA2, 0xAF, 0x0D, 0xE5, 0xB7, 0x4C, 0xDD, 0x8F, 0x28, 0x70, 0xB4, 0xF8, 0xA1, 0xCC, 0x57, 0x03, 0x28, 0xD4, 0xC8, 0x00, 0xC8, 0x17, 0x11, 0x27, 0x9B, 0x41, 0x51, 0x15, 0x8B, 0xDF, 0x0A, 0x06, 0x52, 0x9B, 0x38, 0x71, 0xFA, 0x56, 0xC6, 0xF6, 0x98, 0x00, 0x5B, 0xD8, 0x6C, 0xEB, 0x9A, 0xDA, 0xC0, 0x8E, 0xD3, 0x65, 0x23, 0x70, 0xB9, 0x81, 0xC8, 0xF4, 0x7E, 0xF4, 0x21, 0x6C, 0x2D, 0x68, 0x40, 0xC6, 0xEB, 0x9A, 0x0A, 0x57, 0xCE, 0x2B, 0xBF, 0xBF, 0xAE, 0xE4, 0xC7, 0x55, 0xFD, 0xED, 0xFF, 0x69, 0xC8, 0x68, 0x5D, 0xF8, 0x28, 0xF7, 0x67, 0x05, 0xEF, 0x32, 0x0E, 0x25, 0xDF, 0xF3, 0xB1, 0xD7, 0x86, 0xFD, 0xD1, 0x08, 0xFD, 0x5C, 0x8D, 0x22, 0xE5, 0x9F, 0xAB, 0xF0, 0x7C, 0x2A, 0x16, 0x6E, 0x8D, 0x5B, 0xBB, 0x06, 0x2A, 0x3B, 0x2A, 0x1D, 0xB8, 0x18, 0x01, 0xA2, 0x05, 0x19, 0xC4, 0x57, 0xAC, 0x7D, 0x39, 0x60, 0x36, 0x40, 0x7F, 0x12, 0x8F, 0x55, 0x2F, 0xEB, 0x98, 0x61, 0xCE, 0xFA, 0x1E, 0x10, 0x33, 0x03, 0x14, 0x2F, 0x4E, 0x03, 0x93, 0x15, 0x90, 0x10, 0x4B, 0x7F, 0x4A, 0xD0, 0x30, 0x3F, 0x66, 0x04, 0xB4, 0xFA, 0x13, 0x24, 0x68, 0x1D, 0x74, 0xED, 0xC1, 0xD9, 0x71, 0x7D, 0xFA, 0xA4, 0x72, 0x00, 0x02, 0x25, 0xA8, 0xAF, 0x80, 0x01, 0xA7, 0xE4, 0xB8, 0xD1, 0x7C, 0xD9, 0x79, 0xA2, 0x01, 0x4B, 0xA8, 0x42, 0xCE, 0xB7, 0x53, 0x5B, 0x98, 0x5D, 0xA9, 0xED, 0x4F, 0x7C, 0x1D, 0xB9, 0xEE, 0xB3, 0x3E, 0x07, 0xDD, 0xA2, 0xCF, 0xBF, 0xFD, 0x83, 0xD4, 0xD4, 0xE7, 0x76, 0xB9, 0x07, 0x95, 0xAA, 0x9E, 0x15, 0x04, 0xBD, 0x93, 0x1B, 0x1D, 0xF1, 0xCA, 0x4B, 0xF5, 0x6E, 0xEC, 0x87, 0x4B, 0x10, 0x4F, 0x6F, 0xAF, 0xA4, 0x1E, 0xB2, 0x07, 0x96, 0x9F, 0xF7, 0xC1, 0xB4, 0x44, 0x7B, 0x06, 0xC0, 0xB6, 0x73, 0x07, 0x42, 0x94, 0xB2, 0xBE, 0xB8, 0x56, 0x6E, 0xA7, 0x5E, 0x1E, 0xD8, 0x14, 0xB7, 0x67, 0x14, 0x06, 0xA8, 0xD8, 0xAE, 0x4E, 0xD7, 0x83, 0x8A, 0x40, 0xFB, 0x1A, 0x99, 0x80, 0x25, 0x8B, 0x59, 0x80, 0xF1, 0xFA, 0xE2, 0x6B, 0x46, 0x66, 0x00, 0x6C, 0xE5, 0xF6, 0xD7, 0x46, 0xB7, 0x7F, 0x8A, 0x04, 0xCA, 0xED, 0xAA, 0x32, 0x2D, 0x01, 0x3D, 0xEA, 0xFB, 0x50, 0x8B, 0x12, 0xFD, 0xD1, 0xAE, 0x73, 0x08, 0x36, 0xF9, 0xB2, 0xD6, 0x45, 0x48, 0x40, 0x2C, 0x32, 0xFF, 0xFA, 0xF6, 0x51, 0x30, 0x87, 0xFE, 0xF8, 0x18, 0x84, 0x4E, 0xF4, 0x9E, 0x6E, 0xCD, 0x4D, 0xEC, 0x5B, 0x11, 0x19, 0x20, 0x76, 0xB1, 0x59, 0xBC, 0xA0, 0x44, 0x0E, 0xDF, 0x21, 0xA0, 0x0E, 0x97, 0xB2, 0x2F, 0x3A, 0x17, 0xBA, 0xC7, 0x3E, 0xA0, 0x8A, 0xAC, 0xB5, 0xE8, 0x42, 0xB4, 0x0E, 0x7C, 0x0B, 0xA6, 0x12, 0x47, 0x53, 0xDA, 0x09, 0x72, 0x4D, 0x7E, 0xE4, 0x78, 0x2D, 0x14, 0xA4, 0x59, 0xEF, 0x59, 0x94, 0x25, 0x21, 0x7B, 0x45, 0x71, 0xD4, 0xB9, 0x78, 0x1E, 0x51, 0xB4, 0x7F, 0xF6, 0x5E, 0x20, 0x4A, 0x3E, 0x52, 0x97, 0x38, 0x1E, 0x58, 0xA9, 0xE6, 0x64, 0x23, 0x37, 0x44, 0xA5, 0xD4, 0xEC, 0xF8, 0x50, 0xAC, 0xAA, 0xFD, 0x1F, 0x57, 0xC1, 0x43, 0x53, 0x60, 0x0B, 0x55, 0xFE, 0xDB, 0x4F, 0xCB, 0x65, 0x65, 0x00, 0x36, 0x46, 0xDC, 0x87, 0xC1, 0x2C, 0x78, 0xBC, 0x27, 0x7F, 0x5A, 0xC7, 0xEE, 0x79, 0x08, 0x41, 0xFD, 0xEF, 0x64, 0xBC, 0x04, 0xD6, 0xF3, 0x26, 0x2F, 0x29, 0x6E, 0x5A, 0x41, 0x20, 0xAA, 0xEE, 0x04, 0x86, 0x49, 0xE1, 0xA6, 0x67, 0x9A, 0x1A, 0xD2, 0x41, 0xF9, 0xDD, 0x49, 0x88, 0x05, 0x8C, 0x97, 0xBE, 0x80, 0x65, 0xA2, 0x13, 0xE4, 0x47, 0x00, 0x35, 0xF4, 0x94, 0xDB, 0xC0, 0x69, 0x2D, 0xFD, 0xD4, 0xF4, 0xEE, 0x80, 0x3E, 0xE7, 0x0D, 0x64, 0x15, 0xE3, 0xCB, 0xC8, 0xCB, 0x0D, 0xE0, 0x2D, 0xDD, 0xAB, 0x71, 0x64, 0x1C, 0x62, 0xCF, 0x5E, 0xFF, 0x94, 0xCD, 0x16, 0x9B, 0xB6, 0xAA, 0x27, 0xC3, 0x49, 0x55, 0xEF, 0x7E, 0x81, 0xE4, 0xDD, 0xD6, 0xEA, 0xB4, 0x28, 0xD6, 0x24, 0xBD, 0x50, 0xFB, 0x78, 0x9B, 0xAF, 0xFE, 0xB5, 0xE2, 0x62, 0x11, 0xB3, 0x06, 0x37, 0x11, 0xB0, 0x39, 0x2F, 0x3D, 0x9B, 0x0E, 0xDF, 0x18, 0x17, 0x88, 0x81, 0x7B, 0xA3, 0x6A, 0xD5, 0xDB, 0xB4, 0x99, 0x6F, 0x64, 0xEC, 0x9F, 0x10, 0xBE, 0x26, 0x24, 0xC7, 0x8F, 0xA8, 0x69, 0x0E, 0xDF, 0x55, 0x44, 0xAB, 0xCC, 0xB4, 0x41, 0x22, 0xCE, 0x14, 0xA9, 0x6A, 0xE5, 0xAE, 0xA4, 0xAD, 0x60, 0x0E, 0xC9, 0x6B, 0x9E, 0x6B, 0x01, 0xF8, 0x23, 0x96, 0xB0, 0x52, 0x06, 0xE4, 0xAC, 0x48, 0xFD, 0x0F, 0x3D, 0xA1, 0x39, 0xDF, 0xF8, 0x88, 0x18, 0x93, 0x19, 0xF8, 0xE5, 0x80, 0x1C, 0xDA, 0xB3, 0xF6, 0x06, 0x33, 0xB3, 0xFD, 0xF5, 0xD2, 0x8D, 0xE9, 0xA0, 0xE5, 0x7A, 0xDE, 0x80, 0xC6, 0x83, 0xF9, 0x67, 0xBD, 0x92, 0xA3, 0xCC, 0xEC, 0x73, 0xDA, 0x32, 0xCF, 0x12, 0x0D, 0xEA, 0x2D, 0x6F, 0xC4, 0xED, 0x97, 0xF3, 0xEA, 0xD8, 0xF0, 0xA6, 0x9B, 0xFD, 0xE5, 0x1D, 0xE6, 0x9F, 0x22, 0xC8, 0xB8, 0x0D, 0xCE, 0x08, 0x88, 0xE8, 0x9F, 0x4F, 0x27, 0xBF, 0x5C, 0xBD, 0xEB, 0x2C, 0x53, 0x9A, 0x1C, 0x6B, 0x20, 0xA7, 0x7F, 0x23, 0x17, 0x47, 0x92, 0xBE, 0xD5, 0xDD, 0xED, 0xA7, 0xC3, 0xCC, 0x88, 0x02, 0x91, 0xB0, 0x6B, 0xDE, 0xFA, 0xE0, 0x3D, 0xF8, 0x0A, 0x9D, 0x27, 0x6F, 0xC5, 0x70, 0x33, 0x2E, 0xCE, 0xF8, 0x5E, 0xEB, 0x1F, 0x2A, 0x09, 0xE1, 0x7D, 0x67, 0xFF, 0x7D, 0x65, 0xBD, 0xAD, 0x91, 0x81, 0x6D, 0xD5, 0x1F, 0x94, 0x44, 0x99, 0xC2, 0x9C, 0x83, 0x3B, 0xFF, 0x6A, 0x77, 0x32, 0xBA, 0x0B, 0x70, 0xB0, 0x2C, 0x48, 0xD6, 0x81, 0x56, 0x3A, 0x9A, 0x0F, 0x81, 0xA1, 0x09, 0x11, 0xBA, 0x2E, 0x22, 0xA7, 0x10, 0x95, 0x4C, 0xC4, 0x97, 0xCB, 0x3C, 0x28, 0x10, 0xC7, 0x69, 0x23, 0xDF, 0x0E, 0x37, 0xCB, 0x4A, 0x3F, 0x6F, 0xE3, 0xB6, 0xE0, 0xED, 0x4C, 0x0F, 0x11, 0x1F, 0x15, 0xBD, 0xBC, 0xE2, 0xC0, 0x89, 0x1A, 0x30, 0xD7, 0xD4, 0x5F, 0x85, 0x1B, 0xFD, 0x97, 0xBF, 0x42, 0x09, 0xD9, 0xF6, 0x2B, 0x86, 0xEB, 0x53, 0xD6, 0x9C, 0x38, 0xF3, 0x7D, 0xBA, 0x69, 0x1A, 0x7D, 0x53, 0x13, 0xE0, 0x87, 0xA1, 0x4E, 0xB7, 0xD6, 0xDD, 0x24, 0x64, 0x3B, 0x64, 0xCA, 0x47, 0xF3, 0x33, 0x10, 0x92, 0xEE, 0xF8, 0xF8, 0x13, 0x23, 0xAF, 0xAE, 0x24, 0x1B, 0x24, 0x24, 0x21, 0x9F, 0x70, 0x2F, 0x0F, 0x3E, 0x66, 0x3D, 0x17, 0x79, 0xA7, 0x99, 0xA1, 0x03, 0x17, 0xD6, 0x40, 0xCE, 0x62, 0xD3, 0x7F, 0xFD, 0xFA, 0xA6, 0x4C, 0xFF, 0x29, 0x6D, 0x1D, 0x7B, 0xFA, 0xA8, 0x73, 0x52, 0xBA, 0x2F, 0x6F, 0x99, 0xF6, 0x08, 0x5A, 0x29, 0xF9, 0xD9, 0x88, 0x97, 0x7A, 0x2C, 0x2E, 0x11, 0x04, 0x79, 0x4B, 0x14, 0xBD, 0x22, 0x6F, 0xFE, 0xB8, 0xBF, 0x39, 0x54, 0x89, 0x9E, 0x84, 0xD3, 0xEC, 0x99, 0x00, 0x61, 0xD9, 0x12, 0x5B, 0xDF, 0x54, 0xBF, 0x9A, 0x82, 0xA7, 0x77, 0x77, 0x6F, 0x0F, 0x0D, 0x4A, 0x06, 0xBE, 0xCA, 0x26, 0xE5, 0x73, 0xEE, 0xF6, 0x71, 0x7A, 0xD3, 0xEF, 0x5B, 0x8D, 0xDA, 0x09, 0x2A, 0x6D, 0xAF, 0x40, 0x62, 0x17, 0x79, 0x8A, 0x6F, 0xBE, 0xE4, 0x2E, 0x60, 0xFD, 0x69, 0x6F, 0xAD, 0xF4, 0x11, 0x1B, 0x9D, 0xBF, 0xE6, 0xFB, 0x33, 0xA8, 0x0B, 0x18, 0x1F, 0xA0, 0xB4, 0xEB, 0x47, 0xAA, 0x8E, 0x5C, 0x49, 0x7C, 0x00, 0x78, 0x88, 0x2C, 0xFD, 0xEA, 0x88, 0x3B, 0x26, 0xCB, 0x6E, 0xBB, 0xED, 0x2C, 0xE9, 0xE2, 0xE8, 0x26, 0xF8, 0x4B, 0xAD, 0xEE, 0x60, 0xFA, 0x6C, 0x45, 0x37, 0x3A, 0x92, 0xB0, 0x7A, 0x04, 0x84, 0x4B, 0x97, 0xFC, 0x50, 0x1A, 0x8B, 0xD6, 0xB8, 0x7F, 0xEE, 0x38, 0x84, 0x93, 0xC0, 0xFF, 0xA4, 0x16, 0xB5, 0xAC, 0xF8, 0x35, 0x2C, 0xC9, 0x8B, 0x7D, 0x22, 0x8E, 0x07, 0x6E, 0xB1, 0xBA, 0x7F, 0xCF, 0xC9, 0x2A, 0x71, 0x80, 0xF1, 0x59, 0x14, 0x4A, 0x1C, 0x5D, 0xD7, 0xD2, 0xDF, 0x31, 0x74, 0xB4, 0x8C, 0x3F, 0xDF, 0xF2, 0x2C, 0xA2, 0x5D, 0x41, 0x3A, 0xE6, 0xCE, 0x5F, 0x54, 0x72, 0x40, 0x0D, 0x5F, 0xFF, 0x9E, 0xB9, 0x64, 0x40, 0x15, 0xA7, 0x4A, 0x08, 0x7B, 0xD8, 0x8B, 0x2F, 0x67, 0x34, 0xE9, 0x07, 0x7E, 0xAF, 0x90, 0x68, 0x01, 0x17, 0x76, 0x7F, 0xB3, 0x63, 0xDA, 0x3B, 0xA6, 0xD4, 0xDE, 0x6E, 0x00, 0xB2, 0x33, 0x85, 0x7C, 0x5B, 0x27, 0xE6, 0x41, 0x4F, 0x7A, 0x32, 0x45, 0xAD, 0x7E, 0xBF, 0x9C, 0x85, 0x99, 0x0E, 0x7F, 0xFC, 0xE5, 0xA0, 0x2D, 0xA0, 0xBD, 0x86, 0x86, 0x04, 0x0B, 0xAC, 0xBE, 0x3D, 0xF8, 0x49, 0x2F, 0xF2, 0xA3, 0x6F, 0x43, 0x66, 0xD5, 0x60, 0x92, 0x85, 0x43, 0x8D, 0xFF, 0xF7, 0x97, 0x11, 0xB4, 0x4A, 0xCD, 0x7A, 0x59, 0x94, 0xC0, 0x05, 0xA2, 0xD2, 0x7E, 0x57, 0xFA, 0xAC, 0x4C, 0x91, 0x47, 0xB4, 0x90, 0xEB, 0xFA, 0xF6, 0x9B, 0xCE, 0x94, 0xA1, 0x6D, 0xFC, 0x9B, 0x62, 0x8F, 0xA1, 0x0B, 0xEA, 0x12, 0x86, 0xFF, 0xBE, 0x0D, 0xD7, 0x02, 0x8B, 0xE0, 0x02, 0xF8, 0x67, 0x15, 0x68, 0xE2, 0x06, 0x10, 0x69, 0x45, 0x71, 0x8A, 0x39, 0x1C, 0x50, 0x81, 0x9A, 0x6E, 0x0D, 0xC7, 0x89, 0x79, 0x3E, 0x0A, 0x50, 0x05, 0x73, 0x55, 0x00, 0x01, 0x00, 0x05, 0xCF, 0x83, 0x91, 0x8B, 0x10, 0xA9, 0xD7, 0x5E, 0xA8, 0x72, 0x99, 0x01, 0xF1, 0xF9, 0x8B, 0xDE, 0xB8, 0x4C, 0x05, 0xB9, 0xE1, 0xEB, 0xFC, 0xA3, 0xCD, 0x11, 0xE4, 0x28, 0x03, 0xAF, 0xEB, 0xDA, 0x64, 0x1F, 0xB1, 0x9E, 0x5F, 0xC8, 0xAF, 0xD9, 0x28, 0xFC, 0x6F, 0x8C, 0x46, 0x5F, 0xFE, 0xC2, 0xA9, 0x24, 0x79, 0x96, 0xFB, 0xF8, 0xD3, 0x86, 0x4D, 0xFF, 0x62, 0x93, 0x8D, 0x8F, 0xB3, 0x45, 0x1C, 0x00, 0x85, 0xF8, 0x87, 0xE6, 0x45, 0x17, 0x02, 0x7F, 0x22, 0xEE, 0xE7, 0x20, 0x0B, 0xC8, 0xDF, 0xD0, 0x59, 0x8C, 0x69, 0x60, 0xAF, 0x28, 0x59, 0xDB, 0x57, 0x72, 0x96, 0x71, 0x64, 0x8C, 0xB0, 0xE6, 0x7F, 0x2F, 0x63, 0x8A, 0x23, 0x91, 0x27, 0xFF, 0x01, 0x8B, 0x83, 0xAC, 0x2A, 0x6E, 0xA2, 0x23, 0xBC, 0x70, 0xF6, 0x88, 0x4D, 0x42, 0x44, 0x68, 0x67, 0x28, 0xEF, 0x40, 0x1B, 0x0B, 0xB0, 0x1D, 0xCF, 0xD7, 0x61, 0x08, 0x56, 0x00, 0x5E, 0x0A, 0x1F, 0xF0, 0x05, 0x03, 0x2C, 0xF5, 0x27, 0x2B, 0x22, 0x7F, 0xBF, 0xB5, 0x96, 0xAB, 0xED, 0x1A, 0xBC, 0xBF, 0xD0, 0x6E, 0x16, 0xE8, 0xE4, 0x8D, 0x21, 0xF4, 0x26, 0x41, 0xA9, 0x7F, 0x3D, 0xA4, 0x6E, 0x30, 0x0D, 0x7D, 0x40, 0x84, 0xC0, 0x81, 0xC4, 0x82, 0x63, 0xF2, 0x88, 0xFC, 0xE7, 0x04, 0x4C, 0xA3, 0xAE, 0x1A, 0x9D, 0x54, 0x67, 0xCE, 0x2F, 0x4C, 0x8B, 0x5E, 0xD5, 0x64, 0x16, 0x12, 0x32, 0x72, 0xBD, 0x92, 0x80, 0x17, 0x9E, 0x82, 0x3A, 0xE6, 0xFE, 0xB5, 0x6A, 0xB5, 0xEC, 0x69, 0xBB, 0xFB, 0xE9, 0x52, 0x9E, 0xBA, 0xE3, 0x49, 0xFF, 0x6C, 0xC0, 0x73, 0x00, 0x90, 0x42, 0xBC, 0xB1, 0x8C, 0x29, 0xE3, 0x0C, 0xB5, 0x40, 0x0D, 0x0B, 0xC3, 0xAA, 0x8A, 0x0B, 0xFF, 0xD5, 0xEA, 0x75, 0x2A, 0xB8, 0xB7, 0x8A, 0x1E, 0xC5, 0xCE, 0x8D, 0xCC, 0xF2, 0x3B, 0xD9, 0xBF, 0xDA, 0x59, 0xC3, 0x85, 0x6C, 0x41, 0x4F, 0x33, 0xAE, 0x44, 0xC1, 0x91, 0xD4, 0xC7, 0xF5, 0x7B, 0x4E, 0x6D, 0xB9, 0x7F, 0xC7, 0x41, 0x51, 0x19, 0x45, 0x59, 0xAE, 0x3E, 0xD7, 0xBE, 0xAB, 0xB0, 0xF6, 0x43, 0x39, 0x4F, 0xBF, 0x6E, 0xB7, 0x3F, 0x34, 0xD9, 0x2F, 0xAA, 0x17, 0xD7, 0xFF, 0xEA, 0xA9, 0x01, 0x54, 0x0A, 0xBD, 0x77, 0x7E, 0xFC, 0x87, 0x0B, 0x48, 0x70, 0x3D, 0xF7, 0xB3, 0xFF, 0x6B, 0xE7, 0x8C, 0x1A, 0x8B, 0x8C, 0x7F, 0x72, 0x11, 0xC0, 0x20, 0x00, 0x28, 0x0A, 0xC6, 0xB1, 0x37, 0x8D, 0x23, 0x33, 0x19, 0xCD, 0x05, 0x02, 0x0F, 0x9D, 0x49, 0x8B, 0xA5, 0x62, 0xA8, 0x26, 0xC8, 0x3E, 0xF3, 0x72, 0x46, 0x61, 0xEC, 0xE4, 0xE1, 0x18, 0xE6, 0x46, 0x5C, 0x03, 0x6E, 0xB0, 0xEE, 0xB9, 0xE8, 0xC1, 0xE5, 0x38, 0xC4, 0x4C, 0x40, 0xD8, 0x28, 0x84, 0x02, 0xF1, 0x3E, 0x78, 0x21, 0xD9, 0xA9, 0x9E, 0x4B, 0x7E, 0x5C, 0x4B, 0xB9, 0x95, 0x6F, 0xB0, 0x14, 0x80, 0x5E, 0x8D, 0x30, 0x41, 0x40, 0x9C, 0xA8, 0xFF, 0x6B, 0x5A, 0x2C, 0x01, 0xB8, 0x7A, 0x3C, 0x45, 0x52, 0x7F, 0xB4, 0xF7, 0xA1, 0x26, 0x2B, 0xC1, 0x18, 0xB7, 0xA0, 0x43, 0x92, 0x09, 0xF4, 0x34, 0x7A, 0x54, 0x3C, 0x50, 0xCF, 0x25, 0xC4, 0x80, 0x00, 0x40, 0x9A, 0x47, 0x62, 0xD6, 0xB8, 0x02, 0xDA, 0xCF, 0x1F, 0xCD, 0x75, 0xF4, 0xE0, 0x24, 0xCF, 0xEB, 0xE2, 0x80, 0xE9, 0x9E, 0x3B, 0x73, 0x9F, 0x9C, 0xAF, 0xFF, 0xA1, 0x04, 0x10, 0x06, 0x00, 0x12, 0x01, 0x40, 0x55, 0x93, 0xA2, 0x83, 0xEC, 0x1E, 0x2C, 0x18, 0xFA, 0xBD, 0xD1, 0xE6, 0x0A, 0xCB, 0xBC, 0x55, 0x39, 0x01, 0x69, 0x41, 0x40, 0x01, 0xD0, 0xBE, 0x5A, 0x21, 0xDE, 0x24, 0x99, 0x8E, 0xC1, 0x60, 0x46, 0xFF, 0x92, 0x02, 0xD5, 0xCB, 0x4A, 0x07, 0x2C, 0xA0, 0x23, 0x7F, 0xD8, 0x97, 0x7D, 0x09, 0x16, 0xA7, 0x5B, 0x79, 0x0A, 0x6A, 0xEF, 0x2F, 0xFF, 0x29, 0x20, 0x8D, 0xC0, 0xE6, 0xC2, 0x54, 0xEF, 0xE4, 0xE2, 0x7C, 0x0A, 0xA2, 0xCB, 0x7C, 0x5C, 0xF9, 0x64, 0x7D, 0xBC, 0xAE, 0x98, 0x32, 0x7A, 0xAD, 0xA2, 0x51, 0x63, 0xBB, 0x57, 0x3A, 0x41, 0x3E, 0x49, 0x66, 0xBE, 0xD9, 0xCC, 0x81, 0x64, 0x82, 0xC9, 0xD8, 0xB7, 0x19, 0x00, 0x31, 0xFE, 0xC5, 0x4B, 0x97, 0xE8, 0x11, 0xAC, 0xCA, 0x84, 0x36, 0x96, 0xA1, 0x61, 0x16, 0x81, 0x4E, 0xA2, 0x51, 0xCF, 0x04, 0x9A, 0x0A, 0xAF, 0x17, 0xA4, 0xFB, 0xEB, 0x5D, 0x0F, 0x3E, 0xAE, 0xC4, 0x1F, 0xF8, 0x34, 0x6C, 0x82, 0x08, 0xD4, 0x7C, 0xED, 0x3D, 0xF1, 0x8C, 0x68, 0xA7, 0x1E, 0xFC, 0x94, 0x5A, 0x4F, 0x1D, 0x54, 0xD8, 0xED, 0xFB, 0xE0, 0xC7, 0x22, 0x72, 0x2E, 0xF0, 0x0A, 0x6B, 0xC7, 0x41, 0x08, 0x28, 0x5D, 0x72, 0x8A, 0x89, 0x69, 0x24, 0xCD, 0xDB, 0xFA, 0xD5, 0x2F, 0x49, 0x20, 0x6F, 0x3F, 0xEF, 0x58, 0xA0, 0x19, 0x2D, 0xA0, 0xAE, 0x25, 0x19, 0xB5, 0x86, 0x88, 0x7F, 0x93, 0x3D, 0x28, 0x46, 0x7B, 0xAF, 0xC0, 0x00, 0xCB, 0x60, 0xB5, 0xF0, 0x7B, 0xDE, 0xB5, 0x9A, 0x03, 0xD0, 0xC2, 0xA7, 0x54, 0xBF, 0x42, 0x1A, 0xBA, 0x48, 0xBF, 0xF1, 0x8F, 0x40, 0x96, 0x1D, 0xE0, 0x3C, 0x0E, 0xCF, 0xEB, 0x19, 0x24, 0xBC, 0xEB, 0x36, 0xFA, 0xFF, 0xEB, 0x51, 0x1A, 0xC8, 0x3A, 0xB4, 0x1B, 0xFF, 0xDD, 0x5B, 0xE1, 0x0F, 0x15, 0x73, 0x13, 0xFE, 0x31, 0xA3, 0x93, 0x00, 0x34, 0x1E, 0x70, 0x88, 0x7F, 0xE7, 0xF8, 0xE4, 0x2B, 0xF6, 0xBF, 0xEE, 0xDC, 0xFC, 0x85, 0x2F, 0xB7, 0xFF, 0xFD, 0x31, 0xB8, 0xAC, 0xA0, 0x38, 0x34, 0xEB, 0x7B, 0x4E, 0xC1, 0x49, 0x6D, 0x08, 0xF7, 0xA3, 0xE1, 0x10, 0x50, 0x62, 0x04, 0xA0, 0x60, 0x80, 0x85, 0xA5, 0x1B, 0xDC, 0x3A, 0xA4, 0x4A, 0x62, 0x8C, 0x94, 0x22, 0x91, 0xB1, 0x44, 0x2E, 0x95, 0x12, 0xB1, 0xC0, 0xCF, 0x45, 0xFE, 0x05, 0x8F, 0x49, 0x91, 0x83, 0x1A, 0x7A, 0x05, 0xE5, 0x0C, 0x63, 0xB9, 0x58, 0xA9, 0x46, 0xF7, 0x75, 0x08, 0x2C, 0x19, 0x19, 0x04, 0xFA, 0x8E, 0x9E, 0x3F, 0xB7, 0x23, 0x87, 0xC4, 0x0F, 0xDB, 0xF0, 0x7E, 0x05, 0x09, 0xA1, 0x96, 0x11, 0x62, 0x1F, 0x41, 0xBB, 0x41, 0x5E, 0xBE, 0xFB, 0x78, 0x10, 0xEB, 0x36, 0x60, 0x48, 0x2D, 0xD5, 0xF0, 0x70, 0x3C, 0xF0, 0xDB, 0x38, 0x64, 0x60, 0xC0, 0x88, 0x4F, 0x4F, 0x9B, 0x0D, 0xC1, 0xCA, 0x44, 0x3F, 0xFE, 0x3F, 0x8A, 0x9D, 0x5E, 0x60, 0x40, 0x9E, 0x43, 0x95, 0x29, 0xE1, 0x20, 0x72, 0x17, 0x83, 0xE1, 0xEA, 0xC4, 0x3C, 0x08, 0x21, 0xA8, 0x64, 0x89, 0x9B, 0x7F, 0xFF, 0xAC, 0x20, 0x8F, 0x7E, 0x18, 0x04, 0x00, 0x0E, 0x06, 0xA1, 0x62, 0xAC, 0x54, 0x8C, 0x6E, 0xC2, 0xF8, 0x8B, 0xEE, 0x1C, 0x2E, 0x03, 0x32, 0xA4, 0x01, 0x2A, 0x73, 0xE7, 0x8C, 0x23, 0x1F, 0x3E, 0x83, 0x74, 0x96, 0x0D, 0xC8, 0xA6, 0x1E, 0x06, 0xEE, 0x43, 0x3D, 0xF9, 0x0A, 0x45, 0x84, 0xDC, 0x02, 0xB7, 0x36, 0x51, 0x84, 0x10, 0x01, 0x89, 0xCD, 0xDC, 0x00, 0x20, 0xBD, 0xFE, 0xF0, 0x5A, 0xC5, 0xA4, 0x2F, 0x21, 0x5B, 0x5F, 0x65, 0xCF, 0xA6, 0xAF, 0xF1, 0x4C, 0xDF, 0xC1, 0x89, 0x30, 0x08, 0x35, 0x47, 0xFE, 0x93, 0xB4, 0x81, 0xD2, 0x8D, 0x36, 0xE8, 0x48, 0x3E, 0x14, 0x37, 0x11, 0x18, 0x8F, 0x8D, 0xC7, 0x4E, 0xDF, 0x9D, 0x3F, 0x64, 0x0C, 0xAB, 0x46, 0xAC, 0x4F, 0x66, 0x01, 0xAA, 0x89, 0xCC, 0xD1, 0x56, 0xBE, 0xC8, 0x94, 0xAA, 0xBE, 0x2F, 0xFD, 0xEE, 0x00, 0x0A, 0xCC, 0xAA, 0x39, 0x33, 0x14, 0xE3, 0xCB, 0x13, 0x9E, 0x1B, 0x92, 0x63, 0xBE, 0x79, 0xEE, 0x07, 0x6F, 0x65, 0x1C, 0xE2, 0xFB, 0x8E, 0x2D, 0x39, 0x7B, 0xA7, 0x96, 0xB5, 0x63, 0x12, 0xBA, 0x97, 0xB9, 0xFF, 0x47, 0x06, 0xB3, 0x13, 0x8F, 0xF5, 0x4E, 0x32, 0x82, 0x29, 0x75, 0x66, 0x8C, 0xBC, 0xE0, 0xC0, 0x00, 0x8C, 0x1A, 0x10, 0x10, 0x15, 0xA1, 0x5A, 0xEE, 0x4F, 0xC5, 0x09, 0x8F, 0x86, 0x51, 0x00, 0xE0, 0xF5, 0xD9, 0xC9, 0x35, 0x27, 0x44, 0x9B, 0x35, 0x32, 0x3B, 0xD0, 0xC6, 0xD2, 0xBC, 0x3C, 0x47, 0x37, 0x7F, 0x3A, 0x04, 0x78, 0x74, 0xC5, 0xBF, 0xA6, 0x0E, 0x38, 0x5B, 0x49, 0x5F, 0xCA, 0x1F, 0x5A, 0x6D, 0x63, 0x4A, 0x38, 0x89, 0x50, 0x81, 0xF1, 0xAF, 0xC5, 0x26, 0x72, 0xC0, 0x05, 0xBA, 0xEF, 0x56, 0xF1, 0x14, 0x00, 0x1B, 0x02, 0x5C, 0x3F, 0x38, 0x1F, 0x48, 0x94, 0x7E, 0x00, 0xCF, 0xBC, 0x68, 0xAE, 0x5C, 0x33, 0x36, 0x06, 0x00, 0x02, 0x00, 0xC8, 0xCB, 0x8C, 0xB9, 0xE8, 0x30, 0x73, 0x0C, 0x49, 0x87, 0x10, 0x76, 0xBC, 0x18, 0x82, 0x01, 0x68, 0x07, 0x68, 0x02, 0xDD, 0x7C, 0xDF, 0x05, 0x7A, 0xEA, 0x87, 0xF6, 0x39, 0x8C, 0xA6, 0xE2, 0x4F, 0xE7, 0x8B, 0xEC, 0x8E, 0x9C, 0x2A, 0x63, 0xA2, 0x16, 0xFF, 0x08, 0x17, 0x6C, 0x1B, 0x38, 0xDF, 0xEA, 0xB8, 0x33, 0x75, 0x42, 0x53, 0xF2, 0x7F, 0x86, 0x70, 0x48, 0x04, 0x7E, 0xC6, 0xB0, 0x69, 0x21, 0x90, 0x3A, 0xDF, 0x88, 0x1B, 0xA5, 0xF3, 0xE3, 0x1F, 0xC0, 0x28, 0x00, 0xAD, 0xC3, 0x6D, 0x0C, 0x28, 0xE2, 0x1F, 0xC8, 0xAD, 0xDC, 0x4D, 0xD6, 0x66, 0x33, 0x69, 0xBC, 0xF6, 0x01, 0x16, 0x0A, 0x25, 0xAC, 0x70, 0x03, 0xCD, 0x09, 0x94, 0x65, 0x5A, 0x42, 0xE8, 0x7E, 0x99, 0xC1, 0xA1, 0xEE, 0x58, 0x93, 0xF0, 0xFC, 0x23, 0x68, 0x7E, 0xF4, 0x0F, 0x1A, 0x00, 0x18, 0x35, 0xBA, 0xFF, 0x10, 0x6F, 0x8D, 0x9D, 0x83, 0x14, 0x92, 0x44, 0x7F, 0x94, 0x7A, 0x7C, 0xBB, 0x7D, 0x02, 0x2F, 0x95, 0x7B, 0xA5, 0x89, 0xF9, 0x07, 0x49, 0x80, 0xD4, 0x12, 0xFE, 0x5C, 0x0D, 0x11, 0x52, 0x02, 0xDE, 0x67, 0x86, 0x60, 0x01, 0xD7, 0xA8, 0x5C, 0xCE, 0xE3, 0x05, 0xAD, 0xB1, 0xE1, 0x7E, 0x0C, 0xE1, 0x40, 0xC1, 0x83, 0x86, 0xC1, 0x9B, 0x07, 0x63, 0x39, 0x7C, 0xE8, 0xBB, 0x00, 0x02, 0x07, 0x06, 0x1A, 0x86, 0x17, 0x02, 0x91, 0x74, 0x6A, 0x77, 0x4D, 0x0B, 0xFD, 0x11, 0x6B, 0x0A, 0x3C, 0xAE, 0x95, 0x5B, 0xE9, 0xB2, 0xB7, 0x64, 0xA0, 0xBA, 0xFA, 0x73, 0xCB, 0x04, 0x5A, 0xEF, 0xCA, 0xDF, 0xB8, 0xA5, 0xF9, 0xD4, 0xEB, 0x50, 0xE7, 0xCF, 0xAD, 0xD3, 0xE1, 0x3A, 0xC0, 0xBB, 0xBF, 0xEC, 0x9E, 0x8C, 0xC0, 0x22, 0x45, 0xEE, 0x6A, 0x8F, 0x70, 0x0E, 0x93, 0x04, 0xEB, 0xFF, 0xEE, 0xBE, 0xA8, 0x0C, 0xC2, 0xC3, 0x19, 0x66, 0xEE, 0xFC, 0xF9, 0x00, 0xD6, 0x4E, 0x11, 0x73, 0xA2, 0x81, 0x19, 0x91, 0x13, 0x71, 0xFA, 0xE3, 0x2C, 0x1A, 0x90, 0xE8, 0x81, 0x0F, 0xF9, 0xF4, 0xAB, 0x20, 0x3A, 0x63, 0x99, 0x05, 0xDF, 0x58, 0x41, 0xD6, 0xB0, 0x3D, 0xD5, 0x27, 0x6F, 0xED, 0x48, 0xC6, 0xBF, 0xAB, 0x64, 0x62, 0xD7, 0xEF, 0xE0, 0xC3, 0x21, 0xC9, 0xC0, 0xFF, 0x96, 0x8A, 0x2C, 0x7A, 0x2A, 0x5B, 0x5B, 0x6B, 0x55, 0x83, 0xAC, 0xA0, 0x8B, 0x45, 0x51, 0xA9, 0x3B, 0xF9, 0x1A, 0x5D, 0x81, 0x6F, 0xC7, 0xA1, 0x25, 0xC9, 0x30, 0x35, 0x7E, 0x54, 0xD8, 0x50, 0xA4, 0x44, 0xF7, 0xC5, 0xE1, 0xD0, 0x0C, 0x08, 0x48, 0xED, 0xBE, 0x18, 0xFE, 0x52, 0xDB, 0x82, 0x72, 0x01, 0x62, 0xAF, 0x8F, 0xD3, 0xE4, 0xBE, 0xAA, 0x6E, 0x07, 0x01, 0xD8, 0xC4, 0x84, 0xB5, 0x36, 0xD5, 0xB0, 0x8F, 0xB0, 0xB4, 0x44, 0x9B, 0xD5, 0x39, 0xA4, 0x01, 0xC8, 0x5B, 0xFD, 0xFA, 0x86, 0x18, 0x35, 0xCD, 0x56, 0x39, 0x7A, 0xAD, 0x80, 0x0E, 0xBB, 0xAC, 0x87, 0x6C, 0xC0, 0x9C, 0x34, 0xE8, 0xB2, 0xFD, 0xFB, 0x30, 0x02, 0x2C, 0xA6, 0x9B, 0x29, 0x5D, 0x3F, 0x2A, 0x8C, 0x3A, 0x6F, 0x1A, 0x4F, 0xF7, 0x96, 0x79, 0x0F, 0x73, 0x57, 0xC9, 0xCD, 0xF8, 0x08, 0xC6, 0xA2, 0x8C, 0x60, 0x34, 0x2E, 0xA3, 0x42, 0x77, 0x0C, 0x4A, 0x35, 0xBC, 0xDA, 0xCD, 0xE7, 0x6E, 0x35, 0x15, 0x96, 0x6A, 0x91, 0x5A, 0x13, 0x8F, 0xC9, 0x48, 0x32, 0xEB, 0xA4, 0x6D, 0xD8, 0x82, 0x68, 0xDF, 0xD4, 0xDA, 0x0B, 0x20, 0x7E, 0xDC, 0x6D, 0xAB, 0x8E, 0xB0, 0x94, 0x56, 0x49, 0x6B, 0xA8, 0x92, 0xF8, 0x81, 0x84, 0xFC, 0x4A, 0x99, 0xF8, 0xEC, 0x63, 0x02, 0x89, 0xB2, 0xE7, 0xFE, 0xE8, 0x46, 0xCB, 0x84, 0xBD, 0x9D, 0x9D, 0xFB, 0x70, 0xA6, 0xC8, 0x0A, 0x67, 0x47, 0xEF, 0x53, 0x43, 0xA4, 0xC2, 0x26, 0x7A, 0x17, 0xDB, 0x36, 0xC5, 0x83, 0x04, 0x43, 0x8C, 0xCD, 0x2C, 0xA3, 0x1E, 0xB4, 0x39, 0xCD, 0x3C, 0x4A, 0xFC, 0xCE, 0xCC, 0x84, 0x54, 0x73, 0xB1, 0xEB, 0x40, 0x69, 0x2A, 0x0C, 0x94, 0x9F, 0xFE, 0x8D, 0x57, 0x6A, 0xE9, 0xE8, 0xA9, 0xC2, 0x82, 0xF1, 0xD7, 0x82, 0x64, 0x05, 0xAB, 0x64, 0x4B, 0xA4, 0x4C, 0x71, 0x98, 0x3A, 0x8A, 0xFC, 0x11, 0x34, 0x4A, 0x63, 0xF0, 0x85, 0xCB, 0x94, 0x99, 0x1A, 0x4C, 0x62, 0xCB, 0x7F, 0x7D, 0xB2, 0x4C, 0x83, 0xA1, 0x75, 0xD9, 0xB5, 0x19, 0x1A, 0xE2, 0x00, 0x19, 0xFF, 0xEB, 0x9F, 0x8D, 0x09, 0x6A, 0x4B, 0xFD, 0x4A, 0x5B, 0xF3, 0xD8, 0xCF, 0x7D, 0x06, 0x72, 0x34, 0x82, 0x71, 0xD7, 0xD4, 0xC7, 0x38, 0x94, 0xE9, 0x8C, 0x4D, 0x7E, 0xD7, 0xCC, 0x84, 0xB5, 0x46, 0x4F, 0xEA, 0x16, 0x78, 0x19, 0x1C, 0xF1, 0x8D, 0x1F, 0xF2, 0x10, 0x07, 0xAA, 0x10, 0x9E, 0x93, 0x5D, 0xCB, 0x4B, 0x00, 0x06, 0xE0, 0xDC, 0xFE, 0xF4, 0xD9, 0x38, 0xBD, 0x1D, 0x3F, 0xE2, 0xF0, 0x53, 0x0F, 0x56, 0xAC, 0x70, 0xA6, 0xD9, 0x39, 0x73, 0x07, 0x6B, 0xFD, 0x4F, 0x35, 0x34, 0x18, 0xF1, 0xEE, 0xED, 0xAF, 0x83, 0x10, 0xC9, 0x56, 0x97, 0xFE, 0xF4, 0xB6, 0x88, 0x00, 0x25, 0x5A, 0x75, 0xBF, 0x19, 0x0A, 0x57, 0x18, 0x96, 0x90, 0x44, 0x67, 0xE2, 0x7F, 0xAD, 0xF0, 0x54, 0x82, 0xAD, 0xAF, 0x2A, 0x08, 0x22, 0x6E, 0xB7, 0x70, 0x70, 0xA7, 0x90, 0x6C, 0x20, 0xB4, 0x98, 0x73, 0x6F, 0x7D, 0xDA, 0xEF, 0x34, 0x2D, 0xCB, 0xF6, 0xD6, 0xF9, 0x85, 0x69, 0xD9, 0x3C, 0x5D, 0x69, 0x73, 0x44, 0x24, 0x44, 0x15, 0xBF, 0xE8, 0x0D, 0xD0, 0xF9, 0x67, 0x3A, 0x46, 0xE4, 0xF6, 0x82, 0xBF, 0xBB, 0x63, 0x43, 0x3C, 0x7D, 0x76, 0x4D, 0xE9, 0x8A, 0x45, 0xBB, 0xB5, 0x5B, 0x15, 0x0C, 0xED, 0x11, 0xEE, 0xFF, 0x9F, 0xF9, 0xC4, 0x65, 0x04, 0xFF, 0xD6, 0xB3, 0x75, 0x2E, 0x37, 0x4E, 0xF4, 0xE3, 0xEC, 0x28, 0x96, 0xB3, 0xAF, 0xB3, 0x47, 0xBC, 0x74, 0xBB, 0x87, 0xC3, 0xBD, 0x1D, 0x4B, 0x2B, 0x3A, 0xA7, 0x4B, 0x42, 0xC9, 0x77, 0x80, 0xD3, 0x40, 0x3D, 0x12, 0x2C, 0x9D, 0xD1, 0x0C, 0x98, 0xEF, 0x8C, 0xD5, 0x0D, 0xC2, 0x0A, 0x62, 0x2C, 0x3E, 0xBB, 0xEF, 0x85, 0x0F, 0xFC, 0xCA, 0xE4, 0x07, 0x8B, 0xA1, 0x30, 0x96, 0xAC, 0xB5, 0xB0, 0x4D, 0x97, 0xFF, 0xFB, 0x9C, 0xD9, 0x13, 0x22, 0x7A, 0x9D, 0x6E, 0xDC, 0xDC, 0xF8, 0x25, 0xD0, 0xF1, 0xB1, 0xEB, 0x2D, 0xBA, 0xCF, 0xAD, 0xA2, 0xD4, 0x21, 0xA5, 0x8F, 0x52, 0x12, 0xEF, 0xFF, 0xBE, 0x57, 0x91, 0xCE, 0x2E, 0x06, 0x51, 0xAE, 0xA1, 0xB1, 0xFE, 0xFA, 0xA1, 0xD6, 0x08, 0xB1, 0x03, 0x54, 0x9E, 0xF4, 0x04, 0xE1, 0x67, 0x33, 0x2F, 0x8F, 0x86, 0xE0, 0xFA, 0xB9, 0xFB, 0xB1, 0xC3, 0x8F, 0x9D, 0xEA, 0x4C, 0x1D, 0x87, 0x6E, 0x1F, 0x5C, 0xA3, 0x35, 0xBE, 0x01, 0x91, 0x13, 0x0A, 0x43, 0x39, 0xBE, 0xC8, 0x32, 0x2D, 0xF6, 0x61, 0x81, 0x0B, 0xAB, 0x9B, 0x13, 0x18, 0xBC, 0x61, 0x1F, 0x20, 0x92, 0xFF, 0x7F, 0x7B, 0x00, 0xFD, 0x95, 0x96, 0xF2, 0x6C, 0x59, 0x32, 0x34, 0x89, 0xE0, 0xDB, 0x75, 0xA9, 0xA4, 0x46, 0xC9, 0x84, 0xE6, 0xFF, 0x79, 0xFE, 0x90, 0x4A, 0xBF, 0x7D, 0xDA, 0x9C, 0xC7, 0x6E, 0xEA, 0x4F, 0xCF, 0xAA, 0xBC, 0xBC, 0x25, 0x13, 0x17, 0x7E, 0x4A, 0x66, 0xB1, 0x7B, 0xEA, 0xB4, 0x49, 0xD7, 0x39, 0x1B, 0xEB, 0xAC, 0x91, 0xCF, 0xA6, 0x8E, 0xF7, 0xD4, 0x60, 0x75, 0x97, 0x75, 0x91, 0xE6, 0xD3, 0x47, 0x7C, 0xFB, 0xF6, 0x68, 0x09, 0xAC, 0xC7, 0x5F, 0xD2, 0x8B, 0x66, 0xD6, 0x98, 0x89, 0xEF, 0x7A, 0x64, 0x5E, 0x43, 0x2B, 0x6B, 0x9A, 0x9D, 0x8D, 0xF5, 0xFF, 0xF7, 0xA0, 0x84, 0x17, 0x13, 0x08, 0xF7, 0x1E, 0x32, 0x5A, 0x41, 0x34, 0xFD, 0x8E, 0x5B, 0x95, 0x08, 0x00, 0x4D, 0xC6, 0x3D, 0x6C, 0xFE, 0x46, 0x4C, 0xE8, 0x0D, 0xF7, 0xE7, 0x6F, 0x06, 0x9A, 0x1A, 0xBD, 0x7A, 0x9F, 0xCD, 0x17, 0x8E, 0xCC, 0x34, 0x8D, 0x4E, 0x3B, 0x2F, 0x6C, 0xDE, 0x4F, 0x7B, 0x7F, 0x4E, 0x98, 0xA4, 0x41, 0xAE, 0xB4, 0xD2, 0x8A, 0xDE, 0x9F, 0xDC, 0xEB, 0x33, 0x78, 0x10, 0x99, 0xB5, 0x7A, 0xEF, 0x3E, 0xB3, 0x6B, 0x1B, 0x65, 0xB4, 0xC4, 0xFB, 0xFA, 0xC8, 0x69, 0xE3, 0x95, 0x27, 0xA8, 0xE4, 0xBF, 0xE5, 0x82, 0x5F, 0x5F, 0x3D, 0x82, 0x20, 0x3F, 0x48, 0x9C, 0xCF, 0x56, 0x1F, 0xFD, 0xB2, 0x52, 0x54, 0x5A, 0x45, 0x97, 0xBF, 0xFF, 0xB0, 0xEF, 0x93, 0xF4, 0xDA, 0xFF, 0xEF, 0xD4, 0xB1, 0xCB, 0x99, 0x65, 0x7F, 0x5E, 0xCC, 0x1D, 0xC8, 0x78, 0xF4, 0xF0, 0x6E, 0x46, 0x40, 0x0A, 0xA6, 0x51, 0x32, 0x25, 0x9D, 0x72, 0xBC, 0x3B, 0x7D, 0x57, 0xDF, 0xAA, 0x6C, 0xA6, 0x8F, 0x48, 0x0B, 0xFD, 0xCD, 0x4D, 0x0F, 0xEE, 0xA7, 0x69, 0xF7, 0x3E, 0xC3, 0xB4, 0xB3, 0xD2, 0xF0, 0x13, 0xDE, 0xF6, 0xC5, 0x7E, 0x84, 0xED, 0x93, 0x12, 0xC0, 0xD9, 0x3E, 0x5C, 0x0A, 0xBF, 0x9A, 0xD9, 0x0D, 0x97, 0x31, 0xBF, 0x39, 0xE5, 0xDF, 0xF8, 0x69, 0x84, 0xD8, 0x92, 0x3A, 0xEF, 0xF7, 0xED, 0x3B, 0xAE, 0x1A, 0x2B, 0x81, 0x29, 0x4F, 0xF5, 0x64, 0x12, 0xD0, 0xA4, 0xFB, 0xED, 0xF9, 0xD8, 0x0A, 0x05, 0x44, 0xDA, 0xE1, 0xCF, 0xFE, 0xF4, 0xA4, 0x7B, 0xFB, 0x25, 0xBF, 0x76, 0xB3, 0x89, 0xF8, 0x4C, 0x2A, 0xB7, 0x5F, 0xDA, 0xC0, 0x8D, 0x36, 0xB4, 0x0B, 0xBB, 0x14, 0x3D, 0x22, 0xFB, 0x01, 0x61, 0xAA, 0x7A, 0xD0, 0x3D, 0x00, 0x28, 0x2B, 0x68, 0xFD, 0xE5, 0x0C, 0x76, 0x5A, 0x39, 0xA9, 0x09, 0xA0, 0x82, 0xB5, 0x89, 0xD9, 0x09, 0xFF, 0x34, 0x85, 0x93, 0xBE, 0xA8, 0xCA, 0x77, 0x62, 0x8F, 0xC0, 0xDD, 0x10, 0x5E, 0xAD, 0xFB, 0x71, 0x76, 0x34, 0x43, 0x52, 0x0D, 0x86, 0xBD, 0xBD, 0xD3, 0xE0, 0x6B, 0xC9, 0xBB, 0x7A, 0xAD, 0xFC, 0xD5, 0xCA, 0x69, 0x11, 0x79, 0x79, 0x36, 0xEC, 0xF8, 0xE4, 0x81, 0xB1, 0x4F, 0x00, 0x6E, 0xB1, 0x67, 0x31, 0x2A, 0x57, 0x1A, 0x69, 0xB6, 0xD3, 0xF0, 0x4D, 0x82, 0xA7, 0xE2, 0xE1, 0x5E, 0xFF, 0x69, 0xA4, 0xC8, 0x2B, 0xC7, 0xBA, 0x5D, 0xCB, 0xB0, 0x98, 0xA7, 0x70, 0xE9, 0xE8, 0xA7, 0x7F, 0xFB, 0xD5, 0x88, 0xD8, 0x3D, 0xEA, 0x0F, 0xFE, 0x52, 0xE9, 0xE7, 0xE8, 0x00, 0xFE, 0xBE, 0x66, 0xC9, 0x03, 0x53, 0xF7, 0x79, 0x9E, 0x2D, 0x1C, 0x2E, 0xF6, 0xFB, 0xF5, 0xF1, 0xCD, 0x19, 0x3B, 0x3F, 0xD5, 0x8C, 0x84, 0x53, 0x95, 0x8E, 0xDD, 0x0F, 0x12, 0x21, 0x67, 0x55, 0x79, 0xB2, 0xBA, 0x87, 0xD1, 0x9E, 0xBC, 0x00, 0x84, 0x8A, 0xF8, 0xA9, 0x7F, 0xE9, 0x7C, 0x29, 0x2F, 0xC7, 0x13, 0x2C, 0xF7, 0x22, 0x81, 0x68, 0xC2, 0x36, 0xFD, 0x73, 0x79, 0x16, 0x3B, 0x10, 0xFD, 0xFE, 0xEA, 0x29, 0xE0, 0x6F, 0xD9, 0xC6, 0xC7, 0xCF, 0xBD, 0xF1, 0x62, 0x8A, 0x55, 0x54, 0xDF, 0x35, 0xEC, 0x69, 0x74, 0xDF, 0xC2, 0xD7, 0x59, 0x5C, 0x43, 0x9C, 0x71, 0xD4, 0x97, 0xFF, 0xA7, 0x5C, 0xAE, 0x1F, 0x49, 0xBA, 0xED, 0xBF, 0x90, 0x57, 0x24, 0x3F, 0x3D, 0xDD, 0x64, 0xF7, 0xC5, 0x42, 0x8F, 0xFF, 0xB7, 0xEA, 0xA5, 0x23, 0x49, 0xC1, 0xD9, 0xF7, 0xD3, 0x47, 0x02, 0x42, 0xC1, 0xD3, 0x7F, 0x76, 0xCE, 0x82, 0xDE, 0x60, 0x6D, 0xB2, 0x83, 0xBC, 0x04, 0x89, 0xF8, 0x87, 0x70, 0x7B, 0x30, 0x8A, 0x21, 0x9D, 0x15, 0x93, 0xF8, 0x71, 0x55, 0x5C, 0x7A, 0xBB, 0x8F, 0xD2, 0xEC, 0xC2, 0x3B, 0xAE, 0x1E, 0x4E, 0x8F, 0xA0, 0x56, 0x1E, 0xC2, 0x2F, 0xAF, 0x44, 0x13, 0x40, 0x0C, 0x69, 0x6B, 0xB9, 0x57, 0xDE, 0x84, 0x46, 0x2F, 0xBF, 0xD1, 0xEC, 0xA8, 0x92, 0x84, 0xB8, 0xE9, 0xC0, 0x12, 0xEB, 0x9D, 0x75, 0x9A, 0xB0, 0x3B, 0x29, 0xAE, 0xD8, 0x51, 0xA2, 0xFF, 0x9C, 0xC2, 0x25, 0x6A, 0x42, 0xA0, 0xAE, 0xBE, 0x0B, 0xA6, 0x19, 0x0E, 0xBD, 0x98, 0x1D, 0xCD, 0x70, 0x2C, 0x30, 0x30, 0x08, 0xA2, 0x22, 0xEA, 0x4A, 0x95, 0x0C, 0x92, 0xB0, 0x32, 0x66, 0x06, 0x90, 0x10, 0x80, 0x4E, 0xFA, 0x63, 0x80, 0x00, 0xA9, 0x96, 0xE9, 0xC0, 0x25, 0x04, 0xB8, 0x00, 0xB6, 0xA2, 0x38, 0x4B, 0xEB, 0x35, 0x8A, 0x03, 0xA2, 0xCC, 0x06, 0xA7, 0x23, 0xD7, 0x3D, 0x74, 0x23, 0xA5, 0x2D, 0x18, 0x3D, 0x96, 0x03, 0x25, 0xED, 0xEF, 0xBE, 0x17, 0x64, 0x91, 0x32, 0xC0, 0x34, 0x7B, 0xA2, 0xFE, 0x58, 0x10, 0xC3, 0xD6, 0xE6, 0x27, 0xFC, 0x1C, 0x6D, 0x40, 0xCB, 0xE6, 0xF8, 0x33, 0x88, 0xF0, 0xCC, 0x59, 0x13, 0xA7, 0xF8, 0xA6, 0x06, 0x01, 0x76, 0xA8, 0xC4, 0x15, 0x83, 0x76, 0xAE, 0xD9, 0xC5, 0xA2, 0xB2, 0x34, 0x22, 0xD5, 0x51, 0x56, 0x17, 0x72, 0x86, 0x81, 0xD1, 0x54, 0x0E, 0x16, 0x2F, 0xC2, 0xDC, 0x0A, 0x51, 0x07, 0x5C, 0xAF, 0x69, 0xA9, 0xFE, 0xB5, 0xDB, 0xCB, 0xE3, 0xC4, 0x41, 0xB3, 0x78, 0x6D, 0x8E, 0xCE, 0x69, 0xF6, 0x1A, 0x40, 0x79, 0x71, 0xD2, 0x1A, 0x29, 0xFA, 0xDF, 0xFD, 0x74, 0x03, 0xB5, 0x27, 0x15, 0xAB, 0xD6, 0xC6, 0x7F, 0x21, 0x26, 0xB5, 0x5E, 0x8C, 0xAB, 0x00, 0x58, 0xEE, 0x2D, 0x55, 0x18, 0x35, 0x9C, 0x4F, 0x76, 0x3B, 0x3F, 0xC3, 0xF7, 0x0A, 0x80, 0x00, 0x40, 0x04, 0xE1, 0xA0, 0x00, 0x20, 0x18, 0xE0, 0x02, 0x9E, 0x50, 0x22, 0xE6, 0xB3, 0xC4, 0x94, 0x58, 0x76, 0x4F, 0x01, 0xEA, 0xDE, 0x19, 0x83, 0x2D, 0x32, 0x7E, 0x1B, 0xB8, 0x8D, 0xEB, 0xEB, 0x57, 0x71, 0x15, 0x18, 0x45, 0x6A, 0xB9, 0xF9, 0xAD, 0x82, 0xEF, 0x77, 0x74, 0x60, 0xCA, 0x80, 0x5E, 0xA1, 0x0A, 0x5B, 0xB7, 0x8B, 0x01, 0x4C, 0x16, 0xEE, 0xB2, 0xB0, 0x4B, 0x38, 0xD3, 0xB5, 0xB4, 0xA4, 0x0B, 0x01, 0xBC, 0x9E, 0xA0, 0x78, 0xAD, 0x73, 0xF0, 0x32, 0x24, 0x7B, 0xE9, 0xFF, 0x3E, 0xA6, 0xDD, 0x88, 0x0C, 0x0E, 0x28, 0x60, 0x1A, 0x4B, 0x0C, 0xB4, 0xC3, 0x1B, 0xBD, 0x69, 0x78, 0x35, 0xF3, 0x29, 0xD9, 0xFD, 0xEE, 0x32, 0xF2, 0xFF, 0xBD, 0x0E, 0xFA, 0x99, 0x79, 0xFD, 0x36, 0x18, 0xD5, 0xFC, 0x46, 0xFB, 0x57, 0xDB, 0x7E, 0x0C, 0x34, 0xC1, 0xEF, 0x72, 0xEA, 0x3B, 0x39, 0x45, 0xC0, 0xAF, 0xCA, 0x6B, 0x58, 0xE0, 0xEA, 0xFD, 0x58, 0x15, 0x30, 0xCC, 0x50, 0x9D, 0xC6, 0x7D, 0x01, 0xC7, 0x7E, 0x5F, 0xB6, 0x42, 0x92, 0xE7, 0xCC, 0x3D, 0x61, 0x69, 0x6E, 0xE2, 0x03, 0x00, 0x25, 0xA1, 0x02, 0x02, 0x96, 0x5C, 0xFA, 0x57, 0xC7, 0x93, 0xB2, 0xCA, 0xA7, 0x2D, 0xFF, 0x11, 0x01, 0x14, 0xF6, 0x0F, 0xA8, 0x1A, 0xB9, 0x71, 0x08, 0x0A, 0xD7, 0x1F, 0xAF, 0xA6, 0x1A, 0x62, 0x5E, 0x98, 0x03, 0x55, 0x4D, 0xCF, 0xCC, 0x5E, 0x75, 0x12, 0xB3, 0x7D, 0xE1, 0x26, 0x8F, 0x22, 0x0F, 0x73, 0xF0, 0x59, 0xC2, 0x51, 0x6E, 0x6F, 0x00, 0xDC, 0x29, 0xCE, 0xF9, 0x2A, 0xDA, 0x7D, 0x7C, 0x63, 0x27, 0xA2, 0xEF, 0xE3, 0xB1, 0x35, 0x36, 0x60, 0x00, 0x57, 0x27, 0x3B, 0x90, 0x93, 0x78, 0xE8, 0x7A, 0x4F, 0x80, 0x29, 0xEB, 0xBD, 0x5B, 0xF8, 0xAA, 0xD3, 0x2F, 0x01, 0x03, 0xC3, 0x1F, 0x2D, 0x7E, 0xE4, 0x80, 0xA8, 0x2D, 0x06, 0xE4, 0x44, 0xD2, 0xA8, 0x0D, 0x1D, 0xF4, 0x46, 0x36, 0xA2, 0x5E, 0xFB, 0x5D, 0xFC, 0xD3, 0x13, 0x3C, 0x7E, 0xDA, 0x53, 0x56, 0xB0, 0x06, 0x7C, 0x0F, 0xF0, 0xBC, 0x9A, 0x3A, 0x8C, 0xC6, 0xFF, 0xFF, 0xE7, 0x0D, 0xFC, 0xD6, 0x4F, 0xED, 0xF0, 0xA3, 0x5C, 0x07, 0x00, 0x6D, 0x1B, 0x9F, 0xC7, 0xD1, 0x55, 0xCC, 0x25, 0xD4, 0x3E, 0xE5, 0x94, 0xEC, 0xE5, 0xE7, 0xA7, 0x8A, 0x9F, 0x47, 0x8F, 0x2E, 0x73, 0x34, 0x24, 0x05, 0x1A, 0xBF, 0xFC, 0x85, 0x55, 0x1B, 0xA7, 0x8F, 0xF9, 0xED, 0x01, 0x2E, 0xE3, 0x5F, 0xFF, 0x32, 0x68, 0x14, 0x1D, 0x96, 0x1D, 0xCD, 0x7C, 0x7F, 0xBD, 0x03, 0x05, 0x6E, 0x0F, 0x2D, 0xD1, 0xDC, 0xFF, 0xF7, 0xE7, 0x58, 0x60, 0x15, 0xE1, 0xE5, 0x27, 0xAC, 0x7B, 0xD2, 0x36, 0x6D, 0x4C, 0xB4, 0x25, 0xBA, 0x2A, 0xCC, 0x3C, 0x26, 0xB7, 0x79, 0xFD, 0xB3, 0x8F, 0xAA, 0x07, 0x5B, 0x0D, 0x6F, 0x10, 0x19, 0x18, 0x69, 0x3B, 0x69, 0x97, 0x2E, 0x9F, 0xCD, 0x06, 0x98, 0x4B, 0xB3, 0x30, 0xF5, 0x51, 0xB6, 0x3F, 0x85, 0xE0, 0xBF, 0x39, 0xAF, 0xEA, 0xFB, 0xCA, 0xC8, 0x69, 0x71, 0xBD, 0x53, 0x00, 0x88, 0x3B, 0x5F, 0xB0, 0x25, 0x04, 0x1F, 0xBD, 0xA1, 0x99, 0x94, 0x63, 0x36, 0xFF, 0xD6, 0xC1, 0xF3, 0x00, 0xFF, 0xC1, 0x25, 0x95, 0xEF, 0x3F, 0x86, 0x87, 0xD0, 0x19, 0x8A, 0x8E, 0x62, 0x89, 0x4F, 0xDD, 0x8E, 0x8C, 0x01, 0x17, 0x92, 0xE6, 0x34, 0x95, 0xFE, 0x2F, 0xA7, 0x78, 0xFE, 0x54, 0xD7, 0xEC, 0x89, 0x13, 0x60, 0xDD, 0xD5, 0xEF, 0xEB, 0xD2, 0x3E, 0x65, 0x41, 0xAE, 0xBC, 0xE5, 0x48, 0x7E, 0x4B, 0x5B, 0x5E, 0xBB, 0x9A, 0x3D, 0xDC, 0xF4, 0xA2, 0xE5, 0x1E, 0xFE, 0x3C, 0x20, 0x0B, 0x0F, 0x60, 0x51, 0x7C, 0x07, 0xB4, 0x2E, 0x63, 0xBB, 0x6D, 0xC7, 0x7D, 0x2F, 0xDF, 0x0F, 0xFF, 0x93, 0xB0, 0xC6, 0xD2, 0x4D, 0xB9, 0xE6, 0x88, 0x4A, 0xE5, 0x05, 0x75, 0x4D, 0xA2, 0x7E, 0xFA, 0x79, 0x43, 0x48, 0x2B, 0xD3, 0x9E, 0x91, 0xA5, 0x88, 0x24, 0x8D, 0x81, 0x9B, 0x83, 0x4A, 0xD8, 0x70, 0xC9, 0xA3, 0x79, 0x2D, 0xA4, 0x7D, 0x94, 0x1A, 0xF0, 0x10, 0xB8, 0xCC, 0x6A, 0xE6, 0x94, 0xB2, 0x3D, 0x9F, 0x79, 0xE0, 0xE7, 0xFD, 0x29, 0xF9, 0x8D, 0xE8, 0x2B, 0x99, 0xF0, 0xCC, 0x0C, 0x05, 0x2E, 0x70, 0xBB, 0x31, 0x08, 0xE4, 0x65, 0xDE, 0x75, 0xC1, 0x92, 0xB4, 0x5B, 0xB2, 0x8B, 0x96, 0x03, 0xB2, 0x4D, 0xFF, 0x3F, 0xB1, 0x82, 0x5B, 0x54, 0x68, 0xBC, 0x46, 0xFE, 0xF6, 0xCB, 0x6A, 0xC8, 0x00, 0x3D, 0xA6, 0x0E, 0xDB, 0xA9, 0x85, 0xE5, 0xDA, 0xB3, 0xA7, 0xBF, 0xD1, 0x76, 0xE8, 0xEA, 0x8E, 0xD5, 0x81, 0xBF, 0xDA, 0x02, 0x1C, 0xED, 0xCF, 0x88, 0x81, 0x7B, 0x48, 0x29, 0x16, 0x5F, 0xE0, 0xA0, 0xE5, 0x86, 0xFE, 0x29, 0x46, 0x3F, 0x95, 0x20, 0x52, 0xFD, 0xFC, 0xE5, 0x74, 0x34, 0xE9, 0x54, 0x1E, 0xAE, 0x04, 0x31, 0xF6, 0x31, 0xD1, 0x88, 0x66, 0x28, 0x76, 0xBA, 0xC1, 0x33, 0x72, 0x07, 0x4A, 0x22, 0xAF, 0x44, 0xE8, 0x9E, 0xAA, 0x73, 0x05, 0xFD, 0x4F, 0xFD, 0xF3, 0x77, 0x1D, 0xCE, 0xA2, 0x01, 0x73, 0xAF, 0x60, 0x3D, 0x2C, 0x40, 0x2C, 0x54, 0xDF, 0xFF, 0xEF, 0x76, 0x11, 0xF3, 0x63, 0xE5, 0x2B, 0x56, 0x00, 0xAC, 0xB2, 0xF2, 0x35, 0x7A, 0xCE, 0x61, 0x89, 0x35, 0x7A, 0x4D, 0xE6, 0x90, 0x9A, 0xD3, 0x50, 0x70, 0x7D, 0x1F, 0xA7, 0xEC, 0x9E, 0x74, 0x00, 0xC7, 0xF9, 0x71, 0xF9, 0xD7, 0x64, 0x18, 0xD3, 0xB5, 0x3D, 0x53, 0x3A, 0x5C, 0xB3, 0x21, 0xB3, 0xA1, 0x6B, 0xDB, 0x8F, 0xFB, 0xBF, 0x0B, 0x20, 0xC9, 0x79, 0xBF, 0x4C, 0xCF, 0xFD, 0xBA, 0xCC, 0x55, 0x3C, 0xA4, 0xCA, 0xAC, 0x3A, 0xBA, 0x1E, 0xD6, 0xF3, 0x75, 0xD2, 0x03, 0x8D, 0x61, 0x73, 0x43, 0xDE, 0xF4, 0xA6, 0x27, 0xE5, 0x2F, 0xDC, 0x3A, 0x45, 0x5C, 0x9B, 0xA2, 0x17, 0xB6, 0x0C, 0x5F, 0x24, 0x4E, 0x09, 0x4F, 0x5C, 0x70, 0x8B, 0x60, 0x74, 0xA1, 0x3B, 0x5E, 0x5E, 0x41, 0xA0, 0x99, 0xB6, 0xDE, 0x7D, 0x1D, 0xAD, 0x66, 0x67, 0xD4, 0xA0, 0x14, 0xB2, 0x15, 0xA5, 0x6D, 0xF1, 0x45, 0x20, 0x1B, 0xC0, 0x73, 0x20, 0xC4, 0x68, 0x3D, 0x5B, 0xF9, 0x2B, 0xCB, 0x52, 0x57, 0xD6, 0xF4, 0x58, 0xAE, 0x55, 0xE6, 0xEC, 0x63, 0x43, 0x58, 0x87, 0x2E, 0x41, 0x75, 0xF9, 0x82, 0xB4, 0x7E, 0xED, 0x2B, 0x7C, 0x8C, 0x5A, 0xAB, 0xE8, 0x07, 0x46, 0xB3, 0x0F, 0x19, 0xE5, 0x93, 0xB6, 0x62, 0x25, 0x72, 0x71, 0x81, 0xA3, 0x4E, 0x1A, 0x6A, 0x4F, 0xFD, 0xB2, 0xB1, 0x45, 0xB9, 0x52, 0x40, 0xFE, 0xFE, 0x03, 0x07, 0xF0, 0xD4, 0xAD, 0xAA, 0xD3, 0xCD, 0x54, 0x6F, 0x88, 0x5F, 0x1B, 0x6D, 0x08, 0x5F, 0x2D, 0x5A, 0xA1, 0xCD, 0x0B, 0x5A, 0xB3, 0x6C, 0x24, 0x8A, 0x04, 0x90, 0x09, 0x05, 0x54, 0xD2, 0xB5, 0xEE, 0x41, 0xB1, 0xB6, 0xFA, 0x89, 0x0F, 0xFC, 0xE5, 0xCE, 0xD5, 0x6A, 0xEA, 0x13, 0x47, 0x81, 0xBC, 0xC8, 0x53, 0xB4, 0x8C, 0x83, 0x6B, 0x4E, 0x02, 0xF4, 0xBA, 0x3C, 0xCF, 0x36, 0x7F, 0xE3, 0xDE, 0x62, 0xAA, 0xB9, 0x14, 0xAC, 0x91, 0x21, 0x5A, 0x9D, 0xE4, 0xF2, 0x28, 0x2F, 0x10, 0xB1, 0x10, 0x50, 0x27, 0xCC, 0x92, 0x14, 0x74, 0xD8, 0x54, 0xCF, 0x33, 0xB2, 0xC9, 0x80, 0x52, 0x66, 0x74, 0x5D, 0xE7, 0x10, 0x93, 0xEE, 0x12, 0x77, 0xDA, 0x6B, 0x17, 0x90, 0x16, 0xA7, 0x61, 0xEE, 0x20, 0xA7, 0xD8, 0x8F, 0xA4, 0x7B, 0xEF, 0xC9, 0xD7, 0xEF, 0xDB, 0xA6, 0x08, 0xFC, 0x1A, 0x58, 0xDC, 0xCE, 0xC1, 0x54, 0x6C, 0xCC, 0x3D, 0x8D, 0xE5, 0x79, 0xA3, 0x6B, 0xC4, 0xBE, 0x97, 0x23, 0xD2, 0x85, 0x5D, 0x53, 0x37, 0x4B, 0x39, 0xD1, 0xEE, 0x4A, 0x6F, 0xB8, 0x2E, 0x48, 0x57, 0x70, 0x0F, 0xD0, 0x18, 0xE4, 0xB0, 0xFD, 0x4D, 0xEB, 0xDF, 0xD3, 0x64, 0xEC, 0x6A, 0x12, 0xDF, 0xEF, 0x78, 0x12, 0x67, 0x40, 0x0C, 0x68, 0xBF, 0x7B, 0x74, 0xC5, 0x64, 0x3D, 0x9D, 0x7F, 0xF5, 0xE7, 0xDC, 0x2F, 0xB1, 0xAF, 0xB6, 0x9D, 0x31, 0xC8, 0xBA, 0x11, 0x7F, 0xFB, 0x3F, 0xFD, 0x73, 0x7D, 0x84, 0xDA, 0xB0, 0x1A, 0x51, 0x10, 0xA0, 0xDF, 0x75, 0xE5, 0x05, 0xF6, 0x40, 0x92, 0x83, 0xDB, 0x41, 0x98, 0x0B, 0xAE, 0x19, 0x25, 0xF2, 0xB3, 0xBB, 0xE2, 0x18, 0x97, 0x4C, 0xB5, 0xA8, 0x17, 0xB2, 0x02, 0xC6, 0xF7, 0xA2, 0xEE, 0x67, 0x0B, 0xB6, 0xBC, 0x20, 0x13, 0xD9, 0xEA, 0x3E, 0x7F, 0xEB, 0xD7, 0x13, 0xCC, 0x82, 0x05, 0x88, 0x14, 0x0C, 0x38, 0xAD, 0x0E, 0x11, 0x9B, 0x39, 0xBC, 0x63, 0x58, 0xDC, 0x39, 0xDB, 0x6F, 0xA8, 0x01, 0x1C, 0x10, 0x0C, 0xF4, 0x32, 0xF4, 0xDF, 0xED, 0x12, 0x2F, 0x75, 0xFC, 0x6D, 0x85, 0xA2, 0xA6, 0x8B, 0x35, 0xF9, 0xA2, 0xC2, 0x5C, 0xBF, 0x4C, 0x81, 0xB9, 0x8B, 0x0B, 0xE5, 0xF4, 0x21, 0xE4, 0xB3, 0x49, 0xA2, 0x4F, 0x33, 0x9C, 0xBF, 0xFA, 0xEA, 0x97, 0xED, 0x04, 0xF4, 0x03, 0x3A, 0xF9, 0xA9, 0xF3, 0x84, 0x78, 0x19, 0x79, 0xF4, 0x4F, 0x30, 0x45, 0x9D, 0x05, 0xFB, 0x89, 0x30, 0x55, 0x37, 0x0B, 0x21, 0x2A, 0x19, 0xCF, 0xCC, 0xCC, 0x65, 0xFC, 0x40, 0x92, 0x03, 0x8E, 0x4D, 0x6E, 0x8C, 0x9C, 0x92, 0x83, 0x9E, 0x51, 0x3D, 0x4E, 0x54, 0x8D, 0x34, 0xBF, 0xBF, 0x56, 0x1C, 0x40, 0xC8, 0x98, 0x7B, 0xFD, 0xFF, 0x38, 0x49, 0x81, 0x41, 0x88, 0xC2, 0x24, 0xB4, 0xE6, 0x93, 0x9C, 0xA2, 0x91, 0xB4, 0x14, 0x74, 0x14, 0x99, 0xE8, 0x5E, 0xC2, 0x93, 0x77, 0x12, 0x05, 0x07, 0xDD, 0x5D, 0xCD, 0xAD, 0xBB, 0xF1, 0xE5, 0x9D, 0x43, 0x0A, 0xA4, 0x8B, 0xA8, 0x65, 0x58, 0xA6, 0x1D, 0xAA, 0x2F, 0x94, 0x9C, 0x71, 0x92, 0xC5, 0x48, 0xFE, 0xDB, 0xC7, 0xAB, 0x2A, 0xF3, 0x20, 0xB2, 0xFA, 0x76, 0x8A, 0xC9, 0xDC, 0x7C, 0x25, 0x78, 0x1C, 0xCC, 0x3A, 0x6F, 0x1F, 0xD5, 0xB4, 0x15, 0xC8, 0x2E, 0x4E, 0x5E, 0x39, 0x6E, 0xB4, 0x05, 0xDE, 0x82, 0xD9, 0xDF, 0xB7, 0x6B, 0x6F, 0xB4, 0xC4, 0x12, 0xD2, 0xC1, 0xE5, 0x5C, 0x55, 0x21, 0x26, 0xEB, 0x4D, 0x80, 0xD2, 0xD2, 0x7C, 0x4B, 0xEF, 0x9E, 0xE9, 0xA1, 0x62, 0x1E, 0xB5, 0xC6, 0xAC, 0xFF, 0xBF, 0x66, 0x5B, 0x9B, 0x98, 0xF3, 0xB3, 0xD0, 0x80, 0xAB, 0x0E, 0x2A, 0xFA, 0x64, 0xC9, 0xA0, 0x25, 0x45, 0x8B, 0x42, 0x0F, 0x16, 0xCD, 0x27, 0x97, 0x42, 0x0B, 0xAE, 0xE1, 0x89, 0x2F, 0x4A, 0xA8, 0x29, 0xA1, 0x58, 0x4C, 0x48, 0x40, 0x2F, 0x7F, 0x8B, 0x9E, 0x2A, 0x22, 0x21, 0x5D, 0x4B, 0xBB, 0xC0, 0x5E, 0x4F, 0x59, 0x9A, 0x24, 0xFA, 0xB6, 0xE0, 0xFA, 0x12, 0x2D, 0xF7, 0x47, 0x0F, 0x07, 0x05, 0xBB, 0x95, 0x9C, 0x1E, 0x91, 0xD2, 0x70, 0x79, 0xFD, 0xF9, 0x63, 0x8A, 0xCA, 0x90, 0x64, 0x2B, 0xDF, 0xF6, 0x45, 0xFA, 0xF0, 0xCA, 0xE4, 0x72, 0x69, 0x3F, 0x0E, 0x5F, 0xDB, 0xE9, 0x19, 0xDA, 0xC5, 0xD2, 0xFB, 0xFB, 0x3F, 0x0C, 0x0F, 0x9A, 0xC7, 0x83, 0xD4, 0xE2, 0x7A, 0x02, 0x12, 0x38, 0x4D, 0xC9, 0xFE, 0xC5, 0xD2, 0x5E, 0xDE, 0xB9, 0x17, 0xB1, 0x9D, 0x81, 0x8C, 0x2A, 0x40, 0xB3, 0xEA, 0x19, 0xD0, 0xA2, 0x55, 0x5B, 0xEE, 0xC0, 0xC0, 0x00, 0xB4, 0x00, 0x0B, 0x10, 0x10, 0xC8, 0x42, 0x0B, 0x09, 0x27, 0x08, 0x58, 0x15, 0xC0, 0x65, 0x7A, 0xF4, 0x5F, 0xC8, 0x37, 0x7B, 0x44, 0x28, 0xC9, 0x87, 0xF9, 0x74, 0xAE, 0xCE, 0xE3, 0x26, 0x04, 0xBC, 0x09, 0x99, 0xFA, 0xE9, 0x12, 0x02, 0x93, 0x90, 0x7D, 0xEF, 0xB6, 0x94, 0x60, 0xEC, 0xE5, 0x54, 0xBF, 0xAD, 0xFE, 0xB7, 0xA8, 0x29, 0x33, 0x13, 0x8E, 0x7B, 0xBB, 0xA5, 0x0E, 0x27, 0x56, 0x78, 0x82, 0x55, 0x9C, 0x7D, 0x8E, 0xB9, 0x00, 0x62, 0x2E, 0xCE, 0x58, 0x88, 0x0B, 0x4F, 0x7A, 0xC3, 0x0F, 0xEB, 0xB9, 0x09, 0xB0, 0x54, 0xE5, 0x0D, 0xF3, 0xFC, 0xF4, 0x36, 0x81, 0x46, 0xD2, 0x66, 0x0A, 0x7B, 0x44, 0x36, 0x9A, 0x50, 0x94, 0xE7, 0x5F, 0xDF, 0xE8, 0xE6, 0x99, 0x0F, 0x78, 0xAB, 0x7D, 0x0F, 0xEE, 0x3C, 0x60, 0x66, 0x4F, 0x19, 0x13, 0xA9, 0x6B, 0x50, 0x67, 0x7C, 0x39, 0x9B, 0x6E, 0x9B, 0x43, 0xDF, 0xC7, 0xD8, 0xA7, 0x86, 0x56, 0x06, 0xA7, 0xDC, 0xF9, 0xC1, 0x1C, 0xF0, 0x9D, 0x25, 0x28, 0x54, 0x85, 0x47, 0x39, 0x90, 0x0E, 0x39, 0x32, 0xD7, 0xCA, 0x25, 0xE9, 0x80, 0x88, 0x4A, 0x1C, 0x58, 0x4D, 0x17, 0x24, 0x53, 0x57, 0x26, 0x30, 0x88, 0x41, 0xF4, 0x3C, 0x05, 0x51, 0xB6, 0x11, 0x09, 0x5F, 0x7B, 0x63, 0xA2, 0x26, 0x40, 0x15, 0xEF, 0xE7, 0xFF, 0xAB, 0x02, 0x58, 0x2D, 0xA9, 0xF0, 0x95, 0x35, 0x2F, 0xFE, 0xCC, 0xA5, 0xE4, 0x22, 0x82, 0x4C, 0xCB, 0x9B, 0xBF, 0xB0, 0xBF, 0x0E, 0x67, 0x60, 0x4D, 0x92, 0x5F, 0xFB, 0xDE, 0xFA, 0x97, 0xAF, 0xE2, 0xDD, 0x14, 0x9D, 0x9D, 0x99, 0xFE, 0x3A, 0x03, 0x2C, 0x94, 0xE8, 0x47, 0xC1, 0x52, 0x89, 0xE2, 0xFA, 0x63, 0xEE, 0x47, 0xE7, 0x3F, 0xA4, 0x64, 0x4A, 0x7C, 0x23, 0xEE, 0x4D, 0x0A, 0x22, 0xC7, 0x75, 0xD9, 0xA7, 0xC5, 0x5B, 0x2E, 0xAE, 0xF7, 0xD8, 0x71, 0x55, 0x2E, 0x61, 0xC0, 0x07, 0x64, 0xD8, 0x99, 0xBE, 0x1E, 0xC0, 0x2D, 0x1B, 0x8B, 0xD6, 0xCC, 0x1F, 0x4D, 0x4D, 0x67, 0x35, 0x18, 0x51, 0x38, 0x0D, 0x3E, 0x9F, 0xBC, 0xBE, 0x44, 0x80, 0x1B, 0xAD, 0x52, 0xB8, 0x99, 0x28, 0xBB, 0xD9, 0xE2, 0x11, 0xFF, 0x7E, 0x3D, 0xA9, 0x36, 0x0E, 0x7E, 0xB9, 0xCF, 0x11, 0x2F, 0x4C, 0x49, 0xDA, 0x54, 0x08, 0xB3, 0x56, 0xEC, 0x6D, 0x95, 0x4B, 0x91, 0x90, 0x1E, 0x8B, 0x7F, 0xDF, 0x4D, 0x99, 0x37, 0x84, 0xAD, 0x0A, 0x72, 0x37, 0x74, 0x80, 0x47, 0x1C, 0xDA, 0xBC, 0xB3, 0x6F, 0x3A, 0x90, 0xF5, 0x2B, 0x07, 0x1E, 0x5F, 0x4B, 0xBD, 0x76, 0x9B, 0x0F, 0xF7, 0xFE, 0x6F, 0xAF, 0x61, 0x7B, 0xDC, 0x8B, 0xDE, 0x2F, 0x26, 0x05, 0x0E, 0x24, 0x53, 0x58, 0x09, 0x8D, 0xB8, 0x66, 0x25, 0x03, 0x11, 0x70, 0x37, 0xBC, 0x5E, 0x20, 0x21, 0xF4, 0x39, 0xB3, 0xD1, 0xDB, 0xE7, 0xE5, 0x2B, 0x96, 0xFC, 0x90, 0xBA, 0x37, 0xFE, 0x60, 0xE4, 0x3D, 0x40, 0x07, 0xFC, 0x18, 0xBE, 0xE0, 0xC2, 0x21, 0x76, 0xB3, 0xB3, 0xC0, 0x8D, 0x15, 0x12, 0xE5, 0x64, 0x60, 0x4B, 0xEF, 0x3D, 0xE5, 0xA1, 0xE0, 0x88, 0x7D, 0x81, 0x39, 0x82, 0xE8, 0xA4, 0x16, 0xBC, 0x17, 0x94, 0x3C, 0x82, 0xB4, 0x76, 0x95, 0x38, 0xDF, 0xC8, 0xE8, 0xF8, 0xE7, 0xC7, 0xFF, 0x02, 0xFB, 0xF6, 0xB3, 0x4E, 0x96, 0xB8, 0xC8, 0xC8, 0x71, 0xFF, 0x1E, 0x46, 0xC3, 0x0E, 0xAF, 0xC3, 0x36, 0x52, 0xEB, 0xFE, 0x2C, 0x03, 0x92, 0xF4, 0x69, 0xAC, 0xCB, 0x2A, 0xC9, 0x8F, 0x3A, 0x5F, 0x57, 0x2B, 0xB9, 0xEC, 0x62, 0x4D, 0x9E, 0xF7, 0xD7, 0x31, 0x10, 0x06, 0x42, 0xA2, 0xFE, 0xB5, 0x17, 0x0F, 0x3B, 0x6E, 0xA9, 0x80, 0xCC, 0x58, 0x9C, 0xDC, 0xF8, 0xF1, 0x26, 0xE0, 0x2C, 0x00, 0x83, 0x03, 0xC3, 0x42, 0x80, 0x0D, 0x3A, 0x07, 0xCD, 0x8B, 0xD1, 0x31, 0x85, 0x3F, 0x76, 0xE2, 0xB4, 0x13, 0x65, 0x18, 0x79, 0xE9, 0x9D, 0x46, 0xA8, 0x46, 0x9B, 0x3A, 0x85, 0x71, 0xAC, 0xA5, 0xEE, 0x35, 0x6C, 0x15, 0xD4, 0x01, 0x37, 0x9A, 0xEB, 0xE1, 0xA5, 0x6C, 0x1E, 0xF9, 0xFF, 0xD5, 0x7A, 0x0E, 0xF2, 0x5A, 0x00, 0x02, 0x00, 0xB7, 0xCC, 0xDD, 0xFE, 0xCA, 0x83, 0xBF, 0x07, 0x25, 0x14, 0x61, 0x2E, 0xF9, 0xBA, 0x1B, 0x0D, 0x40, 0x08, 0x3C, 0xF7, 0x9E, 0x47, 0x3E, 0x42, 0x4A, 0xA6, 0xCE, 0x80, 0x42, 0xC2, 0x66, 0xFA, 0xAF, 0xFE, 0x91, 0x0D, 0xC4, 0x60, 0x06, 0xE6, 0xBC, 0x62, 0x07, 0xCD, 0xB1, 0xB4, 0xF4, 0x68, 0x71, 0x69, 0x40, 0xE3, 0xA5, 0x4B, 0x04, 0x10, 0x48, 0x68, 0x38, 0x00, 0x81, 0x48, 0x24, 0xC5, 0x5A, 0xB6, 0x46, 0x3D, 0x8C, 0x05, 0x53, 0x01, 0xEA, 0xC9, 0xA0, 0x30, 0xCD, 0x2C, 0xC0, 0xB8, 0xEA, 0xBF, 0x84, 0xD0, 0x72, 0xCD, 0x9C, 0xDF, 0x30, 0xF9, 0xE0, 0x70, 0xD8, 0x8C, 0x00, 0x53, 0x68, 0x5A, 0xBA, 0xB2, 0x5B, 0xE8, 0x75, 0xB1, 0x5C, 0xFD, 0x3F, 0xEF, 0xF1, 0xBF, 0x63, 0x7F, 0xAE, 0xB0, 0xA8, 0xAA, 0xD5, 0x55, 0x22, 0x09, 0x26, 0x0F, 0x0A, 0xF9, 0x5F, 0x0D, 0x49, 0x07, 0x09, 0x68, 0x27, 0xBB, 0x76, 0xF8, 0xFB, 0x0F, 0x41, 0x66, 0xA7, 0xFE, 0xF4, 0x6D, 0x27, 0x60, 0x17, 0xD0, 0x11, 0x5E, 0xD9, 0x1C, 0x80, 0x47, 0xFF, 0xFF, 0x30, 0x41, 0xB9, 0xDC, 0xD1, 0xFF, 0xEE, 0x68, 0x4A, 0x9F, 0xA1, 0x1B, 0xB8, 0x8F, 0xC6, 0xB2, 0xE0, 0xFF, 0xFC, 0xFA, 0xFD, 0x90, 0x52, 0x34, 0xFB, 0x36, 0x3E, 0xEF, 0x82, 0x48, 0x31, 0x61, 0x19, 0xAB, 0x1D, 0x0C, 0x88, 0x22, 0x2D, 0x0F, 0x4E, 0xCA, 0x3E, 0x27, 0x66, 0x41, 0x00, 0x2A, 0x60, 0x0A, 0x10, 0x05, 0x0A, 0x01, 0x84, 0xC0, 0x88, 0x8C, 0xF0, 0x41, 0x01, 0x29, 0x8A, 0x2D, 0xC9, 0xEB, 0x01, 0x4B, 0x20, 0x15, 0x8D, 0xD6, 0x85, 0x44, 0x0D, 0x04, 0x81, 0xB7, 0xE4, 0x06, 0x80, 0x6E, 0xDA, 0xAA, 0xE2, 0x44, 0x57, 0x27, 0x5B, 0xA0, 0x2E, 0xEC, 0xF5, 0x00, 0xD5, 0x53, 0xD3, 0xF0, 0x46, 0xC4, 0xB7, 0x4C, 0x47, 0x30, 0x56, 0x7A, 0x02, 0x8F, 0xD5, 0x3E, 0xFD, 0xBE, 0xBD, 0x4A, 0x9E, 0xFF, 0xB2, 0xD5, 0x36, 0x21, 0x67, 0xE9, 0x12, 0x7F, 0x7D, 0xCD, 0x5D, 0x70, 0x0F, 0xD2, 0x91, 0x9B, 0x0F, 0xAF, 0x34, 0x34, 0x1D, 0xD3, 0xCD, 0x2B, 0x57, 0xF6, 0xA3, 0x6D, 0xD6, 0x9F, 0xCE, 0x74, 0xFC, 0x91, 0x37, 0x81, 0xFC, 0x3B, 0x86, 0xA5, 0xED, 0x5E, 0x45, 0xA3, 0x70, 0x48, 0x6B, 0x08, 0x67, 0x79, 0xF7, 0xFF, 0x41, 0x00, 0x8E, 0x42, 0x01, 0x09, 0x13, 0x18, 0x0D, 0x9E, 0x26, 0x09, 0xD9, 0xA1, 0xE6, 0xE0, 0xAD, 0x81, 0xFA, 0x2B, 0x96, 0x06, 0x66, 0x64, 0x0D, 0xB3, 0xA1, 0x12, 0xAE, 0x40, 0x9A, 0x59, 0x9B, 0x80, 0x9C, 0x86, 0xAC, 0xA4, 0xE2, 0x11, 0xD9, 0x76, 0x3A, 0xE4, 0x7D, 0xD6, 0xA3, 0xEF, 0x90, 0x3D, 0x64, 0xAA, 0x46, 0xE8, 0x4F, 0x3F, 0xF5, 0x7F, 0x61, 0xC6, 0x9C, 0x21, 0x3B, 0x79, 0xFC, 0xEE, 0x3F, 0xCF, 0x66, 0x8C, 0x72, 0x03, 0xCD, 0x83, 0xF6, 0x88, 0x57, 0xE5, 0x9F, 0x77, 0xC3, 0x77, 0xEB, 0x57, 0xD6, 0x80, 0x95, 0x11, 0x0C, 0x3A, 0x65, 0x0C, 0x66, 0xA6, 0x16, 0x40, 0x39, 0x4A, 0x35, 0x67, 0x3B, 0x81, 0xAB, 0xFF, 0xB8, 0x57, 0xF0, 0xF4, 0x70, 0x2C, 0xEB, 0xDC, 0xB4, 0x54, 0x9B, 0x38, 0xE9, 0xF7, 0xB7, 0xFF, 0xCD, 0x96, 0x4D, 0x4A, 0xB9, 0xB7, 0x58, 0xF2, 0x45, 0x2B, 0x1E, 0x86, 0x74, 0x09, 0x11, 0x1D, 0x41, 0x66, 0x4C, 0x7F, 0xFF, 0x70, 0x58, 0x00, 0x40, 0x28, 0x40, 0x08, 0x8F, 0x62, 0xE0, 0x16, 0x1B, 0xDD, 0x0D, 0x29, 0x05, 0x99, 0x92, 0x88, 0x31, 0x3C, 0x9B, 0x27, 0x94, 0x27, 0xBA, 0x13, 0x8C, 0xF0, 0xC2, 0xDD, 0x20, 0xCC, 0x32, 0xE9, 0x83, 0xD7, 0x01, 0x97, 0x26, 0x72, 0xFE, 0x30, 0xB6, 0x2E, 0xC3, 0xA7, 0xE6, 0x13, 0x01, 0xBF, 0x2B, 0x87, 0xAC, 0xDC, 0xAD, 0x31, 0xDD, 0x3F, 0xF3, 0xA1, 0x53, 0x76, 0x79, 0x99, 0xFE, 0x2E, 0x0E, 0x81, 0x7B, 0x50, 0xA3, 0x9A, 0x85, 0x08, 0x44, 0xA9, 0xF1, 0x4B, 0x4D, 0x65, 0xCD, 0x98, 0xFE, 0x7A, 0x58, 0x46, 0x07, 0x93, 0x71, 0x10, 0x84, 0x87, 0xA3, 0x7B, 0xF4, 0x31, 0x3F, 0xF1, 0x04, 0x91, 0x45, 0xC0, 0x00, 0xF7, 0x1D, 0xE7, 0x3F, 0x3D, 0xF0, 0x00, 0xB1, 0x62, 0x16, 0xBD, 0x3F, 0x42, 0x02, 0x78, 0xA6, 0x10, 0xC5, 0x2A, 0x65, 0xCC, 0xFA, 0xC5, 0x0F, 0xF3, 0xBF, 0xB7, 0xBC, 0x37, 0x0D, 0xFC, 0x42, 0x37, 0x7F, 0xAC, 0x01, 0x72, 0xA2, 0x60, 0x3B, 0x9D, 0x0C, 0x39, 0xFF, 0x48, 0x37, 0x35, 0x71, 0xFF, 0xFF, 0x2F, 0xEE, 0x09, 0xAC, 0x6D, 0xAB, 0xC2, 0x0A, 0x3A, 0x80, 0xD8, 0x2C, 0xAC, 0x83, 0xC0, 0x0E, 0x28, 0xD8, 0x12, 0x06, 0xFB, 0x60, 0x21, 0xDF, 0x9C, 0xD1, 0xA0, 0x71, 0x67, 0x2F, 0x5E, 0xE4, 0x3F, 0xBC, 0x0D, 0xA9, 0x09, 0x7B, 0x8D, 0x23, 0xBE, 0x7F, 0x62, 0x4C, 0x84, 0x20, 0x57, 0xD2, 0x21, 0x9F, 0xFE, 0xB5, 0x05, 0xAD, 0x2E, 0xEC, 0x9F, 0xD9, 0x42, 0xC9, 0x75, 0x3F, 0xED, 0x71, 0xFF, 0xCC, 0x8C, 0x80, 0x86, 0xDE, 0xC2, 0xB6, 0x03, 0x2D, 0x56, 0x02, 0xFC, 0x2D, 0x66, 0x25, 0xFD, 0x37, 0xE3, 0xA7, 0xB4, 0xFC, 0x80, 0x11, 0x8C, 0x63, 0x8E, 0xF7, 0x75, 0x53, 0xEB, 0x96, 0x52, 0xBB, 0xD3, 0x80, 0x41, 0x5F, 0x2D, 0xF8, 0x94, 0xB8, 0xC2, 0xD0, 0x06, 0xD1, 0x2B, 0xDB, 0xE7, 0x62, 0xF9, 0x0B, 0x58, 0x26, 0x01, 0xD1, 0x00, 0x71, 0xA0, 0x06, 0x2A, 0x69, 0xCE, 0x06, 0x60, 0x24, 0x01, 0xA9, 0xE1, 0xA6, 0x2E, 0x56, 0x46, 0xC6, 0xD2, 0x4C, 0x06, 0xFB, 0xB5, 0x20, 0xA9, 0x40, 0x1E, 0x1F, 0x2D, 0xA6, 0x4E, 0x9F, 0xDC, 0xF0, 0x07, 0xE8, 0xC0, 0x9A, 0xB0, 0x7B, 0xFC, 0xA7, 0xCF, 0x0E, 0x26, 0xFD, 0x2D, 0xA5, 0x3E, 0xE8, 0x57, 0x76, 0x1A, 0x53, 0x3A, 0x67, 0x1F, 0x20, 0xCB, 0xFF, 0xB0, 0x5F, 0x24, 0x38, 0xCA, 0xA9, 0xCD, 0xFE, 0x25, 0x87, 0x00, 0x3E, 0x2C, 0x89, 0xCA, 0xE3, 0xC5, 0x98, 0x1F, 0xA5, 0xB3, 0x28, 0x61, 0x0A, 0x1C, 0x73, 0xBA, 0x35, 0xD6, 0x15, 0xFB, 0x56, 0x1A, 0xF3, 0x9C, 0xCD, 0x79, 0xBC, 0xD7, 0x30, 0x0A, 0x23, 0x36, 0x72, 0x4B, 0xA1, 0x66, 0x94, 0x3E, 0xA7, 0x44, 0xF5, 0x08, 0x14, 0xDF, 0xFF, 0x00, 0xC4, 0x1E, 0x48, 0x0C, 0x91, 0x43, 0x9B, 0x60, 0x3F, 0x13, 0x76, 0xED, 0x35, 0x82, 0xF8, 0xD2, 0x7F, 0x02, 0x9F, 0x1A, 0x4E, 0x64, 0xB3, 0xE9, 0xC8, 0x98, 0x25, 0x95, 0x6F, 0x3E, 0x43, 0x0E, 0x42, 0x96, 0x23, 0xD6, 0x90, 0x41, 0x68, 0x12, 0x60, 0x64, 0x45, 0xA8, 0x15, 0x3C, 0xD0, 0xD2, 0x3E, 0xE0, 0x4F, 0x32, 0x6C, 0x62, 0xC9, 0x8A, 0x96, 0xCC, 0x83, 0x90, 0x2E, 0x3B, 0x91, 0xB2, 0x53, 0xCA, 0x55, 0x19, 0xC0, 0x61, 0xA5, 0x7A, 0x9A, 0x33, 0x78, 0x8C, 0x52, 0xB5, 0xE0, 0xF7, 0xA6, 0x20, 0x56, 0x1B, 0x2D, 0x87, 0xAD, 0xCA, 0x85, 0x7D, 0xA5, 0x67, 0xF2, 0x4F, 0xA4, 0x0F, 0xA0, 0xB8, 0x67, 0x41, 0x49, 0x42, 0x75, 0x48, 0x8B, 0x7A, 0x94, 0xA2, 0x26, 0x66, 0xD9, 0xB7, 0xB0, 0xF9, 0x26, 0x01, 0x55, 0x04, 0x59, 0xF2, 0xEF, 0xEE, 0x26, 0x41, 0xB4, 0x96, 0x35, 0xC4, 0x2B, 0xFE, 0xA5, 0x76, 0x00, 0x11, 0xE2, 0x61, 0xDB, 0x9A, 0xCD, 0x1A, 0x06, 0x11, 0x35, 0x5F, 0xD9, 0xFD, 0xB0, 0x70, 0x10, 0x58, 0x95, 0x5B, 0x6E, 0x32, 0x1B, 0xBA, 0x41, 0xC4, 0x3C, 0x44, 0xDD, 0xCC, 0xBE, 0x96, 0x12, 0xC9, 0x57, 0xC8, 0x27, 0x9B, 0x21, 0x98, 0x51, 0x0F, 0x3B, 0x5A, 0xFF, 0xDF, 0xB4, 0xEC, 0xC2, 0x53, 0xE5, 0xD8, 0x7F, 0xED, 0x1D, 0xB0, 0xC8, 0x76, 0x9A, 0x32, 0xB1, 0x6F, 0x70, 0xA4, 0x0C, 0x4F, 0xD1, 0x27, 0xFF, 0xBB, 0x6E, 0xA8, 0x89, 0xB6, 0x58, 0x00, 0x08, 0x0A, 0x1E, 0xFB, 0xE6, 0x9D, 0x99, 0x41, 0xCC, 0x4C, 0xE1, 0x49, 0x59, 0xBA, 0xB8, 0xD8, 0x36, 0x3E, 0xF4, 0x89, 0x04, 0xA6, 0x89, 0xF8, 0xB4, 0xFF, 0xA1, 0x92, 0x8D, 0x86, 0x61, 0x6E, 0x4F, 0xB8, 0x14, 0x80, 0x43, 0x99, 0x31, 0x68, 0x9E, 0x4C, 0xEC, 0x34, 0x9C, 0x4F, 0xC9, 0xE6, 0x5A, 0x52, 0x26, 0x8E, 0x2D, 0x93, 0x7B, 0xFD, 0x47, 0x65, 0x80, 0xFB, 0xB2, 0x1C, 0x97, 0xF9, 0x0C, 0x32, 0x2E, 0x52, 0x3D, 0xCF, 0x9A, 0xC6, 0x75, 0x5F, 0x3F, 0xC0, 0xAC, 0x5E, 0x6A, 0x68, 0x19, 0x70, 0x64, 0x7C, 0x8F, 0xFC, 0xD6, 0xBD, 0x2F, 0x27, 0x28, 0x2B, 0xEB, 0x38, 0x25, 0x17, 0x4E, 0xBD, 0x86, 0x0D, 0xB1, 0xB0, 0x29, 0x9F, 0xFF, 0xD5, 0xF8, 0x4D, 0xA1, 0x24, 0x21, 0xC7, 0xFF, 0x58, 0xF5, 0x15, 0x01, 0xCA, 0xCD, 0x73, 0xEC, 0x00, 0x5A, 0x47, 0x42, 0xF8, 0x99, 0x14, 0xAE, 0xF1, 0x0F, 0xFD, 0x99, 0x74, 0x04, 0x7E, 0x76, 0x0E, 0x64, 0x1E, 0x6C, 0x00, 0xBD, 0x27, 0xDE, 0x7F, 0x86, 0xDA, 0x5B, 0xDF, 0x98, 0x9B, 0x31, 0xB4, 0xD6, 0x6F, 0x74, 0x72, 0x1E, 0x9A, 0x94, 0xB2, 0x17, 0x4F, 0x74, 0xDA, 0x4E, 0x70, 0x11, 0xCA, 0x83, 0x16, 0x92, 0xE3, 0x2C, 0xB4, 0xDC, 0x35, 0x23, 0x34, 0xC0, 0x58, 0xEF, 0x4B, 0x49, 0xEF, 0xEB, 0x75, 0x79, 0x5C, 0x01, 0xB2, 0xEA, 0x05, 0x93, 0x75, 0xA3, 0x90, 0xBE, 0x44, 0x1B, 0xD7, 0x9F, 0x38, 0xA8, 0x6A, 0x09, 0x8D, 0x74, 0xB4, 0x76, 0x96, 0x66, 0xB9, 0x82, 0x8F, 0xFE, 0x86, 0x11, 0x35, 0x77, 0x53, 0x06, 0x6F, 0x3E, 0xD3, 0x14, 0xC0, 0x51, 0xD6, 0xCC, 0xF2, 0x37, 0xA1, 0x3E, 0x9E, 0xA5, 0x7D, 0xC2, 0xCC, 0xAA, 0xE3, 0x75, 0x49, 0x8F, 0x4E, 0xA3, 0x46, 0xF3, 0x62, 0x4E, 0xA4, 0x84, 0x1D, 0xEC, 0x96, 0x0B, 0x9C, 0x3B, 0x78, 0x5A, 0xED, 0x9D, 0xD8, 0x6D, 0xBA, 0x95, 0xD1, 0x22, 0xB4, 0x5A, 0xF0, 0xD9, 0x59, 0x32, 0x49, 0x66, 0x59, 0x21, 0x79, 0x86, 0x26, 0x2D, 0x02, 0x7C, 0x80, 0xD4, 0xC9, 0x90, 0x95, 0x4D, 0x1D, 0x79, 0x5C, 0x65, 0xD9, 0xBA, 0xBF, 0xF9, 0x05, 0xDE, 0x9C, 0xBB, 0x49, 0x6E, 0xC0, 0x49, 0xA1, 0xB5, 0xF5, 0x82, 0xE1, 0x07, 0x9B, 0x5C, 0x2E, 0xFD, 0x60, 0x5B, 0x5C, 0x74, 0x85, 0x28, 0xFC, 0x9E, 0x4B, 0x32, 0xBB, 0x4C, 0x47, 0xB5, 0xBD, 0xBE, 0xDF, 0x35, 0xA1, 0xE9, 0x25, 0x6C, 0x9E, 0x32, 0x63, 0xFD, 0x1B, 0x3D, 0x2D, 0xE9, 0x8B, 0x6A, 0xE4, 0x44, 0xF4, 0xCE, 0x9D, 0x8D, 0xF2, 0x5D, 0x3F, 0xFC, 0xA9, 0x4F, 0x0F, 0x6A, 0x85, 0x6F, 0xFD, 0xA0, 0xF5, 0xAC, 0x9F, 0xC5, 0xE5, 0x1D, 0xBD, 0x08, 0x06, 0x34, 0xF3, 0xFD, 0x7A, 0x5C, 0xD0, 0x4C, 0x91, 0xF7, 0xC0, 0x76, 0xC5, 0x2F, 0x26, 0x99, 0x76, 0xB4, 0xC2, 0x8C, 0x2F, 0x68, 0x12, 0xCC, 0xB0, 0xE3, 0xAB, 0x5B, 0xBD, 0x24, 0x4E, 0xE2, 0x63, 0x77, 0x1F, 0x3C, 0x7D, 0x0A, 0xE6, 0xE9, 0x47, 0xEA, 0x20, 0x6E, 0x8A, 0xF9, 0xD3, 0xE0, 0xA6, 0x4F, 0x57, 0x7F, 0xDF, 0x22, 0x43, 0xBC, 0xCA, 0x72, 0xB1, 0x5A, 0xCC, 0x9A, 0xF2, 0xD9, 0xE3, 0x8F, 0x01, 0xE4, 0x87, 0x5C, 0x90, 0x60, 0xA4, 0xD0, 0xE8, 0x5A, 0x7F, 0xE5, 0x4C, 0x82, 0xC8, 0xF4, 0x45, 0xC1, 0x53, 0xB1, 0x45, 0x9E, 0xF1, 0x0C, 0xB5, 0x37, 0x18, 0xFC, 0x91, 0xF5, 0xD3, 0xB1, 0x8B, 0x70, 0xAA, 0xD9, 0xAF, 0x85, 0x2A, 0x3E, 0xED, 0x6F, 0xA2, 0x95, 0x47, 0xF2, 0xEF, 0xFF, 0x98, 0x4C, 0xBA, 0x16, 0xED, 0x5C, 0x91, 0xB6, 0xEA, 0x0C, 0x99, 0x20, 0xD4, 0xD2, 0xF7, 0xCD, 0xA0, 0xA5, 0xD7, 0xF2, 0xA0, 0xD2, 0xED, 0x7D, 0x7B, 0xC1, 0xD4, 0x99, 0x44, 0x04, 0x06, 0xAA, 0xBB, 0x4C, 0xE7, 0x85, 0xBA, 0x10, 0x75, 0xF3, 0xF0, 0x78, 0x92, 0x1F, 0xE9, 0xAD, 0xD1, 0xC1, 0x28, 0x9E, 0xBD, 0xFD, 0x1D, 0x14, 0x88, 0x62, 0x9F, 0x9A, 0x68, 0xA3, 0x4D, 0xDF, 0x30, 0xD4, 0x53, 0x23, 0x4E, 0x34, 0xD0, 0x70, 0x74, 0xBB, 0xED, 0x73, 0x77, 0xDA, 0xC7, 0xC4, 0xFE, 0xDE, 0xBA, 0xD3, 0x0B, 0xA9, 0x01, 0x5B, 0xC6, 0x59, 0x8E, 0x64, 0x6D, 0x1E, 0x0A, 0x1D, 0x12, 0xEB, 0x9E, 0x03, 0x37, 0x3B, 0x21, 0x4B, 0x05, 0xAC, 0x74, 0x31, 0x18, 0x03, 0xB4, 0x9D, 0x69, 0x21, 0xF8, 0xBF, 0xE8, 0x2F, 0xFF, 0xF7, 0x56, 0xC9, 0xB9, 0x46, 0x1F, 0x7F, 0x80, 0x52, 0xA2, 0x3F, 0x8A, 0x5C, 0xE0, 0x89, 0x11, 0x5D, 0xEB, 0x3B, 0x92, 0xD5, 0x4D, 0x95, 0xBB, 0xBB, 0x89, 0xBA, 0x11, 0x09, 0x12, 0x93, 0x8D, 0x75, 0xA0, 0xB0, 0x73, 0xDA, 0x59, 0x46, 0x8A, 0x38, 0x20, 0xE8, 0xE4, 0xB8, 0x3B, 0x1F, 0xC8, 0xD0, 0x5F, 0x3F, 0xD3, 0xA1, 0x86, 0xE9, 0xDD, 0xFF, 0xBE, 0xF4, 0xD5, 0xC2, 0x22, 0xD5, 0x60, 0xAC, 0xE2, 0x7D, 0xD6, 0x25, 0x66, 0xD9, 0x77, 0xB4, 0x2F, 0x51, 0x2B, 0xFF, 0xEE, 0xAB, 0xC7, 0x40, 0x9D, 0x46, 0x97, 0x7E, 0x93, 0xDE, 0x87, 0x7B, 0xFD, 0xFE, 0x7E, 0xF4, 0xFD, 0xEF, 0xA2, 0x16, 0x6F, 0x9D, 0xB5, 0x94, 0xBD, 0x83, 0xF6, 0x40, 0x9A, 0x9B, 0x40, 0x85, 0x29, 0xC3, 0x0E, 0x5C, 0xDD, 0x19, 0x26, 0xC1, 0x9F, 0x2F, 0xC4, 0xD5, 0x67, 0x6C, 0x59, 0x50, 0x7F, 0x01, 0xCD, 0x07, 0x72, 0x4E, 0x8B, 0xD9, 0x9A, 0xD8, 0x78, 0x8E, 0x5F, 0x37, 0x38, 0x0C, 0x3F, 0xD1, 0xDC, 0x90, 0xD8, 0x0E, 0xF2, 0x46, 0x10, 0x23, 0xE5, 0x60, 0x01, 0x64, 0x61, 0x10, 0xF3, 0x04, 0xAB, 0xE5, 0x04, 0x1E, 0x8E, 0xF3, 0xC3, 0xFD, 0x2C, 0x0A, 0x5B, 0xE8, 0xF9, 0xCF, 0x3D, 0x24, 0xC6, 0x01, 0x83, 0xA6, 0x4E, 0xB1, 0x0B, 0x92, 0x64, 0x4C, 0x20, 0xC5, 0x4D, 0x46, 0x31, 0xB6, 0x7F, 0xA9, 0x4A, 0xA7, 0xDD, 0x67, 0x69, 0x1B, 0x99, 0x62, 0x78, 0xAF, 0x34, 0x36, 0x9A, 0x40, 0x3F, 0x4F, 0x35, 0xC2, 0xFF, 0xFE, 0xE2, 0x9A, 0xEF, 0x8F, 0xFB, 0x9D, 0x93, 0x2D, 0x64, 0x47, 0xFF, 0x5A, 0x76, 0x1A, 0xE4, 0xFB, 0xFA, 0x18, 0x38, 0xF1, 0x0A, 0x51, 0xD4, 0x57, 0x3B, 0x89, 0x93, 0xB5, 0x82, 0xAE, 0x73, 0xFD, 0x85, 0x77, 0x75, 0x72, 0x10, 0x75, 0x01, 0x1B, 0x19, 0x28, 0xAB, 0xE9, 0xC8, 0xA1, 0x29, 0x54, 0x5D, 0xDD, 0xE9, 0xA0, 0x16, 0x98, 0x00, 0xE8, 0xDF, 0x12, 0x9F, 0xF3, 0xD8, 0x09, 0xBF, 0xE2, 0x32, 0x67, 0x45, 0x09, 0x23, 0xEB, 0x76, 0x44, 0x96, 0x2B, 0xAA, 0x42, 0xBF, 0xF5, 0xF3, 0xE7, 0x47, 0xAB, 0x16, 0x23, 0x00, 0xF0, 0xD6, 0x6D, 0x08, 0x4C, 0x72, 0x44, 0x84, 0xE6, 0xDC, 0xC8, 0xB7, 0xE4, 0xAA, 0x6F, 0x01, 0xBD, 0x02, 0x37, 0x76, 0x66, 0x03, 0xED, 0xE1, 0x2F, 0x1F, 0xFE, 0x3F, 0x82, 0x28, 0xE5, 0x33, 0xD7, 0x6F, 0xF9, 0x1D, 0x83, 0x9B, 0x62, 0x84, 0xB1, 0x78, 0xF5, 0x88, 0x56, 0xDD, 0xD5, 0x30, 0x2D, 0xF0, 0x15, 0x02, 0x71, 0x8D, 0xB0, 0xE1, 0x4B, 0x4A, 0xE8, 0x0D, 0xA0, 0xA0, 0x93, 0x8A, 0xA0, 0x83, 0x83, 0xAB, 0x98, 0xAE, 0x4E, 0x54, 0xE1, 0x94, 0x7C, 0x86, 0x29, 0x07, 0x0E, 0xF3, 0x64, 0x1E, 0xCD, 0x3A, 0xC5, 0xEE, 0x9A, 0x25, 0xEF, 0x7B, 0xD4, 0xE9, 0x9B, 0x68, 0x6B, 0x6B, 0x15, 0x5C, 0x25, 0x37, 0x81, 0xDE, 0xD8, 0xB7, 0xBC, 0x22, 0x1F, 0x8C, 0x2D, 0xE2, 0x0F, 0x53, 0xE2, 0x96, 0xC2, 0x21, 0xF5, 0xBD, 0x54, 0x06, 0x17, 0x7A, 0xD3, 0x44, 0x47, 0x3F, 0x86, 0xF9, 0x67, 0x49, 0xD3, 0xE4, 0xE0, 0x91, 0xEF, 0xFF, 0xBF, 0x23, 0x8F, 0xEE, 0xF4, 0x94, 0xE6, 0x66, 0xD1, 0x08, 0xBA, 0xAA, 0x77, 0x8E, 0x2A, 0x8B, 0x07, 0x1C, 0x0E, 0x07, 0x3F, 0xDE, 0x72, 0xF5, 0x50, 0x3B, 0x8B, 0x7D, 0x85, 0x9F, 0xAF, 0x5F, 0xF6, 0xD1, 0x02, 0xC4, 0x5E, 0x2A, 0x73, 0x17, 0xF7, 0xB6, 0x87, 0x6E, 0x7B, 0x03, 0x26, 0x00, 0xC1, 0x47, 0xD2, 0xED, 0x99, 0xEA, 0xBB, 0x0C, 0x5A, 0x33, 0x51, 0x21, 0x7F, 0x17, 0xCF, 0x2F, 0x24, 0x24, 0x29, 0xB3, 0x04, 0x35, 0x4E, 0x26, 0x5B, 0xF9, 0xFF, 0x9D, 0x12, 0xDE, 0x32, 0xAD, 0xD5, 0xDC, 0xD7, 0xC8, 0x6A, 0x88, 0x45, 0xEB, 0xFF, 0x9B, 0x4B, 0x08, 0x48, 0x4A, 0x10, 0x00, 0x12, 0x05, 0x2C, 0x40, 0x18, 0xF9, 0xA5, 0x8A, 0x59, 0x41, 0xEF, 0x56, 0x45, 0xE5, 0xF4, 0xBE, 0x75, 0x33, 0x67, 0xB6, 0xAD, 0x04, 0x46, 0x4B, 0x5D, 0x41, 0xCE, 0x9F, 0x8D, 0x56, 0x18, 0x67, 0x1A, 0x64, 0x6B, 0xE7, 0xAC, 0x64, 0xD8, 0x07, 0x7A, 0x93, 0x89, 0x63, 0xFE, 0xCB, 0x50, 0x23, 0xA4, 0x74, 0x9C, 0x53, 0x2E, 0xFD, 0x16, 0xF2, 0xFD, 0x50, 0xFF, 0x40, 0x04, 0x4E, 0x23, 0xC1, 0xA1, 0x82, 0x8A, 0xEB, 0x7F, 0xD7, 0x5B, 0x23, 0x35, 0x93, 0x37, 0x28, 0x3E, 0x0C, 0x66, 0xAD, 0xA3, 0x2E, 0x7E, 0x17, 0x8C, 0x87, 0xDA, 0xE5, 0xBC, 0x02, 0x10, 0x85, 0x06, 0x25, 0xB8, 0xF3, 0x5C, 0xE3, 0xCC, 0x5B, 0x93, 0x85, 0xED, 0x05, 0x78, 0x3D, 0x69, 0xA3, 0xBC, 0x90, 0x16, 0xA8, 0x24, 0x25, 0x80, 0x7A, 0xC5, 0xE0, 0xC0, 0x23, 0xA4, 0xE1, 0xB3, 0x9C, 0x51, 0xF7, 0xA2, 0x6F, 0xF5, 0x82, 0x6E, 0x2C, 0xA1, 0x18, 0x28, 0x85, 0xCF, 0xF8, 0x05, 0x00, 0x7E, 0xA4, 0x99, 0x75, 0x36, 0x1B, 0x95, 0x0B, 0x1B, 0x7F, 0xC1, 0x05, 0x01, 0x50, 0xB3, 0xBF, 0x6C, 0xB2, 0xD8, 0x1E, 0x33, 0xD0, 0x78, 0x20, 0x80, 0x13, 0x01, 0x0B, 0x02, 0x86, 0xDA, 0x81, 0x35, 0xA6, 0x1F, 0xE8, 0x29, 0xF4, 0xFA, 0x96, 0xA7, 0xE1, 0x29, 0xF8, 0xDA, 0xFD, 0x54, 0xD4, 0xF0, 0x5E, 0xB4, 0x4F, 0x87, 0xA4, 0x34, 0x97, 0x90, 0x78, 0xDA, 0x09, 0x8A, 0xDB, 0x12, 0x2F, 0xF7, 0x5F, 0xA7, 0x6D, 0x7A, 0x46, 0x76, 0xF9, 0xC9, 0x39, 0xCB, 0x37, 0xFD, 0xDF, 0x07, 0x3B, 0xA6, 0x25, 0xAC, 0xBF, 0xE6, 0xA6, 0x5C, 0xFA, 0xCD, 0x70, 0x34, 0xFF, 0x0F, 0x45, 0x3F, 0x5F, 0x4E, 0xC7, 0x97, 0x31, 0x1D, 0xFC, 0x97, 0x84, 0x54, 0x80, 0x7B, 0x6C, 0x91, 0x12, 0x08, 0x91, 0x9A, 0x48, 0x0F, 0xDF, 0xF9, 0x84, 0x82, 0xFA, 0x79, 0x8A, 0xF8, 0x6A, 0x85, 0x2A, 0x7F, 0xDB, 0xF7, 0x2E, 0x91, 0x11, 0x86, 0x04, 0x00, 0x07, 0xC2, 0xBA, 0x42, 0x00, 0x02, 0x43, 0xC8, 0x51, 0x93, 0x34, 0x04, 0xA3, 0xC8, 0x4D, 0x7A, 0xB1, 0x2D, 0xB1, 0xB3, 0xA5, 0x4C, 0xDB, 0x38, 0xC6, 0xDA, 0x60, 0xD0, 0x1E, 0x9B, 0xE0, 0x86, 0xCF, 0x21, 0x1D, 0xCE, 0x5C, 0xBA, 0x7C, 0x55, 0xD8, 0x4F, 0x21, 0x26, 0x77, 0x3F, 0x1B, 0xCC, 0x03, 0xAB, 0x16, 0x97, 0xD9, 0xFD, 0xF4, 0x11, 0x8F, 0xC4, 0x90, 0xCD, 0x50, 0x0E, 0xBF, 0x59, 0x2E, 0x86, 0xED, 0x44, 0x86, 0xFF, 0xB4, 0xA2, 0xF7, 0xEC, 0xB4, 0xF0, 0xDE, 0x48, 0x0E, 0x19, 0xEE, 0x02, 0x27, 0xC8, 0xB0, 0x02, 0xEA, 0xD3, 0x5E, 0xD9, 0x9B, 0xF2, 0x96, 0x7B, 0x01, 0xC7, 0x59, 0x25, 0x31, 0x9B, 0xD2, 0x9F, 0x12, 0x73, 0x2B, 0xBB, 0x1E, 0x77, 0x5F, 0xFB, 0x55, 0xA7, 0x24, 0x05, 0x81, 0x0A, 0x04, 0x02, 0x24, 0x50, 0x72, 0x21, 0x42, 0x48, 0x4C, 0x6D, 0x00, 0xCA, 0x9E, 0x7A, 0x26, 0x33, 0xE1, 0xB8, 0xE6, 0x61, 0x1B, 0xBF, 0xEC, 0xFE, 0xB4, 0x26, 0x47, 0x8B, 0x3B, 0x27, 0x85, 0x9E, 0x73, 0x0A, 0x7F, 0xFB, 0xB2, 0xC6, 0x25, 0x49, 0xCB, 0xBD, 0xD6, 0xAB, 0xE7, 0x5A, 0x8F, 0x46, 0x2B, 0x92, 0x41, 0xC5, 0x8A, 0x77, 0x8C, 0xB1, 0x3A, 0x00, 0x37, 0xB3, 0x7F, 0x1E, 0x18, 0xD9, 0x48, 0xAF, 0x5B, 0x30, 0xD3, 0x66, 0xD8, 0x18, 0x8C, 0xFF, 0x29, 0x77, 0xE6, 0x43, 0x6B, 0x75, 0x5E, 0x8A, 0x07, 0x3D, 0xB6, 0x9E, 0x1E, 0x36, 0x5D, 0xEB, 0xF8, 0xE0, 0xA4, 0x76, 0x95, 0xE7, 0x7B, 0x76, 0x23, 0xB7, 0xC9, 0x4D, 0x5A, 0x65, 0x07, 0x7D, 0x7C, 0x83, 0x7C, 0x1A, 0x70, 0x0F, 0xC7, 0x0F, 0xA0, 0xFC, 0xE3, 0x2A, 0x6E, 0x6E, 0xFC, 0xEF, 0x86, 0x24, 0xC0, 0x96, 0xF5, 0xA2, 0xCD, 0x4D, 0x83, 0x66, 0x19, 0xA8, 0x92, 0x02, 0x2D, 0xEC, 0x00, 0x08, 0x9F, 0x11, 0x81, 0x3E, 0xE2, 0xCB, 0x3F, 0x3C, 0x16, 0x21, 0x1D, 0xEF, 0xE7, 0xD3, 0xE9, 0x4B, 0xA8, 0xD6, 0xC7, 0xAD, 0x7F, 0x49, 0x77, 0x10, 0xE9, 0x25, 0x7B, 0x4B, 0x68, 0x3F, 0x5F, 0xEA, 0x5F, 0x0B, 0xF7, 0xE1, 0x7D, 0xA4, 0x0D, 0x03, 0x5F, 0x65, 0x4F, 0xA7, 0x99, 0x00, 0xA2, 0xFC, 0xAE, 0xDE, 0xE6, 0x51, 0xDB, 0x66, 0x66, 0x81, 0x38, 0x9D, 0x6D, 0x89, 0xF9, 0xAD, 0x59, 0x60, 0x4B, 0x7D, 0x25, 0xDD, 0xFA, 0xEB, 0x29, 0x67, 0x80, 0x3C, 0x67, 0x7A, 0xC6, 0xF6, 0x0D, 0xCC, 0xA7, 0xE6, 0x04, 0x1F, 0x98, 0xB3, 0x82, 0x5E, 0x97, 0x74, 0x9C, 0x34, 0xBF, 0x2A, 0x43, 0xBF, 0xDD, 0x0E, 0xE5, 0x0F, 0x01, 0x08, 0x30, 0x84, 0x04, 0x01, 0x85, 0x07, 0x5C, 0xAE, 0x16, 0xEB, 0x8F, 0x89, 0x3B, 0xD3, 0x1B, 0x01, 0x96, 0x44, 0x94, 0x40, 0xA2, 0xC1, 0x26, 0x0F, 0x47, 0x0F, 0x45, 0x53, 0x57, 0x13, 0xA1, 0xDD, 0xF1, 0x12, 0xCE, 0x63, 0x17, 0x27, 0xFF, 0x26, 0xF1, 0x64, 0x57, 0x0E, 0x58, 0x53, 0xF7, 0xDD, 0x7E, 0x08, 0x1B, 0xE3, 0x00, 0xA2, 0xA7, 0x7F, 0xBA, 0xAF, 0x5C, 0x45, 0xB3, 0xDF, 0xE5, 0xF0, 0x8D, 0x2D, 0xD3, 0x53, 0xDF, 0xEF, 0x95, 0x27, 0x60, 0x3E, 0xED, 0x7A, 0x5D, 0x5A, 0x3B, 0x95, 0x0F, 0x90, 0x76, 0xE6, 0xD1, 0x64, 0xCB, 0x8D, 0x68, 0x68, 0x2D, 0x4D, 0x52, 0x7C, 0x42, 0x8A, 0xD3, 0x1A, 0x50, 0x01, 0xCF, 0x75, 0xE8, 0xC0, 0x52, 0x43, 0x1A, 0xFB, 0xAA, 0x00, 0x5E, 0xDB, 0x46, 0x77, 0xDD, 0xFF, 0xBB, 0x51, 0xA4, 0x14, 0x20, 0x52, 0x1E, 0xF6, 0x3C, 0x37, 0x14, 0xFB, 0xE1, 0xE1, 0x13, 0xC4, 0x0E, 0x04, 0x74, 0xBF, 0xD2, 0xC5, 0x6E, 0x45, 0x85, 0xC5, 0xDE, 0x8B, 0x97, 0x81, 0x97, 0x36, 0x1C, 0xA7, 0xB0, 0x0F, 0x36, 0xCF, 0xD2, 0x50, 0x44, 0x52, 0x03, 0x88, 0xA1, 0xBD, 0xF1, 0x98, 0x08, 0x59, 0x13, 0x71, 0xEF, 0x2E, 0x3C, 0x3D, 0x58, 0x4C, 0x87, 0x19, 0x4F, 0x28, 0x3B, 0xBD, 0xD0, 0x30, 0x19, 0x51, 0xA8, 0x7C, 0xD3, 0xDF, 0x37, 0x6F, 0x19, 0x34, 0x26, 0x8B, 0x43, 0xF2, 0x09, 0xA6, 0x3F, 0x21, 0xE6, 0xF7, 0x74, 0x29, 0xBF, 0x9D, 0x6D, 0x40, 0x18, 0xCB, 0xDC, 0xDE, 0x18, 0xD4, 0x43, 0xF9, 0x2B, 0xEC, 0xF1, 0xF6, 0xF5, 0x52, 0xDC, 0x5E, 0x6F, 0x33, 0xFA, 0xBF, 0x2D, 0xFE, 0x04, 0x32, 0x93, 0x67, 0xBD, 0xFB, 0xF2, 0xA4, 0x5D, 0x30, 0xB5, 0x41, 0x75, 0x5F, 0x6C, 0x10, 0x00, 0x13, 0x28, 0x02, 0x16, 0x11, 0x81, 0xA5, 0x36, 0x4C, 0x04, 0x83, 0x94, 0x20, 0xFB, 0x81, 0x80, 0x0B, 0x77, 0x5E, 0x4F, 0x9B, 0x28, 0x01, 0xA9, 0x7E, 0xB8, 0xF8, 0x94, 0xA0, 0xB4, 0xFA, 0xF1, 0xF7, 0xC0, 0x40, 0x92, 0x5F, 0x20, 0xD9, 0xE8, 0xF0, 0x42, 0x38, 0x07, 0x5C, 0x6F, 0x63, 0xFD, 0xA8, 0xB0, 0x70, 0xE7, 0x09, 0x57, 0x89, 0x6A, 0x5E, 0xBF, 0xF7, 0x71, 0x26, 0xB1, 0xE5, 0x62, 0x08, 0xD0, 0xCA, 0x06, 0xFA, 0xFA, 0xDB, 0xFF, 0xC0, 0x59, 0x00, 0x03, 0xFE, 0xFD, 0x94, 0x90, 0x40, 0x1D, 0xF6, 0x65, 0x20, 0x41, 0x20, 0x4B, 0x16, 0x18, 0x79, 0x4B, 0x5D, 0xC2, 0xDE, 0x60, 0x95, 0x76, 0x6C, 0x50, 0x24, 0x05, 0x1E, 0x32, 0xE4, 0xC7, 0x88, 0xF3, 0x9C, 0x3A, 0x68, 0x73, 0xD4, 0x33, 0x79, 0xA0, 0x06, 0x67, 0x84, 0x72, 0x43, 0xA2, 0xD7, 0x0C, 0xC1, 0x22, 0x25, 0xF6, 0xF0, 0x5B, 0xC1, 0x16, 0xE5, 0x96, 0x80, 0x48, 0x2C, 0x05, 0x4F, 0x69, 0xDF, 0xF4, 0x7A, 0xA3, 0x90, 0x90, 0x45, 0xCC, 0x49, 0x61, 0x2D, 0x33, 0x6C, 0xC0, 0x4B, 0xFD, 0xE4, 0xC1, 0xA8, 0xC1, 0x19, 0x2F, 0x9F, 0xDF, 0x43, 0xB9, 0x40, 0xF9, 0x9C, 0xBE, 0x54, 0xA6, 0xEC, 0xED, 0xAC, 0xEA, 0xD1, 0xB0, 0x41, 0x65, 0x5B, 0x26, 0xB6, 0x81, 0xC7, 0x28, 0xE2, 0x5F, 0x86, 0x94, 0x24, 0x90, 0x02, 0x87, 0x0F, 0x6B, 0x32, 0x45, 0x6B, 0x47, 0x2B, 0xA9, 0xD2, 0xC7, 0xD0, 0x06, 0xAA, 0x40, 0x04, 0x6B, 0xA3, 0xFC, 0x0E, 0xD5, 0x8F, 0xAB, 0x6F, 0x27, 0xC1, 0x5C, 0x7F, 0xF2, 0xB4, 0xD8, 0xA5, 0x41, 0x22, 0x2E, 0xD7, 0xFD, 0xF8, 0x2D, 0xCD, 0x85, 0x22, 0x9F, 0x8D, 0xD8, 0x35, 0x6C, 0x96, 0x1A, 0xC6, 0x34, 0x09, 0x4A, 0x97, 0xBF, 0x7C, 0xA6, 0x6C, 0x29, 0x22, 0xD7, 0x3C, 0x25, 0xA1, 0xB4, 0xB8, 0xD7, 0x4D, 0xB6, 0xC5, 0xB7, 0xCF, 0x0A, 0x70, 0x21, 0x9A, 0x26, 0x28, 0xFE, 0x98, 0xA4, 0xB8, 0x17, 0xB5, 0x2B, 0x55, 0xED, 0x57, 0x9B, 0x4D, 0xBF, 0x81, 0x3F, 0xF6, 0x2F, 0x7F, 0x21, 0x02, 0x76, 0x1B, 0xFB, 0xA9, 0x4E, 0xD9, 0x1A, 0x52, 0x9A, 0x93, 0x40, 0x57, 0x14, 0xAF, 0x40, 0x86, 0xAF, 0x28, 0xDC, 0x9B, 0x13, 0x97, 0xBD, 0x14, 0x68, 0xF0, 0x37, 0x2F, 0xF9, 0xE7, 0x42, 0x4D, 0x0D, 0x16, 0xA9, 0x55, 0xB6, 0xB8, 0x4B, 0x0B, 0xFF, 0x7C, 0x8F, 0xA6, 0x83, 0xA4, 0xBF, 0xA4, 0x2D, 0x75, 0xD1, 0x4B, 0x43, 0x8D, 0xF7, 0x7A, 0xB1, 0x81, 0x29, 0x83, 0xA6, 0xDF, 0xCA, 0x8A, 0x8D, 0x2D, 0x22, 0x8B, 0xFD, 0x1A, 0x04, 0x25, 0x22, 0x43, 0x66, 0x88, 0x13, 0x31, 0x20, 0xF6, 0x8E, 0xA6, 0x18, 0x91, 0x3A, 0x53, 0xC9, 0xA7, 0x29, 0x7F, 0xFD, 0x6A, 0x65, 0x5F, 0x4B, 0xA1, 0xB9, 0x39, 0x3A, 0x88, 0x28, 0xA3, 0x27, 0xA9, 0x1B, 0x46, 0x96, 0xFE, 0x88, 0xD9, 0x84, 0x43, 0x9D, 0xCD, 0x3E, 0x53, 0x38, 0x1A, 0x23, 0x97, 0xF9, 0x3F, 0x81, 0x72, 0x2F, 0xF7, 0x30, 0x95, 0x4D, 0x88, 0xF6, 0x89, 0x27, 0xE6, 0xF8, 0x78, 0x31, 0xF2, 0xA4, 0xAC, 0xF8, 0x7B, 0x75, 0xFD, 0xD4, 0x21, 0x68, 0x07, 0x31, 0x46, 0x53, 0xD2, 0xBC, 0x38, 0xF4, 0xB5, 0x7F, 0x69, 0xE8, 0x5B, 0x85, 0xAE, 0xFA, 0x27, 0xC9, 0x06, 0xF5, 0x09, 0x76, 0xB3, 0x05, 0xC9, 0xC2, 0xB5, 0xFF, 0xBC, 0xDD, 0x3B, 0x0B, 0x4A, 0x56, 0x7E, 0xA4, 0x0B, 0xEE, 0xF9, 0x5C, 0x1A, 0xD7, 0x9A, 0x8A, 0xEF, 0x48, 0x05, 0x6E, 0xE5, 0x47, 0xCC, 0x7D, 0xC5, 0x65, 0xAF, 0x34, 0x36, 0xB9, 0x0D, 0x0C, 0x1A, 0x0D, 0xF7, 0x6E, 0xBA, 0x3B, 0x89, 0x84, 0x80, 0x38, 0x8A, 0x3E, 0x63, 0xB0, 0xD3, 0x5F, 0x4F, 0x23, 0x58, 0x26, 0x29, 0x08, 0xD9, 0x33, 0x34, 0xFF, 0xFF, 0x0C, 0xEC, 0x96, 0x2B, 0xB7, 0x89, 0x1A, 0x81, 0x0E, 0x24, 0xC3, 0x23, 0x29, 0xAD, 0x5D, 0xF0, 0x8F, 0x4A, 0x12, 0x78, 0xAB, 0x5D, 0x1D, 0x45, 0x2E, 0xF5, 0x10, 0x0C, 0x4D, 0xE2, 0xA0, 0xB7, 0xEC, 0xD6, 0x86, 0xAF, 0x52, 0xC9, 0xA1, 0x64, 0x73, 0x86, 0x9A, 0x61, 0xA9, 0xFA, 0xF4, 0x9B, 0xFB, 0xD0, 0x2B, 0xB8, 0x76, 0xF9, 0x5F, 0xF7, 0x57, 0xA2, 0x18, 0x6D, 0xB7, 0x96, 0xCB, 0x0E, 0x36, 0xA1, 0xB2, 0x99, 0x09, 0x9B, 0xBC, 0x0D, 0xB1, 0x04, 0x27, 0x3D, 0x30, 0xBC, 0x92, 0xAD, 0xA9, 0x45, 0x65, 0x47, 0x84, 0xBE, 0xDA, 0x74, 0xFB, 0x0B, 0x46, 0xEE, 0x50, 0xBD, 0x2C, 0x4F, 0x7B, 0xC8, 0x04, 0x72, 0x77, 0xEE, 0xD7, 0x6E, 0x69, 0x54, 0x0A, 0x23, 0xE6, 0xBC, 0x0C, 0x39, 0x7C, 0xB4, 0xDE, 0xFA, 0xDE, 0x95, 0x33, 0x68, 0x33, 0x78, 0x99, 0x5C, 0xF6, 0x42, 0x82, 0x4A, 0x25, 0x22, 0xD0, 0x3B, 0x15, 0x59, 0x1A, 0x7F, 0x02, 0x64, 0xB0, 0xE3, 0xF3, 0x82, 0x01, 0x0C, 0xCE, 0x0B, 0x42, 0x16, 0x75, 0x3B, 0x4D, 0x5D, 0x0D, 0x62, 0x41, 0x27, 0xF0, 0xBD, 0x6A, 0xFB, 0x3F, 0x83, 0x27, 0x05, 0x5B, 0xB8, 0xAB, 0x8D, 0x9D, 0xBE, 0x33, 0xCD, 0x4F, 0xC9, 0x78, 0xBB, 0x9B, 0x33, 0xB5, 0x88, 0x0D, 0xD4, 0x1B, 0xA7, 0xAA, 0xCA, 0x17, 0x8D, 0xCF, 0x7D, 0x65, 0xB6, 0xD2, 0xDD, 0xC3, 0x45, 0xD0, 0xBD, 0xAF, 0xD3, 0x0E, 0x41, 0xD9, 0xCA, 0xCE, 0xF7, 0x42, 0xAC, 0x76, 0x83, 0xE9, 0x4C, 0x86, 0xB5, 0x6F, 0x64, 0x15, 0x33, 0x91, 0x77, 0x2B, 0x5F, 0x3F, 0x78, 0xD7, 0x39, 0x7D, 0x6E, 0x5B, 0xC5, 0xE1, 0x0D, 0xA8, 0xF1, 0x7D, 0xE3, 0xD8, 0x85, 0x9C, 0x9F, 0x84, 0x81, 0x6B, 0x4E, 0xFF, 0x4B, 0xA0, 0xFB, 0xFD, 0x15, 0x17, 0x77, 0xB8, 0x03, 0xC4, 0x09, 0xC0, 0x2C, 0xC0, 0xF7, 0x0F, 0x91, 0xB3, 0x24, 0x77, 0x83, 0xAE, 0x95, 0x29, 0x49, 0x03, 0x34, 0xAE, 0xEC, 0x54, 0x35, 0x4B, 0x8F, 0x64, 0x24, 0x74, 0x3F, 0x74, 0xF7, 0xBB, 0x1E, 0x5F, 0xFD, 0xB0, 0x91, 0xC9, 0x2D, 0x5F, 0xB3, 0x37, 0xC4, 0xAD, 0xEB, 0x3C, 0x3E, 0x25, 0x1D, 0x14, 0x83, 0xF1, 0x94, 0xAD, 0xFB, 0xFF, 0x03, 0xB5, 0x67, 0xE1, 0xEF, 0xAA, 0x95, 0xC0, 0x7E, 0x20, 0x20, 0xCA, 0x2A, 0xD5, 0xBF, 0x70, 0x3B, 0x8D, 0x11, 0xDF, 0xEF, 0x5D, 0xE9, 0xF9, 0x11, 0x0B, 0x9F, 0xFE, 0xFF, 0xDC, 0x63, 0xE4, 0x54, 0xE7, 0xC7, 0x18, 0xFC, 0x65, 0xA0, 0x5F, 0xCE, 0xD6, 0xDB, 0x4D, 0x15, 0x49, 0xD0, 0x13, 0x5B, 0xAA, 0x18, 0x13, 0xE6, 0xF9, 0x88, 0xA5, 0x29, 0x9B, 0x69, 0x98, 0xF2, 0x07, 0x8A, 0xFD, 0xD4, 0x6C, 0x5C, 0x25, 0xCD, 0x55, 0xDD, 0x05, 0x5A, 0x37, 0xA3, 0x5D, 0xF9, 0x51, 0x38, 0xC3, 0x7F, 0xB9, 0x1F, 0xF7, 0x6A, 0x6B, 0xB0, 0xE3, 0x1D, 0x14, 0x64, 0xBD, 0x74, 0x8E, 0x4A, 0x1F, 0xB7, 0xFD, 0xFE, 0xCB, 0x34, 0x0F, 0x8A, 0xAF, 0x46, 0xCF, 0xE6, 0x8B, 0x1F, 0xA1, 0x39, 0x59, 0x28, 0x03, 0xD6, 0x05, 0xF8, 0x22, 0x69, 0xEA, 0x2F, 0x49, 0xEC, 0x80, 0x64, 0x1E, 0x95, 0x77, 0x8C, 0xDA, 0x89, 0x5E, 0xA2, 0x35, 0x40, 0x7E, 0x9C, 0x14, 0x10, 0xB9, 0xFD, 0x8F, 0x8A, 0x01, 0xDA, 0x22, 0x76, 0x10, 0xFF, 0x3F, 0xED, 0xE5, 0xAC, 0x98, 0x74, 0xA7, 0xDB, 0xF4, 0xBA, 0xC5, 0x5D, 0x28, 0x25, 0xFA, 0x81, 0x84, 0x20, 0x42, 0xF0, 0xDC, 0xC4, 0xBD, 0xB0, 0x74, 0x48, 0x5B, 0xB0, 0xB9, 0x2B, 0x13, 0xC6, 0x42, 0xDF, 0x19, 0xFB, 0xE7, 0x0D, 0xA7, 0x7D, 0x6E, 0x37, 0x9B, 0xED, 0x5F, 0x59, 0x79, 0x37, 0xF7, 0x98, 0xE9, 0x1E, 0x2B, 0xD4, 0x7F, 0x96, 0x70, 0x32, 0xA4, 0xEA, 0x20, 0xC8, 0x87, 0xC2, 0xED, 0x70, 0x57, 0xE4, 0xFF, 0x24, 0x88, 0x6F, 0x2F, 0xCF, 0xB9, 0x34, 0x53, 0xF7, 0x38, 0x39, 0x95, 0x77, 0x4F, 0xCF, 0xD9, 0xC9, 0x4D, 0xFF, 0xC4, 0xC0, 0x7D, 0x47, 0x1A, 0xF5, 0x33, 0x7C, 0xE5, 0xC0, 0xAD, 0x93, 0xC3, 0xAD, 0x74, 0xEB, 0x60, 0x72, 0x48, 0x1D, 0x1C, 0xD0, 0x70, 0xAC, 0x71, 0xE9, 0xF4, 0xF6, 0xF2, 0x7D, 0xD1, 0xDC, 0x9F, 0x01, 0x50, 0xAB, 0x78, 0x7C, 0x4B, 0x3F, 0x85, 0xA5, 0x8A, 0x09, 0xDF, 0x76, 0x11, 0xB6, 0x8F, 0x7D, 0xEC, 0x9C, 0x5D, 0xDF, 0x7B, 0xB2, 0x7D, 0xB5, 0x8D, 0x1B, 0xA1, 0xEE, 0xA8, 0x55, 0x33, 0x5B, 0x95, 0xC7, 0x43, 0xB7, 0xC8, 0xA8, 0xDD, 0x38, 0x7A, 0x50, 0x43, 0xB8, 0xA4, 0x70, 0x31, 0x49, 0x6B, 0xDD, 0xF0, 0x64, 0x9F, 0x0F, 0x9E, 0xF9, 0x87, 0x7E, 0x02, 0xB6, 0x01, 0x35, 0x55, 0x15, 0x15, 0x5F, 0x20, 0xF8, 0xAB, 0x29, 0x53, 0x1F, 0xED, 0x9A, 0x90, 0xF5, 0x17, 0x54, 0x74, 0xF8, 0xA1, 0x4D, 0x7C, 0x4F, 0xCC, 0xBC, 0xF7, 0xF7, 0xFD, 0x33, 0xD6, 0x51, 0x4F, 0xAC, 0xAB, 0x47, 0x1E, 0x41, 0xC2, 0x6F, 0xF4, 0xD6, 0xFC, 0xA2, 0x1F, 0xCF, 0xC6, 0x4D, 0xCE, 0x85, 0xDE, 0xAD, 0xF5, 0x96, 0xE4, 0x1B, 0x2A, 0x50, 0x68, 0x2E, 0xE6, 0xD4, 0xB2, 0xEB, 0x0B, 0xD7, 0x98, 0x3A, 0x10, 0xF3, 0x31, 0x55, 0x8F, 0xEB, 0xCB, 0xBD, 0x8D, 0x22, 0x7B, 0x73, 0xE0, 0xF3, 0xBB, 0xDE, 0xB9, 0x22, 0xB7, 0x59, 0x51, 0xF3, 0xD1, 0x46, 0x9A, 0xE8, 0x6C, 0xCD, 0xAC, 0x46, 0x2A, 0x4E, 0xB7, 0x67, 0x04, 0xE4, 0xD3, 0x77, 0xD7, 0x68, 0x31, 0xCB, 0xAB, 0xAD, 0xDE, 0xA8, 0x90, 0xF3, 0x7D, 0x73, 0xF5, 0xF6, 0xEC, 0x9D, 0xA4, 0xF2, 0x5B, 0x1D, 0xFF, 0x3D, 0x00, 0xFD, 0x8E, 0x00, 0x44, 0xC3, 0xC3, 0x8F, 0x85, 0xC8, 0x0C, 0x87, 0xED, 0xE4, 0xB7, 0x71, 0xB8, 0x44, 0x28, 0xED, 0xF0, 0xE6, 0xB7, 0xEC, 0x0C, 0x8D, 0xCB, 0x1F, 0x6F, 0x36, 0xD2, 0xFF, 0xDF, 0xCF, 0xCB, 0xD2, 0x41, 0xEF, 0x74, 0xF4, 0xF0, 0x23, 0x7F, 0x79, 0x34, 0xF0, 0x0D, 0x63, 0x0B, 0x7F, 0xFD, 0x0F, 0x41, 0xD6, 0xD2, 0x9E, 0xFF, 0xE2, 0xC6, 0x41, 0x08, 0x01, 0x62, 0x84, 0x08, 0x32, 0x04, 0xAF, 0x48, 0xCD, 0xA2, 0xF8, 0x15, 0x65, 0xB3, 0xD0, 0xA3, 0x62, 0xFF, 0x03, 0x5B, 0x90, 0x10, 0x69, 0x23, 0x14, 0xB3, 0xF6, 0x7A, 0x59, 0xE5, 0xBB, 0x1A, 0xDC, 0x6B, 0xB9, 0x60, 0x27, 0x74, 0x8A, 0x58, 0x33, 0x99, 0xBA, 0x96, 0xB6, 0xB0, 0x59, 0xE5, 0x5C, 0x31, 0x0A, 0x33, 0x74, 0xD8, 0x2B, 0xD1, 0x08, 0x9D, 0xBB, 0x1F, 0xED, 0xE3, 0x3A, 0x34, 0xE8, 0x22, 0x63, 0x5D, 0x64, 0x88, 0xB5, 0x31, 0xF3, 0xEF, 0xB0, 0x68, 0x10, 0x3E, 0x00, 0xDB, 0x99, 0x11, 0xAF, 0xB0, 0x76, 0x9B, 0x64, 0x4C, 0x32, 0xF5, 0x99, 0x19, 0xD8, 0x26, 0x5B, 0x59, 0xF3, 0x29, 0x36, 0x6C, 0x7F, 0x97, 0x27, 0xE0, 0xC9, 0xE0, 0x32, 0x32, 0xA0, 0xD2, 0x1B, 0x04, 0x22, 0xAD, 0x89, 0x95, 0x72, 0xA2, 0x3C, 0x7C, 0x30, 0x4C, 0x71, 0xC0, 0x90, 0x7A, 0x9E, 0x0E, 0xD2, 0xC6, 0x60, 0xEE, 0x92, 0x0B, 0x1D, 0x9F, 0x0C, 0x46, 0xB1, 0xD9, 0x20, 0xAC, 0x17, 0x16, 0x70, 0x78, 0x3E, 0x36, 0xA7, 0x9B, 0xC2, 0xA1, 0x88, 0xA9, 0x4C, 0x53, 0xAE, 0xCB, 0xBF, 0x80, 0x0C, 0x5F, 0x3C, 0x85, 0xC0, 0x3B, 0x4D, 0xF1, 0x67, 0xDF, 0x48, 0xD0, 0x8B, 0xDD, 0x46, 0xFE, 0xF4, 0xD0, 0xE9, 0x90, 0x69, 0x91, 0x33, 0xD6, 0x6C, 0x0C, 0x91, 0x5A, 0xA4, 0xBE, 0xDF, 0xE1, 0xA3, 0xD8, 0x3D, 0xEB, 0xD5, 0xBE, 0x37, 0x9E, 0x41, 0x64, 0xD4, 0x76, 0x7B, 0x8E, 0x26, 0x27, 0x80, 0x5A, 0x60, 0xCB, 0x26, 0xC0, 0x88, 0x9A, 0x4E, 0x03, 0xCB, 0x17, 0xF4, 0xF2, 0x9E, 0x63, 0x6A, 0xEF, 0xE0, 0x80, 0x54, 0xE0, 0xC1, 0x08, 0x06, 0x40, 0x88, 0x9C, 0x70, 0x1D, 0x30, 0xDA, 0x8A, 0xDC, 0x28, 0xFA, 0xF1, 0xBC, 0x1F, 0x84, 0x38, 0x20, 0x44, 0xDC, 0x1B, 0xCC, 0x59, 0xEC, 0x21, 0x7F, 0x09, 0xD1, 0xB0, 0xFC, 0xE2, 0xC4, 0x24, 0xAE, 0x48, 0x37, 0xF9, 0xD6, 0x7A, 0x4E, 0xA3, 0xD7, 0x41, 0xBF, 0x9C, 0xF5, 0x81, 0x86, 0x6E, 0xEE, 0x14, 0xDA, 0x87, 0x80, 0x37, 0x41, 0x70, 0x40, 0xE2, 0xAF, 0x4A, 0x69, 0xBE, 0xA8, 0x43, 0x6B, 0x7D, 0xAC, 0x83, 0x6B, 0x4C, 0x32, 0x6A, 0xA4, 0x39, 0x6A, 0xD9, 0x46, 0xAC, 0x9B, 0xD8, 0x18, 0x16, 0xBB, 0xEE, 0xAC, 0x3F, 0x1D, 0xB6, 0xBC, 0x8C, 0x80, 0xCD, 0x6E, 0x43, 0xF7, 0x34, 0x28, 0xF3, 0x78, 0x8F, 0xDE, 0x14, 0xE9, 0xFF, 0x34, 0xFB, 0x24, 0x5B, 0xB3, 0x82, 0x8B, 0x28, 0x30, 0x73, 0x6A, 0x1F, 0x82, 0x07, 0xAD, 0x16, 0x85, 0x7D, 0x24, 0xA6, 0x5A, 0x26, 0xC1, 0xA5, 0xF1, 0xD3, 0x05, 0x67, 0x85, 0xA0, 0xB6, 0x65, 0x20, 0x9A, 0x09, 0x60, 0x86, 0x2B, 0x6C, 0x09, 0x52, 0xA8, 0x7C, 0x74, 0xD4, 0x7E, 0x2B, 0xB5, 0xCA, 0x08, 0x48, 0xAD, 0x3F, 0x0D, 0xBF, 0x99, 0xB4, 0xC9, 0x18, 0xEE, 0x10, 0x0D, 0x23, 0x46, 0xDE, 0x68, 0xAD, 0xBE, 0x77, 0x29, 0x94, 0x9E, 0x63, 0x55, 0x79, 0xF7, 0xC3, 0x9D, 0xD8, 0x4D, 0xDB, 0xB4, 0x21, 0xA6, 0x29, 0xFF, 0xDD, 0x03, 0xBD, 0xA7, 0x88, 0x48, 0xBD, 0xB3, 0xF8, 0x6B, 0x0A, 0xF5, 0xB5, 0x4D, 0x16, 0xA5, 0x16, 0x1E, 0x8E, 0x98, 0x03, 0x6B, 0xE3, 0x9B, 0x40, 0xF0, 0xB3, 0x08, 0x54, 0xA3, 0x5B, 0x78, 0xFF, 0xFF, 0x9E, 0xFC, 0x6F, 0xE5, 0xDA, 0x2B, 0xD9, 0xAD, 0xC3, 0x24, 0xBC, 0x31, 0xCD, 0x75, 0x39, 0xFC, 0x35, 0x7A, 0x4C, 0xA6, 0xE8, 0x14, 0xDC, 0x76, 0xB7, 0xFD, 0x74, 0x0C, 0x79, 0xF9, 0x34, 0x49, 0x2D, 0xFF, 0xF4, 0x53, 0xD3, 0x40, 0x68, 0x7D, 0xAB, 0x7C, 0x55, 0x0D, 0x2E, 0xBF, 0xFF, 0xEC, 0x6D, 0x1D, 0xBB, 0x2A, 0xAB, 0xE9, 0x32, 0x14, 0xEA, 0x43, 0x9E, 0xCF, 0xEF, 0x50, 0x5A, 0x80, 0x33, 0x16, 0xF4, 0x4B, 0xC7, 0x87, 0xE8, 0x2F, 0x03, 0x84, 0xCC, 0x66, 0x2C, 0x34, 0x04, 0x03, 0x41, 0x5A, 0xE3, 0xBF, 0x7C, 0xE3, 0xFE, 0x65, 0xB4, 0xEA, 0x43, 0x1D, 0xFF, 0x24, 0xD0, 0x85, 0xF0, 0xA0, 0x4F, 0x2D, 0xF7, 0xC8, 0xCF, 0x70, 0x34, 0xFF, 0x00, 0x84, 0x06, 0xA3, 0x65, 0x43, 0xB3, 0x82, 0x32, 0x7D, 0xC0, 0x79, 0x8C, 0x3B, 0x35, 0x1A, 0xD9, 0x97, 0xFC, 0xD4, 0xC1, 0xDB, 0xA0, 0x2B, 0x6B, 0x90, 0xEA, 0x06, 0x0C, 0x31, 0xD7, 0xBD, 0x75, 0x82, 0xFA, 0xF0, 0xB7, 0xF8, 0x54, 0x9C, 0xB9, 0x41, 0x88, 0x34, 0x41, 0x4D, 0x9D, 0x8F, 0x87, 0xB1, 0x63, 0x5C, 0xAB, 0xCE, 0xC6, 0x29, 0xB1, 0xDA, 0x39, 0xD6, 0x6D, 0x95, 0x73, 0xC1, 0x00, 0x5C, 0xD0, 0x5D, 0x0B, 0x52, 0xD3, 0xF8, 0x1C, 0xE1, 0xE9, 0x22, 0xEE, 0x6F, 0xF4, 0x3B, 0xE5, 0x96, 0xBF, 0x8D, 0xF2, 0xD9, 0x8B, 0x42, 0x39, 0x53, 0xEF, 0xDC, 0x8E, 0x92, 0x65, 0xC2, 0xDC, 0x54, 0xF6, 0x6A, 0x71, 0x9E, 0x29, 0xD0, 0x73, 0xD8, 0x0E, 0x02, 0x34, 0x31, 0x01, 0xAC, 0x69, 0xC1, 0xDB, 0xFC, 0xFF, 0xC5, 0x8E, 0x38, 0x87, 0xB1, 0x7C, 0x33, 0xA8, 0x29, 0xB4, 0x4B, 0xC5, 0x92, 0xCD, 0x1A, 0x05, 0xCC, 0x35, 0xD9, 0x9E, 0x2E, 0x98, 0x3D, 0x5D, 0x49, 0x7E, 0x6E, 0x3A, 0xBB, 0x27, 0x1B, 0x7B, 0x5F, 0xEF, 0xCE, 0xBE, 0x5A, 0x3F, 0x18, 0x68, 0x20, 0x0C, 0x86, 0xAC, 0x31, 0xCE, 0xC5, 0x86, 0x02, 0xF2, 0x85, 0xB8, 0x55, 0xDA, 0x00, 0x35, 0x9E, 0x2A, 0x6A, 0x5E, 0x78, 0x02, 0x00, 0x9F, 0x18, 0x3C, 0x82, 0x52, 0x8A, 0x07, 0x98, 0x5B, 0xED, 0x39, 0x2F, 0xE1, 0x56, 0xDE, 0x07, 0x0C, 0x70, 0x81, 0xED, 0x3F, 0x1F, 0x68, 0x27, 0x91, 0x7B, 0xBC, 0x28, 0x3F, 0xB0, 0x03, 0x80, 0xCB, 0xF4, 0x10, 0x2A, 0x0C, 0x4E, 0x0B, 0x52, 0x01, 0x50, 0x53, 0xFE, 0x30, 0xEE, 0x58, 0x01, 0xF7, 0x23, 0x34, 0x37, 0x01, 0xB0, 0xDD, 0xB8, 0xDA, 0x2F, 0x55, 0x69, 0x1A, 0x26, 0x68, 0x01, 0x2F, 0x55, 0xB4, 0xB5, 0x1F, 0x1F, 0x79, 0x7F, 0xF6, 0x76, 0x35, 0x63, 0x78, 0x66, 0x37, 0xD0, 0x3E, 0x10, 0xC4, 0x0C, 0x24, 0x09, 0x80, 0xE0, 0x55, 0x14, 0xC0, 0x62, 0x58, 0xF1, 0xAF, 0x80, 0xA2, 0xCA, 0xD8, 0x14, 0x42, 0xB8, 0x08, 0x54, 0xC4, 0x59, 0x73, 0xF9, 0xDF, 0x75, 0x65, 0x11, 0x80, 0x3D, 0x4C, 0x55, 0xBB, 0x70, 0xE7, 0x35, 0x7B, 0xCD, 0xDF, 0xB8, 0x43, 0x96, 0xC8, 0xB0, 0x63, 0x4E, 0xCA, 0x00, 0x1A, 0xFE, 0x72, 0xE8, 0x14, 0xD3, 0xFD, 0x5E, 0x98, 0xB5, 0xA0, 0x83, 0xB0, 0xE3, 0xBD, 0x03, 0x7F, 0x01, 0xEE, 0xD7, 0x34, 0x5B, 0xDF, 0x9E, 0xF4, 0x00, 0x4D, 0x5B, 0x90, 0x33, 0x53, 0x83, 0x48, 0x2B, 0x4F, 0x47, 0xE6, 0x90, 0x50, 0xEA, 0xD7, 0x7E, 0xBF, 0xC0, 0x51, 0x2D, 0xFB, 0x74, 0x89, 0x7F, 0x98, 0x5E, 0xDF, 0x4E, 0x86, 0x95, 0x18, 0x4F, 0x27, 0x78, 0x0C, 0x1F, 0xC2, 0x02, 0x47, 0x3E, 0x1E, 0x23, 0x02, 0x2C, 0x83, 0x0D, 0xCE, 0x4B, 0x02, 0x2C, 0x43, 0xAB, 0xE2, 0x2E, 0x2E, 0xCF, 0x75, 0x51, 0x27, 0x51, 0xE0, 0xEB, 0x05, 0xC7, 0x89, 0xE6, 0x6F, 0x2C, 0xC3, 0x45, 0x85, 0x8D, 0xAC, 0xE3, 0xC1, 0xEB, 0x26, 0xA1, 0x6C, 0x5D, 0x6F, 0xF5, 0xFF, 0x31, 0x98, 0xD3, 0xA4, 0x6F, 0x3A, 0xE9, 0xDA, 0xF5, 0xC3, 0xF7, 0xE4, 0x20, 0x72, 0x5D, 0xAD, 0xDC, 0xEA, 0x79, 0x68, 0x20, 0xAA, 0xD1, 0x2E, 0x06, 0xB2, 0x1E, 0xF4, 0xB1, 0xFC, 0x77, 0x09, 0x8B, 0xFF, 0xBC, 0xC8, 0x0C, 0x3A, 0x49, 0xA6, 0x66, 0xC1, 0x5F, 0x9B, 0x00, 0x16, 0x4B, 0x2C, 0x11, 0x9F, 0xD3, 0xF6, 0x43, 0xD6, 0x95, 0x54, 0x88, 0xC8, 0xEF, 0xFC, 0xB7, 0x91, 0x62, 0x5D, 0x59, 0x58, 0x1E, 0x66, 0x02, 0xFB, 0x7E, 0x47, 0x3A, 0x61, 0xD1, 0xDF, 0x08, 0xC8, 0x97, 0x25, 0x8D, 0xFB, 0x5F, 0x4B, 0x12, 0x54, 0xA3, 0x11, 0x71, 0x42, 0xF5, 0x6B, 0x08, 0xB3, 0x6D, 0x17, 0xF1, 0x45, 0x57, 0xD5, 0xB5, 0x13, 0x63, 0xCA, 0x85, 0x6F, 0xEF, 0xF3, 0x17, 0xB4, 0x48, 0xC1, 0x4A, 0xE8, 0xB9, 0xB6, 0x0A, 0x01, 0x98, 0xD2, 0x75, 0x46, 0xD2, 0x0E, 0x30, 0xD7, 0xFC, 0xFD, 0x9B, 0x74, 0x52, 0xD8, 0x1C, 0x7F, 0xB2, 0x9A, 0xFB, 0x40, 0xE3, 0x89, 0xBF, 0xE2, 0xF9, 0xB9, 0x7C, 0x4B, 0xFF, 0x3B, 0x0B, 0xA2, 0x28, 0x78, 0x4B, 0x4B, 0xB4, 0x5E, 0xEE, 0x13, 0x3A, 0x14, 0x43, 0xF4, 0x53, 0x3B, 0xC9, 0x70, 0x33, 0x8B, 0x4A, 0xFE, 0xF9, 0x6E, 0xAE, 0xD0, 0x28, 0xA0, 0xAE, 0x69, 0xDF, 0x80, 0x45, 0xC9, 0x63, 0x8B, 0x23, 0xE0, 0x40, 0x6B, 0x71, 0xB9, 0x0A, 0xF3, 0xC5, 0x5B, 0x2B, 0xD1, 0x49, 0x0D, 0x45, 0xF7, 0x79, 0x80, 0x2A, 0xF8, 0x47, 0xAD, 0xBA, 0xF7, 0xC3, 0x86, 0xCC, 0xA5, 0xE9, 0xC4, 0x28, 0x24, 0xEF, 0xDF, 0xAB, 0x7B, 0x73, 0x26, 0xFB, 0x48, 0xD0, 0xD3, 0xDD, 0x74, 0x34, 0x5C, 0x6C, 0xF0, 0x19, 0x40, 0x32, 0x5A, 0x87, 0x2D, 0x1A, 0x42, 0x1F, 0x44, 0x72, 0x26, 0xCF, 0x01, 0x47, 0x4A, 0x5B, 0x8E, 0xE2, 0x64, 0x0D, 0xB3, 0xBA, 0x72, 0xFF, 0xD1, 0xEC, 0xC9, 0x00, 0x16, 0x02, 0x93, 0x05, 0x69, 0x58, 0x78, 0x58, 0x8B, 0xBF, 0x2A, 0x03, 0x1F, 0xFC, 0xF9, 0xC8, 0x01, 0xCB, 0xBA, 0xD8, 0x27, 0x92, 0xFD, 0xED, 0x6E, 0xE7, 0xB0, 0x82, 0xD5, 0xF1, 0x35, 0x99, 0x29, 0x30, 0x11, 0x5E, 0xB9, 0x18, 0x58, 0xB6, 0x7D, 0x1D, 0xBB, 0x8B, 0x44, 0x98, 0x8E, 0x8F, 0x1F, 0x70, 0xA9, 0x83, 0x13, 0xB3, 0x83, 0xB4, 0xE4, 0xD6, 0x40, 0x51, 0xA9, 0x38, 0x08, 0xFB, 0x62, 0x97, 0x7E, 0x41, 0xFE, 0xA3, 0x4D, 0x1C, 0x06, 0xB4, 0x11, 0x2B, 0xE2, 0x72, 0x23, 0x8B, 0x86, 0xAB, 0xDD, 0xB5, 0xD1, 0x48, 0x09, 0x03, 0xA4, 0xB9, 0xFC, 0xDC, 0xF8, 0x1F, 0x20, 0xEF, 0x4E, 0xE8, 0xB3, 0x66, 0x3A, 0x3B, 0x2A, 0xFC, 0xAF, 0xEA, 0x38, 0xAC, 0xE3, 0x22, 0x35, 0xF7, 0x92, 0xDB, 0x06, 0xB4, 0x57, 0xE0, 0xE3, 0x5D, 0x5E, 0x31, 0x36, 0xCC, 0x2C, 0x3F, 0xEA, 0xD8, 0x0E, 0xD5, 0x08, 0x7A, 0xBD, 0xFF, 0x5F, 0x3E, 0x88, 0x0B, 0xEC, 0xDB, 0xF1, 0xC4, 0x48, 0xC2, 0x23, 0x2E, 0xDF, 0x3B, 0x94, 0x1D, 0x52, 0x3A, 0x97, 0x2A, 0x43, 0x4F, 0x90, 0x2C, 0xBC, 0x67, 0xCF, 0x39, 0x80, 0x9E, 0x73, 0x27, 0xD3, 0xC9, 0xC6, 0x92, 0x17, 0x24, 0xCA, 0xF4, 0x1A, 0x98, 0x8A, 0x88, 0xB0, 0xB6, 0x80, 0xBE, 0x74, 0x5C, 0x38, 0xA0, 0xD2, 0x38, 0xD8, 0x07, 0x15, 0xBE, 0xBE, 0x74, 0x01, 0x14, 0xBB, 0xD4, 0x45, 0x88, 0x4A, 0x03, 0xE7, 0xAC, 0x2F, 0x7F, 0x0C, 0x66, 0xB6, 0x1C, 0x03, 0x67, 0xD5, 0x32, 0x60, 0xEF, 0x4B, 0xA1, 0xC7, 0x84, 0x46, 0x97, 0xE2, 0x1B, 0x1E, 0xEA, 0xBD, 0xDA, 0x2C, 0x45, 0x2F, 0x3B, 0x38, 0x58, 0xCA, 0x4A, 0xCB, 0x7B, 0x43, 0x5B, 0xFC, 0xDC, 0x05, 0x91, 0x01, 0x4E, 0x77, 0x55, 0x20, 0x7B, 0x97, 0x1A, 0x02, 0x6B, 0xF5, 0xCE, 0xD1, 0xA0, 0xD7, 0x6F, 0xEE, 0x8F, 0x29, 0xC5, 0xDD, 0x22, 0x02, 0x84, 0xAA, 0x24, 0xA8, 0xD5, 0x68, 0xE9, 0x67, 0x11, 0x96, 0x8B, 0x75, 0x4C, 0xF4, 0x58, 0xD8, 0xFB, 0x02, 0xD7, 0x85, 0xFD, 0x57, 0xA8, 0xE4, 0xEB, 0x13, 0x8E, 0x89, 0xE8, 0x69, 0xD5, 0xBD, 0x59, 0x77, 0x8E, 0xDE, 0xFF, 0x5D, 0xD7, 0xD9, 0xDC, 0x64, 0x87, 0x31, 0x32, 0xA1, 0xD5, 0xD6, 0xC9, 0x25, 0xD7, 0x6F, 0xE1, 0xF9, 0xD9, 0x00, 0x08, 0x88, 0xEE, 0xA8, 0xAC, 0xBC, 0x3E, 0xBE, 0x63, 0x82, 0x8E, 0xA3, 0xB5, 0xCC, 0xE2, 0x78, 0x73, 0xE9, 0x6E, 0x76, 0xED, 0x4F, 0xEF, 0x27, 0xFC, 0x44, 0xB6, 0xEB, 0xEB, 0xF7, 0xFB, 0x43, 0x97, 0x97, 0xBB, 0x90, 0x1E, 0x6A, 0x7A, 0x07, 0x07, 0x97, 0x40, 0x9D, 0x5F, 0xCD, 0x02, 0x49, 0x88, 0x5B, 0xDB, 0x33, 0xF5, 0xEB, 0x1E, 0xE3, 0x57, 0x0D, 0x10, 0xAA, 0xC1, 0x95, 0x8C, 0x56, 0x7A, 0xE6, 0x7A, 0x21, 0xF5, 0xEC, 0xEA, 0xAC, 0x48, 0xCC, 0x59, 0x4C, 0xF7, 0x2B, 0x5A, 0x25, 0xE0, 0x19, 0x0E, 0x56, 0x3F, 0x3F, 0x40, 0xB3, 0x83, 0xB2, 0xB1, 0xFC, 0xF1, 0xAB, 0x22, 0x86, 0x92, 0xEC, 0x86, 0xF9, 0x97, 0x77, 0x31, 0x62, 0x64, 0x05, 0x49, 0x93, 0x37, 0x88, 0x5A, 0xC8, 0x04, 0x20, 0x76, 0x1F, 0xE4, 0xDE, 0x35, 0x0B, 0x75, 0xBE, 0x7F, 0x1A, 0x6C, 0xC3, 0xE7, 0xFA, 0xB7, 0x47, 0xF9, 0xD8, 0x50, 0x02, 0x91, 0x94, 0x43, 0x7D, 0x1D, 0x03, 0xED, 0x3E, 0x4B, 0xBE, 0xAE, 0xB7, 0xB4, 0x05, 0xF7, 0xDA, 0xBF, 0x28, 0x5F, 0xD9, 0x76, 0xD9, 0xDA, 0x48, 0x52, 0x05, 0xDD, 0xCD, 0xD0, 0x02, 0xA9, 0x4B, 0xF8, 0xAF, 0x01, 0x41, 0xE3, 0x36, 0xB6, 0x53, 0x80, 0x17, 0x77, 0x50, 0x93, 0x74, 0xE9, 0xC8, 0xE0, 0x4F, 0x9C, 0xCD, 0xAD, 0x6B, 0x3F, 0x2D, 0x09, 0xE3, 0x6F, 0xBF, 0x73, 0x8F, 0xC6, 0x88, 0xA5, 0xA7, 0xFD, 0xD6, 0xCF, 0xB8, 0xF8, 0x01, 0x46, 0xB8, 0x04, 0x58, 0x8B, 0x25, 0xDD, 0x20, 0xB6, 0xC7, 0x5B, 0x13, 0x95, 0x45, 0x5D, 0x5D, 0x9E, 0x22, 0xA2, 0xAF, 0x67, 0x5C, 0xA2, 0xE8, 0x1F, 0x24, 0xEB, 0x0C, 0x72, 0xE2, 0xB3, 0x8C, 0x91, 0x83, 0xED, 0xDF, 0x31, 0x9C, 0x6D, 0x09, 0xE0, 0x65, 0x6B, 0x71, 0xBE, 0xFE, 0x8E, 0x87, 0x46, 0x64, 0x6B, 0xFC, 0x77, 0xD5, 0x05, 0x63, 0xE5, 0x86, 0x4B, 0x73, 0xA2, 0x64, 0x04, 0x51, 0x40, 0xD8, 0x54, 0xD5, 0x00, 0x39, 0x51, 0x63, 0x93, 0xD0, 0x35, 0xD2, 0xF4, 0xE7, 0x86, 0x94, 0xE6, 0xFE, 0xD3, 0x28, 0xEC, 0x69, 0xBC, 0xB4, 0x8F, 0xE5, 0xE4, 0x39, 0xFF, 0xF4, 0xB9, 0x91, 0xD2, 0x60, 0xBE, 0xDE, 0xEA, 0xF9, 0x61, 0x22, 0x26, 0x2B, 0xFD, 0xFF, 0xCF, 0x07, 0xEE, 0x32, 0x69, 0xF6, 0xB8, 0x7D, 0xEF, 0x07, 0xBB, 0xA8, 0xAB, 0x13, 0x9C, 0x7E, 0x80, 0x90, 0x08, 0xEF, 0x8E, 0x0E, 0x25, 0x8A, 0xF4, 0x7F, 0xE0, 0xC4, 0x00, 0x33, 0x15, 0x70, 0x19, 0x20, 0x66, 0x95, 0x68, 0x3E, 0x95, 0x6D, 0xB9, 0x86, 0xFB, 0x1B, 0xEB, 0x88, 0x6D, 0xD6, 0x4E, 0xD7, 0x52, 0x00, 0x3D, 0xBC, 0xAE, 0x6A, 0xCD, 0xA5, 0x9E, 0x3D, 0xFE, 0x19, 0x7F, 0x5F, 0x68, 0x06, 0x9B, 0x33, 0xA7, 0xEB, 0xA6, 0x50, 0xA9, 0xB9, 0x74, 0xE1, 0x5A, 0x17, 0xB4, 0xBF, 0xF1, 0xBA, 0x80, 0x88, 0xDC, 0xF7, 0xA5, 0x8A, 0x1F, 0xEC, 0x55, 0x3D, 0x13, 0xE5, 0xF4, 0xF9, 0xC3, 0xC9, 0xF8, 0xED, 0x0F, 0x4F, 0x66, 0x87, 0xD2, 0x43, 0x8F, 0x39, 0xD0, 0x62, 0xDB, 0x33, 0xD5, 0xB9, 0x41, 0xF4, 0x08, 0x87, 0x89, 0xAF, 0x2A, 0x15, 0xDC, 0xF2, 0x01, 0xEC, 0x69, 0x68, 0x76, 0xFA, 0xD8, 0x1B, 0xAA, 0xCB, 0xF9, 0xBB, 0xA8, 0xC6, 0xA0, 0xAE, 0xF5, 0xAF, 0x44, 0xC5, 0x0B, 0x58, 0x6F, 0x81, 0x5F, 0x25, 0x94, 0x1C, 0x6C, 0xF0, 0x4B, 0x23, 0xFE, 0xEE, 0x02, 0x95, 0x13, 0x83, 0xDF, 0x71, 0x31, 0xDF, 0xF9, 0x6F, 0x3A, 0xF0, 0xD3, 0x00, 0xBC, 0xCA, 0x60, 0x7B, 0xC4, 0x40, 0xE7, 0x48, 0xFC, 0x81, 0x0F, 0xC6, 0x27, 0xA3, 0x2F, 0xFF, 0xF6, 0x5A, 0xC5, 0x16, 0xD5, 0x40, 0x6E, 0x4E, 0xF7, 0x48, 0xD3, 0x46, 0xB1, 0x0E, 0x5F, 0x1F, 0xDB, 0x06, 0xCD, 0xEA, 0x45, 0x8A, 0x6D, 0xB1, 0x23, 0xE1, 0x0D, 0xFF, 0xFB, 0xCF, 0x9A, 0x15, 0xAE, 0x45, 0xF6, 0xA0, 0x60, 0x74, 0x20, 0x08, 0x14, 0xD1, 0x43, 0x33, 0xFD, 0x58, 0x72, 0x82, 0x6F, 0xD8, 0x0D, 0x5A, 0x02, 0x11, 0xB3, 0x24, 0x1C, 0xB1, 0x09, 0xC3, 0x50, 0xE9, 0xC0, 0x81, 0xCB, 0x12, 0x2A, 0xB3, 0x3A, 0xAE, 0xEE, 0xF3, 0xE0, 0x0E, 0xEF, 0xE2, 0xB4, 0xDF, 0x09, 0x59, 0xF4, 0x79, 0x96, 0x00, 0xC9, 0x10, 0x6D, 0xB8, 0xDE, 0xAE, 0x04, 0x14, 0x85, 0x9E, 0xB5, 0xE2, 0x6E, 0xC2, 0xF1, 0xAD, 0xD1, 0xE9, 0x55, 0xBC, 0x2F, 0x7F, 0xE8, 0x25, 0xC7, 0xE5, 0x10, 0xE3, 0x64, 0xFD, 0xFC, 0x43, 0xD3, 0x4A, 0xBC, 0x80, 0x4D, 0x30, 0x56, 0xEA, 0x30, 0x3E, 0x52, 0x29, 0xD8, 0xCE, 0x56, 0xBE, 0xE7, 0x1B, 0x61, 0xEF, 0xB4, 0x31, 0xBC, 0xC8, 0x80, 0x0B, 0xEF, 0x94, 0xF0, 0x51, 0x26, 0x38, 0x0B, 0x87, 0xAF, 0xEB, 0xA6, 0xD2, 0x24, 0x40, 0x12, 0xF7, 0x9B, 0x92, 0x3E, 0x37, 0x9B, 0x63, 0x5C, 0xC0, 0xE8, 0xA1, 0x40, 0x02, 0xE1, 0x52, 0x0B, 0xE1, 0x24, 0xC5, 0x3C, 0x7C, 0x15, 0x8A, 0x06, 0xAC, 0x00, 0x75, 0x85, 0x7B, 0xC7, 0xA9, 0x9F, 0xE5, 0x3C, 0x1F, 0x25, 0xDD, 0x0C, 0x1C, 0x0B, 0x0C, 0xFC, 0x65, 0x65, 0x86, 0x64, 0x4D, 0x51, 0xF4, 0xE1, 0xCB, 0xF4, 0x61, 0x04, 0xF9, 0xFD, 0x5F, 0x39, 0x9C, 0x02, 0x11, 0xAA, 0x32, 0x29, 0x97, 0x00, 0xE8, 0x18, 0xBC, 0xEF, 0x44, 0xA8, 0x5F, 0x2C, 0xB6, 0x5F, 0x03, 0x23, 0x11, 0xA9, 0x47, 0x1C, 0xF6, 0xB8, 0x88, 0x41, 0x7A, 0x2D, 0x8A, 0x85, 0xE6, 0xD2, 0xD3, 0x15, 0x86, 0x97, 0x9E, 0x9B, 0x2D, 0x02, 0x1C, 0x24, 0x4B, 0x3A, 0x98, 0x20, 0x29, 0x05, 0x89, 0xF7, 0xF4, 0x82, 0xB1, 0xE8, 0xA7, 0x4D, 0x47, 0x18, 0x17, 0x10, 0xB9, 0x7D, 0x38, 0x09, 0x8D, 0xDB, 0xAB, 0x64, 0xBB, 0x41, 0x09, 0xBB, 0xAB, 0x26, 0xA0, 0xEA, 0xC2, 0x3C, 0xDF, 0xE9, 0xAF, 0x0A, 0xF3, 0x7A, 0x03, 0xA1, 0x97, 0x05, 0x20, 0x88, 0x01, 0xD0, 0x03, 0x05, 0x10, 0xE0, 0x68, 0x7A, 0xFC, 0x59, 0xF3, 0x9E, 0x96, 0xEE, 0x94, 0x36, 0x37, 0xC3, 0x3C, 0x60, 0x74, 0xF6, 0x77, 0x9E, 0x85, 0x2A, 0x44, 0x2A, 0x07, 0x93, 0x84, 0xD4, 0xF4, 0xE3, 0xD6, 0x9C, 0x71, 0x06, 0x81, 0x80, 0x5D, 0x48, 0x8E, 0x9F, 0x19, 0xD6, 0xF8, 0xFE, 0x8F, 0x51, 0x81, 0xCA, 0x75, 0x67, 0xEA, 0xA7, 0xAD, 0xFC, 0xA1, 0x81, 0x93, 0x3B, 0x14, 0xA4, 0xFC, 0x08, 0x37, 0x23, 0xDA, 0xB3, 0x73, 0x03, 0xCC, 0xC2, 0x32, 0x97, 0xD7, 0x27, 0x8D, 0x73, 0xB1, 0x28, 0x17, 0x6D, 0x59, 0x12, 0xB4, 0x1F, 0xEA, 0xE3, 0x79, 0xAB, 0xBE, 0xC2, 0x67, 0xB4, 0x3F, 0xDD, 0xB9, 0xD3, 0x00, 0x5D, 0x93, 0xA0, 0x72, 0x1E, 0x20, 0xFF, 0xBF, 0x9F, 0x6E, 0x8D, 0x16, 0xF8, 0x20, 0x01, 0x51, 0x2C, 0x42, 0x1C, 0xF2, 0xD7, 0x9D, 0x20, 0xBD, 0x3C, 0x67, 0x02, 0xE9, 0xA7, 0x0C, 0xC0, 0xA4, 0x0E, 0x14, 0xDE, 0x7D, 0x9C, 0x67, 0xA0, 0x01, 0x61, 0x65, 0x9D, 0x01, 0x9E, 0x4C, 0x0A, 0x6D, 0x85, 0x51, 0xA0, 0xFC, 0xB0, 0xF4, 0x0E, 0x94, 0x20, 0x1B, 0x48, 0x69, 0x8E, 0x65, 0x8B, 0xCC, 0x46, 0x29, 0x0D, 0x61, 0xF1, 0xD8, 0x0E, 0x8F, 0x61, 0xA4, 0x0F, 0x54, 0x03, 0xE9, 0x50, 0x56, 0x50, 0xB1, 0x07, 0x59, 0xA9, 0x9E, 0x0D, 0x3E, 0xC4, 0x1C, 0x07, 0xFD, 0x12, 0x03, 0x3C, 0x31, 0x97, 0xD5, 0xB5, 0xAC, 0xB1, 0xB6, 0x7B, 0xFD, 0xF5, 0x2F, 0x8C, 0x01, 0x5D, 0xD0, 0x56, 0xAA, 0xDF, 0xC8, 0xA9, 0xBC, 0xAF, 0xFA, 0x76, 0xA5, 0x70, 0x1A, 0xEE, 0xA9, 0x51, 0xAC, 0x03, 0xE0, 0xD9, 0xE3, 0xE9, 0x84, 0x67, 0x36, 0x52, 0x9E, 0xF6, 0x94, 0x9E, 0x33, 0xB8, 0x40, 0x60, 0x00, 0x27, 0xCC, 0x12, 0x91, 0x92, 0x93, 0x81, 0xA3, 0xC5, 0x2F, 0x02, 0xF0, 0x70, 0xF1, 0xD4, 0x56, 0x64, 0x2A, 0x0A, 0xF2, 0xD9, 0x63, 0x8A, 0x20, 0x83, 0xE3, 0x59, 0x1B, 0x64, 0x58, 0xC2, 0xED, 0xAE, 0x82, 0x1F, 0x7E, 0xBD, 0x8A, 0x76, 0xA3, 0x18, 0x15, 0x91, 0x3D, 0xD5, 0x58, 0xEE, 0xAD, 0xA8, 0x06, 0xC0, 0xFA, 0xDC, 0x9B, 0xAB, 0x10, 0xB9, 0x1C, 0x22, 0x7B, 0xB7, 0xD1, 0x2D, 0xA2, 0x7D, 0x18, 0x8C, 0x08, 0x96, 0xFD, 0xAA, 0x52, 0xC4, 0xF7, 0x09, 0x7F, 0xBB, 0xC3, 0x23, 0x5F, 0x5B, 0xEA, 0x36, 0x7E, 0xF7, 0xFC, 0x58, 0xB5, 0x5C, 0x4E, 0xD0, 0x3E, 0x7F, 0xDB, 0xBE, 0xFA, 0x7F, 0xBF, 0xC0, 0xE0, 0x00, 0x51, 0x80, 0x0E, 0x15, 0x84, 0x3E, 0xAC, 0x0E, 0xD2, 0x1C, 0x5A, 0x03, 0xA1, 0xCE, 0xF6, 0x7F, 0xE3, 0xD1, 0x62, 0xA7, 0x0F, 0x50, 0x01, 0xED, 0x8E, 0xC8, 0x6D, 0xDC, 0x35, 0x26, 0xC3, 0x86, 0x4A, 0xE0, 0x63, 0x0E, 0x2B, 0x3F, 0xC1, 0x19, 0x78, 0x32, 0x0A, 0x15, 0xAB, 0xAB, 0xEF, 0x7C, 0x6C, 0xDC, 0x8A, 0x9A, 0x50, 0x9F, 0x3D, 0xE0, 0xBD, 0xF8, 0xDF, 0xC4, 0x70, 0xB5, 0x00, 0xF5, 0x27, 0xAE, 0x55, 0x4E, 0x88, 0x23, 0x01, 0x96, 0xE3, 0xCE, 0x9F, 0xFB, 0xB4, 0x22, 0x63, 0x8E, 0xAB, 0x49, 0xFF, 0xC1, 0x9A, 0xB2, 0x2D, 0x5C, 0x37, 0xE1, 0x09, 0x88, 0x39, 0x1F, 0x60, 0xA0, 0x14, 0x4F, 0x78, 0x0D, 0x1D, 0x48, 0x79, 0xF1, 0x0F, 0x7B, 0x09, 0x15, 0x10, 0x61, 0x6D, 0xCB, 0x89, 0x83, 0x06, 0x10, 0x37, 0x5B, 0x49, 0xDF, 0x93, 0x91, 0x55, 0xC3, 0x18, 0xBB, 0xBB, 0xF7, 0x5C, 0x32, 0x61, 0xA1, 0x58, 0x6E, 0xB3, 0x7D, 0x71, 0xD7, 0xF1, 0x25, 0x8A, 0x43, 0x6B, 0x49, 0xF9, 0x9E, 0x0D, 0x12, 0x96, 0x0C, 0x2B, 0xF7, 0xD0, 0x79, 0xA8, 0xD8, 0x5E, 0xCA, 0x3E, 0x12, 0xFF, 0x76, 0x32, 0x80, 0xA1, 0x8F, 0xD0, 0xBF, 0x1F, 0xF4, 0x01, 0x78, 0x9F, 0xEE, 0x0E, 0x49, 0xB8, 0xD3, 0x92, 0x85, 0xD4, 0x8C, 0x0E, 0x19, 0xBD, 0x94, 0x67, 0xAD, 0xC2, 0x80, 0x70, 0x05, 0x04, 0x08, 0x01, 0xA1, 0xDE, 0x56, 0x94, 0x40, 0x30, 0x5C, 0x95, 0x51, 0x83, 0xE5, 0xBD, 0x3D, 0xEA, 0x55, 0x8D, 0x1D, 0x1B, 0x3C, 0x71, 0x63, 0xF2, 0xC7, 0xF0, 0x05, 0x82, 0xB8, 0xBC, 0x5D, 0xDE, 0xCB, 0x7C, 0x99, 0xC0, 0x47, 0xDF, 0xE6, 0x96, 0xC9, 0x8F, 0x7F, 0x97, 0x80, 0x34, 0x3E, 0xB5, 0x71, 0x80, 0xCB, 0x9D, 0xF7, 0xC4, 0xEB, 0x75, 0xD6, 0x38, 0xD9, 0x29, 0xE6, 0x4B, 0xD0, 0xA2, 0x0D, 0x8D, 0xB3, 0x0B, 0x2A, 0xE4, 0xF4, 0x0E, 0x42, 0x21, 0xFB, 0x49, 0x65, 0x21, 0x9D, 0x54, 0x0D, 0x92, 0xE3, 0x7E, 0x24, 0xCB, 0x5A, 0x03, 0x3B, 0x25, 0x58, 0xA1, 0x7E, 0xFC, 0x1A, 0x11, 0x50, 0x64, 0x4B, 0x8F, 0xAC, 0x31, 0x64, 0xB8, 0x16, 0x41, 0x5A, 0x3A, 0xF2, 0x70, 0x63, 0xAB, 0x89, 0x04, 0x15, 0x5D, 0x2E, 0x82, 0xEF, 0x25, 0xBC, 0xFD, 0xE4, 0x40, 0x97, 0x6C, 0x4A, 0x6F, 0xD4, 0x3E, 0xDD, 0x2C, 0x1F, 0x8A, 0xB8, 0x00, 0x04, 0x00, 0x5F, 0xD8, 0x18, 0x91, 0xB5, 0xBC, 0xD5, 0xD7, 0xFD, 0xCE, 0x48, 0xF4, 0x86, 0xFC, 0x61, 0x4A, 0x93, 0x77, 0xFB, 0x16, 0x3C, 0x40, 0xCF, 0xCB, 0xD7, 0xCE, 0x0D, 0x76, 0x11, 0xDC, 0xF8, 0x72, 0xD1, 0xAF, 0x7E, 0x07, 0xED, 0xAA, 0x0C, 0x02, 0x09, 0x0A, 0x81, 0x81, 0x8A, 0x0E, 0xA7, 0x80, 0xEE, 0x2F, 0xED, 0x4C, 0x60, 0x48, 0x14, 0xD1, 0xB0, 0x73, 0x15, 0x7F, 0x3E, 0xE7, 0xB5, 0x62, 0x00, 0x17, 0xF9, 0x88, 0xF2, 0x00, 0xDA, 0xEE, 0xB4, 0x0F, 0x09, 0x56, 0x35, 0xCE, 0xC2, 0x66, 0xE8, 0x00, 0x0A, 0x55, 0x0F, 0xFE, 0xDB, 0x3E, 0x14, 0x3A, 0xE1, 0xFB, 0x97, 0x8F, 0xD7, 0xF4, 0xE3, 0x40, 0x10, 0x91, 0x32, 0xF5, 0x76, 0xCA, 0xC0, 0x00, 0x40, 0x1B, 0x87, 0xDB, 0x9B, 0xE8, 0xA9, 0x91, 0x24, 0x30, 0x28, 0x3B, 0x8C, 0x3C, 0x85, 0x31, 0x5F, 0x57, 0x8A, 0x1A, 0x8E, 0xF2, 0x6A, 0x7E, 0x07, 0x8E, 0xC2, 0x58, 0xEF, 0x08, 0xB0, 0xE7, 0x0A, 0x8B, 0x08, 0x29, 0x8C, 0x9D, 0xFD, 0x9D, 0x9B, 0x34, 0x97, 0xE2, 0x35, 0xD9, 0x5D, 0x8B, 0xD6, 0x46, 0x7C, 0x02, 0xFF, 0xF7, 0x3E, 0x90, 0x01, 0x8B, 0x96, 0xA7, 0x27, 0xE8, 0xB6, 0x19, 0x2D, 0x6D, 0x8E, 0xAC, 0x1D, 0x88, 0xC8, 0x57, 0xBA, 0x18, 0x1F, 0xD8, 0xF2, 0x9A, 0xEB, 0x65, 0x68, 0xD3, 0xA5, 0xAF, 0x21, 0xEC, 0xD1, 0x20, 0x39, 0xF3, 0xF5, 0x95, 0xBC, 0x1D, 0xDA, 0xDC, 0x8F, 0x31, 0x91, 0x76, 0xB9, 0xCC, 0xBB, 0x0F, 0x4E, 0xAC, 0x84, 0xA7, 0x66, 0x01, 0x04, 0x9B, 0x52, 0xD8, 0x87, 0x3C, 0x00, 0x56, 0xE1, 0xC8, 0x70, 0xEE, 0xE5, 0xBA, 0xB6, 0xD5, 0x79, 0x44, 0x0E, 0x77, 0x2C, 0x4E, 0xBB, 0x21, 0xE7, 0x67, 0x68, 0x43, 0xF5, 0x80, 0x10, 0x51, 0xF7, 0x4F, 0x81, 0xB2, 0x5F, 0xFD, 0x7C, 0x25, 0xD8, 0x7E, 0x6A, 0x8D, 0xD5, 0xAE, 0xC0, 0xF8, 0xC9, 0xD5, 0x47, 0x08, 0x28, 0xA1, 0xDD, 0x42, 0xC7, 0x60, 0x7E, 0x21, 0x7C, 0x3F, 0x58, 0x06, 0x40, 0x92, 0xF5, 0xB2, 0xCF, 0x5E, 0x3B, 0x38, 0x46, 0xB1, 0x3E, 0x0B, 0xF9, 0x1E, 0x02, 0x96, 0xD7, 0xB7, 0xD5, 0x1F, 0x00, 0x8A, 0x90, 0x94, 0x74, 0x9B, 0xB3, 0x14, 0x35, 0xF6, 0x3D, 0x73, 0xFF, 0xCE, 0x0C, 0x14, 0x4B, 0xD7, 0xAA, 0xA6, 0xDA, 0x30, 0x0A, 0xF6, 0x07, 0x9D, 0xDF, 0x6B, 0x13, 0x00, 0x23, 0x32, 0x75, 0xD0, 0xEA, 0xBF, 0x65, 0x66, 0x61, 0xAE, 0x2E, 0xFC, 0x06, 0x3C, 0x90, 0xC6, 0x7B, 0xDC, 0xF9, 0xF8, 0x65, 0xE0, 0xA4, 0xA2, 0xD4, 0xD5, 0x9D, 0x29, 0x7B, 0x01, 0xF4, 0x15, 0x35, 0xBE, 0x6A, 0x48, 0x09, 0x5C, 0x0F, 0x76, 0xC8, 0x23, 0x49, 0xCC, 0x3D, 0x75, 0xDA, 0x1A, 0x8A, 0x8B, 0xDF, 0x16, 0x0A, 0x8B, 0x27, 0x11, 0xEA, 0x00, 0x0B, 0x8B, 0xAE, 0x92, 0x8F, 0xD1, 0xB5, 0xC4, 0xC3, 0x31, 0x56, 0xD1, 0x9A, 0x54, 0x4A, 0x6F, 0xFA, 0xFD, 0x08, 0x75, 0x1A, 0xC5, 0x5E, 0xF6, 0x1B, 0x8C, 0xCD, 0x3F, 0x5B, 0xA5, 0x1B, 0x00, 0xEE, 0x98, 0x27, 0xA2, 0x6D, 0x84, 0x27, 0xFD, 0xF3, 0x2B, 0xE3, 0x28, 0x14, 0x15, 0x88, 0xFB, 0x5B, 0x97, 0xC4, 0x3C, 0x59, 0xDD, 0xFF, 0x9D, 0x8A, 0xCF, 0x33, 0xBE, 0xB7, 0xAE, 0x0B, 0xC7, 0xDB, 0xC3, 0xEB, 0x3B, 0x7F, 0x68, 0x48, 0xB7, 0xEA, 0xEA, 0x9B, 0x26, 0xD2, 0xEF, 0xC9, 0x43, 0xFC, 0x14, 0x20, 0xE2, 0xFF, 0xBB, 0x02, 0xDA, 0x54, 0x02, 0xC7, 0x77, 0x4A, 0x24, 0xE0, 0x89, 0x3D, 0x51, 0x90, 0xC1, 0xB6, 0x86, 0x83, 0x4F, 0xDB, 0x82, 0xB9, 0xB3, 0x34, 0x99, 0xCA, 0x6C, 0x3E, 0x45, 0x6A, 0x17, 0x4F, 0x0B, 0xFF, 0x10, 0xE8, 0x28, 0xA7, 0x75, 0x25, 0xDB, 0xE1, 0x4D, 0x98, 0x9C, 0xFB, 0x63, 0x84, 0x4A, 0x36, 0xC1, 0x0F, 0x84, 0x3B, 0xAC, 0xCC, 0x82, 0xC0, 0x2A, 0xAD, 0x15, 0x88, 0xF6, 0x59, 0x23, 0x1D, 0x5B, 0xB0, 0x24, 0xFF, 0xFE, 0xF7, 0x93, 0x8C, 0xF7, 0xC4, 0x09, 0x39, 0x6F, 0xFD, 0xBF, 0x3D, 0x09, 0x2F, 0x0F, 0xAF, 0xE7, 0xA4, 0xFE, 0xD2, 0x4C, 0x6D, 0xBA, 0x96, 0x57, 0x70, 0x5B, 0x83, 0xF4, 0x0F, 0x13, 0x30, 0xAD, 0xBD, 0xA9, 0x28, 0x84, 0x2D, 0xFD, 0xDE, 0xBF, 0xAE, 0xE6, 0xD4, 0x32, 0x58, 0x0E, 0x2A, 0xAD, 0x4B, 0x25, 0x24, 0x9E, 0x31, 0x3F, 0x64, 0x6A, 0x62, 0x79, 0x6B, 0xBB, 0x2A, 0x39, 0xD3, 0x4C, 0x63, 0xF4, 0xE9, 0xE6, 0x24, 0x8C, 0x43, 0x13, 0x0B, 0x51, 0x96, 0xB9, 0xDA, 0x74, 0x12, 0xF4, 0x5B, 0x1B, 0xB0, 0x3C, 0xA8, 0xBF, 0xBB, 0x8D, 0x19, 0xE2, 0x74, 0x58, 0xD7, 0xAF, 0x54, 0x05, 0xCD, 0x7D, 0x0F, 0x9C, 0xAA, 0x1F, 0xCF, 0x10, 0x7D, 0xEE, 0x0E, 0xF4, 0x38, 0x25, 0xA8, 0xF5, 0xFD, 0x7C, 0x2A, 0x1F, 0xD7, 0x3C, 0x86, 0x85, 0x99, 0xA3, 0x97, 0x71, 0x80, 0x48, 0x7C, 0x49, 0x2E, 0x7E, 0x19, 0x79, 0x48, 0x78, 0x22, 0xDC, 0xBD, 0xDD, 0xFF, 0x9A, 0xC9, 0x86, 0x9D, 0x3F, 0xFC, 0xF1, 0xD2, 0x9F, 0x3E, 0xBF, 0x5E, 0x14, 0x54, 0xE2, 0x79, 0xA2, 0x4D, 0x52, 0x4C, 0xC1, 0xD1, 0xE5, 0xC8, 0x14, 0xD3, 0xAE, 0x1B, 0xC8, 0x7E, 0xCA, 0x88, 0x6B, 0xA2, 0x1F, 0xED, 0x8A, 0x63, 0x85, 0xA5, 0x8C, 0x71, 0x0A, 0x4D, 0xBA, 0x7D, 0xBA, 0x96, 0x7F, 0x03, 0xAE, 0x69, 0xE2, 0xAF, 0xA9, 0x02, 0x63, 0xF4, 0x0C, 0x65, 0xBC, 0x24, 0xB7, 0xB3, 0x85, 0xF1, 0x79, 0x5D, 0xB2, 0x3E, 0xCF, 0x39, 0xC2, 0x91, 0x92, 0xE2, 0x02, 0x32, 0x16, 0x82, 0x6D, 0x18, 0xAE, 0xDC, 0xDF, 0xDD, 0xF2, 0xED, 0xA0, 0xEC, 0xFE, 0xF2, 0x50, 0xA3, 0x98, 0xBB, 0xA2, 0x31, 0x5B, 0xD3, 0x9A, 0x69, 0xD5, 0x5D, 0x90, 0x45, 0xD7, 0x43, 0x44, 0x4E, 0xD0, 0x26, 0x59, 0x9C, 0xF4, 0x6F, 0xE8, 0xC9, 0x54, 0x45, 0x5B, 0x07, 0x3D, 0xAF, 0x00, 0x23, 0xDE, 0x7D, 0xAA, 0xE8, 0xC2, 0x49, 0x5F, 0xAF, 0xB7, 0xB1, 0x53, 0x5D, 0xB0, 0x75, 0xF1, 0xCC, 0x72, 0xC0, 0xCF, 0x10, 0xAA, 0xAE, 0xEE, 0x11, 0xE6, 0xE1, 0xE2, 0x02, 0xA7, 0x64, 0xF1, 0x41, 0xCC, 0x8D, 0x57, 0xDE, 0x1D, 0x2D, 0x3D, 0x60, 0x5D, 0xB3, 0x25, 0x7E, 0x40, 0x5F, 0x89, 0x52, 0xD5, 0x3C, 0x53, 0xFF, 0x5B, 0xD1, 0x13, 0xA7, 0x90, 0x63, 0x92, 0xFA, 0x76, 0x2E, 0x61, 0x1E, 0xFB, 0x26, 0x6D, 0x29, 0xD8, 0x9D, 0x8B, 0xA3, 0x67, 0xAA, 0x3B, 0xC9, 0x58, 0x04, 0x8F, 0x43, 0x3F, 0xC5, 0xDC, 0x62, 0xC4, 0xEF, 0xAA, 0xE8, 0xF9, 0x05, 0x16, 0x29, 0xFE, 0x82, 0xD2, 0x6C, 0x00, 0x38, 0x1A, 0xEB, 0x2D, 0x7A, 0x7C, 0x6A, 0x57, 0x75, 0xEC, 0x66, 0x4D, 0x37, 0xBA, 0x8C, 0xD6, 0xE0, 0x8F, 0xEE, 0x6A, 0x53, 0xC2, 0x5F, 0x57, 0x27, 0xAD, 0xEA, 0x10, 0xE2, 0x15, 0x3D, 0x71, 0xE0, 0xFD, 0xF6, 0xA1, 0xB7, 0x8B, 0xDC, 0xE9, 0x5C, 0xF7, 0x6F, 0xA3, 0xF9, 0x4E, 0x9F, 0xBA, 0xE3, 0xD0, 0x39, 0xA5, 0x55, 0x3F, 0x9E, 0x9F, 0x04, 0xEA, 0x8E, 0xBB, 0xB4, 0xB7, 0x99, 0x18, 0x70, 0x51, 0xCF, 0x69, 0xAD, 0x9E, 0x16, 0x99, 0xF4, 0xC3, 0x98, 0xFE, 0xBA, 0x8E, 0x9E, 0xDE, 0xC5, 0xC8, 0x41, 0x7A, 0x9A, 0xD4, 0xD5, 0x51, 0x77, 0xA0, 0x44, 0x96, 0x2D, 0x4D, 0xA4, 0xE8, 0x0D, 0x9C, 0x8E, 0x5E, 0xF1, 0x87, 0x63, 0xE4, 0x5D, 0x54, 0x58, 0x06, 0xD1, 0xED, 0xEE, 0x2E, 0x6A, 0xDA, 0xDF, 0x84, 0x9F, 0xFD, 0x3E, 0xBC, 0x1B, 0xA2, 0xFB, 0xF6, 0xF0, 0x04, 0x88, 0xFE, 0xE3, 0x6D, 0x44, 0x97, 0xCE, 0xCD, 0xF8, 0xB2, 0xD5, 0xDC, 0xD0, 0xD7, 0xD4, 0x19, 0x45, 0x5B, 0x57, 0x5F, 0xD5, 0xDE, 0x4D, 0xE8, 0xBD, 0x6D, 0x2F, 0x43, 0xD3, 0xD2, 0xAF, 0xFC, 0x08, 0x3F, 0xD3, 0x5A, 0xFF, 0xD2, 0xA1, 0x32, 0x1A, 0xBB, 0x61, 0x57, 0xFE, 0x4A, 0x67, 0x4D, 0x61, 0xAD, 0xC9, 0x15, 0x3C, 0xD1, 0xDB, 0xB8, 0xA2, 0xEA, 0xAB, 0x51, 0xC9, 0x78, 0x76, 0xDC, 0xB3, 0x4B, 0xF2, 0x3A, 0xA0, 0xE5, 0x0A, 0x85, 0xA0, 0xBF, 0x33, 0xE0, 0x53, 0xFF, 0x75, 0x13, 0x72, 0xC6, 0x40, 0xDA, 0x8D, 0xD8, 0x74, 0xA1, 0xDF, 0x3C, 0xA9, 0x09, 0x0D, 0xF9, 0xC4, 0xD6, 0x1A, 0x0C, 0x8B, 0xE7, 0x9B, 0xAC, 0x8C, 0xCD, 0xB3, 0x46, 0x55, 0x3B, 0x4F, 0x71, 0x0E, 0xC5, 0x56, 0xB6, 0x5F, 0xBC, 0xE3, 0x2F, 0x85, 0xD1, 0xB7, 0x3C, 0x7A, 0xC6, 0xFF, 0x73, 0xF4, 0xE8, 0x28, 0x8F, 0xE7, 0x69, 0x0F, 0xA4, 0xBD, 0x9E, 0x6F, 0x15, 0xED, 0x61, 0x30, 0x80, 0x94, 0x1F, 0xD1, 0xB7, 0x35, 0x58, 0xA2, 0xAF, 0x1E, 0x9C, 0x11, 0xA1, 0x52, 0x7F, 0x52, 0x01, 0xF3, 0x7D, 0xEA, 0x39, 0x8E, 0xF2, 0x88, 0xB8, 0xD1, 0xF5, 0x4C, 0xE2, 0x9C, 0x18, 0x5F, 0x5D, 0xCF, 0xDC, 0x32, 0x07, 0x4F, 0xFA, 0x44, 0x85, 0x25, 0x2C, 0x29, 0x7E, 0xF0, 0xCC, 0x82, 0xF5, 0x00, 0xFC, 0xF7, 0xED, 0x4C, 0x69, 0x9A, 0xDD, 0xF7, 0x94, 0x69, 0x4A, 0x20, 0xC1, 0xEA, 0x55, 0x65, 0x5B, 0xCA, 0x7D, 0x82, 0x8A, 0xC4, 0x5D, 0xFB, 0xA4, 0x43, 0xE0, 0x06, 0x64, 0xD1, 0xDC, 0x8F, 0x9E, 0xB8, 0x0A, 0xB8, 0x6F, 0x30, 0x08, 0xE0, 0x0D, 0x9E, 0xF2, 0xFE, 0x50, 0x9B, 0xA2, 0x03, 0xF7, 0xF4, 0xE4, 0xD7, 0x99, 0x79, 0x6A, 0xB4, 0xAE, 0x6C, 0xAC, 0x41, 0x00, 0x89, 0x60, 0x17, 0x07, 0xF4, 0xFA, 0xAD, 0x01, 0xB3, 0x9B, 0xE1, 0xB3, 0x54, 0x9A, 0x0A, 0x2A, 0xB0, 0x27, 0x2D, 0x4D, 0xD1, 0x63, 0x25, 0x8F, 0x24, 0xA2, 0x3D, 0xF6, 0x00, 0x93, 0xDC, 0xBD, 0xBD, 0x97, 0x74, 0x31, 0xCD, 0x48, 0x1C, 0xA5, 0x41, 0xE2, 0x8A, 0xD3, 0x7E, 0x0D, 0x85, 0x33, 0x25, 0x0F, 0xEC, 0x0C, 0xAC, 0x73, 0x43, 0xE6, 0xFA, 0x75, 0xAF, 0x80, 0x45, 0xCF, 0xB0, 0x1C, 0x4A, 0x55, 0x8C, 0x43, 0x6A, 0xC3, 0x34, 0xE7, 0xF6, 0xEF, 0x80, 0x29, 0x5C, 0xC8, 0x54, 0x03, 0x3F, 0x47, 0x38, 0x24, 0x02, 0xC1, 0xC3, 0x20, 0x00, 0x20, 0x00, 0x1F, 0x2B, 0x38, 0x10, 0x02, 0x26, 0xB3, 0x4C, 0x10, 0x29, 0x82, 0xD0, 0xE0, 0x1C, 0x36, 0xD8, 0x30, 0x85, 0x7D, 0xB0, 0x35, 0x34, 0x15, 0xF1, 0xE3, 0x02, 0x94, 0x46, 0xD7, 0x32, 0x44, 0x25, 0xC4, 0x6A, 0x35, 0xEF, 0x00, 0xF5, 0xAD, 0x10, 0x7B, 0x9D, 0xE6, 0xBB, 0x36, 0xA7, 0x01, 0xB4, 0xD3, 0x61, 0x9C, 0x16, 0xBF, 0xCE, 0xAC, 0xAE, 0xE6, 0x25, 0x03, 0x14, 0x51, 0xE8, 0x6D, 0x50, 0xE7, 0xDB, 0xBE, 0x8C, 0xFD, 0x0D, 0xB2, 0x1C, 0x79, 0x31, 0x11, 0x76, 0x88, 0x9F, 0xCE, 0xFB, 0x6D, 0x4B, 0xB9, 0x1C, 0x40, 0x52, 0x2D, 0xC0, 0xE9, 0x94, 0x36, 0x74, 0x6F, 0xB0, 0x3A, 0x70, 0x40, 0x22, 0xBD, 0x2B, 0x3E, 0x62, 0xE6, 0x1B, 0x02, 0x29, 0x63, 0xF0, 0xAD, 0x29, 0xC1, 0xA8, 0xA8, 0x1F, 0xF1, 0x9D, 0x14, 0x00, 0x3A, 0x54, 0x8E, 0x5E, 0xB3, 0x52, 0x67, 0x63, 0xB4, 0xE6, 0xF6, 0x8E, 0x0D, 0x00, 0x11, 0xA3, 0x82, 0xA3, 0xCC, 0x54, 0x7D, 0x0A, 0x17, 0x0E, 0x96, 0x8C, 0x1E, 0x96, 0x6C, 0x3F, 0xA0, 0xD7, 0x21, 0x14, 0x04, 0x7D, 0x44, 0xE0, 0xF8, 0x6E, 0x97, 0x2C, 0x55, 0x97, 0x84, 0x37, 0xA4, 0x3E, 0x22, 0x3D, 0xD2, 0x87, 0xD6, 0x47, 0x0E, 0xEB, 0xD0, 0xAE, 0xAA, 0x43, 0xAB, 0x79, 0x94, 0x8A, 0x78, 0xE7, 0xAF, 0xFA, 0x3D, 0x49, 0xC9, 0x3F, 0xE2, 0x65, 0x77, 0x94, 0xAA, 0xF9, 0x06, 0xCA, 0x86, 0xA5, 0xD4, 0x93, 0x89, 0x85, 0x3A, 0xCA, 0xAF, 0x47, 0xF4, 0xAC, 0xD5, 0x99, 0x36, 0x6F, 0x1E, 0x39, 0x18, 0x63, 0x82, 0x26, 0x18, 0x28, 0x43, 0x00, 0x00, 0x80, 0x50, 0x01, 0x82, 0x82, 0x8B, 0x1E, 0xBB, 0x69, 0x87, 0x31, 0xFB, 0x7E, 0x51, 0x84, 0x9E, 0x0C, 0x3B, 0x23, 0x1C, 0x96, 0x4D, 0x82, 0x51, 0xD1, 0x60, 0x5A, 0x83, 0xCA, 0x61, 0x23, 0x40, 0x51, 0x19, 0x59, 0x4D, 0x8E, 0x06, 0xA5, 0xEB, 0xF4, 0x2D, 0x91, 0x18, 0xD9, 0x39, 0x9E, 0xFA, 0xFA, 0x24, 0x04, 0xEF, 0x47, 0x18, 0x41, 0xAF, 0xCF, 0x9F, 0xC8, 0xB1, 0xA3, 0x68, 0x91, 0x6F, 0x7A, 0xCA, 0x81, 0xCA, 0x9D, 0x42, 0x40, 0xC2, 0xAD, 0xDD, 0x47, 0xFD, 0x34, 0x21, 0x33, 0xB7, 0xAE, 0xEF, 0x66, 0x61, 0x80, 0x48, 0x69, 0xFA, 0xC7, 0x04, 0x1B, 0x45, 0xC3, 0x23, 0x4D, 0x7D, 0xB2, 0x6C, 0x2F, 0xBC, 0x27, 0xFD, 0x57, 0x45, 0x3D, 0xDD, 0xF3, 0x6B, 0xA3, 0x98, 0x38, 0xD4, 0x24, 0x3E, 0x1F, 0xE9, 0x6C, 0xAA, 0x0B, 0xF0, 0x7B, 0x0E, 0x96, 0x32, 0x79, 0x4A, 0xC9, 0xDF, 0x48, 0xC2, 0x4E, 0x01, 0x63, 0x8E, 0xC7, 0x6B, 0x3A, 0x00, 0x3A, 0xD2, 0x00, 0xD9, 0x2D, 0x2C, 0xFE, 0x2C, 0x31, 0x3F, 0x03, 0xD8, 0xD6, 0x0C, 0x9D, 0xD2, 0xFC, 0x28, 0x42, 0x62, 0x03, 0xFF, 0x26, 0xB6, 0xFE, 0x5F, 0x80, 0xC6, 0x07, 0xD1, 0xB6, 0x3E, 0xCC, 0x5F, 0x50, 0x99, 0x3E, 0xB4, 0xDB, 0xF2, 0x93, 0xCC, 0x11, 0x49, 0x50, 0x67, 0xBF, 0xBF, 0x6C, 0xDD, 0x66, 0xDE, 0xAE, 0x37, 0xEB, 0x95, 0xFE, 0x6E, 0x97, 0x30, 0xD9, 0x20, 0xBE, 0xA7, 0xFA, 0x53, 0x4F, 0xB6, 0x09, 0xBB, 0xDC, 0xE6, 0x6D, 0x01, 0x9C, 0x45, 0x70, 0x5B, 0x10, 0x68, 0xCA, 0xAE, 0x75, 0xE4, 0xE0, 0x05, 0x21, 0x50, 0x94, 0x5D, 0xDF, 0xB7, 0x0A, 0x02, 0x1D, 0x2B, 0x9E, 0x4F, 0x29, 0xF4, 0xD3, 0xDC, 0xC9, 0x0B, 0xEA, 0x9D, 0x8D, 0x08, 0x5F, 0x58, 0x9C, 0xE9, 0x8A, 0x0D, 0xA9, 0x56, 0x37, 0xFE, 0x7A, 0xF4, 0x3A, 0xE3, 0x4C, 0x2E, 0xF3, 0x1C, 0xC6, 0x97, 0xD2, 0x19, 0x63, 0xFB, 0xFA, 0xCC, 0x61, 0xE6, 0x32, 0x5C, 0x15, 0x29, 0x55, 0xDF, 0xE9, 0xA4, 0x02, 0x68, 0x39, 0x6A, 0xD3, 0xF7, 0x62, 0xDB, 0xB3, 0x33, 0x20, 0x96, 0xB7, 0xA0, 0xC0, 0x83, 0x2E, 0x0B, 0x00, 0x52, 0x7D, 0xBE, 0xE3, 0x2D, 0x04, 0x58, 0xCB, 0x5B, 0x29, 0x38, 0xC4, 0x7E, 0x42, 0x36, 0xB4, 0xE2, 0x07, 0xB7, 0xAC, 0xE8, 0x59, 0x90, 0xA6, 0xF3, 0xB3, 0x34, 0x33, 0x20, 0x11, 0x27, 0x64, 0xEE, 0xEB, 0x3E, 0xD7, 0x9E, 0x50, 0x9C, 0x32, 0x2F, 0xD4, 0xEA, 0xD3, 0x7D, 0x7E, 0x04, 0x20, 0x8D, 0xF2, 0x46, 0x8B, 0x39, 0x38, 0xFA, 0x56, 0xA6, 0x01, 0x22, 0xF8, 0x33, 0x89, 0xDE, 0x26, 0xFE, 0x42, 0x3F, 0x4B, 0x22, 0xEF, 0x47, 0xAE, 0xD4, 0xED, 0xFE, 0x22, 0x28, 0xFF, 0x51, 0x46, 0x94, 0x08, 0xC0, 0x54, 0xAC, 0xFC, 0x0E, 0x7C, 0x7A, 0x31, 0xD0, 0x94, 0xE3, 0xDB, 0x0E, 0xB5, 0x6E, 0x9A, 0x08, 0xB1, 0x24, 0xF3, 0x6F, 0xDF, 0xE3, 0x10, 0x08, 0x00, 0x20, 0x07, 0x06, 0xF0, 0x0E, 0xC5, 0x36, 0xBA, 0x05, 0x02, 0x19, 0x59, 0x0C, 0xDF, 0x3C, 0x0C, 0x46, 0x9F, 0x07, 0x45, 0x51, 0x76, 0x1B, 0xA8, 0xE6, 0xAA, 0xAC, 0x0E, 0xD3, 0xA6, 0x2A, 0xD9, 0x8F, 0xBF, 0xCC, 0x35, 0x30, 0x42, 0xBB, 0xF5, 0xB4, 0xDB, 0x03, 0xB6, 0x4B, 0x1E, 0x69, 0x7E, 0xD3, 0xEB, 0x4E, 0x3B, 0xD4, 0xCE, 0x58, 0x98, 0x38, 0xA0, 0x59, 0xBB, 0x43, 0x64, 0x63, 0x0E, 0x96, 0xFF, 0x67, 0x84, 0x5C, 0x6C, 0xC2, 0x78, 0xD4, 0xAD, 0xA0, 0x7A, 0x8B, 0x67, 0x37, 0xFB, 0x82, 0x5F, 0x29, 0x9D, 0x3D, 0xFC, 0xA3, 0xA7, 0x4C, 0xEA, 0xF9, 0xF2, 0x85, 0x5E, 0xA0, 0x42, 0xD6, 0x81, 0xC0, 0x00, 0xC0, 0x3A, 0x09, 0x24, 0x3C, 0xDA, 0x10, 0x22, 0x2D, 0xC0, 0xE5, 0xD0, 0x37, 0x38, 0x10, 0xB9, 0xC6, 0x41, 0x5E, 0x1A, 0xF9, 0xF0, 0x24, 0xEA, 0x77, 0xA9, 0xC2, 0x05, 0x7C, 0xFC, 0x80, 0xDD, 0x59, 0x5D, 0x03, 0xF4, 0x67, 0xA1, 0x5C, 0x03, 0x83, 0x8E, 0x9A, 0x30, 0x86, 0x8B, 0xDF, 0x00, 0x27, 0xFC, 0xE8, 0x73, 0x36, 0x93, 0xF0, 0xBF, 0x92, 0xE1, 0x88, 0x16, 0xB0, 0x01, 0x30, 0xCD, 0x54, 0x03, 0xBD, 0xE5, 0x26, 0x78, 0x02, 0x87, 0xA5, 0xAF, 0xFC, 0x15, 0xDF, 0xF4, 0xA3, 0xFA, 0x88, 0xB2, 0x6B, 0xFA, 0xF6, 0xB7, 0x38, 0x01, 0x5E, 0x04, 0xAC, 0xB0, 0xFC, 0x3E, 0x18, 0x5A, 0xF6, 0xC2, 0xDB, 0xDA, 0x9B, 0xFB, 0x35, 0x7B, 0xAF, 0xFC, 0xC2, 0x02, 0xAC, 0x20, 0x96, 0x1E, 0x04, 0xFB, 0x20, 0xD2, 0x02, 0x5F, 0x6D, 0xE1, 0x04, 0x4C, 0xA3, 0xA8, 0x16, 0x90, 0x56, 0x34, 0x45, 0x3E, 0xBC, 0x55, 0xDE, 0x35, 0x98, 0xBB, 0xD6, 0x78, 0x01, 0xD1, 0xD9, 0xA3, 0x74, 0xC0, 0x5A, 0x06, 0x83, 0xA0, 0xD1, 0xA5, 0xD5, 0xE0, 0xFE, 0xD7, 0x84, 0xFA, 0x03, 0x83, 0x7B, 0x82, 0x20, 0x3E, 0xB8, 0xF9, 0x16, 0x26, 0xFF, 0xCE, 0x37, 0x53, 0xCC, 0x7F, 0x27, 0x99, 0xE0, 0x60, 0x06, 0x1C, 0x28, 0x07, 0x87, 0x2D, 0xBE, 0x68, 0x1F, 0xB0, 0x03, 0x98, 0xDF, 0x06, 0xC7, 0x1F, 0x17, 0xE0, 0xE7, 0x28, 0x03, 0x91, 0x72, 0x5A, 0x6E, 0x7E, 0x7B, 0xD3, 0x6B, 0x03, 0x7E, 0xE6, 0x59, 0x9B, 0x29, 0x8A, 0x88, 0x06, 0x9C, 0xF7, 0x00, 0xBB, 0xE8, 0x7B, 0x31, 0xC5, 0xDF, 0x75, 0xEF, 0xB7, 0xE8, 0xCB, 0xAB, 0x71, 0x07, 0xAB, 0x82, 0x87, 0x12, 0x2D, 0xA5, 0xAF, 0x3B, 0xC6, 0xE0, 0x3B, 0xE3, 0x07, 0x11, 0x11, 0x82, 0x0D, 0x30, 0x13, 0xF9, 0xE1, 0x34, 0x86, 0xCE, 0x71, 0x5F, 0x32, 0x2A, 0xF3, 0x34, 0xA0, 0x40, 0xA2, 0x1C, 0x20, 0x8E, 0x9C, 0x0E, 0x4D, 0xAD, 0xE0, 0x9A, 0x12, 0x7D, 0x2A, 0x4C, 0xE4, 0x20, 0xF7, 0x1A, 0xC0, 0xF5, 0xE1, 0xBF, 0xD6, 0x64, 0xD3, 0x71, 0x75, 0x40, 0x00, 0x0F, 0x80, 0x8F, 0x28, 0x86, 0x98, 0x5D, 0xBE, 0x00, 0x30, 0x11, 0xF6, 0xA5, 0x6A, 0x5F, 0xFD, 0x1D, 0xC4, 0x49, 0xB3, 0x24, 0x02, 0x2F, 0xC5, 0xD6, 0x4F, 0x10, 0x65, 0xFF, 0x56, 0xBD, 0x6D, 0x4F, 0x58, 0x22, 0xAF, 0xBB, 0xE9, 0x6F, 0xE8, 0x06, 0x69, 0xC9, 0x18, 0x79, 0x41, 0xBE, 0xF5, 0x5A, 0x61, 0xB3, 0x82, 0x92, 0x67, 0x39, 0x77, 0x4D, 0x39, 0x46, 0x96, 0x37, 0x34, 0x2F, 0xD6, 0x46, 0xDA, 0x0E, 0x02, 0x72, 0xE7, 0x1E, 0xDF, 0x43, 0x7E, 0xE8, 0x00, 0xCA, 0xF8, 0xD9, 0x15, 0x2B, 0x0D, 0xB1, 0x8A, 0x71, 0x03, 0x00, 0x37, 0x06, 0x00, 0x50, 0x5A, 0xA4, 0xE0, 0x07, 0x4A, 0xF7, 0xAE, 0x5A, 0x05, 0x06, 0xF0, 0x07, 0xD5, 0xF9, 0xAC, 0x55, 0x61, 0x57, 0x41, 0x29, 0xEB, 0x4F, 0xB7, 0xDD, 0x32, 0x4B, 0xE4, 0xF6, 0xC6, 0xF8, 0xCF, 0x11, 0x1C, 0xDD, 0xFE, 0x7F, 0x32, 0x1C, 0x7F, 0xD5, 0x14, 0xEE, 0x34, 0xFB, 0x25, 0x03, 0xBE, 0x8C, 0xF9, 0xFE, 0xFC, 0x8E, 0x03, 0x2F, 0xEF, 0x6F, 0xB7, 0x98, 0xAC, 0xB5, 0x29, 0xC6, 0x53, 0xA6, 0x82, 0xD3, 0x07, 0x97, 0xA1, 0x75, 0x45, 0xCB, 0xFA, 0xCE, 0x6F, 0xAB, 0x3E, 0x83, 0x44, 0x5E, 0xFE, 0xFE, 0xEB, 0x34, 0x27, 0x58, 0x64, 0x5F, 0xF5, 0x86, 0x92, 0x13, 0xCA, 0x48, 0xC7, 0x82, 0x1A, 0x73, 0x27, 0xA4, 0xD3, 0x61, 0x73, 0x80, 0xDA, 0x93, 0x2A, 0x39, 0xFF, 0xE1, 0x29, 0x75, 0xB9, 0x7A, 0x56, 0x74, 0xE3, 0xFF, 0x77, 0x42, 0xB8, 0x8D, 0x69, 0x60, 0xE3, 0xAA, 0x51, 0x86, 0x83, 0x1F, 0x72, 0xD3, 0x59, 0xF0, 0x0B, 0xED, 0x76, 0x86, 0x83, 0xD4, 0x3F, 0xFB, 0x3D, 0xE6, 0xC7, 0x48, 0xFA, 0xFF, 0xCA, 0x7C, 0xA5, 0x73, 0x93, 0x9A, 0xCD, 0x74, 0xD6, 0x4F, 0x1A, 0xDE, 0x28, 0xC5, 0xA4, 0x35, 0x93, 0x7C, 0x30, 0x7F, 0x1F, 0x94, 0x7F, 0xEC, 0x9B, 0xB0, 0xF8, 0x26, 0x28, 0x54, 0xFC, 0xD2, 0xAF, 0x68, 0xBE, 0xEA, 0xCA, 0x88, 0xFD, 0xB4, 0xF1, 0x25, 0xF7, 0x86, 0xB5, 0x23, 0xF5, 0xA8, 0xC1, 0x5A, 0xD8, 0x94, 0x85, 0x2A, 0x70, 0xB7, 0x47, 0x8B, 0x6A, 0x2C, 0xF1, 0xAA, 0xE3, 0x96, 0xC0, 0x3D, 0x4E, 0x98, 0xA2, 0x1C, 0xE8, 0xF5, 0x68, 0x4A, 0xD0, 0xD2, 0xC5, 0x63, 0x40, 0x9A, 0xDB, 0x90, 0x58, 0x8E, 0x4B, 0xC0, 0x09, 0x42, 0x65, 0xE0, 0xC3, 0x22, 0xD6, 0x2D, 0x68, 0x12, 0x97, 0x57, 0x90, 0x31, 0x8E, 0x1C, 0x64, 0x80, 0x92, 0x5F, 0x1C, 0xB4, 0xD3, 0x4D, 0x36, 0x7D, 0x9B, 0x6A, 0xF8, 0x68, 0xEF, 0xBC, 0x55, 0x6A, 0x78, 0x19, 0x6B, 0x39, 0xEB, 0x7D, 0x7F, 0x4B, 0xC3, 0x57, 0x26, 0x59, 0xF8, 0x8A, 0x43, 0xE8, 0xF9, 0x55, 0x18, 0x96, 0xCC, 0xB1, 0xCE, 0x6E, 0x0E, 0x90, 0xF4, 0x3C, 0xBA, 0xAE, 0xEE, 0xAF, 0xFE, 0xDE, 0x8C, 0x27, 0xD5, 0x7A, 0x4C, 0x57, 0xBF, 0x57, 0x19, 0x35, 0x01, 0x88, 0x9B, 0x2C, 0xAF, 0xA2, 0x40, 0x53, 0xD0, 0x98, 0xB5, 0x2A, 0xAD, 0x2F, 0x1F, 0x35, 0x4F, 0xEA, 0xC8, 0xD6, 0x87, 0x6A, 0xAE, 0x64, 0xC8, 0x11, 0x4A, 0x5A, 0xF8, 0xA0, 0x12, 0x47, 0x60, 0x35, 0x26, 0xB7, 0xAA, 0xC7, 0x8B, 0x00, 0xD9, 0x33, 0xE9, 0x20, 0xF9, 0x24, 0x9B, 0x6D, 0xF2, 0x19, 0x21, 0x9A, 0x23, 0x8B, 0xA8, 0x98, 0xAE, 0x3D, 0x70, 0x5A, 0x9F, 0x04, 0xD6, 0x51, 0xC8, 0xF9, 0xB0, 0xB7, 0x34, 0x5E, 0xF0, 0xE7, 0x4D, 0xF1, 0x5E, 0xF2, 0xAF, 0xD7, 0x53, 0x81, 0xD3, 0x46, 0x83, 0x34, 0x53, 0xC6, 0xD6, 0xD2, 0x51, 0xEF, 0xEE, 0x63, 0x1B, 0x39, 0xB1, 0x29, 0xFA, 0x33, 0x29, 0xEA, 0x62, 0xF5, 0x1A, 0xF5, 0xDE, 0xCB, 0x82, 0x36, 0x3B, 0xBD, 0xD7, 0xC6, 0xF2, 0x23, 0x43, 0x37, 0xE3, 0xB5, 0x29, 0xD0, 0x70, 0x46, 0xE3, 0xAD, 0xBA, 0xF1, 0x37, 0xFC, 0x82, 0xFC, 0xFE, 0x7D, 0x20, 0xFA, 0xA3, 0x40, 0xB6, 0x45, 0x49, 0x84, 0x9F, 0x31, 0xA8, 0xA4, 0x74, 0x2F, 0x63, 0x21, 0x5B, 0x7D, 0x42, 0xCA, 0xFA, 0x4C, 0x1F, 0xC6, 0x28, 0x90, 0xB8, 0xD1, 0x47, 0x65, 0xF2, 0x2C, 0xBF, 0xAD, 0x8B, 0x6D, 0x8B, 0xA3, 0xDE, 0x02, 0x8A, 0xC9, 0x98, 0x02, 0x4F, 0x7F, 0x04, 0xAB, 0xEF, 0x7D, 0xAD, 0x95, 0x87, 0x0F, 0x91, 0xDB, 0x2F, 0x3C, 0xFB, 0xFB, 0x83, 0xBB, 0x9E, 0x46, 0x57, 0x56, 0x6B, 0xBD, 0x22, 0x68, 0x0D, 0x7E, 0x83, 0x98, 0x01, 0x5E, 0x21, 0x39, 0xFF, 0xC3, 0xB4, 0x9B, 0x12, 0xCE, 0x9F, 0x34, 0x97, 0x5D, 0x82, 0x03, 0xB0, 0x40, 0xA4, 0xE1, 0xF4, 0xD2, 0x03, 0x8E, 0x72, 0xCA, 0x8C, 0x22, 0x50, 0xB8, 0x36, 0x97, 0xB6, 0xDF, 0xC4, 0x2E, 0x62, 0x3B, 0x7E, 0xB9, 0xD0, 0x36, 0x08, 0xBF, 0xFB, 0xFA, 0xE7, 0xED, 0xFD, 0x5F, 0xEE, 0x9A, 0xDF, 0xCB, 0xFF, 0x43, 0x5E, 0x71, 0x9D, 0x63, 0x42, 0x69, 0x38, 0x8E, 0x3F, 0x93, 0x70, 0xDF, 0xF0, 0x37, 0x75, 0xAC, 0xF5, 0x69, 0xB2, 0xBB, 0x80, 0xE9, 0xE2, 0x7B, 0x7C, 0xD1, 0xB0, 0x32, 0x57, 0xE7, 0xBD, 0xF5, 0x80, 0x05, 0x69, 0x83, 0xC2, 0x90, 0xA7, 0x42, 0x0E, 0x2A, 0x81, 0x55, 0x05, 0x5B, 0x52, 0x9D, 0xAB, 0x23, 0x7F, 0x6F, 0x36, 0x84, 0x77, 0x3B, 0x2F, 0x00, 0x1B, 0x78, 0xFB, 0x5A, 0x81, 0xAE, 0xF4, 0x82, 0x87, 0x60, 0x5B, 0x93, 0xAF, 0x0D, 0xFD, 0xAB, 0x5D, 0x2B, 0xA2, 0xC6, 0xFF, 0x45, 0x15, 0x58, 0xC2, 0xA9, 0x99, 0x01, 0x55, 0xBC, 0xD8, 0x39, 0x03, 0x95, 0x17, 0x33, 0xB4, 0x97, 0x41, 0x25, 0x08, 0x28, 0xC6, 0x6E, 0xB5, 0x9B, 0xB5, 0x76, 0xCC, 0x31, 0xB3, 0xB4, 0xFE, 0x2B, 0xA6, 0x84, 0x8C, 0xC3, 0x26, 0xED, 0xA0, 0x67, 0xE0, 0xA5, 0xED, 0x98, 0x16, 0x44, 0x03, 0xC9, 0xDF, 0x7E, 0xA6, 0x9E, 0x13, 0x86, 0x4A, 0x37, 0xF0, 0xD0, 0x0C, 0x8F, 0x58, 0x7B, 0xCC, 0x27, 0xE6, 0x61, 0x55, 0x7B, 0xA5, 0x14, 0xC1, 0xA6, 0x28, 0xEC, 0xAB, 0x7B, 0x2D, 0x62, 0x7F, 0x05, 0x27, 0x24, 0x8D, 0xCE, 0x72, 0x69, 0x37, 0xB7, 0x5E, 0x26, 0xE7, 0xC7, 0x01, 0x5A, 0xEA, 0xAB, 0x59, 0x33, 0xEA, 0x39, 0xD7, 0xEC, 0xDB, 0x97, 0x3F, 0x0D, 0xF5, 0xDE, 0x85, 0xE5, 0xAE, 0xE5, 0xD8, 0xCB, 0xBC, 0x64, 0x07, 0xEF, 0xBB, 0xED, 0x6C, 0xB1, 0x21, 0xC1, 0x33, 0xC2, 0x74, 0xFF, 0xFD, 0xED, 0x75, 0xB8, 0x9E, 0xD3, 0xBD, 0x65, 0xE8, 0x82, 0x50, 0x3C, 0x37, 0x10, 0x3F, 0x52, 0x62, 0x04, 0x8D, 0x9B, 0x26, 0xC7, 0x29, 0x56, 0xD6, 0x80, 0xB3, 0x96, 0xEF, 0xA5, 0x2F, 0xD2, 0x15, 0x32, 0x95, 0xB5, 0x4C, 0xD8, 0xB2, 0xE0, 0x90, 0x81, 0x06, 0xFD, 0x8B, 0x44, 0x33, 0xC1, 0x19, 0xAC, 0x5D, 0x9C, 0x45, 0xFF, 0x94, 0xCC, 0x56, 0xAC, 0x2A, 0xE0, 0xE2, 0x2A, 0x24, 0xAB, 0x1F, 0xF4, 0xFB, 0x14, 0x1C, 0x3A, 0x4D, 0x08, 0xED, 0x10, 0x75, 0x27, 0xC4, 0x30, 0x5C, 0x24, 0x9D, 0x24, 0x72, 0x8F, 0x9B, 0x69, 0x53, 0x68, 0x5A, 0xE2, 0x3B, 0x6E, 0x07, 0xBE, 0xA7, 0xF3, 0xDC, 0x07, 0xF7, 0x09, 0x81, 0x44, 0x76, 0x05, 0x56, 0xBF, 0xBD, 0xD4, 0x2C, 0x2B, 0x12, 0x7E, 0x2B, 0xBF, 0xB6, 0x60, 0x5A, 0xD8, 0x00, 0x08, 0x00, 0xBA, 0x82, 0x41, 0xF5, 0x3D, 0x8B, 0xB4, 0x02, 0x46, 0xC7, 0xFF, 0x3D, 0x42, 0x79, 0x3D, 0x8D, 0x12, 0x8F, 0x52, 0x3C, 0x0D, 0x0B, 0xE3, 0x6F, 0x01, 0x51, 0x52, 0x33, 0x32, 0x84, 0x7E, 0x1F, 0xD9, 0xC3, 0xA6, 0x3B, 0x47, 0x35, 0xA4, 0x94, 0x56, 0xF1, 0xBD, 0x19, 0x89, 0x44, 0x97, 0x29, 0x53, 0x08, 0x22, 0x7F, 0xA0, 0xEA, 0x1C, 0x35, 0x0E, 0x3E, 0xA3, 0x72, 0x93, 0x4A, 0xB6, 0xE1, 0xBF, 0x2B, 0xDF, 0x97, 0xAC, 0x65, 0x33, 0x34, 0x66, 0x51, 0xA3, 0x42, 0xEE, 0x91, 0x7F, 0x64, 0x87, 0x11, 0xAA, 0x15, 0x8B, 0xE9, 0xEA, 0x6E, 0x0E, 0x63, 0x07, 0x70, 0x97, 0x89, 0x72, 0x7C, 0x79, 0x11, 0x9C, 0xA9, 0x04, 0x86, 0x91, 0xBC, 0x5A, 0xCC, 0x7B, 0xDF, 0xC5, 0x02, 0xC5, 0xE1, 0xD8, 0xBE, 0x6B, 0xE0, 0x33, 0x60, 0x00, 0x76, 0x00, 0x26, 0x65, 0x75, 0x6C, 0x14, 0x07, 0x95, 0x70, 0x08, 0xDD, 0xDD, 0xEC, 0xB3, 0x88, 0x21, 0xB8, 0xE2, 0x0D, 0x86, 0xB1, 0x66, 0xA8, 0xBD, 0xA5, 0x4D, 0x82, 0xDD, 0x41, 0x8E, 0x3A, 0xD8, 0x2F, 0xAD, 0xB3, 0x1C, 0xFF, 0xD2, 0xA6, 0x6C, 0x7D, 0x23, 0x44, 0xEF, 0x27, 0x9B, 0x72, 0xBF, 0x80, 0x64, 0x15, 0xD1, 0xE2, 0xD2, 0x13, 0x71, 0x5B, 0x94, 0x5E, 0x6E, 0xE8, 0x72, 0x6B, 0xC0, 0x63, 0xE1, 0x72, 0x12, 0x8D, 0xF5, 0x2F, 0x87, 0x63, 0x07, 0x69, 0x18, 0x51, 0x66, 0xFD, 0x72, 0xFF, 0xEB, 0x7E, 0x7F, 0xF4, 0xCB, 0x93, 0x89, 0x38, 0xDE, 0xFF, 0xE6, 0x30, 0x9C, 0x38, 0xDB, 0xBD, 0x3C, 0xCD, 0x00, 0x22, 0xB6, 0xAF, 0x16, 0x14, 0x85, 0xCB, 0x78, 0xEC, 0x1D, 0x20, 0x4E, 0x2D, 0x68, 0xEA, 0x94, 0x98, 0x38, 0x5A, 0x24, 0xA3, 0xD4, 0xE7, 0x69, 0xC4, 0x62, 0x53, 0xFA, 0x2E, 0xFC, 0xEB, 0x61, 0xA5, 0x86, 0xD8, 0xC5, 0xF8, 0x4F, 0x3B, 0x05, 0xBE, 0x58, 0xB7, 0x70, 0x3E, 0xA4, 0x87, 0x30, 0x71, 0xFB, 0x08, 0x81, 0x49, 0xE0, 0xE2, 0x51, 0x61, 0x39, 0x1F, 0xD5, 0xD4, 0x3B, 0xFA, 0x50, 0x87, 0xEC, 0xBD, 0x13, 0x2B, 0x38, 0x15, 0x47, 0x45, 0x85, 0x92, 0x6D, 0xEE, 0xAD, 0xC5, 0xA8, 0xEA, 0x03, 0x84, 0x18, 0xA0, 0x80, 0x80, 0x70, 0x4F, 0x1A, 0xD7, 0xBD, 0x1F, 0xC3, 0x0D, 0x21, 0x51, 0x21, 0xE3, 0x02, 0xEA, 0x25, 0xD6, 0xA8, 0x03, 0x38, 0xD9, 0x13, 0x00, 0xD5, 0xA0, 0xF5, 0xBE, 0x89, 0x98, 0x95, 0xC8, 0x63, 0x8D, 0xEB, 0xED, 0x08, 0x9D, 0x73, 0x90, 0xB1, 0x3A, 0x75, 0xD6, 0x3F, 0x59, 0xB9, 0x30, 0x00, 0xDB, 0xE5, 0x91, 0xA1, 0xE1, 0xF3, 0x47, 0x92, 0x57, 0x1D, 0xFD, 0x0B, 0x12, 0x74, 0x06, 0x6E, 0xFC, 0xCF, 0x44, 0x6D, 0x4E, 0xE6, 0x6B, 0xA9, 0x4A, 0x53, 0x26, 0x9A, 0xB7, 0x43, 0x7F, 0x30, 0x01, 0x44, 0xEE, 0x5D, 0xF5, 0xAA, 0xEF, 0x45, 0x7E, 0x39, 0x9D, 0xA5, 0xE3, 0x77, 0xC7, 0xB5, 0x39, 0x75, 0x30, 0x82, 0xAC, 0xA1, 0x05, 0x52, 0xCF, 0x11, 0x4D, 0xEA, 0x65, 0x5A, 0x7F, 0xC4, 0x59, 0x63, 0x7C, 0x85, 0xA9, 0x10, 0xB5, 0x6C, 0x69, 0x64, 0x52, 0x97, 0x5E, 0xE5, 0x3F, 0xEC, 0xBA, 0x3D, 0xE1, 0xDF, 0x99, 0xC7, 0x5F, 0x6F, 0x49, 0x75, 0x34, 0x3A, 0xE1, 0x6F, 0x42, 0x4B, 0xF9, 0xC5, 0xAF, 0x35, 0x01, 0xD0, 0xD4, 0xE8, 0xB2, 0x7A, 0x41, 0x0E, 0x0B, 0xF3, 0x58, 0xE4, 0x04, 0xAF, 0x98, 0x25, 0x58, 0xDA, 0xC6, 0xAF, 0xC7, 0xFF, 0xF7, 0xDC, 0x09, 0xE1, 0xD6, 0x17, 0x2D, 0x50, 0x89, 0xCB, 0x22, 0xD2, 0x06, 0x28, 0xF4, 0xDC, 0xE1, 0x55, 0x06, 0x8B, 0x3C, 0x01, 0xC5, 0x57, 0xBE, 0xBD, 0x47, 0xED, 0x36, 0x10, 0xAF, 0x09, 0xB3, 0xEA, 0x79, 0x0C, 0x74, 0x58, 0x5E, 0xA8, 0x5C, 0x1C, 0xCD, 0xAB, 0x94, 0x8A, 0xCC, 0x40, 0x17, 0xFC, 0xFB, 0xE1, 0x26, 0x6C, 0x02, 0x3E, 0x6C, 0x3B, 0xFB, 0x83, 0x98, 0xC2, 0x9D, 0x74, 0xE8, 0x0F, 0xC3, 0x39, 0x02, 0xBE, 0xDB, 0xE5, 0xE7, 0x06, 0x89, 0x98, 0x42, 0xAD, 0xD5, 0x61, 0x2D, 0x7D, 0x4F, 0xEA, 0xFF, 0xE1, 0x1C, 0x00, 0x10, 0x14, 0x20, 0x09, 0x5E, 0x1A, 0xB4, 0xEE, 0x17, 0xF0, 0x23, 0x89, 0x38, 0x24, 0x51, 0xB2, 0xC0, 0x63, 0x1F, 0x58, 0xB8, 0xF8, 0x97, 0x70, 0x25, 0x90, 0x67, 0xDB, 0x24, 0xCA, 0xA8, 0x99, 0x9A, 0xBB, 0x3A, 0x17, 0x1C, 0x4E, 0xA4, 0x1D, 0xBD, 0xCE, 0x0D, 0x7A, 0x1A, 0xF3, 0xD6, 0x9C, 0x6F, 0x06, 0xCB, 0x48, 0x00, 0x43, 0xFF, 0xC5, 0x1C, 0xCA, 0xC6, 0x96, 0x7F, 0xF4, 0xF9, 0x66, 0x50, 0xDA, 0xF6, 0x9A, 0x17, 0xDF, 0x66, 0x92, 0x0A, 0xEE, 0xB1, 0xD0, 0x75, 0xCF, 0x52, 0xA6, 0x4B, 0x83, 0x09, 0xDE, 0xEE, 0xF6, 0x77, 0xA0, 0x81, 0xA2, 0xEE, 0xA5, 0xCD, 0x61, 0x06, 0x95, 0x2D, 0x97, 0x25, 0xCC, 0xF5, 0x76, 0x75, 0x93, 0x2B, 0xAB, 0x47, 0x49, 0x66, 0x37, 0x74, 0x8B, 0xB2, 0xDC, 0xAB, 0x5A, 0xD4, 0x35, 0xFB, 0x04, 0x00, 0x27, 0x29, 0x42, 0x00, 0x44, 0x93, 0x59, 0xE4, 0x44, 0x04, 0xD4, 0x99, 0x4E, 0x44, 0xF4, 0x8D, 0xA1, 0xFF, 0x6D, 0x93, 0xA4, 0x28, 0x55, 0x21, 0xC7, 0x10, 0x1E, 0x3C, 0xD4, 0x00, 0x66, 0x04, 0xC4, 0x28, 0x71, 0x60, 0xBA, 0x66, 0xC0, 0x6B, 0x70, 0x37, 0xAB, 0xBF, 0xAF, 0x69, 0x2F, 0x39, 0x57, 0xBD, 0xB3, 0xD5, 0x74, 0x53, 0x9E, 0xDC, 0xA1, 0x49, 0xB7, 0x46, 0xDB, 0x45, 0x8F, 0xDA, 0x19, 0x31, 0xF6, 0x90, 0xE1, 0x74, 0x9E, 0x39, 0xE2, 0x74, 0xBF, 0xBE, 0x37, 0x3E, 0x96, 0x1D, 0x49, 0x5F, 0x07, 0x3F, 0xD6, 0xAF, 0x58, 0xD3, 0xF5, 0x1B, 0x41, 0x58, 0x92, 0x5C, 0xA0, 0x58, 0x61, 0x14, 0x00, 0x04, 0x0E, 0x1A, 0x3C, 0x7E, 0x8E, 0xAE, 0x0C, 0x42, 0xFC, 0x4D, 0xE7, 0xAE, 0xED, 0x58, 0xFD, 0x12, 0x26, 0x08, 0x72, 0x7C, 0x54, 0xA3, 0xA6, 0x29, 0x68, 0xB3, 0xC7, 0xC6, 0xE6, 0xA4, 0x3D, 0x40, 0xC8, 0x33, 0x30, 0xC8, 0x34, 0x7E, 0x05, 0x15, 0x4B, 0x31, 0x79, 0xA9, 0x3E, 0x01, 0xC4, 0x42, 0x05, 0x51, 0xB3, 0x37, 0x2C, 0x88, 0x74, 0xC5, 0x00, 0x30, 0xCA, 0x3A, 0x20, 0xBC, 0x3F, 0x76, 0x76, 0x83, 0xFF, 0x7E, 0x5E, 0x89, 0xCC, 0x62, 0xD9, 0xDE, 0x87, 0x77, 0x2F, 0x02, 0x97, 0xE4, 0x82, 0xC0, 0x13, 0xCB, 0x14, 0x53, 0xF6, 0x32, 0x98, 0x36, 0x0D, 0x9F, 0x16, 0xA3, 0xCD, 0xE0, 0x11, 0x11, 0xDF, 0xC2, 0x11, 0x5B, 0x3C, 0xBD, 0x87, 0xBF, 0x02, 0xD3, 0xF0, 0x87, 0x35, 0x3E, 0xB5, 0x41, 0x3F, 0x0C, 0x69, 0x7F, 0x13, 0x5A, 0x77, 0x34, 0x63, 0xAC, 0xF6, 0xEF, 0xDD, 0xCD, 0xFD, 0x66, 0xB9, 0xB5, 0xC1, 0x9C, 0x24, 0x1F, 0x13, 0x22, 0xDB, 0xA0, 0xD6, 0xD5, 0x9E, 0x19, 0x45, 0x97, 0xF2, 0xF8, 0x4A, 0x75, 0x02, 0x4B, 0xF7, 0xC2, 0x0E, 0xB5, 0xC9, 0x67, 0x86, 0xE0, 0x6D, 0x15, 0x66, 0x33, 0x65, 0x03, 0x80, 0x08, 0x80, 0x70, 0x08, 0x14, 0x84, 0x7B, 0x0D, 0x1F, 0x48, 0x7F, 0x05, 0xD8, 0x12, 0xC4, 0x53, 0xF8, 0x0A, 0x24, 0x18, 0x11, 0x84, 0x09, 0xCB, 0xCC, 0x2C, 0xC5, 0xFD, 0x75, 0xD2, 0xE8, 0x1E, 0xC3, 0x12, 0xDB, 0x75, 0x23, 0x1C, 0x80, 0x4E, 0x0E, 0x5F, 0x4A, 0xE1, 0x62, 0x64, 0xC0, 0x3D, 0x67, 0xF6, 0xDD, 0x09, 0x26, 0xFC, 0x14, 0xD8, 0xD7, 0xAD, 0x1D, 0x84, 0x4F, 0xF2, 0x03, 0xC1, 0x5F, 0xFC, 0x80, 0xEA, 0x86, 0x41, 0x9B, 0xC1, 0x25, 0xD8, 0xB3, 0xC7, 0x56, 0x04, 0xAA, 0x32, 0x0F, 0x4A, 0x07, 0xE1, 0x6E, 0xD7, 0x2A, 0xB3, 0x5B, 0x49, 0x61, 0x69, 0xEB, 0x8A, 0x57, 0xA8, 0xA6, 0x60, 0xD8, 0x7A, 0x52, 0x2C, 0xDF, 0xD5, 0x55, 0x02, 0x45, 0xE0, 0xA5, 0xB7, 0x5E, 0x1B, 0x48, 0x1F, 0xC6, 0xE3, 0x40, 0x71, 0x4C, 0xC7, 0xAA, 0xFA, 0x2E, 0x96, 0x30, 0x0F, 0xC3, 0x13, 0x81, 0xEF, 0x85, 0x7C, 0xDA, 0xF9, 0x0B, 0x04, 0x24, 0x2E, 0x10, 0xE8, 0x6E, 0xF3, 0xEE, 0x21, 0xDB, 0xB5, 0x46, 0x1C, 0x93, 0x98, 0x8A, 0xBC, 0xDD, 0x73, 0xAC, 0xC1, 0x8D, 0x46, 0xD6, 0xE7, 0xB7, 0x0A, 0x60, 0x03, 0xBE, 0xC0, 0xAE, 0xB5, 0x5F, 0xB4, 0x40, 0x2A, 0xA5, 0xDD, 0xB6, 0x70, 0xC4, 0x32, 0x98, 0xE5, 0x24, 0xFF, 0x59, 0x83, 0x20, 0xE9, 0x40, 0x71, 0x30, 0xAF, 0xEF, 0x63, 0xA9, 0x00, 0x58, 0x64, 0xC9, 0x72, 0x36, 0xF7, 0xF3, 0xA7, 0x56, 0x17, 0xF2, 0x13, 0x92, 0xBB, 0x7F, 0xA0, 0x96, 0xB8, 0x90, 0x19, 0x1C, 0x2A, 0x73, 0x7F, 0x3F, 0x4E, 0xC5, 0x78, 0x17, 0x64, 0x8A, 0x5C, 0xB3, 0xD4, 0x00, 0x54, 0x35, 0xE9, 0x3A, 0x5D, 0xAB, 0xC8, 0x0A, 0x81, 0xAE, 0x8A, 0x85, 0xDA, 0xC2, 0xF7, 0x20, 0x01, 0x2D, 0x05, 0x4B, 0x04, 0x7B, 0xA4, 0x62, 0x02, 0x51, 0x97, 0x2F, 0x41, 0xB5, 0x31, 0xEC, 0x11, 0xBE, 0x64, 0xB2, 0x6F, 0xB6, 0xD0, 0xED, 0x7F, 0xA7, 0x2B, 0xF8, 0x82, 0xEB, 0x7A, 0x00, 0x07, 0x74, 0x71, 0xCD, 0xF3, 0xF5, 0x6D, 0x7C, 0x08, 0xFF, 0x10, 0x09, 0x83, 0x99, 0x2B, 0x41, 0x30, 0x03, 0x06, 0xAD, 0x08, 0x8F, 0xE6, 0xC5, 0x26, 0xC0, 0x1E, 0x90, 0x1D, 0x2D, 0x68, 0x92, 0x02, 0xFC, 0x64, 0x5B, 0x5B, 0x32, 0xEB, 0x53, 0x78, 0x7C, 0x80, 0x59, 0x08, 0x70, 0x21, 0x46, 0x41, 0xC4, 0xC9, 0xA6, 0x3E, 0x5B, 0xB0, 0x3B, 0x99, 0xAE, 0x33, 0xAA, 0x13, 0x6A, 0xC1, 0x56, 0xD2, 0xBF, 0xF5, 0xFF, 0xFF, 0xF5, 0x41, 0x10, 0xD7, 0x61, 0x7D, 0xE2, 0x98, 0xC0, 0xF8, 0x2E, 0xF6, 0xD0, 0x01, 0x03, 0xD0, 0x7D, 0xC5, 0x0F, 0xFB, 0x6B, 0xF0, 0x1D, 0x94, 0x0D, 0x89, 0x0B, 0x90, 0xA1, 0xB6, 0xAC, 0x75, 0x3F, 0x9C, 0x8D, 0x3E, 0x7F, 0x33, 0x1B, 0xC0, 0xF0, 0xB0, 0x21, 0x08, 0x38, 0xAC, 0x06, 0xA9, 0xC1, 0x9E, 0x95, 0x89, 0x80, 0x21, 0xC1, 0x91, 0xF2, 0x0E, 0xE4, 0x6F, 0xE5, 0x38, 0x1B, 0xF4, 0x97, 0xFF, 0x37, 0xEF, 0xFF, 0x04, 0x7B, 0x9E, 0xAC, 0x35, 0xAB, 0xFF, 0x2B, 0x98, 0x38, 0x00, 0x7E, 0xBE, 0xE1, 0x90, 0x1D, 0x57, 0x0F, 0x36, 0x0C, 0xF7, 0xAD, 0x82, 0x5E, 0x68, 0x01, 0x7F, 0x9C, 0xA6, 0x53, 0x1A, 0x74, 0xDF, 0x9F, 0x1D, 0xCF, 0xDA, 0xF9, 0xFD, 0x59, 0x6C, 0x02, 0x90, 0x79, 0x76, 0x0F, 0xE5, 0x5B, 0x3F, 0xC6, 0xA5, 0x61, 0xCA, 0x09, 0xFA, 0xF4, 0x7D, 0xAE, 0x97, 0xFC, 0xEB, 0xF2, 0xA8, 0xE9, 0xFE, 0x5B, 0xFE, 0xE0, 0x97, 0xE6, 0xD4, 0xDB, 0xE8, 0x28, 0x17, 0x80, 0x58, 0x19, 0xF0, 0xE6, 0x0B, 0x94, 0x00, 0x0D, 0xE0, 0x94, 0x3A, 0x98, 0x5D, 0x74, 0x9F, 0x00, 0x01, 0x9F, 0x11, 0x80, 0x1B, 0xFE, 0xBC, 0xAD, 0xE1, 0x35, 0xA6, 0x36, 0xCE, 0xA7, 0x70, 0x0A, 0xE2, 0xA8, 0x1E, 0x8A, 0x56, 0xBF, 0xBB, 0x2C, 0x16, 0x33, 0xE1, 0xFC, 0xCB, 0x69, 0x2C, 0x97, 0x5A, 0x67, 0xA9, 0xAD, 0xE1, 0xEE, 0x1E, 0x04, 0xDE, 0x63, 0xDB, 0xF6, 0x08, 0xBE, 0x67, 0xA5, 0x5A, 0x6B, 0xF8, 0x03, 0xBB, 0x03, 0x38, 0x02, 0xAE, 0x20, 0x96, 0xFA, 0x00, 0x05, 0xA6, 0xC1, 0xE1, 0x61, 0xEA, 0xB9, 0x48, 0x1A, 0x20, 0x68, 0x20, 0x42, 0xB9, 0x2A, 0xD3, 0xE5, 0x8D, 0x14, 0xF5, 0x1F, 0xDF, 0x51, 0xB7, 0xD7, 0xBA, 0x0B, 0x20, 0xD1, 0x70, 0x8E, 0x3C, 0x20, 0x9B, 0x23, 0x23, 0x07, 0xE0, 0x36, 0x12, 0xC1, 0x78, 0x9D, 0x67, 0xBD, 0xAF, 0xF7, 0x23, 0xBF, 0x11, 0x7E, 0x34, 0x46, 0xA8, 0x34, 0x06, 0xEC, 0x1B, 0xBF, 0x62, 0xAF, 0x1D, 0x70, 0x72, 0x06, 0x08, 0x55, 0x70, 0x54, 0xF2, 0x64, 0x00, 0xD5, 0x60, 0xB4, 0x25, 0x72, 0xA5, 0x7F, 0x60, 0x00, 0xFC, 0x03, 0x97, 0xFE, 0x1F, 0x77, 0x54, 0xB0, 0x04, 0xE7, 0x50, 0x1E, 0xF7, 0xDE, 0xA3, 0xC5, 0x9B, 0xE3, 0x81, 0xC6, 0x43, 0x73, 0x7F, 0xE0, 0x06, 0x3A, 0xB7, 0xD2, 0xF7, 0xF8, 0x67, 0x02, 0x9F, 0x15, 0x3F, 0xBA, 0xC1, 0xD9, 0x23, 0xD3, 0x49, 0xAF, 0x7D, 0x06, 0xED, 0xFA, 0xD4, 0x08, 0xBB, 0x7F, 0x82, 0x91, 0xF0, 0xB1, 0xDD, 0xB9, 0x88, 0x50, 0x51, 0x50, 0xDA, 0x40, 0x18, 0x1E, 0xCE, 0xA4, 0xBE, 0x20, 0x9F, 0xF9, 0x1C, 0x8C, 0x7C, 0x59, 0x4A, 0xD2, 0x7F, 0x66, 0x0E, 0x03, 0xA0, 0xD2, 0xF3, 0xF9, 0xDB, 0xEF, 0xFF, 0x56, 0x18, 0x16, 0x00, 0x6D, 0x9E, 0x06, 0x04, 0x82, 0x74, 0x1F, 0x53, 0x63, 0x11, 0x37, 0xBD, 0xA7, 0x1B, 0xBF, 0xF8, 0x02, 0x7C, 0x55, 0xA0, 0x15, 0x19, 0xEB, 0xD6, 0xF9, 0x3B, 0x20, 0x43, 0x44, 0x23, 0x2A, 0x3F, 0xE4, 0x4C, 0x82, 0xF4, 0x95, 0x2A, 0xFA, 0xD4, 0xF6, 0xCF, 0x66, 0x79, 0xDF, 0x3F, 0xFF, 0x2A, 0x8C, 0x00, 0xA2, 0xB8, 0x1D, 0x31, 0x1E, 0x94, 0xDD, 0x8F, 0xAE, 0xC5, 0xF8, 0xF8, 0x1F, 0xD6, 0x94, 0x63, 0x79, 0x3B, 0xFB, 0x7D, 0xE5, 0x09, 0x41, 0xC2, 0x9B, 0xFE, 0x7D, 0xF9, 0x01, 0x68, 0x5A, 0x2F, 0x9C, 0x23, 0x7F, 0x47, 0xE0, 0x27, 0x2A, 0x56, 0x67, 0x4D, 0x29, 0xE5, 0x85, 0x7B, 0xFD, 0x9B, 0x80, 0x10, 0xA9, 0x1C, 0xA2, 0x64, 0x37, 0xBF, 0xD5, 0xF1, 0x9F, 0x73, 0x4D, 0x59, 0xFE, 0x09, 0xAA, 0xAE, 0xB6, 0xEB, 0x6F, 0x0F, 0x1B, 0x79, 0x80, 0x5A, 0xC4, 0x20, 0x01, 0x7B, 0x20, 0x30, 0x07, 0x8D, 0x73, 0x55, 0xFB, 0x2E, 0xD2, 0x36, 0x03, 0x86, 0x51, 0xFF, 0xD1, 0x20, 0x5F, 0x17, 0x54, 0x9D, 0xC6, 0x27, 0x29, 0xC7, 0x17, 0xE2, 0x16, 0x2B, 0x2A, 0x0B, 0xFD, 0x05, 0x6F, 0x0E, 0x78, 0xC6, 0xF9, 0x84, 0xD9, 0x27, 0x2B, 0xB3, 0xF5, 0x77, 0x3F, 0xCC, 0x01, 0x1E, 0xF4, 0x78, 0x28, 0x35, 0x4C, 0x77, 0xEF, 0x64, 0x01, 0x96, 0xC0, 0xA8, 0xDF, 0x61, 0xD8, 0xD1, 0xDB, 0x5F, 0xDC, 0x20, 0x81, 0x41, 0xD0, 0x15, 0x49, 0xE8, 0x47, 0xFB, 0xEE, 0xC5, 0x66, 0x54, 0x1E, 0xE7, 0x25, 0x78, 0xF7, 0x4E, 0x61, 0x05, 0x40, 0xA8, 0x02, 0xC8, 0x45, 0xDA, 0xFF, 0x49, 0x86, 0x8F, 0x81, 0xBE, 0x74, 0x9A, 0xD0, 0x12, 0x85, 0xF7, 0xC2, 0x5A, 0x2C, 0xE8, 0xC0, 0x53, 0x39, 0xDE, 0x5F, 0x9F, 0xA6, 0xAF, 0x20, 0x59, 0x22, 0x2A, 0x06, 0x1D, 0x9C, 0xA0, 0x3C, 0xEF, 0xC8, 0xAA, 0x92, 0x90, 0x50, 0x0F, 0x39, 0x07, 0x07, 0x4A, 0xBD, 0xCD, 0xFE, 0xD8, 0x66, 0xE2, 0x66, 0xB8, 0x61, 0xEB, 0xA2, 0xCB, 0x41, 0x44, 0x05, 0xE3, 0x98, 0x65, 0x08, 0xA5, 0xF2, 0x7C, 0x04, 0x0E, 0x64, 0xEE, 0xF2, 0xFD, 0x50, 0xA3, 0xEA, 0x99, 0xB1, 0x35, 0xC7, 0x9B, 0x33, 0x34, 0x09, 0x80, 0xC6, 0x36, 0x81, 0x17, 0x77, 0x78, 0x1C, 0xA1, 0xFA, 0x77, 0x44, 0x32, 0xAC, 0xF9, 0x59, 0x4E, 0xDE, 0x83, 0xD5, 0x27, 0x93, 0x7E, 0x25, 0xFC, 0xF5, 0x35, 0x1E, 0x76, 0x8C, 0x2F, 0xAB, 0xFB, 0x40, 0x70, 0x30, 0xA1, 0x00, 0x20, 0x00, 0xCA, 0x03, 0xF8, 0x92, 0x94, 0x20, 0xD8, 0x7A, 0xC7, 0xF8, 0x01, 0x8C, 0x06, 0xC9, 0x30, 0x0D, 0xC9, 0x87, 0x34, 0x42, 0x32, 0x07, 0x51, 0x9C, 0x00, 0x2E, 0x4C, 0x5B, 0x01, 0x33, 0x1B, 0x4C, 0x23, 0x71, 0x23, 0x60, 0x02, 0xEF, 0x2E, 0xA9, 0xF6, 0x0D, 0x03, 0x2A, 0x76, 0x25, 0x35, 0x31, 0x2A, 0xD2, 0xA5, 0xB9, 0xB5, 0x44, 0xE3, 0xC6, 0x80, 0x28, 0xDD, 0xC9, 0x71, 0x04, 0xC9, 0x52, 0x58, 0x98, 0x19, 0x2B, 0x3C, 0x84, 0xF5, 0x0C, 0x90, 0x39, 0x41, 0x37, 0x5C, 0x80, 0x8F, 0x9E, 0xFA, 0x81, 0xF6, 0x1A, 0xED, 0x85, 0xC0, 0xCD, 0x0C, 0x35, 0x81, 0xD0, 0xF8, 0x6F, 0xD0, 0x45, 0x80, 0x0D, 0xBE, 0x54, 0x00, 0x30, 0xAE, 0x0B, 0xAA, 0xAD, 0xA9, 0x47, 0xF8, 0xAD, 0xD3, 0x0C, 0xF3, 0x6E, 0xE2, 0xA2, 0xC6, 0x3C, 0x0A, 0x13, 0xAB, 0xE5, 0x87, 0x27, 0x48, 0xC7, 0xB6, 0x05, 0xD5, 0x6C, 0x64, 0x2C, 0x67, 0x57, 0x32, 0x7C, 0x70, 0x14, 0xAD, 0x93, 0x23, 0x08, 0xD0, 0x86, 0x12, 0x3A, 0x70, 0xEB, 0x61, 0xB9, 0xAB, 0x50, 0xB4, 0x77, 0x95, 0x7E, 0x9D, 0x93, 0x98, 0x80, 0x2A, 0xAF, 0x5F, 0x4F, 0xED, 0xCC, 0x6E, 0x97, 0xB4, 0x30, 0x0D, 0x12, 0x73, 0x15, 0x8E, 0xB4, 0x34, 0x63, 0x3D, 0x77, 0x85, 0xCD, 0x07, 0xB9, 0x9B, 0xAC, 0x34, 0x1A, 0x65, 0x1B, 0x0D, 0xC8, 0xBE, 0xBC, 0x0C, 0x7F, 0x7D, 0x7B, 0x91, 0xA5, 0x6A, 0x54, 0x52, 0xCC, 0xB5, 0x3F, 0xC8, 0x1B, 0x6C, 0x46, 0xF3, 0xC1, 0x80, 0x0B, 0xD8, 0xC0, 0x47, 0xD6, 0xFA, 0x08, 0x71, 0x6A, 0x4D, 0x0A, 0x90, 0x5B, 0x37, 0xF6, 0x13, 0x73, 0x76, 0xBE, 0xD4, 0x90, 0xA1, 0x68, 0x3A, 0x55, 0x04, 0x7B, 0x9B, 0xC1, 0x19, 0x62, 0x2C, 0x8B, 0x63, 0xC7, 0x24, 0xAC, 0xF4, 0x8C, 0x5F, 0x8F, 0x2D, 0x59, 0xC4, 0xCF, 0x60, 0x13, 0x68, 0x20, 0x21, 0x51, 0x9B, 0x90, 0x72, 0x7E, 0x9A, 0xBA, 0x5E, 0x18, 0x9C, 0xB5, 0x98, 0x04, 0xAB, 0x97, 0x07, 0xD4, 0xDA, 0x98, 0x8E, 0xA5, 0xD2, 0x40, 0x4D, 0x85, 0x35, 0x37, 0x96, 0x03, 0x40, 0x83, 0x00, 0xC4, 0x31, 0xD5, 0x68, 0x45, 0xBC, 0xFC, 0x5D, 0x36, 0xDA, 0x1A, 0xC7, 0x50, 0x04, 0x2A, 0x6F, 0x9A, 0xF0, 0x04, 0x5F, 0x3B, 0x43, 0x9F, 0xB8, 0x60, 0xC6, 0x4C, 0xC4, 0x23, 0xFC, 0xF4, 0x9B, 0x42, 0x1F, 0xA1, 0xF2, 0x6F, 0xC8, 0x03, 0x2F, 0xF1, 0xDB, 0xB4, 0x0D, 0x4D, 0xB9, 0x32, 0x01, 0xF9, 0x7B, 0xE9, 0x1F, 0xD9, 0x48, 0xCF, 0xC6, 0x49, 0x8F, 0xDD, 0x4B, 0x87, 0xEF, 0xCA, 0x84, 0x25, 0xF7, 0x54, 0x3C, 0xE1, 0xD2, 0xBD, 0xA8, 0xAD, 0x60, 0x4D, 0x7C, 0x74, 0x4B, 0xDC, 0x9C, 0x00, 0x26, 0x8A, 0x50, 0x18, 0xB3, 0xD5, 0x4C, 0x2F, 0xFF, 0x00, 0x16, 0xA2, 0xA6, 0x7A, 0xAF, 0x5F, 0xB9, 0xF7, 0x3C, 0x1A, 0x36, 0x5F, 0x8B, 0x71, 0xF6, 0x1E, 0x7D, 0xBC, 0xDF, 0x64, 0x68, 0x9F, 0xBF, 0x99, 0xBD, 0x32, 0x9D, 0xB5, 0x37, 0x8D, 0x87, 0xFA, 0xC0, 0x8A, 0x0D, 0x85, 0x5B, 0x2A, 0x9B, 0xFE, 0xD8, 0xB2, 0x6C, 0xBE, 0x2C, 0x87, 0x76, 0xDF, 0x3A, 0xB4, 0xCC, 0xCB, 0xCD, 0x7B, 0xFA, 0x6F, 0x5B, 0x61, 0xCE, 0xF7, 0x6B, 0x7D, 0xA8, 0x99, 0x31, 0x3A, 0xC8, 0xC9, 0x9C, 0x82, 0x89, 0x80, 0x14, 0x25, 0x98, 0x00, 0x20, 0x10, 0xBB, 0x11, 0x1D, 0xB6, 0xA4, 0x13, 0x4E, 0xC1, 0x34, 0xD7, 0x9F, 0x00, 0xB5, 0x0D, 0xE3, 0xD7, 0x26, 0xEC, 0x83, 0x69, 0x8F, 0xEA, 0x68, 0x94, 0x1B, 0x93, 0x90, 0x18, 0x3F, 0x9F, 0x0A, 0xC4, 0x56, 0xB0, 0xBE, 0x01, 0xA9, 0xAB, 0x77, 0x15, 0x53, 0xA7, 0xD7, 0x1B, 0xFB, 0xDC, 0xEA, 0x75, 0x60, 0x67, 0xF8, 0x53, 0xAF, 0xA7, 0xE9, 0x7E, 0x59, 0xF0, 0x04, 0x2E, 0xE7, 0xC0, 0xEA, 0x07, 0x0A, 0x81, 0x1E, 0xA1, 0x13, 0x5F, 0xD7, 0x58, 0xB9, 0x0F, 0x2A, 0x2F, 0x94, 0x75, 0x7D, 0x67, 0xF0, 0x91, 0x76, 0x31, 0x94, 0x8F, 0x59, 0xFF, 0x7C, 0xBB, 0xAB, 0x9C, 0x6B, 0x54, 0x01, 0x1C, 0xC7, 0x2D, 0x73, 0x48, 0x8D, 0x00, 0x1F, 0xA3, 0xA4, 0x87, 0xF9, 0x52, 0xA8, 0x04, 0xA6, 0x97, 0xCA, 0xE7, 0x47, 0x7E, 0xD4, 0x0F, 0xC5, 0x0E, 0xAB, 0xE6, 0xFD, 0x03, 0x80, 0x01, 0x1E, 0xC1, 0x02, 0x18, 0x87, 0x84, 0xB7, 0x10, 0x36, 0xDC, 0x69, 0xF8, 0x67, 0x54, 0x30, 0x08, 0xED, 0x66, 0x21, 0x6B, 0x7D, 0x99, 0xA2, 0x68, 0x83, 0xD3, 0x0C, 0xBD, 0xAF, 0x0F, 0xEF, 0xF6, 0x36, 0xDA, 0xC5, 0x2F, 0x32, 0x76, 0xE2, 0x09, 0x09, 0xF4, 0x16, 0x9B, 0xA0, 0xD3, 0x5E, 0x67, 0x13, 0xFB, 0xF0, 0x77, 0xFF, 0x81, 0x8A, 0x3C, 0x2E, 0x56, 0x62, 0xD3, 0x88, 0xFB, 0x4D, 0x8E, 0x43, 0xF6, 0x37, 0x2F, 0x22, 0x05, 0x4A, 0x73, 0x68, 0x04, 0xEE, 0xAB, 0x7E, 0x1E, 0x22, 0x7B, 0x8F, 0xDC, 0xF5, 0x87, 0xBF, 0xFA, 0x7C, 0x07, 0x76, 0xFC, 0x00, 0xCC, 0x06, 0x28, 0xB2, 0xA4, 0x24, 0xC9, 0x97, 0x7B, 0xB5, 0xB1, 0xDC, 0x14, 0x93, 0x00, 0x3F, 0xCE, 0x19, 0x43, 0x1B, 0x1F, 0x4D, 0x14, 0xD4, 0x34, 0x0E, 0x5F, 0x20, 0xFC, 0x37, 0xAA, 0x09, 0x77, 0x00, 0x32, 0x3A, 0x5B, 0xAF, 0xBF, 0xF1, 0x3F, 0xA4, 0x8D, 0xE8, 0x3D, 0xE2, 0x40, 0x8A, 0xA6, 0x50, 0xEA, 0x8B, 0x75, 0xDA, 0x7A, 0xD2, 0x19, 0x01, 0x0C, 0x0F, 0x72, 0x03, 0x17, 0x0B, 0xEE, 0x7A, 0xFD, 0x03, 0xF5, 0xCD, 0x39, 0x58, 0x09, 0x1C, 0x9F, 0x8E, 0x01, 0x15, 0xDF, 0x98, 0x00, 0x08, 0x00, 0x70, 0x71, 0xF1, 0x36, 0x99, 0x8F, 0x92, 0x10, 0xF8, 0x35, 0xB6, 0x64, 0x7F, 0x3B, 0x6E, 0x50, 0xD8, 0x2E, 0xEC, 0x36, 0x42, 0x9A, 0xFD, 0xB6, 0x2B, 0xBC, 0x71, 0x31, 0x44, 0xB7, 0xB7, 0xF0, 0x0B, 0xA1, 0x5F, 0x2A, 0x83, 0xCC, 0xDD, 0xC4, 0xFF, 0xFE, 0xB5, 0x3C, 0x06, 0x9D, 0xFE, 0x5E, 0x7F, 0xD7, 0xE3, 0x18, 0x82, 0x59, 0x0D, 0x53, 0x83, 0x5A, 0x5D, 0xFB, 0xDA, 0x60, 0x14, 0x86, 0x08, 0x2D, 0xF5, 0x0D, 0x3F, 0xC0, 0xB1, 0x26, 0x03, 0xD4, 0xA2, 0xB1, 0x83, 0x19, 0x25, 0x76, 0xF8, 0x00, 0x38, 0x02, 0x2E, 0xDD, 0x77, 0xDC, 0x3F, 0xCC, 0xD0, 0xF7, 0x10, 0x60, 0x0E, 0x6D, 0x0A, 0x77, 0xE9, 0xAB, 0x80, 0xE3, 0x58, 0x52, 0xD6, 0x5A, 0xEE, 0xAF, 0x89, 0xB3, 0x14, 0x51, 0xFE, 0xEF, 0x00, 0xFB, 0xF9, 0x84, 0xC9, 0x3B, 0x66, 0x0F, 0xFF, 0xD6, 0xED, 0x08, 0x0A, 0x06, 0xB9, 0x1C, 0x34, 0x06, 0x3A, 0xE0, 0xD6, 0x97, 0x5E, 0xD5, 0xB1, 0x3F, 0x31, 0xB5, 0x0F, 0xF7, 0x6F, 0xAF, 0xA0, 0x6F, 0x03, 0x64, 0x1A, 0x48, 0x36, 0xF6, 0xBA, 0xD5, 0x8E, 0xD3, 0x42, 0xF4, 0x4F, 0x9A, 0x8C, 0xEF, 0xB3, 0xF1, 0x64, 0x92, 0x72, 0x15, 0xE3, 0x9A, 0xC5, 0x31, 0x40, 0x1B, 0x48, 0x3F, 0xD4, 0x88, 0x63, 0x9E, 0xDD, 0x81, 0x14, 0x82, 0x7F, 0x08, 0x5D, 0xDD, 0x49, 0x7F, 0xFF, 0xE3, 0x70, 0xC2, 0xBF, 0xDC, 0x60, 0x2C, 0x69, 0xCE, 0x97, 0xB7, 0xE9, 0x98, 0x97, 0x68, 0x93, 0xA5, 0xFA, 0x60, 0x7A, 0x67, 0x04, 0x05, 0x97, 0x30, 0xE1, 0xC2, 0x53, 0xDC, 0xD5, 0x44, 0x0A, 0x05, 0x00, 0x0C, 0xEA, 0xF6, 0xE1, 0xF2, 0x1F, 0xFF, 0x6C, 0xB5, 0x20, 0x68, 0x91, 0x0A, 0xFA, 0xF4, 0x80, 0x7A, 0x87, 0x9A, 0x85, 0xD7, 0xBF, 0xBF, 0x8C, 0x22, 0xD9, 0xE0, 0xA9, 0x4D, 0x16, 0xBF, 0xEF, 0x81, 0xDF, 0xF0, 0xFC, 0x41, 0x4C, 0x08, 0x36, 0xF3, 0x6C, 0x1D, 0x72, 0x19, 0xAF, 0xAD, 0x9C, 0x2F, 0x88, 0x05, 0x46, 0x1B, 0x58, 0xF6, 0x19, 0x4E, 0x60, 0xD5, 0x16, 0x8F, 0xDA, 0x33, 0xC4, 0xDE, 0x00, 0x5E, 0x11, 0xEC, 0xBE, 0xB2, 0x29, 0x0B, 0xDF, 0xB1, 0x33, 0x73, 0x08, 0x3B, 0xAE, 0xA1, 0x2D, 0x78, 0x0D, 0x48, 0x39, 0x6F, 0xCF, 0x98, 0x85, 0x3E, 0xC3, 0x38, 0xF7, 0x90, 0x05, 0xBA, 0x4F, 0xEC, 0xE1, 0x13, 0xF0, 0x6F, 0x41, 0xEE, 0xA7, 0x5C, 0x3F, 0x9B, 0x6B, 0xF7, 0x5F, 0x25, 0x91, 0x80, 0x01, 0xC0, 0xF7, 0x77, 0x80, 0xDC, 0x29, 0x87, 0xA2, 0xAB, 0x66, 0x74, 0xDD, 0x22, 0xDA, 0xE3, 0xAA, 0x14, 0x71, 0x99, 0x18, 0x32, 0xFF, 0x51, 0x1B, 0x0B, 0x38, 0x6E, 0xB5, 0xDA, 0xD0, 0x77, 0xBF, 0x46, 0x85, 0xF5, 0x80, 0x30, 0xCC, 0xD6, 0x65, 0x5A, 0x1F, 0x45, 0x49, 0x9F, 0x32, 0xB0, 0xDF, 0xC6, 0x78, 0xF5, 0x0F, 0xA8, 0xA9, 0xD3, 0x16, 0x63, 0x6B, 0xEC, 0x50, 0x47, 0xB4, 0xFF, 0x82, 0x20, 0xED, 0xE3, 0x17, 0xE3, 0xFD, 0xAA, 0x3D, 0x0F, 0x74, 0x2C, 0x1A, 0x4B, 0xFE, 0xE1, 0x20, 0xCA, 0xF8, 0x53, 0x69, 0xC3, 0x31, 0x6A, 0x3E, 0xB9, 0x39, 0x0E, 0x89, 0x11, 0xCF, 0xF9, 0xFB, 0xC2, 0x3C, 0x4F, 0xFC, 0x28, 0x98, 0xDE, 0x19, 0x14, 0xE5, 0xAF, 0xFF, 0x7D, 0xB0, 0x7B, 0xE0, 0x9D, 0xCC, 0xA5, 0x53, 0x5C, 0xD2, 0x40, 0xC2, 0xEA, 0x26, 0x18, 0xA9, 0xE4, 0xBE, 0xF5, 0xBF, 0xDE, 0x80, 0x2E, 0x13, 0xFD, 0xDD, 0xAF, 0xCE, 0x0F, 0xE1, 0x9A, 0x7C, 0x02, 0x63, 0x04, 0x26, 0xC9, 0xB3, 0xE4, 0xF9, 0x1D, 0x6C, 0x88, 0x65, 0xA7, 0x40, 0x80, 0x8B, 0xB3, 0x42, 0x64, 0xC1, 0x98, 0xF5, 0x9E, 0xEB, 0xF1, 0xF7, 0x98, 0xFD, 0x46, 0x53, 0x3E, 0x78, 0x68, 0x4F, 0xEC, 0x83, 0x23, 0x21, 0xE0, 0xFC, 0xE4, 0x8B, 0xFF, 0xDB, 0x19, 0x7B, 0x58, 0x3D, 0x0B, 0xAE, 0x54, 0xD4, 0xCB, 0x6F, 0x48, 0xE5, 0x99, 0xDA, 0x0A, 0x9D, 0x3F, 0x7D, 0x60, 0x05, 0x8F, 0x91, 0x9D, 0xDF, 0xFA, 0xAF, 0xDB, 0x29, 0x6A, 0x09, 0xDD, 0x19, 0xBA, 0xFF, 0xF7, 0xB1, 0xFF, 0xA2, 0x56, 0x59, 0x28, 0x5F, 0x82, 0xFC, 0xE1, 0x22, 0x92, 0xB0, 0xBB, 0xD0, 0x37, 0xD0, 0x19, 0xB5, 0x84, 0x5E, 0x8B, 0xFC, 0x9D, 0x85, 0xF7, 0x5E, 0xFC, 0xE3, 0x69, 0xC4, 0xED, 0xF2, 0xDE, 0x1D, 0x6A, 0x38, 0xD2, 0x7C, 0x2F, 0x4C, 0x2B, 0x8D, 0xEC, 0xF0, 0x67, 0xDE, 0x03, 0xB7, 0x41, 0x60, 0xD8, 0x11, 0x76, 0x30, 0x29, 0x9F, 0x9E, 0xA1, 0xCA, 0x09, 0x43, 0x89, 0x0E, 0x90, 0x82, 0xD7, 0xFB, 0xC3, 0x01, 0x8F, 0x95, 0xF7, 0x1C, 0xF4, 0x58, 0x6E, 0x1D, 0x5C, 0xF0, 0x6C, 0x19, 0x21, 0xD4, 0xE8, 0x17, 0x6A, 0x38, 0x19, 0x36, 0x0C, 0x4E, 0x0F, 0xAD, 0x52, 0xB6, 0xDD, 0x86, 0xE4, 0xD7, 0x1A, 0x84, 0x7A, 0xE1, 0x94, 0x00, 0x36, 0x7B, 0xCD, 0xDD, 0xBF, 0x56, 0x8E, 0x4A, 0xC0, 0x79, 0x2F, 0x77, 0xF7, 0xD6, 0xE7, 0xD0, 0xD3, 0x4B, 0xC6, 0xFF, 0xBF, 0x42, 0x95, 0xB6, 0xEB, 0x3D, 0x70, 0xA9, 0x3C, 0xE6, 0xFD, 0xEF, 0x0A, 0x6E, 0x7B, 0xDF, 0xF2, 0x03, 0x10, 0x90, 0xD9, 0xF7, 0x2F, 0xF6, 0xEA, 0x7C, 0x50, 0xE3, 0xD4, 0xDF, 0xDE, 0x6E, 0x00, 0x00, 0x8B, 0xCD, 0x75, 0xEC, 0xD3, 0xE0, 0x50, 0xFA, 0x7B, 0xC2, 0x77, 0x3E, 0x35, 0xE6, 0x59, 0x92, 0xDA, 0x4B, 0xBB, 0xB0, 0x7D, 0xF2, 0x4D, 0xA0, 0xE4, 0x4E, 0xA0, 0xBC, 0x3B, 0x00, 0xB7, 0x90, 0x03, 0xFD, 0xD0, 0xC9, 0xFE, 0xBE, 0x15, 0xD7, 0xC3, 0xD9, 0x7F, 0xEF, 0x3D, 0xA0, 0x43, 0x90, 0x9A, 0xC7, 0x5D, 0x70, 0x2F, 0xDF, 0x70, 0xAB, 0xBC, 0x24, 0xCC, 0x76, 0xFF, 0xED, 0xDE, 0x53, 0x0F, 0xA9, 0xA7, 0x97, 0x7E, 0xAC, 0x00, 0x65, 0xA1, 0x75, 0x22, 0x3F, 0xF3, 0xB3, 0x0E, 0x3F, 0x56, 0x56, 0x66, 0xEF, 0xE0, 0x1D, 0x57, 0xAC, 0xE4, 0xB9, 0xEB, 0x8F, 0x7E, 0x10, 0x97, 0x58, 0xFA, 0x08, 0xDC, 0x34, 0xCE, 0x44, 0xFB, 0xEF, 0x53, 0x9C, 0x88, 0x84, 0x79, 0x7D, 0xF0, 0x07, 0x00, 0x02, 0x08, 0x38, 0x42, 0x00, 0x02, 0x01, 0x74, 0x00, 0x08, 0xB7, 0xF8, 0x50, 0x00, 0x7B, 0xFC, 0x50, 0x22, 0x0D, 0xCD, 0xCF, 0xCC, 0x2F, 0xCD, 0xE5, 0xA3, 0x9F, 0xBD, 0x65, 0x79, 0x0B, 0x0A, 0xB3, 0xA9, 0x81, 0x96, 0xD8, 0x19, 0xD9, 0x8A, 0x64, 0x60, 0x2A, 0xE6, 0x20, 0xFE, 0x1E, 0x4A, 0x33, 0x9D, 0x6D, 0xE3, 0x96, 0x3B, 0x07, 0x5F, 0x30, 0x0D, 0x79, 0x59, 0x1B, 0xFE, 0x1D, 0x62, 0xF9, 0x9F, 0xFD, 0xF8, 0x63, 0xED, 0x91, 0xCD, 0xFD, 0xFC, 0xBD, 0x7A, 0xA9, 0xE4, 0x77, 0xCC, 0xD4, 0xF1, 0x99, 0x73, 0xB3, 0xDD, 0x6D, 0x75, 0xB0, 0xC9, 0x16, 0xA2, 0xD2, 0xFF, 0xB0, 0xF3, 0x39, 0xEF, 0xF6, 0xC7, 0xD2, 0x6A, 0x6A, 0x40, 0x3B, 0xFA, 0x18, 0xA3, 0x32, 0x82, 0x02, 0x25, 0xBC, 0x9E, 0x1A, 0xE7, 0x28, 0xF5, 0x7D, 0x54, 0xC3, 0xCA, 0xE0, 0xC2, 0x01, 0xA3, 0x98, 0x10, 0x06, 0x70, 0xCC, 0x1C, 0x17, 0xA1, 0x83, 0xC2, 0x66, 0xCC, 0x90, 0xDF, 0x5D, 0x7D, 0x1D, 0x06, 0x5B, 0x2D, 0xCD, 0xDD, 0x87, 0x57, 0xDA, 0x20, 0xBB, 0x63, 0x87, 0x5C, 0x11, 0x64, 0x4C, 0x6C, 0x10, 0x16, 0x47, 0x32, 0x2A, 0x5D, 0xF7, 0xF1, 0x5A, 0x6D, 0xBF, 0xB2, 0x6D, 0xFC, 0x74, 0x50, 0x96, 0xBF, 0xB8, 0x08, 0xCE, 0xB8, 0x08, 0x3E, 0xA3, 0xFC, 0x8C, 0x4B, 0x6E, 0xCF, 0x1C, 0x82, 0x3D, 0x23, 0x8F, 0x09, 0x99, 0x88, 0x9D, 0x61, 0xC3, 0x2A, 0xE2, 0x89, 0xC7, 0xA6, 0x9B, 0xD2, 0x11, 0x22, 0x2E, 0x5F, 0xEA, 0x6D, 0xDD, 0x0E, 0x59, 0x3A, 0xC2, 0x00, 0x03, 0x00, 0x28, 0x87, 0x42, 0x00, 0x20, 0xE8, 0x93, 0x11, 0xFC, 0x49, 0xF4, 0x6E, 0x3A, 0x93, 0x5A, 0xEF, 0x5A, 0x64, 0xDB, 0x28, 0x8D, 0x41, 0x0F, 0x67, 0x5C, 0xC7, 0x8E, 0xC5, 0x4F, 0x06, 0x88, 0x5D, 0xDD, 0xC0, 0x37, 0xFE, 0x81, 0x01, 0x55, 0xF4, 0x38, 0xF6, 0x85, 0x57, 0x51, 0xAA, 0x75, 0x4F, 0x60, 0xA0, 0xE5, 0xA9, 0xA3, 0xB5, 0xD4, 0x35, 0xAF, 0xB3, 0x9D, 0x55, 0x1F, 0xED, 0x8E, 0x92, 0x51, 0xBC, 0x38, 0x8F, 0xFC, 0xB5, 0x68, 0x1C, 0x54, 0x20, 0x08, 0x53, 0x46, 0x76, 0x60, 0x2F, 0xF1, 0xF5, 0x18, 0x21, 0x0D, 0x93, 0x12, 0x20, 0xE5, 0xAC, 0x08, 0x3E, 0x19, 0x76, 0x71, 0xB4, 0x92, 0x94, 0x22, 0xD2, 0x71, 0x2B, 0x93, 0xE9, 0xBB, 0x2F, 0xDE, 0x06, 0xB5, 0x48, 0x2D, 0x6A, 0xD1, 0x90, 0x75, 0x25, 0xFA, 0x3F, 0xF9, 0x23, 0x22, 0x57, 0x7A, 0x86, 0x01, 0x49, 0x81, 0xAA, 0x18, 0xDD, 0x68, 0xF8, 0x02, 0x9F, 0x57, 0xAB, 0x7F, 0x26, 0xB6, 0x7E, 0xC0, 0x40, 0x93, 0x12, 0x68, 0xD3, 0x9E, 0xFE, 0xB3, 0xA1, 0x69, 0xC3, 0xFC, 0x79, 0x87, 0xBD, 0x46, 0x35, 0x48, 0x58, 0x29, 0x9A, 0x08, 0x01, 0x19, 0xC9, 0xFD, 0xC0, 0x81, 0xCF, 0x0F, 0x81, 0x95, 0xC2, 0x70, 0x00, 0xE6, 0xDF, 0x21, 0xC1, 0xEF, 0xA2, 0x81, 0x19, 0xB6, 0x8D, 0x7A, 0x33, 0x20, 0x55, 0xC7, 0xD4, 0xFD, 0xB1, 0x59, 0x8C, 0xDD, 0x61, 0x3B, 0x94, 0x09, 0xAE, 0x31, 0xBD, 0x9F, 0xFD, 0x53, 0x5B, 0xB1, 0x42, 0xB7, 0x3B, 0xA9, 0x1D, 0xB5, 0x0A, 0x93, 0x43, 0x24, 0x02, 0xB5, 0x68, 0xDF, 0xBF, 0x1F, 0x3D, 0x0D, 0x26, 0xB1, 0x25, 0x95, 0x2D, 0x78, 0x9B, 0x38, 0x3E, 0x3F, 0xBD, 0x26, 0x31, 0x7B, 0xE1, 0xF1, 0x43, 0x57, 0xDE, 0x17, 0x30, 0x9B, 0x49, 0xC1, 0xDD, 0x4B, 0xDF, 0x81, 0x01, 0x29, 0x14, 0x20, 0x00, 0x50, 0x5A, 0x04, 0x43, 0x14, 0x75, 0x25, 0xA0, 0xC8, 0xD7, 0xE2, 0x40, 0xF1, 0xB6, 0x8D, 0x97, 0x04, 0x8C, 0x1F, 0x44, 0x65, 0x35, 0x34, 0x51, 0x41, 0x44, 0x35, 0x5A, 0x0D, 0xB8, 0xBD, 0x7E, 0x43, 0xB0, 0xE6, 0x52, 0x42, 0x14, 0xFE, 0x3D, 0x0E, 0x95, 0x6E, 0x76, 0x56, 0x9F, 0xCA, 0x7E, 0xB3, 0x53, 0x71, 0x33, 0x51, 0xFC, 0xAD, 0x34, 0xD1, 0xE0, 0xB1, 0x0C, 0xC0, 0x88, 0x3D, 0xFD, 0x46, 0xF4, 0xD8, 0x0B, 0x0E, 0xF2, 0x2F, 0x01, 0xB3, 0x21, 0x4A, 0xA5, 0x6D, 0x5B, 0xE6, 0xEE, 0x1E, 0x1C, 0x56, 0x03, 0x76, 0x29, 0x7E, 0x15, 0x92, 0xD6, 0x24, 0xFA, 0xFA, 0x1F, 0x5E, 0x0E, 0x80, 0x1F, 0xFF, 0xCA, 0xB0, 0x31, 0x81, 0x7E, 0x4C, 0xEF, 0xEF, 0x33, 0x8A, 0x30, 0xBA, 0x75, 0x13, 0xF7, 0xFB, 0x28, 0x7D, 0x2F, 0x22, 0x10, 0x15, 0x43, 0xD7, 0xEA, 0x21, 0x8B, 0x71, 0x92, 0x85, 0x2D, 0x7B, 0x9E, 0x08, 0x0B, 0x88, 0xF0, 0xC0, 0x01, 0x1B, 0x5C, 0x32, 0x6D, 0x06, 0x87, 0xC1, 0xC9, 0xEC, 0xCE, 0xEC, 0x87, 0x98, 0x80, 0xA8, 0xC3, 0x41, 0xE0, 0xAB, 0x82, 0x14, 0xBA, 0xA5, 0x7D, 0x48, 0xC4, 0xCC, 0x91, 0x99, 0x1D, 0x49, 0xD1, 0xBB, 0xD1, 0x0A, 0x2C, 0x89, 0xFF, 0x28, 0x60, 0x01, 0x8D, 0x0E, 0xC0, 0xB4, 0x6A, 0xDA, 0x47, 0x02, 0xF1, 0x8B, 0x29, 0x69, 0xA8, 0xB9, 0x60, 0xF0, 0x88, 0xC1, 0xFB, 0xB4, 0x93, 0xCD, 0xA8, 0x8E, 0x8C, 0xBC, 0x1A, 0x99, 0x3C, 0x14, 0x87, 0xC0, 0xF5, 0x41, 0xD4, 0xF1, 0xDD, 0xD6, 0xE7, 0xEF, 0x83, 0xE2, 0xCE, 0x98, 0xF2, 0xFF, 0xBF, 0xC5, 0x32, 0x11, 0x77, 0x10, 0xB0, 0x8B, 0xA6, 0xFC, 0xB7, 0x63, 0x96, 0x13, 0x74, 0x86, 0x5F, 0xFF, 0x56, 0x79, 0x63, 0xED, 0x4C, 0x0E, 0x90, 0x51, 0xF7, 0xBA, 0x48, 0xE4, 0x1C, 0x9B, 0x33, 0xBA, 0xEB, 0xD5, 0x8D, 0x38, 0x26, 0x18, 0xCB, 0x82, 0x6D, 0xEE, 0xC4, 0xC4, 0x77, 0x33, 0x29, 0x22, 0x59, 0xE3, 0xE1, 0x31, 0xAB, 0xAF, 0x7E, 0x04, 0x52, 0x04, 0x10, 0x02, 0x3F, 0xD2, 0x16, 0x19, 0x61, 0x2F, 0x4A, 0xB8, 0x97, 0x68, 0x23, 0x47, 0xAE, 0xB5, 0xDF, 0xCA, 0x8F, 0xAB, 0x1F, 0xAD, 0xED, 0xE3, 0x60, 0x79, 0x34, 0xC1, 0x2B, 0xDA, 0x2E, 0x6D, 0x8A, 0x2F, 0xDB, 0x26, 0x98, 0xB6, 0x18, 0xEE, 0x71, 0x14, 0xCC, 0x6A, 0x81, 0xC7, 0x75, 0x3F, 0xEF, 0x00, 0xC3, 0x9A, 0xAB, 0xFD, 0x1A, 0xDC, 0xC2, 0x5F, 0x22, 0x0E, 0xF9, 0x1B, 0x32, 0xE4, 0x64, 0x03, 0x41, 0x54, 0xC7, 0xDE, 0x04, 0x8E, 0xA3, 0x93, 0x7C, 0x20, 0x37, 0x79, 0xD4, 0x4F, 0x77, 0xF8, 0x7F, 0xEC, 0x2B, 0xD0, 0xFD, 0x3F, 0xFF, 0xFB, 0x0D, 0xDD, 0xD3, 0x34, 0x45, 0x45, 0x26, 0x5E, 0xB9, 0x9E, 0xF4, 0xEB, 0x05, 0x55, 0x39, 0x93, 0x2E, 0x98, 0x66, 0x95, 0x97, 0x63, 0xE1, 0xB0, 0x87, 0xFD, 0x75, 0x5D, 0x42, 0x4A, 0x03, 0x80, 0xBB, 0x0E, 0x2E, 0x1F, 0x83, 0x92, 0x5B, 0x3D, 0x16, 0x7D, 0xD8, 0x7A, 0x7E, 0x04, 0x2F, 0x4F, 0xCB, 0x9B, 0x6F, 0x93, 0x7B, 0x74, 0x71, 0xFF, 0xB1, 0x50, 0xF5, 0x00, 0xC2, 0x4E, 0x6B, 0x76, 0xE4, 0x58, 0xCB, 0x61, 0xAA, 0x3E, 0xCD, 0xDF, 0x7C, 0x00, 0xAD, 0x05, 0xCE, 0x3B, 0x33, 0x57, 0x64, 0x84, 0x33, 0x80, 0xD7, 0xD5, 0x3D, 0x7C, 0x1A, 0xB3, 0xE4, 0xFF, 0x81, 0xFF, 0x76, 0xDA, 0x7C, 0x6F, 0xE5, 0xFC, 0x6E, 0x93, 0x0B, 0xAF, 0x67, 0xE8, 0x63, 0xA6, 0xDB, 0x97, 0xFC, 0xFA, 0x27, 0xA3, 0x1C, 0x47, 0xFB, 0xAC, 0xB6, 0xCF, 0xF5, 0xFC, 0x07, 0xFF, 0xDE, 0x7F, 0xF3, 0xF0, 0x02, 0xA2, 0x5B, 0x97, 0xEC, 0xA2, 0x8E, 0xA2, 0x7F, 0xAA, 0xB6, 0xBE, 0x76, 0xBD, 0xFD, 0x5F, 0xD5, 0xF1, 0xFC, 0x33, 0x90, 0x5F, 0x4C, 0x18, 0xA2, 0xDE, 0x00, 0x19, 0xF6, 0xCA, 0x67, 0x24, 0xDA, 0xB7, 0xB4, 0x28, 0xBD, 0x82, 0x43, 0xCC, 0x1D, 0x5E, 0x49, 0xFA, 0xD7, 0x7F, 0x3F, 0x38, 0x16, 0x1F, 0xAA, 0x27, 0x80, 0xB6, 0xDD, 0x2E, 0x14, 0xDF, 0xAB, 0x3B, 0xFF, 0xF1, 0x49, 0xF2, 0xBF, 0xE0, 0x01, 0x39, 0x1B, 0x72, 0xBF, 0xA1, 0xF0, 0xC3, 0x0B, 0x06, 0xB5, 0x5F, 0x44, 0xD3, 0x60, 0x20, 0xB2, 0xA6, 0x98, 0x98, 0xB7, 0xB6, 0x4B, 0x8E, 0x2E, 0x23, 0xF5, 0x54, 0x6F, 0x3E, 0x25, 0xA0, 0xD6, 0xDC, 0xE4, 0xA5, 0xBD, 0x9B, 0xF8, 0xD0, 0x99, 0x00, 0x6A, 0xA4, 0xDA, 0x7E, 0x74, 0x80, 0x98, 0x86, 0xAE, 0x82, 0x9B, 0x0C, 0x11, 0x8E, 0x3A, 0xFF, 0xF7, 0x10, 0xE3, 0xA4, 0xC1, 0x69, 0x84, 0xF7, 0xCB, 0x5F, 0x57, 0x8E, 0x90, 0x55, 0x28, 0xCE, 0x7C, 0x90, 0x6F, 0x50, 0xD0, 0xC2, 0x16, 0x54, 0xCD, 0xDA, 0x00, 0xEF, 0xA3, 0x02, 0x8E, 0xCA, 0x08, 0x27, 0x3F, 0x6A, 0x82, 0x4B, 0x0A, 0x15, 0xB9, 0x90, 0x46, 0x3F, 0xEB, 0xB8, 0x7F, 0x14, 0xF8, 0xCA, 0xEA, 0x24, 0x1B, 0xD0, 0xF5, 0x7E, 0xD2, 0x0E, 0x1C, 0x9C, 0x7A, 0x6B, 0x2C, 0xDB, 0x85, 0xEE, 0x89, 0xE1, 0x0F, 0xF1, 0xEF, 0x1F, 0x86, 0xF8, 0x30, 0x31, 0x69, 0x35, 0x19, 0x7A, 0x33, 0xC0, 0x0F, 0x25, 0xCE, 0x35, 0x48, 0x26, 0xB3, 0xE7, 0x5E, 0x21, 0x01, 0xC7, 0x00, 0x65, 0xF4, 0x85, 0xD9, 0x0B, 0xE2, 0xF0, 0xC6, 0x1E, 0x09, 0x13, 0xA7, 0x1A, 0xC0, 0xF9, 0xF9, 0xE1, 0xA3, 0x5F, 0x48, 0x17, 0xEF, 0xC0, 0x74, 0x64, 0x8A, 0x57, 0xDF, 0xB6, 0x38, 0x6F, 0x2D, 0x5A, 0x62, 0x58, 0x7F, 0xF0, 0x7B, 0x2A, 0xFF, 0x3F, 0x5A, 0x65, 0xA0, 0x48, 0x71, 0xF1, 0x5B, 0xA7, 0x6C, 0x15, 0x55, 0xBC, 0x7E, 0x61, 0x17, 0x6D, 0x06, 0xF2, 0xDE, 0xE4, 0x27, 0xD0, 0x10, 0x0D, 0x94, 0x35, 0x5F, 0xAE, 0x5A, 0xD9, 0x0A, 0x89, 0xD6, 0x4D, 0xB3, 0xFE, 0xFE, 0x14, 0x77, 0x02, 0xCF, 0x22, 0x63, 0x59, 0xB4, 0x86, 0xEE, 0x3E, 0x31, 0x2F, 0x83, 0xBC, 0xE0, 0x60, 0x60, 0x62, 0xA0, 0x93, 0x32, 0x51, 0xE3, 0x6E, 0xA4, 0x05, 0xA6, 0x9E, 0xB5, 0x8D, 0x80, 0xA8, 0x6B, 0x69, 0xD7, 0xF5, 0x16, 0xB1, 0x7B, 0x73, 0xE4, 0x8C, 0x69, 0xFB, 0x8B, 0xA4, 0x1F, 0x8F, 0x04, 0xCA, 0x2C, 0xB9, 0x3A, 0x12, 0x36, 0x2C, 0xB5, 0xAB, 0xFC, 0x3F, 0x88, 0xB8, 0x23, 0x4B, 0x7F, 0x6A, 0x5A, 0x8C, 0x1C, 0x5E, 0x78, 0x70, 0x25, 0xFD, 0xBA, 0x1E, 0x2A, 0xAE, 0xD8, 0x6F, 0xFE, 0x50, 0xD0, 0xA5, 0x47, 0xCC, 0x07, 0x00, 0x02, 0x66, 0x20, 0xB1, 0x8C, 0xB3, 0x29, 0xB0, 0xF0, 0x8E, 0x40, 0xD7, 0xF3, 0x0C, 0xAF, 0x62, 0x0F, 0x40, 0xF7, 0x07, 0x08, 0x90, 0x9C, 0xD0, 0xFE, 0xF7, 0x41, 0x01, 0x09, 0xAA, 0x8C, 0x5F, 0xE4, 0x26, 0x61, 0x4A, 0xFA, 0x0F, 0xC7, 0xFC, 0xDF, 0x02, 0xD3, 0x27, 0xFC, 0x97, 0x92, 0x0A, 0x16, 0x2F, 0x52, 0x1F, 0x7A, 0xF4, 0x62, 0xF9, 0x95, 0x4F, 0x32, 0xF4, 0x31, 0x87, 0x76, 0x4C, 0x87, 0x1E, 0x81, 0xF6, 0x83, 0x56, 0x09, 0x71, 0x37, 0x55, 0x84, 0x71, 0x6C, 0x90, 0x77, 0x21, 0x5F, 0xAC, 0x06, 0xF4, 0x90, 0xE6, 0x8E, 0x15, 0xA5, 0x9A, 0xED, 0x5A, 0x30, 0x06, 0xE0, 0x22, 0x2F, 0x79, 0x8F, 0x38, 0xB2, 0x05, 0x0E, 0x9C, 0x77, 0xFF, 0xB6, 0xCA, 0x92, 0x54, 0xF0, 0xFB, 0xAE, 0x0C, 0x25, 0x40, 0x20, 0x01, 0x18, 0xA5, 0xC1, 0xA2, 0x01, 0xEB, 0x9E, 0xDB, 0xB8, 0xDE, 0xBC, 0x47, 0xCD, 0x85, 0x59, 0xE2, 0x13, 0x03, 0xF6, 0xC5, 0x2B, 0x8C, 0x80, 0x08, 0x22, 0x48, 0xD0, 0x05, 0x0C, 0xC0, 0x6F, 0x75, 0x5A, 0xDD, 0x18, 0xC5, 0x52, 0xEC, 0x22, 0xD0, 0x31, 0xEA, 0x01, 0xE4, 0x6F, 0x89, 0x6B, 0xF3, 0xE8, 0xB9, 0x1A, 0xDE, 0xA7, 0xA9, 0x20, 0x3E, 0x84, 0x47, 0xD7, 0xE0, 0xF0, 0x3B, 0x70, 0xC9, 0x70, 0x74, 0x2B, 0xF1, 0xE3, 0x2E, 0xE9, 0x78, 0x32, 0x00, 0xCC, 0x7F, 0x7F, 0xBD, 0xA7, 0xDA, 0x33, 0xC0, 0x18, 0xB3, 0x0A, 0x05, 0x05, 0x97, 0x5E, 0x04, 0xC8, 0xD7, 0x68, 0xB8, 0xC8, 0x20, 0x8B, 0x72, 0x01, 0x21, 0xEB, 0x29, 0x02, 0xE8, 0x83, 0xDE, 0x3D, 0xE6, 0x26, 0x2A, 0x4E, 0x20, 0x26, 0xFD, 0xF6, 0xD0, 0x2A, 0x44, 0x16, 0xD4, 0x86, 0x40, 0x6B, 0x4D, 0x90, 0x29, 0x15, 0x9C, 0xC0, 0xBB, 0xE8, 0x00, 0xCF, 0x7C, 0x0E, 0x03, 0xEC, 0x89, 0x5F, 0xF6, 0x3D, 0xF0, 0x00, 0x10, 0x03, 0x8A, 0x49, 0xF1, 0x2C, 0x80, 0xE5, 0x83, 0x4F, 0x88, 0x14, 0xD7, 0x65, 0x1D, 0x10, 0xB3, 0xEF, 0xEB, 0xE9, 0x80, 0xCA, 0xC9, 0xC5, 0xD6, 0xFF, 0xCE, 0xF4, 0xBB, 0x9A, 0x1C, 0x4C, 0x1B, 0xEE, 0xDF, 0x50, 0x38, 0x31, 0x38, 0x32, 0x58, 0xF6, 0x2B, 0xFB, 0xF7, 0xED, 0xC2, 0x45, 0x0C, 0x06, 0x08, 0x96, 0x10, 0x0E, 0x61, 0x41, 0x7C, 0x89, 0x91, 0x04, 0x18, 0x83, 0x58, 0x65, 0xE0, 0xEF, 0x93, 0x01, 0xBA, 0x4D, 0xF6, 0x5C, 0x88, 0x30, 0xE8, 0x69, 0x13, 0x93, 0xF5, 0x3F, 0x0F, 0x0A, 0x00, 0xA9, 0x92, 0x88, 0x26, 0x3E, 0xFE, 0xAA, 0x49, 0xE0, 0x65, 0xB5, 0x24, 0x7B, 0xEA, 0x2B, 0x8E, 0xAE, 0xC6, 0xCC, 0x7F, 0xCB, 0x0D, 0xB0, 0xDE, 0x74, 0x5F, 0x1A, 0xBC, 0x45, 0x3E, 0xA3, 0x71, 0xB4, 0x09, 0xB4, 0x38, 0xCB, 0xD1, 0xCD, 0xB1, 0x5F, 0x71, 0x4F, 0xC9, 0xF5, 0xF8, 0x18, 0x05, 0x02, 0x04, 0x00, 0x81, 0xFE, 0x05, 0xDC, 0x7E, 0x87, 0x12, 0xC9, 0x9A, 0x14, 0x45, 0xB3, 0xCD, 0x38, 0x4B, 0x19, 0x85, 0x14, 0x3F, 0x85, 0x29, 0xE9, 0xFB, 0x7F, 0xB6, 0xD9, 0x9C, 0xD4, 0x0C, 0xD0, 0x02, 0xCA, 0xDF, 0x61, 0x72, 0xF2, 0xE1, 0x59, 0x50, 0x9C, 0xFF, 0x7F, 0x2C, 0x10, 0xE0, 0xA7, 0x6C, 0x29, 0xA5, 0x08, 0x55, 0xDF, 0xA7, 0x80, 0x53, 0x2B, 0xB8, 0x8B, 0xFF, 0xAE, 0xD6, 0x8F, 0x40, 0x00, 0xC5, 0x74, 0x8A, 0xC1, 0xAF, 0xBB, 0x0A, 0x51, 0x0B, 0x5E, 0x1F, 0x67, 0xCF, 0xFC, 0xCF, 0x35, 0x84, 0xB7, 0xF0, 0x55, 0xD3, 0xA0, 0x15, 0x2E, 0xF3, 0x06, 0x00, 0xFC, 0x93, 0x38, 0x07, 0xB7, 0xA4, 0x5F, 0x65, 0x14, 0xB4, 0x5B, 0x52, 0x96, 0xD5, 0x35, 0xFD, 0x44, 0x78, 0x4F, 0x4C, 0x59, 0x97, 0xCF, 0xB1, 0xC4, 0x04, 0x91, 0xE0, 0xB4, 0xBA, 0xC6, 0xED, 0xAE, 0x6D, 0x6B, 0xF9, 0xA1, 0xFB, 0xF0, 0xA5, 0x91, 0x2A, 0x32, 0x7A, 0x72, 0x7A, 0xCA, 0x93, 0x4C, 0xD6, 0xB9, 0x8E, 0x3F, 0x8A, 0x22, 0xC0, 0x20, 0x22, 0x7D, 0xBB, 0x02, 0xB3, 0x4C, 0xD6, 0xB2, 0x06, 0x88, 0x04, 0xF2, 0xD4, 0x6B, 0xE0, 0x4B, 0x96, 0x8C, 0x19, 0xAF, 0x60, 0x39, 0x02, 0x9F, 0xF5, 0x6D, 0x96, 0x12, 0xE1, 0xCF, 0x55, 0x5C, 0x06, 0x01, 0x6E, 0xA6, 0x93, 0xF0, 0xA4, 0x69, 0xBD, 0xED, 0x6F, 0xE1, 0x88, 0x88, 0x94, 0xF8, 0xA6, 0x35, 0x03, 0xA0, 0xA9, 0x4D, 0xAF, 0xC3, 0x90, 0x02, 0x5D, 0x05, 0x50, 0xA0, 0xA6, 0x3B, 0x70, 0x00, 0x89, 0xB3, 0x02, 0x83, 0xAE, 0x0A, 0x89, 0x73, 0x12, 0xB5, 0xE2, 0x30, 0xD5, 0x9E, 0x84, 0xE5, 0x4C, 0xD2, 0xC9, 0x75, 0xFC, 0xB7, 0x7B, 0x74, 0x22, 0x12, 0x72, 0x70, 0x72, 0x6D, 0x54, 0x0E, 0xF2, 0x21, 0xFA, 0x0E, 0x12, 0x1D, 0x27, 0x5E, 0x17, 0x49, 0x42, 0x4F, 0x76, 0xB3, 0xE9, 0x7F, 0xFC, 0xCD, 0xEE, 0x8F, 0xE6, 0xFE, 0x30, 0xE6, 0xF1, 0xB7, 0x5E, 0xB0, 0xEE, 0x5B, 0x80, 0x1A, 0xA4, 0xB3, 0x6A, 0xBD, 0xDF, 0x8C, 0xDE, 0x6F, 0xE8, 0x02, 0x0E, 0xAB, 0x31, 0x4C, 0xC5, 0xA0, 0xAC, 0xE8, 0xB3, 0x04, 0x99, 0xC0, 0xD5, 0x1E, 0xFA, 0x29, 0xCD, 0x4E, 0x9A, 0xBD, 0x7E, 0xD9, 0xF9, 0xFF, 0x54, 0x04, 0x3A, 0xC0, 0x3B, 0x49, 0x28, 0x0C, 0x41, 0x1B, 0x67, 0xF1, 0xEF, 0xCF, 0xE7, 0xB0, 0x01, 0xA7, 0xAA, 0xF7, 0x7E, 0xF7, 0xB5, 0x1B, 0x96, 0x08, 0xFD, 0x47, 0xEC, 0x6E, 0x06, 0xA2, 0x9B, 0xA9, 0xE9, 0xC3, 0xA5, 0xDF, 0xFA, 0x65, 0x58, 0xF3, 0xD8, 0x7A, 0xB7, 0xFD, 0xB1, 0xFC, 0xD7, 0x35, 0x75, 0xA5, 0x4B, 0x7F, 0xFF, 0xA9, 0x55, 0x6E, 0x1B, 0x6D, 0xBD, 0xD4, 0xFF, 0x7F, 0xED, 0xFD, 0x87, 0xEF, 0xF0, 0x8B, 0x07, 0xA9, 0x0A, 0x30, 0x84, 0x00, 0x7F, 0xC1, 0x21, 0x4F, 0x59, 0x3A, 0xCC, 0x71, 0x24, 0x04, 0x4B, 0xC9, 0xC0, 0x0A, 0x7A, 0xF8, 0x12, 0x31, 0xBE, 0x37, 0x38, 0x4F, 0x98, 0x6F, 0xF5, 0x72, 0xD1, 0x04, 0x1A, 0x12, 0xCC, 0x93, 0xFA, 0x74, 0x7A, 0x81, 0xDD, 0x31, 0x6F, 0x90, 0xFE, 0x5F, 0xFD, 0x8C, 0x6F, 0x7E, 0x31, 0x01, 0xA2, 0xFE, 0x59, 0xFF, 0xBE, 0xF5, 0xC5, 0x2C, 0x0A, 0x54, 0xB0, 0xB7, 0x03, 0x47, 0xD2, 0xB5, 0x88, 0x7D, 0xBC, 0x32, 0xD2, 0xAD, 0xFA, 0xFF, 0x32, 0xE0, 0x37, 0x62, 0x60, 0x59, 0x86, 0xF7, 0xA0, 0xBF, 0xFF, 0xFC, 0xF0, 0x16, 0xA1, 0x30, 0x85, 0xBD, 0x2D, 0x7E, 0xBD, 0xA1, 0xFF, 0x30, 0x6F, 0x53, 0x54, 0x00, 0xC1, 0x23, 0xAD, 0x05, 0xF1, 0x7F, 0x3C, 0xDA, 0x9B, 0x6D, 0x7D, 0x23, 0x7E, 0x7D, 0x3F, 0x00, 0xC9, 0x46, 0x6A, 0xAE, 0x7F, 0xE0, 0xF1, 0x9A, 0x12, 0x94, 0x81, 0x11, 0xBF, 0x85, 0x3F, 0xBB, 0xE0, 0x22, 0x8A, 0x25, 0x18, 0x33, 0x3F, 0xCD, 0x18, 0x45, 0x32, 0x6E, 0xF7, 0xD4, 0xE2, 0x48, 0xA8, 0x03, 0x83, 0xB7, 0xFF, 0x7F, 0xFF, 0x51, 0x89, 0x8F, 0x10, 0x76, 0xF4, 0x61, 0xE1, 0x84, 0xFE, 0x48, 0x12, 0x64, 0x78, 0xFC, 0xE1, 0x44, 0xAD, 0xDA, 0x73, 0xC8, 0x1E, 0x87, 0xAC, 0x41, 0x52, 0xBA, 0xAB, 0x91, 0x4A, 0x9F, 0xF2, 0x81, 0xE1, 0x30, 0x13, 0xC4, 0xA1, 0x1C, 0x94, 0xCE, 0x00, 0xE2, 0xDE, 0xFE, 0xCC, 0x64, 0xEA, 0x4A, 0xBA, 0x08, 0x13, 0x3C, 0xDF, 0xF5, 0x2D, 0x99, 0xDB, 0xD4, 0xDE, 0xDF, 0xF0, 0x38, 0xB5, 0xA8, 0x42, 0x21, 0xD8, 0xD8, 0x60, 0xF0, 0x3B, 0x1F, 0x8F, 0x44, 0x11, 0x5F, 0x38, 0x68, 0x4C, 0x81, 0x58, 0x00, 0x7C, 0xAA, 0xA0, 0x11, 0x93, 0x49, 0xFD, 0xF9, 0x9B, 0xFD, 0x1C, 0xF8, 0xF4, 0xC6, 0x27, 0xE3, 0x96, 0x0C, 0x0B, 0x34, 0x8B, 0x7F, 0xBF, 0x57, 0xFF, 0x94, 0x42, 0xF9, 0xC1, 0xC7, 0xE9, 0xFC, 0xE6, 0xBC, 0x18, 0x8D, 0xAB, 0x8E, 0x0C, 0xA7, 0x9A, 0xD0, 0x3A, 0x63, 0x28, 0x04, 0x27, 0x79, 0x9F, 0xFB, 0x41, 0xAD, 0xF4, 0x0D, 0xF9, 0x6E, 0xE5, 0x09, 0xA8, 0x98, 0x67, 0x6E, 0xD7, 0x02, 0x12, 0x2D, 0x2D, 0xA6, 0x34, 0x6A, 0x1A, 0xC3, 0x97, 0x17, 0x5B, 0x75, 0x7D, 0x8A, 0xD5, 0xBB, 0x7F, 0xFA, 0xFD, 0xA5, 0xE6, 0xA1, 0x9C, 0x7D, 0xDB, 0xE0, 0x1F, 0xD6, 0xBB, 0xFF, 0x54, 0x02, 0x6F, 0x57, 0x0F, 0xCD, 0x71, 0x35, 0xFE, 0x48, 0x41, 0x6D, 0x92, 0x84, 0x16, 0xAD, 0x5F, 0xBF, 0x61, 0xE0, 0x76, 0xF3, 0x0A, 0x7B, 0xB1, 0x44, 0x9F, 0xFE, 0x01, 0x75, 0x90, 0x01, 0xEE, 0x65, 0xA3, 0x37, 0x08, 0x47, 0xFF, 0xFE, 0x2B, 0x06, 0x3D, 0xDD, 0x49, 0x82, 0x21, 0x89, 0x7B, 0xF9, 0x3B, 0x1D, 0x9A, 0x9F, 0x66, 0x9E, 0xF8, 0xF8, 0xFF, 0x6F, 0xEF, 0xFB, 0xFD, 0x6F, 0xFF, 0x6F, 0x42, 0x84, 0x30, 0x6B, 0x62, 0x99, 0xA6, 0x31, 0x3B, 0x28, 0x94, 0x33, 0x4C, 0x6E, 0x81, 0x55, 0xA3, 0xDF, 0x80, 0x08, 0xDB, 0xDD, 0x5B, 0x9F, 0xEB, 0x23, 0x2C, 0x6C, 0x75, 0xC7, 0x08, 0x43, 0xBE, 0xF4, 0xF0, 0xF8, 0x1E, 0xFE, 0xCD, 0xF1, 0xFD, 0x0B, 0xAE, 0xC2, 0x07, 0x47, 0xAC, 0x1F, 0x63, 0xE9, 0x9C, 0xA5, 0x0D, 0x6D, 0x9C, 0x11, 0x08, 0xD5, 0xF9, 0x87, 0xFF, 0x96, 0x7D, 0x4F, 0x18, 0xBF, 0xEB, 0x43, 0x5F, 0xFA, 0xF6, 0x24, 0x17, 0x87, 0x69, 0x85, 0xC4, 0x96, 0x99, 0x06, 0xBE, 0x9B, 0xCC, 0x80, 0x09, 0xD1, 0x46, 0xE0, 0x35, 0x06, 0x51, 0x2C, 0xFC, 0xA9, 0x00, 0x07, 0xE8, 0xD1, 0x0C, 0xCB, 0xDE, 0xCE, 0x5C, 0xC2, 0x7F, 0x04, 0x89, 0x98, 0x1F, 0x34, 0x41, 0xCA, 0x94, 0xA4, 0xBC, 0x3E, 0xDB, 0xC7, 0x1E, 0x89, 0xA0, 0xF2, 0x9E, 0xBC, 0xDC, 0x74, 0xC1, 0x04, 0x74, 0x9C, 0x1D, 0xF8, 0x13, 0x19, 0xB0, 0xC0, 0x89, 0x67, 0xC4, 0xE3, 0x8C, 0xDD, 0x02, 0x63, 0x36, 0x18, 0x0A, 0xAA, 0x36, 0x39, 0x33, 0x00, 0x10, 0xA2, 0x89, 0x0B, 0xB8, 0x09, 0x09, 0x01, 0xE9, 0x2E, 0x00, 0x75, 0x4B, 0xF9, 0x2F, 0xD9, 0x16, 0xBA, 0xF6, 0xF0, 0x19, 0x8F, 0x57, 0xB0, 0x3B, 0xE7, 0x0B, 0x62, 0x9F, 0xC3, 0x14, 0x88, 0x1F, 0xFB, 0xB8, 0xFF, 0x65, 0xEA, 0x21, 0x49, 0x1D, 0xC1, 0xDF, 0xAF, 0x48, 0x01, 0x9B, 0x00, 0x5B, 0x4E, 0xDC, 0x9D, 0x3C, 0x1E, 0x0B, 0x7D, 0xDC, 0x0F, 0x8D, 0x30, 0x2A, 0x6A, 0xBE, 0xCF, 0x19, 0x1F, 0xAC, 0x58, 0x20, 0x8A, 0xDC, 0x66, 0x42, 0x54, 0xE0, 0x43, 0xB7, 0x27, 0x5F, 0xFF, 0x48, 0xA6, 0x21, 0xEF, 0x03, 0x4B, 0x82, 0xD6, 0x7E, 0x2B, 0x6D, 0xE8, 0xAC, 0xB5, 0x03, 0x03, 0x86, 0x86, 0x02, 0x20, 0x8B, 0x00, 0x00, 0xD9, 0x17, 0x27, 0xA3, 0xC2, 0xAA, 0x69, 0x96, 0xC0, 0x69, 0x30, 0x1E, 0x39, 0x89, 0x8A, 0x81, 0x8C, 0x65, 0xAD, 0x7E, 0xCF, 0xBB, 0x31, 0x76, 0xFB, 0x78, 0x82, 0x8F, 0xF0, 0x0F, 0x64, 0x14, 0x8E, 0xA4, 0x3A, 0xAB, 0x11, 0x59, 0xA9, 0xD8, 0x9C, 0x44, 0xEC, 0x3D, 0xFF, 0xD2, 0x5A, 0x50, 0x04, 0xE0, 0xA8, 0x08, 0xB6, 0xED, 0xD3, 0x2B, 0x83, 0xA6, 0x54, 0x2D, 0x72, 0xB5, 0x30, 0x35, 0x18, 0xB5, 0x47, 0xE0, 0x03, 0x0E, 0xFD, 0x20, 0x01, 0x8C, 0x14, 0x14, 0xAE, 0xFB, 0x77, 0xDF, 0x04, 0x02, 0x54, 0x08, 0x10, 0x5B, 0x8E, 0x67, 0xE4, 0x81, 0xCF, 0x78, 0x30, 0xE8, 0x23, 0xE4, 0x8E, 0x7F, 0xF9, 0xB1, 0x10, 0x2B, 0xC5, 0xDE, 0x37, 0xF0, 0x3B, 0xE5, 0x10, 0x59, 0x5D, 0x0A, 0xFF, 0xF7, 0xBC, 0x36, 0x58, 0x08, 0xD7, 0xF6, 0x72, 0x83, 0x6A, 0x9B, 0x64, 0x40, 0x0B, 0xFA, 0x43, 0x28, 0x4C, 0x7D, 0xAB, 0x9E, 0xA6, 0x4C, 0xC0, 0x14, 0x1A, 0x7B, 0xD9, 0xFF, 0xFE, 0x5E, 0xA3, 0xE4, 0x63, 0x62, 0x6A, 0xC0, 0x40, 0x15, 0x46, 0x0D, 0x1C, 0x9D, 0xEA, 0x0F, 0x2F, 0x74, 0x97, 0x0D, 0x74, 0x7A, 0x48, 0x47, 0x3B, 0xF8, 0xDE, 0x12, 0x57, 0xF6, 0x02, 0xDC, 0x7B, 0x9A, 0x23, 0x22, 0x6A, 0xC6, 0x0E, 0x55, 0x60, 0xE3, 0xF2, 0x1C, 0xD4, 0x44, 0x83, 0xBC, 0x07, 0x00, 0x08, 0xA8, 0x03, 0x85, 0x69, 0xCA, 0xC1, 0xDF, 0x51, 0x0E, 0x1A, 0x06, 0x1A, 0x82, 0x83, 0x7C, 0x00, 0xE8, 0x2F, 0xB6, 0x12, 0x11, 0xB1, 0xB0, 0x62, 0x61, 0x6C, 0x0B, 0x10, 0x2D, 0x8A, 0xDF, 0xDC, 0x5F, 0x5A, 0xAC, 0xE3, 0xD7, 0x3C, 0xC1, 0xA0, 0x0D, 0x1A, 0xDE, 0xD5, 0x92, 0xD1, 0x65, 0xB1, 0x4A, 0xA5, 0x80, 0x63, 0x59, 0x19, 0x2D, 0xBF, 0xCC, 0x9B, 0xF7, 0x30, 0xEC, 0x56, 0x12, 0xA7, 0xD8, 0x29, 0xE8, 0x35, 0x71, 0x2A, 0x80, 0xEA, 0xB7, 0x18, 0x18, 0x6C, 0x79, 0xD9, 0x90, 0xFA, 0x04, 0x51, 0xC6, 0xE0, 0x3F, 0x70, 0x0C, 0x95, 0x77, 0xA3, 0xA4, 0x76, 0x98, 0xAF, 0xB1, 0x3B, 0x19, 0x10, 0x1E, 0xDC, 0x34, 0x8B, 0xB3, 0xFB, 0xEE, 0x1C, 0x4A, 0x81, 0x82, 0xEB, 0x19, 0x93, 0xF4, 0x83, 0x0F, 0x0D, 0x10, 0xEC, 0xB5, 0x48, 0xFD, 0x20, 0xD0, 0x32, 0x60, 0x09, 0xE2, 0x7F, 0x94, 0x50, 0x5D, 0x42, 0x02, 0x26, 0x7E, 0xBF, 0x31, 0x1E, 0xDA, 0xFF, 0xBC, 0x41, 0xEC, 0x86, 0xB3, 0xAD, 0x75, 0x21, 0x69, 0x62, 0xC0, 0xFD, 0xE6, 0x9C, 0x9C, 0xFF, 0xE9, 0xC7, 0x4A, 0xDD, 0x21, 0xBF, 0x65, 0xFE, 0x64, 0x1A, 0x00, 0x00, 0x03, 0x03, 0xE4, 0x13, 0xD6, 0xC5, 0x52, 0x7A, 0x8F, 0xBD, 0xFD, 0xCE, 0x20, 0x08, 0x88, 0x40, 0x13, 0x2D, 0x73, 0x63, 0x47, 0x00, 0xE9, 0xC0, 0x0E, 0xE1, 0xCB, 0x24, 0xA2, 0xE1, 0xE8, 0xF0, 0x7B, 0x04, 0xB9, 0x6F, 0x87, 0xFE, 0x36, 0x8D, 0x72, 0x96, 0x1D, 0xB1, 0x53, 0x38, 0x47, 0x79, 0x81, 0x0E, 0x96, 0x63, 0xC3, 0xD9, 0x4C, 0xEC, 0x7E, 0xDB, 0x7B, 0xE7, 0x63, 0x59, 0xFF, 0x3E, 0xFD, 0x06, 0xC4, 0x05, 0x07, 0xC3, 0x7F, 0xE6, 0x10, 0x7F, 0x6B, 0xFF, 0xE1, 0xEA, 0x78, 0x1B, 0x0E, 0xD2, 0x6C, 0xC9, 0x00, 0x17, 0x5F, 0x60, 0x66, 0x5A, 0x04, 0x50, 0x9E, 0xF2, 0x50, 0x42, 0xD9, 0x88, 0xAD, 0x15, 0x97, 0x5F, 0x53, 0x61, 0xF8, 0xA9, 0x56, 0x34, 0x69, 0x72, 0x3E, 0x12, 0xFE, 0x50, 0x06, 0xEF, 0x3D, 0x5C, 0xDD, 0xC3, 0xCC, 0xBB, 0xB8, 0xBE, 0x6F, 0xA6, 0x3B, 0xF6, 0x01, 0xE1, 0x1F, 0x0F, 0xF5, 0xCB, 0x20, 0x21, 0x7A, 0xB7, 0xFC, 0x7A, 0x07, 0x1C, 0x74, 0x48, 0x01, 0x20, 0x0E, 0xD3, 0x80, 0x05, 0x6A, 0xBC, 0x6A, 0x89, 0xDD, 0xE8, 0x2B, 0x40, 0x19, 0x54, 0x12, 0x2F, 0x3A, 0x9E, 0x76, 0x60, 0x4D, 0x4F, 0x57, 0xBE, 0x59, 0xD0, 0xFF, 0x00, 0xE5, 0x0C, 0x0E, 0x50, 0xF0, 0x18, 0xE9, 0x70, 0x48, 0x0C, 0xA0, 0xFB, 0x05, 0x1E, 0xBC, 0x22, 0x28, 0xBF, 0xB8, 0x15, 0x44, 0x9C, 0x8E, 0x3B, 0x49, 0xFC, 0x01, 0xBF, 0x16, 0x90, 0x06, 0x02, 0x25, 0x6E, 0xE3, 0x15, 0xDF, 0xDF, 0xFE, 0x9E, 0xD2, 0xCA, 0x8F, 0xFE, 0xED, 0x06, 0x79, 0x29, 0x9B, 0x24, 0x62, 0xF6, 0x39, 0x20, 0x93, 0xC1, 0x4F, 0x7D, 0x1C, 0x76, 0xB3, 0x32, 0x0B, 0xF5, 0xD4, 0xEA, 0x62, 0xA5, 0x29, 0xBF, 0xFE, 0x89, 0x06, 0xBF, 0xCA, 0x60, 0x99, 0x28, 0x94, 0x0B, 0xDC, 0xD6, 0xB6, 0x13, 0x9D, 0x3F, 0x29, 0x5B, 0x9E, 0x64, 0x6C, 0x1D, 0xEC, 0xCE, 0xB9, 0x5B, 0xD9, 0xE9, 0x6E, 0xCC, 0x06, 0xF0, 0x50, 0x2A, 0xA7, 0x4A, 0xBB, 0xD4, 0x66, 0x6E, 0x91, 0xE7, 0xD8, 0xF8, 0x18, 0xF5, 0xC3, 0x9E, 0x8C, 0x29, 0x19, 0x3E, 0xEB, 0x81, 0x7D, 0x51, 0x03, 0xD8, 0x6E, 0x0A, 0x25, 0x61, 0xA9, 0x2B, 0x8C, 0xBC, 0xFF, 0xAB, 0xE2, 0x69, 0x7F, 0x7C, 0x8C, 0x99, 0xBF, 0x7F, 0x0A, 0x11, 0x77, 0x77, 0x5C, 0x68, 0xE0, 0xB6, 0xEF, 0xF9, 0x53, 0xC5, 0x83, 0x29, 0x1C, 0xB9, 0x6D, 0xB1, 0x8A, 0x5A, 0xC4, 0x7C, 0x3D, 0x7E, 0x5F, 0xFD, 0x0D, 0x82, 0xF3, 0xCE, 0x98, 0x0A, 0x8C, 0x61, 0x12, 0x06, 0x70, 0xAE, 0xCD, 0xB1, 0xED, 0xB4, 0xA6, 0x1E, 0x9F, 0x62, 0x5E, 0x73, 0x0F, 0xB1, 0xF8, 0xFA, 0x65, 0xFD, 0xFF, 0xF9, 0x61, 0x2C, 0x3E, 0xDF, 0xBF, 0xE0, 0x1E, 0x43, 0xA0, 0xE7, 0x81, 0x23, 0xF1, 0x74, 0xD9, 0x0B, 0xF0, 0x37, 0x42, 0x8C, 0xA4, 0x38, 0x23, 0x5E, 0xA0, 0xBE, 0xFE, 0xC6, 0xD3, 0x20, 0x88, 0xED, 0x47, 0x08, 0xC9, 0xF2, 0x40, 0x65, 0xFE, 0x19, 0xDC, 0xA0, 0x08, 0x85, 0x6D, 0x76, 0x5E, 0x0E, 0xCF, 0xFF, 0x5F, 0x30, 0xD8, 0x43, 0x80, 0x12, 0xE4, 0xB3, 0x69, 0x6B, 0xD8, 0x33, 0x00, 0xCA, 0xCA, 0x9E, 0xB5, 0x70, 0xC1, 0x81, 0x8B, 0x1F, 0x77, 0xBE, 0x71, 0x90, 0x26, 0xE9, 0x46, 0x05, 0x41, 0xBB, 0xD5, 0xFB, 0xFF, 0xFD, 0x6E, 0xB0, 0x6E, 0x06, 0xA9, 0x8F, 0x43, 0x6F, 0x03, 0x13, 0xE5, 0xC1, 0x44, 0xB7, 0xFC, 0xAF, 0x7C, 0x62, 0xE7, 0xE7, 0xE4, 0x8C, 0xD3, 0xDF, 0x84, 0xB2, 0x0D, 0x28, 0x14, 0x54, 0x3E, 0xBE, 0x59, 0x4E, 0xFC, 0x00, 0xE8, 0x1D, 0x47, 0xF7, 0x21, 0x3B, 0x6A, 0x26, 0x5B, 0xE1, 0x50, 0x0B, 0x0B, 0x65, 0x7B, 0xFD, 0xAA, 0x6B, 0x84, 0xE1, 0xE6, 0x37, 0xE7, 0xF2, 0xC4, 0x12, 0xBA, 0x9D, 0x02, 0x65, 0xDF, 0xFF, 0x69, 0x6E, 0xFF, 0x44, 0x4F, 0xFF, 0xB3, 0x83, 0x05, 0x67, 0x41, 0x3D, 0xB2, 0x71, 0x71, 0x8F, 0x57, 0x26, 0x2E, 0xCB, 0xFC, 0x43, 0x48, 0x0C, 0xC2, 0x98, 0xFE, 0x10, 0x40, 0x06, 0x60, 0x8B, 0x95, 0xB2, 0x8F, 0xD6, 0xF0, 0x06, 0x1A, 0x2A, 0xA8, 0xD3, 0x75, 0x02, 0xA7, 0x58, 0xE1, 0xED, 0x89, 0xCA, 0x33, 0xBD, 0xE6, 0xA3, 0xCE, 0x39, 0x85, 0x7D, 0x02, 0xCC, 0x10, 0x97, 0x08, 0xB7, 0x67, 0x04, 0x92, 0x60, 0x1A, 0x84, 0x63, 0xDE, 0x96, 0x26, 0xCC, 0x26, 0x1C, 0xBD, 0xC6, 0x2B, 0xF2, 0x98, 0x69, 0xBF, 0xC4, 0x7B, 0xFF, 0xBF, 0x31, 0x88, 0x7D, 0xF2, 0xE8, 0xFF, 0xAF, 0xAE, 0x8B, 0xFF, 0xA4, 0xAD, 0x90, 0x03, 0x13, 0xC0, 0x03, 0xE8, 0x1A, 0xCB, 0x70, 0x7C, 0x11, 0xC4, 0xEC, 0x14, 0xFB, 0xAF, 0x4D, 0x9E, 0xC0, 0x22, 0x00, 0x3E, 0xDE, 0x72, 0x08, 0x22, 0x2E, 0x26, 0xB8, 0x31, 0xB6, 0x84, 0x07, 0x0E, 0x1B, 0x7C, 0xB9, 0x56, 0x1F, 0x48, 0x51, 0x59, 0xFE, 0x0B, 0x3A, 0xE0, 0xA9, 0xE3, 0x89, 0x54, 0x43, 0x0B, 0xDF, 0x63, 0x9E, 0x60, 0x00, 0x91, 0x45, 0x4F, 0xE5, 0xFB, 0x82, 0x2D, 0x2F, 0x01, 0xA6, 0x54, 0x9F, 0xBF, 0xCF, 0x54, 0x2E, 0xC9, 0x7F, 0xF5, 0x7A, 0x43, 0x52, 0x02, 0x79, 0x94, 0x00, 0x05, 0xD9, 0x07, 0xF3, 0xF3, 0x14, 0xC1, 0xB8, 0xF7, 0x81, 0x23, 0xD8, 0x5B, 0xBA, 0x5E, 0x30, 0xE5, 0x4F, 0x6D, 0x11, 0xB6, 0x0D, 0xB2, 0xB4, 0x01, 0xBC, 0xFD, 0xED, 0xC0, 0x00, 0xC9, 0x84, 0xB8, 0x96, 0xA0, 0x12, 0x94, 0xFF, 0x44, 0x90, 0x3E, 0xBE, 0x95, 0x06, 0xB6, 0x7B, 0xEB, 0x81, 0xFC, 0x81, 0x61, 0x52, 0xB5, 0x9F, 0xAF, 0x30, 0x5A, 0x00, 0x37, 0x09, 0x36, 0xC9, 0xA5, 0x4F, 0xDF, 0xD6, 0x88, 0xEF, 0x16, 0x65, 0x09, 0x5E, 0x7B, 0xEF, 0x7C, 0x03, 0x03, 0xAC, 0x6F, 0x97, 0x71, 0xCC, 0x18, 0x83, 0xC4, 0xCD, 0x55, 0x31, 0x0D, 0x1F, 0xAF, 0x80, 0x09, 0x6B, 0xB3, 0xD4, 0xEF, 0xF7, 0xC0, 0x1B, 0xDD, 0xD3, 0xF2, 0x69, 0x6A, 0xD3, 0x58, 0x1E, 0xC6, 0x39, 0x84, 0x88, 0xB3, 0xC9, 0x16, 0x98, 0xD3, 0xAB, 0x10, 0x6A, 0x1D, 0xCC, 0xF4, 0xFB, 0xFE, 0xFB, 0xB4, 0xCA, 0x3C, 0x9D, 0xBC, 0xAC, 0x88, 0x75, 0xD3, 0xF5, 0xCC, 0xFD, 0x54, 0x36, 0x46, 0x04, 0xE7, 0x94, 0x1A, 0x07, 0x24, 0x7C, 0x01, 0xB5, 0xAD, 0xFE, 0xBA, 0xD1, 0x9E, 0x8D, 0x1C, 0x0D, 0xF0, 0x9F, 0x62, 0xFF, 0xAD, 0x69, 0xEA, 0x68, 0xC0, 0x21, 0x91, 0xD3, 0x7B, 0xC8, 0x7C, 0xA0, 0xF3, 0x2B, 0xD7, 0x8E, 0x70, 0xD2, 0x4D, 0xC0, 0x19, 0xA0, 0xD0, 0x49, 0x8B, 0x5B, 0xD5, 0x94, 0xE5, 0xA3, 0x16, 0xC7, 0x46, 0xAF, 0xDB, 0x2B, 0x50, 0x6E, 0xEC, 0xC8, 0xDD, 0x77, 0xE5, 0x13, 0xFB, 0x0F, 0x29, 0x88, 0x47, 0x2C, 0x8D, 0xED, 0x69, 0xEC, 0xCD, 0x8F, 0x70, 0x1E, 0xEE, 0x5B, 0xBF, 0x51, 0x06, 0xFC, 0x58, 0xB6, 0x06, 0x96, 0x0D, 0x62, 0xAF, 0xF5, 0xE9, 0xEE, 0x56, 0x06, 0xB5, 0x3D, 0xE6, 0x3F, 0x12, 0x42, 0x3E, 0x25, 0xE2, 0x4B, 0x3D, 0xCC, 0xFF, 0xC3, 0xC1, 0x08, 0xC4, 0x5E, 0x65, 0xD1, 0xE9, 0x78, 0x8B, 0x9B, 0xB0, 0xA0, 0xEF, 0x56, 0x00, 0x46, 0xD8, 0xEA, 0x27, 0xF3, 0x48, 0xAC, 0x83, 0xA0, 0x14, 0xF5, 0x80, 0x13, 0x62, 0xA9, 0xCF, 0x43, 0x31, 0x95, 0x9F, 0xF6, 0xEE, 0x37, 0x02, 0x98, 0x83, 0x47, 0xA7, 0xD2, 0xD7, 0x33, 0x82, 0x2B, 0x2C, 0x0B, 0x33, 0x25, 0x86, 0x61, 0x74, 0x3F, 0xF4, 0xF7, 0x73, 0xC0, 0xC2, 0x90, 0x40, 0x11, 0x52, 0xEB, 0xC0, 0x6E, 0x67, 0xC0, 0x55, 0x8C, 0x48, 0x54, 0xDC, 0x47, 0x71, 0xB0, 0x2D, 0xB6, 0x1E, 0x34, 0xE3, 0x2F, 0xB5, 0x08, 0x88, 0x9C, 0xDE, 0xD9, 0xB8, 0xF8, 0x30, 0x34, 0xD1, 0xE8, 0x9A, 0xEB, 0x79, 0x80, 0xA5, 0x4E, 0xA5, 0x70, 0xD6, 0x91, 0xC4, 0x45, 0x7F, 0x49, 0x96, 0xEA, 0x37, 0xE0, 0x42, 0x20, 0x8A, 0xF4, 0x7A, 0xDE, 0xDD, 0x00, 0xDA, 0x89, 0xAD, 0xF4, 0x9B, 0xD3, 0x29, 0xCB, 0x94, 0xDF, 0xF8, 0xB3, 0x89, 0x03, 0x3F, 0xCE, 0x03, 0x3A, 0x4E, 0xDA, 0xB4, 0x7F, 0x9B, 0x8E, 0xD0, 0xCA, 0x14, 0xFE, 0xC4, 0xF7, 0xFF, 0x6F, 0x45, 0x14, 0xD4, 0x99, 0xBD, 0xE7, 0x44, 0x98, 0xEC, 0x25, 0xDB, 0x77, 0x72, 0xC7, 0x18, 0x81, 0x4C, 0x9E, 0xCD, 0x87, 0xD8, 0x1F, 0xBE, 0xC6, 0x8D, 0xDF, 0x06, 0xD1, 0xC0, 0x92, 0xDF, 0x04, 0x5D, 0xD7, 0x85, 0x7F, 0xCF, 0xC1, 0x01, 0x29, 0xF0, 0x40, 0x11, 0xC9, 0x0C, 0x02, 0x17, 0x24, 0x2E, 0x66, 0xE9, 0x21, 0xD7, 0xD0, 0x77, 0x65, 0x7B, 0x7C, 0x35, 0xA2, 0xA1, 0xC3, 0xA9, 0x0A, 0x01, 0x6A, 0x80, 0xD7, 0x42, 0xF4, 0xE7, 0x1D, 0x51, 0x66, 0x2A, 0xEC, 0xC2, 0x6C, 0x54, 0xFA, 0x87, 0xBD, 0x64, 0x3B, 0x8D, 0xB7, 0x04, 0x26, 0x65, 0x5F, 0xCF, 0xDF, 0xE1, 0x9E, 0xB2, 0xCC, 0x79, 0xD2, 0x7E, 0x63, 0xDF, 0x6D, 0xD6, 0x38, 0xDB, 0x46, 0xE0, 0x3F, 0x85, 0x76, 0x01, 0x0C, 0x02, 0xCD, 0x61, 0x05, 0xF8, 0x22, 0x06, 0x28, 0xEA, 0xF2, 0x15, 0xC7, 0x1D, 0x1D, 0xCA, 0xB0, 0x0F, 0xCD, 0x46, 0x12, 0x8F, 0xBD, 0x40, 0x7D, 0xF8, 0x02, 0xD7, 0x41, 0x7B, 0x37, 0x89, 0x48, 0x41, 0x6D, 0x13, 0x0A, 0xD0, 0xCB, 0x96, 0x66, 0x7C, 0xFE, 0x4E, 0x2F, 0xE9, 0x87, 0xB7, 0xD7, 0x88, 0x8D, 0x06, 0x00, 0xD1, 0xF9, 0xA5, 0xAD, 0x88, 0x7E, 0xE5, 0xBE, 0x8C, 0x5E, 0x30, 0xEB, 0x4F, 0xF0, 0x80, 0x81, 0xF9, 0x7D, 0x6E, 0xE3, 0x27, 0x78, 0xA2, 0xE1, 0xC0, 0x6E, 0x45, 0x18, 0x9B, 0xE4, 0xC7, 0x5C, 0xC1, 0xF6, 0xDB, 0x73, 0x1A, 0x1E, 0x9F, 0xCB, 0x74, 0x69, 0x13, 0x78, 0xE8, 0x51, 0x95, 0x77, 0xCD, 0x17, 0x21, 0xB3, 0x86, 0xCF, 0x93, 0x9F, 0xEE, 0x3F, 0x2E, 0xF6, 0x91, 0xF7, 0x8F, 0xCB, 0xD6, 0xE6, 0x01, 0x7B, 0xB2, 0x39, 0x97, 0x01, 0xCA, 0xE7, 0xDA, 0x9D, 0xB3, 0x20, 0xFF, 0x0D, 0x13, 0x17, 0xD8, 0xC7, 0x94, 0xDF, 0x8A, 0x1D, 0xB3, 0xF3, 0x08, 0x6D, 0xB8, 0xFE, 0x6A, 0x79, 0xC7, 0xFF, 0x2D, 0xFB, 0x6D, 0xB0, 0xE4, 0x2D, 0x59, 0x1C, 0xF2, 0x1D, 0xB7, 0x87, 0x80, 0x14, 0x5F, 0x25, 0x7D, 0xFF, 0xFD, 0x83, 0xF6, 0x3F, 0x11, 0x3D, 0x7F, 0xFF, 0xB0, 0x2D, 0x52, 0x4C, 0xD0, 0xCA, 0x69, 0xDD, 0x9A, 0x00, 0x06, 0xC4, 0x81, 0x2A, 0xE4, 0xD7, 0xEB, 0x5B, 0xDB, 0xE4, 0xD7, 0x07, 0xFD, 0xF0, 0x8E, 0x02, 0x0B, 0x00, 0xB0, 0x72, 0xCA, 0xFF, 0x06, 0x1B, 0x03, 0x43, 0x97, 0x0B, 0xF0, 0x4A, 0x8B, 0x05, 0xAE, 0xB3, 0x06, 0x76, 0x0B, 0x23, 0x2F, 0x08, 0x59, 0x20, 0x15, 0x9C, 0x22, 0xB2, 0xD9, 0xAF, 0x68, 0x80, 0x0A, 0xF1, 0x0B, 0x2B, 0xFD, 0xA8, 0xD3, 0x9C, 0x67, 0x02, 0x76, 0xB7, 0xA8, 0xF8, 0xCC, 0x81, 0xCF, 0xE0, 0xF9, 0xCC, 0x08, 0x28, 0x6C, 0x23, 0x04, 0x17, 0x47, 0xE0, 0x04, 0xA6, 0x06, 0x40, 0x87, 0x92, 0x73, 0xDE, 0xD5, 0x51, 0xDB, 0xC9, 0xAC, 0x5F, 0xFA, 0xCD, 0xCD, 0xDA, 0xFB, 0x3C, 0x07, 0xC6, 0x9F, 0x6C, 0x18, 0x01, 0x82, 0xC0, 0xE1, 0x85, 0xC1, 0xBE, 0xC2, 0x08, 0x0A, 0x8D, 0x53, 0x2C, 0x2F, 0xC2, 0xF8, 0x15, 0x19, 0x47, 0x7D, 0xC4, 0xE8, 0x91, 0x22, 0x34, 0x62, 0x26, 0x02, 0x46, 0xF9, 0xF5, 0x40, 0xDA, 0x03, 0x65, 0x56, 0xF7, 0xD9, 0x7D, 0xA1, 0x11, 0x21, 0xF0, 0xBF, 0xE3, 0x07, 0xCB, 0x9A, 0xD6, 0xA1, 0xB2, 0x3E, 0x6D, 0x3D, 0x81, 0x33, 0xAA, 0x1C, 0x8A, 0xDF, 0xD7, 0x97, 0xC3, 0xE3, 0xFC, 0x0B, 0x8F, 0x8F, 0x8A, 0xC7, 0x1E, 0xAD, 0x1A, 0xF3, 0x0E, 0xA3, 0x00, 0xE9, 0x03, 0x45, 0xDE, 0x3B, 0x6D, 0x91, 0xA5, 0x5F, 0x3A, 0x5B, 0x6F, 0xEC, 0x45, 0x26, 0xD6, 0xF9, 0x20, 0x0B, 0xEE, 0xD4, 0x99, 0xFD, 0x43, 0x95, 0x26, 0xFA, 0x53, 0x3A, 0xF4, 0xFF, 0xAF, 0x62, 0xCC, 0x1D, 0x85, 0xA2, 0x6B, 0xB0, 0x21, 0xB7, 0x3C, 0x89, 0x9A, 0xB5, 0xE7, 0xBC, 0x0C, 0x00, 0x04, 0x50, 0x70, 0x88, 0x06, 0x83, 0x85, 0xF0, 0xBE, 0x86, 0x56, 0xE7, 0x3B, 0x9F, 0x9B, 0xB4, 0x0D, 0xDD, 0xB3, 0x71, 0x66, 0x82, 0x02, 0x67, 0x84, 0x1E, 0x31, 0xF9, 0xCE, 0x9F, 0x9B, 0x99, 0x03, 0x77, 0x3C, 0xBD, 0x11, 0xA7, 0x2D, 0x32, 0x04, 0xE0, 0x29, 0x5B, 0x78, 0xC8, 0x83, 0xA8, 0x8E, 0x8D, 0xFE, 0x3E, 0xC6, 0xE6, 0x76, 0xE6, 0x71, 0x65, 0x3A, 0x06, 0xB7, 0x75, 0xB7, 0x4F, 0x1E, 0xF9, 0x2B, 0x5E, 0x14, 0x66, 0x41, 0x98, 0x72, 0xE1, 0x84, 0xC5, 0xEF, 0x04, 0x59, 0xA7, 0x46, 0x8F, 0xCF, 0xCD, 0xA0, 0x16, 0xB0, 0x7B, 0xF1, 0x81, 0x50, 0xAD, 0xBA, 0xC1, 0x38, 0xCF, 0xD3, 0xF2, 0xD0, 0x7E, 0x24, 0x81, 0xB0, 0xF2, 0xF8, 0x7A, 0x52, 0x3A, 0x5D, 0xD6, 0x61, 0x1A, 0xD2, 0x8A, 0x0A, 0xEB, 0xF8, 0x13, 0x13, 0x71, 0xE6, 0x70, 0x32, 0xEE, 0xF6, 0xCA, 0xA3, 0xB7, 0x0A, 0xFD, 0x7F, 0x81, 0x34, 0x24, 0x5E, 0xA0, 0x42, 0x67, 0x84, 0x23, 0xF5, 0xB8, 0x54, 0x99, 0xE5, 0x47, 0x1A, 0x44, 0xBE, 0x41, 0x28, 0x03, 0x63, 0x35, 0x2A, 0x45, 0x2D, 0x45, 0x06, 0xD4, 0x36, 0x66, 0xA2, 0x50, 0x00, 0x7E, 0x5C, 0xF5, 0x19, 0x27, 0x47, 0x66, 0x25, 0x64, 0x5B, 0xDC, 0xE5, 0xF5, 0x2D, 0x74, 0x1C, 0x79, 0x4B, 0xD2, 0xB6, 0x9D, 0xB8, 0x1E, 0xC8, 0x32, 0xFA, 0xFD, 0xE7, 0xB1, 0x69, 0x2F, 0x7D, 0xBE, 0x3E, 0xDD, 0x9E, 0xBD, 0x1F, 0x40, 0x22, 0x8A, 0xF7, 0x2F, 0x4F, 0x12, 0x21, 0x4A, 0xFF, 0xDF, 0x59, 0x33, 0x93, 0xFF, 0xD8, 0xE9, 0x7B, 0xF8, 0x0B, 0xB7, 0x4B, 0xD5, 0x6F, 0xEF, 0x7D, 0xB8, 0x9A, 0x51, 0x63, 0xB7, 0xD5, 0x66, 0xC7, 0x44, 0x64, 0xE3, 0x34, 0xF7, 0x3B, 0xF5, 0x61, 0xCC, 0x80, 0x67, 0x11, 0x9F, 0x9E, 0x2A, 0x4F, 0xA6, 0x42, 0xA9, 0x08, 0xA2, 0x31, 0xF5, 0x60, 0xEF, 0x56, 0x59, 0x3F, 0xBA, 0x02, 0xC0, 0x83, 0x87, 0x55, 0xCD, 0xF0, 0x47, 0xB0, 0xA5, 0x76, 0x93, 0x4D, 0x72, 0x87, 0x44, 0x77, 0x02, 0x68, 0xF6, 0x1A, 0xC8, 0x90, 0x51, 0x1C, 0xC9, 0x9E, 0x94, 0xDB, 0xE8, 0x81, 0xEC, 0x6E, 0xC6, 0xC5, 0x3E, 0x28, 0x48, 0x69, 0x18, 0xF2, 0xDC, 0xCB, 0xBD, 0x23, 0x0F, 0xFF, 0x3A, 0x93, 0x23, 0xD3, 0xA3, 0x3E, 0x2F, 0x36, 0x80, 0x00, 0x40, 0x03, 0x7C, 0x06, 0x83, 0x7B, 0x60, 0x4C, 0xE1, 0xED, 0xC3, 0xC4, 0xC2, 0x32, 0x3C, 0xA0, 0x61, 0x97, 0xFB, 0xAB, 0xC3, 0xFA, 0xCD, 0x08, 0x02, 0xA2, 0xEF, 0xC0, 0xAA, 0x83, 0x25, 0x32, 0xB7, 0x7C, 0x1B, 0xCD, 0xDE, 0x1C, 0x4D, 0x8F, 0x9A, 0xD2, 0xF3, 0x67, 0x83, 0x87, 0x63, 0xB7, 0xFF, 0x5A, 0xFD, 0x2F, 0xF8, 0x0F, 0x86, 0xA8, 0x75, 0x8F, 0x80, 0x3E, 0x76, 0x34, 0xE4, 0x67, 0xB9, 0xBA, 0x9D, 0x36, 0xC8, 0xB1, 0xC5, 0xEF, 0xA7, 0x7B, 0x05, 0xF8, 0xCF, 0x01, 0x03, 0xF4, 0xF9, 0x87, 0x22, 0xAE, 0xB3, 0x4F, 0x9E, 0xED, 0xBE, 0x3C, 0x34, 0x7F, 0x7A, 0x20, 0x88, 0x4F, 0xF1, 0x50, 0x73, 0x22, 0x1E, 0x8F, 0xBD, 0x5E, 0xFE, 0xFF, 0x86, 0xBB, 0xC0, 0x21, 0x85, 0x66, 0xA1, 0x22, 0x96, 0x7E, 0x37, 0xD3, 0xFC, 0x00, 0x55, 0x50, 0x6B, 0x08, 0x73, 0x2A, 0xDF, 0x4D, 0xEF, 0x48, 0x6A, 0x7F, 0x5C, 0x4B, 0x15, 0xBA, 0xD0, 0x41, 0xB5, 0x32, 0x69, 0x8C, 0x37, 0xA6, 0x0D, 0x15, 0x6F, 0x60, 0x6B, 0xFE, 0xA8, 0x4F, 0xFC, 0x0D, 0xB2, 0x92, 0x1E, 0x38, 0x28, 0xAC, 0x7C, 0xFE, 0x0E, 0x2D, 0x7C, 0xEB, 0x7F, 0xFC, 0x00, 0x35, 0xEE, 0x04, 0x9C, 0x75, 0xB1, 0x1F, 0xEF, 0x3E, 0xA7, 0xE3, 0xD7, 0xAD, 0x3E, 0xB8, 0x3D, 0x10, 0x1E, 0x1E, 0x9B, 0xF6, 0xCA, 0xBE, 0x82, 0x42, 0x87, 0xA1, 0xEC, 0x7F, 0xFF, 0xFB, 0xFF, 0x65, 0x70, 0x70, 0x1F, 0x22, 0x8C, 0x15, 0x0B, 0xDC, 0x74, 0x4A, 0x6E, 0x5B, 0xE0, 0x2F, 0xB0, 0x24, 0xA2, 0xB7, 0x92, 0x23, 0x48, 0xFF, 0xDB, 0x05, 0x51, 0x94, 0x1C, 0xA4, 0xEB, 0x3F, 0xF3, 0xB5, 0x62, 0x82, 0x18, 0x43, 0xBE, 0xE8, 0x94, 0x09, 0x7F, 0x6F, 0x74, 0xB7, 0x7F, 0xFD, 0x79, 0xEF, 0xE6, 0xF6, 0x1C, 0x57, 0x4F, 0xEF, 0xF9, 0xFB, 0xFF, 0x80, 0x07, 0xB3, 0xE1, 0x13, 0x29, 0x55, 0xB7, 0x00, 0x4D, 0x03, 0xE5, 0x0C, 0x8B, 0x9B, 0xE8, 0x25, 0xCB, 0x04, 0x20, 0x68, 0xF5, 0x38, 0x1E, 0x3F, 0x03, 0x2F, 0xC2, 0xF3, 0xF2, 0x7E, 0x2B, 0x9D, 0x5D, 0xDF, 0xCD, 0x41, 0x5D, 0x3C, 0xD9, 0xDE, 0xF9, 0xF7, 0xE2, 0xB0, 0x2F, 0x4D, 0x6A, 0x57, 0xF9, 0xFE, 0xFF, 0x9A, 0xFF, 0x7F, 0xF3, 0x1C, 0x7A, 0x40, 0x02, 0x32, 0xF9, 0x80, 0x60, 0xEC, 0xC4, 0x15, 0xC7, 0xFF, 0xD0, 0x4C, 0xDB, 0x15, 0x73, 0x60, 0x00, 0x45, 0xAA, 0x13, 0xE3, 0x2A, 0xBF, 0xFC, 0xEA, 0x1E, 0x68, 0x00, 0x08, 0xFC, 0x37, 0xB7, 0x2B, 0xBE, 0x1D, 0x41, 0x0F, 0x75, 0x8C, 0xFE, 0x99, 0xE7, 0x64, 0x28, 0x59, 0x37, 0xEA, 0x6C, 0xF1, 0xC7, 0xAC, 0x7F, 0xBD, 0x00, 0x67, 0xF2, 0x3D, 0x17, 0x45, 0xDC, 0x6B, 0x9B, 0xD3, 0x1D, 0xEA, 0x94, 0x25, 0x40, 0xC4, 0x33, 0xB2, 0x79, 0xC0, 0x00, 0x25, 0x42, 0xD9, 0x24, 0x47, 0x73, 0x5B, 0xB5, 0xC7, 0x86, 0x11, 0xE6, 0xE4, 0x17, 0x18, 0x38, 0x9F, 0x8A, 0x36, 0x8E, 0xC4, 0xC4, 0xD9, 0x94, 0x02, 0xAB, 0xF1, 0xAB, 0xF4, 0xDF, 0x0F, 0xEB, 0x5C, 0x25, 0x68, 0x13, 0x16, 0xAB, 0xC9, 0xFE, 0x03, 0xF9, 0x50, 0x89, 0xB9, 0x10, 0x77, 0xA7, 0xEC, 0x3F, 0xCC, 0x67, 0xA1, 0x96, 0x35, 0xFC, 0xB0, 0x64, 0x66, 0x3B, 0x2B, 0xDE, 0xF0, 0x3E, 0x42, 0xB9, 0x01, 0xDB, 0x6F, 0xD7, 0xBB, 0x19, 0x86, 0xE7, 0xFD, 0x0A, 0xBD, 0x50, 0x09, 0x4E, 0x43, 0xBA, 0x4C, 0x82, 0x63, 0x87, 0x9C, 0xC0, 0x09, 0xCA, 0x08, 0x7B, 0x7A, 0xC8, 0x54, 0x06, 0x6F, 0xE3, 0xB5, 0x76, 0xB2, 0x02, 0xD8, 0xAF, 0x73, 0xFE, 0xD0, 0x47, 0x4A, 0x2F, 0x34, 0x0A, 0xF2, 0x48, 0x16, 0x2C, 0x15, 0xFF, 0xFB, 0xA0, 0x95, 0x18, 0x24, 0xA9, 0xC2, 0x69, 0x50, 0xD0, 0x6B, 0x32, 0xDF, 0xB9, 0x6B, 0x3A, 0xA8, 0x01, 0x8A, 0xD5, 0x15, 0x57, 0xEF, 0x03, 0xD0, 0x7F, 0xB4, 0xEF, 0xD4, 0xE4, 0x1A, 0x72, 0xC3, 0xA4, 0x37, 0xF3, 0xFB, 0xFC, 0x6F, 0x75, 0x7E, 0x0F, 0x1B, 0x3F, 0xDD, 0xFD, 0x4C, 0xC1, 0xD9, 0xA7, 0xC3, 0xD2, 0x15, 0x38, 0x45, 0xBE, 0xFF, 0xBE, 0x60, 0x0D, 0xDD, 0x49, 0x7D, 0xCA, 0xB0, 0x00, 0x79, 0x48, 0xAB, 0xA9, 0xF6, 0x3F, 0x2A, 0xDC, 0xED, 0xC2, 0xE6, 0x8E, 0x80, 0xF7, 0xDD, 0xBF, 0x0B, 0xE0, 0xD0, 0x6A, 0x35, 0xD4, 0xAE, 0x85, 0x74, 0x06, 0x7E, 0xFE, 0x3F, 0xFF, 0x84, 0x10, 0x2E, 0x20, 0x18, 0x00, 0x08, 0x02, 0x83, 0xD8, 0x0D, 0xB6, 0x1B, 0xA3, 0xBD, 0xAD, 0x30, 0x6A, 0x8D, 0x80, 0xFF, 0xF1, 0x9A, 0xB1, 0xB4, 0x7A, 0x46, 0x13, 0x00, 0x23, 0x7A, 0x0F, 0x86, 0xE4, 0xFC, 0x00, 0x53, 0x70, 0x91, 0x45, 0xD4, 0x23, 0x6F, 0xA7, 0x42, 0xA8, 0x3E, 0x6F, 0x80, 0x05, 0xEE, 0x66, 0x34, 0x21, 0x4C, 0x00, 0xC8, 0x05, 0x80, 0x78, 0x33, 0x1A, 0x55, 0xEE, 0x87, 0xC9, 0xD0, 0xA9, 0xB6, 0x02, 0x7F, 0xFC, 0xA3, 0xBE, 0xBD, 0xC7, 0x62, 0xA3, 0x90, 0x6E, 0x34, 0xD2, 0xD7, 0xF7, 0x4E, 0xDB, 0x8D, 0x48, 0x3E, 0xF9, 0x39, 0xC4, 0x63, 0xE6, 0xB9, 0x3E, 0xF1, 0xF3, 0xB0, 0xD6, 0x5C, 0x38, 0x56, 0xF2, 0xE8, 0xE1, 0x74, 0x88, 0x18, 0x01, 0x7E, 0x5C, 0x3C, 0x61, 0x24, 0x93, 0x69, 0xF8, 0x0C, 0x05, 0x83, 0x86, 0x00, 0x58, 0x17, 0x08, 0x8C, 0xA0, 0xCA, 0xEC, 0x24, 0x58, 0x17, 0x89, 0x3F, 0x00, 0x9E, 0x42, 0x8E, 0x58, 0x8A, 0x39, 0x9C, 0x4E, 0x67, 0x3A, 0xAD, 0x50, 0x98, 0x7B, 0x0D, 0x3B, 0x7A, 0x7B, 0xED, 0x4B, 0x9C, 0x0A, 0xCB, 0x86, 0x69, 0x67, 0xCA, 0xE6, 0xBA, 0x91, 0x00, 0x06, 0xAE, 0x29, 0xE3, 0xB8, 0x6F, 0xAD, 0xC1, 0x76, 0x73, 0xA6, 0x28, 0xAE, 0x5A, 0x3F, 0xA7, 0xC1, 0x46, 0x9D, 0xAC, 0xB7, 0x19, 0x56, 0xC7, 0x6F, 0xA2, 0x5B, 0xBA, 0x80, 0x16, 0x0A, 0x5F, 0xEB, 0xD0, 0x13, 0xCC, 0xB2, 0xAE, 0x34, 0x51, 0xB2, 0xE7, 0xC8, 0xF5, 0xFF, 0x2A, 0x9C, 0x28, 0xF2, 0x9B, 0x2B, 0xBD, 0xFA, 0xD9, 0xDC, 0x3F, 0xCB, 0x60, 0x1E, 0x97, 0x65, 0x5F, 0xF8, 0x0C, 0xB8, 0x1F, 0xBB, 0x48, 0xEB, 0xBC, 0x35, 0x34, 0xA2, 0x6A, 0x38, 0x7B, 0x35, 0x27, 0xA9, 0x9B, 0x2E, 0x2C, 0x80, 0x81, 0x84, 0x18, 0x89, 0xB5, 0x74, 0x26, 0xF9, 0x7B, 0x1F, 0x4C, 0x80, 0x54, 0xB7, 0xB0, 0xE3, 0x84, 0x61, 0x72, 0xF9, 0x40, 0x07, 0x20, 0x4B, 0x70, 0x76, 0x88, 0xE2, 0x26, 0x1B, 0x92, 0x83, 0x7C, 0xCF, 0x8D, 0x38, 0x02, 0x76, 0xE1, 0x39, 0x54, 0x48, 0xE3, 0xCD, 0x66, 0xE3, 0xF9, 0xEE, 0x8D, 0xC6, 0xB0, 0x3F, 0xA9, 0xBC, 0x8A, 0xE5, 0xFD, 0xEE, 0xFE, 0x09, 0x5B, 0x3F, 0xCD, 0x63, 0x38, 0x69, 0x20, 0x75, 0x76, 0xFE, 0xAE, 0xBC, 0x05, 0x83, 0xF7, 0x4B, 0x44, 0x0F, 0xCC, 0xF4, 0x83, 0xFF, 0x6D, 0x7B, 0xC0, 0x74, 0x57, 0x3A, 0x11, 0x7F, 0x06, 0x19, 0x61, 0x86, 0x4D, 0x67, 0x1A, 0x54, 0xB5, 0xB1, 0xCA, 0x6C, 0x86, 0xD0, 0x46, 0xD2, 0x7C, 0x91, 0xFB, 0x84, 0x41, 0x84, 0x58, 0x0D, 0x90, 0xCD, 0x6E, 0xC1, 0xCC, 0x22, 0xA3, 0x62, 0xBD, 0x29, 0xD2, 0x64, 0x01, 0xC7, 0xB9, 0x7D, 0xBC, 0xA9, 0xBF, 0x2F, 0x5B, 0x22, 0xE8, 0x3A, 0xFF, 0x32, 0x69, 0x6F, 0xD8, 0x2F, 0x84, 0x51, 0x2C, 0x84, 0xA9, 0x0F, 0x7F, 0xA1, 0x73, 0xE8, 0xD2, 0x66, 0xBF, 0xD9, 0x7B, 0x16, 0x91, 0x3D, 0x46, 0x8D, 0xAD, 0xC7, 0xF4, 0xDD, 0xD6, 0x15, 0x14, 0x45, 0xB5, 0xBA, 0x3F, 0x54, 0x5B, 0x5E, 0xF8, 0x72, 0x9C, 0x54, 0x7B, 0x5A, 0x0B, 0x00, 0x40, 0x3C, 0xC0, 0xCB, 0x0B, 0x48, 0xAE, 0xF1, 0x96, 0x05, 0xE1, 0xD5, 0x32, 0x75, 0xBA, 0x7D, 0x29, 0x23, 0xA3, 0xA0, 0x4C, 0xD1, 0x60, 0x9E, 0xB4, 0x0F, 0x19, 0x85, 0x2C, 0xEF, 0x7E, 0x6D, 0x32, 0x87, 0xFB, 0xB2, 0x45, 0x9A, 0x20, 0x15, 0x80, 0x88, 0xA7, 0xB1, 0x4E, 0x18, 0x24, 0x37, 0x37, 0x71, 0xCD, 0x10, 0x9E, 0xBC, 0x70, 0x75, 0xA8, 0x5A, 0xB9, 0x8E, 0x8C, 0x07, 0xEB, 0xB6, 0xCC, 0xD9, 0x51, 0x9A, 0x3D, 0x90, 0x80, 0x62, 0x30, 0x78, 0xA9, 0x46, 0xB2, 0xDA, 0x07, 0xA5, 0xF4, 0x8F, 0xC0, 0x03, 0xEB, 0x01, 0x9D, 0x15, 0xA3, 0x01, 0x0B, 0x77, 0xDA, 0xFF, 0xF9, 0xD2, 0x42, 0xB7, 0xD1, 0xF2, 0xB5, 0x5E, 0x3A, 0xBC, 0x52, 0xD8, 0x51, 0x31, 0x49, 0xD8, 0xFF, 0x76, 0xCE, 0x17, 0x8F, 0x9B, 0x41, 0x81, 0x66, 0x06, 0x04, 0x89, 0x51, 0x0B, 0xEB, 0xB2, 0x6E, 0x1F, 0x19, 0xE7, 0x26, 0xDB, 0x6A, 0x92, 0xBC, 0xAC, 0x6D, 0x08, 0xB2, 0x86, 0xCC, 0x40, 0xA6, 0x4A, 0x6D, 0xF1, 0xA9, 0x32, 0x52, 0x00, 0x18, 0x10, 0x9E, 0x79, 0xFD, 0x48, 0x56, 0xBA, 0xC9, 0xE5, 0xD1, 0x2E, 0x0C, 0xAC, 0xDE, 0xFC, 0xC2, 0xD9, 0xFB, 0x65, 0x0C, 0x64, 0xC5, 0xBF, 0xFD, 0xC7, 0xFD, 0x89, 0x17, 0x8F, 0x10, 0xAA, 0x63, 0x5A, 0x81, 0xBD, 0x55, 0x7D, 0xD0, 0xBB, 0x5A, 0x29, 0x7E, 0x43, 0x69, 0x63, 0xB0, 0xFE, 0xF0, 0x63, 0x39, 0xAF, 0xDF, 0xFB, 0x3D, 0xA4, 0xE0, 0xA7, 0x4D, 0x35, 0xF5, 0xF0, 0xCC, 0xC9, 0x6F, 0xB5, 0x9D, 0x31, 0x10, 0xF9, 0x09, 0xA9, 0x13, 0x15, 0x54, 0xF5, 0xFC, 0xFE, 0x05, 0x3A, 0x43, 0x14, 0xF7, 0x04, 0x56, 0xAA, 0xA7, 0xF7, 0x7D, 0xB3, 0x8C, 0x76, 0x6E, 0x49, 0x0E, 0xE0, 0xC8, 0x04, 0x74, 0x85, 0x83, 0x64, 0x8B, 0x29, 0xF5, 0x8D, 0x73, 0x03, 0x42, 0x75, 0xB3, 0x21, 0x58, 0x3C, 0x6B, 0xEA, 0x0C, 0x4D, 0x86, 0xDC, 0x34, 0x63, 0x76, 0x85, 0x4B, 0x59, 0x73, 0x1A, 0x2B, 0x19, 0x30, 0xFA, 0x5C, 0xC7, 0x08, 0xC2, 0x93, 0x08, 0xA1, 0x47, 0xAC, 0x45, 0x88, 0xAB, 0xDF, 0x43, 0x21, 0x68, 0xC3, 0x77, 0x7D, 0x7E, 0x93, 0xB3, 0x80, 0x5F, 0xBA, 0x3E, 0x5A, 0x3C, 0xD3, 0x64, 0x6E, 0x93, 0x03, 0x2C, 0xA3, 0x0B, 0xDF, 0xC2, 0x92, 0xBD, 0x43, 0xCD, 0x0B, 0x30, 0x69, 0x71, 0x10, 0x9D, 0xA7, 0xF7, 0xA7, 0xDE, 0xD5, 0x58, 0x56, 0xEA, 0x92, 0x3F, 0x95, 0x07, 0x9F, 0x85, 0x61, 0xED, 0x27, 0xE8, 0xB6, 0x9E, 0x08, 0xB7, 0x8D, 0x1F, 0x90, 0x1B, 0x2C, 0x6E, 0x1F, 0x87, 0x1D, 0x51, 0x2B, 0x55, 0x30, 0xDD, 0x94, 0xE5, 0xC3, 0x58, 0xC8, 0x8F, 0xFD, 0xFD, 0x42, 0x22, 0x4C, 0x11, 0x04, 0x92, 0x38, 0x1F, 0x20, 0x64, 0x8F, 0xC3, 0xDD, 0xA4, 0xFD, 0x74, 0x3C, 0xB8, 0x4B, 0x93, 0x58, 0x47, 0x07, 0x7D, 0xED, 0x49, 0xE6, 0x52, 0x87, 0x97, 0x49, 0x8C, 0xC4, 0xC5, 0xDD, 0x85, 0xD8, 0xAD, 0xEE, 0xA4, 0x53, 0x66, 0x01, 0xC0, 0xD7, 0xD4, 0x3F, 0x13, 0x67, 0x71, 0x99, 0x3D, 0x76, 0x7B, 0x20, 0x86, 0x25, 0x2B, 0x6C, 0x1F, 0xFA, 0xDA, 0x14, 0x62, 0x5A, 0xEE, 0x54, 0xDB, 0xE8, 0xA0, 0x19, 0x78, 0x6C, 0xD2, 0xBB, 0x76, 0x44, 0x45, 0x83, 0x55, 0x2B, 0xA1, 0x69, 0xFF, 0xCE, 0xA4, 0x7F, 0xAD, 0x94, 0xED, 0xA5, 0x1A, 0x07, 0x57, 0xFF, 0x5E, 0xB9, 0xA3, 0x21, 0xBA, 0xFA, 0xB5, 0x71, 0x2B, 0x97, 0xAF, 0xE9, 0x3A, 0x12, 0xF9, 0x57, 0xBD, 0x3F, 0x5E, 0x70, 0x17, 0x2E, 0x0D, 0x06, 0x02, 0x9F, 0x5F, 0xF4, 0xE8, 0xD1, 0xE9, 0xF8, 0xA6, 0xD3, 0x41, 0x44, 0x98, 0x28, 0x8D, 0x13, 0x8F, 0x77, 0xAB, 0x88, 0xEA, 0x74, 0xAE, 0x4A, 0x9B, 0xB6, 0x97, 0x02, 0x75, 0x3A, 0x25, 0xEB, 0x4F, 0x9C, 0x3E, 0xC6, 0xEA, 0x72, 0xF5, 0x89, 0x85, 0x77, 0xFE, 0x8E, 0xA3, 0x79, 0x2D, 0x8F, 0x40, 0x29, 0xA0, 0xD3, 0x05, 0x11, 0x5F, 0x97, 0xE1, 0x19, 0x01, 0x3E, 0x6C, 0x8E, 0x26, 0xFE, 0x8C, 0xC5, 0x02, 0xAA, 0x55, 0xB5, 0x38, 0xB0, 0x0E, 0xD7, 0x57, 0xF3, 0xA9, 0x67, 0x2D, 0x89, 0x7B, 0x51, 0x8B, 0xE0, 0xAA, 0x82, 0xA5, 0x57, 0x4B, 0xCB, 0x49, 0x53, 0x8A, 0xF9, 0x07, 0xBE, 0xE1, 0x53, 0x36, 0xF6, 0x4B, 0xF1, 0x88, 0x30, 0x40, 0x03, 0x45, 0x52, 0x71, 0xB1, 0x31, 0xA3, 0x03, 0xE3, 0x42, 0xAF, 0x40, 0x33, 0xD2, 0xF1, 0x77, 0xFD, 0xCD, 0xEB, 0x40, 0x2C, 0x36, 0x76, 0xAD, 0xE2, 0x79, 0xA8, 0x17, 0x8A, 0xAD, 0x73, 0x68, 0xFC, 0xC0, 0x97, 0xC3, 0xA2, 0x8F, 0x32, 0x73, 0x70, 0x39, 0x61, 0xDA, 0x45, 0x78, 0x8B, 0x3D, 0xFE, 0xC6, 0xC6, 0x45, 0x2D, 0x27, 0x14, 0xA9, 0x4E, 0xFF, 0xCB, 0xFD, 0x37, 0x34, 0xF9, 0xF4, 0x5A, 0x9E, 0x03, 0x58, 0x12, 0x86, 0xD4, 0x0E, 0xDC, 0x35, 0x14, 0xDC, 0xBB, 0xE7, 0x14, 0xDA, 0xFA, 0x09, 0xBF, 0x94, 0xC6, 0xFA, 0x7E, 0x6E, 0x6E, 0x07, 0x4F, 0xFF, 0x86, 0xD8, 0xB3, 0x87, 0x10, 0x07, 0xAA, 0x4C, 0x0B, 0x93, 0xDF, 0x7C, 0x18, 0x87, 0x36, 0xC0, 0x02, 0x5E, 0xF1, 0xE7, 0xE3, 0x32, 0x84, 0x77, 0x4F, 0xC5, 0xBF, 0x40, 0x84, 0x84, 0x4F, 0x7C, 0x1F, 0x9F, 0xFE, 0x78, 0xD4, 0xF8, 0x04, 0x46, 0x78, 0x85, 0x32, 0x2B, 0x65, 0x7B, 0xFD, 0x7D, 0x14, 0x7C, 0xEC, 0x1D, 0x47, 0x73, 0x43, 0x0A, 0x62, 0xCA, 0xF1, 0x83, 0xF9, 0x28, 0x84, 0xAF, 0xD9, 0xD0, 0xE6, 0x38, 0x46, 0x9F, 0x99, 0x41, 0xF3, 0x26, 0x72, 0xFE, 0xFF, 0xBC, 0xF4, 0x22, 0xD6, 0x0F, 0x3C, 0xCA, 0x43, 0x6D, 0x7A, 0x8A, 0xE8, 0xBC, 0xEA, 0x75, 0x16, 0xB9, 0xF6, 0xEC, 0x59, 0x98, 0x7A, 0xA0, 0xC9, 0x19, 0x79, 0xDF, 0x7F, 0x01, 0x88, 0x05, 0xB6, 0xF8, 0x81, 0x65, 0x16, 0x51, 0x9B, 0xF7, 0xF8, 0x00, 0x3E, 0xA0, 0x77, 0x73, 0x93, 0x86, 0xE1, 0x36, 0xA9, 0x12, 0x07, 0x02, 0xAE, 0x20, 0xFD, 0xF5, 0x0B, 0x52, 0x77, 0xA2, 0x9B, 0x6F, 0x65, 0xB0, 0x00, 0x28, 0x03, 0x9C, 0x97, 0xDB, 0xE4, 0x95, 0xFF, 0xC9, 0x88, 0x17, 0xCF, 0x22, 0x87, 0xB2, 0xC0, 0xBF, 0x38, 0xE2, 0x27, 0x38, 0xB0, 0xFD, 0xFC, 0x81, 0x92, 0xA1, 0x16, 0x81, 0x43, 0x97, 0xD9, 0xA3, 0x6C, 0x10, 0x4B, 0x61, 0x94, 0xBC, 0xD3, 0x4A, 0xFB, 0xDA, 0xBD, 0x8A, 0x02, 0xA0, 0xA9, 0x98, 0xDB, 0xF9, 0xD2, 0x8A, 0x7B, 0x08, 0xE4, 0xDD, 0x8D, 0xFF, 0xF3, 0xF8, 0xFA, 0xB3, 0xD6, 0xF4, 0x29, 0x42, 0xF5, 0x44, 0xC9, 0xFB, 0xAC, 0x1E, 0xBF, 0x40, 0x59, 0x3A, 0x70, 0x83, 0xE3, 0x75, 0x98, 0x14, 0x32, 0x21, 0x28, 0x54, 0x77, 0x78, 0x3F, 0xC2, 0x25, 0x4A, 0x87, 0x5E, 0xD9, 0xAB, 0x1F, 0xAC, 0xEF, 0xFE, 0x81, 0x1F, 0x41, 0x5B, 0xB4, 0xFD, 0x3D, 0x3C, 0xC2, 0xEE, 0x45, 0x33, 0x53, 0x1B, 0x44, 0x52, 0x47, 0xEC, 0x08, 0x1D, 0xF0, 0x0C, 0x46, 0x6E, 0x25, 0x4D, 0xDB, 0xFF, 0xED, 0x61, 0xA9, 0xD0, 0x61, 0xD0, 0xE3, 0x19, 0xA2, 0x29, 0xBD, 0x8E, 0x74, 0x1E, 0x17, 0x6A, 0xCB, 0x23, 0xC5, 0xD5, 0xFD, 0xAF, 0x39, 0x14, 0x5C, 0x1E, 0xEF, 0xEA, 0x4D, 0x46, 0x7D, 0xAE, 0x34, 0x39, 0xDB, 0xAE, 0xEE, 0x4D, 0xA7, 0x9E, 0xF9, 0xFE, 0xBF, 0xFF, 0xEA, 0x9D, 0x21, 0xF4, 0xDF, 0xDF, 0xF4, 0x7F, 0xBF, 0xB3, 0xF6, 0x0F, 0xFF, 0x57, 0x65, 0xD9, 0x7B, 0xCC, 0xC9, 0x86, 0xB1, 0x1F, 0xEE, 0x24, 0xCF, 0x5C, 0x24, 0xAF, 0xB2, 0x15, 0x4E, 0x3D, 0xFA, 0xD9, 0x4F, 0x38, 0x44, 0xCA, 0x4E, 0x01, 0x66, 0x34, 0x80, 0x82, 0xFF, 0xFD, 0x65, 0x9A, 0x34, 0x08, 0x10, 0x44, 0x79, 0x4F, 0x5F, 0xD4, 0x30, 0xD9, 0x24, 0x81, 0xC9, 0x71, 0xDF, 0xEE, 0xDE, 0x2C, 0x3F, 0x18, 0x54, 0xC1, 0xA5, 0x66, 0xBD, 0xF3, 0x5B, 0x0D, 0x6A, 0x06, 0x19, 0x2F, 0x25, 0x04, 0xCC, 0xFD, 0xFB, 0x83, 0x92, 0x17, 0x84, 0x41, 0xD3, 0x36, 0xBB, 0x5F, 0xA9, 0x87, 0x23, 0xE4, 0xF8, 0x7C, 0xE3, 0x50, 0x18, 0xB1, 0xE1, 0xCF, 0xF2, 0x28, 0xFD, 0x0B, 0xB2, 0x88, 0x0E, 0x0F, 0xDF, 0xBF, 0x5D, 0x16, 0x8C, 0xC0, 0xDE, 0x29, 0xDD, 0xF6, 0xBA, 0x91, 0x76, 0x0C, 0x14, 0x45, 0xB2, 0xD7, 0x1A, 0x4C, 0x26, 0xE4, 0x59, 0xBE, 0x53, 0x25, 0x81, 0x38, 0x9E, 0x1B, 0x64, 0x57, 0xEA, 0x8F, 0xD8, 0xED, 0x54, 0x11, 0x6B, 0xBB, 0xD6, 0x22, 0x13, 0x49, 0xCE, 0x70, 0xE7, 0xB5, 0xC4, 0x1A, 0x55, 0xE4, 0x4C, 0xDE, 0x29, 0xF8, 0xFF, 0x8E, 0xBF, 0xA7, 0xD5, 0xCE, 0x03, 0x89, 0x67, 0x81, 0xB7, 0x66, 0x4A, 0xE7, 0x80, 0x0C, 0x36, 0xAE, 0xEB, 0xE1, 0x08, 0xB3, 0x84, 0x00, 0x05, 0x00, 0xA7, 0x86, 0x12, 0x11, 0x38, 0x28, 0x19, 0xCF, 0xC6, 0xC3, 0x68, 0x0E, 0x88, 0xB7, 0x31, 0xE7, 0x66, 0x55, 0x46, 0x01, 0x73, 0xE1, 0xBF, 0x17, 0x86, 0xB1, 0x38, 0x92, 0x23, 0x24, 0xDE, 0xF5, 0x55, 0xD3, 0xA6, 0xA6, 0xFF, 0xFD, 0x3E, 0x84, 0xD2, 0xC0, 0xFA, 0x6F, 0xBE, 0x58, 0x4E, 0x8A, 0x01, 0x54, 0x3F, 0x77, 0x61, 0x84, 0xB8, 0x63, 0xC9, 0x61, 0x25, 0x76, 0x47, 0xF7, 0xE2, 0xE8, 0xE9, 0xD6, 0x7E, 0xE2, 0x98, 0x68, 0x76, 0x2A, 0xCD, 0x7F, 0xE2, 0x50, 0x04, 0x6B, 0x5D, 0x6E, 0x93, 0x8A, 0xA8, 0x48, 0x68, 0xE9, 0xB7, 0x76, 0x19, 0x51, 0xAB, 0x27, 0x1A, 0x5A, 0xF1, 0x4B, 0x08, 0x17, 0x44, 0xC1, 0xD7, 0x0A, 0x23, 0xF6, 0x98, 0x0D, 0x08, 0x7A, 0xEC, 0x12, 0x8D, 0x1C, 0x60, 0xE1, 0x54, 0xB6, 0x0B, 0x58, 0x87, 0x3E, 0xAB, 0xEA, 0xFF, 0x48, 0xBB, 0x81, 0x19, 0xD8, 0x95, 0x7B, 0xF6, 0x02, 0xCC, 0x49, 0xA0, 0x6D, 0x8D, 0xA4, 0xD8, 0xE4, 0x00, 0xB7, 0x59, 0x7D, 0x3F, 0xDF, 0x8E, 0x1F, 0xA6, 0x00, 0x36, 0xA0, 0x2B, 0x40, 0xA4, 0x9C, 0x42, 0xF5, 0xBB, 0x56, 0x10, 0x1C, 0x7D, 0x00, 0x50, 0x16, 0xAC, 0x8B, 0x08, 0x59, 0x89, 0xEC, 0x0C, 0x31, 0xF8, 0x04, 0xC4, 0x8F, 0xD5, 0xBF, 0xDB, 0x3F, 0xD2, 0xE8, 0x14, 0x9B, 0xCF, 0x84, 0xCF, 0x7D, 0xEC, 0xFE, 0x4D, 0x36, 0x7E, 0x1B, 0xD9, 0x95, 0xF0, 0x21, 0xA7, 0x57, 0xEE, 0x18, 0x71, 0x64, 0x06, 0x28, 0xAC, 0x0E, 0x70, 0x5F, 0x11, 0x4A, 0x3F, 0x06, 0xFA, 0x9A, 0x0D, 0x3B, 0xEF, 0x51, 0x53, 0x86, 0xB1, 0x2F, 0xD3, 0xBF, 0xE6, 0x42, 0x9D, 0xB1, 0xC6, 0x35, 0xDC, 0x17, 0xD9, 0x78, 0x41, 0x74, 0x14, 0x44, 0x40, 0x11, 0xD1, 0xB1, 0xA1, 0x88, 0x2E, 0x2C, 0x44, 0x64, 0x40, 0xE5, 0x88, 0x60, 0xFA, 0x85, 0x54, 0x07, 0x77, 0x60, 0x88, 0x60, 0x0B, 0x00, 0xD8, 0xFE, 0x51, 0x28, 0xC8, 0x95, 0x5C, 0xDC, 0xEA, 0x97, 0xEF, 0x1F, 0xBF, 0x94, 0x7A, 0x14, 0xAB, 0xE4, 0xBF, 0xFB, 0x9A, 0x34, 0xFD, 0xC7, 0xD3, 0xD9, 0xB0, 0xDE, 0x09, 0xBB, 0x5B, 0xFE, 0xE7, 0xCE, 0x6D, 0x2C, 0xEA, 0xE0, 0x3F, 0x14, 0x6D, 0x86, 0x70, 0xD3, 0xDD, 0x00, 0x10, 0xE9, 0xA6, 0x49, 0x29, 0x4B, 0x36, 0x98, 0x18, 0x3B, 0x80, 0xBE, 0x84, 0xF9, 0xF1, 0x83, 0xB1, 0x07, 0xCF, 0x13, 0x5B, 0x43, 0x06, 0xB6, 0xBC, 0x55, 0x24, 0xA2, 0x21, 0xBC, 0x01, 0x15, 0x5C, 0xBC, 0xB6, 0x9B, 0x64, 0xC7, 0x5F, 0xF3, 0x03, 0x20, 0xF5, 0xCA, 0x36, 0xFE, 0xD3, 0xBF, 0x0E, 0x52, 0xBC, 0xDD, 0xDA, 0x87, 0x09, 0x68, 0x89, 0xD5, 0x1E, 0x67, 0xE6, 0xA3, 0xA9, 0xF5, 0x11, 0x61, 0xA8, 0xA2, 0x4D, 0xCB, 0xDA, 0x6D, 0xB7, 0xC2, 0x1B, 0xBF, 0x21, 0x4C, 0x5A, 0x91, 0xF8, 0x09, 0xAD, 0xDB, 0xEB, 0x9F, 0x78, 0xD0, 0x38, 0xDF, 0xF1, 0x95, 0x3C, 0xE4, 0x02, 0x41, 0xF7, 0x1F, 0xF5, 0x79, 0x18, 0xD0, 0xB5, 0xBC, 0xFE, 0xCA, 0x23, 0x42, 0xD2, 0x02, 0xAC, 0x80, 0x10, 0x3E, 0x03, 0xAE, 0x1C, 0x3D, 0x8B, 0x31, 0x9F, 0xFE, 0x6C, 0xE0, 0x4A, 0x29, 0x44, 0x12, 0xFB, 0xF2, 0x8C, 0x97, 0xB2, 0x78, 0xD2, 0x83, 0x58, 0xA6, 0xAE, 0x63, 0xCC, 0xE6, 0x3F, 0x1E, 0xAA, 0x9B, 0x0B, 0x48, 0x8A, 0xAC, 0x68, 0xA5, 0x47, 0x87, 0x15, 0x4A, 0xC3, 0x7D, 0x10, 0xD7, 0x49, 0x59, 0xBC, 0xE8, 0x18, 0x89, 0xAB, 0xB5, 0x4B, 0x17, 0xBD, 0x44, 0x52, 0x9D, 0xBA, 0xED, 0x89, 0x63, 0xF1, 0x4C, 0x40, 0xDB, 0x6F, 0x46, 0x97, 0x80, 0x05, 0xB2, 0x14, 0xFC, 0xF7, 0x64, 0x9D, 0xFF, 0xEC, 0x92, 0x9A, 0x15, 0x8B, 0x41, 0x6B, 0x8F, 0xED, 0x8E, 0xC0, 0x6B, 0x30, 0x22, 0x3D, 0xB8, 0xEA, 0x83, 0xB0, 0x49, 0x86, 0xEC, 0x2F, 0xFE, 0x6C, 0xCD, 0xB0, 0xC8, 0x15, 0x27, 0x7B, 0x9F, 0x9F, 0xA7, 0xA0, 0x6D, 0x8F, 0xF9, 0xFB, 0xF9, 0xC6, 0x55, 0x87, 0xCA, 0x2E, 0xDA, 0x84, 0x7F, 0xD6, 0x2B, 0x4A, 0x98, 0xFA, 0x2F, 0xFF, 0xF8, 0xAF, 0x89, 0x09, 0xBA, 0x4A, 0xF8, 0xC5, 0x08, 0x98, 0x07, 0x64, 0x10, 0x35, 0xCC, 0x1E, 0x52, 0xE3, 0x49, 0x20, 0x7D, 0x4D, 0xAB, 0xF0, 0x5C, 0xB5, 0xB5, 0x41, 0x1C, 0x50, 0xDE, 0x21, 0x7A, 0x8E, 0xBF, 0x69, 0x05, 0xF5, 0x1D, 0xD8, 0xDD, 0x85, 0x68, 0x95, 0x4F, 0x90, 0x7E, 0xD8, 0x2F, 0x67, 0xEF, 0xD5, 0xE2, 0x57, 0x1A, 0x47, 0xBF, 0x6B, 0x43, 0x95, 0x09, 0xCC, 0x5E, 0xDE, 0xB7, 0x42, 0x07, 0x28, 0xA9, 0xDC, 0xB4, 0x90, 0x75, 0x73, 0x78, 0xE4, 0xC7, 0x67, 0x24, 0xE2, 0xA9, 0x9B, 0xE4, 0x72, 0x6F, 0xBC, 0xC0, 0x7B, 0x3D, 0x3B, 0xDF, 0xE8, 0x7F, 0x1A, 0xB9, 0xF3, 0xFB, 0x62, 0x1F, 0x7F, 0xC9, 0xB4, 0x00, 0x08, 0x83, 0x49, 0x27, 0x19, 0xB9, 0x97, 0x5A, 0x32, 0x08, 0xCD, 0xD1, 0xEF, 0xFA, 0x88, 0xE7, 0xB5, 0x03, 0x70, 0x24, 0x71, 0x35, 0x60, 0xB7, 0xA9, 0x2E, 0xC9, 0x66, 0xE6, 0xE8, 0xB8, 0xDD, 0x91, 0x91, 0x9B, 0xE1, 0x84, 0x02, 0x20, 0x00, 0x20, 0x07, 0x40, 0x25, 0x95, 0x1F, 0x9B, 0x4A, 0x54, 0x82, 0xDF, 0x03, 0xAD, 0x21, 0xC0, 0xAC, 0xF5, 0x98, 0xB0, 0xCC, 0xF0, 0xBF, 0xC1, 0x13, 0x3E, 0xC6, 0x50, 0x14, 0x94, 0x0B, 0x06, 0xD9, 0x10, 0x25, 0xD5, 0xD5, 0x14, 0xD5, 0x04, 0xF8, 0xFD, 0xF3, 0x66, 0xCC, 0xC2, 0x93, 0xDD, 0xFA, 0x35, 0xED, 0x31, 0xEA, 0x0E, 0xD6, 0xB5, 0x91, 0x33, 0x38, 0x6B, 0xB0, 0x65, 0x0E, 0x0C, 0xB0, 0x33, 0x2F, 0xFD, 0xF6, 0xD1, 0x43, 0x25, 0x71, 0x7E, 0x91, 0x6A, 0x17, 0x2E, 0x47, 0x73, 0x32, 0x99, 0x65, 0xC1, 0x89, 0x50, 0xFD, 0xFA, 0xFC, 0x03, 0x57, 0x46, 0xEC, 0x9F, 0xEF, 0x7D, 0xCD, 0x01, 0x8D, 0x38, 0x69, 0xE5, 0x44, 0xB2, 0x33, 0x65, 0xCA, 0x60, 0x67, 0x82, 0x88, 0x76, 0x18, 0x00, 0x69, 0xF2, 0xD4, 0xD1, 0xBE, 0xDA, 0xC3, 0xA6, 0xB4, 0xD2, 0x55, 0xE1, 0x07, 0xED, 0xF8, 0xD7, 0x99, 0x37, 0xFB, 0xEC, 0x88, 0xC8, 0x8A, 0x78, 0x1A, 0xE7, 0xE7, 0x4A, 0xF2, 0xA7, 0x7A, 0x6C, 0xB3, 0x7B, 0xE5, 0x1B, 0x1C, 0x64, 0xA8, 0x75, 0x50, 0xF6, 0x01, 0x84, 0x52, 0xE2, 0xFF, 0x3A, 0x7F, 0x85, 0x56, 0x17, 0x90, 0x7B, 0x7B, 0x0A, 0x7E, 0x66, 0x5E, 0x70, 0x8D, 0x38, 0x78, 0xED, 0x98, 0x90, 0x6F, 0x51, 0x36, 0x85, 0x88, 0x2A, 0xBD, 0x66, 0xFD, 0x76, 0x4F, 0x96, 0x52, 0x4A, 0x6D, 0xF6, 0xA4, 0xDA, 0xAC, 0x98, 0xB0, 0xF9, 0x64, 0xF3, 0x17, 0xA6, 0xA9, 0xB4, 0xC5, 0xCC, 0xC2, 0x5B, 0x09, 0xFC, 0x95, 0xFC, 0xC9, 0x73, 0xFB, 0xEB, 0x7D, 0x36, 0xA3, 0xF9, 0xB3, 0x5E, 0xC7, 0xFE, 0x58, 0xFD, 0xA0, 0x30, 0x06, 0x0A, 0x06, 0x03, 0x4A, 0xBE, 0x02, 0x51, 0x8D, 0x21, 0x99, 0x52, 0xA4, 0x6A, 0x22, 0xB7, 0xD3, 0xAC, 0x63, 0xA9, 0x43, 0x2A, 0x51, 0xCA, 0xAA, 0x22, 0xA8, 0xF3, 0x26, 0x66, 0x66, 0x20, 0x05, 0x6E, 0x10, 0xC7, 0xCD, 0x05, 0x26, 0xFF, 0x7C, 0x9D, 0xD2, 0x3F, 0x9B, 0xDE, 0xE6, 0x47, 0x84, 0x9E, 0xF1, 0x3F, 0x87, 0x17, 0xEF, 0x2C, 0x7E, 0x74, 0x16, 0xAB, 0x2D, 0xDF, 0xA8, 0xF1, 0x06, 0x1F, 0x3A, 0xB0, 0xEA, 0x5D, 0x42, 0x1E, 0x17, 0x4B, 0xF2, 0x50, 0xEE, 0xF0, 0x2E, 0xCE, 0x6B, 0x44, 0x7E, 0xFE, 0x72, 0x4E, 0xEF, 0xF3, 0x21, 0xD3, 0xAA, 0x8E, 0x79, 0xC8, 0x76, 0xB7, 0x5C, 0xC9, 0x8A, 0x69, 0xD6, 0x01, 0xF2, 0x55, 0x03, 0x17, 0x99, 0x3A, 0xFF, 0xFF, 0xD1, 0x43, 0x9A, 0xA7, 0x8F, 0x16, 0xE1, 0x41, 0xD7, 0x78, 0xF2, 0x2B, 0x3C, 0xE0, 0xA0, 0xD1, 0xC2, 0x8D, 0x14, 0xEC, 0x70, 0x0C, 0x1A, 0x03, 0xC3, 0xAB, 0x75, 0x66, 0x34, 0x0B, 0x48, 0xE0, 0x18, 0x32, 0x2F, 0x79, 0xD4, 0xD3, 0xB3, 0x0A, 0x2C, 0x09, 0x02, 0x56, 0x30, 0x57, 0x21, 0x2E, 0x08, 0xDC, 0xD0, 0x63, 0x36, 0xE0, 0x7A, 0x0D, 0xFB, 0x15, 0x7E, 0xF1, 0x4B, 0xE7, 0xBD, 0x6B, 0x05, 0x72, 0x95, 0x21, 0x79, 0x3F, 0x1A, 0x51, 0xF1, 0x30, 0x0E, 0x3C, 0x17, 0xD6, 0xFF, 0x9F, 0xAF, 0xC2, 0x43, 0xB3, 0xE1, 0x22, 0x29, 0xA0, 0xC1, 0xCF, 0x93, 0xA7, 0xFD, 0xF9, 0x66, 0xB3, 0xDD, 0xD6, 0x99, 0x3C, 0x28, 0x83, 0xFD, 0x7F, 0x08, 0x5F, 0xDA, 0xD1, 0xBF, 0xCA, 0x54, 0x9F, 0xBF, 0x3D, 0xF7, 0x98, 0xBB, 0x82, 0xFD, 0x3B, 0xBC, 0x79, 0xFE, 0xA7, 0x20, 0x64, 0xE5, 0x60, 0xED, 0xA6, 0xDF, 0x95, 0x48, 0xF9, 0x9D, 0x47, 0x29, 0x23, 0x4F, 0x9E, 0x74, 0x06, 0x1A, 0x29, 0x0B, 0x5E, 0x7D, 0xEB, 0xFB, 0xF8, 0x42, 0x4A, 0x91, 0xFE, 0xF4, 0x14, 0x13, 0x40, 0xA2, 0x21, 0x12, 0xB8, 0x8F, 0x12, 0xA9, 0x96, 0x24, 0x73, 0x17, 0x0D, 0x58, 0xD7, 0x12, 0x83, 0x71, 0xE2, 0x8A, 0x68, 0xA3, 0xA9, 0x90, 0xAB, 0x12, 0x3A, 0x1E, 0x0D, 0xA1, 0x24, 0x10, 0xD4, 0xC2, 0x04, 0xC4, 0xF5, 0x43, 0xC7, 0xFC, 0x4A, 0xE6, 0x5C, 0x81, 0x77, 0x38, 0x8D, 0xD6, 0xF8, 0xAB, 0x62, 0x1C, 0x18, 0xBE, 0x5F, 0x77, 0xFA, 0x97, 0x5A, 0x40, 0xA8, 0xF6, 0x60, 0x8D, 0xDC, 0x52, 0x2E, 0xB6, 0x99, 0x26, 0x0C, 0x08, 0xB9, 0x5C, 0x6E, 0xFC, 0x75, 0x7B, 0xC0, 0x50, 0x4F, 0x8C, 0x9B, 0xC2, 0x34, 0xC8, 0x3D, 0x9D, 0x72, 0x23, 0xF6, 0xA2, 0x6F, 0x61, 0x51, 0x3D, 0x16, 0xBE, 0xB5, 0xB6, 0xF5, 0xF0, 0xC5, 0xCA, 0x37, 0xD5, 0x38, 0x94, 0x51, 0x63, 0x83, 0xF0, 0x61, 0x00, 0x09, 0x12, 0x84, 0x04, 0x52, 0xC4, 0x6A, 0x2E, 0x0C, 0x1F, 0xA6, 0xE7, 0x1F, 0x40, 0xCE, 0xDC, 0x90, 0x48, 0x7E, 0xC8, 0x85, 0xF6, 0x06, 0xC7, 0xFD, 0x5A, 0x33, 0xE5, 0x70, 0x5A, 0xDB, 0x7F, 0x35, 0x30, 0xF7, 0x8A, 0xEA, 0xA8, 0xDF, 0xD8, 0xF8, 0x00, 0x05, 0x6F, 0x87, 0xEB, 0x59, 0xE9, 0xB0, 0x84, 0xC7, 0x5F, 0xC3, 0xA9, 0x69, 0xA0, 0x94, 0x82, 0x26, 0x5A, 0xBA, 0xF7, 0xD0, 0x37, 0xE1, 0x4B, 0xF8, 0x1A, 0x8C, 0xE3, 0x3E, 0xED, 0xCA, 0x88, 0xC6, 0x88, 0x65, 0xA6, 0xED, 0x38, 0x9C, 0x3F, 0xBC, 0xBF, 0x89, 0xA8, 0x35, 0xE7, 0xE4, 0x3E, 0x8B, 0xC0, 0x02, 0x10, 0x2E, 0x23, 0x2B, 0x0D, 0x00, 0xD0, 0x49, 0x04, 0xAB, 0xCE, 0x27, 0x48, 0xB8, 0xC3, 0x60, 0x4D, 0x9E, 0x12, 0x77, 0xFF, 0x33, 0x1F, 0xEA, 0xD7, 0xF0, 0x1B, 0xC8, 0xA4, 0xFB, 0x08, 0x7F, 0x00, 0x31, 0xB2, 0x5F, 0xCB, 0xFF, 0xE6, 0x07, 0xC8, 0x0F, 0xC3, 0x94, 0x01, 0x98, 0x3C, 0xDC, 0xE0, 0x02, 0x18, 0xF0, 0x4C, 0xE7, 0x54, 0x45, 0xDF, 0x80, 0x1A, 0x2D, 0x56, 0x7F, 0xF3, 0x98, 0x6B, 0x22, 0x8A, 0x01, 0xB8, 0x7D, 0x98, 0x6C, 0x6B, 0x08, 0x26, 0x33, 0x96, 0xB6, 0xEF, 0x98, 0x7D, 0xFE, 0xFC, 0xF0, 0x1F, 0x81, 0xCA, 0x30, 0x80, 0x21, 0xDA, 0x75, 0x32, 0x76, 0x78, 0x26, 0xBF, 0x60, 0x0D, 0x30, 0xDE, 0x45, 0xEB, 0xC5, 0x2B, 0xB8, 0x5D, 0x6A, 0x11, 0x30, 0x05, 0x81, 0x1B, 0x48, 0xC9, 0x3F, 0xE6, 0x0D, 0x80, 0x32, 0x28, 0x56, 0x57, 0xAE, 0xA9, 0xA7, 0xA0, 0xAA, 0x91, 0xBF, 0x85, 0xA0, 0x7E, 0xF4, 0x14, 0x1C, 0xC0, 0x59, 0x5F, 0x96, 0xB8, 0xFB, 0x46, 0xE0, 0x34, 0x21, 0xC2, 0x60, 0xEB, 0x47, 0x88, 0x65, 0x0B, 0xC8, 0x66, 0x64, 0xBB, 0x0E, 0x37, 0xB2, 0xB6, 0xEB, 0x3A, 0x66, 0xC8, 0x29, 0x3B, 0x64, 0xA4, 0xBF, 0x58, 0x18, 0x66, 0x1A, 0x00, 0xA2, 0x4C, 0x9A, 0x62, 0xFC, 0x65, 0x95, 0x60, 0x37, 0x11, 0x44, 0x72, 0xC5, 0xAC, 0xD0, 0x2E, 0xC6, 0xD9, 0x01, 0xC6, 0x6B, 0x75, 0x0A, 0xD6, 0x3A, 0x8F, 0x01, 0x68, 0xA3, 0x70, 0xBA, 0x87, 0xE0, 0x23, 0x50, 0xBD, 0x98, 0xA9, 0x7D, 0xF5, 0x40, 0x1F, 0x75, 0xCA, 0x2E, 0x1E, 0x85, 0x7C, 0xBF, 0xD9, 0xB9, 0x69, 0xA7, 0xEF, 0xFC, 0xD8, 0x57, 0x57, 0x10, 0x9C, 0x77, 0x5F, 0x05, 0x61, 0x4F, 0xE1, 0x3D, 0xE9, 0xE7, 0x7E, 0xA2, 0xBC, 0x31, 0xB8, 0xAD, 0x12, 0x51, 0xFE, 0xF8, 0x90, 0xC8, 0x6B, 0x2A, 0x18, 0x1D, 0xEE, 0xD7, 0x7E, 0x35, 0x00, 0xCE, 0x40, 0xB6, 0x9E, 0x23, 0xA4, 0x38, 0x1E, 0x0B, 0xDB, 0x81, 0x44, 0x0E, 0x1A, 0xE6, 0x1A, 0xD4, 0x5C, 0xEC, 0xC0, 0xFC, 0x14, 0xB5, 0x99, 0x60, 0x00, 0xC0, 0x34, 0x1B, 0xF7, 0x01, 0x52, 0xD1, 0xE8, 0x06, 0x67, 0x34, 0x25, 0xE1, 0xC0, 0xD1, 0x67, 0xAD, 0xCD, 0xBA, 0xDB, 0xF8, 0x57, 0x88, 0xBD, 0xD1, 0xE0, 0x3C, 0x92, 0x77, 0xF6, 0x2B, 0x44, 0x31, 0x16, 0x5C, 0xA4, 0x59, 0x07, 0xEE, 0xC5, 0x88, 0xEC, 0x46, 0xB2, 0x99, 0xD9, 0x50, 0xCE, 0x6F, 0xBE, 0xE9, 0x1F, 0xEB, 0xC8, 0x40, 0x08, 0x8D, 0x95, 0xC0, 0x6D, 0x46, 0x42, 0x52, 0x83, 0x92, 0x1D, 0xDE, 0x80, 0x98, 0xA5, 0x84, 0x26, 0x4B, 0x08, 0x8B, 0xFA, 0x9C, 0x4D, 0x30, 0xC8, 0xDB, 0x7C, 0x60, 0xF5, 0x7A, 0x04, 0x71, 0x16, 0xB8, 0x00, 0x48, 0xCF, 0x82, 0x26, 0xEE, 0xED, 0xAB, 0x48, 0xD0, 0x3E, 0xE0, 0xD9, 0xB3, 0x10, 0x4B, 0x1F, 0xF6, 0x05, 0xF0, 0x08, 0xCA, 0x52, 0xAA, 0x03, 0xA7, 0x02, 0x1F, 0xFC, 0x06, 0x63, 0x05, 0x63, 0xE8, 0xC6, 0x57, 0x8F, 0x6E, 0x96, 0x9E, 0x60, 0xB9, 0x4C, 0xFF, 0x34, 0x61, 0xA6, 0xE8, 0xA1, 0x2F, 0xFF, 0x04, 0x1C, 0x7B, 0x54, 0x63, 0xF1, 0x9A, 0x2A, 0xE9, 0x5F, 0xF6, 0xB0, 0x75, 0xE0, 0x60, 0xA8, 0xE9, 0x48, 0xCD, 0x5C, 0xBD, 0xD6, 0x5A, 0x25, 0x62, 0x51, 0xC3, 0x61, 0x6B, 0xFF, 0xFF, 0xD5, 0x99, 0xE3, 0xA0, 0x96, 0x32, 0x38, 0x84, 0xBF, 0xAE, 0x91, 0xE6, 0x98, 0x23, 0x03, 0x21, 0x5A, 0x77, 0x3F, 0xEE, 0x6C, 0x2A, 0x49, 0x82, 0xBC, 0x22, 0x17, 0x82, 0x89, 0xFF, 0x85, 0xD7, 0xDF, 0x57, 0x85, 0xC0, 0x44, 0x1E, 0x5E, 0xE3, 0x38, 0x00, 0x4E, 0xC8, 0x04, 0x9D, 0xFF, 0xA0, 0xF0, 0x61, 0x4F, 0x41, 0x37, 0xEE, 0x7D, 0x10, 0xEA, 0x82, 0x27, 0x9A, 0x54, 0xFD, 0xF7, 0xAE, 0x4F, 0xD8, 0x4A, 0x80, 0x1A, 0x81, 0x66, 0xF8, 0x2C, 0x08, 0x4C, 0x7E, 0x05, 0x28, 0xD6, 0xEA, 0xBF, 0xB6, 0xEF, 0xE6, 0xB2, 0x58, 0xB6, 0xEA, 0xC6, 0x6C, 0x25, 0xE4, 0x24, 0x5C, 0xD8, 0x69, 0x96, 0xF5, 0xE6, 0x88, 0xC8, 0xA3, 0x00, 0xF0, 0xAA, 0x96, 0x04, 0x44, 0xFC, 0x5D, 0x27, 0xC9, 0x12, 0x00, 0x58, 0x9D, 0x58, 0x03, 0xBC, 0xBD, 0x77, 0x1F, 0xD4, 0xC4, 0x2B, 0x65, 0xD8, 0xAD, 0xB8, 0xA9, 0x4E, 0xA1, 0x0B, 0xAD, 0x64, 0x55, 0x5D, 0x9D, 0xAC, 0x79, 0x24, 0x31, 0x88, 0xAB, 0x83, 0x52, 0xEE, 0xF6, 0xE9, 0xD1, 0x26, 0x60, 0x83, 0xA2, 0x5E, 0xE4, 0xFD, 0x5C, 0x09, 0x4E, 0xCB, 0x3E, 0x50, 0x0A, 0xD5, 0x4B, 0x4F, 0x60, 0xD5, 0xF7, 0xDC, 0xF3, 0x86, 0xDC, 0x20, 0x11, 0x12, 0xA3, 0x40, 0xF1, 0xD8, 0xE3, 0x05, 0x7A, 0x61, 0xE9, 0x41, 0x00, 0x53, 0x6B, 0xFF, 0x3D, 0xC2, 0xC8, 0xC3, 0x0F, 0x1A, 0xB2, 0x0B, 0x0E, 0xEF, 0x7A, 0xB0, 0x03, 0x30, 0xB4, 0x35, 0x61, 0xC8, 0xE7, 0xB9, 0x2C, 0x10, 0x76, 0xC1, 0x19, 0x8B, 0xF4, 0x5E, 0x9F, 0xF6, 0x01, 0x8D, 0x58, 0xFD, 0x72, 0x1B, 0xC5, 0x05, 0x34, 0xCD, 0x8B, 0xF4, 0xD5, 0x46, 0x98, 0xF3, 0x89, 0x09, 0x42, 0x53, 0x79, 0xD3, 0x4F, 0xF3, 0x36, 0x3A, 0x20, 0x40, 0x19, 0x0B, 0x77, 0xBF, 0x5F, 0x01, 0x0F, 0x51, 0x19, 0x64, 0x0D, 0xC4, 0x3C, 0xCF, 0xFD, 0xCF, 0xA6, 0xC9, 0x20, 0xB2, 0x61, 0x3B, 0x1F, 0x46, 0x51, 0x65, 0x90, 0x0E, 0x30, 0x6C, 0x04, 0x03, 0x5C, 0xEB, 0xF5, 0x8D, 0xCC, 0x66, 0x09, 0x14, 0x90, 0x0D, 0x61, 0x41, 0x3F, 0x67, 0x1C, 0x19, 0xD6, 0xE1, 0x31, 0x83, 0x16, 0xF0, 0x40, 0xFC, 0xA4, 0x4A, 0x02, 0x59, 0x43, 0x53, 0x1B, 0x3F, 0x90, 0x92, 0x4E, 0x52, 0xBF, 0xCF, 0xBE, 0x62, 0x1F, 0xCA, 0x55, 0x21, 0xE2, 0x81, 0x63, 0x4C, 0xDB, 0x8B, 0xB0, 0x00, 0x70, 0x03, 0xF2, 0x9F, 0x84, 0x5E, 0x4D, 0xEE, 0x79, 0x81, 0x3F, 0x3F, 0x35, 0xF7, 0x7C, 0x51, 0x13, 0xF2, 0x11, 0xA2, 0x1B, 0xC1, 0xC3, 0x8D, 0xE6, 0xA8, 0xDA, 0x01, 0xC1, 0xA4, 0x88, 0xB6, 0x02, 0x66, 0x9E, 0xE4, 0x09, 0x19, 0x87, 0xBE, 0xD3, 0xCA, 0x02, 0x3A, 0xC3, 0xC3, 0x9C, 0x69, 0x62, 0x5F, 0xFF, 0x4C, 0xD7, 0xEA, 0xCE, 0x78, 0x0A, 0x00, 0xFA, 0x35, 0x16, 0xD8, 0x9D, 0x01, 0x85, 0xDF, 0xEB, 0xE0, 0x31, 0x68, 0xEE, 0x51, 0xFE, 0x69, 0x36, 0x58, 0xBE, 0xA6, 0xBE, 0xA8, 0x71, 0x8F, 0x06, 0x2E, 0x57, 0x2F, 0x8A, 0x00, 0x3F, 0x98, 0xC8, 0xE2, 0x10, 0x37, 0x2A, 0x0F, 0x82, 0x8F, 0x2F, 0x11, 0xC8, 0xBB, 0x78, 0x19, 0xD4, 0x63, 0x78, 0x27, 0x74, 0x9F, 0xD9, 0x99, 0x84, 0x58, 0xE2, 0x26, 0xF8, 0xFF, 0xF8, 0x4A, 0x58, 0xD2, 0xB9, 0xE0, 0x6C, 0x50, 0xD2, 0xE6, 0xD5, 0x72, 0x0F, 0xD9, 0x94, 0xA5, 0xBC, 0x99, 0x6A, 0x02, 0xC3, 0xE9, 0x04, 0xC9, 0x33, 0x95, 0x02, 0xAD, 0x7B, 0xF2, 0xF4, 0x66, 0x34, 0x68, 0xBB, 0x7E, 0xD9, 0x02, 0xA2, 0x23, 0xFD, 0xF1, 0x4D, 0x0F, 0xC6, 0x35, 0x92, 0x98, 0x69, 0x24, 0x4E, 0x4C, 0x71, 0xC0, 0xA9, 0x77, 0xA6, 0x8B, 0xEE, 0x14, 0xF8, 0x77, 0x37, 0x65, 0x29, 0x54, 0xC8, 0xF3, 0x3D, 0x59, 0x32, 0xC0, 0x0B, 0xA7, 0x05, 0xC1, 0x6A, 0x6B, 0x33, 0x67, 0x33, 0x2B, 0x71, 0xE9, 0xBB, 0xE4, 0x16, 0x04, 0x63, 0x0D, 0x24, 0x31, 0x94, 0x32, 0x0A, 0x5B, 0x6E, 0xF4, 0x0E, 0xC7, 0xCC, 0xBC, 0x79, 0xBF, 0xDF, 0xD3, 0x4A, 0xC5, 0xD4, 0x00, 0xA9, 0x02, 0x27, 0x07, 0xDB, 0x0E, 0xDB, 0x77, 0x44, 0xF2, 0x4A, 0x48, 0x58, 0xDF, 0xDE, 0x6B, 0x21, 0x5B, 0x68, 0x3B, 0x60, 0xC3, 0x21, 0x6D, 0xFD, 0xE4, 0xF7, 0x81, 0x18, 0xB0, 0x0A, 0xA1, 0xFB, 0x5A, 0xF8, 0x04, 0xBB, 0xCC, 0x95, 0x79, 0x1B, 0x09, 0x8D, 0x79, 0xA7, 0x5C, 0x61, 0x72, 0x3D, 0xB7, 0x5A, 0x01, 0x89, 0x37, 0xCB, 0xFD, 0xFC, 0xB4, 0x90, 0x67, 0xD9, 0x67, 0x8D, 0x3A, 0xBF, 0x7E, 0xD6, 0x70, 0x53, 0xBF, 0xA4, 0xC9, 0x9F, 0xFC, 0x68, 0x55, 0x7F, 0x89, 0xF7, 0x15, 0x8B, 0x5F, 0xFB, 0xC5, 0x9B, 0xF3, 0xC1, 0x32, 0xBA, 0x03, 0x37, 0xE6, 0x12, 0xB6, 0x2C, 0xB7, 0xF8, 0x7D, 0x0B, 0xAE, 0xBD, 0x09, 0x70, 0xE1, 0x8E, 0x67, 0x1C, 0xC7, 0x53, 0x61, 0xD6, 0x97, 0x01, 0x4A, 0x09, 0xB1, 0xE9, 0x1C, 0xD4, 0xF4, 0x59, 0x6E, 0x30, 0x6A, 0xE3, 0x9A, 0xCB, 0xA2, 0xE1, 0x24, 0x4C, 0x8D, 0xC9, 0x8C, 0x98, 0x82, 0x68, 0x4F, 0xC1, 0x0A, 0xC1, 0xDB, 0xAA, 0x61, 0xAC, 0x20, 0xAD, 0x84, 0xC4, 0x58, 0xE2, 0xF3, 0xE2, 0x44, 0x99, 0x60, 0xC1, 0xFE, 0x52, 0x02, 0x37, 0xD8, 0x68, 0x0E, 0xBA, 0x3C, 0x28, 0x4E, 0x17, 0xA3, 0xFF, 0xD8, 0xB4, 0x63, 0xF2, 0xE0, 0x22, 0xEA, 0xBD, 0xD1, 0xA6, 0xCB, 0x67, 0xEF, 0x36, 0x97, 0xBB, 0x2D, 0x86, 0x46, 0xE0, 0x03, 0x3F, 0xF3, 0x12, 0x2E, 0x80, 0xD9, 0xD5, 0xA6, 0x08, 0xB2, 0x76, 0x7D, 0xBF, 0x23, 0xFA, 0x52, 0x4E, 0x4A, 0x81, 0x91, 0xEB, 0xB0, 0x71, 0xA5, 0x77, 0xDE, 0x7B, 0x07, 0x51, 0xAA, 0x0F, 0xC4, 0xF0, 0x27, 0x8B, 0xFE, 0x5B, 0xBD, 0xFD, 0x8C, 0x48, 0x35, 0xA7, 0xE8, 0xC0, 0x30, 0x00, 0x1A, 0xA0, 0x38, 0x50, 0x60, 0x03, 0x59, 0x5A, 0xCF, 0x53, 0xDC, 0x34, 0x6D, 0xA4, 0x1E, 0x90, 0x0C, 0x81, 0x93, 0x36, 0x7B, 0x06, 0x82, 0x8D, 0xE2, 0x38, 0x82, 0x8E, 0x59, 0x05, 0x81, 0xA8, 0x26, 0x53, 0xB8, 0x28, 0x6F, 0x62, 0x30, 0xCD, 0xE2, 0xA2, 0xAB, 0x47, 0x11, 0x25, 0x0E, 0x5C, 0x85, 0x2C, 0x5C, 0x0A, 0x3A, 0x29, 0xBD, 0x68, 0x0A, 0x14, 0x0C, 0xFC, 0xC4, 0x61, 0x7E, 0xC2, 0x13, 0xDB, 0xD5, 0x6E, 0x45, 0xAB, 0xE7, 0xA8, 0x08, 0xF1, 0x7F, 0x76, 0xA7, 0x2F, 0x1D, 0xD5, 0x15, 0xBE, 0xFF, 0x3D, 0x12, 0x48, 0x55, 0x5A, 0xAF, 0x5E, 0x6D, 0x20, 0x62, 0x4D, 0xA5, 0x79, 0xA4, 0x6B, 0x9F, 0xE4, 0x68, 0x5D, 0x2D, 0x93, 0x43, 0x49, 0x78, 0x39, 0x12, 0xAD, 0xEA, 0x71, 0x21, 0x6B, 0x90, 0x64, 0x37, 0xBF, 0xD7, 0xE2, 0x84, 0xBC, 0xF9, 0x76, 0x6D, 0x3F, 0xCE, 0x10, 0x00, 0x19, 0x00, 0x87, 0xB2, 0x76, 0xFD, 0xB6, 0xBA, 0xBA, 0xB7, 0x43, 0x12, 0xE0, 0x6F, 0x7C, 0x98, 0x00, 0x08, 0x01, 0x38, 0x5B, 0x0A, 0x06, 0xD7, 0x7A, 0x77, 0x56, 0xF2, 0x88, 0xA6, 0x89, 0xD5, 0x50, 0x54, 0x89, 0x6C, 0x45, 0x0F, 0x73, 0x48, 0x2B, 0x92, 0x35, 0x5F, 0xC4, 0x3C, 0x3B, 0xEF, 0x40, 0xD4, 0x48, 0x6F, 0x0F, 0xFF, 0xDE, 0xD4, 0x6F, 0x62, 0x3B, 0xBA, 0x17, 0x7C, 0x65, 0xDF, 0xF7, 0x43, 0x09, 0xF1, 0x70, 0x84, 0xA3, 0x77, 0xFF, 0xC1, 0x5F, 0x37, 0xA1, 0x2C, 0xE5, 0x4D, 0x97, 0x62, 0x71, 0xBD, 0xDA, 0x6D, 0x00, 0x3E, 0x51, 0x5F, 0x02, 0x13, 0xFC, 0x22, 0x38, 0x74, 0x1F, 0xA9, 0x00, 0xC6, 0xC1, 0x99, 0x40, 0x75, 0xC5, 0x03, 0xC5, 0x93, 0x7F, 0x55, 0xAD, 0xCD, 0xE0, 0x93, 0x52, 0xBA, 0xD7, 0x9F, 0x58, 0x32, 0x63, 0xB3, 0x7A, 0xBF, 0xC0, 0x97, 0x90, 0x82, 0x5C, 0x4E, 0x41, 0x0F, 0x10, 0x6C, 0x12, 0x49, 0xD4, 0x69, 0x23, 0x71, 0xB1, 0xA7, 0x83, 0xFC, 0xC0, 0x8A, 0x1B, 0xC1, 0xA4, 0x09, 0xEB, 0x45, 0x6E, 0x83, 0xEA, 0x0F, 0x78, 0x3D, 0x36, 0x19, 0x01, 0xD6, 0x8C, 0x18, 0x90, 0xB0, 0x1D, 0x63, 0xA2, 0xA2, 0xC9, 0xDD, 0x23, 0x4F, 0x72, 0xD2, 0x85, 0x7E, 0x45, 0xFF, 0xFD, 0x4D, 0x55, 0xA2, 0x03, 0xE6, 0x1F, 0xD7, 0x68, 0xF4, 0xD2, 0xCF, 0x26, 0xE1, 0x41, 0x3A, 0x53, 0x71, 0xDC, 0x97, 0xB0, 0xE5, 0xAF, 0xBF, 0xEE, 0x6D, 0x9E, 0x9A, 0x5D, 0x4F, 0xE6, 0x9F, 0x1B, 0xEF, 0xAB, 0x5E, 0x6D, 0x63, 0x66, 0xD8, 0xCF, 0xDB, 0xCC, 0xD4, 0xF9, 0xFF, 0xB4, 0x80, 0xC7, 0xEA, 0xD8, 0x24, 0xC6, 0xA0, 0xB9, 0x38, 0x56, 0x5C, 0x2E, 0xD9, 0x4A, 0xFD, 0xE7, 0x8E, 0x4D, 0x1D, 0x53, 0x7F, 0xA6, 0xA6, 0xFE, 0xB1, 0xA9, 0xC2, 0x02, 0x06, 0x00, 0x51, 0x42, 0x00, 0x02, 0x00, 0x15, 0xA5, 0x60, 0x23, 0x87, 0xAD, 0xF7, 0x04, 0x61, 0xEF, 0x7D, 0x95, 0x19, 0x0D, 0xAA, 0x61, 0x69, 0x79, 0xA0, 0xE0, 0xC0, 0xC8, 0xF1, 0xB0, 0x6C, 0x5D, 0x80, 0x20, 0xB2, 0xDB, 0xA5, 0x74, 0x44, 0x10, 0x62, 0x60, 0x47, 0xCE, 0xF9, 0x7D, 0x01, 0x43, 0x1A, 0x20, 0xBB, 0xA9, 0x70, 0x8B, 0x29, 0x7A, 0xB8, 0x8F, 0x73, 0x4F, 0x91, 0x5D, 0x6C, 0xBA, 0x78, 0xE0, 0x00, 0x66, 0xFD, 0x47, 0xF2, 0x87, 0x5B, 0x1C, 0xAB, 0xA1, 0xD5, 0x6A, 0xF8, 0x44, 0x01, 0x35, 0x1C, 0x18, 0x7C, 0xA8, 0x6A, 0xDD, 0x9D, 0x5E, 0x3A, 0x9C, 0xD7, 0xD2, 0xB1, 0xD0, 0x1A, 0xD5, 0x7E, 0xF7, 0xCF, 0xFB, 0x4C, 0x1F, 0x51, 0xCD, 0xD9, 0xF0, 0xC2, 0x08, 0xCB, 0x6C, 0xB5, 0x6A, 0x32, 0x87, 0x9C, 0x99, 0x0C, 0x1A, 0x66, 0x8E, 0xD6, 0x3A, 0x22, 0x4A, 0x7A, 0xFE, 0xA1, 0xED, 0xDA, 0xD0, 0x94, 0x06, 0x1C, 0x20, 0x12, 0xB9, 0xCE, 0x79, 0x30, 0x85, 0xB7, 0x66, 0x9D, 0x24, 0x92, 0xCF, 0x0B, 0x45, 0x1E, 0x91, 0xDB, 0x80, 0x84, 0xBD, 0x8A, 0xB0, 0x2A, 0x1E, 0xE8, 0xF0, 0x82, 0x78, 0xED, 0xBB, 0x61, 0x60, 0x96, 0xD6, 0xF2, 0x67, 0xB8, 0xBF, 0x41, 0x41, 0x31, 0xE1, 0x95, 0x18, 0xB7, 0xF7, 0xFE, 0x83, 0x88, 0x9F, 0xDA, 0x25, 0xFF, 0xFD, 0xF3, 0x20, 0x36, 0x94, 0x59, 0xEE, 0xC9, 0x6F, 0xF8, 0xB0, 0xFB, 0x5D, 0xE6, 0x5F, 0x07, 0xFD, 0x06, 0x04, 0x87, 0x8D, 0x23, 0x21, 0xF2, 0x38, 0xAD, 0x6C, 0xD1, 0xDE, 0xFE, 0x30, 0x40, 0xC2, 0x2E, 0xEB, 0x7E, 0xDD, 0xFF, 0x2C, 0x82, 0x90, 0x23, 0x01, 0xD8, 0x45, 0x33, 0x78, 0xC3, 0xF2, 0x63, 0xB7, 0x42, 0x60, 0x19, 0x2C, 0x08, 0xF6, 0xC0, 0xBC, 0x1E, 0x1B, 0x80, 0x13, 0x81, 0x61, 0xD3, 0x0C, 0xBA, 0xFB, 0x90, 0x7F, 0x18, 0x86, 0xC6, 0x71, 0x94, 0xFE, 0x9A, 0x64, 0x5A, 0xCE, 0x2E, 0xEB, 0xF0, 0xD5, 0x37, 0x86, 0xAA, 0xD4, 0xFD, 0x81, 0x00, 0x38, 0x14, 0x84, 0xA1, 0xF3, 0x2E, 0x1E, 0x0B, 0x05, 0xA2, 0x79, 0xC0, 0x58, 0x1E, 0xDD, 0xE2, 0xDD, 0x21, 0x5F, 0xFF, 0x00, 0xC1, 0x58, 0xB9, 0x94, 0xF6, 0x3A, 0x04, 0x6E, 0xCC, 0x67, 0xC6, 0x96, 0xBF, 0xB4, 0xF5, 0xD9, 0x1A, 0x1C, 0xC6, 0x81, 0xC6, 0x00, 0xA9, 0x25, 0x96, 0xE0, 0xAD, 0x60, 0xE6, 0x4F, 0xFC, 0x13, 0x7F, 0xFC, 0xEC, 0x7C, 0x2B, 0xA1, 0xDB, 0x80, 0x0F, 0x64, 0x46, 0x69, 0x1C, 0x7C, 0x98, 0xC4, 0xF3, 0x01, 0x10, 0x89, 0x86, 0xD5, 0x92, 0x10, 0x91, 0xCD, 0xA6, 0x02, 0x03, 0x36, 0xD5, 0x98, 0x9F, 0x38, 0x72, 0x93, 0x09, 0x18, 0xDC, 0xEC, 0x22, 0xE8, 0x8F, 0xED, 0xAB, 0xCA, 0x78, 0x71, 0x13, 0xDF, 0xE5, 0x6F, 0xED, 0xFE, 0xDE, 0xF8, 0xB2, 0x6D, 0xEA, 0xCD, 0xC3, 0xF1, 0x66, 0x0C, 0x5D, 0xFA, 0xC5, 0xF0, 0x04, 0x42, 0x10, 0x4C, 0x2D, 0x3F, 0x8E, 0xBD, 0x44, 0x7E, 0x45, 0xD7, 0x77, 0xF8, 0xE4, 0xBE, 0x01, 0x89, 0x8E, 0x5E, 0x4B, 0xCA, 0xBD, 0x9E, 0x4B, 0xF6, 0x35, 0x2E, 0xE0, 0x55, 0x37, 0x13, 0xFB, 0xF0, 0x01, 0x76, 0x7C, 0xB7, 0xFB, 0x54, 0x34, 0xE3, 0x7A, 0x50, 0xA0, 0x47, 0x80, 0x67, 0x41, 0x08, 0x48, 0x5F, 0x83, 0x17, 0xD8, 0x8F, 0x7B, 0xD2, 0x30, 0xA8, 0x26, 0x34, 0xB7, 0x03, 0x57, 0x2D, 0x5D, 0x39, 0xB1, 0xFE, 0x1D, 0xFC, 0x1F, 0x66, 0x25, 0xE9, 0xCD, 0xE3, 0x35, 0x37, 0x47, 0xFF, 0xCD, 0x4B, 0x58, 0x4B, 0x59, 0x6C, 0x3F, 0x7E, 0x7C, 0x00, 0xC6, 0xF9, 0x7B, 0xA7, 0x71, 0xB4, 0xB1, 0xDD, 0xD6, 0x05, 0xF0, 0x82, 0xC5, 0xB9, 0x56, 0xEF, 0xB2, 0x08, 0x13, 0x0B, 0x1E, 0xBB, 0x90, 0xD1, 0x34, 0x0E, 0xB6, 0xFF, 0xEE, 0x15, 0x05, 0xA9, 0x46, 0xBC, 0xA6, 0x36, 0x9E, 0x70, 0xEB, 0xC5, 0x7E, 0x18, 0x9C, 0x8C, 0xAF, 0x6F, 0x79, 0x18, 0xB6, 0x1C, 0x91, 0xBD, 0xC0, 0x0D, 0xCC, 0x6A, 0x0F, 0x93, 0x21, 0xE3, 0x48, 0xC1, 0x91, 0x2E, 0x8E, 0x87, 0x27, 0x08, 0xB9, 0xB4, 0xF1, 0x50, 0xB9, 0x48, 0x81, 0x69, 0xB2, 0x0F, 0x49, 0x97, 0xAF, 0x01, 0x7B, 0x50, 0x4B, 0x2D, 0x60, 0x1D, 0x2A, 0x14, 0x50, 0x6A, 0x34, 0xB5, 0x5F, 0x4D, 0x4F, 0x66, 0x47, 0xB0, 0x20, 0x88, 0xFF, 0x5B, 0x07, 0xD5, 0xA2, 0x66, 0x15, 0x59, 0xE8, 0x4B, 0x29, 0x4C, 0x7F, 0x64, 0x59, 0xD2, 0x61, 0xF8, 0xCE, 0x83, 0xF2, 0xF6, 0x9C, 0xD3, 0xED, 0x54, 0x00, 0x3B, 0xFC, 0x22, 0x31, 0xCE, 0xA4, 0x23, 0x85, 0xB1, 0x32, 0x8B, 0x13, 0x33, 0x37, 0xDE, 0x28, 0x58, 0x90, 0x60, 0x84, 0x9C, 0x6E, 0xDC, 0x7B, 0xC0, 0x8F, 0x43, 0xFD, 0xC6, 0x5B, 0xE9, 0x44, 0x05, 0xA0, 0x14, 0xFF, 0xEA, 0xE3, 0x09, 0x79, 0x22, 0xBD, 0xBC, 0x9C, 0xA0, 0x9C, 0xAF, 0xBA, 0xB3, 0x8C, 0xF8, 0x09, 0x80, 0x63, 0x2F, 0x52, 0xD9, 0xAD, 0x3D, 0x7E, 0x85, 0x6E, 0xAA, 0xDA, 0x45, 0x0C, 0xE4, 0x6C, 0x3A, 0x5C, 0x81, 0xD9, 0x7B, 0x08, 0xD1, 0x86, 0xD2, 0x7E, 0x10, 0x0A, 0xCC, 0x15, 0xB0, 0x7E, 0x4A, 0xA2, 0x09, 0xFF, 0xF5, 0x1D, 0x4B, 0x1D, 0x19, 0x03, 0xEB, 0x10, 0xEA, 0x98, 0x66, 0x0E, 0x38, 0x42, 0x00, 0x1B, 0x76, 0x53, 0x01, 0x75, 0x81, 0xDC, 0xC1, 0x36, 0xE0, 0x48, 0xE2, 0x74, 0x58, 0x66, 0xAD, 0x86, 0x4A, 0xF1, 0xF8, 0x34, 0xEF, 0xFD, 0xF2, 0xAD, 0x53, 0xAB, 0xB0, 0xFF, 0x57, 0x11, 0x84, 0x62, 0x1A, 0x88, 0x41, 0x40, 0xF0, 0x6F, 0xC1, 0x62, 0xCD, 0xE1, 0x4F, 0xDF, 0x0A, 0x35, 0xE8, 0xE2, 0x0A, 0x80, 0xD8, 0xDD, 0x2B, 0x23, 0x00, 0x47, 0x53, 0x00, 0x38, 0x56, 0xD3, 0x40, 0x41, 0x20, 0x52, 0x4E, 0xA4, 0x6C, 0x15, 0xCD, 0x1F, 0x34, 0x35, 0x11, 0x62, 0x13, 0xB6, 0x2E, 0xF1, 0xD7, 0xFF, 0xEF, 0x41, 0xC5, 0x0E, 0x63, 0xA9, 0xDA, 0xE5, 0x7E, 0xE0, 0x00, 0x8F, 0xFF, 0xA0, 0x59, 0xAD, 0xBF, 0x01, 0x4D, 0xCF, 0x96, 0x17, 0xFB, 0xC3, 0x0A, 0x79, 0x8D, 0x21, 0xC8, 0xEA, 0x64, 0xDD, 0x00, 0x11, 0xDB, 0x00, 0xB8, 0xE1, 0xBB, 0x15, 0x79, 0xAA, 0xB3, 0xE0, 0x8D, 0xE0, 0xCB, 0x41, 0x02, 0xCA, 0x98, 0x54, 0xF7, 0x84, 0x0B, 0x68, 0x06, 0x0F, 0xE6, 0x01, 0x0E, 0xF0, 0x8F, 0x61, 0xA8, 0xDA, 0x87, 0x82, 0x3C, 0x33, 0xD8, 0x68, 0x78, 0x44, 0x73, 0xBD, 0x98, 0x0F, 0xD0, 0xAA, 0xB7, 0xC1, 0x5F, 0x08, 0x9E, 0x41, 0xBF, 0xBE, 0xAC, 0x08, 0xAA, 0x95, 0xA8, 0xD4, 0x3E, 0xE6, 0x2C, 0x04, 0x12, 0x2C, 0xC7, 0xB7, 0x03, 0x8D, 0x13, 0x80, 0xA9, 0x4E, 0x93, 0xC1, 0x17, 0x77, 0x73, 0x7B, 0xD4, 0xC4, 0x92, 0x9B, 0x51, 0xE5, 0xA7, 0xEA, 0xC9, 0x02, 0xF2, 0xF7, 0x3A, 0x93, 0x0A, 0xE3, 0xBA, 0x0E, 0xF9, 0x1D, 0xD1, 0xC0, 0xCA, 0x2A, 0x44, 0x60, 0x67, 0xAC, 0xB8, 0x6A, 0xF4, 0x48, 0x27, 0x3D, 0xF7, 0x54, 0xEA, 0x6B, 0x7F, 0x2F, 0xFF, 0x0B, 0xA2, 0xCA, 0xD3, 0x48, 0x30, 0x54, 0x54, 0x17, 0xB2, 0x00, 0x80, 0xBD, 0x7C, 0xD0, 0xFA, 0x42, 0x06, 0xC2, 0x00, 0x08, 0x2A, 0x03, 0x1E, 0x97, 0x6B, 0x76, 0x91, 0x17, 0x4A, 0x43, 0x13, 0xC3, 0x20, 0x3A, 0x27, 0x89, 0x2A, 0xE7, 0x78, 0x75, 0xEC, 0x40, 0x6D, 0x1B, 0x85, 0xAA, 0x0C, 0x13, 0x79, 0xD9, 0x28, 0xAA, 0x00, 0xC2, 0x73, 0xAA, 0xAD, 0xD1, 0x90, 0x91, 0x62, 0xBC, 0x7C, 0x1D, 0xE5, 0x10, 0x39, 0x1C, 0x6B, 0xCB, 0x53, 0x39, 0x87, 0x78, 0x1F, 0xC4, 0xE1, 0x23, 0x6C, 0x7A, 0x5E, 0xD6, 0xFC, 0x81, 0x44, 0xE0, 0xFF, 0xB2, 0x3F, 0xD5, 0x81, 0x87, 0x75, 0x67, 0x3B, 0xEA, 0xD0, 0x30, 0xF9, 0x38, 0x25, 0xBF, 0x9E, 0x85, 0x4F, 0x4D, 0xE8, 0xF5, 0x17, 0xEF, 0x33, 0x9B, 0x20, 0xE3, 0x5E, 0x68, 0x71, 0x77, 0x0E, 0xAE, 0x32, 0x60, 0x62, 0x57, 0x9B, 0x4B, 0xF0, 0x72, 0x4F, 0xBF, 0xFD, 0xD8, 0xE2, 0x64, 0x5A, 0x36, 0x05, 0x58, 0x38, 0x1E, 0x70, 0x8F, 0xD5, 0xAB, 0xE2, 0x8D, 0x20, 0x49, 0x47, 0xAB, 0xC9, 0x5B, 0xC2, 0xF6, 0x07, 0x11, 0xB0, 0xED, 0xC4, 0xC4, 0xFF, 0x7F, 0x76, 0x51, 0xCF, 0x3D, 0x28, 0x1E, 0xB3, 0xA8, 0x10, 0xDC, 0x66, 0x3B, 0x4C, 0x0F, 0xCD, 0x09, 0x60, 0x0F, 0xA0, 0xF2, 0xC2, 0x50, 0x15, 0x75, 0x5E, 0x29, 0xF3, 0xC7, 0x0D, 0xD4, 0xEB, 0x79, 0xEF, 0x3C, 0x53, 0x72, 0x1B, 0x08, 0x12, 0x78, 0xC1, 0x64, 0xBF, 0xF3, 0xDD, 0xBF, 0x0D, 0x59, 0x5F, 0x0D, 0x3B, 0x8D, 0xC8, 0x7F, 0x06, 0xFB, 0x17, 0xB1, 0x59, 0x3A, 0x0D, 0x1B, 0x02, 0x96, 0x01, 0xF9, 0x98, 0x45, 0xCF, 0x79, 0x7A, 0x15, 0x3F, 0xD6, 0x74, 0x00, 0xE7, 0xED, 0x70, 0xE7, 0xF2, 0x94, 0xB1, 0x4A, 0x52, 0x65, 0x5D, 0xBB, 0x7C, 0x07, 0x51, 0x6E, 0x26, 0xBB, 0x61, 0xFF, 0xF5, 0x98, 0xB7, 0x1B, 0xE7, 0x30, 0x8D, 0xA5, 0xFD, 0x28, 0x9A, 0x3D, 0x31, 0x55, 0xFF, 0xDA, 0x18, 0x00, 0x8A, 0x6C, 0x21, 0x01, 0x56, 0x1A, 0x64, 0x91, 0x67, 0xCB, 0xB4, 0x17, 0xF6, 0x99, 0x18, 0xBB, 0xE7, 0x1F, 0x0C, 0x14, 0x6B, 0xE7, 0xD9, 0xA9, 0xC1, 0xB4, 0xC1, 0x51, 0xBC, 0x06, 0x89, 0x54, 0x11, 0x52, 0x6C, 0xBC, 0xA1, 0x16, 0x0B, 0x18, 0x98, 0x13, 0xDF, 0xE3, 0xDC, 0x02, 0xC2, 0xD7, 0x4B, 0x57, 0xC0, 0x43, 0xDA, 0x66, 0x30, 0x69, 0xE3, 0xBD, 0xFF, 0x0A, 0xE9, 0x25, 0x99, 0x98, 0x2C, 0xA0, 0x71, 0xB8, 0x39, 0x3D, 0xBE, 0x81, 0x11, 0xBD, 0x5C, 0x8F, 0xD5, 0xEA, 0x14, 0x8C, 0x0C, 0xA5, 0x85, 0x31, 0x97, 0x85, 0x84, 0x16, 0x11, 0xA5, 0x15, 0x78, 0x9B, 0x95, 0x62, 0xFF, 0xC7, 0xB4, 0x39, 0x65, 0xA6, 0xC9, 0x99, 0x50, 0x3D, 0xD3, 0x7E, 0x13, 0x4F, 0xC3, 0x84, 0x6B, 0x72, 0x17, 0x19, 0xBC, 0x13, 0xA8, 0x0B, 0x22, 0x82, 0xFF, 0x9B, 0xE7, 0x9C, 0x9B, 0xA8, 0x2F, 0x9F, 0xE4, 0x72, 0x3A, 0xFA, 0x8C, 0x49, 0x04, 0x61, 0x60, 0xDB, 0xFE, 0x50, 0x00, 0x5E, 0xC6, 0x40, 0x8E, 0x5F, 0x00, 0xB3, 0x5E, 0xFA, 0x17, 0xFF, 0xDB, 0x02, 0x34, 0x0D, 0xB3, 0xAA, 0x44, 0x35, 0x78, 0xEC, 0xA3, 0x67, 0x5A, 0x9B, 0x7F, 0xBE, 0xCE, 0x80, 0x19, 0x09, 0x4A, 0x35, 0x18, 0xD6, 0xEF, 0x81, 0x88, 0x88, 0xFA, 0x7F, 0xA4, 0x7C, 0xEC, 0x3C, 0xC3, 0xB2, 0x62, 0xD8, 0x9E, 0x83, 0x3D, 0x90, 0x2F, 0xEE, 0x4E, 0x03, 0x90, 0xBD, 0x8F, 0xFB, 0x62, 0xE0, 0x80, 0xBA, 0x87, 0x10, 0x8C, 0x7C, 0x1A, 0x51, 0xAD, 0xAF, 0xF6, 0xAE, 0x51, 0x31, 0xEB, 0x5D, 0xD6, 0xFA, 0xF0, 0xD6, 0x34, 0x4A, 0x5F, 0xF4, 0x2F, 0x35, 0x64, 0x7D, 0x30, 0x81, 0x62, 0x10, 0x49, 0x68, 0x2A, 0x0D, 0xBE, 0x25, 0x9D, 0x05, 0xCB, 0xE3, 0xA3, 0x89, 0x43, 0x50, 0x3F, 0x9B, 0x0B, 0xE8, 0x2E, 0x5F, 0x1C, 0x85, 0x4B, 0xB8, 0xB2, 0x02, 0x22, 0xC0, 0xD1, 0x31, 0xBA, 0xD9, 0xCA, 0xFC, 0x7B, 0xE6, 0x36, 0x97, 0xED, 0x07, 0x52, 0x05, 0x54, 0xDF, 0x6F, 0x98, 0x30, 0xF5, 0x29, 0xDA, 0xAE, 0x5D, 0x80, 0x4F, 0x68, 0x71, 0xA0, 0x94, 0x69, 0x77, 0xFF, 0xD1, 0x0C, 0x1E, 0xB1, 0x71, 0x9F, 0x21, 0x58, 0xC7, 0xFF, 0xF3, 0x69, 0x6B, 0xF1, 0xA4, 0x79, 0xF2, 0xF7, 0xD8, 0x36, 0x45, 0xC0, 0x36, 0xEE, 0xC9, 0x5F, 0xFE, 0xC4, 0xB9, 0xE1, 0x3E, 0x55, 0x2D, 0xC4, 0x7B, 0xBF, 0x57, 0x47, 0x4B, 0x9D, 0xCE, 0xF5, 0x24, 0x4D, 0x08, 0x05, 0x9C, 0x6F, 0x2F, 0x7A, 0x3C, 0x28, 0x5D, 0xF2, 0xDF, 0xEA, 0xFD, 0x85, 0x1B, 0x53, 0xED, 0xFE, 0x0E, 0x85, 0x07, 0x10, 0x41, 0x16, 0x2D, 0x15, 0xC1, 0x9A, 0x28, 0xB5, 0xBA, 0x96, 0xE7, 0x1E, 0x96, 0x22, 0x4A, 0x0A, 0x98, 0x8E, 0x10, 0xA0, 0x75, 0x16, 0xB7, 0x52, 0xD6, 0x71, 0xEA, 0xB2, 0x32, 0x98, 0x51, 0x9C, 0x8C, 0x9F, 0xCA, 0x44, 0x96, 0xF4, 0xB1, 0x6F, 0xE8, 0xDE, 0x77, 0x5A, 0xF5, 0x58, 0x3F, 0x1D, 0xA0, 0x94, 0x72, 0xF1, 0xE5, 0x0A, 0xAF, 0xC8, 0x3F, 0xDB, 0x3B, 0x35, 0x69, 0x50, 0x68, 0xD4, 0xE7, 0x5F, 0x7F, 0xC1, 0x4A, 0x2E, 0x04, 0x6D, 0xD2, 0xFE, 0xF7, 0x2D, 0x83, 0xF6, 0x1E, 0x60, 0x79, 0xF0, 0x36, 0x5E, 0xC8, 0x2C, 0x82, 0x7E, 0xD8, 0x59, 0xF7, 0xAA, 0x9D, 0x28, 0x12, 0x46, 0x3F, 0x7C, 0x27, 0x07, 0x03, 0xCE, 0x18, 0xB3, 0x3D, 0x7F, 0x74, 0x0E, 0xFF, 0x7F, 0xDF, 0xDC, 0xE4, 0x40, 0x1F, 0x08, 0x00, 0x85, 0x0D, 0x10, 0xAC, 0x37, 0xE7, 0x8B, 0xA8, 0x2F, 0xF1, 0xA5, 0x2B, 0x01, 0x3E, 0x98, 0x00, 0x22, 0xA4, 0xEF, 0xA0, 0x14, 0x0E, 0x50, 0x33, 0x2D, 0xC2, 0x60, 0xED, 0x94, 0xFD, 0x5B, 0xDF, 0x3D, 0x6B, 0x9A, 0xBA, 0x83, 0x96, 0x23, 0x05, 0xE3, 0x79, 0xAE, 0x00, 0xA2, 0xA1, 0xC9, 0xFF, 0xB5, 0x3A, 0x55, 0x0E, 0x10, 0x05, 0x7D, 0xFE, 0xA9, 0x10, 0x69, 0x4E, 0xF4, 0x18, 0x88, 0x5D, 0xBC, 0xC3, 0xB5, 0x61, 0x84, 0x67, 0xB4, 0x0A, 0x53, 0xB9, 0xE0, 0x3F, 0x82, 0xF3, 0x09, 0x05, 0xC4, 0xAB, 0xFF, 0xC7, 0x96, 0x3E, 0x2E, 0xBF, 0xD7, 0x6A, 0xCC, 0xC2, 0x85, 0x44, 0xBF, 0x74, 0x3E, 0x3F, 0x95, 0xA5, 0xFD, 0x46, 0xFA, 0x20, 0x00, 0x21, 0x59, 0x38, 0xEE, 0xA6, 0xD4, 0xC7, 0x7A, 0x9C, 0x7C, 0x62, 0xB7, 0xDA, 0x04, 0x9B, 0x8E, 0xE6, 0x20, 0x13, 0x73, 0x8C, 0x99, 0xC3, 0x13, 0x83, 0x01, 0x16, 0xAB, 0x55, 0x04, 0x3E, 0x18, 0x87, 0xC1, 0xB2, 0xA2, 0xAA, 0xEB, 0x8D, 0xE3, 0x6D, 0x0B, 0x48, 0xE4, 0x1B, 0xFF, 0x85, 0x52, 0x8B, 0xF1, 0xAE, 0x47, 0xDD, 0xC4, 0x77, 0x7A, 0x78, 0x2B, 0x79, 0xAC, 0x7F, 0x71, 0x73, 0x58, 0x5D, 0x8F, 0x95, 0x37, 0x7B, 0xF8, 0x31, 0x80, 0x05, 0x63, 0x60, 0x13, 0x97, 0xF7, 0x71, 0x8A, 0x83, 0x92, 0x6D, 0xDA, 0x37, 0xCF, 0xC3, 0x27, 0x68, 0x13, 0xE2, 0x60, 0xF1, 0x01, 0x00, 0xC7, 0x0E, 0xD4, 0xAD, 0xEE, 0x77, 0xEF, 0x41, 0x9E, 0x5A, 0x45, 0x63, 0xC5, 0x0D, 0x21, 0x8B, 0x45, 0xD5, 0x18, 0x18, 0x1B, 0x36, 0x54, 0x7C, 0x20, 0x03, 0xC1, 0xFE, 0xB1, 0xAF, 0x7D, 0x06, 0x35, 0xEA, 0x0F, 0x4E, 0xB2, 0xC4, 0x9C, 0x01, 0xF7, 0x20, 0x4D, 0xD0, 0x00, 0x58, 0x05, 0x80, 0x9F, 0x51, 0xDC, 0xCC, 0x40, 0x4B, 0xDA, 0x1F, 0x8F, 0xFE, 0x25, 0xDA, 0xAE, 0x18, 0xF8, 0x22, 0x03, 0xF5, 0xAD, 0x5B, 0x66, 0x24, 0x3A, 0x86, 0x16, 0x3E, 0xDD, 0x48, 0x67, 0xB2, 0x64, 0xC4, 0x28, 0xF7, 0x8E, 0xF4, 0x87, 0x9D, 0xF9, 0x40, 0x5D, 0x3B, 0xF8, 0x14, 0xC2, 0xEC, 0x57, 0xBF, 0xFB, 0xBF, 0x56, 0x4A, 0xC1, 0x61, 0x3E, 0x14, 0xAF, 0x9A, 0x10, 0xEF, 0x60, 0xFA, 0x77, 0xF1, 0x3A, 0xB0, 0x22, 0x2D, 0x09, 0x6B, 0x84, 0xAC, 0x1C, 0xB6, 0x03, 0x80, 0x84, 0x89, 0xB3, 0x48, 0x10, 0x01, 0x78, 0xB8, 0x04, 0x95, 0x72, 0x80, 0x1D, 0xA0, 0x84, 0x11, 0x5A, 0x8C, 0x6C, 0x95, 0xF8, 0x8C, 0xA9, 0x08, 0x75, 0xB0, 0x00, 0x34, 0xA2, 0x5E, 0xAD, 0xBE, 0xBB, 0x7B, 0x7C, 0x1C, 0x4C, 0x24, 0xF0, 0x29, 0xDD, 0x0A, 0xB6, 0x46, 0x3B, 0x5D, 0xC9, 0x46, 0x44, 0x3D, 0xF0, 0xE3, 0x3E, 0x9E, 0x61, 0xA1, 0x04, 0x1D, 0xC0, 0x82, 0x51, 0x96, 0x1C, 0x52, 0xA5, 0x54, 0xB8, 0xA6, 0x18, 0x90, 0x59, 0x59, 0xE6, 0x84, 0x48, 0x22, 0x76, 0xD2, 0x5B, 0x6F, 0xA9, 0x5A, 0x36, 0x01, 0xAA, 0xAA, 0x98, 0x88, 0x23, 0x8A, 0x28, 0x0B, 0xB8, 0xFF, 0x26, 0xA3, 0xE2, 0xC9, 0xC8, 0x84, 0xD1, 0x20, 0xE2, 0xA6, 0x43, 0x65, 0x52, 0x29, 0xAF, 0xFA, 0xC1, 0xFF, 0xD8, 0x40, 0xB5, 0x77, 0x6B, 0xF4, 0x68, 0x13, 0x98, 0x2A, 0xCF, 0x03, 0x0F, 0x2E, 0x02, 0x18, 0x30, 0x26, 0x2B, 0x2B, 0xFA, 0x3D, 0xD5, 0x04, 0xB0, 0x25, 0x24, 0x6D, 0xCF, 0xD5, 0xB3, 0x07, 0xAA, 0xBC, 0x48, 0xBD, 0xFC, 0x6F, 0xAB, 0xFA, 0x23, 0xE2, 0x96, 0x80, 0x2B, 0x6E, 0x61, 0x84, 0x8C, 0x44, 0xF8, 0xE4, 0x1F, 0xEA, 0x6F, 0x2D, 0xBA, 0xBA, 0xF5, 0xD3, 0x3C, 0x98, 0xDF, 0x08, 0xBF, 0x17, 0x81, 0xD0, 0x82, 0x9B, 0xBE, 0xD1, 0x38, 0x19, 0x5B, 0x6B, 0x9F, 0x8F, 0xD1, 0xFC, 0xC8, 0xB0, 0xE6, 0x6D, 0x35, 0xEB, 0x4E, 0x72, 0x1C, 0x50, 0x35, 0x4B, 0xC0, 0x92, 0xEF, 0xDB, 0x53, 0xEC, 0xB1, 0x7E, 0xA8, 0xB9, 0xFE, 0x7B, 0x3D, 0xC1, 0x1E, 0xD3, 0xFC, 0x43, 0xDA, 0x8E, 0xD3, 0xB3, 0x92, 0xCA, 0x35, 0xE6, 0x5B, 0x21, 0x4F, 0x30, 0x0D, 0x31, 0x71, 0xE2, 0x2F, 0x98, 0x5A, 0xAD, 0xB3, 0x08, 0x00, 0x08, 0x03, 0x41, 0x06, 0x65, 0xEE, 0x41, 0xDC, 0xB5, 0x37, 0xB2, 0x20, 0x6C, 0x2B, 0x35, 0x7D, 0x71, 0xA9, 0x71, 0xDC, 0x56, 0x8B, 0x93, 0x41, 0xF7, 0xFF, 0x7A, 0x85, 0x2D, 0x4E, 0xC9, 0xF0, 0xDD, 0x92, 0x78, 0x1B, 0xF7, 0x00, 0x9A, 0xA8, 0x14, 0x8D, 0xD7, 0x37, 0xA4, 0xB4, 0x16, 0x8F, 0x03, 0x58, 0x23, 0x5E, 0x45, 0xA9, 0xF6, 0x68, 0x43, 0x2E, 0xED, 0xFA, 0x09, 0x61, 0x09, 0xA0, 0x11, 0xE0, 0x9A, 0x5F, 0xB1, 0x31, 0x49, 0xE2, 0x2A, 0xB0, 0xDD, 0x84, 0x6F, 0x5E, 0x64, 0x20, 0x4C, 0xC1, 0xC0, 0xF5, 0xD3, 0xC3, 0x1C, 0x52, 0x41, 0x24, 0xE7, 0x22, 0xD5, 0xFC, 0x8B, 0x30, 0xE2, 0x9D, 0xBD, 0xEE, 0xBD, 0x0E, 0xEE, 0xDA, 0x02, 0x2C, 0x29, 0x20, 0x01, 0x29, 0xC7, 0x2E, 0xA1, 0x0E, 0x1B, 0xFE, 0x6F, 0xA8, 0xE8, 0xE5, 0x48, 0xC0, 0x66, 0x5C, 0xB8, 0x06, 0x77, 0x89, 0x00, 0xC7, 0x2F, 0x03, 0x6D, 0x4D, 0x57, 0x7F, 0xE7, 0xFF, 0xC5, 0x73, 0x87, 0x08, 0xA4, 0x31, 0xBC, 0xF0, 0x2F, 0x07, 0x64, 0x91, 0x45, 0xBB, 0xCF, 0x29, 0x4F, 0xED, 0x5A, 0x47, 0x3D, 0xEF, 0xEB, 0xBF, 0x00, 0xC3, 0xFF, 0x1F, 0x61, 0x9A, 0xBF, 0xD5, 0x11, 0xDD, 0xAD, 0xF8, 0x0E, 0x29, 0xB9, 0x80, 0x90, 0x2F, 0xE5, 0x5F, 0xBF, 0xF0, 0x0F, 0xFA, 0xB0, 0x5D, 0x80, 0x08, 0x0A, 0x82, 0xA3, 0x91, 0xE1, 0x69, 0x9A, 0x21, 0x44, 0x72, 0x3A, 0xE4, 0xC3, 0x9E, 0xE6, 0x40, 0x47, 0xF8, 0x26, 0xEB, 0xAF, 0xF8, 0x07, 0xEC, 0x3B, 0x04, 0xAD, 0xD8, 0xD1, 0x08, 0x90, 0x57, 0xFE, 0x70, 0x19, 0x5F, 0x7A, 0x66, 0x40, 0x90, 0xF7, 0xF6, 0x55, 0x61, 0x46, 0xF0, 0x9D, 0x97, 0xB3, 0x0C, 0x73, 0x43, 0xFA, 0x36, 0x73, 0xFA, 0x2B, 0x36, 0xBA, 0xC2, 0x57, 0xE8, 0xE0, 0xFA, 0xB1, 0xFA, 0xE0, 0x8F, 0x69, 0xFF, 0x70, 0x9D, 0xF0, 0x26, 0x96, 0xDF, 0xC3, 0x80, 0x0C, 0x08, 0x6F, 0x58, 0x27, 0x3D, 0x68, 0x30, 0x3E, 0x46, 0xD0, 0xCA, 0xE4, 0x30, 0x38, 0x31, 0x58, 0x2C, 0x82, 0x1A, 0x9F, 0x73, 0x9B, 0xAD, 0xB0, 0xFB, 0xBF, 0xD0, 0x04, 0x7E, 0xC8, 0x04, 0xD9, 0x43, 0xF7, 0x5F, 0x5F, 0xFC, 0x39, 0xC1, 0x77, 0x00, 0x1C, 0xC7, 0x24, 0xC0, 0x87, 0x8B, 0x61, 0x7B, 0xE0, 0xD8, 0x00, 0x64, 0x41, 0x6B, 0x10, 0x5D, 0x41, 0xBF, 0xF8, 0x09, 0xF2, 0x9E, 0x7D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; // format and resolution struct DecodeDesc { VA_RT_Format format = VA_RT_FORMAT_YUV420; VA_RT_Format sfcformat = VA_RT_FORMAT_YUV420; uint32_t width; uint32_t height; uint32_t sfc_widht; uint32_t sfc_height; uint16_t surfaces_num; }; ================================================ FILE: vendor/intel/sfcsample/Makefile.am ================================================ # Copyright (C) 2018 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. bin_PROGRAMS = sfcsample AM_CPPFLAGS = \ -Wall \ -fstack-protector \ $(LIBVA_CFLAGS) \ -I$(top_srcdir)/common \ -I$(top_srcdir)/vendor/intel/sfcsample \ $(NULL) TEST_LIBS = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ $(NULL) sfcsample_LDADD = $(TEST_LIBS) source_c = TestMain.cpp source_c += VDecAccelVA.cpp sfcsample_SOURCES = $(source_c) valgrind:$(bin_PROGRAMS) for a in $(bin_PROGRAMS); do \ valgrind --leak-check=full --show-reachable=yes .libs/$$a; \ done EXTRA_DIST = \ VDecAccelVA.h \ DecodeParamBuffer.h \ $(NULL) ================================================ FILE: vendor/intel/sfcsample/TestMain.cpp ================================================ /* * * Copyright (C) 2018 Intel Corporation. All Rights Reserved. * * * * 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, sub license, 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 (including the * * next paragraph) 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 NON-INFRINGEMENT. * * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. * */ #include "VDecAccelVA.h" using namespace mvaccel; int main(int argc, char** argv) { VDecAccelVAImpl VideoProc; //initialize, check caps and prepare buffers if (VideoProc.Open() != 0) { printf("Failed to open decode accelerator"); return 1; } //actual decode process if (VideoProc.DecodePicture() != 0) { printf("Failed to decode picture"); return 1; } return 0; } ================================================ FILE: vendor/intel/sfcsample/VDecAccelVA.cpp ================================================ /* * * Copyright (C) 2018 Intel Corporation. All Rights Reserved. * * ** 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, sub license, 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 (including the * * next paragraph) 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 NON-INFRINGEMENT. * * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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 VDecAccelVA.cpp * @brief LibVA decode accelerator implementation. */ #include #include #include #include #include #include #include #include #include #include #include "VDecAccelVA.h" #include #include #define VASUCCEEDED(err) (err == VA_STATUS_SUCCESS) #define VAFAILED(err) (err != VA_STATUS_SUCCESS) mvaccel::VDecAccelVAImpl::VDecAccelVAImpl(void* device) : m_vaDisplay(0) , m_vaProfile(VAProfileNone) , m_vaEntrypoint(VAEntrypointVLD) , m_vaConfigID(0) , m_vaContextID(0) , m_surfaceType(VA_RT_FORMAT_YUV420) { if (device) m_vaDisplay = *(reinterpret_cast(device)); if (!m_vaDisplay) { printf("Invalid VADisplay\n"); delete this; return; } } mvaccel::VDecAccelVAImpl::VDecAccelVAImpl() : m_vaDisplay(0) , m_vaProfile(VAProfileNone) , m_vaEntrypoint(VAEntrypointVLD) , m_vaConfigID(0) , m_vaContextID(0) , m_surfaceType(VA_RT_FORMAT_YUV420) { } mvaccel::VDecAccelVAImpl::~VDecAccelVAImpl() { if (drm_fd != -1) { close(drm_fd); } } int mvaccel::VDecAccelVAImpl::Open() { VAStatus vaStatus = VA_STATUS_ERROR_UNKNOWN; //get display device int MajorVer, MinorVer; if (vaStatus != VA_STATUS_SUCCESS) { drm_fd = open("/dev/dri/renderD128", O_RDWR); if (drm_fd >= 0) { m_vaDisplay = vaGetDisplayDRM(drm_fd); vaStatus = vaInitialize(m_vaDisplay, &MajorVer, &MinorVer); } } //initialize decode description create_decode_desc(); m_vaProfile = VAProfileH264Main; // We only support VLD currently m_vaEntrypoint = VAEntrypointVLD; int count = 0; count = vaMaxNumEntrypoints(m_vaDisplay); assert(count); std::vector vaEntrypoints(count); vaStatus = vaQueryConfigEntrypoints( m_vaDisplay, m_vaProfile, &vaEntrypoints[0], &count); if (VAFAILED(vaStatus)) printf("vaQueryConfigEntrypoints fail\n"); std::vector::iterator it = std::find(vaEntrypoints.begin(), vaEntrypoints.end(), m_vaEntrypoint); if (it == vaEntrypoints.end()) { if (VAFAILED(vaStatus)) printf("VAEntrypoint is not found\n"); return 1; } if (!is_config_compatible(m_DecodeDesc)) { if (VAFAILED(vaStatus)) printf("Decode configuration is not compatible\n"); return 1; } // Setup config attributes std::vector vaAttribs; prepare_config_attribs(m_DecodeDesc, vaAttribs); // Create config vaStatus = vaCreateConfig( m_vaDisplay, m_vaProfile, m_vaEntrypoint, &vaAttribs.at(0), vaAttribs.size(), &m_vaConfigID ); if (VAFAILED(vaStatus)) printf("vaCreateConfig fail\n"); if (!is_rt_foramt_supported(m_DecodeDesc)) { if (VAFAILED(vaStatus)) printf("Render target is not supported\n"); return 1; } // Calculate aligned width/height for gfx surface uint32_t aligned_width = m_DecodeDesc.width; uint32_t aligned_height = m_DecodeDesc.height; // Setup surface attributes prepare_surface_attribs(m_DecodeDesc, m_vaSurfAttribs, false); // Create surfaces for (uint32_t i = 0; i < m_DecodeDesc.surfaces_num; i++) { VASurfaceID vaID = VA_INVALID_SURFACE; vaStatus = vaCreateSurfaces( m_vaDisplay, m_surfaceType, aligned_width, aligned_height, &vaID, 1, &(m_vaSurfAttribs.at(0)), m_vaSurfAttribs.size() ); if (VASUCCEEDED(vaStatus)) m_vaIDs.push_back(vaID); } // Check if surfaces created is equal to requested. if (m_vaIDs.size() != m_DecodeDesc.surfaces_num) { if (VAFAILED(vaStatus)) printf("Create surface fail\n"); return 1; } // Create context vaStatus = vaCreateContext( m_vaDisplay, m_vaConfigID, aligned_width, aligned_height, VA_PROGRESSIVE, &(m_vaIDs.at(0)), m_vaIDs.size(), &m_vaContextID ); if (VAFAILED(vaStatus)) printf("vaCreateContext fail\n"); check_process_pipeline_caps(m_DecodeDesc); return vaStatus; } void mvaccel::VDecAccelVAImpl::Close() { std::vector::iterator it; for (it = m_vaIDs.begin(); it != m_vaIDs.end(); ++it) delete_surface(*it); vaDestroyConfig(m_vaDisplay, m_vaConfigID); vaDestroyContext(m_vaDisplay, m_vaContextID); m_images.clear(); m_vaIDs.clear(); m_vaSurfAttribs.clear(); m_vaConfigID = 0; m_vaContextID = 0; } uint32_t mvaccel::VDecAccelVAImpl::GetSurfaceID(uint32_t index) { assert(index < m_vaIDs.size()); return m_vaIDs[index]; } /** * @brief Check if video decode acceleration description is supported. * @param cc Video decode acceleration description. * @return true if supported, false if not. */ bool mvaccel::VDecAccelVAImpl::is_config_compatible(DecodeDesc& desc) { if (!is_slice_mode_supported(desc)) return false; if (!is_encryption_supported(desc)) return false; if (!is_sfc_config_supported(desc)) return false; return true; } /** * @brief Check if long or short format is supported not not. * @param cc Video decode acceleration description. * @return true if supported, false if not. */ bool mvaccel::VDecAccelVAImpl::is_slice_mode_supported(DecodeDesc& desc) { VAConfigAttrib vaAttrib; memset(&vaAttrib, 0, sizeof(vaAttrib)); vaAttrib.type = VAConfigAttribDecSliceMode; vaAttrib.value = 0; vaGetConfigAttributes( m_vaDisplay, m_vaProfile, m_vaEntrypoint, &vaAttrib, 1); if (vaAttrib.value & VA_DEC_SLICE_MODE_BASE || vaAttrib.value & VA_DEC_SLICE_MODE_NORMAL) return true; else return false; } /** * @brief Check if encryption is supported or not. * @param cc Video decode acceleration description. * @return true if supported, false if not. */ bool mvaccel::VDecAccelVAImpl::is_encryption_supported(DecodeDesc& desc) { VAConfigAttrib vaAttrib; memset(&vaAttrib, 0, sizeof(vaAttrib)); vaAttrib.type = VAConfigAttribEncryption; vaAttrib.value = 0; vaGetConfigAttributes( m_vaDisplay, m_vaProfile, m_vaEntrypoint, &vaAttrib, 1 ); if (vaAttrib.value & VA_ATTRIB_NOT_SUPPORTED) return true; else return false; } /** * @brief Check if SFC attribute is supported or not. * @param cc Video decode acceleration description. * @return true if supported, false if not. */ bool mvaccel::VDecAccelVAImpl::is_sfc_config_supported(DecodeDesc& desc) { // SFC attribute check VAConfigAttrib vaAttrib; memset(&vaAttrib, 0, sizeof(vaAttrib)); vaAttrib.type = VAConfigAttribDecProcessing; vaAttrib.value = 0; vaGetConfigAttributes( m_vaDisplay, m_vaProfile, m_vaEntrypoint, &vaAttrib, 1); if (vaAttrib.value != VA_DEC_PROCESSING) return false; return true; } /** * @brief Check if render target format is supported or not. * @param cc Video decode acceleration description. * @return true if supported, false if not. */ bool mvaccel::VDecAccelVAImpl::is_rt_foramt_supported(DecodeDesc& desc) { uint32_t count = VASurfaceAttribCount + vaMaxNumImageFormats(m_vaDisplay); std::vector attribs(count); VAStatus vaStatus = VA_STATUS_SUCCESS; vaStatus = vaQuerySurfaceAttributes( m_vaDisplay, m_vaConfigID, &attribs.at(0), &count ); if (VAFAILED(vaStatus)) { printf("vaQuerySurfaceAttributes failed\n"); return false; } return true; } /** * @brief Prepare config attribs VAContext creation. * @param desc Video decode acceleration description. * @param vaAttribs Array of VASurfaceAttrib which will contains the attrib. */ void mvaccel::VDecAccelVAImpl::prepare_config_attribs( DecodeDesc& desc, VAConfigAttribArray& attribs) { VAConfigAttrib attrib; memset(&attrib, 0, sizeof(attrib)); // RT formats attrib.type = VAConfigAttribRTFormat; attrib.value = VA_RT_FORMAT_YUV420; attribs.push_back(attrib); // Slice Mode attrib.type = VAConfigAttribDecSliceMode; attrib.value = VA_DEC_SLICE_MODE_NORMAL; attribs.push_back(attrib); //dec processing attribs attrib.type = VAConfigAttribDecProcessing; attrib.value = VA_DEC_PROCESSING; attribs.push_back(attrib); } /** * @brief Prepare the VA surface attribs for creation. * @param desc Video decode acceleration description. * @param vaSurfAttribs Array of VASurfaceAttrib which will contains attrib. */ void mvaccel::VDecAccelVAImpl::prepare_surface_attribs( DecodeDesc& desc, VASurfaceAttribArray& attribs, bool bDecodeDownsamplingHinted) { VASurfaceAttrib attrib; memset(&attrib, 0, sizeof(attrib)); attrib.type = VASurfaceAttribPixelFormat; attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; attrib.value.type = VAGenericValueTypeInteger; // VA_FOURCC and MVFOURCC are interchangeable if (bDecodeDownsamplingHinted) attrib.value.value.i = VA_FOURCC_ARGB; else attrib.value.value.i = VA_FOURCC_NV12; attribs.push_back(attrib); } /** * @brief Delete allocated surface * @param surfaceID Index of allocated surface. After delete, the surface * values will be set to invalid value. */ void mvaccel::VDecAccelVAImpl::delete_surface(VASurfaceID& vaID) { // Make sure no others is using this surface if (m_images.count(vaID)) m_images.erase(m_images.find(vaID)); vaDestroySurfaces(m_vaDisplay, &vaID, 1); vaID = VA_INVALID_SURFACE; } uint8_t* mvaccel::VDecAccelVAImpl::lock_surface(VASurfaceID id, bool write) { // Check if decode is completed VAStatus status = vaSyncSurface(m_vaDisplay, id); if (VAFAILED(status)) { printf("vaSyncSurface Error.\n"); return NULL; } //sync decode surface VASurfaceStatus surf_status = VASurfaceSkipped; for (;;) { vaQuerySurfaceStatus(m_vaDisplay, id, &surf_status); if (surf_status != VASurfaceRendering && surf_status != VASurfaceDisplaying) break; } if (surf_status != VASurfaceReady) { printf("Surface is not ready by vaQueryStatusSurface"); return NULL; } uint8_t* buffer = NULL; //map the decoded buffer for (;;) { status = vaDeriveImage(m_vaDisplay, id, &m_images[id]); if (VAFAILED(status)) printf("vaDeriveImage fail. \n"); status = vaMapBuffer(m_vaDisplay, m_images[id].buf, (void**)&buffer); if (VAFAILED(status)) printf("vaDeriveImage fail. \n"); break; } if (VAFAILED(status)) { status = vaUnmapBuffer(m_vaDisplay, m_images[id].buf); status = vaDestroyImage(m_vaDisplay, m_images[id].image_id); } return buffer; } void mvaccel::VDecAccelVAImpl::unlock_surface(VASurfaceID id) { VAStatus status = vaUnmapBuffer(m_vaDisplay, m_images[id].buf); assert(VASUCCEEDED(status)); status = vaDestroyImage(m_vaDisplay, m_images[id].image_id); assert(VASUCCEEDED(status)); } //prepare basic format/resolution parameter void mvaccel::VDecAccelVAImpl::create_decode_desc() { m_DecodeDesc.format = VA_FOURCC_NV12; m_DecodeDesc.sfcformat = VA_FOURCC_ARGB; m_DecodeDesc.width = 352; m_DecodeDesc.height = 288; m_DecodeDesc.sfc_widht = 176; m_DecodeDesc.sfc_height = 144; m_DecodeDesc.surfaces_num = 2; } bool mvaccel::VDecAccelVAImpl::DecodePicture() { // Create addition surfaces for scaled video output if (m_sfcIDs.empty()) { if (create_resources()) return 1; } VAStatus vaStatus = VA_STATUS_SUCCESS; VAContextID vaContextID = 0; VASurfaceID vaID = 0; //va begin picture vaStatus = vaBeginPicture(m_vaDisplay, m_vaContextID, vaID); if (VAFAILED(vaStatus)) printf("vaBeginPicture fail."); // Set Context ID for End Picture vaContextID = m_vaContextID; std::vector vaBufferIDs; // Pic parameters buffers VABufferID vaBufferID; vaStatus = vaCreateBuffer(m_vaDisplay, m_vaContextID, VAPictureParameterBufferType, sizeof(g_PicParams_AVC), 1, (uint8_t*)g_PicParams_AVC, &vaBufferID); assert(VASUCCEEDED(vaStatus)); if (VASUCCEEDED(vaStatus)) vaBufferIDs.push_back(vaBufferID); // IQ matrics vaStatus = vaCreateBuffer(m_vaDisplay, m_vaContextID, VAIQMatrixBufferType, sizeof(g_Qmatrix_AVC), 1, (uint8_t*)g_Qmatrix_AVC, &vaBufferID); assert(VASUCCEEDED(vaStatus)); if (VASUCCEEDED(vaStatus)) vaBufferIDs.push_back(vaBufferID); //slice parameter buffers vaStatus = vaCreateBuffer(m_vaDisplay, m_vaContextID, VASliceParameterBufferType, sizeof(g_SlcParams_AVC), 1, (uint8_t*)g_SlcParams_AVC, &vaBufferID); assert(VASUCCEEDED(vaStatus)); if (VASUCCEEDED(vaStatus)) vaBufferIDs.push_back(vaBufferID); //BITSTREAM buffers vaStatus = vaCreateBuffer(m_vaDisplay, m_vaContextID, VASliceDataBufferType, sizeof(g_Bitstream_AVC), 1, (uint8_t*)g_Bitstream_AVC, &vaBufferID); assert(VASUCCEEDED(vaStatus)); if (VASUCCEEDED(vaStatus)) vaBufferIDs.push_back(vaBufferID); //PROC_PIPELINE buffers vaStatus = vaCreateBuffer(m_vaDisplay, m_vaContextID, VAProcPipelineParameterBufferType, sizeof(m_vaProcBuffer), 1, (uint8_t*)&m_vaProcBuffer, &vaBufferID); assert(VASUCCEEDED(vaStatus)); if (VASUCCEEDED(vaStatus)) vaBufferIDs.push_back(vaBufferID); if (vaBufferIDs.size()) { vaStatus = vaRenderPicture( m_vaDisplay, m_vaContextID, &(vaBufferIDs.at(0)), vaBufferIDs.size()); } //va end picture vaStatus = vaEndPicture(m_vaDisplay, vaContextID); if (VAFAILED(vaStatus)) printf("vaEndPicture fail."); //lock surface uint8_t* gfx_surface_buf = lock_surface(m_sfcIDs[0], false); if (gfx_surface_buf == NULL) { printf("Fail to lock gfx surface\n"); return 1; } //write to yuv file FILE* sfc_stream = fopen("sfc_sample_176_144_argb.yuv", "wb"); uint32_t file_size = m_DecodeDesc.sfc_widht * m_DecodeDesc.sfc_height * 4; //ARGB format if (sfc_stream) { fwrite(gfx_surface_buf, file_size, 1, sfc_stream); fclose(sfc_stream); } //unlock surface and clear unlock_surface(m_sfcIDs[0]); Close(); return (VASUCCEEDED(vaStatus) ? 0 : 1); } // check vaQueryVideoProcPipelineCaps int mvaccel::VDecAccelVAImpl::check_process_pipeline_caps(DecodeDesc& desc) { VAProcPipelineCaps caps; VAProcColorStandardType inputCST[VAProcColorStandardCount]; VAProcColorStandardType outputCST[VAProcColorStandardCount]; caps.input_color_standards = inputCST; caps.output_color_standards = outputCST; m_in4CC.resize(vaMaxNumImageFormats(m_vaDisplay)); m_out4CC.resize(vaMaxNumImageFormats(m_vaDisplay)); caps.input_pixel_format = &m_in4CC.at(0); caps.output_pixel_format = &m_out4CC.at(0); VABufferID filterIDs[VAProcFilterCount]; uint32_t filterCount = 0; VAStatus vaStatus = VA_STATUS_SUCCESS; vaStatus = vaQueryVideoProcPipelineCaps( m_vaDisplay, m_vaContextID, filterIDs, filterCount, &caps ); if (VAFAILED(vaStatus)) { printf("vaQueryVideoProcPipelineCaps fail\n"); return 1; } m_in4CC.resize(caps.num_input_pixel_formats); m_out4CC.resize(caps.num_output_pixel_formats); return 0; } int mvaccel::VDecAccelVAImpl::create_resources() { if (m_sfcIDs.empty()) m_sfcIDs.resize(1); // Create addition surfaces for scaled video output uint16_t width = m_DecodeDesc.sfc_widht; uint16_t height = m_DecodeDesc.sfc_height; //prepare sfc surface attribs DecodeDesc SfcDesc; SfcDesc.sfcformat = VA_FOURCC('A', 'R', 'G', 'B'); VASurfaceAttribArray Sfc_vaSurfAttribs; prepare_surface_attribs(SfcDesc, Sfc_vaSurfAttribs, true); uint32_t surfaceType = m_surfaceType; m_surfaceType = (uint32_t)SfcDesc.sfcformat; for (uint32_t i = 0; i < m_sfcIDs.size(); i++) { vaCreateSurfaces( m_vaDisplay, m_surfaceType, width, height, &m_sfcIDs[i], 1, &(Sfc_vaSurfAttribs.at(0)), Sfc_vaSurfAttribs.size() ); } m_surfaceType = surfaceType; m_rectSFC.x = m_rectSFC.y = 0; m_rectSFC.width = width; m_rectSFC.height = height; // Prepare VAProcPipelineParameterBuffer for decode VAProcPipelineParameterBuffer buffer; memset(&buffer, 0, sizeof(buffer)); m_rectSrc.x = m_rectSrc.y = 0; m_rectSrc.width = (uint16_t)m_DecodeDesc.width; m_rectSrc.height = (uint16_t)m_DecodeDesc.height; buffer.surface_region = &m_rectSrc; buffer.output_region = &m_rectSFC; buffer.additional_outputs = (VASurfaceID*) & (m_sfcIDs[0]); buffer.num_additional_outputs = 1; m_vaProcBuffer = buffer; return 0; } ================================================ FILE: vendor/intel/sfcsample/VDecAccelVA.h ================================================ /* * * Copyright (C) 2018 Intel Corporation. All Rights Reserved. * * ** 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, sub license, 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 (including the * * next paragraph) 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 NON-INFRINGEMENT. * * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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 VDecAccelVA.h * @brief LibVA decode accelerator declaration */ #ifndef MV_ACCELERATOR_VAAPI_DECODE_H #define MV_ACCELERATOR_VAAPI_DECODE_H #include #include #include #include #include #include #include #include "DecodeParamBuffer.h" namespace mvaccel { /** * @brief LibVA decode accelerator */ class VDecAccelVAImpl { public: VDecAccelVAImpl(void* device); VDecAccelVAImpl(); virtual ~VDecAccelVAImpl(); // VDecAccel interface virtual int Open(); virtual void Close(); virtual uint32_t GetSurfaceID(uint32_t index); bool DecodePicture(); void bind_buffer(uint8_t* base); protected: // GfxSurfaceAccess interface uint32_t get_width(VASurfaceID id); uint32_t get_height(VASurfaceID id); uint32_t get_stride(VASurfaceID id); uint8_t* lock_surface(VASurfaceID id, bool write); void unlock_surface(VASurfaceID id); void* get_raw(VASurfaceID id); void* get_device(VASurfaceID id); typedef std::vector VAConfigAttribArray; typedef std::vector VASurfaceAttribArray; // Member functions inherit by children virtual bool is_config_compatible(DecodeDesc& desc); virtual bool is_rt_foramt_supported(DecodeDesc& desc); virtual void prepare_config_attribs( DecodeDesc& desc, VAConfigAttribArray& attribs); virtual void prepare_surface_attribs( DecodeDesc& desc, VASurfaceAttribArray& attribs, bool bDecodeDownsamplingHinted); // Member fucntions NOT inherit by children bool is_slice_mode_supported(DecodeDesc& desc); bool is_encryption_supported(DecodeDesc& desc); bool is_sfc_config_supported(DecodeDesc& desc); VAStatus render_picture(VAContextID& vaContextID); VAStatus query_status(); VAStatus create_surface( uint32_t width, uint32_t height, VASurfaceAttribArray& vaAttribs, VASurfaceID& vaID); void delete_surface(VASurfaceID& vaID); void create_decode_desc(); int check_process_pipeline_caps(DecodeDesc& desc); int create_resources(); protected: int drm_fd = -1; // VA ID & Handles VADisplay m_vaDisplay; /**< @brief VA hardware device */ VAProfile m_vaProfile; /**< @brief Video decoder profile */ VAEntrypoint m_vaEntrypoint; /**< @brief VA entry point */ VAConfigID m_vaConfigID; /**< @brief VA decode config id*/ VAContextID m_vaContextID; /**< @brief Video decoder context */ // VASurfaces id and attributes std::vector m_vaIDs; VASurfaceAttribArray m_vaSurfAttribs; uint32_t m_surfaceType; /**< @brief surface type */ // Gfx surface access management std::map m_images; /**< @brief buf pointer */ enum SFC { MAX_IN_W, MAX_IN_H, MIN_IN_W, MIN_IN_H, MAX_OUT_W, MAX_OUT_H, MIN_OUT_W, MIN_OUT_H, NEW_W, NEW_H, }; DecodeDesc m_DecodeDesc{}; /**< @brief decode discription */ VARectangle m_rectSrc{}; /**< @brief Rectangle for source input */ VARectangle m_rectSFC{}; /**< @brief Rectangle for SFC output */ std::vector m_in4CC{}; /**< @brief input FOURCC */ std::vector m_out4CC{}; /**< @brief output FOURCC */ std::map m_sfcSize{}; /**< @brief SFC sizes */ std::vector m_sfcIDs{}; /**< @brief sfc surfaces */ VAProcPipelineParameterBuffer m_vaProcBuffer{}; /**< @brief sfc pipeline buffer */ }; } // namespace mvaccel #endif // MV_ACCELERATOR_VAAPI_DECODE_H ================================================ FILE: vendor/intel/sfcsample/meson.build ================================================ if use_drm executable('sfcsample', [ 'TestMain.cpp', 'VDecAccelVA.cpp' ], dependencies: libva_display_dep, install: true) endif ================================================ FILE: videoprocess/Makefile.am ================================================ # Copyright (c) 2022 Intel Corporation. All Rights Reserved. # # 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, sub license, 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 (including the # next paragraph) 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 NON-INFRINGEMENT. # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS 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. bin_PROGRAMS = vavpp vppscaling_csc vppdenoise vppsharpness vppchromasitting vppblending vppscaling_n_out_usrptr vacopy vpp3dlut vpphdr_tm AM_CPPFLAGS = \ -Wall \ $(LIBVA_CFLAGS) \ -I$(top_srcdir)/common \ $(NULL) if USE_SSP AM_CPPFLAGS += -fstack-protector endif TEST_LIBS = \ $(LIBVA_LIBS) \ $(top_builddir)/common/libva-display.la \ $(NULL) vavpp_SOURCES = vavpp.cpp vavpp_LDADD = $(TEST_LIBS) vppscaling_csc_SOURCES = vppscaling_csc.cpp vppscaling_csc_LDADD = $(TEST_LIBS) vppdenoise_SOURCES = vppdenoise.cpp vppdenoise_LDADD = $(TEST_LIBS) vppsharpness_SOURCES = vppsharpness.cpp vppsharpness_LDADD = $(TEST_LIBS) vppchromasitting_SOURCES = vppchromasitting.cpp vppchromasitting_LDADD = $(TEST_LIBS) vppblending_SOURCES = vppblending.cpp vppblending_LDADD = $(TEST_LIBS) vppscaling_n_out_usrptr_SOURCES = vppscaling_n_out_usrptr.cpp vppscaling_n_out_usrptr_LDADD = $(TEST_LIBS) vacopy_SOURCES = vacopy.cpp vacopy_LDADD = $(TEST_LIBS) vpp3dlut_SOURCES = vpp3dlut.cpp vpp3dlut_LDADD = $(TEST_LIBS) vpphdr_tm_SOURCES = vpphdr_tm.cpp vpphdr_tm_LDADD = $(TEST_LIBS) valgrind:(bin_PROGRAMS) for a in(bin_PROGRAMS); do \ valgrind --leak-check=full --show-reachable=yes .libs/$$a; \ done ================================================ FILE: videoprocess/README.md ================================================ # Video Processing feature test suites ## Introduction This folder collect a set of VP examples to exercise VA-API in accordance with the libva project. vaapp is the basic app which you can use to check several features(CSC,scaling, denoise, sharpness,DeInterlace,skin tone enhancement,HSBC). The other sample app is the specific app just for one or two features tested. You can get the info from the app name, such as CSC,scaling, denoise, sharpness, chromasitting, 1:N output, usrptr, etc. ## Building 1. In upper folder run autogen.sh, will produce the Makefile. ``` $ ./autogen.sh ``` 2. In upper folder, make the sample. ``` $ make ``` 3. The VP related sample will be produced in the videoprocess directory ## How to run the sample 1. The app para should be defined in the corresponding *.cfg file. Each app will have one related *.cfg.template for your reference,and the detailed para meaning is described in the file. you can create your *.cfg according to your usage. 2. Copy the app and cfg file to the target machine and run. ``` $ ./vavpp process.cfg ================================================ FILE: videoprocess/meson.build ================================================ executable('vacopy', [ 'vacopy.cpp' ], dependencies: libva_display_dep, install: true) executable('vavpp', [ 'vavpp.cpp' ], dependencies: libva_display_dep, install: true) if libva_dep.version().version_compare('>= 1.12.0') executable('vpp3dlut', [ 'vpp3dlut.cpp' ], dependencies: libva_display_dep, install: true) endif executable('vppblending', [ 'vppblending.cpp' ], dependencies: libva_display_dep, install: true) executable('vppchromasitting', [ 'vppchromasitting.cpp' ], dependencies: libva_display_dep, install: true) executable('vppdenoise', [ 'vppdenoise.cpp' ], dependencies: libva_display_dep, install: true) executable('vpphdr_tm', [ 'vpphdr_tm.cpp' ], dependencies: libva_display_dep, install: true) executable('vppscaling_csc', [ 'vppscaling_csc.cpp' ], dependencies: libva_display_dep, install: true) executable('vppscaling_n_out_usrptr', [ 'vppscaling_n_out_usrptr.cpp' ], dependencies: libva_display_dep, install: true) executable('vppsharpness', [ 'vppsharpness.cpp' ], dependencies: libva_display_dep, install: true) ================================================ FILE: videoprocess/process.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/YV12/I420) # you require. After video processing, the processed content (NV12/YV12/I420 surface) # will be stored to frames(yv12 format in file). # Supported features include: denoise, deinterlacing, sharpening, color balance, skintone # detection/enhancement, blending and implicit format conversion(NV12<->YV12<->I420). Each # time only one kind of processing will be executed in test application. Although libva supports # multiple filters execution in one time. you can modify this configuration file to set the # filter and the corresponding parameters. #1.Source YUV(RGB) file information #SRC_FILE_NAME: /root/clips/YUV/bus_cif.yv12 SRC_FILE_NAME: ./bsw_src_1280x1024.yuy2.yuv SRC_FRAME_WIDTH: 1280 SRC_FRAME_HEIGHT: 1024 SRC_FRAME_FORMAT: YUYV #Note .yv12 files are in YV12 format and .yuv used above for STDE is in I420 format SRC_FILE_FORMAT: YUYV #2.Destination YUV(RGB) file information DST_FILE_NAME: ./output.yuv DST_FRAME_WIDTH: 1920 DST_FRAME_HEIGHT: 1080 DST_FRAME_FORMAT: YUYV DST_FILE_FORMAT: YUYV #3.How many frames to be processed FRAME_SUM: 1 #4.VPP filter type and parameters, the following filters are supported: #(VAProcFilterNone,VAProcFilterNoiseReduction,VAProcFilterDeinterlacing, # VAProcFilterSharpening,VAProcFilterColorBalance,VAProcFilterSkinToneEnhancement # defalut VAProcFilterNone) FILTER_TYPE: VAProcFilterNone #5.VPP filter specific parameters. If they are not specified here, #default value will be applied then. #5.1 Denoise filter paramters #(0.0 ~ 1.0, default 0.5) DENOISE_INTENSITY: 0.75 #5.2 Deinterlacding parameters #(VAProcDeinterlacingBob, VAProcDeinterlacingWeave, # VAProcDeinterlacingMotionAdaptive, VAProcDeinterlacingMotionCompensated, # default: VAProcDeinterlacingBob) DEINTERLACING_ALGORITHM: VAProcDeinterlacingBob #(VA_DEINTERLACING_BOTTOM_FIELD_FIRST | # VA_DEINTERLACING_BOTTOM_FIELD | # VA_DEINTERLACING_ONE_FIELD, default 0) DEINTERLACING_FLAGS: 0 #5.3 Sharpening parameters # (0.0 ~ 1.0, default 0.5) SHARPENING_INTENSITY: 0.75 #5.4 Blending # (0, 1, default 0) BLENDING_ENABLED: 0 # (VA_BLEND_GLOBAL_ALPHA | # VA_BLEND_LUMA_KEY, defalut 0) BLENDING_FLAGS: VA_BLEND_GLOBAL_ALPHA # (0.0 ~ 1.0, default 0.5) BLENDING_GLOBAL_ALPHA: 0.5 # (1 ~ 254, defalut 1) BLENDING_MIN_LUMA: 1 # (1 ~ 254, defalut 254) BLENDING_MAX_LUMA: 254 #5.5 Color balance parameters #(-180 ~ 180, default 0) COLOR_BALANCE_HUE: 0 #(0.0 ~ 10.0, default 1.0) COLOR_BALANCE_SATURATION: 1.0 #(-100 ~ 100, default 0) COLOR_BALANCE_BRIGHTNESS: 20 #(0.0 ~ 10.0, default 1.0) COLOR_BALANCE_CONTRAST: 1.2 #5.6 Skin Tone Detection and Enhancement parameters # (One of 0, 3, 6, 9, default = 0) STDE_FACTOR: 9 ================================================ FILE: videoprocess/process_3dlut.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(P010) # you require. After video processing, the processed content (NV12 surface) # will be stored to frames(nv12 format in file). # Supported features include scaling and implicit format conversion(P010<->RGB<->NV12). # you can modify this configuration file to set the corresponding parameters. #1.Source YUV file information SRC_FILE_NAME: ./Flower.p010 SRC_FRAME_WIDTH: 1920 SRC_FRAME_HEIGHT: 1080 SRC_FRAME_FORMAT: P010 SRC_FILE_FORMAT: P010 #2.Destination YUV(RGB) file information DST_FILE_NAME: ./out_1920x1080.p010 DST_FRAME_WIDTH: 1920 DST_FRAME_HEIGHT: 1080 DST_FRAME_FORMAT: P010 DST_FILE_FORMAT: P010 #3.How many frames to be processed FRAME_SUM: 1 #4.3DLUT configuration file 3DLUT_FILE_NAME: ./3dlut_65cubic.dat 3DLUT_SEG_SIZE: 65 3DLUT_MUL_SIZE: 128 3DLUT_CHANNEL_MAPPING: 1 #5. 3DLUT Scaling pipeline(3DLUT->Scaling: 1, Scaling->3DLUT: 0, Scaling only: 2) 3DLUT_SCALING: 1 ================================================ FILE: videoprocess/process_blending.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/YV12/I420) # you require. After video processing, the processed content (NV12/YV12/I420 surface) # will be stored to frames(yv12 format in file). # Supported features include blending and implicit format conversion(NV12<->YV12<->I420). # you can modify this configuration file to set the corresponding parameters. #1.Source YUV(RGB) file information #src file number: SRC_NUMBER: 2 #source file1 SRC_FILE_NAME_1: ./00003_section1_ColorfulPens_960x640.nv12 SRC_FRAME_WIDTH_1:960 SRC_FRAME_HEIGHT_1:640 SRC_FRAME_FORMAT_1: NV12 SRC_FILE_FORMAT_1: NV12 #Cropping info SRC_CROP_LEFT_X_1: 0 SRC_CROP_TOP_Y_1: 0 SRC_CROP_WIDTH_1:960 SRC_CROP_HEIGHT_1:640 #destination area (used in scaling) SRC_DstLeftX_1: 0 SRC_DstTopY_1: 0 SRC_DstWidth_1: 960 SRC_DstHeight_1: 640 #we can support N>=2 input, you just need add the para to xx_N format SRC_FILE_NAME_2: ./00003_section1_ColorfulPens_5f_720x480_writer720x480.argb SRC_FRAME_WIDTH_2:720 SRC_FRAME_HEIGHT_2: 480 SRC_FRAME_FORMAT_2: ARGB SRC_FILE_FORMAT_2: ARGB #Cropping info SRC_CROP_LEFT_X_2: 0 SRC_CROP_TOP_Y_2: 0 SRC_CROP_WIDTH_2:720 SRC_CROP_HEIGHT_2:480 #destination area (used in scaling) SRC_DstLeftX_2: 100 SRC_DstTopY_2: 100 SRC_DstWidth_2: 720 SRC_DstHeight_2: 480 #Defines Video blend flags 1-Global Alpah, 2-Premutiplied Alpha, 3-Luma Key SRC_CompositionBlendFlags_2: 1 #Defines Global Alpah blending value 0.0 to 1.0 SRC_CompositionAlpha_2: 0.5 #Defines Minimum Luma value 0.0 to 1.0 for Luma Key (used in composition) SRC_compositionLumaMin_2:0.0 #Defines Maximum Luma value 0.0 to 1.0 for Luma Key (used in composition) SRC_compositionLumaMax_2:1.0 #2.Destination YUV(RGB) file information DST_FILE_NAME: ./writer960x640.argb DST_FRAME_WIDTH: 960 DST_FRAME_HEIGHT: 640 DST_FRAME_FORMAT: ARGB DST_FILE_FORMAT: ARGB #3.How many frames to be processed FRAME_SUM: 5 ================================================ FILE: videoprocess/process_chromasitting.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/YV12/I420) # you require. After video processing, the processed content (NV12/YV12/I420 surface) # will be stored to frames(yv12 format in file). # Supported features include: chromasitting implicit format conversion(NV12<->YV12<->I420). Each # time only one kind of processing will be executed in test application. Although libva supports # multiple filters execution in one time. you can modify this configuration file to set the # filter and the corresponding parameters. #1.Source YUV(RGB) file information SRC_FILE_NAME: ./ChromaSittingTest_720x516.nv12 SRC_FRAME_WIDTH: 720 SRC_FRAME_HEIGHT: 516 SRC_FRAME_FORMAT: NV12 #Note .nv12 files are in NV12 format SRC_FILE_FORMAT: NV12 #2.Destination YUV(RGB) file information DST_FILE_NAME: ./ChromaSittingTest_720x516_golden176x144.xrgb DST_FRAME_WIDTH: 176 DST_FRAME_HEIGHT: 144 DST_FRAME_FORMAT: XRGB DST_FILE_FORMAT: XRGB #3.How many frames to be processed FRAME_SUM: 5 #4.chromasitting mode parameters set, the following modes are supported: # UNKNOWN, CHROMA_SITING_TOP_LEFT, CHROMA_SITING_TOP_CENTER,CHROMA_SITING_CENTER_LEFT # CHROMA_SITING_CENTER_CENTER, CHROMA_SITING_BOTTOM_LEFT,CHROMA_SITING_BOTTOM_CENTER # input IN_CHROMA_SITTING_MODE: CHROMA_SITING_TOP_LEFT # output DST_CHROMA_SITTING_MODE: CHROMA_SITING_BOTTOM_LEFT ================================================ FILE: videoprocess/process_denoise.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/YV12/I420) # you require. After video processing, the processed content (NV12/YV12/I420 surface) # will be stored to frames(yv12 format in file). # Supported features include: denoise,implicit format conversion(NV12<->YV12<->I420). Each # time only one kind of processing will be executed in test application. Although libva supports # multiple filters execution in one time. you can modify this configuration file to set the # filter and the corresponding parameters. #1.Source YUV(RGB) file information SRC_FILE_NAME: ./foreman_10f_640x480.nv12 SRC_FRAME_WIDTH: 640 SRC_FRAME_HEIGHT: 480 SRC_FRAME_FORMAT: NV12 #Note .nv12 files are in NV12 format SRC_FILE_FORMAT: NV12 #2.Destination YUV(RGB) file information DST_FILE_NAME: ./output_1920x1080.nv12 DST_FRAME_WIDTH: 1920 DST_FRAME_HEIGHT: 1080 DST_FRAME_FORMAT: NV12 DST_FILE_FORMAT: NV12 #3.How many frames to be processed FRAME_SUM: 5 #4.VPP filter specific parameters. If they are not specified here, #default value will be applied then. FILTER_TYPE: VAProcFilterNoiseReduction #4.1 Denoise filter paramters #(0--64, default:0 ) DENOISE_INTENSITY: 44 ================================================ FILE: videoprocess/process_hdr_tm_h2h.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/YV12/I420/P010) # you require. After video processing, the processed content (ARGB10 surface) # will be stored to frames(ARGB10 format in file). # Supported features include: HDR Tone Mapping, implicit format conversion(P010->A2RGB10). Each # time only one kind of processing will be executed in test application. Although libva supports # multiple filters execution in one time. you can modify this configuration file to set the # filter and the corresponding parameters. #To simplify this test app, we use the default gamut for both source and destination. #Please set correct gamut according to the real value and VAAPI definition. #BT2020 Gammut Multiplier Output #G 0.17 0.797 50000 8500 39850 #R 0.708 0.292 50000 35400 14600 #B 0.131 0.046 50000 6550 2300 #w 0.3127 0.329 50000 15635 16450 #BT709 Gammut Multiplier Output #G 0.3 0.6 50000 15000 30000 #R 0.64 0.33 50000 32000 16500 #B 0.15 0.06 50000 7500 3000 #w 0.3127 0.329 50000 15635 16450 #0. Tone Map Type: 0-H2H, 1-H2E, 2-H2S TM_TYPE: 0 #1.Source YUV(RGB) file information SRC_FILE_NAME: Source_1920x1080_4000nits.p010 SRC_FRAME_WIDTH: 1920 SRC_FRAME_HEIGHT: 1080 SRC_FRAME_FORMAT: P010 SRC_FRAME_COLOUR_PRIMARIES: 9 SRC_FRAME_TRANSFER_CHARACTERISTICS: 16 SRC_MAX_DISPLAY_MASTERING_LUMINANCE: 10000000 SRC_MIN_DISPLAY_MASTERING_LUMINANCE: 100 SRC_MAX_CONTENT_LIGHT_LEVEL: 4000 SRC_MAX_PICTURE_AVERAGE_LIGHT_LEVEL: 100 #2.Destination YUV(RGB) file information DST_FILE_NAME: Dest_1920x1080_1000nits_writer.p010 DST_FRAME_WIDTH: 1920 DST_FRAME_HEIGHT: 1080 DST_FRAME_FORMAT: P010 DST_FRAME_COLOUR_PRIMARIES: 9 DST_FRAME_TRANSFER_CHARACTERISTICS: 16 DST_MAX_DISPLAY_MASTERING_LUMINANCE: 10000000 DST_MIN_DISPLAY_MASTERING_LUMINANCE: 100 DST_MAX_CONTENT_LIGHT_LEVEL: 1000 DST_MAX_PICTURE_AVERAGE_LIGHT_LEVEL: 100 #3.How many frames to be processed FRAME_SUM: 1 #4.VPP filter specific parameters. If they are not specified here, #default value will be applied then. FILTER_TYPE: VAProcFilterHighDynamicRangeToneMapping ================================================ FILE: videoprocess/process_hdr_tm_h2s.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/YV12/I420/P010) # you require. After video processing, the processed content (ARGB10 surface) # will be stored to frames(ARGB10 format in file). # Supported features include: HDR Tone Mapping, implicit format conversion(P010->A2RGB10). Each # time only one kind of processing will be executed in test application. Although libva supports # multiple filters execution in one time. you can modify this configuration file to set the # filter and the corresponding parameters. #To simplify this test app, we use the default gamut for both source and destination. #Please set correct gamut according to the real value and VAAPI definition. #BT2020 Gammut Multiplier Output #G 0.17 0.797 50000 8500 39850 #R 0.708 0.292 50000 35400 14600 #B 0.131 0.046 50000 6550 2300 #w 0.3127 0.329 50000 15635 16450 #BT709 Gammut Multiplier Output #G 0.3 0.6 50000 15000 30000 #R 0.64 0.33 50000 32000 16500 #B 0.15 0.06 50000 7500 3000 #w 0.3127 0.329 50000 15635 16450 #0. Tone Map Type: 0-H2H, 1-H2E, 2-H2S TM_TYPE: 2 #1.Source YUV(RGB) file information SRC_FILE_NAME: Source_1920x1080_4000nits.p010 SRC_FRAME_WIDTH: 1920 SRC_FRAME_HEIGHT: 1080 SRC_FRAME_FORMAT: P010 SRC_FRAME_COLOUR_PRIMARIES: 9 SRC_FRAME_TRANSFER_CHARACTERISTICS: 16 SRC_MAX_DISPLAY_MASTERING_LUMINANCE: 10000000 SRC_MIN_DISPLAY_MASTERING_LUMINANCE: 100 SRC_MAX_CONTENT_LIGHT_LEVEL: 4000 SRC_MAX_PICTURE_AVERAGE_LIGHT_LEVEL: 100 #2.Destination YUV(RGB) file information DST_FILE_NAME: Dest_1920x1080_100nits_writer.abgr DST_FRAME_WIDTH: 1920 DST_FRAME_HEIGHT: 1080 DST_FRAME_FORMAT: RGBA DST_FRAME_COLOUR_PRIMARIES: 1 DST_MAX_DISPLAY_MASTERING_LUMINANCE: 1000000 DST_MIN_DISPLAY_MASTERING_LUMINANCE: 100 DST_MAX_CONTENT_LIGHT_LEVEL: 100 DST_MAX_PICTURE_AVERAGE_LIGHT_LEVEL: 100 #3.How many frames to be processed FRAME_SUM: 1 #4.VPP filter specific parameters. If they are not specified here, #default value will be applied then. FILTER_TYPE: VAProcFilterHighDynamicRangeToneMapping ================================================ FILE: videoprocess/process_scaling_csc.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/YV12/I420) # you require. After video processing, the processed content (NV12/YV12/I420 surface) # will be stored to frames(yv12 format in file). # Supported features include scaling and implicit format conversion(NV12<->YV12<->I420). # you can modify this configuration file to set the corresponding parameters. #1.Source YUV(RGB) file information SRC_FILE_NAME: ./foreman_10f_640x480.nv12 SRC_FRAME_WIDTH: 640 SRC_FRAME_HEIGHT: 480 SRC_FRAME_FORMAT: NV12 #Note .nv12 files are in NV12 format SRC_FILE_FORMAT: NV12 #2.Destination YUV(RGB) file information DST_FILE_NAME: ./scaling_out_720x480.yv12 DST_FRAME_WIDTH: 720 DST_FRAME_HEIGHT: 480 DST_FRAME_FORMAT: YV12 DST_FILE_FORMAT: YV12 #3.How many frames to be processed FRAME_SUM: 5 ================================================ FILE: videoprocess/process_scaling_n_out_usrptr.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/YV12/I420) # you require. After video processing, the processed content (NV12/YV12/I420 surface) # will be stored to frames(yv12 format in file). # Supported features include scaling and implicit format conversion(NV12<->YV12<->I420). # input and output crop and usrptr. # you can modify this configuration file to set the corresponding parameters. #1.Source YUV(RGB) file information SRC_FILE_NAME: ./flowersky_352x288_writer352x288.yv12 SRC_FRAME_WIDTH: 352 SRC_FRAME_HEIGHT: 288 SRC_FRAME_FORMAT: YV12 # supported type: (CPU, VA), default: VA SRC_SURFACE_MEMORY_TYPE: VA #if use usrptr CPU memory type, can support 16/128 align mode SRC_SURFACE_CPU_ALIGN_MODE: 128 #if you want to do source crop, you need define the area below to crop #do the crop: 1; not do the crop: 0(default) SRC_SURFACE_CROP: 1 #Cropping info SRC_CROP_LEFT_X: 10 SRC_CROP_TOP_Y: 20 SRC_CROP_WIDTH:200 SRC_CROP_HEIGHT:200 #2.Destination YUV(RGB) file information #dest file number: DST_NUMBER: 1 #we can support N>=2 outputs, you just need add the para to xx_N format DST_FILE_NAME_1: ./scaling_out_1400x1200.nv12 DST_FRAME_WIDTH_1: 1400 DST_FRAME_HEIGHT_1: 1200 DST_FRAME_FORMAT_1: NV12 #dest surface memory type # supported type: (CPU, VA), default: VA DST_SURFACE_MEMORY_TYPE_1: VA #if use usrptr CPU memory type, can support 16/128 align mode DST_SURFACE_CPU_ALIGN_MODE_1: 128 #we can support the output crop with none (0, 0) top/left in render target #if the value set to 1, the output can be scale to the positon below defined #if the value set to 0, ignore and do not crop output #if the value set to 1, please ensure the DST_NUMBER to 1 DST_SURFACE_CROP: 1 #destination area (used in scaling) DST_CROP_LEFT_X: 100 DST_CROP_TOP_Y: 100 DST_CROP_WIDTH: 1000 DST_CROP_HEIGHT: 800 DST_FILE_NAME_2: ./scaling_out_1000x800_2.yuy2 DST_FRAME_WIDTH_2: 1000 DST_FRAME_HEIGHT_2: 800 DST_FRAME_FORMAT_2: YUY2 DST_FILE_FORMAT_2: YUY2 #dest surface memory type # supported type: (CPU, VA), default: VA DST_SURFACE_MEMORY_TYPE_2: CPU #if use usrptr CPU memory type, can support 16/128 align mode DST_SURFACE_CPU_ALIGN_MODE_2: 128 DST_FILE_NAME_3: ./scaling_out_1200x1000_3.nv12 DST_FRAME_WIDTH_3: 1200 DST_FRAME_HEIGHT_3: 1000 DST_FRAME_FORMAT_3: NV12 #dest surface memory type # supported type: (CPU, VA), default: VA DST_SURFACE_MEMORY_TYPE_3: CPU #if use usrptr CPU memory type, can support 16/128 align mode DST_SURFACE_CPU_ALIGN_MODE_3: 128 #if you need to scale the 16align output as input, you can add the para 2ND_SCALE, #xx_02 will be the 2nd scale output, regarding the 1st scale output as input # 1: enable the 2ndscale, default:0 2ND_SCALE: 0 #3.How many frames to be processed FRAME_SUM: 1 ================================================ FILE: videoprocess/process_sharpness.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/YV12/I420) # you require. After video processing, the processed content (NV12/YV12/I420 surface) # will be stored to frames(yv12 format in file). # Supported features include: sharpening, implicit format conversion(NV12<->YV12<->I420). Each # time only one kind of processing will be executed in test application. Although libva supports # multiple filters execution in one time. you can modify this configuration file to set the # filter and the corresponding parameters. #1.Source YUV(RGB) file information SRC_FILE_NAME: ./flowersky_352x288.nv12 SRC_FRAME_WIDTH: 352 SRC_FRAME_HEIGHT: 288 SRC_FRAME_FORMAT: NV12 #Note .nv12 files are in NV12 format SRC_FILE_FORMAT: NV12 #2.Destination YUV(RGB) file information DST_FILE_NAME: ./flowersky_352x288_writer352x288.nv12 DST_FRAME_WIDTH: 352 DST_FRAME_HEIGHT: 288 DST_FRAME_FORMAT: NV12 DST_FILE_FORMAT: NV12 #3.How many frames to be processed FRAME_SUM: 5 #4.VPP filter specific parameters. If they are not specified here, #default value will be applied then. FILTER_TYPE: VAProcFilterSharpening #4.1 Sharpening parameters # (0 ~ 64, default 44) SHARPENING_INTENSITY: 44 ================================================ FILE: videoprocess/process_va_copy.cfg.template ================================================ # Configuration information for video process test case. # This application will firstly load yuv frames to one type of surface(NV12/RBGP) # you require. After GPU HW copy, the processed content (NV12/RGBP surface) # will be stored to frames. # Supported features include intput/ouput internal surface and external(usrptr surface) copy. # you can modify this configuration file to set the corresponding parameters. #1.Source YUV(RGB) file information SRC_FILE_NAME: ./src_480x320.nv12 SRC_FRAME_WIDTH: 480 SRC_FRAME_HEIGHT: 320 SRC_FRAME_FORMAT: NV12 #Note .nv12 files are in NV12 format SRC_FILE_FORMAT: NV12 # source surface memory type # supported type: (CPU, VA), default: VA SRC_SURFACE_MEMORY_TYPE: VA #if use usrptr CPU memory type, can support customization align size SRC_SURFACE_CPU_ALIGN_SIZE: 1 #2.Destination YUV(RGB) file information DST_FILE_NAME: ./dst_480x320.nv12 DST_FRAME_WIDTH: 480 DST_FRAME_HEIGHT: 320 DST_FRAME_FORMAT: NV12 #Note .nv12 files are in NV12 format DST_FILE_FORMAT: NV12 # destination surface memory type # supported type: (CPU, VA), default: VA DST_SURFACE_MEMORY_TYPE: VA #if use usrptr CPU memory type, can support customization align size DST_SURFACE_CPU_ALIGN_SIZE: 128 FRAME_SUM: 1 # hw engine select, 0:balance 1:perf, 2 powersaving COPY_METHOD: 1 ================================================ FILE: videoprocess/vacopy.cpp ================================================ /* * Copyright (c) 2009-2018, Intel Corporation * * 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. */ /* * Video process test case based on LibVA. * This test covers different surface format copy. * Usage: ./vacopy process_copy.cfg */ #include #include #include #include #include #include #include #include #include #include "va_display.h" #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } using namespace std; static VADisplay va_dpy = NULL; static VAContextID context_id = 0; typedef struct _SurfInfo { FILE *fd; char name[MAX_LEN]; uint32_t width; uint32_t height; uint32_t fourCC; uint32_t format; uint32_t memtype; uint32_t alignsize; void *pBuf; uint8_t *pBufBase; uintptr_t ptrb; } SurfInfo; static SurfInfo g_src; static SurfInfo g_dst; static VAConfigID config_id = 0; static FILE* g_config_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static VASurfaceID g_in_surface_id = VA_INVALID_ID; static VASurfaceID g_out_surface_id = VA_INVALID_ID; static uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0'); static uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2'); #define _FREE(p) \ if(p != NULL){ \ free(p); p = NULL; \ } static uint32_t g_frame_count = 0; static uint32_t g_copy_method = 0; //0 blance, 1 perf. 2 power_saving static int8_t parse_memtype_format(char *str, uint32_t *dst_memtype) { uint32_t tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_VA; if (!strcmp(str, "VA")) { tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_VA; } else if (!strcmp(str, "CPU")) { tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "VA,CPU"); assert(0); } if (dst_memtype) *dst_memtype = tmemtype; return 0; } static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field = NULL; char* str = NULL; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static VAStatus create_surface(VASurfaceID * p_surface_id, SurfInfo &surf) { VAStatus va_status = VA_STATUS_ERROR_INVALID_PARAMETER; if (surf.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) { VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = surf.fourCC; va_status = vaCreateSurfaces(va_dpy, surf.format, surf.width, surf.height, p_surface_id, 1, &surface_attrib, 1); } else if (surf.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR) { VASurfaceAttrib surfaceAttrib[3]; VASurfaceAttribExternalBuffers extBuffer; uint32_t base_addr_align = 0x1000; uint32_t size = 0; surfaceAttrib[0].flags = VA_SURFACE_ATTRIB_SETTABLE; surfaceAttrib[0].type = VASurfaceAttribPixelFormat; surfaceAttrib[0].value.type = VAGenericValueTypeInteger; surfaceAttrib[0].value.value.i = surf.fourCC; surfaceAttrib[1].flags = VA_SURFACE_ATTRIB_SETTABLE; surfaceAttrib[1].type = VASurfaceAttribMemoryType; surfaceAttrib[1].value.type = VAGenericValueTypeInteger; surfaceAttrib[1].value.value.i = VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR; surfaceAttrib[2].flags = VA_SURFACE_ATTRIB_SETTABLE; surfaceAttrib[2].type = VASurfaceAttribExternalBufferDescriptor; surfaceAttrib[2].value.type = VAGenericValueTypePointer; surfaceAttrib[2].value.value.p = (void *)&extBuffer; memset(&extBuffer, 0, sizeof(extBuffer)); uint32_t pitch_align = surf.alignsize; switch (surf.fourCC) { case VA_FOURCC_NV12: extBuffer.pitches[0] = ((surf.width + pitch_align - 1) / pitch_align) * pitch_align; size = (extBuffer.pitches[0] * surf.height) * 3 / 2; // frame size align with pitch. size = (size + base_addr_align - 1) / base_addr_align * base_addr_align; // frame size align as 4K page. extBuffer.offsets[0] = 0;// Y channel extBuffer.offsets[1] = extBuffer.pitches[0] * surf.height; // UV channel. extBuffer.pitches[1] = extBuffer.pitches[0]; extBuffer.num_planes = 2; break; case VA_FOURCC_RGBP: extBuffer.pitches[0] = ((surf.width + pitch_align - 1) / pitch_align) * pitch_align; size = (extBuffer.pitches[0] * surf.height) * 3;// frame size align with pitch. size = (size + base_addr_align - 1) / base_addr_align * base_addr_align; // frame size align as 4K page. extBuffer.offsets[0] = 0;// Y channel extBuffer.offsets[1] = extBuffer.pitches[0] * surf.height; // U channel. extBuffer.pitches[1] = extBuffer.pitches[0]; extBuffer.offsets[2] = extBuffer.pitches[0] * surf.height * 2; // V channel. extBuffer.pitches[2] = extBuffer.pitches[0]; extBuffer.num_planes = 3; break; default : std::cout << surf.fourCC << "format doesn't support!" << endl; return VA_STATUS_ERROR_UNSUPPORTED_RT_FORMAT; } if (!surf.pBuf && !surf.pBufBase) { surf.pBuf = malloc(size + base_addr_align); surf.pBufBase = (uint8_t*)((((uint64_t)(surf.pBuf) + base_addr_align - 1) / base_addr_align) * base_addr_align); extBuffer.pixel_format = surf.fourCC; extBuffer.width = surf.width; extBuffer.height = surf.height; extBuffer.data_size = size; extBuffer.num_buffers = 1; extBuffer.buffers = &(surf.ptrb); extBuffer.buffers[0] = (uintptr_t)(surf.pBufBase); va_status = vaCreateSurfaces(va_dpy, surf.format, surf.width, surf.height, p_surface_id, 1, surfaceAttrib, 3); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); } else { std::cout << "previous frame buffer hasn't be released!" << endl; } } return va_status; } /* Load frame to surface*/ static VAStatus upload_frame_to_surface(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; void *surface_p = NULL; uint32_t frame_size, row; size_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (g_src.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) { std::cout << "2D src surface width = " << g_src.width << " pitch = " << surface_image.pitches[0] << endl; } else { std::cout << "linear src surface width = " << g_src.width << " pitch = " << surface_image.pitches[0] << ((g_src.width % surface_image.pitches[0]) ? " it is 2D linear" : " it is 1D linear") << endl; } if (surface_image.format.fourcc == VA_FOURCC_RGBP) { frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = newImageBuffer + surface_image.width * surface_image.height * 2; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.pitches[0]; u_src += surface_image.width; memcpy(v_dst, v_src, surface_image.width); v_dst += surface_image.pitches[0]; v_src += surface_image.width; } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = u_src; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } /* UV plane */ for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_src += surface_image.width; v_src = u_src; u_dst += surface_image.pitches[1]; } } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_surface_to_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (g_dst.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) { std::cout << "2D dst surface width = " << g_dst.width << " pitch = " << surface_image.pitches[0] << endl; } else { std::cout << "linear dst surface width = " << g_dst.width << " pitch = " << surface_image.pitches[0] << ((g_dst.width % surface_image.pitches[0]) ? " it is 2D linear" : " it is 1D linear") << endl; } /* store the surface to one nv12 file */ if (surface_image.format.fourcc == VA_FOURCC_NV12 || surface_image.format.fourcc == VA_FOURCC_RGBP) { y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_RGBP) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } if (g_dst.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) { if (surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); y_dst = newImageBuffer; u_dst = v_dst = newImageBuffer + y_size; /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } // UV plane for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[1]; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else if (surface_image.format.fourcc == VA_FOURCC_RGBP) { uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3); assert(newImageBuffer); y_dst = newImageBuffer; u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size * 2; for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[0]; memcpy(v_dst, v_src, surface_image.width); v_dst += surface_image.width; v_src += surface_image.pitches[0]; } do { n_items = fwrite(newImageBuffer, y_size * 3, 1, fp); } while (n_items != 1); } } else { // usrptr surface. if (surface_image.format.fourcc == VA_FOURCC_NV12) { // directly copy NV12 1D/2D surface. skip derive and map image. uint32_t y_size = surface_image.height * surface_image.pitches[0]; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); memcpy(newImageBuffer, g_dst.pBufBase, (y_size * 3 / 2)); do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else if (surface_image.format.fourcc == VA_FOURCC_RGBP) { uint32_t y_size = surface_image.height * surface_image.pitches[0]; newImageBuffer = (unsigned char*)malloc(y_size * 3); assert(newImageBuffer); memcpy(newImageBuffer, g_dst.pBufBase, (y_size * 3)); do { n_items = fwrite(newImageBuffer, y_size * 3, 1, fp); } while (n_items != 1); } } } else { printf("Not supported surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus video_frame_process(VASurfaceID in_surface_id, VASurfaceID out_surface_id) { VAStatus va_status; #if VA_CHECK_VERSION(1, 10, 0) VACopyObject src_obj, dst_obj; VACopyOption option; memset(&src_obj, 0, sizeof(src_obj)); memset(&dst_obj, 0, sizeof(dst_obj)); memset(&option, 0, sizeof(option)); src_obj.obj_type = VACopyObjectSurface; src_obj.object.surface_id = in_surface_id; dst_obj.obj_type = VACopyObjectSurface; dst_obj.object.surface_id = out_surface_id; option.bits.va_copy_mode = g_copy_method; // VA_COPY_MODE_BALANCE; va_status = vaCopy(va_dpy, &dst_obj, &src_obj, option); #else printf("incorrect libva version!\n"); va_status = VA_STATUS_ERROR_OPERATION_FAILED; #endif return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; int32_t j; /* VA driver initialization */ va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Render target surface format check */ VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; va_status = vaGetConfigAttributes(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); if (!(attrib.value & g_dst.format)) { printf("RT format %d is not supported by VPP !\n", g_dst.format); assert(0); } /* Create surface/config/context for VPP pipeline */ va_status = create_surface(&g_in_surface_id, g_src); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); va_status = create_surface(&g_out_surface_id, g_dst); CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); va_status = vaCreateContext(va_dpy, config_id, g_dst.width, g_dst.height, VA_PROGRESSIVE, &g_out_surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); return va_status; } static void vpp_context_destroy() { /* Release resource */ vaDestroySurfaces(va_dpy, &g_in_surface_id, 1); vaDestroySurfaces(va_dpy, &g_out_surface_id, 1); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); vaTerminate(va_dpy); va_close_display(va_dpy); _FREE(g_src.pBuf); _FREE(g_dst.pBuf); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); } else if (!strcmp(str, "I420")) { tfourcc = VA_FOURCC('I', '4', '2', '0'); } else if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); } else if (!strcmp(str, "YUY2") || !strcmp(str, "YUYV")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); } else if (!strcmp(str, "UYVY")) { tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y'); } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC('P', '0', '1', '0'); } else if (!strcmp(str, "I010")) { tfourcc = VA_FOURCC('I', '0', '1', '0'); } else if (!strcmp(str, "RGBA")) { tfourcc = VA_FOURCC_RGBA; } else if (!strcmp(str, "RGBX")) { tfourcc = VA_FOURCC_RGBX; } else if (!strcmp(str, "BGRA")) { tfourcc = VA_FOURCC_BGRA; } else if (!strcmp(str, "BGRX")) { tfourcc = VA_FOURCC_BGRX; } else if (!strcmp(str, "RGBP")) { tfourcc = VA_FOURCC_RGBP; } else if (!strcmp(str, "BGRP")) { tfourcc = VA_FOURCC_BGRP; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX"); assert(0); } if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; memset(&g_src, 0, sizeof(g_src)); memset(&g_dst, 0, sizeof(g_dst)); /* Read src frame file information */ read_value_string(g_config_file_fd, "SRC_FILE_NAME", g_src.name); read_value_uint32(g_config_file_fd, "SRC_FRAME_WIDTH", &g_src.width); read_value_uint32(g_config_file_fd, "SRC_FRAME_HEIGHT", &g_src.height); read_value_string(g_config_file_fd, "SRC_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_src.fourCC, &g_src.format); read_value_string(g_config_file_fd, "SRC_SURFACE_MEMORY_TYPE", str); parse_memtype_format(str, &g_src.memtype); read_value_uint32(g_config_file_fd, "SRC_SURFACE_CPU_ALIGN_SIZE", &g_src.alignsize); /* Read dst frame file information */ read_value_string(g_config_file_fd, "DST_FILE_NAME", g_dst.name); read_value_uint32(g_config_file_fd, "DST_FRAME_WIDTH", &g_dst.width); read_value_uint32(g_config_file_fd, "DST_FRAME_HEIGHT", &g_dst.height); read_value_string(g_config_file_fd, "DST_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_dst.fourCC, &g_dst.format); read_value_string(g_config_file_fd, "DST_SURFACE_MEMORY_TYPE", str); parse_memtype_format(str, &g_dst.memtype); read_value_uint32(g_config_file_fd, "DST_SURFACE_CPU_ALIGN_SIZE", &g_dst.alignsize); read_value_string(g_config_file_fd, "SRC_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_src_file_fourcc, NULL); read_value_string(g_config_file_fd, "DST_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL); read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); read_value_uint32(g_config_file_fd, "COPY_METHOD", &g_copy_method); if (g_src.width != g_dst.width || g_src.height != g_dst.height) { std::cout << "va copy doesn't support resize!" << endl; return -1; } if (g_src.fourCC != g_dst.fourCC) { std::cout << "va copy doesn't support CSC!" << endl; return -1; } std::cout << "=========Media Copy=========" << endl; if (g_src.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) { std::cout << "copy from 2D tile surface to "; } else { if (g_src.alignsize == 1 || !(g_src.width % g_src.alignsize)) std::cout << "copy from 1D linear surface to "; else std::cout << "copy from 2D linear surface with pitch_align " << g_src.alignsize << " to "; } if (g_dst.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) { std::cout << "2D tile surface." << endl; } else { if (g_dst.alignsize == 1 || !(g_dst.width % g_dst.alignsize)) std::cout << "1D linear surface." << endl; else std::cout << "2D linear surface with pitch_align " << g_dst.alignsize << endl; } std::cout << "prefer hw engine is " << g_copy_method << ". notification, 0: blanance(vebox), 1: perf(EU), 2 powersaving(blt)" << endl; return 0; } static void print_help() { printf("The app is used to test the scaling and csc feature.\n"); printf("Cmd Usage: ./vacopy process_copy.cfg\n"); printf("The configure file process_copy.cfg is used to configure the para.\n"); printf("You can refer process_copy.cfg.template for each para meaning and create the configure file.\n"); } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { print_help(); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ if (NULL == (g_src.fd = fopen(g_src.name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src.name, g_config_file_name); assert(0); } if (NULL == (g_dst.fd = fopen(g_dst.name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst.name, g_config_file_name); assert(0); } printf("\nStart to process, ...\n"); struct timespec Pre_time; struct timespec Cur_time; unsigned int duration = 0; clock_gettime(CLOCK_MONOTONIC, &Pre_time); for (i = 0; i < g_frame_count; i ++) { upload_frame_to_surface(g_src.fd, g_in_surface_id); if (VA_STATUS_SUCCESS != video_frame_process(g_in_surface_id, g_out_surface_id)) { std::cout << "***vaCopy failed***" << std::endl; } store_surface_to_file(g_dst.fd, g_out_surface_id); } clock_gettime(CLOCK_MONOTONIC, &Cur_time); duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000; if (Cur_time.tv_nsec > Pre_time.tv_nsec) { duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000; } else { duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000; } printf("Finish processing, performance: \n"); printf("%d frames processed in: %d ms, ave time = %d ms\n", g_frame_count, duration, duration / g_frame_count); if (g_src.fd) fclose(g_src.fd); if (g_dst.fd) fclose(g_dst.fd); if (g_config_file_fd) fclose(g_config_file_fd); vpp_context_destroy(); return 0; } ================================================ FILE: videoprocess/vavpp.cpp ================================================ /* * Copyright (c) 2014 Intel Corporation. All Rights Reserved. * * 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, sub license, 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 (including the * next paragraph) 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 NON-INFRINGEMENT. * IN NO EVENT SHALL INTEL AND/OR ITS SUPPLIERS 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. */ /* * Video process test case based on LibVA. * This test covers deinterlace, denoise, color balance, sharpening, * blending, scaling and several surface format conversion. * Usage: vavpp process.cfg */ #include #include #include #include #include #include #include #include #include "va_display.h" #define BLEND_ON 0 #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } static VADisplay va_dpy = NULL; static VAContextID context_id = 0; static VAConfigID config_id = 0; static VAProcFilterType g_filter_type = VAProcFilterNone; static VASurfaceID g_in_surface_id = VA_INVALID_ID; static VASurfaceID g_out_surface_id = VA_INVALID_ID; static FILE* g_config_file_fd = NULL; static FILE* g_src_file_fd = NULL; static FILE* g_dst_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static char g_src_file_name[MAX_LEN]; static char g_dst_file_name[MAX_LEN]; static char g_filter_type_name[MAX_LEN]; static uint32_t g_in_pic_width = 352; static uint32_t g_in_pic_height = 288; static uint32_t g_out_pic_width = 352; static uint32_t g_out_pic_height = 288; static uint32_t g_in_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_in_format = VA_RT_FORMAT_YUV420; static uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_out_format = VA_RT_FORMAT_YUV420; static uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0'); static uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2'); static uint8_t g_blending_enabled = 0; static uint8_t g_blending_min_luma = 1; static uint8_t g_blending_max_luma = 254; static uint32_t g_frame_count = 0; static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field; char* str; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint8(FILE* fp, const char* field_name, uint8_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint8_t)atoi(str); return 0; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static int8_t read_value_float(FILE *fp, const char* field_name, float* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find float field: %s \n", field_name); return -1; } *value = atof(str); return 0; } static float adjust_to_range(VAProcFilterValueRange *range, float value) { if (value < range->min_value || value > range->max_value) { printf("Value: %f exceed range: (%f ~ %f), force to use default: %f \n", value, range->min_value, range->max_value, range->default_value); return range->default_value; } return value; } static VAStatus create_surface(VASurfaceID * p_surface_id, uint32_t width, uint32_t height, uint32_t fourCC, uint32_t format) { VAStatus va_status; VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = fourCC; va_status = vaCreateSurfaces(va_dpy, format, width, height, p_surface_id, 1, &surface_attrib, 1); return va_status; } static VAStatus construct_nv12_mask_surface(VASurfaceID surface_id, uint8_t min_luma, uint8_t max_luma) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_dst, *u_dst; uint32_t row, col; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); /* fill Y plane, the luma values of some pixels is in the range of min_luma~max_luma, * and others are out side of it, in luma key blending case, the pixels with Y value * exceeding the range will be hided*/ for (row = 0; row < surface_image.height; row++) { if (row < surface_image.height / 4 || row > surface_image.height * 3 / 4) memset(y_dst, max_luma + 1, surface_image.pitches[0]); else memset(y_dst, (min_luma + max_luma) / 2, surface_image.pitches[0]); y_dst += surface_image.pitches[0]; } /* fill UV plane */ for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = 128; u_dst[col * 2 + 1] = 128; } u_dst += surface_image.pitches[1]; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } /* Load yuv frame to NV12/YV12/I420 surface*/ static VAStatus upload_yuv_frame_to_yuv_surface(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst, *v_dst; void *surface_p = NULL; uint32_t frame_size, row, col; size_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; if (g_src_file_fourcc == VA_FOURCC_I420) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_YV12) { v_src = newImageBuffer + surface_image.width * surface_image.height; u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_NV12) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = u_src; } else { printf("Not supported YUV fourcc for input file !!!\n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; } /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_src += surface_image.width / 2; u_src += surface_image.width / 2; } else { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.width; v_src = u_src; } if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst += surface_image.pitches[1]; u_dst += surface_image.pitches[2]; } else { v_dst += surface_image.pitches[2]; u_dst += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_src += (surface_image.width / 2); v_src += (surface_image.width / 2); } else { memcpy(u_dst, u_src, surface_image.width); u_src += surface_image.width; v_src = u_src; } u_dst += surface_image.pitches[1]; } } } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 && g_src_file_fourcc == VA_FOURCC_YUY2) || (surface_image.format.fourcc == VA_FOURCC_UYVY && g_src_file_fourcc == VA_FOURCC_UYVY) || (surface_image.format.fourcc == VA_FOURCC_AYUV && g_src_file_fourcc == VA_FOURCC_AYUV)) { uint32_t byte_per_pixel = (g_src_file_fourcc == VA_FOURCC_AYUV) ? 4 : 2; frame_size = surface_image.width * surface_image.height * byte_per_pixel; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * byte_per_pixel); y_src += surface_image.width * byte_per_pixel; y_dst += surface_image.pitches[0]; } } else if ((surface_image.format.fourcc == VA_FOURCC_P010 && g_src_file_fourcc == VA_FOURCC_P010) || (surface_image.format.fourcc == VA_FOURCC_I010 && g_src_file_fourcc == VA_FOURCC_I010)) { frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_I010) { assert(g_src_file_fourcc == VA_FOURCC_I010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_src += surface_image.width; v_src += surface_image.width; u_dst += surface_image.pitches[1]; v_dst += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { assert(g_src_file_fourcc == VA_FOURCC_P010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = u_src; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_src += surface_image.width * 2; v_src = u_src; u_dst += surface_image.pitches[1]; v_dst = u_dst; } } } else if ((surface_image.format.fourcc == VA_FOURCC_RGBA && g_src_file_fourcc == VA_FOURCC_RGBA) || (surface_image.format.fourcc == VA_FOURCC_RGBX && g_src_file_fourcc == VA_FOURCC_RGBX) || (surface_image.format.fourcc == VA_FOURCC_BGRA && g_src_file_fourcc == VA_FOURCC_BGRA) || (surface_image.format.fourcc == VA_FOURCC_BGRX && g_src_file_fourcc == VA_FOURCC_BGRX)) { frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.width * 4; y_dst += surface_image.pitches[0]; } } else if (surface_image.format.fourcc == VA_FOURCC_RGBP && g_src_file_fourcc == VA_FOURCC_RGBP) { int i; frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; for (i = 0; i < 3; i++) { y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[i]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.width; y_dst += surface_image.pitches[i]; } } } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } /* Store NV12/YV12/I420 surface to yv12 file */ static VAStatus store_yuv_surface_to_yv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst, *v_dst; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YV12 file or one bmp file*/ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; v_dst = newImageBuffer + y_size; u_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_i420_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst, *v_dst; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one i420 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_nv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst, *v_dst; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one nv12 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = v_dst = newImageBuffer + y_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.width; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[1]; } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_packed_yuv_surface_to_packed_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src; unsigned char *y_dst; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YUY2 or UYVY file */ if (surface_image.format.fourcc == VA_FOURCC_YUY2 || surface_image.format.fourcc == VA_FOURCC_UYVY || surface_image.format.fourcc == VA_FOURCC_AYUV) { uint32_t byte_per_pixel = (surface_image.format.fourcc == VA_FOURCC_AYUV ? 4 : 2); uint32_t frame_size = surface_image.width * surface_image.height * byte_per_pixel; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); memset(newImageBuffer, 0, frame_size); /* stored as YUY2 or UYVY format */ y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Plane 0 copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * byte_per_pixel); y_src += surface_image.pitches[0]; y_dst += surface_image.width * byte_per_pixel; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst, *v_dst; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one 10bit file */ uint32_t y_size = surface_image.width * surface_image.height * 2; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } if (surface_image.format.fourcc == VA_FOURCC_I010) { u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_dst += surface_image.width; v_dst += surface_image.width; u_src += surface_image.pitches[1]; v_src += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { u_dst = newImageBuffer + y_size; v_dst = u_dst; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_dst += surface_image.width * 2; u_src += surface_image.pitches[1]; } } else { printf("Not supported YUV surface fourcc !!! \n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src; unsigned char *y_dst; uint32_t frame_size, row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 4; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_rgbp_surface_to_rgbp_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src; unsigned char *y_dst; uint32_t frame_size, row; int32_t n_items; unsigned char * newImageBuffer = NULL; int i; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); y_dst = newImageBuffer; for (i = 0; i < 3; i++) { y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[i]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[i]; y_dst += surface_image.width; } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_file(FILE *fp, VASurfaceID surface_id) { if (g_out_fourcc == VA_FOURCC_YV12 || g_out_fourcc == VA_FOURCC_I420 || g_out_fourcc == VA_FOURCC_NV12) { if (g_dst_file_fourcc == VA_FOURCC_YV12) return store_yuv_surface_to_yv12_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_I420) return store_yuv_surface_to_i420_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_NV12) return store_yuv_surface_to_nv12_file(fp, surface_id); else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } else if ((g_out_fourcc == VA_FOURCC_YUY2 && g_dst_file_fourcc == VA_FOURCC_YUY2) || (g_out_fourcc == VA_FOURCC_UYVY && g_dst_file_fourcc == VA_FOURCC_UYVY) || (g_out_fourcc == VA_FOURCC_AYUV && g_dst_file_fourcc == VA_FOURCC_AYUV)) { return store_packed_yuv_surface_to_packed_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_I010 && g_dst_file_fourcc == VA_FOURCC_I010) || (g_out_fourcc == VA_FOURCC_P010 && g_dst_file_fourcc == VA_FOURCC_P010)) { return store_yuv_surface_to_10bit_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_RGBA) || (g_out_fourcc == VA_FOURCC_RGBX && g_dst_file_fourcc == VA_FOURCC_RGBX) || (g_out_fourcc == VA_FOURCC_BGRA && g_dst_file_fourcc == VA_FOURCC_BGRA) || (g_out_fourcc == VA_FOURCC_BGRX && g_dst_file_fourcc == VA_FOURCC_BGRX)) { return store_rgb_surface_to_rgb_file(fp, surface_id); } else if (g_out_fourcc == VA_FOURCC_RGBP || g_out_fourcc == VA_FOURCC_BGRP) { return store_rgbp_surface_to_rgbp_file(fp, surface_id); } else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } static VAStatus denoise_filter_init(VABufferID *filter_param_buf_id) { VAStatus va_status = VA_STATUS_SUCCESS; VAProcFilterParameterBuffer denoise_param; VABufferID denoise_param_buf_id; float intensity; VAProcFilterCap denoise_caps; uint32_t num_denoise_caps = 1; va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id, VAProcFilterNoiseReduction, &denoise_caps, &num_denoise_caps); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilterCaps"); if (read_value_float(g_config_file_fd, "DENOISE_INTENSITY", &intensity)) { printf("Read denoise intensity failed, use default value"); intensity = denoise_caps.range.default_value; } intensity = adjust_to_range(&denoise_caps.range, intensity); denoise_param.type = VAProcFilterNoiseReduction; denoise_param.value = intensity; printf("Denoise intensity: %f\n", intensity); va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(denoise_param), 1, &denoise_param, &denoise_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); *filter_param_buf_id = denoise_param_buf_id; return va_status; } /* * This is a method to initialize STDE filter. * If this filter is called, it is enabled by default. */ static VAStatus skintone_filter_init(VABufferID *filter_param_buf_id) { VAStatus va_status = VA_STATUS_SUCCESS; VAProcFilterParameterBuffer stde_param; VABufferID stde_param_buf_id; uint8_t stde_factor = 0; if (read_value_uint8(g_config_file_fd, "STDE_FACTOR", &stde_factor)) { printf("Read STDE Factor failed, use default value"); stde_factor = 0; } printf("Applying STDE factor: %d\n", stde_factor); stde_param.type = VAProcFilterSkinToneEnhancement; stde_param.value = stde_factor; va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(stde_param), 1, &stde_param, &stde_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); *filter_param_buf_id = stde_param_buf_id; return va_status; } static VAStatus deinterlace_filter_init(VABufferID *filter_param_buf_id) { VAStatus va_status = VA_STATUS_SUCCESS; VAProcFilterParameterBufferDeinterlacing deinterlacing_param; VABufferID deinterlacing_param_buf_id; char algorithm_str[MAX_LEN], flags_str[MAX_LEN]; uint32_t i; /* read and check whether configured deinterlace algorithm is supported */ deinterlacing_param.algorithm = VAProcDeinterlacingBob; if (!read_value_string(g_config_file_fd, "DEINTERLACING_ALGORITHM", algorithm_str)) { printf("Deinterlacing algorithm in config: %s \n", algorithm_str); if (!strcmp(algorithm_str, "VAProcDeinterlacingBob")) deinterlacing_param.algorithm = VAProcDeinterlacingBob; else if (!strcmp(algorithm_str, "VAProcDeinterlacingWeave")) deinterlacing_param.algorithm = VAProcDeinterlacingWeave; else if (!strcmp(algorithm_str, "VAProcDeinterlacingMotionAdaptive")) deinterlacing_param.algorithm = VAProcDeinterlacingMotionAdaptive; else if (!strcmp(algorithm_str, "VAProcDeinterlacingMotionCompensated")) deinterlacing_param.algorithm = VAProcDeinterlacingMotionCompensated; } else { printf("Read deinterlace algorithm failed, use default algorithm"); deinterlacing_param.algorithm = VAProcDeinterlacingBob; } VAProcFilterCapDeinterlacing deinterlacing_caps[VAProcDeinterlacingCount]; uint32_t num_deinterlacing_caps = VAProcDeinterlacingCount; va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id, VAProcFilterDeinterlacing, &deinterlacing_caps, &num_deinterlacing_caps); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilterCaps"); for (i = 0; i < VAProcDeinterlacingCount; i ++) if (deinterlacing_caps[i].type == deinterlacing_param.algorithm) break; if (i == VAProcDeinterlacingCount) { printf("Deinterlacing algorithm: %d is not supported by driver, \ use defautl algorithm :%d \n", deinterlacing_param.algorithm, VAProcDeinterlacingBob); deinterlacing_param.algorithm = VAProcDeinterlacingBob; } /* read and check the deinterlace flags */ deinterlacing_param.flags = 0; if (!read_value_string(g_config_file_fd, "DEINTERLACING_FLAG", flags_str)) { if (strstr(flags_str, "VA_DEINTERLACING_BOTTOM_FIELD_FIRST")) deinterlacing_param.flags |= VA_DEINTERLACING_BOTTOM_FIELD_FIRST; if (strstr(flags_str, "VA_DEINTERLACING_BOTTOM_FIELD")) deinterlacing_param.flags |= VA_DEINTERLACING_BOTTOM_FIELD; if (strstr(flags_str, "VA_DEINTERLACING_ONE_FIELD")) deinterlacing_param.flags |= VA_DEINTERLACING_ONE_FIELD; } deinterlacing_param.type = VAProcFilterDeinterlacing; /* create deinterlace fitler buffer */ va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(deinterlacing_param), 1, &deinterlacing_param, &deinterlacing_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); *filter_param_buf_id = deinterlacing_param_buf_id; return va_status; } static VAStatus sharpening_filter_init(VABufferID *filter_param_buf_id) { VAStatus va_status; VAProcFilterParameterBuffer sharpening_param; VABufferID sharpening_param_buf_id; float intensity; VAProcFilterCap sharpening_caps; uint32_t num_sharpening_caps = 1; va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id, VAProcFilterSharpening, &sharpening_caps, &num_sharpening_caps); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilterCaps"); if (read_value_float(g_config_file_fd, "SHARPENING_INTENSITY", &intensity)) { printf("Read sharpening intensity failed, use default value."); intensity = sharpening_caps.range.default_value; } intensity = adjust_to_range(&sharpening_caps.range, intensity); printf("Sharpening intensity: %f\n", intensity); sharpening_param.value = intensity; sharpening_param.type = VAProcFilterSharpening; /* create sharpening fitler buffer */ va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(sharpening_param), 1, &sharpening_param, &sharpening_param_buf_id); *filter_param_buf_id = sharpening_param_buf_id; return va_status; } static VAStatus color_balance_filter_init(VABufferID *filter_param_buf_id) { VAStatus va_status; VAProcFilterParameterBufferColorBalance color_balance_param[4]; VABufferID color_balance_param_buf_id; float value; uint32_t i, count; int8_t status; VAProcFilterCapColorBalance color_balance_caps[VAProcColorBalanceCount]; unsigned int num_color_balance_caps = VAProcColorBalanceCount; va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id, VAProcFilterColorBalance, &color_balance_caps, &num_color_balance_caps); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilterCaps"); count = 0; printf("Color balance params: "); for (i = 0; i < num_color_balance_caps; i++) { if (color_balance_caps[i].type == VAProcColorBalanceHue) { color_balance_param[count].attrib = VAProcColorBalanceHue; status = read_value_float(g_config_file_fd, "COLOR_BALANCE_HUE", &value); printf("Hue: "); } else if (color_balance_caps[i].type == VAProcColorBalanceSaturation) { color_balance_param[count].attrib = VAProcColorBalanceSaturation; status = read_value_float(g_config_file_fd, "COLOR_BALANCE_SATURATION", &value); printf("Saturation: "); } else if (color_balance_caps[i].type == VAProcColorBalanceBrightness) { color_balance_param[count].attrib = VAProcColorBalanceBrightness; status = read_value_float(g_config_file_fd, "COLOR_BALANCE_BRIGHTNESS", &value); printf("Brightness: "); } else if (color_balance_caps[i].type == VAProcColorBalanceContrast) { color_balance_param[count].attrib = VAProcColorBalanceContrast; status = read_value_float(g_config_file_fd, "COLOR_BALANCE_CONTRAST", &value); printf("Contrast: "); } else { continue; } if (status) value = color_balance_caps[i].range.default_value; else value = adjust_to_range(&color_balance_caps[i].range, value); color_balance_param[count].value = value; color_balance_param[count].type = VAProcFilterColorBalance; count++; printf("%4f, ", value); } printf("\n"); va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(color_balance_param), 4, color_balance_param, &color_balance_param_buf_id); *filter_param_buf_id = color_balance_param_buf_id; return va_status; } #if BLEND_ON static VAStatus blending_state_init(VABlendState *state) { VAStatus va_status = VA_STATUS_SUCCESS; char blending_flags_str[MAX_LEN]; float global_alpha; uint32_t min_luma, max_luma; /* read and check blend state */ state->flags = 0; if (!read_value_string(g_config_file_fd, "BLENDING_FLAGS", blending_flags_str)) { if (strstr(blending_flags_str, "VA_BLEND_GLOBAL_ALPHA")) { if (read_value_float(g_config_file_fd, "BLENDING_GLOBAL_ALPHA", &global_alpha)) { global_alpha = 1.0 ; printf("Use default global alpha : %4f \n", global_alpha); } state->flags |= VA_BLEND_GLOBAL_ALPHA; state->global_alpha = global_alpha; } if (strstr(blending_flags_str, "VA_BLEND_LUMA_KEY")) { if (read_value_uint8(g_config_file_fd, "BLENDING_MIN_LUMA", &g_blending_min_luma)) { g_blending_min_luma = 1; printf("Use default min luma : %3d \n", g_blending_min_luma); } if (read_value_uint8(g_config_file_fd, "BLENDING_MAX_LUMA", &g_blending_max_luma)) { g_blending_max_luma = 254; printf("Use default max luma : %3d \n", g_blending_max_luma); } state->flags |= VA_BLEND_LUMA_KEY; state->min_luma = g_blending_min_luma * 1.0 / 256; state->max_luma = g_blending_max_luma * 1.0 / 256; } printf("Blending type = %s, alpha = %f, min_luma = %3d, max_luma = %3d \n", blending_flags_str, global_alpha, min_luma, max_luma); } VAProcPipelineCaps pipeline_caps; va_status = vaQueryVideoProcPipelineCaps(va_dpy, context_id, NULL, 0, &pipeline_caps); CHECK_VASTATUS(va_status, "vaQueryVideoProcPipelineCaps"); if (!pipeline_caps.blend_flags) { printf("Blending is not supported in driver! \n"); return VA_STATUS_ERROR_UNIMPLEMENTED; } if (!(pipeline_caps.blend_flags & state->flags)) { printf("Driver do not support current blending flags: %d", state->flags); return VA_STATUS_ERROR_UNIMPLEMENTED; } return va_status; } #endif static VAStatus video_frame_process(VAProcFilterType filter_type, uint32_t frame_idx, VASurfaceID in_surface_id, VASurfaceID out_surface_id) { VAStatus va_status; VAProcPipelineParameterBuffer pipeline_param; VARectangle surface_region, output_region; VABufferID pipeline_param_buf_id = VA_INVALID_ID; VABufferID filter_param_buf_id = VA_INVALID_ID; #if BLEND_ON VABlendState state ; #endif uint32_t filter_count = 1; /* create denoise_filter buffer id */ switch (filter_type) { case VAProcFilterNoiseReduction: denoise_filter_init(&filter_param_buf_id); break; case VAProcFilterDeinterlacing: deinterlace_filter_init(&filter_param_buf_id); break; case VAProcFilterSharpening: sharpening_filter_init(&filter_param_buf_id); break; case VAProcFilterColorBalance: color_balance_filter_init(&filter_param_buf_id); break; case VAProcFilterSkinToneEnhancement: skintone_filter_init(&filter_param_buf_id); break; default : filter_count = 0; break; } /* Fill pipeline buffer */ surface_region.x = 0; surface_region.y = 0; surface_region.width = g_in_pic_width; surface_region.height = g_in_pic_height; output_region.x = 0; output_region.y = 0; output_region.width = g_out_pic_width; output_region.height = g_out_pic_height; memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = in_surface_id; pipeline_param.surface_region = &surface_region; pipeline_param.output_region = &output_region; pipeline_param.filter_flags = 0; pipeline_param.filters = &filter_param_buf_id; pipeline_param.num_filters = filter_count; #if BLEND_ON /* Blending related state */ if (g_blending_enabled) { blending_state_init(&state); pipeline_param.blend_state = &state; } #endif va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (filter_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, filter_param_buf_id); if (pipeline_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, pipeline_param_buf_id); return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; uint32_t i; int32_t j; /* VA driver initialization */ va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Render target surface format check */ VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; va_status = vaGetConfigAttributes(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); if (!(attrib.value & g_out_format)) { printf("RT format %d is not supported by VPP !\n", g_out_format); assert(0); } /* Create surface/config/context for VPP pipeline */ va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height, g_in_fourcc, g_in_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); /* Source surface format check */ uint32_t num_surf_attribs = VASurfaceAttribCount; VASurfaceAttrib * surf_attribs = (VASurfaceAttrib*) malloc(sizeof(VASurfaceAttrib) * num_surf_attribs); if (!surf_attribs) assert(0); va_status = vaQuerySurfaceAttributes(va_dpy, config_id, surf_attribs, &num_surf_attribs); if (va_status == VA_STATUS_ERROR_MAX_NUM_EXCEEDED) { surf_attribs = (VASurfaceAttrib*)realloc(surf_attribs, sizeof(VASurfaceAttrib) * num_surf_attribs); if (!surf_attribs) assert(0); va_status = vaQuerySurfaceAttributes(va_dpy, config_id, surf_attribs, &num_surf_attribs); } CHECK_VASTATUS(va_status, "vaQuerySurfaceAttributes"); for (i = 0; i < num_surf_attribs; i++) { if (surf_attribs[i].type == VASurfaceAttribPixelFormat && surf_attribs[i].value.value.i == (int)g_in_fourcc) break; } free(surf_attribs); if (i == num_surf_attribs) { printf("Input fourCC %d is not supported by VPP !\n", g_in_fourcc); assert(0); } va_status = vaCreateContext(va_dpy, config_id, g_out_pic_width, g_out_pic_height, VA_PROGRESSIVE, &g_out_surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); /* Validate whether currect filter is supported */ if (g_filter_type != VAProcFilterNone) { uint32_t supported_filter_num = VAProcFilterCount; VAProcFilterType supported_filter_types[VAProcFilterCount]; va_status = vaQueryVideoProcFilters(va_dpy, context_id, supported_filter_types, &supported_filter_num); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilters"); for (i = 0; i < supported_filter_num; i++) { if (supported_filter_types[i] == g_filter_type) break; } if (i == supported_filter_num) { printf("VPP filter type %s is not supported by driver !\n", g_filter_type_name); assert(0); } } return va_status; } static void vpp_context_destroy() { /* Release resource */ vaDestroySurfaces(va_dpy, &g_in_surface_id, 1); vaDestroySurfaces(va_dpy, &g_out_surface_id, 1); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); vaTerminate(va_dpy); va_close_display(va_dpy); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); tformat = VA_RT_FORMAT_YUV420; } else if (!strcmp(str, "I420")) { tfourcc = VA_FOURCC('I', '4', '2', '0'); tformat = VA_RT_FORMAT_YUV420; } else if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); tformat = VA_RT_FORMAT_YUV420; } else if (!strcmp(str, "YUY2") || !strcmp(str, "YUYV")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); tformat = VA_RT_FORMAT_YUV422; } else if (!strcmp(str, "UYVY")) { tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y'); tformat = VA_RT_FORMAT_YUV422; } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC('P', '0', '1', '0'); tformat = VA_RT_FORMAT_YUV420_10BPP; } else if (!strcmp(str, "I010")) { tfourcc = VA_FOURCC('I', '0', '1', '0'); tformat = VA_RT_FORMAT_YUV420_10BPP; } else if (!strcmp(str, "RGBA")) { tfourcc = VA_FOURCC_RGBA; tformat = VA_RT_FORMAT_RGB32; } else if (!strcmp(str, "RGBX")) { tfourcc = VA_FOURCC_RGBX; tformat = VA_RT_FORMAT_RGB32; } else if (!strcmp(str, "BGRA")) { tfourcc = VA_FOURCC_BGRA; tformat = VA_RT_FORMAT_RGB32; } else if (!strcmp(str, "BGRX")) { tfourcc = VA_FOURCC_BGRX; tformat = VA_RT_FORMAT_RGB32; } else if (!strcmp(str, "AYUV")) { tfourcc = VA_FOURCC_AYUV; tformat = VA_RT_FORMAT_YUV444; } else if (!strcmp(str, "RGBP")) { tfourcc = VA_FOURCC_RGBP; tformat = VA_RT_FORMAT_RGBP; } else if (!strcmp(str, "BGRP")) { tfourcc = VA_FOURCC_BGRP; tformat = VA_RT_FORMAT_RGBP; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "YV12, I420, NV12, YUY2(YUYV), UYVY, AYUV, P010, I010, RGBA, RGBX, BGRA, " "BGRX or RGBP"); assert(0); } if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; /* Read src frame file information */ read_value_string(g_config_file_fd, "SRC_FILE_NAME", g_src_file_name); read_value_uint32(g_config_file_fd, "SRC_FRAME_WIDTH", &g_in_pic_width); read_value_uint32(g_config_file_fd, "SRC_FRAME_HEIGHT", &g_in_pic_height); read_value_string(g_config_file_fd, "SRC_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format); /* Read dst frame file information */ read_value_string(g_config_file_fd, "DST_FILE_NAME", g_dst_file_name); read_value_uint32(g_config_file_fd, "DST_FRAME_WIDTH", &g_out_pic_width); read_value_uint32(g_config_file_fd, "DST_FRAME_HEIGHT", &g_out_pic_height); read_value_string(g_config_file_fd, "DST_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format); read_value_string(g_config_file_fd, "SRC_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_src_file_fourcc, NULL); read_value_string(g_config_file_fd, "DST_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL); read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); /* Read filter type */ if (read_value_string(g_config_file_fd, "FILTER_TYPE", g_filter_type_name)) { printf("Read filter type error !\n"); assert(0); } if (!strcmp(g_filter_type_name, "VAProcFilterNoiseReduction")) g_filter_type = VAProcFilterNoiseReduction; else if (!strcmp(g_filter_type_name, "VAProcFilterDeinterlacing")) g_filter_type = VAProcFilterDeinterlacing; else if (!strcmp(g_filter_type_name, "VAProcFilterSharpening")) g_filter_type = VAProcFilterSharpening; else if (!strcmp(g_filter_type_name, "VAProcFilterColorBalance")) g_filter_type = VAProcFilterColorBalance; else if (!strcmp(g_filter_type_name, "VAProcFilterSkinToneEnhancement")) g_filter_type = VAProcFilterSkinToneEnhancement; else if (!strcmp(g_filter_type_name, "VAProcFilterNone")) g_filter_type = VAProcFilterNone; else { printf("Unsupported filter type :%s \n", g_filter_type_name); return -1; } /* Check whether blending is enabled */ if (read_value_uint8(g_config_file_fd, "BLENDING_ENABLED", &g_blending_enabled)) g_blending_enabled = 0; if (g_blending_enabled) printf("Blending will be done \n"); if (g_in_pic_width != g_out_pic_width || g_in_pic_height != g_out_pic_height) printf("Scaling will be done : from %4d x %4d to %4d x %4d \n", g_in_pic_width, g_in_pic_height, g_out_pic_width, g_out_pic_height); if (g_in_fourcc != g_out_fourcc) printf("Format conversion will be done: from %d to %d \n", g_in_fourcc, g_out_fourcc); return 0; } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2) { printf("Input error! please specify the configure file \n"); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ if (NULL == (g_src_file_fd = fopen(g_src_file_name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src_file_name, g_config_file_name); assert(0); } if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst_file_name, g_config_file_name); assert(0); } printf("\nStart to process, processing type is %s ...\n", g_filter_type_name); struct timeval start_time, end_time; gettimeofday(&start_time, NULL); for (i = 0; i < g_frame_count; i ++) { if (g_blending_enabled) { construct_nv12_mask_surface(g_in_surface_id, g_blending_min_luma, g_blending_max_luma); upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_out_surface_id); } else { upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id); } video_frame_process(g_filter_type, i, g_in_surface_id, g_out_surface_id); store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id); } gettimeofday(&end_time, NULL); float duration = (end_time.tv_sec - start_time.tv_sec) + (end_time.tv_usec - start_time.tv_usec) / 1000000.0; printf("Finish processing, performance: \n"); printf("%d frames processed in: %f s, ave time = %.6fs \n", g_frame_count, duration, duration / g_frame_count); if (g_src_file_fd) fclose(g_src_file_fd); if (g_dst_file_fd) fclose(g_dst_file_fd); if (g_config_file_fd) fclose(g_config_file_fd); vpp_context_destroy(); return 0; } ================================================ FILE: videoprocess/vpp3dlut.cpp ================================================ /* * Copyright (c) 2009-2021, Intel Corporation * * 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. */ /* * Video process test case based on LibVA. * This test covers scaling and several surface format conversion. * Usage: ./vppscaling_csc process_scaling_csc.cfg */ #include #include #include #include #include #include #include #include #include "va_display.h" #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } /* indicate the pipleine is scaling -> 3dlut, two seperate calls */ #define VA_SCALING_3DLUT 0 /* indicate the pipleine is 3dlut -> scaling, by default in one call */ #define VA_3DLUT_SCALING 1 #define VA_SCALING_ONLY 2 static VADisplay va_dpy = NULL; static VAContextID context_id = 0; static VAConfigID config_id = 0; static VASurfaceID g_in_surface_id = VA_INVALID_ID; static VASurfaceID g_out_surface_id = VA_INVALID_ID; /* only for VA_SCALING_3DLUT scaled surface */ static VASurfaceID g_inter_surface_id = VA_INVALID_ID; static VASurfaceID g_3dlut_surface_id = VA_INVALID_ID; static FILE* g_config_file_fd = NULL; static FILE* g_src_file_fd = NULL; static FILE* g_dst_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static char g_src_file_name[MAX_LEN]; static char g_dst_file_name[MAX_LEN]; static uint32_t g_in_pic_width = 352; static uint32_t g_in_pic_height = 288; static uint32_t g_out_pic_width = 352; static uint32_t g_out_pic_height = 288; static uint32_t g_in_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_in_format = VA_RT_FORMAT_YUV420; static uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_out_format = VA_RT_FORMAT_YUV420; static uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0'); static uint32_t g_dst_file_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_frame_count = 1; static uint32_t g_pipeline_sequence = VA_3DLUT_SCALING; static char g_3dlut_file_name[MAX_LEN]; static uint16_t g_3dlut_seg_size = 65; static uint16_t g_3dlut_mul_size = 128; static uint32_t g_3dlut_channel_mapping = 1; #if VA_CHECK_VERSION(1, 12, 0) static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field = NULL; char* str = NULL; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static int8_t read_value_uint16(FILE* fp, const char* field_name, uint16_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint16_t)atoi(str); return 0; } /* Load yuv frame to NV12/YV12/I420 surface*/ static VAStatus upload_yuv_frame_to_yuv_surface(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; void *surface_p = NULL; uint32_t frame_size, row, col; size_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; if (g_src_file_fourcc == VA_FOURCC_I420) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_YV12) { v_src = newImageBuffer + surface_image.width * surface_image.height; u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_NV12) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = u_src; } else { printf("Not supported YUV fourcc for input file !!!\n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; } /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_src += surface_image.width / 2; u_src += surface_image.width / 2; } else { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.width; v_src = u_src; } if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst += surface_image.pitches[1]; u_dst += surface_image.pitches[2]; } else { v_dst += surface_image.pitches[2]; u_dst += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_src += (surface_image.width / 2); v_src += (surface_image.width / 2); } else { memcpy(u_dst, u_src, surface_image.width); u_src += surface_image.width; v_src = u_src; } u_dst += surface_image.pitches[1]; } } } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 && g_src_file_fourcc == VA_FOURCC_YUY2) || (surface_image.format.fourcc == VA_FOURCC_UYVY && g_src_file_fourcc == VA_FOURCC_UYVY)) { frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } } else if ((surface_image.format.fourcc == VA_FOURCC_P010 && g_src_file_fourcc == VA_FOURCC_P010) || (surface_image.format.fourcc == VA_FOURCC_I010 && g_src_file_fourcc == VA_FOURCC_I010)) { frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_I010) { assert(g_src_file_fourcc == VA_FOURCC_I010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_src += surface_image.width; v_src += surface_image.width; u_dst += surface_image.pitches[1]; v_dst += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { assert(g_src_file_fourcc == VA_FOURCC_P010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = u_src; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_src += surface_image.width * 2; v_src = u_src; u_dst += surface_image.pitches[1]; v_dst = u_dst; } } } else if ((surface_image.format.fourcc == VA_FOURCC_RGBA && g_src_file_fourcc == VA_FOURCC_RGBA) || (surface_image.format.fourcc == VA_FOURCC_RGBX && g_src_file_fourcc == VA_FOURCC_RGBX) || (surface_image.format.fourcc == VA_FOURCC_BGRA && g_src_file_fourcc == VA_FOURCC_BGRA) || (surface_image.format.fourcc == VA_FOURCC_BGRX && g_src_file_fourcc == VA_FOURCC_BGRX)) { frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.width * 4; y_dst += surface_image.pitches[0]; } } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } /* Store NV12/YV12/I420 surface to yv12 file */ static VAStatus store_yuv_surface_to_yv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YV12 file or one bmp file*/ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; v_dst = newImageBuffer + y_size; u_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_i420_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one i420 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_nv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one nv12 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = v_dst = newImageBuffer + y_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.width; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[1]; } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_packed_yuv_surface_to_packed_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YUY2 or UYVY file */ if (surface_image.format.fourcc == VA_FOURCC_YUY2 || surface_image.format.fourcc == VA_FOURCC_UYVY) { uint32_t frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); memset(newImageBuffer, 0, frame_size); /* stored as YUY2 or UYVY format */ y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Plane 0 copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one 10bit file */ uint32_t y_size = surface_image.width * surface_image.height * 2; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } if (surface_image.format.fourcc == VA_FOURCC_I010) { u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_dst += surface_image.width; v_dst += surface_image.width; u_src += surface_image.pitches[1]; v_src += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { u_dst = newImageBuffer + y_size; v_dst = u_dst; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_dst += surface_image.width * 2; u_src += surface_image.pitches[1]; } } else { printf("Not supported YUV surface fourcc !!! \n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t frame_size, row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 4; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_file(FILE *fp, VASurfaceID surface_id) { if (g_out_fourcc == VA_FOURCC_YV12 || g_out_fourcc == VA_FOURCC_I420 || g_out_fourcc == VA_FOURCC_NV12) { if (g_dst_file_fourcc == VA_FOURCC_YV12) return store_yuv_surface_to_yv12_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_I420) return store_yuv_surface_to_i420_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_NV12) return store_yuv_surface_to_nv12_file(fp, surface_id); else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } else if ((g_out_fourcc == VA_FOURCC_YUY2 && g_dst_file_fourcc == VA_FOURCC_YUY2) || (g_out_fourcc == VA_FOURCC_UYVY && g_dst_file_fourcc == VA_FOURCC_UYVY)) { return store_packed_yuv_surface_to_packed_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_I010 && g_dst_file_fourcc == VA_FOURCC_I010) || (g_out_fourcc == VA_FOURCC_P010 && g_dst_file_fourcc == VA_FOURCC_P010)) { return store_yuv_surface_to_10bit_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_RGBA) || (g_out_fourcc == VA_FOURCC_RGBX && g_dst_file_fourcc == VA_FOURCC_RGBX) || (g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_BGRA) || (g_out_fourcc == VA_FOURCC_BGRX && g_dst_file_fourcc == VA_FOURCC_BGRX)) { return store_rgb_surface_to_rgb_file(fp, surface_id); } else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } static VAStatus upload_data_to_3dlut(FILE *fp, VASurfaceID &surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; uint32_t frame_size, lut3d_size; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (surface_image.format.fourcc == VA_FOURCC_RGBA && fp) { /* 3DLUT surface is allocated to 32 bit RGB */ frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); fseek(fp, 0L, SEEK_END); lut3d_size = ftell(fp); rewind(fp); uint32_t real_size = (frame_size > lut3d_size) ? lut3d_size : frame_size; if (fread(newImageBuffer, real_size, 1, fp) != 0) { memcpy(surface_p, newImageBuffer, real_size); printf("upload_data_to_3dlut: 3DLUT surface width %d, height %d, pitch %d, frame size %d, 3dlut file size: %d\n", surface_image.width, surface_image.height, surface_image.pitches[0], frame_size, lut3d_size); } } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus create_surface(VASurfaceID * p_surface_id, uint32_t width, uint32_t height, uint32_t fourCC, uint32_t format) { VAStatus va_status; VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = fourCC; va_status = vaCreateSurfaces(va_dpy, format, width, height, p_surface_id, 1, &surface_attrib, 1); return va_status; } static VAStatus lut3D_filter_init(VABufferID &filter_param_buf_id) { VAStatus va_status; VAProcFilterParameterBuffer3DLUT lut3d_param; VABufferID lut3d_param_buf_id; uint32_t num_caps = 10; bool bSupported = false; VAProcFilterCap3DLUT caps[num_caps]; memset(&caps, 0, sizeof(VAProcFilterCap3DLUT)*num_caps); va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id, VAProcFilter3DLUT, (void *)caps, &num_caps); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilterCaps"); printf("vaQueryVideoProcFilterCaps num_caps %d\n", num_caps); /* check if the input parameters are supported */ for (uint32_t index = 0; index < num_caps; index++) { // check lut_size and lut_stride if ((caps[index].lut_size = g_3dlut_seg_size) && (caps[index].lut_stride[0] == g_3dlut_seg_size) && (caps[index].lut_stride[1] == g_3dlut_seg_size) && (caps[index].lut_stride[2] == g_3dlut_mul_size)) { bSupported = true; } } if (bSupported) { lut3d_param.type = VAProcFilter3DLUT; lut3d_param.lut_surface = g_3dlut_surface_id; lut3d_param.lut_size = g_3dlut_seg_size; lut3d_param.lut_stride[0] = g_3dlut_seg_size; lut3d_param.lut_stride[1] = g_3dlut_seg_size; lut3d_param.lut_stride[2] = g_3dlut_mul_size; lut3d_param.bit_depth = 16; lut3d_param.num_channel = 4; lut3d_param.channel_mapping = g_3dlut_channel_mapping; /* create 3dlut fitler buffer */ va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(lut3d_param), 1, &lut3d_param, &lut3d_param_buf_id); filter_param_buf_id = lut3d_param_buf_id; } return va_status; } static VAStatus video_frame_process_3dlut(VASurfaceID in_surface_id, VASurfaceID out_surface_id) { VAStatus va_status; VAProcPipelineParameterBuffer pipeline_param; VARectangle surface_region, output_region; VABufferID pipeline_param_buf_id = VA_INVALID_ID; VABufferID filter_param_buf_id = VA_INVALID_ID; /*Create 3DLUT Filter*/ lut3D_filter_init(filter_param_buf_id); /* Fill pipeline buffer */ surface_region.x = 0; surface_region.y = 0; surface_region.width = g_in_pic_width; surface_region.height = g_in_pic_height; output_region.x = 0; output_region.y = 0; output_region.width = g_out_pic_width; output_region.height = g_out_pic_height; memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = in_surface_id; pipeline_param.surface_region = &surface_region; pipeline_param.output_region = &output_region; pipeline_param.filter_flags = 0; pipeline_param.filters = &filter_param_buf_id; pipeline_param.num_filters = 1; /* input is bt2020 */ pipeline_param.surface_color_standard = VAProcColorStandardBT2020; pipeline_param.output_color_standard = VAProcColorStandardBT709; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (pipeline_param_buf_id != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, pipeline_param_buf_id); } if (filter_param_buf_id != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, filter_param_buf_id); } return va_status; } static VAStatus video_frame_process_scaling(VASurfaceID in_surface_id, VASurfaceID out_surface_id) { VAStatus va_status; VAProcPipelineParameterBuffer pipeline_param; VARectangle surface_region, output_region; VABufferID pipeline_param_buf_id = VA_INVALID_ID; /* Fill pipeline buffer */ surface_region.x = 0; surface_region.y = 0; surface_region.width = g_in_pic_width; surface_region.height = g_in_pic_height; output_region.x = 0; output_region.y = 0; output_region.width = g_out_pic_width; output_region.height = g_out_pic_height; memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = in_surface_id; pipeline_param.surface_region = &surface_region; pipeline_param.output_region = &output_region; /* Default is going to SFC */ // pipeline_param.filter_flags = 0; // pipeline_param.filters = &filter_param_buf_id; pipeline_param.num_filters = 0; /* input is bt2020 */ // pipeline_param.surface_color_standard = VAProcColorStandardBT2020; // pipeline_param.output_color_standard = VAProcColorStandardBT709; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (pipeline_param_buf_id != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, pipeline_param_buf_id); } return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; int32_t j; /* VA driver initialization */ va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Render target surface format check */ VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; va_status = vaGetConfigAttributes(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); if (!(attrib.value & g_out_format)) { printf("RT format %d is not supported by VPP !\n", g_out_format); assert(0); } /* Create surface/config/context for VPP pipeline */ va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height, g_in_fourcc, g_in_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); if (g_pipeline_sequence == VA_SCALING_3DLUT) { /* Create intermediate surface for scaling + 3DLUT */ va_status = create_surface(&g_inter_surface_id, g_out_pic_width, g_out_pic_height, g_in_fourcc, g_in_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); } va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); if (g_pipeline_sequence != VA_SCALING_ONLY) { uint32_t lut3d_size = g_3dlut_seg_size * g_3dlut_seg_size * g_3dlut_mul_size * (16 / 8) * 4; printf("3dlut file name: %s, 3dlut size: %d\n", g_3dlut_file_name, lut3d_size); /* create 3dlut surface and fill it with the data in 3dlut file */ va_status = create_surface(&g_3dlut_surface_id, g_3dlut_seg_size * g_3dlut_mul_size, g_3dlut_seg_size * 2, VA_FOURCC_RGBA, VA_RT_FORMAT_RGB32); CHECK_VASTATUS(va_status, "vaCreateSurfaces for 3dlut."); /* fill 3dlut with the 3dlut file data */ FILE *lut3d_file = NULL; lut3d_file = fopen(g_3dlut_file_name, "rb"); upload_data_to_3dlut(lut3d_file, g_3dlut_surface_id); if (lut3d_file) { fclose(lut3d_file); lut3d_file = NULL; } } va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); va_status = vaCreateContext(va_dpy, config_id, g_out_pic_width, g_out_pic_height, VA_PROGRESSIVE, &g_out_surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); return va_status; } static void vpp_context_destroy() { /* Release resource */ printf("vaDestroySurfaces input and output surface!\n"); vaDestroySurfaces(va_dpy, &g_in_surface_id, 1); vaDestroySurfaces(va_dpy, &g_out_surface_id, 1); if (g_pipeline_sequence == VA_SCALING_3DLUT) { printf("vaDestroySurfaces intermediate surface for Scaling->3DLUT!\n"); vaDestroySurfaces(va_dpy, &g_inter_surface_id, 1); } if (g_pipeline_sequence != VA_SCALING_ONLY) { printf("vaDestroySurfaces 3dlut surface for Scaling!\n"); vaDestroySurfaces(va_dpy, &g_3dlut_surface_id, 1); } printf("vaDestroyContext!\n"); vaDestroyContext(va_dpy, context_id); printf("vaDestroyConfig!\n"); vaDestroyConfig(va_dpy, config_id); printf("vaTerminate!\n"); vaTerminate(va_dpy); printf("va_close_display!\n"); va_close_display(va_dpy); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); } else if (!strcmp(str, "I420")) { tfourcc = VA_FOURCC('I', '4', '2', '0'); } else if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); } else if (!strcmp(str, "YUY2") || !strcmp(str, "YUYV")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); } else if (!strcmp(str, "UYVY")) { tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y'); } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC('P', '0', '1', '0'); } else if (!strcmp(str, "I010")) { tfourcc = VA_FOURCC('I', '0', '1', '0'); } else if (!strcmp(str, "RGBA")) { tfourcc = VA_FOURCC_RGBA; } else if (!strcmp(str, "RGBX")) { tfourcc = VA_FOURCC_RGBX; } else if (!strcmp(str, "BGRA")) { tfourcc = VA_FOURCC_BGRA; } else if (!strcmp(str, "BGRX")) { tfourcc = VA_FOURCC_BGRX; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX"); assert(0); } if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; /* Read src frame file information */ read_value_string(g_config_file_fd, "SRC_FILE_NAME", g_src_file_name); read_value_uint32(g_config_file_fd, "SRC_FRAME_WIDTH", &g_in_pic_width); read_value_uint32(g_config_file_fd, "SRC_FRAME_HEIGHT", &g_in_pic_height); read_value_string(g_config_file_fd, "SRC_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format); /* Read dst frame file information */ read_value_string(g_config_file_fd, "DST_FILE_NAME", g_dst_file_name); read_value_uint32(g_config_file_fd, "DST_FRAME_WIDTH", &g_out_pic_width); read_value_uint32(g_config_file_fd, "DST_FRAME_HEIGHT", &g_out_pic_height); read_value_string(g_config_file_fd, "DST_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format); read_value_string(g_config_file_fd, "SRC_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_src_file_fourcc, NULL); read_value_string(g_config_file_fd, "DST_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL); read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); read_value_uint32(g_config_file_fd, "3DLUT_SCALING", &g_pipeline_sequence); if (read_value_string(g_config_file_fd, "3DLUT_FILE_NAME", g_3dlut_file_name)) { printf("Read 3DLUT file failed, exit."); } if (read_value_uint16(g_config_file_fd, "3DLUT_SEG_SIZE", &g_3dlut_seg_size)) { printf("Read segment_size failed, exit."); } if (read_value_uint16(g_config_file_fd, "3DLUT_MUL_SIZE", &g_3dlut_mul_size)) { printf("Read multiple_size failed, exit."); } if (read_value_uint32(g_config_file_fd, "3DLUT_CHANNEL_MAPPING", &g_3dlut_channel_mapping)) { printf("Read channel_mapping failed, exit."); } if (g_in_pic_width != g_out_pic_width || g_in_pic_height != g_out_pic_height) printf("Scaling will be done : from %4d x %4d to %4d x %4d \n", g_in_pic_width, g_in_pic_height, g_out_pic_width, g_out_pic_height); if (g_in_fourcc != g_out_fourcc) printf("Format conversion will be done: from %d to %d \n", g_in_fourcc, g_out_fourcc); return 0; } static void print_help() { printf("The app is used to test the scaling and csc feature.\n"); printf("Cmd Usage: ./vpp3dlut process_3dlut.cfg\n"); printf("The configure file process_scaling_csc.cfg is used to configure the para.\n"); printf("You can refer process_scaling_csc.cfg.template for each para meaning and create the configure file.\n"); } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { print_help(); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ if (NULL == (g_src_file_fd = fopen(g_src_file_name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src_file_name, g_config_file_name); assert(0); } if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst_file_name, g_config_file_name); assert(0); } for (i = 0; i < g_frame_count; i ++) { upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id); if (g_pipeline_sequence == VA_3DLUT_SCALING) { printf("process frame #%d in VA_3DLUT_SCALING\n", i); video_frame_process_3dlut(g_in_surface_id, g_out_surface_id); } else if (g_pipeline_sequence == VA_SCALING_3DLUT) { printf("process frame #%d in VA_SCALING_3DLUT\n", i); video_frame_process_scaling(g_in_surface_id, g_inter_surface_id); video_frame_process_3dlut(g_inter_surface_id, g_out_surface_id); } else if (g_pipeline_sequence == VA_SCALING_ONLY) { printf("process frame #%d in VA_SCALING_ONLY\n", i); video_frame_process_scaling(g_in_surface_id, g_out_surface_id); } else { printf("Unknown pipeline sequence, default is 3DLUT->scaling!\n"); } store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id); } if (g_src_file_fd) fclose(g_src_file_fd); if (g_dst_file_fd) fclose(g_dst_file_fd); if (g_config_file_fd) fclose(g_config_file_fd); vpp_context_destroy(); return 0; } #endif ================================================ FILE: videoprocess/vppblending.cpp ================================================ /* * Copyright (c) 2009-2018, Intel Corporation * * 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. */ /* * Video process test case based on LibVA. * This test covers blending, scaling and several surface format conversion. * Usage: ./vppblending process_blending.cfg */ #include #include #include #include #include #include #include #include #include #include "va_display.h" #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } /* * Image format information for each input streams. */ typedef struct { //Source media information uint32_t yuv_frame_in_width; uint32_t yuv_frame_in_height; VARectangle region_in; /* for cut */ //Dest-layer/plane rectangle information VARectangle region_out; /* for output postion; primarily used when compositing */ char src_file_name[MAX_LEN]; uint32_t src_format; uint32_t rt_format; uint32_t file_fourcc; VABlendState blend_state; } VPP_ImageSrcInfo; static uint32_t g_src_count = 1; static uint32_t g_frame_count = 0; static std::vector g_src_info; static VADisplay va_dpy = NULL; static VAContextID context_id = 0; static VAConfigID config_id = 0; static std::vector g_in_surface_ids; static VASurfaceID g_out_surface_id = VA_INVALID_ID; static FILE* g_config_file_fd = NULL; std::vector g_src_file_fds; static FILE* g_dst_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static char g_dst_file_name[MAX_LEN]; static uint32_t g_out_pic_width = 352; static uint32_t g_out_pic_height = 288; static uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_out_format = VA_RT_FORMAT_YUV420; static uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2'); static uint32_t g_total_time = 0; static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field = NULL; char* str = NULL; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static int8_t read_value_int16(FILE* fp, const char* field_name, int16_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (int16_t)atoi(str); return 0; } static int8_t read_value_uint16(FILE* fp, const char* field_name, uint16_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint16_t)atoi(str); return 0; } static int8_t read_value_float(FILE *fp, const char* field_name, float* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find float field: %s \n", field_name); return -1; } *value = atof(str); return 0; } static VAStatus create_surface(VASurfaceID * p_surface_id, uint32_t width, uint32_t height, uint32_t fourCC, uint32_t format) { VAStatus va_status; VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = fourCC; va_status = vaCreateSurfaces(va_dpy, format, width, height, p_surface_id, 1, &surface_attrib, 1); return va_status; } /* Load yuv frame to NV12/YV12/I420 surface*/ static VAStatus upload_yuv_frame_to_yuv_surface(FILE *fp, VASurfaceID surface_id, uint32_t file_fourcc) { VAStatus va_status; VAImage surface_image; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; void *surface_p = NULL; uint32_t frame_size, row, col; size_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; if (file_fourcc == VA_FOURCC_I420) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (file_fourcc == VA_FOURCC_YV12) { v_src = newImageBuffer + surface_image.width * surface_image.height; u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (file_fourcc == VA_FOURCC_NV12) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = u_src; } else { printf("Not supported YUV fourcc for input file !!!\n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; } /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { if (file_fourcc == VA_FOURCC_I420 || file_fourcc == VA_FOURCC_YV12) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_src += surface_image.width / 2; u_src += surface_image.width / 2; } else { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.width; v_src = u_src; } if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst += surface_image.pitches[1]; u_dst += surface_image.pitches[2]; } else { v_dst += surface_image.pitches[2]; u_dst += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { if (file_fourcc == VA_FOURCC_I420 || file_fourcc == VA_FOURCC_YV12) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_src += (surface_image.width / 2); v_src += (surface_image.width / 2); } else { memcpy(u_dst, u_src, surface_image.width); u_src += surface_image.width; v_src = u_src; } u_dst += surface_image.pitches[1]; } } } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 && file_fourcc == VA_FOURCC_YUY2) || (surface_image.format.fourcc == VA_FOURCC_UYVY && file_fourcc == VA_FOURCC_UYVY)) { frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } } else if ((surface_image.format.fourcc == VA_FOURCC_P010 && file_fourcc == VA_FOURCC_P010) || (surface_image.format.fourcc == VA_FOURCC_I010 && file_fourcc == VA_FOURCC_I010)) { frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_I010) { assert(file_fourcc == VA_FOURCC_I010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_src += surface_image.width; v_src += surface_image.width; u_dst += surface_image.pitches[1]; v_dst += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { assert(file_fourcc == VA_FOURCC_P010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = u_src; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_src += surface_image.width * 2; v_src = u_src; u_dst += surface_image.pitches[1]; v_dst = u_dst; } } } else if ((surface_image.format.fourcc == VA_FOURCC_RGBA && file_fourcc == VA_FOURCC_RGBA) || (surface_image.format.fourcc == VA_FOURCC_RGBX && file_fourcc == VA_FOURCC_RGBX) || (surface_image.format.fourcc == VA_FOURCC_BGRA && file_fourcc == VA_FOURCC_BGRA) || (surface_image.format.fourcc == VA_FOURCC_BGRX && file_fourcc == VA_FOURCC_BGRX) || (surface_image.format.fourcc == VA_FOURCC_ARGB && file_fourcc == VA_FOURCC_ARGB) || (surface_image.format.fourcc == VA_FOURCC_ABGR && file_fourcc == VA_FOURCC_ABGR)) { frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.width * 4; y_dst += surface_image.pitches[0]; } } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } /* Store NV12/YV12/I420 surface to yv12 file */ static VAStatus store_yuv_surface_to_yv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YV12 file or one bmp file*/ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; v_dst = newImageBuffer + y_size; u_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_i420_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one i420 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_nv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one nv12 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = v_dst = newImageBuffer + y_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.width; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[1]; } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_packed_yuv_surface_to_packed_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YUY2 or UYVY file */ if (surface_image.format.fourcc == VA_FOURCC_YUY2 || surface_image.format.fourcc == VA_FOURCC_UYVY) { uint32_t frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); memset(newImageBuffer, 0, frame_size); /* stored as YUY2 or UYVY format */ y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Plane 0 copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one 10bit file */ uint32_t y_size = surface_image.width * surface_image.height * 2; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } if (surface_image.format.fourcc == VA_FOURCC_I010) { u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_dst += surface_image.width; v_dst += surface_image.width; u_src += surface_image.pitches[1]; v_src += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { u_dst = newImageBuffer + y_size; v_dst = u_dst; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_dst += surface_image.width * 2; u_src += surface_image.pitches[1]; } } else { printf("Not supported YUV surface fourcc !!! \n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t frame_size, row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 4; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_file(FILE *fp, VASurfaceID surface_id) { if (g_out_fourcc == VA_FOURCC_YV12 || g_out_fourcc == VA_FOURCC_I420 || g_out_fourcc == VA_FOURCC_NV12) { if (g_dst_file_fourcc == VA_FOURCC_YV12) return store_yuv_surface_to_yv12_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_I420) return store_yuv_surface_to_i420_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_NV12) return store_yuv_surface_to_nv12_file(fp, surface_id); else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } else if ((g_out_fourcc == VA_FOURCC_YUY2 && g_dst_file_fourcc == VA_FOURCC_YUY2) || (g_out_fourcc == VA_FOURCC_UYVY && g_dst_file_fourcc == VA_FOURCC_UYVY)) { return store_packed_yuv_surface_to_packed_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_I010 && g_dst_file_fourcc == VA_FOURCC_I010) || (g_out_fourcc == VA_FOURCC_P010 && g_dst_file_fourcc == VA_FOURCC_P010)) { return store_yuv_surface_to_10bit_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_RGBA) || (g_out_fourcc == VA_FOURCC_RGBX && g_dst_file_fourcc == VA_FOURCC_RGBX) || (g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_BGRA) || (g_out_fourcc == VA_FOURCC_BGRX && g_dst_file_fourcc == VA_FOURCC_BGRX) || (g_out_fourcc == VA_FOURCC_ARGB && g_dst_file_fourcc == VA_FOURCC_ARGB) || (g_out_fourcc == VA_FOURCC_ABGR && g_dst_file_fourcc == VA_FOURCC_ABGR)) { return store_rgb_surface_to_rgb_file(fp, surface_id); } else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } static VAStatus video_frame_process() { VAStatus va_status; uint32_t i; std::vector pipeline_param_buf_ids; pipeline_param_buf_ids.resize(g_src_count); for (i = 0; i < g_src_count; i++) { VAProcPipelineParameterBuffer pipeline_param; memset(&pipeline_param, 0, sizeof(pipeline_param)); /* Fill pipeline buffer */ char CropLeftX[MAX_LEN]; char CropTopY[MAX_LEN]; char CropWidth[MAX_LEN]; char CropHeight[MAX_LEN]; sprintf(CropLeftX, "SRC_CROP_LEFT_X_%d", i + 1); sprintf(CropTopY, "SRC_CROP_TOP_Y_%d", i + 1); sprintf(CropWidth, "SRC_CROP_WIDTH_%d", i + 1); sprintf(CropHeight, "SRC_CROP_HEIGHT_%d", i + 1); read_value_int16(g_config_file_fd, CropLeftX, &g_src_info[i].region_in.x); read_value_int16(g_config_file_fd, CropTopY, &g_src_info[i].region_in.y); read_value_uint16(g_config_file_fd, CropWidth, &g_src_info[i].region_in.width); read_value_uint16(g_config_file_fd, CropHeight, &g_src_info[i].region_in.height); if (g_src_info[i].region_in.width == 0) g_src_info[i].region_in.width = g_src_info[i].yuv_frame_in_width; if (g_src_info[i].region_in.height == 0) g_src_info[i].region_in.height = g_src_info[i].yuv_frame_in_height; char DstLeftX[MAX_LEN]; char DstTopY[MAX_LEN]; char DstWidth[MAX_LEN]; char DstHeight[MAX_LEN]; sprintf(DstLeftX, "SRC_DstLeftX_%d", i + 1); sprintf(DstTopY, "SRC_DstTopY_%d", i + 1); sprintf(DstWidth, "SRC_DstWidth_%d", i + 1); sprintf(DstHeight, "SRC_DstHeight_%d", i + 1); read_value_int16(g_config_file_fd, DstLeftX, &g_src_info[i].region_out.x); read_value_int16(g_config_file_fd, DstTopY, &g_src_info[i].region_out.y); read_value_uint16(g_config_file_fd, DstWidth, &g_src_info[i].region_out.width); read_value_uint16(g_config_file_fd, DstHeight, &g_src_info[i].region_out.height); if (g_src_info[i].region_out.width == 0) g_src_info[i].region_out.width = g_src_info[i].yuv_frame_in_width; if (g_src_info[i].region_out.height == 0) g_src_info[i].region_out.height = g_src_info[i].yuv_frame_in_height; if (i > 0) { uint32_t composition_blend_flags = 0; float composition_alpha = 0; float compositionLumaMin = 0.0; float compositionLumaMax = 1.0; char BlendFlagsName[MAX_LEN]; char AlphaName[MAX_LEN]; char LumaMinName[MAX_LEN]; char LumaMaxName[MAX_LEN]; sprintf(BlendFlagsName, "SRC_CompositionBlendFlags_%d", i + 1); sprintf(AlphaName, "SRC_CompositionAlpha_%d", i + 1); sprintf(LumaMinName, "SRC_compositionLumaMin_%d", i + 1); sprintf(LumaMaxName, "SRC_compositionLumaMax_%d", i + 1); read_value_uint32(g_config_file_fd, BlendFlagsName, &composition_blend_flags); read_value_float(g_config_file_fd, AlphaName, &composition_alpha); read_value_float(g_config_file_fd, LumaMinName, &compositionLumaMin); read_value_float(g_config_file_fd, LumaMaxName, &compositionLumaMax); if (composition_blend_flags & 0x1) g_src_info[i].blend_state.flags |= VA_BLEND_GLOBAL_ALPHA; if (composition_blend_flags & 0x2) g_src_info[i].blend_state.flags |= VA_BLEND_PREMULTIPLIED_ALPHA; if (composition_blend_flags & 0x4) g_src_info[i].blend_state.flags |= VA_BLEND_LUMA_KEY; g_src_info[i].blend_state.global_alpha = composition_alpha; g_src_info[i].blend_state.min_luma = compositionLumaMin; g_src_info[i].blend_state.max_luma = compositionLumaMax; pipeline_param.blend_state = &g_src_info[i].blend_state; } if (g_src_count > 1) { pipeline_param.pipeline_flags |= VA_PROC_PIPELINE_FAST;//for showing all sub-layers pipeline_param.filter_flags |= VA_FILTER_SCALING_FAST; //for showing background color } pipeline_param.surface = g_in_surface_ids[i]; pipeline_param.surface_region = &g_src_info[i].region_in; pipeline_param.output_region = &g_src_info[i].region_out; pipeline_param.surface_color_standard = VAProcColorStandardBT601; pipeline_param.output_color_standard = VAProcColorStandardBT601; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_ids[i]); CHECK_VASTATUS(va_status, "vaCreateBuffer"); } printf("\nStart to process 1 frame, ...\n"); struct timespec Pre_time; struct timespec Cur_time; uint32_t duration = 0; clock_gettime(CLOCK_MONOTONIC, &Pre_time); va_status = vaBeginPicture(va_dpy, context_id, g_out_surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_ids[0], g_src_count); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); clock_gettime(CLOCK_MONOTONIC, &Cur_time); duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000000; if (Cur_time.tv_nsec > Pre_time.tv_nsec) { duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000; } else { duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000 - 1000000; } printf("Finish processing, 1 frame processed in: %d us\n", duration); g_total_time += duration; for (i = 0; i < g_src_count; i++) { if (pipeline_param_buf_ids[i] != VA_INVALID_ID) vaDestroyBuffer(va_dpy, pipeline_param_buf_ids[i]); } return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; int32_t j; /* VA driver initialization */ va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Render target surface format check */ VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; va_status = vaGetConfigAttributes(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); /* Create surface/config/context for VPP pipeline */ for (uint32_t i = 0; i < g_src_count; i++) { va_status = create_surface(&g_in_surface_ids[i], g_src_info[i].yuv_frame_in_width, g_src_info[i].yuv_frame_in_height, g_src_info[i].src_format, g_src_info[i].rt_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); } va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); va_status = vaCreateContext(va_dpy, config_id, g_out_pic_width, g_out_pic_height, VA_PROGRESSIVE, &g_out_surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); return va_status; } static void vpp_context_destroy() { /* Release resource */ for (uint32_t j = 0; j < g_src_count; j++) { if (g_in_surface_ids[j] != VA_INVALID_SURFACE) vaDestroySurfaces(va_dpy, &g_in_surface_ids[j], 1); } if (g_out_surface_id != VA_INVALID_SURFACE) vaDestroySurfaces(va_dpy, &g_out_surface_id, 1); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); vaTerminate(va_dpy); va_close_display(va_dpy); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); } else if (!strcmp(str, "I420")) { tfourcc = VA_FOURCC('I', '4', '2', '0'); } else if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); } else if (!strcmp(str, "YUY2") || !strcmp(str, "YUYV")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); } else if (!strcmp(str, "UYVY")) { tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y'); } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC('P', '0', '1', '0'); } else if (!strcmp(str, "I010")) { tfourcc = VA_FOURCC('I', '0', '1', '0'); } else if (!strcmp(str, "RGBA")) { tfourcc = VA_FOURCC_RGBA; } else if (!strcmp(str, "RGBX")) { tfourcc = VA_FOURCC_RGBX; } else if (!strcmp(str, "BGRA")) { tfourcc = VA_FOURCC_BGRA; } else if (!strcmp(str, "BGRX")) { tfourcc = VA_FOURCC_BGRX; } else if (!strcmp(str, "ARGB")) { tfourcc = VA_FOURCC_ARGB; } else if (!strcmp(str, "A2B10G10R10")) { tfourcc = VA_FOURCC_ABGR; tformat = VA_RT_FORMAT_RGB32_10BPP; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA ,BGRX or ARGB,A2B10G10R10"); assert(0); } if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; read_value_uint32(g_config_file_fd, "SRC_NUMBER", &g_src_count); g_src_info.resize(g_src_count); g_in_surface_ids.resize(g_src_count); g_src_file_fds.resize(g_src_count); /* Read src frame file information */ for (uint32_t i = 0; i < g_src_count; i++) { char file_name[MAX_LEN]; char src_frame_width[MAX_LEN]; char src_frame_height[MAX_LEN]; char src_frame_format[MAX_LEN]; char src_file_format[MAX_LEN]; sprintf(file_name, "SRC_FILE_NAME_%d", i + 1); sprintf(src_frame_width, "SRC_FRAME_WIDTH_%d", i + 1); sprintf(src_frame_height, "SRC_FRAME_HEIGHT_%d", i + 1); sprintf(src_frame_format, "SRC_FRAME_FORMAT_%d", i + 1); sprintf(src_file_format, "SRC_FILE_FORMAT_%d", i + 1); read_value_string(g_config_file_fd, file_name, g_src_info[i].src_file_name); read_value_uint32(g_config_file_fd, src_frame_width, &g_src_info[i].yuv_frame_in_width); read_value_uint32(g_config_file_fd, src_frame_height, &g_src_info[i].yuv_frame_in_height); read_value_string(g_config_file_fd, src_frame_format, str); parse_fourcc_and_format(str, &g_src_info[i].src_format, &g_src_info[i].rt_format); read_value_string(g_config_file_fd, src_file_format, str); parse_fourcc_and_format(str, &g_src_info[i].file_fourcc, NULL); } /* Read dst frame file information */ read_value_string(g_config_file_fd, "DST_FILE_NAME", g_dst_file_name); read_value_uint32(g_config_file_fd, "DST_FRAME_WIDTH", &g_out_pic_width); read_value_uint32(g_config_file_fd, "DST_FRAME_HEIGHT", &g_out_pic_height); read_value_string(g_config_file_fd, "DST_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format); read_value_string(g_config_file_fd, "DST_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL); read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); return 0; } static void print_help() { printf("The app is used to test the blending feature.\n"); printf("Cmd Usage: ./vppblending process_blending.cfg\n"); printf("The configure file process_blending.cfg is used to configure the para.\n"); printf("You can refer process_blending.cfg.template for each para meaning and create the configure file.\n"); } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { print_help(); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ for (i = 0; i < g_src_count; i++) { if (NULL == (g_src_file_fds[i] = fopen(g_src_info[i].src_file_name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src_info[i].src_file_name, g_config_file_name); assert(0); } } if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst_file_name, g_config_file_name); assert(0); } for (i = 0; i < g_frame_count; i ++) { for (unsigned int j = 0; j < g_src_count; j++) { upload_yuv_frame_to_yuv_surface(g_src_file_fds[j], g_in_surface_ids[j], g_src_info[j].file_fourcc); } video_frame_process(); store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id); } printf("Finish processing, performance: %d frames processed in: %d us, ave time = %d us\n", g_frame_count, g_total_time, g_total_time / g_frame_count); for (i = 0; i < g_src_count; i++) { if (g_src_file_fds[i] != NULL) fclose(g_src_file_fds[i]); } if (g_dst_file_fd != NULL) fclose(g_dst_file_fd); if (g_config_file_fd != NULL) fclose(g_config_file_fd); vpp_context_destroy(); return 0; } ================================================ FILE: videoprocess/vppchromasitting.cpp ================================================ /* * Copyright (c) 2009-2018, Intel Corporation * * 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. */ /* * Video process test case based on LibVA. * This test covers chromasitting feature. * Usage: ./vppchromasitting process_chromasitting.cfg */ #include #include #include #include #include #include #include #include #include "va_display.h" #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } static VADisplay va_dpy = NULL; static VAContextID context_id = 0; static VAConfigID config_id = 0; static VASurfaceID g_in_surface_id = VA_INVALID_ID; static VASurfaceID g_out_surface_id = VA_INVALID_ID; static FILE* g_config_file_fd = NULL; static FILE* g_src_file_fd = NULL; static FILE* g_dst_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static char g_src_file_name[MAX_LEN]; static char g_dst_file_name[MAX_LEN]; static uint32_t g_in_pic_width = 352; static uint32_t g_in_pic_height = 288; static uint32_t g_out_pic_width = 352; static uint32_t g_out_pic_height = 288; static uint32_t g_in_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_in_format = VA_RT_FORMAT_YUV420; static uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_out_format = VA_RT_FORMAT_YUV420; static uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0'); static uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2'); static uint32_t g_frame_count = 0; static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field = NULL; char* str = NULL; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static VAStatus create_surface(VASurfaceID * p_surface_id, uint32_t width, uint32_t height, uint32_t fourCC, uint32_t format) { VAStatus va_status; VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = fourCC; va_status = vaCreateSurfaces(va_dpy, format, width, height, p_surface_id, 1, &surface_attrib, 1); return va_status; } /* Load yuv frame to NV12/YV12/I420 surface*/ static VAStatus upload_yuv_frame_to_yuv_surface(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; void *surface_p = NULL; uint32_t frame_size, row, col; size_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; if (g_src_file_fourcc == VA_FOURCC_I420) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_YV12) { v_src = newImageBuffer + surface_image.width * surface_image.height; u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_NV12) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = u_src; } else { printf("Not supported YUV fourcc for input file !!!\n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; } /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_src += surface_image.width / 2; u_src += surface_image.width / 2; } else { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.width; v_src = u_src; } if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst += surface_image.pitches[1]; u_dst += surface_image.pitches[2]; } else { v_dst += surface_image.pitches[2]; u_dst += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_src += (surface_image.width / 2); v_src += (surface_image.width / 2); } else { memcpy(u_dst, u_src, surface_image.width); u_src += surface_image.width; v_src = u_src; } u_dst += surface_image.pitches[1]; } } } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 && g_src_file_fourcc == VA_FOURCC_YUY2) || (surface_image.format.fourcc == VA_FOURCC_UYVY && g_src_file_fourcc == VA_FOURCC_UYVY)) { frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } } else if ((surface_image.format.fourcc == VA_FOURCC_P010 && g_src_file_fourcc == VA_FOURCC_P010) || (surface_image.format.fourcc == VA_FOURCC_I010 && g_src_file_fourcc == VA_FOURCC_I010)) { frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_I010) { assert(g_src_file_fourcc == VA_FOURCC_I010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_src += surface_image.width; v_src += surface_image.width; u_dst += surface_image.pitches[1]; v_dst += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { assert(g_src_file_fourcc == VA_FOURCC_P010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = u_src; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_src += surface_image.width * 2; v_src = u_src; u_dst += surface_image.pitches[1]; v_dst = u_dst; } } } else if ((surface_image.format.fourcc == VA_FOURCC_RGBA && g_src_file_fourcc == VA_FOURCC_RGBA) || (surface_image.format.fourcc == VA_FOURCC_RGBX && g_src_file_fourcc == VA_FOURCC_RGBX) || (surface_image.format.fourcc == VA_FOURCC_BGRA && g_src_file_fourcc == VA_FOURCC_BGRA) || (surface_image.format.fourcc == VA_FOURCC_BGRX && g_src_file_fourcc == VA_FOURCC_BGRX)) { frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.width * 4; y_dst += surface_image.pitches[0]; } } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } /* Store NV12/YV12/I420 surface to yv12 file */ static VAStatus store_yuv_surface_to_yv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YV12 file or one bmp file*/ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; v_dst = newImageBuffer + y_size; u_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_i420_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one i420 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_nv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one nv12 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = v_dst = newImageBuffer + y_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.width; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[1]; } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_packed_yuv_surface_to_packed_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YUY2 or UYVY file */ if (surface_image.format.fourcc == VA_FOURCC_YUY2 || surface_image.format.fourcc == VA_FOURCC_UYVY) { uint32_t frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); memset(newImageBuffer, 0, frame_size); /* stored as YUY2 or UYVY format */ y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Plane 0 copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one 10bit file */ uint32_t y_size = surface_image.width * surface_image.height * 2; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } if (surface_image.format.fourcc == VA_FOURCC_I010) { u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_dst += surface_image.width; v_dst += surface_image.width; u_src += surface_image.pitches[1]; v_src += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { u_dst = newImageBuffer + y_size; v_dst = u_dst; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_dst += surface_image.width * 2; u_src += surface_image.pitches[1]; } } else { printf("Not supported YUV surface fourcc !!! \n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t frame_size, row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 4; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_file(FILE *fp, VASurfaceID surface_id) { if (g_out_fourcc == VA_FOURCC_YV12 || g_out_fourcc == VA_FOURCC_I420 || g_out_fourcc == VA_FOURCC_NV12) { if (g_dst_file_fourcc == VA_FOURCC_YV12) return store_yuv_surface_to_yv12_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_I420) return store_yuv_surface_to_i420_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_NV12) return store_yuv_surface_to_nv12_file(fp, surface_id); else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } else if ((g_out_fourcc == VA_FOURCC_YUY2 && g_dst_file_fourcc == VA_FOURCC_YUY2) || (g_out_fourcc == VA_FOURCC_UYVY && g_dst_file_fourcc == VA_FOURCC_UYVY)) { return store_packed_yuv_surface_to_packed_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_I010 && g_dst_file_fourcc == VA_FOURCC_I010) || (g_out_fourcc == VA_FOURCC_P010 && g_dst_file_fourcc == VA_FOURCC_P010)) { return store_yuv_surface_to_10bit_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_RGBA) || (g_out_fourcc == VA_FOURCC_XRGB && g_dst_file_fourcc == VA_FOURCC_XRGB) || (g_out_fourcc == VA_FOURCC_RGBX && g_dst_file_fourcc == VA_FOURCC_RGBX) || (g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_BGRA) || (g_out_fourcc == VA_FOURCC_BGRX && g_dst_file_fourcc == VA_FOURCC_BGRX)) { return store_rgb_surface_to_rgb_file(fp, surface_id); } else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } static VAStatus chromasitting_param_init(uint8_t *in_chroma_sample_location, uint8_t *dst_chroma_sample_location) { VAStatus va_status = VA_STATUS_SUCCESS; uint8_t in_sample_location = 0; char in_chroma_siting_mode[MAX_LEN]; uint8_t dst_sample_location = 0; char dst_chroma_siting_mode[MAX_LEN]; /* Read filter type */ if (read_value_string(g_config_file_fd, "IN_CHROMA_SITTING_MODE", in_chroma_siting_mode)) { printf("Read IN_CHROMA_SITTING_MODE type error !\n"); assert(0); } if (!strcmp(in_chroma_siting_mode, "UNKNOWN")) in_sample_location = VA_CHROMA_SITING_UNKNOWN; else if (!strcmp(in_chroma_siting_mode, "CHROMA_SITING_TOP_LEFT")) in_sample_location = VA_CHROMA_SITING_VERTICAL_TOP | VA_CHROMA_SITING_HORIZONTAL_LEFT; else if (!strcmp(in_chroma_siting_mode, "CHROMA_SITING_TOP_CENTER")) in_sample_location = VA_CHROMA_SITING_VERTICAL_TOP | VA_CHROMA_SITING_HORIZONTAL_CENTER; else if (!strcmp(in_chroma_siting_mode, "CHROMA_SITING_CENTER_LEFT")) in_sample_location = VA_CHROMA_SITING_VERTICAL_CENTER | VA_CHROMA_SITING_HORIZONTAL_LEFT; else if (!strcmp(in_chroma_siting_mode, "CHROMA_SITING_CENTER_CENTER")) in_sample_location = VA_CHROMA_SITING_VERTICAL_CENTER | VA_CHROMA_SITING_HORIZONTAL_CENTER; else if (!strcmp(in_chroma_siting_mode, "CHROMA_SITING_BOTTOM_LEFT")) in_sample_location = VA_CHROMA_SITING_VERTICAL_BOTTOM | VA_CHROMA_SITING_HORIZONTAL_LEFT; else if (!strcmp(in_chroma_siting_mode, "CHROMA_SITING_BOTTOM_CENTER")) in_sample_location = VA_CHROMA_SITING_VERTICAL_BOTTOM | VA_CHROMA_SITING_HORIZONTAL_CENTER; else { printf("Unsupported IN_CHROMA_SITTING_MODE type :%s \n", in_chroma_siting_mode); return -1; } *in_chroma_sample_location = in_sample_location; if (read_value_string(g_config_file_fd, "DST_CHROMA_SITTING_MODE", dst_chroma_siting_mode)) { printf("Read DST_CHROMA_SITTING_MODE type error !\n"); assert(0); } if (!strcmp(dst_chroma_siting_mode, "UNKNOWN")) dst_sample_location = VA_CHROMA_SITING_UNKNOWN; else if (!strcmp(dst_chroma_siting_mode, "CHROMA_SITING_TOP_LEFT")) dst_sample_location = VA_CHROMA_SITING_VERTICAL_TOP | VA_CHROMA_SITING_HORIZONTAL_LEFT; else if (!strcmp(dst_chroma_siting_mode, "CHROMA_SITING_TOP_CENTER")) dst_sample_location = VA_CHROMA_SITING_VERTICAL_TOP | VA_CHROMA_SITING_HORIZONTAL_CENTER; else if (!strcmp(dst_chroma_siting_mode, "CHROMA_SITING_CENTER_LEFT")) dst_sample_location = VA_CHROMA_SITING_VERTICAL_CENTER | VA_CHROMA_SITING_HORIZONTAL_LEFT; else if (!strcmp(dst_chroma_siting_mode, "CHROMA_SITING_CENTER_CENTER")) dst_sample_location = VA_CHROMA_SITING_VERTICAL_CENTER | VA_CHROMA_SITING_HORIZONTAL_CENTER; else if (!strcmp(dst_chroma_siting_mode, "CHROMA_SITING_BOTTOM_LEFT")) dst_sample_location = VA_CHROMA_SITING_VERTICAL_BOTTOM | VA_CHROMA_SITING_HORIZONTAL_LEFT; else if (!strcmp(dst_chroma_siting_mode, "CHROMA_SITING_BOTTOM_CENTER")) dst_sample_location = VA_CHROMA_SITING_VERTICAL_BOTTOM | VA_CHROMA_SITING_HORIZONTAL_CENTER; else { printf("Unsupported DST_CHROMA_SITTING_MODE type :%s \n", dst_chroma_siting_mode); return -1; } *dst_chroma_sample_location = dst_sample_location; return va_status; } static VAStatus video_frame_process(VASurfaceID in_surface_id, VASurfaceID out_surface_id) { VAStatus va_status; VAProcPipelineParameterBuffer pipeline_param; VARectangle surface_region, output_region; VABufferID pipeline_param_buf_id = VA_INVALID_ID; uint8_t in_chroma_sample_location = VA_CHROMA_SITING_UNKNOWN; uint8_t dst_chroma_sample_location = VA_CHROMA_SITING_UNKNOWN; chromasitting_param_init(&in_chroma_sample_location, &dst_chroma_sample_location); /* Fill pipeline buffer */ surface_region.x = 0; surface_region.y = 0; surface_region.width = g_in_pic_width; surface_region.height = g_in_pic_height; output_region.x = 0; output_region.y = 0; output_region.width = g_out_pic_width; output_region.height = g_out_pic_height; memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = in_surface_id; pipeline_param.surface_region = &surface_region; pipeline_param.output_region = &output_region; pipeline_param.input_color_properties.chroma_sample_location = in_chroma_sample_location; pipeline_param.output_color_properties.chroma_sample_location = dst_chroma_sample_location; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (pipeline_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, pipeline_param_buf_id); return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; int32_t j; /* VA driver initialization */ va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Render target surface format check */ VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; va_status = vaGetConfigAttributes(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); if (!(attrib.value & g_out_format)) { printf("RT format %d is not supported by VPP !\n", g_out_format); assert(0); } /* Create surface/config/context for VPP pipeline */ va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height, g_in_fourcc, g_in_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); va_status = vaCreateContext(va_dpy, config_id, g_out_pic_width, g_out_pic_height, VA_PROGRESSIVE, &g_out_surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); return va_status; } static void vpp_context_destroy() { /* Release resource */ vaDestroySurfaces(va_dpy, &g_in_surface_id, 1); vaDestroySurfaces(va_dpy, &g_out_surface_id, 1); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); vaTerminate(va_dpy); va_close_display(va_dpy); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); } else if (!strcmp(str, "I420")) { tfourcc = VA_FOURCC('I', '4', '2', '0'); } else if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); } else if (!strcmp(str, "YUY2") || !strcmp(str, "YUYV")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); } else if (!strcmp(str, "UYVY")) { tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y'); } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC('P', '0', '1', '0'); } else if (!strcmp(str, "I010")) { tfourcc = VA_FOURCC('I', '0', '1', '0'); } else if (!strcmp(str, "RGBA")) { tfourcc = VA_FOURCC_RGBA; } else if (!strcmp(str, "RGBX")) { tfourcc = VA_FOURCC_RGBX; } else if (!strcmp(str, "XRGB")) { tfourcc = VA_FOURCC_XRGB; } else if (!strcmp(str, "BGRA")) { tfourcc = VA_FOURCC_BGRA; } else if (!strcmp(str, "BGRX")) { tfourcc = VA_FOURCC_BGRX; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX"); assert(0); } if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; /* Read src frame file information */ read_value_string(g_config_file_fd, "SRC_FILE_NAME", g_src_file_name); read_value_uint32(g_config_file_fd, "SRC_FRAME_WIDTH", &g_in_pic_width); read_value_uint32(g_config_file_fd, "SRC_FRAME_HEIGHT", &g_in_pic_height); read_value_string(g_config_file_fd, "SRC_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format); /* Read dst frame file information */ read_value_string(g_config_file_fd, "DST_FILE_NAME", g_dst_file_name); read_value_uint32(g_config_file_fd, "DST_FRAME_WIDTH", &g_out_pic_width); read_value_uint32(g_config_file_fd, "DST_FRAME_HEIGHT", &g_out_pic_height); read_value_string(g_config_file_fd, "DST_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format); read_value_string(g_config_file_fd, "SRC_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_src_file_fourcc, NULL); read_value_string(g_config_file_fd, "DST_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL); read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); if (g_in_pic_width != g_out_pic_width || g_in_pic_height != g_out_pic_height) printf("Scaling will be done : from %4d x %4d to %4d x %4d \n", g_in_pic_width, g_in_pic_height, g_out_pic_width, g_out_pic_height); if (g_in_fourcc != g_out_fourcc) printf("Format conversion will be done: from %d to %d \n", g_in_fourcc, g_out_fourcc); return 0; } static void print_help() { printf("The app is used to test the chromasitting feature.\n"); printf("Cmd Usage: ./vppchromasitting process_chromasitting.cfg\n"); printf("The configure file process_chromasitting.cfg is used to configure the para.\n"); printf("You can refer process_chromasitting.cfg.template for each para meaning and create the configure file.\n"); } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { print_help(); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ if (NULL == (g_src_file_fd = fopen(g_src_file_name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src_file_name, g_config_file_name); assert(0); } if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst_file_name, g_config_file_name); assert(0); } printf("\nStart to process, ...\n"); struct timespec Pre_time; struct timespec Cur_time; unsigned int duration = 0; clock_gettime(CLOCK_MONOTONIC, &Pre_time); for (i = 0; i < g_frame_count; i ++) { upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id); video_frame_process(g_in_surface_id, g_out_surface_id); store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id); } clock_gettime(CLOCK_MONOTONIC, &Cur_time); duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000; if (Cur_time.tv_nsec > Pre_time.tv_nsec) { duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000; } else { duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000; } printf("Finish processing, performance: \n"); printf("%d frames processed in: %d ms, ave time = %d ms\n", g_frame_count, duration, duration / g_frame_count); if (g_src_file_fd) fclose(g_src_file_fd); if (g_dst_file_fd) fclose(g_dst_file_fd); if (g_config_file_fd) fclose(g_config_file_fd); vpp_context_destroy(); return 0; } ================================================ FILE: videoprocess/vppdenoise.cpp ================================================ /* * Copyright (c) 2009-2018, Intel Corporation * * 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. */ /* * Video process test case based on LibVA. * This test covers denoise feature. * Usage: ./vppdenoise process_denoise.cfg */ #include #include #include #include #include #include #include #include #include "va_display.h" #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } static VADisplay va_dpy = NULL; static VAContextID context_id = 0; static VAConfigID config_id = 0; static VASurfaceID g_in_surface_id = VA_INVALID_ID; static VASurfaceID g_out_surface_id = VA_INVALID_ID; static FILE* g_config_file_fd = NULL; static FILE* g_src_file_fd = NULL; static FILE* g_dst_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static char g_src_file_name[MAX_LEN]; static char g_dst_file_name[MAX_LEN]; static uint32_t g_in_pic_width = 352; static uint32_t g_in_pic_height = 288; static uint32_t g_out_pic_width = 352; static uint32_t g_out_pic_height = 288; static uint32_t g_in_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_in_format = VA_RT_FORMAT_YUV420; static uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_out_format = VA_RT_FORMAT_YUV420; static uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0'); static uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2'); static uint32_t g_frame_count = 0; static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field = NULL; char* str = NULL; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static int8_t read_value_float(FILE *fp, const char* field_name, float* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find float field: %s \n", field_name); return -1; } *value = atof(str); return 0; } static float adjust_to_range(VAProcFilterValueRange *range, float value) { if (value < range->min_value || value > range->max_value) { printf("Value: %f exceed range: (%f ~ %f), force to use default: %f \n", value, range->min_value, range->max_value, range->default_value); return range->default_value; } return value; } static VAStatus create_surface(VASurfaceID * p_surface_id, uint32_t width, uint32_t height, uint32_t fourCC, uint32_t format) { VAStatus va_status; VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = fourCC; va_status = vaCreateSurfaces(va_dpy, format, width, height, p_surface_id, 1, &surface_attrib, 1); return va_status; } /* Load yuv frame to NV12/YV12/I420 surface*/ static VAStatus upload_yuv_frame_to_yuv_surface(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; void *surface_p = NULL; uint32_t frame_size, row, col; size_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; if (g_src_file_fourcc == VA_FOURCC_I420) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_YV12) { v_src = newImageBuffer + surface_image.width * surface_image.height; u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_NV12) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = u_src; } else { printf("Not supported YUV fourcc for input file !!!\n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; } /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_src += surface_image.width / 2; u_src += surface_image.width / 2; } else { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.width; v_src = u_src; } if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst += surface_image.pitches[1]; u_dst += surface_image.pitches[2]; } else { v_dst += surface_image.pitches[2]; u_dst += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_src += (surface_image.width / 2); v_src += (surface_image.width / 2); } else { memcpy(u_dst, u_src, surface_image.width); u_src += surface_image.width; v_src = u_src; } u_dst += surface_image.pitches[1]; } } } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 && g_src_file_fourcc == VA_FOURCC_YUY2) || (surface_image.format.fourcc == VA_FOURCC_UYVY && g_src_file_fourcc == VA_FOURCC_UYVY)) { frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } } else if ((surface_image.format.fourcc == VA_FOURCC_P010 && g_src_file_fourcc == VA_FOURCC_P010) || (surface_image.format.fourcc == VA_FOURCC_I010 && g_src_file_fourcc == VA_FOURCC_I010)) { frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_I010) { assert(g_src_file_fourcc == VA_FOURCC_I010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_src += surface_image.width; v_src += surface_image.width; u_dst += surface_image.pitches[1]; v_dst += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { assert(g_src_file_fourcc == VA_FOURCC_P010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = u_src; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_src += surface_image.width * 2; v_src = u_src; u_dst += surface_image.pitches[1]; v_dst = u_dst; } } } else if ((surface_image.format.fourcc == VA_FOURCC_RGBA && g_src_file_fourcc == VA_FOURCC_RGBA) || (surface_image.format.fourcc == VA_FOURCC_RGBX && g_src_file_fourcc == VA_FOURCC_RGBX) || (surface_image.format.fourcc == VA_FOURCC_BGRA && g_src_file_fourcc == VA_FOURCC_BGRA) || (surface_image.format.fourcc == VA_FOURCC_BGRX && g_src_file_fourcc == VA_FOURCC_BGRX)) { frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.width * 4; y_dst += surface_image.pitches[0]; } } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } /* Store NV12/YV12/I420 surface to yv12 file */ static VAStatus store_yuv_surface_to_yv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YV12 file or one bmp file*/ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; v_dst = newImageBuffer + y_size; u_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_i420_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one i420 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_nv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one nv12 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = v_dst = newImageBuffer + y_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.width; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[1]; } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_packed_yuv_surface_to_packed_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YUY2 or UYVY file */ if (surface_image.format.fourcc == VA_FOURCC_YUY2 || surface_image.format.fourcc == VA_FOURCC_UYVY) { uint32_t frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); memset(newImageBuffer, 0, frame_size); /* stored as YUY2 or UYVY format */ y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Plane 0 copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one 10bit file */ uint32_t y_size = surface_image.width * surface_image.height * 2; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } if (surface_image.format.fourcc == VA_FOURCC_I010) { u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_dst += surface_image.width; v_dst += surface_image.width; u_src += surface_image.pitches[1]; v_src += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { u_dst = newImageBuffer + y_size; v_dst = u_dst; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_dst += surface_image.width * 2; u_src += surface_image.pitches[1]; } } else { printf("Not supported YUV surface fourcc !!! \n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t frame_size, row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 4; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_file(FILE *fp, VASurfaceID surface_id) { if (g_out_fourcc == VA_FOURCC_YV12 || g_out_fourcc == VA_FOURCC_I420 || g_out_fourcc == VA_FOURCC_NV12) { if (g_dst_file_fourcc == VA_FOURCC_YV12) return store_yuv_surface_to_yv12_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_I420) return store_yuv_surface_to_i420_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_NV12) return store_yuv_surface_to_nv12_file(fp, surface_id); else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } else if ((g_out_fourcc == VA_FOURCC_YUY2 && g_dst_file_fourcc == VA_FOURCC_YUY2) || (g_out_fourcc == VA_FOURCC_UYVY && g_dst_file_fourcc == VA_FOURCC_UYVY)) { return store_packed_yuv_surface_to_packed_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_I010 && g_dst_file_fourcc == VA_FOURCC_I010) || (g_out_fourcc == VA_FOURCC_P010 && g_dst_file_fourcc == VA_FOURCC_P010)) { return store_yuv_surface_to_10bit_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_RGBA) || (g_out_fourcc == VA_FOURCC_RGBX && g_dst_file_fourcc == VA_FOURCC_RGBX) || (g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_BGRA) || (g_out_fourcc == VA_FOURCC_BGRX && g_dst_file_fourcc == VA_FOURCC_BGRX)) { return store_rgb_surface_to_rgb_file(fp, surface_id); } else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } static VAStatus denoise_filter_init(VABufferID *filter_param_buf_id) { VAStatus va_status = VA_STATUS_SUCCESS; VAProcFilterParameterBuffer denoise_param; VABufferID denoise_param_buf_id; float intensity; VAProcFilterCap denoise_caps; uint32_t num_denoise_caps = 1; va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id, VAProcFilterNoiseReduction, &denoise_caps, &num_denoise_caps); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilterCaps"); if (read_value_float(g_config_file_fd, "DENOISE_INTENSITY", &intensity)) { printf("Read denoise intensity failed, use default value"); intensity = denoise_caps.range.default_value; } intensity = adjust_to_range(&denoise_caps.range, intensity); denoise_param.type = VAProcFilterNoiseReduction; denoise_param.value = intensity; printf("Denoise intensity: %f\n", intensity); va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(denoise_param), 1, &denoise_param, &denoise_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); *filter_param_buf_id = denoise_param_buf_id; return va_status; } static VAStatus video_frame_process(VASurfaceID in_surface_id, VASurfaceID out_surface_id) { VAStatus va_status; VAProcPipelineParameterBuffer pipeline_param; VARectangle surface_region, output_region; VABufferID pipeline_param_buf_id = VA_INVALID_ID; VABufferID filter_param_buf_id = VA_INVALID_ID; denoise_filter_init(&filter_param_buf_id); /* Fill pipeline buffer */ surface_region.x = 0; surface_region.y = 0; surface_region.width = g_in_pic_width; surface_region.height = g_in_pic_height; output_region.x = 0; output_region.y = 0; output_region.width = g_out_pic_width; output_region.height = g_out_pic_height; memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = in_surface_id; pipeline_param.surface_region = &surface_region; pipeline_param.output_region = &output_region; pipeline_param.filter_flags = 0; pipeline_param.filters = &filter_param_buf_id; pipeline_param.num_filters = 1; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (filter_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, filter_param_buf_id); if (pipeline_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, pipeline_param_buf_id); return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; uint32_t i; int32_t j; /* VA driver initialization */ va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Render target surface format check */ VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; va_status = vaGetConfigAttributes(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); if (!(attrib.value & g_out_format)) { printf("RT format %d is not supported by VPP !\n", g_out_format); assert(0); } /* Create surface/config/context for VPP pipeline */ va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height, g_in_fourcc, g_in_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); va_status = vaCreateContext(va_dpy, config_id, g_out_pic_width, g_out_pic_height, VA_PROGRESSIVE, &g_out_surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); uint32_t supported_filter_num = VAProcFilterCount; VAProcFilterType supported_filter_types[VAProcFilterCount]; va_status = vaQueryVideoProcFilters(va_dpy, context_id, supported_filter_types, &supported_filter_num); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilters"); for (i = 0; i < supported_filter_num; i++) { if (supported_filter_types[i] == VAProcFilterNoiseReduction) break; } if (i == supported_filter_num) { printf("VPP filter type VAProcFilterNoiseReduction is not supported by driver !\n"); assert(0); } return va_status; } static void vpp_context_destroy() { /* Release resource */ vaDestroySurfaces(va_dpy, &g_in_surface_id, 1); vaDestroySurfaces(va_dpy, &g_out_surface_id, 1); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); vaTerminate(va_dpy); va_close_display(va_dpy); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); } else if (!strcmp(str, "I420")) { tfourcc = VA_FOURCC('I', '4', '2', '0'); } else if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); } else if (!strcmp(str, "YUY2") || !strcmp(str, "YUYV")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); } else if (!strcmp(str, "UYVY")) { tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y'); } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC('P', '0', '1', '0'); } else if (!strcmp(str, "I010")) { tfourcc = VA_FOURCC('I', '0', '1', '0'); } else if (!strcmp(str, "RGBA")) { tfourcc = VA_FOURCC_RGBA; } else if (!strcmp(str, "RGBX")) { tfourcc = VA_FOURCC_RGBX; } else if (!strcmp(str, "BGRA")) { tfourcc = VA_FOURCC_BGRA; } else if (!strcmp(str, "BGRX")) { tfourcc = VA_FOURCC_BGRX; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX"); assert(0); } if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; /* Read src frame file information */ read_value_string(g_config_file_fd, "SRC_FILE_NAME", g_src_file_name); read_value_uint32(g_config_file_fd, "SRC_FRAME_WIDTH", &g_in_pic_width); read_value_uint32(g_config_file_fd, "SRC_FRAME_HEIGHT", &g_in_pic_height); read_value_string(g_config_file_fd, "SRC_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format); /* Read dst frame file information */ read_value_string(g_config_file_fd, "DST_FILE_NAME", g_dst_file_name); read_value_uint32(g_config_file_fd, "DST_FRAME_WIDTH", &g_out_pic_width); read_value_uint32(g_config_file_fd, "DST_FRAME_HEIGHT", &g_out_pic_height); read_value_string(g_config_file_fd, "DST_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format); read_value_string(g_config_file_fd, "SRC_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_src_file_fourcc, NULL); read_value_string(g_config_file_fd, "DST_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL); read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); if (g_in_pic_width != g_out_pic_width || g_in_pic_height != g_out_pic_height) printf("Scaling will be done : from %4d x %4d to %4d x %4d \n", g_in_pic_width, g_in_pic_height, g_out_pic_width, g_out_pic_height); if (g_in_fourcc != g_out_fourcc) printf("Format conversion will be done: from %d to %d \n", g_in_fourcc, g_out_fourcc); return 0; } static void print_help() { printf("The app is used to test the denoise feature.\n"); printf("Cmd Usage: ./vppdenoise process_denoise.cfg\n"); printf("The configure file process_denoise.cfg is used to configure the para.\n"); printf("You can refer process_denoise.cfg.template for each para meaning and create the configure file.\n"); } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { print_help(); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ if (NULL == (g_src_file_fd = fopen(g_src_file_name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src_file_name, g_config_file_name); assert(0); } if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst_file_name, g_config_file_name); assert(0); } printf("\nStart to process, ...\n"); struct timespec Pre_time; struct timespec Cur_time; unsigned int duration = 0; clock_gettime(CLOCK_MONOTONIC, &Pre_time); for (i = 0; i < g_frame_count; i ++) { upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id); video_frame_process(g_in_surface_id, g_out_surface_id); store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id); } clock_gettime(CLOCK_MONOTONIC, &Cur_time); duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000; if (Cur_time.tv_nsec > Pre_time.tv_nsec) { duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000; } else { duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000; } printf("Finish processing, performance: \n"); printf("%d frames processed in: %d ms, ave time = %d ms\n", g_frame_count, duration, duration / g_frame_count); if (g_src_file_fd) fclose(g_src_file_fd); if (g_dst_file_fd) fclose(g_dst_file_fd); if (g_config_file_fd) fclose(g_config_file_fd); vpp_context_destroy(); return 0; } ================================================ FILE: videoprocess/vpphdr_tm.cpp ================================================ /* * Copyright (c) 2009-2022, Intel Corporation * * 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. */ /* * Video process test case based on LibVA. * This test covers high dynamic range tone mapping feature. * Usage: ./vpphdr_tm process_hdr_tm.cfg */ #include #include #include #include #include #include #include #include #include "va_display.h" #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ printf("%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } static VADisplay va_dpy = NULL; static VAContextID context_id = 0; static VAConfigID config_id = 0; static VASurfaceID g_in_surface_id = VA_INVALID_ID; static VASurfaceID g_out_surface_id = VA_INVALID_ID; static FILE* g_config_file_fd = NULL; static FILE* g_src_file_fd = NULL; static FILE* g_dst_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static char g_src_file_name[MAX_LEN]; static char g_dst_file_name[MAX_LEN]; static uint32_t g_in_pic_width = 1920; static uint32_t g_in_pic_height = 1080; static uint32_t g_out_pic_width = 1920; static uint32_t g_out_pic_height = 1080; static uint32_t g_in_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_in_format = VA_FOURCC_P010; static uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_out_format = VA_RT_FORMAT_YUV420; static uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0'); static uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2'); static uint32_t g_frame_count = 1; // The maximum display luminace is 1000 nits by default. static uint32_t g_in_max_display_luminance = 10000000; static uint32_t g_in_min_display_luminance = 100; static uint32_t g_in_max_content_luminance = 4000; static uint32_t g_in_pic_average_luminance = 1000; // The maximum display luminace is 1000 nits by default. static uint32_t g_out_max_display_luminance = 10000000; static uint32_t g_out_min_display_luminance = 100; static uint32_t g_out_max_content_luminance = 4000; static uint32_t g_out_pic_average_luminance = 1000; static uint32_t g_in_colour_primaries = 9; static uint32_t g_in_transfer_characteristic = 16; static uint32_t g_out_colour_primaries = 9; static uint32_t g_out_transfer_characteristic = 16; static uint32_t g_tm_type = 1; static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field = NULL; char* str = NULL; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static VAStatus create_surface(VASurfaceID * p_surface_id, uint32_t width, uint32_t height, uint32_t fourCC, uint32_t format) { VAStatus va_status; VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = fourCC; va_status = vaCreateSurfaces(va_dpy, format, width, height, p_surface_id, 1, &surface_attrib, 1); printf("create_surface: p_surface_id %d, width %d, height %d, fourCC 0x%x, format 0x%x\n", *p_surface_id, width, height, fourCC, format); return va_status; } static VAStatus hdrtm_filter_init(VABufferID *filter_param_buf_id, uint32_t tm_type) { VAStatus va_status = VA_STATUS_SUCCESS; VAProcFilterParameterBufferHDRToneMapping hdrtm_param; VAHdrMetaDataHDR10 in_hdr10_metadata = {}; // The input is HDR content in_hdr10_metadata.max_display_mastering_luminance = g_in_max_display_luminance; in_hdr10_metadata.min_display_mastering_luminance = g_in_min_display_luminance; in_hdr10_metadata.max_content_light_level = g_in_max_content_luminance; in_hdr10_metadata.max_pic_average_light_level = g_in_pic_average_luminance; in_hdr10_metadata.display_primaries_x[0] = 8500; in_hdr10_metadata.display_primaries_y[0] = 39850; in_hdr10_metadata.display_primaries_x[1] = 35400; in_hdr10_metadata.display_primaries_y[1] = 14600; in_hdr10_metadata.display_primaries_x[2] = 6550; in_hdr10_metadata.display_primaries_y[2] = 2300; in_hdr10_metadata.white_point_x = 15635; in_hdr10_metadata.white_point_y = 16450; hdrtm_param.type = VAProcFilterHighDynamicRangeToneMapping; hdrtm_param.data.metadata_type = VAProcHighDynamicRangeMetadataHDR10; hdrtm_param.data.metadata = &in_hdr10_metadata; hdrtm_param.data.metadata_size = sizeof(VAHdrMetaDataHDR10); va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(hdrtm_param), 1, (void *)&hdrtm_param, filter_param_buf_id); return va_status; } static VAStatus hdrtm_metadata_init(VAHdrMetaData &out_metadata, uint32_t tm_type, VAHdrMetaDataHDR10 &out_hdr10_metadata) { VAStatus va_status = VA_STATUS_SUCCESS; out_hdr10_metadata.max_display_mastering_luminance = g_out_max_display_luminance; out_hdr10_metadata.min_display_mastering_luminance = g_out_min_display_luminance; out_hdr10_metadata.max_content_light_level = g_out_max_content_luminance; out_hdr10_metadata.max_pic_average_light_level = g_out_pic_average_luminance; printf("hdrtm_metadata_init g_out_max_display_luminance %d, g_out_min_display_luminance %d\n", g_out_max_display_luminance, g_out_min_display_luminance); printf("hdrtm_metadata_init g_out_max_content_luminance %d, g_out_pic_average_luminance %d\n", g_out_max_content_luminance, g_out_pic_average_luminance); // HDR display or SDR display switch (tm_type) { case VA_TONE_MAPPING_HDR_TO_HDR: out_hdr10_metadata.display_primaries_x[0] = 8500; out_hdr10_metadata.display_primaries_y[0] = 39850; out_hdr10_metadata.display_primaries_x[1] = 35400; out_hdr10_metadata.display_primaries_y[1] = 14600; out_hdr10_metadata.display_primaries_x[2] = 6550; out_hdr10_metadata.display_primaries_y[2] = 2300; out_hdr10_metadata.white_point_x = 15635; out_hdr10_metadata.white_point_y = 16450; break; case VA_TONE_MAPPING_HDR_TO_SDR: out_hdr10_metadata.display_primaries_x[0] = 15000; out_hdr10_metadata.display_primaries_y[0] = 30000; out_hdr10_metadata.display_primaries_x[1] = 32000; out_hdr10_metadata.display_primaries_y[1] = 16500; out_hdr10_metadata.display_primaries_x[2] = 7500; out_hdr10_metadata.display_primaries_y[2] = 3000; out_hdr10_metadata.white_point_x = 15635; out_hdr10_metadata.white_point_y = 16450; break; default: break; } out_metadata.metadata_type = VAProcHighDynamicRangeMetadataHDR10; out_metadata.metadata = &out_hdr10_metadata; out_metadata.metadata_size = sizeof(VAHdrMetaDataHDR10); return va_status; } static VAStatus video_frame_process(VASurfaceID in_surface_id, VASurfaceID out_surface_id) { VAStatus va_status; VAProcPipelineParameterBuffer pipeline_param = {}; VARectangle surface_region = {}, output_region = {}; VABufferID pipeline_param_buf_id = VA_INVALID_ID; VABufferID filter_param_buf_id = VA_INVALID_ID; VAHdrMetaData out_metadata = {}; /*Query Filter's Caps: The return value will be HDR10 and H2S, H2H, H2E. */ VAProcFilterCapHighDynamicRange hdrtm_caps[VAProcHighDynamicRangeMetadataTypeCount]; uint32_t num_hdrtm_caps = VAProcHighDynamicRangeMetadataTypeCount; memset(&hdrtm_caps, 0, sizeof(VAProcFilterCapHighDynamicRange)*num_hdrtm_caps); va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id, VAProcFilterHighDynamicRangeToneMapping, (void *)hdrtm_caps, &num_hdrtm_caps); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilterCaps"); printf("vaQueryVideoProcFilterCaps num_hdrtm_caps %d\n", num_hdrtm_caps); for (int i = 0; i < num_hdrtm_caps; ++i) { printf("vaQueryVideoProcFilterCaps hdrtm_caps[%d]: metadata type %d, flag %d\n", i, hdrtm_caps[i].metadata_type, hdrtm_caps[i].caps_flag); } hdrtm_filter_init(&filter_param_buf_id, g_tm_type); VAHdrMetaDataHDR10 out_hdr10_metadata = {}; hdrtm_metadata_init(out_metadata, g_tm_type, out_hdr10_metadata); /* Fill pipeline buffer */ surface_region.x = 0; surface_region.y = 0; surface_region.width = g_in_pic_width; surface_region.height = g_in_pic_height; output_region.x = 0; output_region.y = 0; output_region.width = g_out_pic_width; output_region.height = g_out_pic_height; memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = in_surface_id; pipeline_param.surface_region = &surface_region; pipeline_param.output_region = &output_region; pipeline_param.filter_flags = 0; pipeline_param.filters = &filter_param_buf_id; pipeline_param.num_filters = 1; pipeline_param.surface_color_standard = VAProcColorStandardExplicit; pipeline_param.input_color_properties.colour_primaries = g_in_colour_primaries; pipeline_param.input_color_properties.transfer_characteristics = g_in_transfer_characteristic; pipeline_param.output_color_standard = VAProcColorStandardExplicit; pipeline_param.output_color_properties.colour_primaries = g_out_colour_primaries; pipeline_param.output_color_properties.transfer_characteristics = g_out_transfer_characteristic; pipeline_param.output_hdr_metadata = &out_metadata; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (filter_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, filter_param_buf_id); if (pipeline_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, pipeline_param_buf_id); return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; uint32_t i; int32_t j; /* VA driver initialization */ va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Render target surface format check */ VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; va_status = vaGetConfigAttributes(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); if (!(attrib.value & g_out_format)) { printf("RT format %d is not supported by VPP !\n", g_out_format); //assert(0); } /* Create surface/config/context for VPP pipeline */ va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height, g_in_fourcc, g_in_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); va_status = vaCreateContext(va_dpy, config_id, g_out_pic_width, g_out_pic_height, VA_PROGRESSIVE, &g_out_surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); uint32_t supported_filter_num = VAProcFilterCount; VAProcFilterType supported_filter_types[VAProcFilterCount]; va_status = vaQueryVideoProcFilters(va_dpy, context_id, supported_filter_types, &supported_filter_num); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilters"); for (i = 0; i < supported_filter_num; i++) { if (supported_filter_types[i] == VAProcFilterHighDynamicRangeToneMapping) break; } if (i == supported_filter_num) { printf("VPP filter type VAProcFilterHighDynamicRangeToneMapping is not supported by driver !\n"); } return va_status; } static void vpp_context_destroy() { /* Release resource */ vaDestroySurfaces(va_dpy, &g_in_surface_id, 1); vaDestroySurfaces(va_dpy, &g_out_surface_id, 1); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); vaTerminate(va_dpy); va_close_display(va_dpy); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); } else if (!strcmp(str, "I420")) { tfourcc = VA_FOURCC('I', '4', '2', '0'); } else if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); } else if (!strcmp(str, "YUY2") || !strcmp(str, "YUYV")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); } else if (!strcmp(str, "UYVY")) { tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y'); } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC('P', '0', '1', '0'); } else if (!strcmp(str, "I010")) { tfourcc = VA_FOURCC('I', '0', '1', '0'); } else if (!strcmp(str, "RGBA")) { tformat = VA_RT_FORMAT_RGB32; tfourcc = VA_FOURCC_RGBA; printf("parse_fourcc_and_format: RGBA format 0x%8x, fourcc 0x%8x\n", tformat, tfourcc); } else if (!strcmp(str, "RGBX")) { tfourcc = VA_FOURCC_RGBX; } else if (!strcmp(str, "BGRA")) { tfourcc = VA_FOURCC_BGRA; } else if (!strcmp(str, "BGRX")) { tfourcc = VA_FOURCC_BGRX; } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC_P010; printf("parse_fourcc_and_format: P010\n"); } else if (!strcmp(str, "A2RGB10")) { //A2R10G10B10 tfourcc = VA_FOURCC_A2R10G10B10; printf("parse_fourcc_and_format: ARGB10 format 0x%8x, fourcc 0x%8x\n", tformat, tfourcc); } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "YV12, I420, NV12, YUY2(YUYV), UYVY, I010, RGBA, RGBX, BGRA or BGRX"); assert(0); } printf("parse_fourcc_and_format: format 0x%x, fourcc 0x%x\n", tformat, tfourcc); if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } bool read_frame_to_surface(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage va_image; int i = 0; int frame_size = 0, y_size = 0; unsigned char *y_src = NULL, *u_src = NULL; unsigned char *y_dst = NULL, *u_dst = NULL; int bytes_per_pixel = 2; size_t n_items; void *out_buf = NULL; unsigned char *src_buffer = NULL; if (fp == NULL) return false; // This function blocks until all pending operations on the surface have been completed. va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &va_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, va_image.buf, &out_buf); CHECK_VASTATUS(va_status, "vaMapBuffer"); printf("read_frame_to_surface: va_image.width %d, va_image.height %d, va_image.pitches[0]: %d, va_image.pitches[1] %d, va_image.pitches[2] %d\n", va_image.width, va_image.height, va_image.pitches[0], va_image.pitches[1], va_image.pitches[1]); switch (va_image.format.fourcc) { case VA_FOURCC_P010: frame_size = va_image.width * va_image.height * bytes_per_pixel * 3 / 2; y_size = va_image.width * va_image.height * bytes_per_pixel; src_buffer = (unsigned char*)malloc(frame_size); assert(src_buffer); n_items = fread(src_buffer, 1, frame_size, fp); if (n_items != frame_size) { printf("read file failed on VA_FOURCC_P010\n"); } y_src = src_buffer; u_src = src_buffer + y_size; // UV offset for P010 y_dst = (unsigned char*)out_buf + va_image.offsets[0]; // Y plane u_dst = (unsigned char*)out_buf + va_image.offsets[1]; // U offset for P010 for (i = 0; i < va_image.height; i++) { memcpy(y_dst, y_src, va_image.width * 2); y_dst += va_image.pitches[0]; y_src += va_image.width * 2; } for (i = 0; i < va_image.height >> 1; i++) { memcpy(u_dst, u_src, va_image.width * 2); u_dst += va_image.pitches[1]; u_src += va_image.width * 2; } printf("read_frame_to_surface: P010 \n"); break; case VA_RT_FORMAT_RGB32_10BPP: case VA_FOURCC_RGBA: case VA_FOURCC_A2R10G10B10: case VA_FOURCC_A2B10G10R10: frame_size = va_image.width * va_image.height * 4; src_buffer = (unsigned char*)malloc(frame_size); assert(src_buffer); n_items = fread(src_buffer, 1, frame_size, fp); if (n_items != frame_size) { printf("read file failed on VA_RT_FORMAT_RGB32_10BPP or VA_FOURCC_RGBA \n"); } y_src = src_buffer; y_dst = (unsigned char*)out_buf + va_image.offsets[0]; for (i = 0; i < va_image.height; i++) { memcpy(y_dst, y_src, va_image.width * 4); y_dst += va_image.pitches[0]; y_src += va_image.width * 4; } printf("read_frame_to_surface: RGBA or A2RGB10 \n"); break; default: // should not come here printf("VA_STATUS_ERROR_INVALID_IMAGE_FORMAT \n"); va_status = VA_STATUS_ERROR_INVALID_IMAGE_FORMAT; break; } vaUnmapBuffer(va_dpy, va_image.buf); vaDestroyImage(va_dpy, va_image.image_id); if (src_buffer) { free(src_buffer); src_buffer = NULL; } if (va_status != VA_STATUS_SUCCESS) return false; else return true; } bool write_surface_to_frame(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage va_image; int i = 0; int frame_size = 0, y_size = 0; unsigned char *y_src = NULL, *u_src = NULL; unsigned char *y_dst = NULL, *u_dst = NULL; int bytes_per_pixel = 2; void *in_buf = NULL; unsigned char *dst_buffer = NULL; if (fp == NULL) return false; // This function blocks until all pending operations on the surface have been completed. va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &va_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, va_image.buf, &in_buf); CHECK_VASTATUS(va_status, "vaMapBuffer"); printf("write_surface_to_frame: va_image.width %d, va_image.height %d, va_image.pitches[0]: %d, va_image.pitches[1] %d, va_image.pitches[2] %d\n", va_image.width, va_image.height, va_image.pitches[0], va_image.pitches[1], va_image.pitches[1]); switch (va_image.format.fourcc) { case VA_FOURCC_P010: case VA_FOURCC_NV12: bytes_per_pixel = (va_image.format.fourcc == VA_FOURCC_P010) ? 2 : 1; frame_size = va_image.width * va_image.height * bytes_per_pixel * 3 / 2; dst_buffer = (unsigned char*)malloc(frame_size); assert(dst_buffer); y_size = va_image.width * va_image.height * bytes_per_pixel; y_dst = dst_buffer; u_dst = dst_buffer + y_size; // UV offset for P010 y_src = (unsigned char*)in_buf + va_image.offsets[0]; u_src = (unsigned char*)in_buf + va_image.offsets[1]; // U offset for P010 for (i = 0; i < va_image.height; i++) { memcpy(y_dst, y_src, static_cast(va_image.width * bytes_per_pixel)); y_dst += va_image.width * bytes_per_pixel; y_src += va_image.pitches[0]; } for (i = 0; i < va_image.height >> 1; i++) { memcpy(u_dst, u_src, static_cast(va_image.width * bytes_per_pixel)); u_dst += va_image.width * bytes_per_pixel; u_src += va_image.pitches[1]; } printf("read_frame_to_surface: P010 \n"); break; case VA_FOURCC_RGBA: case VA_FOURCC_ABGR: case VA_FOURCC_A2B10G10R10: case VA_FOURCC_A2R10G10B10: frame_size = va_image.width * va_image.height * 4; dst_buffer = (unsigned char*)malloc(frame_size); assert(dst_buffer); y_dst = dst_buffer; y_src = (unsigned char*)in_buf + va_image.offsets[0]; for (i = 0; i < va_image.height; i++) { memcpy(y_dst, y_src, va_image.width * 4); y_dst += va_image.pitches[0]; y_src += va_image.width * 4; } printf("read_frame_to_surface: RGBA and A2R10G10B10 \n"); break; default: // should not come here printf("VA_STATUS_ERROR_INVALID_IMAGE_FORMAT %x\n", va_image.format.fourcc); va_status = VA_STATUS_ERROR_INVALID_IMAGE_FORMAT; break; } assert(dst_buffer); fwrite(dst_buffer, 1, frame_size, fp); if (dst_buffer) { free(dst_buffer); dst_buffer = NULL; } vaUnmapBuffer(va_dpy, va_image.buf); vaDestroyImage(va_dpy, va_image.image_id); if (va_status != VA_STATUS_SUCCESS) return false; else return true; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; /* Read src frame file information */ read_value_string(g_config_file_fd, "SRC_FILE_NAME", g_src_file_name); read_value_uint32(g_config_file_fd, "SRC_FRAME_WIDTH", &g_in_pic_width); read_value_uint32(g_config_file_fd, "SRC_FRAME_HEIGHT", &g_in_pic_height); read_value_string(g_config_file_fd, "SRC_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format); printf("Input file: %s, width: %d, height: %d, fourcc 0x%x, format 0x%x\n", g_src_file_name, g_in_pic_width, g_in_pic_height, g_in_fourcc, g_in_format); /* Read dst frame file information */ read_value_string(g_config_file_fd, "DST_FILE_NAME", g_dst_file_name); read_value_uint32(g_config_file_fd, "DST_FRAME_WIDTH", &g_out_pic_width); read_value_uint32(g_config_file_fd, "DST_FRAME_HEIGHT", &g_out_pic_height); read_value_string(g_config_file_fd, "DST_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format); printf("Output file: %s, width: %d, height: %d, fourcc 0x%x, format 0x%x\n", g_dst_file_name, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format); read_value_string(g_config_file_fd, "SRC_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_src_file_fourcc, NULL); read_value_string(g_config_file_fd, "DST_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL); read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); read_value_uint32(g_config_file_fd, "SRC_MAX_DISPLAY_MASTERING_LUMINANCE", &g_in_max_display_luminance); read_value_uint32(g_config_file_fd, "SRC_MIN_DISPLAY_MASTERING_LUMINANCE", &g_in_min_display_luminance); read_value_uint32(g_config_file_fd, "SRC_MAX_CONTENT_LIGHT_LEVEL", &g_in_max_content_luminance); read_value_uint32(g_config_file_fd, "SRC_MAX_PICTURE_AVERAGE_LIGHT_LEVEL", &g_in_pic_average_luminance); read_value_uint32(g_config_file_fd, "DST_MAX_DISPLAY_MASTERING_LUMINANCE", &g_out_max_display_luminance); read_value_uint32(g_config_file_fd, "DST_MIN_DISPLAY_MASTERING_LUMINANCE", &g_out_min_display_luminance); read_value_uint32(g_config_file_fd, "DST_MAX_CONTENT_LIGHT_LEVEL", &g_out_max_content_luminance); read_value_uint32(g_config_file_fd, "DST_MAX_PICTURE_AVERAGE_LIGHT_LEVEL", &g_out_pic_average_luminance); read_value_uint32(g_config_file_fd, "SRC_FRAME_COLOUR_PRIMARIES", &g_in_colour_primaries); read_value_uint32(g_config_file_fd, "SRC_FRAME_TRANSFER_CHARACTERISTICS", &g_in_transfer_characteristic); read_value_uint32(g_config_file_fd, "DST_FRAME_COLOUR_PRIMARIES", &g_out_colour_primaries); read_value_uint32(g_config_file_fd, "DST_FRAME_TRANSFER_CHARACTERISTICS", &g_out_transfer_characteristic); read_value_uint32(g_config_file_fd, "TM_TYPE", &g_tm_type); return 0; } static void print_help() { printf("The app is used to test the hdr tm feature.\n"); printf("Cmd Usage: ./process_hdr_tm.cfg process_hdr_tm.cfg.cfg\n"); printf("The configure file process_hdr_tm.cfg is used to configure the para.\n"); printf("You can refer process_hdr_tm.cfg.template for each para meaning and create the configure file.\n"); } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { print_help(); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ if (NULL == (g_src_file_fd = fopen(g_src_file_name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src_file_name, g_config_file_name); assert(0); } if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst_file_name, g_config_file_name); assert(0); } printf("\nStart to process, ...\n"); struct timespec Pre_time; struct timespec Cur_time; unsigned int duration = 0; clock_gettime(CLOCK_MONOTONIC, &Pre_time); for (i = 0; i < g_frame_count; i ++) { read_frame_to_surface(g_src_file_fd, g_in_surface_id); video_frame_process(g_in_surface_id, g_out_surface_id); write_surface_to_frame(g_dst_file_fd, g_out_surface_id); } clock_gettime(CLOCK_MONOTONIC, &Cur_time); duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000; if (Cur_time.tv_nsec > Pre_time.tv_nsec) { duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000; } else { duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000; } printf("Finish processing, performance: \n"); printf("%d frames processed in: %d ms, ave time = %d ms\n", g_frame_count, duration, duration / g_frame_count); if (g_src_file_fd) { fclose(g_src_file_fd); g_src_file_fd = NULL; } if (g_dst_file_fd) { fclose(g_dst_file_fd); g_dst_file_fd = NULL; } if (g_config_file_fd) { fclose(g_config_file_fd); g_config_file_fd = NULL; } vpp_context_destroy(); return 0; } ================================================ FILE: videoprocess/vppscaling_csc.cpp ================================================ /* * Copyright (c) 2009-2018, Intel Corporation * * 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. */ /* * Video process test case based on LibVA. * This test covers scaling and several surface format conversion. * Usage: ./vppscaling_csc process_scaling_csc.cfg */ #include #include #include #include #include #include #include #include #include "va_display.h" #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } static VADisplay va_dpy = NULL; static VAContextID context_id = 0; static VAConfigID config_id = 0; static VASurfaceID g_in_surface_id = VA_INVALID_ID; static VASurfaceID g_out_surface_id = VA_INVALID_ID; static FILE* g_config_file_fd = NULL; static FILE* g_src_file_fd = NULL; static FILE* g_dst_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static char g_src_file_name[MAX_LEN]; static char g_dst_file_name[MAX_LEN]; static uint32_t g_in_pic_width = 352; static uint32_t g_in_pic_height = 288; static uint32_t g_out_pic_width = 352; static uint32_t g_out_pic_height = 288; static uint32_t g_in_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_in_format = VA_RT_FORMAT_YUV420; static uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_out_format = VA_RT_FORMAT_YUV420; static uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0'); static uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2'); static uint32_t g_frame_count = 0; static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field = NULL; char* str = NULL; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static VAStatus create_surface(VASurfaceID * p_surface_id, uint32_t width, uint32_t height, uint32_t fourCC, uint32_t format) { VAStatus va_status; VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = fourCC; va_status = vaCreateSurfaces(va_dpy, format, width, height, p_surface_id, 1, &surface_attrib, 1); return va_status; } /* Load yuv frame to NV12/YV12/I420 surface*/ static VAStatus upload_yuv_frame_to_yuv_surface(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; void *surface_p = NULL; uint32_t frame_size, row, col; size_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; if (g_src_file_fourcc == VA_FOURCC_I420) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_YV12) { v_src = newImageBuffer + surface_image.width * surface_image.height; u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_NV12) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = u_src; } else { printf("Not supported YUV fourcc for input file !!!\n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; } /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_src += surface_image.width / 2; u_src += surface_image.width / 2; } else { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.width; v_src = u_src; } if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst += surface_image.pitches[1]; u_dst += surface_image.pitches[2]; } else { v_dst += surface_image.pitches[2]; u_dst += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_src += (surface_image.width / 2); v_src += (surface_image.width / 2); } else { memcpy(u_dst, u_src, surface_image.width); u_src += surface_image.width; v_src = u_src; } u_dst += surface_image.pitches[1]; } } } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 && g_src_file_fourcc == VA_FOURCC_YUY2) || (surface_image.format.fourcc == VA_FOURCC_UYVY && g_src_file_fourcc == VA_FOURCC_UYVY)) { frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } } else if ((surface_image.format.fourcc == VA_FOURCC_P010 && g_src_file_fourcc == VA_FOURCC_P010) || (surface_image.format.fourcc == VA_FOURCC_I010 && g_src_file_fourcc == VA_FOURCC_I010)) { frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_I010) { assert(g_src_file_fourcc == VA_FOURCC_I010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_src += surface_image.width; v_src += surface_image.width; u_dst += surface_image.pitches[1]; v_dst += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { assert(g_src_file_fourcc == VA_FOURCC_P010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = u_src; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_src += surface_image.width * 2; v_src = u_src; u_dst += surface_image.pitches[1]; v_dst = u_dst; } } } else if ((surface_image.format.fourcc == VA_FOURCC_RGBA && g_src_file_fourcc == VA_FOURCC_RGBA) || (surface_image.format.fourcc == VA_FOURCC_RGBX && g_src_file_fourcc == VA_FOURCC_RGBX) || (surface_image.format.fourcc == VA_FOURCC_BGRA && g_src_file_fourcc == VA_FOURCC_BGRA) || (surface_image.format.fourcc == VA_FOURCC_BGRX && g_src_file_fourcc == VA_FOURCC_BGRX)) { frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.width * 4; y_dst += surface_image.pitches[0]; } } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } /* Store NV12/YV12/I420 surface to yv12 file */ static VAStatus store_yuv_surface_to_yv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YV12 file or one bmp file*/ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; v_dst = newImageBuffer + y_size; u_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_i420_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one i420 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_nv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one nv12 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = v_dst = newImageBuffer + y_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.width; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[1]; } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_packed_yuv_surface_to_packed_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YUY2 or UYVY file */ if (surface_image.format.fourcc == VA_FOURCC_YUY2 || surface_image.format.fourcc == VA_FOURCC_UYVY) { uint32_t frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); memset(newImageBuffer, 0, frame_size); /* stored as YUY2 or UYVY format */ y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Plane 0 copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one 10bit file */ uint32_t y_size = surface_image.width * surface_image.height * 2; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } if (surface_image.format.fourcc == VA_FOURCC_I010) { u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_dst += surface_image.width; v_dst += surface_image.width; u_src += surface_image.pitches[1]; v_src += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { u_dst = newImageBuffer + y_size; v_dst = u_dst; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_dst += surface_image.width * 2; u_src += surface_image.pitches[1]; } } else { printf("Not supported YUV surface fourcc !!! \n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t frame_size, row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 4; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_file(FILE *fp, VASurfaceID surface_id) { if (g_out_fourcc == VA_FOURCC_YV12 || g_out_fourcc == VA_FOURCC_I420 || g_out_fourcc == VA_FOURCC_NV12) { if (g_dst_file_fourcc == VA_FOURCC_YV12) return store_yuv_surface_to_yv12_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_I420) return store_yuv_surface_to_i420_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_NV12) return store_yuv_surface_to_nv12_file(fp, surface_id); else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } else if ((g_out_fourcc == VA_FOURCC_YUY2 && g_dst_file_fourcc == VA_FOURCC_YUY2) || (g_out_fourcc == VA_FOURCC_UYVY && g_dst_file_fourcc == VA_FOURCC_UYVY)) { return store_packed_yuv_surface_to_packed_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_I010 && g_dst_file_fourcc == VA_FOURCC_I010) || (g_out_fourcc == VA_FOURCC_P010 && g_dst_file_fourcc == VA_FOURCC_P010)) { return store_yuv_surface_to_10bit_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_RGBA) || (g_out_fourcc == VA_FOURCC_RGBX && g_dst_file_fourcc == VA_FOURCC_RGBX) || (g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_BGRA) || (g_out_fourcc == VA_FOURCC_BGRX && g_dst_file_fourcc == VA_FOURCC_BGRX)) { return store_rgb_surface_to_rgb_file(fp, surface_id); } else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } static VAStatus video_frame_process(VASurfaceID in_surface_id, VASurfaceID out_surface_id) { VAStatus va_status; VAProcPipelineParameterBuffer pipeline_param; VARectangle surface_region, output_region; VABufferID pipeline_param_buf_id = VA_INVALID_ID; /* Fill pipeline buffer */ surface_region.x = 0; surface_region.y = 0; surface_region.width = g_in_pic_width; surface_region.height = g_in_pic_height; output_region.x = 0; output_region.y = 0; output_region.width = g_out_pic_width; output_region.height = g_out_pic_height; memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = in_surface_id; pipeline_param.surface_region = &surface_region; pipeline_param.output_region = &output_region; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (pipeline_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, pipeline_param_buf_id); return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; int32_t j; /* VA driver initialization */ va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Render target surface format check */ VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; va_status = vaGetConfigAttributes(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); if (!(attrib.value & g_out_format)) { printf("RT format %d is not supported by VPP !\n", g_out_format); assert(0); } /* Create surface/config/context for VPP pipeline */ va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height, g_in_fourcc, g_in_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); va_status = vaCreateContext(va_dpy, config_id, g_out_pic_width, g_out_pic_height, VA_PROGRESSIVE, &g_out_surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); return va_status; } static void vpp_context_destroy() { /* Release resource */ vaDestroySurfaces(va_dpy, &g_in_surface_id, 1); vaDestroySurfaces(va_dpy, &g_out_surface_id, 1); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); vaTerminate(va_dpy); va_close_display(va_dpy); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); } else if (!strcmp(str, "I420")) { tfourcc = VA_FOURCC('I', '4', '2', '0'); } else if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); } else if (!strcmp(str, "YUY2") || !strcmp(str, "YUYV")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); } else if (!strcmp(str, "UYVY")) { tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y'); } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC('P', '0', '1', '0'); } else if (!strcmp(str, "I010")) { tfourcc = VA_FOURCC('I', '0', '1', '0'); } else if (!strcmp(str, "RGBA")) { tfourcc = VA_FOURCC_RGBA; } else if (!strcmp(str, "RGBX")) { tfourcc = VA_FOURCC_RGBX; } else if (!strcmp(str, "BGRA")) { tfourcc = VA_FOURCC_BGRA; } else if (!strcmp(str, "BGRX")) { tfourcc = VA_FOURCC_BGRX; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX"); assert(0); } if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; /* Read src frame file information */ read_value_string(g_config_file_fd, "SRC_FILE_NAME", g_src_file_name); read_value_uint32(g_config_file_fd, "SRC_FRAME_WIDTH", &g_in_pic_width); read_value_uint32(g_config_file_fd, "SRC_FRAME_HEIGHT", &g_in_pic_height); read_value_string(g_config_file_fd, "SRC_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format); /* Read dst frame file information */ read_value_string(g_config_file_fd, "DST_FILE_NAME", g_dst_file_name); read_value_uint32(g_config_file_fd, "DST_FRAME_WIDTH", &g_out_pic_width); read_value_uint32(g_config_file_fd, "DST_FRAME_HEIGHT", &g_out_pic_height); read_value_string(g_config_file_fd, "DST_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format); read_value_string(g_config_file_fd, "SRC_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_src_file_fourcc, NULL); read_value_string(g_config_file_fd, "DST_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL); read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); if (g_in_pic_width != g_out_pic_width || g_in_pic_height != g_out_pic_height) printf("Scaling will be done : from %4d x %4d to %4d x %4d \n", g_in_pic_width, g_in_pic_height, g_out_pic_width, g_out_pic_height); if (g_in_fourcc != g_out_fourcc) printf("Format conversion will be done: from %d to %d \n", g_in_fourcc, g_out_fourcc); return 0; } static void print_help() { printf("The app is used to test the scaling and csc feature.\n"); printf("Cmd Usage: ./vppscaling_csc process_scaling_csc.cfg\n"); printf("The configure file process_scaling_csc.cfg is used to configure the para.\n"); printf("You can refer process_scaling_csc.cfg.template for each para meaning and create the configure file.\n"); } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { print_help(); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ if (NULL == (g_src_file_fd = fopen(g_src_file_name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src_file_name, g_config_file_name); assert(0); } if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst_file_name, g_config_file_name); assert(0); } printf("\nStart to process, ...\n"); struct timespec Pre_time; struct timespec Cur_time; unsigned int duration = 0; clock_gettime(CLOCK_MONOTONIC, &Pre_time); for (i = 0; i < g_frame_count; i ++) { upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id); video_frame_process(g_in_surface_id, g_out_surface_id); store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id); } clock_gettime(CLOCK_MONOTONIC, &Cur_time); duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000; if (Cur_time.tv_nsec > Pre_time.tv_nsec) { duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000; } else { duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000; } printf("Finish processing, performance: \n"); printf("%d frames processed in: %d ms, ave time = %d ms\n", g_frame_count, duration, duration / g_frame_count); if (g_src_file_fd) fclose(g_src_file_fd); if (g_dst_file_fd) fclose(g_dst_file_fd); if (g_config_file_fd) fclose(g_config_file_fd); vpp_context_destroy(); return 0; } ================================================ FILE: videoprocess/vppscaling_n_out_usrptr.cpp ================================================ /* * Copyright (c) 2009-2018, Intel Corporation * * 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. */ /* * Video process test case based on LibVA. * This test covers 1:N(N>=2) output for scaling and several surface format conversion. * also support 2nd scale, regarding the 1st scale output as input for 2nd scale * also support UserPtr 16 alignment as NV12/YV12/YUY2 input * support none (0, 0) top/left in render target as RGB/YV12 output * support none (0, 0) top/left input crop * Usage: ./vppscaling_n_out_usrptr process_scaling_n_out_usrptr.cfg */ #include #include #include #include #include #include #include #include #include "va_display.h" #if 0 #include #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } #define VPP_FREE(p) \ if(p != NULL){ \ free(p); p = NULL; \ } typedef struct { char file_name[100]; FILE* file_fd; uint32_t pic_width; uint32_t pic_height; uint32_t fourcc; uint32_t rtformat; uint32_t memtype; uint32_t align_mode; void *pBuf; uint8_t *pUserBase; uintptr_t ptrb; } VPP_ImageInfo; #if 0 static Display *x11_display = NULL; #endif static VADisplay va_dpy = NULL; static VAContextID context_id = 0; static VAConfigID config_id = 0; static VASurfaceID g_in_surface_id = VA_INVALID_ID; static VASurfaceID *g_out_surface_ids = NULL; static FILE* g_config_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static VPP_ImageInfo g_src_info; static VPP_ImageInfo *g_dst_info = NULL; static uint32_t g_frame_count = 0; static uint32_t g_dst_count = 1; static uint32_t g_scale_again = 0; static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field = NULL; char* str = NULL; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static int8_t read_value_int16(FILE* fp, const char* field_name, int16_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (int16_t)atoi(str); return 0; } static int8_t read_value_uint16(FILE* fp, const char* field_name, uint16_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint16_t)atoi(str); return 0; } static VAStatus create_surface(VPP_ImageInfo &img_info, VASurfaceID * p_surface_id) { VAStatus va_status = VA_STATUS_SUCCESS; if (img_info.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_VA) { VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = img_info.fourcc; va_status = vaCreateSurfaces(va_dpy, img_info.rtformat, img_info.pic_width, img_info.pic_height, p_surface_id, 1, &surface_attrib, 1); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); } else if (img_info.memtype == VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR) { VASurfaceAttrib surfaceAttrib[3]; VASurfaceAttribExternalBuffers extBuffer; uint32_t base_addr_align = 0x1000; //VAAppSurfaceResInfo surfaceinfo; //va_status = vaQuerySurfaceAllocation(va_dpy, format, fourCC,width, height, VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR, &surfaceinfo); uint32_t size = 0; surfaceAttrib[0].flags = VA_SURFACE_ATTRIB_SETTABLE; surfaceAttrib[0].type = VASurfaceAttribPixelFormat; surfaceAttrib[0].value.type = VAGenericValueTypeInteger; surfaceAttrib[0].value.value.i = img_info.fourcc; surfaceAttrib[1].flags = VA_SURFACE_ATTRIB_SETTABLE; surfaceAttrib[1].type = VASurfaceAttribMemoryType; surfaceAttrib[1].value.type = VAGenericValueTypeInteger; surfaceAttrib[1].value.value.i = VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR; surfaceAttrib[2].flags = VA_SURFACE_ATTRIB_SETTABLE; surfaceAttrib[2].type = VASurfaceAttribExternalBufferDescriptor; surfaceAttrib[2].value.type = VAGenericValueTypePointer; surfaceAttrib[2].value.value.p = (void *)&extBuffer; memset(&extBuffer, 0, sizeof(extBuffer)); uint32_t pitch_align = img_info.align_mode; switch (img_info.fourcc) { case VA_FOURCC_NV12: extBuffer.pitches[0] = ((img_info.pic_width + pitch_align - 1) / pitch_align) * pitch_align; size = (extBuffer.pitches[0] * img_info.pic_height) * 3 / 2; size = (size + base_addr_align - 1) / base_addr_align * base_addr_align; extBuffer.offsets[0] = 0; extBuffer.offsets[1] = extBuffer.pitches[0] * img_info.pic_height; extBuffer.pitches[1] = extBuffer.pitches[0]; extBuffer.num_planes = 2; break; case VA_FOURCC_YUY2: extBuffer.pitches[0] = ((img_info.pic_width + pitch_align - 1) / pitch_align) * pitch_align; size = (extBuffer.pitches[0] * (img_info.pic_height + 2)) * 2; size = (size + base_addr_align - 1) / base_addr_align * base_addr_align; extBuffer.offsets[0] = 0; extBuffer.pitches[0] = extBuffer.pitches[0] * 2; extBuffer.num_planes = 1; break; case VA_FOURCC_YV12: { int y_align = 32; int uv_align = 16; extBuffer.pitches[0] = ((img_info.pic_width + y_align - 1) / y_align) * y_align; extBuffer.pitches[1] = ((img_info.pic_width / 2 + uv_align - 1) / uv_align) * uv_align; extBuffer.pitches[2] = extBuffer.pitches[1]; size = extBuffer.pitches[0] * img_info.pic_height + extBuffer.pitches[1] * img_info.pic_height; size = (size + base_addr_align - 1) / base_addr_align * base_addr_align; extBuffer.offsets[0] = 0; extBuffer.offsets[1] = extBuffer.pitches[0] * img_info.pic_height; extBuffer.offsets[2] = extBuffer.offsets[1] + extBuffer.pitches[1] * img_info.pic_height / 2; extBuffer.num_planes = 3; break; } case VA_FOURCC_ARGB: extBuffer.pitches[0] = ((img_info.pic_width + pitch_align - 1) / pitch_align) * pitch_align; size = (extBuffer.pitches[0] * (img_info.pic_height + 2)) * 4; size = (size + base_addr_align - 1) / base_addr_align * base_addr_align; extBuffer.offsets[0] = 0; extBuffer.pitches[0] = extBuffer.pitches[0] * 4; extBuffer.num_planes = 1; break; default: break; } img_info.pBuf = malloc(size + base_addr_align); img_info.pUserBase = (uint8_t*)((((uint64_t)(img_info.pBuf) + base_addr_align - 1) / base_addr_align) * base_addr_align); extBuffer.pixel_format = img_info.fourcc; extBuffer.width = img_info.pic_width; extBuffer.height = img_info.pic_height; extBuffer.data_size = size; extBuffer.num_buffers = 1; extBuffer.buffers = &(img_info.ptrb); extBuffer.buffers[0] = (uintptr_t)(img_info.pUserBase); va_status = vaCreateSurfaces(va_dpy, img_info.rtformat, img_info.pic_width, img_info.pic_height, p_surface_id, 1, surfaceAttrib, 3); CHECK_VASTATUS(va_status, "vaCreateSurfaces"); } return va_status; } /* Load yuv frame to NV12/YUY2/YV12/ARGB surface*/ static VAStatus upload_yuv_frame_to_yuv_surface(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; void *surface_p = NULL; uint32_t frame_size, row; size_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (surface_image.format.fourcc == VA_FOURCC_NV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; u_src = newImageBuffer + surface_image.width * surface_image.height; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } /* UV plane */ for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_src += surface_image.width; u_dst += surface_image.pitches[1]; } } else if (surface_image.format.fourcc == VA_FOURCC_YUY2) { frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } } else if (surface_image.format.fourcc == VA_FOURCC_YV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; v_src = newImageBuffer + surface_image.width * surface_image.height; u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_src += surface_image.width / 2; u_src += surface_image.width / 2; v_dst += surface_image.pitches[1]; u_dst += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_ARGB) { frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.width * 4; y_dst += surface_image.pitches[0]; } } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } va_status = vaUnmapBuffer(va_dpy, surface_image.buf); CHECK_VASTATUS(va_status, "vaUnmapBuffer"); va_status = vaDestroyImage(va_dpy, surface_image.image_id); CHECK_VASTATUS(va_status, "vaDestroyImage"); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_nv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one nv12 file */ uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = newImageBuffer + y_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[1]; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } va_status = vaUnmapBuffer(va_dpy, surface_image.buf); CHECK_VASTATUS(va_status, "vaUnmapBuffer"); va_status = vaDestroyImage(va_dpy, surface_image.image_id); CHECK_VASTATUS(va_status, "vaDestroyImage"); return VA_STATUS_SUCCESS; } static VAStatus store_packed_yuv_surface_to_yuy2_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YUY2 file */ uint32_t frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); memset(newImageBuffer, 0, frame_size); /* stored as YUY2 or UYVY format */ y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Plane 0 copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } va_status = vaUnmapBuffer(va_dpy, surface_image.buf); CHECK_VASTATUS(va_status, "vaUnmapBuffer"); va_status = vaDestroyImage(va_dpy, surface_image.image_id); CHECK_VASTATUS(va_status, "vaDestroyImage"); return VA_STATUS_SUCCESS; } /* Store YV12 surface to yv12 file */ static VAStatus store_yuv_surface_to_yv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src, *u_src, *v_src; unsigned char *y_dst, *u_dst, *v_dst; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; v_dst = newImageBuffer + y_size; u_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src; unsigned char *y_dst; uint32_t frame_size, row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 4; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_file(FILE *fp, VASurfaceID surface_id, uint32_t out_fourcc) { if (out_fourcc == VA_FOURCC_NV12) { return store_yuv_surface_to_nv12_file(fp, surface_id); } else if (out_fourcc == VA_FOURCC_YUY2) { return store_packed_yuv_surface_to_yuy2_file(fp, surface_id); } else if (out_fourcc == VA_FOURCC_YV12) { return store_yuv_surface_to_yv12_file(fp, surface_id); } else if (out_fourcc == VA_FOURCC_ARGB) { return store_rgb_surface_to_rgb_file(fp, surface_id); } else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } static VAStatus video_frame_process(VASurfaceID in_surface_id, VASurfaceID *out_surface_ids) { VAStatus va_status; VAProcPipelineParameterBuffer pipeline_param; VARectangle surface_region, output_region; VABufferID pipeline_param_buf_id = VA_INVALID_ID; /* Fill pipeline buffer */ memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = in_surface_id; if (g_dst_count > 1 && g_scale_again == 0) { pipeline_param.additional_outputs = &out_surface_ids[1]; pipeline_param.num_additional_outputs = g_dst_count - 1; } uint32_t input_crop = 0; read_value_uint32(g_config_file_fd, "SRC_SURFACE_CROP", &input_crop); if (input_crop == 0) { surface_region.x = 0; surface_region.y = 0; surface_region.width = g_src_info.pic_width; surface_region.height = g_src_info.pic_height; } else { //do the input crop read_value_int16(g_config_file_fd, "SRC_CROP_LEFT_X", &surface_region.x); read_value_int16(g_config_file_fd, "SRC_CROP_TOP_Y", &surface_region.y); read_value_uint16(g_config_file_fd, "SRC_CROP_WIDTH", &surface_region.width); read_value_uint16(g_config_file_fd, "SRC_CROP_HEIGHT", &surface_region.height); } uint32_t output_crop = 0; read_value_uint32(g_config_file_fd, "DST_SURFACE_CROP", &output_crop); if (output_crop == 0) { output_region.x = 0; output_region.y = 0; output_region.width = g_dst_info[0].pic_width; output_region.height = g_dst_info[0].pic_height; } else { //do the output crop read_value_int16(g_config_file_fd, "DST_CROP_LEFT_X", &output_region.x); read_value_int16(g_config_file_fd, "DST_CROP_TOP_Y", &output_region.y); read_value_uint16(g_config_file_fd, "DST_CROP_WIDTH", &output_region.width); read_value_uint16(g_config_file_fd, "DST_CROP_HEIGHT", &output_region.height); } pipeline_param.surface_region = &surface_region; pipeline_param.output_region = &output_region; pipeline_param.output_background_color = 0xff000000; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_ids[0]); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (pipeline_param_buf_id != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaDestroyBuffer"); } if (g_scale_again == 1) { printf("begin to scale the 16align out as input\n"); memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = out_surface_ids[0]; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_ids[1]); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (pipeline_param_buf_id != VA_INVALID_ID) { vaDestroyBuffer(va_dpy, pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaDestroyBuffer"); } } return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; int32_t j; /* VA driver initialization */ #if 0 x11_display = XOpenDisplay("intel-CoffeeLake-Client-Platform:2"); if (NULL == x11_display) { printf("Error: Can't connect X server! %s %s(line %d)\n", __FILE__, __func__, __LINE__); return false; } va_dpy = vaGetDisplay(x11_display); #endif va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Create surface/config/context for VPP pipeline */ va_status = create_surface(g_src_info, &g_in_surface_id); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); for (uint32_t i = 0; i < g_dst_count; i++) { va_status = create_surface(g_dst_info[i], &g_out_surface_ids[i]); } CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; attrib.value = VA_RT_FORMAT_YUV420; va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); va_status = vaCreateContext(va_dpy, config_id, g_dst_info[0].pic_width, g_dst_info[0].pic_height, VA_PROGRESSIVE, g_out_surface_ids, g_dst_count, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); return va_status; } static void vpp_context_destroy() { VAStatus va_status; /* Release resource */ va_status = vaDestroySurfaces(va_dpy, &g_in_surface_id, 1); CHECK_VASTATUS(va_status, "vaDestroySurfaces"); VPP_FREE(g_src_info.pBuf); for (uint32_t index = 0; index < g_dst_count; index++) { vaDestroySurfaces(va_dpy, &g_out_surface_ids[index], 1); CHECK_VASTATUS(va_status, "vaDestroySurfaces"); VPP_FREE(g_dst_info[index].pBuf); } VPP_FREE(g_dst_info); VPP_FREE(g_out_surface_ids); vaDestroyContext(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaDestroyContext"); vaDestroyConfig(va_dpy, config_id); CHECK_VASTATUS(va_status, "vaDestroyConfig"); vaTerminate(va_dpy); CHECK_VASTATUS(va_status, "vaTerminate"); #if 0 XCloseDisplay(x11_display); x11_display = NULL; #endif va_close_display(va_dpy); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); } else if (!strcmp(str, "YUY2")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); } else if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); } else if (!strcmp(str, "ARGB")) { tfourcc = VA_FOURCC('A', 'R', 'G', 'B'); } else { printf("Not supported format: %s! Currently only support following format: %s for this sample\n", str, "NV12, YUY2,YV12,ARGB"); assert(0); } if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } static int8_t parse_memtype_format(char *str, uint32_t *dst_memtype) { uint32_t tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_VA; if (!strcmp(str, "VA")) { tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_VA; } else if (!strcmp(str, "CPU")) { tmemtype = VA_SURFACE_ATTRIB_MEM_TYPE_USER_PTR; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "VA,CPU"); assert(0); } if (dst_memtype) *dst_memtype = tmemtype; return 0; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; /* Read src frame file information */ read_value_string(g_config_file_fd, "SRC_FILE_NAME", g_src_info.file_name); read_value_uint32(g_config_file_fd, "SRC_FRAME_WIDTH", &g_src_info.pic_width); read_value_uint32(g_config_file_fd, "SRC_FRAME_HEIGHT", &g_src_info.pic_height); read_value_string(g_config_file_fd, "SRC_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_src_info.fourcc, &g_src_info.rtformat); read_value_string(g_config_file_fd, "SRC_SURFACE_MEMORY_TYPE", str); parse_memtype_format(str, &g_src_info.memtype); read_value_uint32(g_config_file_fd, "SRC_SURFACE_CPU_ALIGN_MODE", &g_src_info.align_mode); read_value_uint32(g_config_file_fd, "2ND_SCALE", &g_scale_again); /* Read dst frame file information */ read_value_uint32(g_config_file_fd, "DST_NUMBER", &g_dst_count); g_out_surface_ids = (VASurfaceID*)malloc(g_dst_count * sizeof(VASurfaceID)); g_dst_info = (VPP_ImageInfo *)malloc(g_dst_count * sizeof(VPP_ImageInfo)); for (uint32_t i = 0; i < g_dst_count; i++) { char dst_file_name[MAX_LEN]; char dst_frame_width[MAX_LEN]; char dst_frame_height[MAX_LEN]; char dst_frame_format[MAX_LEN]; char dst_memtype[MAX_LEN]; char dst_align_mode[MAX_LEN]; sprintf(dst_file_name, "DST_FILE_NAME_%d", i + 1); sprintf(dst_frame_width, "DST_FRAME_WIDTH_%d", i + 1); sprintf(dst_frame_height, "DST_FRAME_HEIGHT_%d", i + 1); sprintf(dst_frame_format, "DST_FRAME_FORMAT_%d", i + 1); sprintf(dst_memtype, "DST_SURFACE_MEMORY_TYPE_%d", i + 1); sprintf(dst_align_mode, "DST_SURFACE_CPU_ALIGN_MODE_%d", i + 1); read_value_string(g_config_file_fd, dst_file_name, g_dst_info[i].file_name); read_value_uint32(g_config_file_fd, dst_frame_width, &g_dst_info[i].pic_width); read_value_uint32(g_config_file_fd, dst_frame_height, &g_dst_info[i].pic_height); read_value_string(g_config_file_fd, dst_frame_format, str); parse_fourcc_and_format(str, &g_dst_info[i].fourcc, &g_dst_info[i].rtformat); read_value_string(g_config_file_fd, dst_memtype, str); parse_memtype_format(str, &g_dst_info[i].memtype); read_value_uint32(g_config_file_fd, dst_align_mode, &g_dst_info[i].align_mode); } read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); return 0; } static void print_help() { printf("The app is used to test the usrptr and 1:N output and crop feature.\n"); printf("Cmd Usage: ./vppscaling_n_out_usrptr process_scaling_n_out_usrptr.cfg\n"); printf("The configure file process_scaling_n_out_usrptr.cfg is used to configure the para.\n"); printf("You can refer process_scaling_n_out_usrptr.cfg.template for each para meaning and create the configure file.\n"); } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { print_help(); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ if (NULL == (g_src_info.file_fd = fopen(g_src_info.file_name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src_info.file_name, g_config_file_name); assert(0); } for (uint32_t index = 0; index < g_dst_count; index++) { if (NULL == (g_dst_info[index].file_fd = fopen(g_dst_info[index].file_name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst_info[index].file_name, g_config_file_name); assert(0); } } printf("\nStart to process, ...\n"); struct timespec Pre_time; struct timespec Cur_time; unsigned int duration = 0; clock_gettime(CLOCK_MONOTONIC, &Pre_time); for (i = 0; i < g_frame_count; i ++) { upload_yuv_frame_to_yuv_surface(g_src_info.file_fd, g_in_surface_id); video_frame_process(g_in_surface_id, g_out_surface_ids); //first sync surface to check the process ready va_status = vaSyncSurface(va_dpy, g_out_surface_ids[g_dst_count - 1]); CHECK_VASTATUS(va_status, "vaSyncSurface"); for (uint32_t index = 0; index < g_dst_count; index++) { store_yuv_surface_to_file(g_dst_info[index].file_fd, g_out_surface_ids[index], g_dst_info[index].fourcc); } } clock_gettime(CLOCK_MONOTONIC, &Cur_time); duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000; if (Cur_time.tv_nsec > Pre_time.tv_nsec) { duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000; } else { duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000; } printf("Finish processing, performance: \n"); printf("%d frames processed in: %d ms, ave time = %d ms\n", g_frame_count, duration, duration / g_frame_count); if (g_src_info.file_fd) fclose(g_src_info.file_fd); for (uint32_t index = 0; index < g_dst_count; index++) { if (g_dst_info[index].file_fd) fclose(g_dst_info[index].file_fd); } if (g_config_file_fd) fclose(g_config_file_fd); vpp_context_destroy(); return 0; } ================================================ FILE: videoprocess/vppsharpness.cpp ================================================ /* * Copyright (c) 2009-2018, Intel Corporation * * 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. */ /* * Video process test case based on LibVA. * This test covers sharpness feature. * Usage: ./vppsharpness process_sharpness.cfg */ #include #include #include #include #include #include #include #include #include "va_display.h" #ifndef VA_FOURCC_I420 #define VA_FOURCC_I420 0x30323449 #endif #define MAX_LEN 1024 #define CHECK_VASTATUS(va_status,func) \ if (va_status != VA_STATUS_SUCCESS) { \ fprintf(stderr,"%s:%s (%d) failed,exit\n", __func__, func, __LINE__); \ exit(1); \ } static VADisplay va_dpy = NULL; static VAContextID context_id = 0; static VAConfigID config_id = 0; static VASurfaceID g_in_surface_id = VA_INVALID_ID; static VASurfaceID g_out_surface_id = VA_INVALID_ID; static FILE* g_config_file_fd = NULL; static FILE* g_src_file_fd = NULL; static FILE* g_dst_file_fd = NULL; static char g_config_file_name[MAX_LEN]; static char g_src_file_name[MAX_LEN]; static char g_dst_file_name[MAX_LEN]; static uint32_t g_in_pic_width = 352; static uint32_t g_in_pic_height = 288; static uint32_t g_out_pic_width = 352; static uint32_t g_out_pic_height = 288; static uint32_t g_in_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_in_format = VA_RT_FORMAT_YUV420; static uint32_t g_out_fourcc = VA_FOURCC('N', 'V', '1', '2'); static uint32_t g_out_format = VA_RT_FORMAT_YUV420; static uint32_t g_src_file_fourcc = VA_FOURCC('I', '4', '2', '0'); static uint32_t g_dst_file_fourcc = VA_FOURCC('Y', 'V', '1', '2'); static uint32_t g_frame_count = 0; static int8_t read_value_string(FILE *fp, const char* field_name, char* value) { char strLine[MAX_LEN]; char* field = NULL; char* str = NULL; uint16_t i; if (!fp || !field_name || !value) { printf("Invalid fuction parameters\n"); return -1; } rewind(fp); while (!feof(fp)) { if (!fgets(strLine, MAX_LEN, fp)) continue; for (i = 0; i < MAX_LEN && strLine[i]; i++) if (strLine[i] != ' ') break; if (i == MAX_LEN || strLine[i] == '#' || strLine[i] == '\n') continue; field = strtok(&strLine[i], ":"); if (strncmp(field, field_name, strlen(field_name))) continue; if (!(str = strtok(NULL, ":"))) continue; /* skip blank space in string */ while (*str == ' ') str++; *(str + strlen(str) - 1) = '\0'; strcpy(value, str); return 0; } return -1; } static int8_t read_value_uint32(FILE* fp, const char* field_name, uint32_t* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find integer field: %s", field_name); return -1; } *value = (uint32_t)atoi(str); return 0; } static int8_t read_value_float(FILE *fp, const char* field_name, float* value) { char str[MAX_LEN]; if (read_value_string(fp, field_name, str)) { printf("Failed to find float field: %s \n", field_name); return -1; } *value = atof(str); return 0; } static float adjust_to_range(VAProcFilterValueRange *range, float value) { if (value < range->min_value || value > range->max_value) { printf("Value: %f exceed range: (%f ~ %f), force to use default: %f \n", value, range->min_value, range->max_value, range->default_value); return range->default_value; } return value; } static VAStatus create_surface(VASurfaceID * p_surface_id, uint32_t width, uint32_t height, uint32_t fourCC, uint32_t format) { VAStatus va_status; VASurfaceAttrib surface_attrib; surface_attrib.type = VASurfaceAttribPixelFormat; surface_attrib.flags = VA_SURFACE_ATTRIB_SETTABLE; surface_attrib.value.type = VAGenericValueTypeInteger; surface_attrib.value.value.i = fourCC; va_status = vaCreateSurfaces(va_dpy, format, width, height, p_surface_id, 1, &surface_attrib, 1); return va_status; } /* Load yuv frame to NV12/YV12/I420 surface*/ static VAStatus upload_yuv_frame_to_yuv_surface(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; void *surface_p = NULL; uint32_t frame_size, row, col; size_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { frame_size = surface_image.width * surface_image.height * 3 / 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; if (g_src_file_fourcc == VA_FOURCC_I420) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_YV12) { v_src = newImageBuffer + surface_image.width * surface_image.height; u_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 4; } else if (g_src_file_fourcc == VA_FOURCC_NV12) { u_src = newImageBuffer + surface_image.width * surface_image.height; v_src = u_src; } else { printf("Not supported YUV fourcc for input file !!!\n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else { u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; } /* Y plane, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_dst += surface_image.pitches[0]; y_src += surface_image.width; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_src += surface_image.width / 2; u_src += surface_image.width / 2; } else { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.width; v_src = u_src; } if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_dst += surface_image.pitches[1]; u_dst += surface_image.pitches[2]; } else { v_dst += surface_image.pitches[2]; u_dst += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { if (g_src_file_fourcc == VA_FOURCC_I420 || g_src_file_fourcc == VA_FOURCC_YV12) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_src += (surface_image.width / 2); v_src += (surface_image.width / 2); } else { memcpy(u_dst, u_src, surface_image.width); u_src += surface_image.width; v_src = u_src; } u_dst += surface_image.pitches[1]; } } } else if ((surface_image.format.fourcc == VA_FOURCC_YUY2 && g_src_file_fourcc == VA_FOURCC_YUY2) || (surface_image.format.fourcc == VA_FOURCC_UYVY && g_src_file_fourcc == VA_FOURCC_UYVY)) { frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } } else if ((surface_image.format.fourcc == VA_FOURCC_P010 && g_src_file_fourcc == VA_FOURCC_P010) || (surface_image.format.fourcc == VA_FOURCC_I010 && g_src_file_fourcc == VA_FOURCC_I010)) { frame_size = surface_image.width * surface_image.height * 3; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.width * 2; y_dst += surface_image.pitches[0]; } /* UV plane */ if (surface_image.format.fourcc == VA_FOURCC_I010) { assert(g_src_file_fourcc == VA_FOURCC_I010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = newImageBuffer + surface_image.width * surface_image.height * 5 / 2; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_src += surface_image.width; v_src += surface_image.width; u_dst += surface_image.pitches[1]; v_dst += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { assert(g_src_file_fourcc == VA_FOURCC_P010); u_src = newImageBuffer + surface_image.width * surface_image.height * 2; v_src = u_src; u_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_dst = u_dst; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_src += surface_image.width * 2; v_src = u_src; u_dst += surface_image.pitches[1]; v_dst = u_dst; } } } else if ((surface_image.format.fourcc == VA_FOURCC_RGBA && g_src_file_fourcc == VA_FOURCC_RGBA) || (surface_image.format.fourcc == VA_FOURCC_RGBX && g_src_file_fourcc == VA_FOURCC_RGBX) || (surface_image.format.fourcc == VA_FOURCC_BGRA && g_src_file_fourcc == VA_FOURCC_BGRA) || (surface_image.format.fourcc == VA_FOURCC_BGRX && g_src_file_fourcc == VA_FOURCC_BGRX)) { frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); do { n_items = fread(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); y_src = newImageBuffer; y_dst = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* plane 0, directly copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.width * 4; y_dst += surface_image.pitches[0]; } } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } /* Store NV12/YV12/I420 surface to yv12 file */ static VAStatus store_yuv_surface_to_yv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YV12 file or one bmp file*/ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; v_dst = newImageBuffer + y_size; u_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_i420_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one i420 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { memcpy(v_dst, v_src, surface_image.width / 2); memcpy(u_dst, u_src, surface_image.width / 2); v_dst += surface_image.width / 2; u_dst += surface_image.width / 2; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col] = u_src[col * 2]; v_dst[col] = u_src[col * 2 + 1]; } u_src += surface_image.pitches[1]; u_dst += (surface_image.width / 2); v_dst += (surface_image.width / 2); } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_nv12_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row, col; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one nv12 file */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420 || surface_image.format.fourcc == VA_FOURCC_NV12) { uint32_t y_size = surface_image.width * surface_image.height; newImageBuffer = (unsigned char*)malloc(y_size * 3 / 2); assert(newImageBuffer); /* stored as YV12 format */ y_dst = newImageBuffer; u_dst = v_dst = newImageBuffer + y_size; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_I420) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; } /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width); y_src += surface_image.pitches[0]; y_dst += surface_image.width; } /* UV plane copy */ if (surface_image.format.fourcc == VA_FOURCC_YV12 || surface_image.format.fourcc == VA_FOURCC_I420) { for (row = 0; row < surface_image.height / 2; row ++) { for (col = 0; col < surface_image.width / 2; col++) { u_dst[col * 2] = u_src[col]; u_dst[col * 2 + 1] = v_src[col]; } u_dst += surface_image.width; if (surface_image.format.fourcc == VA_FOURCC_YV12) { v_src += surface_image.pitches[1]; u_src += surface_image.pitches[2]; } else { v_src += surface_image.pitches[2]; u_src += surface_image.pitches[1]; } } } else if (surface_image.format.fourcc == VA_FOURCC_NV12) { for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); u_dst += surface_image.width; u_src += surface_image.pitches[1]; } } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_packed_yuv_surface_to_packed_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one YUY2 or UYVY file */ if (surface_image.format.fourcc == VA_FOURCC_YUY2 || surface_image.format.fourcc == VA_FOURCC_UYVY) { uint32_t frame_size = surface_image.width * surface_image.height * 2; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); memset(newImageBuffer, 0, frame_size); /* stored as YUY2 or UYVY format */ y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Plane 0 copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); } else { printf("Not supported YUV surface fourcc !!! \n"); return VA_STATUS_ERROR_INVALID_SURFACE; } if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_10bit_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *u_src = NULL; unsigned char *v_src = NULL; unsigned char *y_dst = NULL; unsigned char *u_dst = NULL; unsigned char *v_dst = NULL; uint32_t row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); /* store the surface to one 10bit file */ uint32_t y_size = surface_image.width * surface_image.height * 2; uint32_t u_size = y_size / 4; newImageBuffer = (unsigned char*)malloc(y_size * 3); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); /* Y plane copy */ for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 2); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 2; } if (surface_image.format.fourcc == VA_FOURCC_I010) { u_dst = newImageBuffer + y_size; v_dst = newImageBuffer + y_size + u_size; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[2]); for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width); memcpy(v_dst, v_src, surface_image.width); u_dst += surface_image.width; v_dst += surface_image.width; u_src += surface_image.pitches[1]; v_src += surface_image.pitches[2]; } } else if (surface_image.format.fourcc == VA_FOURCC_P010) { u_dst = newImageBuffer + y_size; v_dst = u_dst; u_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[1]); v_src = u_src; for (row = 0; row < surface_image.height / 2; row++) { memcpy(u_dst, u_src, surface_image.width * 2); u_dst += surface_image.width * 2; u_src += surface_image.pitches[1]; } } else { printf("Not supported YUV surface fourcc !!! \n"); free(newImageBuffer); return VA_STATUS_ERROR_INVALID_SURFACE; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, y_size * 3 / 2, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_rgb_surface_to_rgb_file(FILE *fp, VASurfaceID surface_id) { VAStatus va_status; VAImage surface_image; void *surface_p = NULL; unsigned char *y_src = NULL; unsigned char *y_dst = NULL; uint32_t frame_size, row; int32_t n_items; unsigned char * newImageBuffer = NULL; va_status = vaSyncSurface(va_dpy, surface_id); CHECK_VASTATUS(va_status, "vaSyncSurface"); va_status = vaDeriveImage(va_dpy, surface_id, &surface_image); CHECK_VASTATUS(va_status, "vaDeriveImage"); va_status = vaMapBuffer(va_dpy, surface_image.buf, &surface_p); CHECK_VASTATUS(va_status, "vaMapBuffer"); frame_size = surface_image.width * surface_image.height * 4; newImageBuffer = (unsigned char*)malloc(frame_size); assert(newImageBuffer); y_dst = newImageBuffer; y_src = (unsigned char *)((unsigned char*)surface_p + surface_image.offsets[0]); for (row = 0; row < surface_image.height; row++) { memcpy(y_dst, y_src, surface_image.width * 4); y_src += surface_image.pitches[0]; y_dst += surface_image.width * 4; } /* write frame to file */ do { n_items = fwrite(newImageBuffer, frame_size, 1, fp); } while (n_items != 1); if (newImageBuffer) { free(newImageBuffer); newImageBuffer = NULL; } vaUnmapBuffer(va_dpy, surface_image.buf); vaDestroyImage(va_dpy, surface_image.image_id); return VA_STATUS_SUCCESS; } static VAStatus store_yuv_surface_to_file(FILE *fp, VASurfaceID surface_id) { if (g_out_fourcc == VA_FOURCC_YV12 || g_out_fourcc == VA_FOURCC_I420 || g_out_fourcc == VA_FOURCC_NV12) { if (g_dst_file_fourcc == VA_FOURCC_YV12) return store_yuv_surface_to_yv12_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_I420) return store_yuv_surface_to_i420_file(fp, surface_id); else if (g_dst_file_fourcc == VA_FOURCC_NV12) return store_yuv_surface_to_nv12_file(fp, surface_id); else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } else if ((g_out_fourcc == VA_FOURCC_YUY2 && g_dst_file_fourcc == VA_FOURCC_YUY2) || (g_out_fourcc == VA_FOURCC_UYVY && g_dst_file_fourcc == VA_FOURCC_UYVY)) { return store_packed_yuv_surface_to_packed_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_I010 && g_dst_file_fourcc == VA_FOURCC_I010) || (g_out_fourcc == VA_FOURCC_P010 && g_dst_file_fourcc == VA_FOURCC_P010)) { return store_yuv_surface_to_10bit_file(fp, surface_id); } else if ((g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_RGBA) || (g_out_fourcc == VA_FOURCC_RGBX && g_dst_file_fourcc == VA_FOURCC_RGBX) || (g_out_fourcc == VA_FOURCC_RGBA && g_dst_file_fourcc == VA_FOURCC_BGRA) || (g_out_fourcc == VA_FOURCC_BGRX && g_dst_file_fourcc == VA_FOURCC_BGRX)) { return store_rgb_surface_to_rgb_file(fp, surface_id); } else { printf("Not supported YUV fourcc for output !!!\n"); return VA_STATUS_ERROR_INVALID_SURFACE; } } static VAStatus sharpening_filter_init(VABufferID *filter_param_buf_id) { VAStatus va_status; VAProcFilterParameterBuffer sharpening_param; VABufferID sharpening_param_buf_id; float intensity; VAProcFilterCap sharpening_caps; uint32_t num_sharpening_caps = 1; va_status = vaQueryVideoProcFilterCaps(va_dpy, context_id, VAProcFilterSharpening, &sharpening_caps, &num_sharpening_caps); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilterCaps"); if (read_value_float(g_config_file_fd, "SHARPENING_INTENSITY", &intensity)) { printf("Read sharpening intensity failed, use default value."); intensity = sharpening_caps.range.default_value; } intensity = adjust_to_range(&sharpening_caps.range, intensity); printf("Sharpening intensity: %f\n", intensity); sharpening_param.value = intensity; sharpening_param.type = VAProcFilterSharpening; /* create sharpening fitler buffer */ va_status = vaCreateBuffer(va_dpy, context_id, VAProcFilterParameterBufferType, sizeof(sharpening_param), 1, &sharpening_param, &sharpening_param_buf_id); *filter_param_buf_id = sharpening_param_buf_id; return va_status; } static VAStatus video_frame_process(VASurfaceID in_surface_id, VASurfaceID out_surface_id) { VAStatus va_status; VAProcPipelineParameterBuffer pipeline_param; VARectangle surface_region, output_region; VABufferID pipeline_param_buf_id = VA_INVALID_ID; VABufferID filter_param_buf_id = VA_INVALID_ID; sharpening_filter_init(&filter_param_buf_id); /* Fill pipeline buffer */ surface_region.x = 0; surface_region.y = 0; surface_region.width = g_in_pic_width; surface_region.height = g_in_pic_height; output_region.x = 0; output_region.y = 0; output_region.width = g_out_pic_width; output_region.height = g_out_pic_height; memset(&pipeline_param, 0, sizeof(pipeline_param)); pipeline_param.surface = in_surface_id; pipeline_param.surface_region = &surface_region; pipeline_param.output_region = &output_region; pipeline_param.filter_flags = 0; pipeline_param.filters = &filter_param_buf_id; pipeline_param.num_filters = 1; va_status = vaCreateBuffer(va_dpy, context_id, VAProcPipelineParameterBufferType, sizeof(pipeline_param), 1, &pipeline_param, &pipeline_param_buf_id); CHECK_VASTATUS(va_status, "vaCreateBuffer"); va_status = vaBeginPicture(va_dpy, context_id, out_surface_id); CHECK_VASTATUS(va_status, "vaBeginPicture"); va_status = vaRenderPicture(va_dpy, context_id, &pipeline_param_buf_id, 1); CHECK_VASTATUS(va_status, "vaRenderPicture"); va_status = vaEndPicture(va_dpy, context_id); CHECK_VASTATUS(va_status, "vaEndPicture"); if (filter_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, filter_param_buf_id); if (pipeline_param_buf_id != VA_INVALID_ID) vaDestroyBuffer(va_dpy, pipeline_param_buf_id); return va_status; } static VAStatus vpp_context_create() { VAStatus va_status = VA_STATUS_SUCCESS; uint32_t i; int32_t j; /* VA driver initialization */ va_dpy = va_open_display(); int32_t major_ver, minor_ver; va_status = vaInitialize(va_dpy, &major_ver, &minor_ver); assert(va_status == VA_STATUS_SUCCESS); /* Check whether VPP is supported by driver */ VAEntrypoint entrypoints[5]; int32_t num_entrypoints; num_entrypoints = vaMaxNumEntrypoints(va_dpy); va_status = vaQueryConfigEntrypoints(va_dpy, VAProfileNone, entrypoints, &num_entrypoints); CHECK_VASTATUS(va_status, "vaQueryConfigEntrypoints"); for (j = 0; j < num_entrypoints; j++) { if (entrypoints[j] == VAEntrypointVideoProc) break; } if (j == num_entrypoints) { printf("VPP is not supported by driver\n"); assert(0); } /* Render target surface format check */ VAConfigAttrib attrib; attrib.type = VAConfigAttribRTFormat; va_status = vaGetConfigAttributes(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1); CHECK_VASTATUS(va_status, "vaGetConfigAttributes"); if (!(attrib.value & g_out_format)) { printf("RT format %d is not supported by VPP !\n", g_out_format); assert(0); } /* Create surface/config/context for VPP pipeline */ va_status = create_surface(&g_in_surface_id, g_in_pic_width, g_in_pic_height, g_in_fourcc, g_in_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for input"); va_status = create_surface(&g_out_surface_id, g_out_pic_width, g_out_pic_height, g_out_fourcc, g_out_format); CHECK_VASTATUS(va_status, "vaCreateSurfaces for output"); va_status = vaCreateConfig(va_dpy, VAProfileNone, VAEntrypointVideoProc, &attrib, 1, &config_id); CHECK_VASTATUS(va_status, "vaCreateConfig"); va_status = vaCreateContext(va_dpy, config_id, g_out_pic_width, g_out_pic_height, VA_PROGRESSIVE, &g_out_surface_id, 1, &context_id); CHECK_VASTATUS(va_status, "vaCreateContext"); uint32_t supported_filter_num = VAProcFilterCount; VAProcFilterType supported_filter_types[VAProcFilterCount]; va_status = vaQueryVideoProcFilters(va_dpy, context_id, supported_filter_types, &supported_filter_num); CHECK_VASTATUS(va_status, "vaQueryVideoProcFilters"); for (i = 0; i < supported_filter_num; i++) { if (supported_filter_types[i] == VAProcFilterSharpening) break; } if (i == supported_filter_num) { printf("VPP filter type VAProcFilterSharpening is not supported by driver !\n"); assert(0); } return va_status; } static void vpp_context_destroy() { /* Release resource */ vaDestroySurfaces(va_dpy, &g_in_surface_id, 1); vaDestroySurfaces(va_dpy, &g_out_surface_id, 1); vaDestroyContext(va_dpy, context_id); vaDestroyConfig(va_dpy, config_id); vaTerminate(va_dpy); va_close_display(va_dpy); } static int8_t parse_fourcc_and_format(char *str, uint32_t *fourcc, uint32_t *format) { uint32_t tfourcc = VA_FOURCC('N', 'V', '1', '2'); uint32_t tformat = VA_RT_FORMAT_YUV420; if (!strcmp(str, "YV12")) { tfourcc = VA_FOURCC('Y', 'V', '1', '2'); } else if (!strcmp(str, "I420")) { tfourcc = VA_FOURCC('I', '4', '2', '0'); } else if (!strcmp(str, "NV12")) { tfourcc = VA_FOURCC('N', 'V', '1', '2'); } else if (!strcmp(str, "YUY2") || !strcmp(str, "YUYV")) { tfourcc = VA_FOURCC('Y', 'U', 'Y', '2'); } else if (!strcmp(str, "UYVY")) { tfourcc = VA_FOURCC('U', 'Y', 'V', 'Y'); } else if (!strcmp(str, "P010")) { tfourcc = VA_FOURCC('P', '0', '1', '0'); } else if (!strcmp(str, "I010")) { tfourcc = VA_FOURCC('I', '0', '1', '0'); } else if (!strcmp(str, "RGBA")) { tfourcc = VA_FOURCC_RGBA; } else if (!strcmp(str, "RGBX")) { tfourcc = VA_FOURCC_RGBX; } else if (!strcmp(str, "BGRA")) { tfourcc = VA_FOURCC_BGRA; } else if (!strcmp(str, "BGRX")) { tfourcc = VA_FOURCC_BGRX; } else { printf("Not supported format: %s! Currently only support following format: %s\n", str, "YV12, I420, NV12, YUY2(YUYV), UYVY, P010, I010, RGBA, RGBX, BGRA or BGRX"); assert(0); } if (fourcc) *fourcc = tfourcc; if (format) *format = tformat; return 0; } static int8_t parse_basic_parameters() { char str[MAX_LEN]; /* Read src frame file information */ read_value_string(g_config_file_fd, "SRC_FILE_NAME", g_src_file_name); read_value_uint32(g_config_file_fd, "SRC_FRAME_WIDTH", &g_in_pic_width); read_value_uint32(g_config_file_fd, "SRC_FRAME_HEIGHT", &g_in_pic_height); read_value_string(g_config_file_fd, "SRC_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_in_fourcc, &g_in_format); /* Read dst frame file information */ read_value_string(g_config_file_fd, "DST_FILE_NAME", g_dst_file_name); read_value_uint32(g_config_file_fd, "DST_FRAME_WIDTH", &g_out_pic_width); read_value_uint32(g_config_file_fd, "DST_FRAME_HEIGHT", &g_out_pic_height); read_value_string(g_config_file_fd, "DST_FRAME_FORMAT", str); parse_fourcc_and_format(str, &g_out_fourcc, &g_out_format); read_value_string(g_config_file_fd, "SRC_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_src_file_fourcc, NULL); read_value_string(g_config_file_fd, "DST_FILE_FORMAT", str); parse_fourcc_and_format(str, &g_dst_file_fourcc, NULL); read_value_uint32(g_config_file_fd, "FRAME_SUM", &g_frame_count); if (g_in_pic_width != g_out_pic_width || g_in_pic_height != g_out_pic_height) printf("Scaling will be done : from %4d x %4d to %4d x %4d \n", g_in_pic_width, g_in_pic_height, g_out_pic_width, g_out_pic_height); if (g_in_fourcc != g_out_fourcc) printf("Format conversion will be done: from %d to %d \n", g_in_fourcc, g_out_fourcc); return 0; } static void print_help() { printf("The app is used to test the sharpness feature.\n"); printf("Cmd Usage: ./vppsharpness process_sharpness.cfg\n"); printf("The configure file process_sharpness is used to configure the para.\n"); printf("You can refer process_sharpness.cfg.template for each para meaning and create the configure file.\n"); } int32_t main(int32_t argc, char *argv[]) { VAStatus va_status; uint32_t i; if (argc != 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { print_help(); return -1; } /* Parse the configure file for video process*/ strncpy(g_config_file_name, argv[1], MAX_LEN); g_config_file_name[MAX_LEN - 1] = '\0'; if (NULL == (g_config_file_fd = fopen(g_config_file_name, "r"))) { printf("Open configure file %s failed!\n", g_config_file_name); assert(0); } /* Parse basic parameters */ if (parse_basic_parameters()) { printf("Parse parameters in configure file error\n"); assert(0); } va_status = vpp_context_create(); if (va_status != VA_STATUS_SUCCESS) { printf("vpp context create failed \n"); assert(0); } /* Video frame fetch, process and store */ if (NULL == (g_src_file_fd = fopen(g_src_file_name, "r"))) { printf("Open SRC_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_src_file_name, g_config_file_name); assert(0); } if (NULL == (g_dst_file_fd = fopen(g_dst_file_name, "w"))) { printf("Open DST_FILE_NAME: %s failed, please specify it in config file: %s !\n", g_dst_file_name, g_config_file_name); assert(0); } printf("\nStart to process, ...\n"); struct timespec Pre_time; struct timespec Cur_time; unsigned int duration = 0; clock_gettime(CLOCK_MONOTONIC, &Pre_time); for (i = 0; i < g_frame_count; i ++) { upload_yuv_frame_to_yuv_surface(g_src_file_fd, g_in_surface_id); video_frame_process(g_in_surface_id, g_out_surface_id); store_yuv_surface_to_file(g_dst_file_fd, g_out_surface_id); } clock_gettime(CLOCK_MONOTONIC, &Cur_time); duration = (Cur_time.tv_sec - Pre_time.tv_sec) * 1000; if (Cur_time.tv_nsec > Pre_time.tv_nsec) { duration += (Cur_time.tv_nsec - Pre_time.tv_nsec) / 1000000; } else { duration += (Cur_time.tv_nsec + 1000000000 - Pre_time.tv_nsec) / 1000000 - 1000; } printf("Finish processing, performance: \n"); printf("%d frames processed in: %d ms, ave time = %d ms\n", g_frame_count, duration, duration / g_frame_count); if (g_src_file_fd) fclose(g_src_file_fd); if (g_dst_file_fd) fclose(g_dst_file_fd); if (g_config_file_fd) fclose(g_config_file_fd); vpp_context_destroy(); return 0; }